The patch titled XFS: Use the dentry passed to statfs() to limit the scope of the results has been added to the -mm tree. Its filename is xfs-use-the-dentry-passed-to-statfs-to-limit-the-scope-of-the-results.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: XFS: Use the dentry passed to statfs() to limit the scope of the results From: David Howells <dhowells@xxxxxxxxxx> 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 <dhowells@xxxxxxxxxx> Cc: Nathan Scott <nathans@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/xfs/linux-2.6/xfs_super.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN fs/xfs/linux-2.6/xfs_super.c~xfs-use-the-dentry-passed-to-statfs-to-limit-the-scope-of-the-results fs/xfs/linux-2.6/xfs_super.c --- a/fs/xfs/linux-2.6/xfs_super.c~xfs-use-the-dentry-passed-to-statfs-to-limit-the-scope-of-the-results +++ a/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 _ Patches currently in -mm which might be from dhowells@xxxxxxxxxx are selinux-add-hooks-for-key-subsystem.patch keys-fix-race-between-two-instantiators-of-a-key.patch fix-dcache-race-during-umount.patch vfs-permit-filesystem-to-override-root-dentry-on-mount.patch vfs-permit-filesystem-to-perform-statfs-with-a-known-root-dentry.patch xfs-use-the-dentry-passed-to-statfs-to-limit-the-scope-of-the-results.patch git-nfs.patch git-nfs-build-fixes.patch nfs-build-fix-99.patch add-page_mkwrite-vm_operations-method.patch add-page_mkwrite-vm_operations-method-fix.patch frv-__user-infrastructure.patch frv-basic-__iomem-annotations.patch frv-signal-annotations.patch frv-sysctl-__user-annotations.patch frv-binfmt_elf_fdpic-__user-annotations.patch frv-misc-__user-annotations.patch frv-misc-sparse-annotations.patch frv-wrong-syscall.patch ext2-xip-wont-build-without-mmu.patch frv-initrd-is-grossly-broken-on-frv-never-built.patch frv-null-noise-removal-in-frv-xchg.patch frv-ieee1394-is-borken-on-frv.patch frv-add-missing-qualifier-to-memcpy_fromio-prototype.patch frv-trivial-cleanups-in-frv_ksymsc.patch frv-clean-frv-unistdh.patch fix-incorrect-sa_onstack-behaviour-for-64-bit-processes.patch prepare-for-__copy_from_user_inatomic-to-not-zero-missed-bytes.patch another-couple-of-alterations-to-the-memory-barrier-doc.patch corrections-to-memory-barrier-doc.patch net-rxrpc-use-list_move.patch fs-use-list_move.patch keys-sort-out-key-quota-system.patch keys-discard-the-contents-of-a-key-on-revocation.patch keys-let-keyctl_chown-change-a-keys-owner.patch keys-allocate-key-serial-numbers-randomly.patch keys-restrict-contents-of-proc-keys-to-viewable-keys.patch keys-add-a-way-to-store-the-appropriate-context-for-newly-created-keys.patch mutex-subsystem-synchro-test-module.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