-
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: reconsider using SYSCALL instruction on FreeBSD #9627
Comments
Please send a cl to revert the change. I believe the major blocker You have my support (at least) for fixing this.
|
|
Is there an easy way to determine if a system is not affected by the I think we can use something like this for the SYSCALL macro: Provided that we have a simple way to set runtime.buggySYSCALL. |
I don't think that is worth the effort. When this came up last cycle the
|
I'll get a CL sent when I get the CLA check on git mail figured out. It doesn't recognize me. @minix I don't know of an easy check. The fix in the FreeBSD kernel doesn't have any API visible differences, so at best I'd have to build some sort of whitelist based on version strings out of uname or sysctl. @bradfitz that does sound like something I'd be interested in. Let me read up on it and try to get something working this week. |
Ugh it looks like I broke the build: http://build.golang.org/log/977a45e7d1acbb8c464ecca1f714659818f64596 But
For reference, on my machine, the
Compared to the value reported on the builder of:
So a legitimate test run crossing the 10 minute window, based on 53s from my machine, seems unlikely. I have no idea how to fix this, as I can't reproduce the test timeout locally. Even if the builder is running an older FreeBSD, @adg said 9.1 in another thread, I wouldn't expect things to break this bad with this change. Prior to #6372 only one build in a couple dozens would have a errant syscall. Is there any easy way to revert this, or do I just send another CL? Any suggestions on how to test/debug this? |
In #6372 the use of INT 0x80 instead of the SYSCALL instruction was chosen as the slower but correct option for a kernel bug on FreeBSD.
Of the 6 current combinations of FreeBSD {8,9,10}-{RELEASE,STABLE} only 8.4-RELEASE doesn't have the fix from https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=182161
That version was released on June 9, 2013 and has an expected EoL of June 30, 2015
A simple benchmark for getting time ( http://play.golang.org/p/QUwb_r1d0G ) on my FreeBSD 9.3-RELEASE machine shows:
Which is a significant. The Go 1.3 doc states that Go requires FreeBSD 8 or above. So I have a couple questions:
The text was updated successfully, but these errors were encountered: