The patch titled fuse: use dentry in statfs has been added to the -mm tree. Its filename is fuse-use-dentry-in-statfs.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: use dentry in statfs From: Miklos Szeredi <miklos@xxxxxxxxxx> Some filesystems may want to report different values depending on the path within the filesystem, i.e. one mount is actually several filesystems. This can be the case for a network filesystem exported by an unprivileged server (e.g. sshfs). This is now possible, thanks to David Howells "VFS: Permit filesystem to perform statfs with a known root dentry" patch. This change is backward compatible, so no need to change interface version. Signed-off-by: Miklos Szeredi <miklos@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/fuse/inode.c | 1 + 1 file changed, 1 insertion(+) diff -puN fs/fuse/inode.c~fuse-use-dentry-in-statfs fs/fuse/inode.c --- a/fs/fuse/inode.c~fuse-use-dentry-in-statfs +++ a/fs/fuse/inode.c @@ -251,6 +251,7 @@ static int fuse_statfs(struct dentry *de memset(&outarg, 0, sizeof(outarg)); req->in.numargs = 0; req->in.h.opcode = FUSE_STATFS; + req->in.h.nodeid = get_node_id(dentry->d_inode); req->out.numargs = 1; req->out.args[0].size = fc->minor < 4 ? FUSE_COMPAT_STATFS_SIZE : sizeof(outarg); _ Patches currently in -mm which might be from miklos@xxxxxxxxxx are add-address_space_operationsbatch_write.patch add-address_space_operationsbatch_write-fix.patch pass-io-size-to-batch_write-address-space-operation.patch fuse-add-lock-annotations-to-request_end-and-fuse_read_interrupt.patch fuse-fix-zero-timeout.patch fuse-use-jiffies_64.patch fuse-fix-typo.patch fuse-use-dentry-in-statfs.patch vfs-define-new-lookup-flag-for-chdir.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