diff options
author | Miklos Szeredi | 2006-09-29 10:59:34 +0200 |
---|---|---|
committer | Linus Torvalds | 2006-09-29 18:18:08 +0200 |
commit | 5b35e8e58a315b16d123e2bc080fcc9981501ac4 (patch) | |
tree | e741e98a2a205b1f76adeb175b8468450fd0d9bf /fs/fuse/inode.c | |
parent | [PATCH] module_subsys: initialize earlier (diff) | |
download | kernel-qcow2-linux-5b35e8e58a315b16d123e2bc080fcc9981501ac4.tar.gz kernel-qcow2-linux-5b35e8e58a315b16d123e2bc080fcc9981501ac4.tar.xz kernel-qcow2-linux-5b35e8e58a315b16d123e2bc080fcc9981501ac4.zip |
[PATCH] fuse: use dentry in statfs
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@szeredi.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/fuse/inode.c')
-rw-r--r-- | fs/fuse/inode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index cb7cadb0b790..7d0a9aee01f2 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c @@ -251,6 +251,7 @@ static int fuse_statfs(struct dentry *dentry, struct kstatfs *buf) 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); |