From 24b35c3d97ffdbf0a1f8e8b4e94ed892343603a6 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Thu, 2 Jul 2009 12:26:36 +0000 Subject: * The context is extended with a 'umask' field. The umask is sent for mknod, mkdir and create requests by linux kernel version 2.6.31 or later, otherwise the umask is set to zero. Also introduce a new feature flag: FUSE_CAP_DONT_MASK. If the kernel supports this feature, then this flag will be set in conn->capable in the ->init() method. If the filesystem sets this flag in in conn->want, then the create modes will not be masked. * Add low level interfaces for lookup cache and attribute invalidation. This feature is available in linux kernels 2.6.31 or later. Patch by John Muir * Kernel interface version is now 7.12 --- lib/fuse_versionscript | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/fuse_versionscript') diff --git a/lib/fuse_versionscript b/lib/fuse_versionscript index 463c74f..4ab0291 100644 --- a/lib/fuse_versionscript +++ b/lib/fuse_versionscript @@ -3,7 +3,6 @@ FUSE_2.2 { fuse_destroy; fuse_exit; fuse_exited; - fuse_get_context; fuse_invalidate; fuse_is_lib_option; fuse_loop; @@ -43,7 +42,6 @@ FUSE_2.4 { fuse_reply_readlink; fuse_reply_write; fuse_reply_xattr; - fuse_req_ctx; fuse_req_userdata; fuse_session_add_chan; fuse_session_destroy; @@ -176,6 +174,10 @@ FUSE_2.8 { fuse_reply_poll; fuse_req_getgroups; fuse_getgroups; + fuse_req_ctx; + fuse_get_context; + fuse_lowlevel_notify_inval_inode; + fuse_lowlevel_notify_inval_entry; local: *; -- cgit v1.2.3