The patch titled XFS: Use the dentry passed to statfs() to limit the scope of the results has been removed from the -mm tree. Its filename is xfs-use-the-dentry-passed-to-statfs-to-limit-the-scope-of-the-results.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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> Signed-off-by: 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 origin.patch gfs2-get_sb_dev-fix.patch prepare-for-__copy_from_user_inatomic-to-not-zero-missed-bytes.patch another-couple-of-alterations-to-the-memory-barrier-doc.patch fuse-add-control-filesystem-get_sb_single-fix.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 ecryptfs-get_sb_dev-fix.patch reiser4-get_sb_dev-fix.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