-
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: use atomic.Store instead of simple assignment #21931
Comments
I agree this is is inconsistent. I've always understood it that StoreAtomic needs to be paired with LoadAtomic for proper visibility. If this code is doing something clever, then it probably needs a nice comment to explain why these operations can be intermixed. /cc @dvyukov @aclements |
I think we need Swap there. |
We'd also need an atomic load of mutexprofilerate in sema.go:semacquire1 |
Hi, if nobody working on this I'll take a look and fix the unpaired atomic operations in package runtime. |
Sure, thanks. |
Change https://golang.org/cl/65210 mentions this issue: |
Kindly paging you @choleraehyq, please rebase and fix conflicts in the CL 65210. |
We have only three weeks left before the freeze. @bradfitz do you still consider this risky enough that it should wait for the next release? /cc @aclements |
This is @aclements's call. |
In #53821, I am planning to convert atomic fields to |
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (
go version
)?master
Does this issue reproduce with the latest release?
yes
What operating system and processor architecture are you using (
go env
)?any
May be it would be better to use
atomic.Load
here? https://github.com/golang/go/blob/master/src/runtime/mprof.go#L443Anyway it lookg strange - we use atomic operation to store value and non atomic value to read it.
The text was updated successfully, but these errors were encountered: