The patch titled eCryptfs: dput() lower d_parent on rename has been added to the -mm tree. Its filename is ecryptfs-dput-lower-d_parent-on-rename.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: eCryptfs: dput() lower d_parent on rename From: Michael Halcrow <mhalcrow@xxxxxxxxxx> On rename, for both the old and new lower dentry objects, eCryptfs is missing a dput on the lower parent directory dentry. This patch will prevent the BUG() at fs/dcache.c:613 from being hit after renaming a file inside eCryptfs and then doing a umount on the lower filesystem. Signed-off-by: Michael Halcrow <mhalcrow@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/ecryptfs/inode.c | 2 ++ 1 files changed, 2 insertions(+) diff -puN fs/ecryptfs/inode.c~ecryptfs-dput-lower-d_parent-on-rename fs/ecryptfs/inode.c --- a/fs/ecryptfs/inode.c~ecryptfs-dput-lower-d_parent-on-rename +++ a/fs/ecryptfs/inode.c @@ -630,6 +630,8 @@ ecryptfs_rename(struct inode *old_dir, s ecryptfs_copy_attr_all(old_dir, lower_old_dir_dentry->d_inode); out_lock: unlock_rename(lower_old_dir_dentry, lower_new_dir_dentry); + dput(lower_new_dentry->d_parent); + dput(lower_old_dentry->d_parent); dput(lower_new_dentry); dput(lower_old_dentry); return rc; _ Patches currently in -mm which might be from mhalcrow@xxxxxxxxxx are ecryptfs-dput-lower-d_parent-on-rename.patch fsstack-introduce-fsstack_copy_attrinode_.patch fsstack-introduce-fsstack_copy_attrinode_-tidy.patch ecryptfs-use-fsstacks-generic-copy-inode-attr.patch ecryptfs-use-fsstacks-generic-copy-inode-attr-tidy-fix.patch struct-path-make-ecryptfs-a-user-of-struct-path.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