-
Notifications
You must be signed in to change notification settings - Fork 27
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
Intermittently getting fatal error: bulkBarrierPreWrite: unaligned arguments #25
Comments
What Windows version and architecture? |
version is "windows server 2019 data center" and architecture is amd64 |
Also tried in windows 11 pro / amd64 |
did it resolved? |
I tried to modify the compose. go file line 103-104 by replacing ret := (*fwpmFilter0)(a.Alloc(unsafe.Sizeof(fwpmFilter0{})))
*ret = fwpmFilter0{ with //ret := (*fwpmFilter0)(a.Alloc(unsafe.Sizeof(fwpmFilter0{})))
ret := &fwpmFilter0{ After modifying, I tested it several times and it works fine . |
i did you modification cause i've also find this annoying bug but its giving me this error. go\src\inet.af\wf\compose.go:104:9: fwpmFilter0 can't be allocated in Go; it is incomplete (or unallocatable) using golang 1.18 |
Issue
Intermittently getting "fatal error: bulkBarrierPreWrite: unaligned arguments"
When
While calling this function
Go Version
Tried 1.18. 1.19, 1.20
Occurence Frequency
Very random. Couldnt find a pattern.
The text was updated successfully, but these errors were encountered: