diff options
Diffstat (limited to 'fs/ecryptfs/super.c')
| -rw-r--r-- | fs/ecryptfs/super.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ecryptfs/super.c b/fs/ecryptfs/super.c index b15a43a80ab..0c0ae491d23 100644 --- a/fs/ecryptfs/super.c +++ b/fs/ecryptfs/super.c @@ -26,6 +26,7 @@  #include <linux/fs.h>  #include <linux/mount.h>  #include <linux/key.h> +#include <linux/slab.h>  #include <linux/seq_file.h>  #include <linux/smp_lock.h>  #include <linux/file.h> @@ -85,7 +86,6 @@ static void ecryptfs_destroy_inode(struct inode *inode)  		if (lower_dentry->d_inode) {  			fput(inode_info->lower_file);  			inode_info->lower_file = NULL; -			d_drop(lower_dentry);  		}  	}  	ecryptfs_destroy_crypt_stat(&inode_info->crypt_stat); @@ -122,6 +122,7 @@ static void ecryptfs_put_super(struct super_block *sb)  	lock_kernel();  	ecryptfs_destroy_mount_crypt_stat(&sb_info->mount_crypt_stat); +	bdi_destroy(&sb_info->bdi);  	kmem_cache_free(ecryptfs_sb_info_cache, sb_info);  	ecryptfs_set_superblock_private(sb, NULL);  |