-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runtime: missing page mark in write barrier #39432
Comments
Actually, we're also missing the page mark in |
@gopherbot, please open backport issues for 1.13 and 1.14 |
Backport issue(s) opened: #39433 (for 1.13), #39434 (for 1.14). Remember to create the cherry-pick CL(s) as soon as the patch is submitted to master, according to https://golang.org/wiki/MinorReleases. |
Change https://golang.org/cl/236817 mentions this issue: |
Change https://golang.org/cl/236922 mentions this issue: |
Change https://golang.org/cl/236923 mentions this issue: |
Ah! I was wrong. This is a performance bug, but not in fact a correctness bug. The page sweeper uses the span marks to determine where it thinks sweeping will return whole spans, but it just calls |
There are two places in the runtime where we set mark bits:
greyobject
andwbBufFlush1
. The page sweeper depends on page marks being set whenever any object in a span is marked, but we currently only set page marks ingreyobject
. This means if all of the reachable objects on a span are marked by the write barrier, the page mark for the span won't be set, and the page sweeper will incorrectly reclaim the span. This is fairly unlikely, but possible, especially if very few objects in a span are actually live.I found this by chance when I was reorganizing these two functions. I'm fairly certainly this has been a bug since page marks were introduced in Go 1.12.
/cc @mknyszek
The text was updated successfully, but these errors were encountered: