aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/filesystems/porting
diff options
context:
space:
mode:
authorJosef Bacik <josef@redhat.com>2011-01-05 15:00:07 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2011-01-12 20:19:03 -0500
commit924241575a85249b9d410e38f5b2fcad9035e45c (patch)
treeb38b0d9998a147e2b5000d2edc5181b8b28f8cff /Documentation/filesystems/porting
parentGfs2: fail if we try to use hole punch (diff)
downloadlinux-dev-924241575a85249b9d410e38f5b2fcad9035e45c.tar.xz
linux-dev-924241575a85249b9d410e38f5b2fcad9035e45c.zip
fs: add documentation on fallocate hole punching
This patch simply adds documentation on how to handle the hole punching mode of fallocate for any filesystem wishing to use it. Signed-off-by: Josef Bacik <josef@redhat.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'Documentation/filesystems/porting')
-rw-r--r--Documentation/filesystems/porting9
1 files changed, 9 insertions, 0 deletions
diff --git a/Documentation/filesystems/porting b/Documentation/filesystems/porting
index 07a32b42cf9c..266d2059b9b8 100644
--- a/Documentation/filesystems/porting
+++ b/Documentation/filesystems/porting
@@ -385,3 +385,12 @@ Documentation/filesystems/vfs.txt for more details.
on many or all directory inodes on the way down a path walk (to check for
exec permission). These must now be rcu-walk aware (flags & IPERM_RCU). See
Documentation/filesystems/vfs.txt for more details.
+
+--
+[mandatory]
+ In ->fallocate() you must check the mode option passed in. If your
+filesystem does not support hole punching (deallocating space in the middle of a
+file) you must return -EOPNOTSUPP if FALLOC_FL_PUNCH_HOLE is set in mode.
+Currently you can only have FALLOC_FL_PUNCH_HOLE with FALLOC_FL_KEEP_SIZE set,
+so the i_size should not change when hole punching, even when puching the end of
+a file off.