As it is just a hint the kernel is free to ignore,
IO#advise already succeeds when posix_fadvise is not
available build time at all. Following that, if posix_fadvise
was available at build time but not implemented in the running
kernel, we should also ignore it.
io.c (do_io_advise): do not raise on ENOSYS
test/ruby/test_io.rb (test_advise): do not skip on Errno::ENOSYS
(test_advise_pipe): ditto
As it is just a hint the kernel is free to ignore,
IO#advise already succeeds when posix_fadvise is not
available build time at all. Following that, if posix_fadvise
was available at build time but not implemented in the running
kernel, we should also ignore it.
io.c (do_io_advise): do not raise on ENOSYS
test/ruby/test_io.rb (test_advise): do not skip on Errno::ENOSYS
(test_advise_pipe): ditto [ruby-core:72066] [Feature #11806]
By this change an application lose any way of getting the result of posix_fadvise.
Is it really sufficient?
For example how about returning errno as the return value instead of returning always nil?
(it is also OK that keep returning nil until someone request to change)
By this change an application lose any way of getting the result of posix_fadvise.
Is it really sufficient?
I think so.
For example how about returning errno as the return value instead of returning always nil?
Maybe, but on the other hand, I doubt really cares that much.
They will also need to know exactly what kernel they're running
and what it does with fadvise.
(it is also OK that keep returning nil until someone request to change)
There is no guarantee a kernel does anything with it.
Anybody checking it is probably wasting their time...
We already return nil unconditionally on systems w/o fadvise at
build time.