From: David Howells Date: Fri, 23 Jun 2006 09:02:59 +0000 (-0700) Subject: [PATCH] XFS: Use the dentry passed to statfs() to limit the scope of the results X-Git-Tag: v2.6.18-rc1~1081^2~215 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d6938d1b2768fbf94d1091207d334ef7df786e5a;p=platform%2Fkernel%2Flinux-3.10.git [PATCH] XFS: Use the dentry passed to statfs() to limit the scope of the results Enable XFS to limit the statfs() results to the project quota covering the dentry used as a base for call. Signed-off-by: David Howells Signed-off-by: Nathan Scott Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c index 4fb0fc6..9bdef9d 100644 --- a/fs/xfs/linux-2.6/xfs_super.c +++ b/fs/xfs/linux-2.6/xfs_super.c @@ -687,7 +687,8 @@ xfs_fs_statfs( struct dentry *dentry, struct kstatfs *statp) { - return -bhv_vfs_statvfs(vfs_from_sb(dentry->d_sb), statp, NULL); + return -bhv_vfs_statvfs(vfs_from_sb(dentry->d_sb), statp, + vn_from_inode(dentry->d_inode)); } STATIC int