about summary refs log tree commit homepage
path: root/ext
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-06-01 16:46:18 -0700
committerEric Wong <normalperson@yhbt.net>2010-06-01 16:48:06 -0700
commite4bdec2a41932a6ebd444d003f21cc025223cfdd (patch)
tree28b0c16e9dbf5986af95b1ef235ad970fe6f2e4c /ext
parent5b34f7048cae6161c5180f57074272d558373133 (diff)
downloadruby_io_splice-e4bdec2a41932a6ebd444d003f21cc025223cfdd.tar.gz
FUSE devices will finally gain splice() support and also
support SPLICE_F_MOVE in 2.6.35.  SPLICE_F_MOVE is still
ignored for non-FUSE devices.
Diffstat (limited to 'ext')
-rw-r--r--ext/io_splice/io_splice_ext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/io_splice/io_splice_ext.c b/ext/io_splice/io_splice_ext.c
index 6fb4579..fe6405c 100644
--- a/ext/io_splice/io_splice_ext.c
+++ b/ext/io_splice/io_splice_ext.c
@@ -353,8 +353,8 @@ void Init_io_splice_ext(void)
 
         /*
          * Attempt to move pages instead of copying.  This is only a hint
-         * and support for it was removed in Linux 2.6.21 and has not been
-         * readded as of 2.6.30.
+         * and support for it was removed in Linux 2.6.21.  It will be
+         * re-added for FUSE devices only in Linux 2.6.35.
          */
         rb_define_const(mSplice, "F_MOVE", UINT2NUM(SPLICE_F_MOVE));