The patch titled fuse: update userspace interface to version 7.8 has been added to the -mm tree. Its filename is fuse-update-userspace-interface-to-version-78.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: fuse: update userspace interface to version 7.8 From: Miklos Szeredi <miklos@xxxxxxxxxx> Add a flag to the RELEASE message which specifies that a FLUSH operation should be performed as well. This interface update is needed for the FreeBSD port, and doesn't actually touch the Linux implementation at all. Also rename the unused 'flush_flags' in the FLUSH message to 'unused'. Signed-off-by: Miklos Szeredi <miklos@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/fuse.h | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-) diff -puN include/linux/fuse.h~fuse-update-userspace-interface-to-version-78 include/linux/fuse.h --- a/include/linux/fuse.h~fuse-update-userspace-interface-to-version-78 +++ a/include/linux/fuse.h @@ -15,7 +15,7 @@ #define FUSE_KERNEL_VERSION 7 /** Minor version number of this interface */ -#define FUSE_KERNEL_MINOR_VERSION 7 +#define FUSE_KERNEL_MINOR_VERSION 8 /** The node ID of the root inode */ #define FUSE_ROOT_ID 1 @@ -92,6 +92,11 @@ struct fuse_file_lock { #define FUSE_ASYNC_READ (1 << 0) #define FUSE_POSIX_LOCKS (1 << 1) +/** + * Release flags + */ +#define FUSE_RELEASE_FLUSH (1 << 0) + enum fuse_opcode { FUSE_LOOKUP = 1, FUSE_FORGET = 2, /* no reply */ @@ -205,12 +210,13 @@ struct fuse_open_out { struct fuse_release_in { __u64 fh; __u32 flags; - __u32 padding; + __u32 release_flags; + __u64 lock_owner; }; struct fuse_flush_in { __u64 fh; - __u32 flush_flags; + __u32 unused; __u32 padding; __u64 lock_owner; }; _ Patches currently in -mm which might be from miklos@xxxxxxxxxx are fuse-fix-hang-on-smp.patch document-i_size_write-locking-rules.patch fuse-locking-fix-for-nlookup.patch fuse-fix-spurious-bug.patch fuse-fix-handling-of-moved-directory.patch fuse-fix-dereferencing-dentry-parent.patch fuse-update-userspace-interface-to-version-78.patch fuse-minor-cleanup-in-fuse_dentry_revalidate.patch fuse-add-support-for-block-device-based-filesystems.patch fuse-add-blksize-option.patch fuse-add-bmap-support.patch fuse-add-destroy-operation.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html