From 96ac0e5d76db3714b7c8d37956f6e6b1d804a01a Mon Sep 17 00:00:00 2001 From: Anatol Pomozov Date: Sun, 22 Apr 2012 18:49:35 -0700 Subject: Add FALLOCATE operation fallocate filesystem operation preallocates media space for the given file. If fallocate returns success then any subsequent write to the given range never fails with 'not enough space' error. --- lib/fuse_versionscript | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib/fuse_versionscript') diff --git a/lib/fuse_versionscript b/lib/fuse_versionscript index 2d110fb..8d91887 100644 --- a/lib/fuse_versionscript +++ b/lib/fuse_versionscript @@ -196,7 +196,12 @@ FUSE_2.9 { fuse_clean_cache; fuse_lowlevel_notify_delete; fuse_fs_flock; +} FUSE_2.8; + +FUSE_2.9.1 { + global: + fuse_fs_fallocate; local: *; -} FUSE_2.8; +} FUSE_2.9; -- cgit v1.2.3