diff options
Diffstat (limited to 'fs/cifs/inode.c')
-rw-r--r-- | fs/cifs/inode.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index 589f3e3f6e00..003698365ece 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c | |||
@@ -810,12 +810,15 @@ inode_has_hashed_dentries(struct inode *inode) | |||
810 | struct dentry *dentry; | 810 | struct dentry *dentry; |
811 | 811 | ||
812 | spin_lock(&dcache_lock); | 812 | spin_lock(&dcache_lock); |
813 | spin_lock(&dcache_inode_lock); | ||
813 | list_for_each_entry(dentry, &inode->i_dentry, d_alias) { | 814 | list_for_each_entry(dentry, &inode->i_dentry, d_alias) { |
814 | if (!d_unhashed(dentry) || IS_ROOT(dentry)) { | 815 | if (!d_unhashed(dentry) || IS_ROOT(dentry)) { |
816 | spin_unlock(&dcache_inode_lock); | ||
815 | spin_unlock(&dcache_lock); | 817 | spin_unlock(&dcache_lock); |
816 | return true; | 818 | return true; |
817 | } | 819 | } |
818 | } | 820 | } |
821 | spin_unlock(&dcache_inode_lock); | ||
819 | spin_unlock(&dcache_lock); | 822 | spin_unlock(&dcache_lock); |
820 | return false; | 823 | return false; |
821 | } | 824 | } |