-
Notifications
You must be signed in to change notification settings - Fork 104
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
open files with O_NOATIME if possible #113
Conversation
|
Does this impede usage on other systems? Solaris, *BSD's and such?
|
|
It should do. If |
|
I've actually been trying to test this under FreeBSD. Unfortunately, building cython fails with a segfault. But like I said, it should work under all systems. |
|
Ok that's great to hear. Odd you're having segfaults building cython, but obviously that's not related to this change. If he merges it, I use FreeBSD as my home server, so I'll know if something doesn't function hopefully. |
|
this seems to be an important change that should be merged in... |
|
I agree this is an important change that should be merged. I test it and it works fine in my system and I'm using it. @jborg can I do something to help on getting this pull-req merged? |
open files with O_NOATIME if possible
|
Looks good, thanks! |
|
awesome!!! thank you so much! |
The Linux manpage for
open(2)describesO_NOATIMEthus:Change attic to provide this flag where possible.
Unrelatedly, fix a typo in a comment.