diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-18 13:51:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-18 13:51:11 -0400 |
commit | f539abece1b7e36fae6add4f9ea29203d40badcb (patch) | |
tree | 786c08f3131a1871ece13343c3fa3832930c1408 /fs/dcache.c | |
parent | 3f6f7e6d57b8a0ae2810ae7aac70c51b6f2a6304 (diff) | |
parent | 24ff6663ccfdaf088dfa7acae489cb11ed4f43c4 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6:
fs: call security_d_instantiate in d_obtain_alias V2
lose 'mounting_here' argument in ->d_manage()
don't pass 'mounting_here' flag to follow_down()
change the locking order for namespace_sem
fix deadlock in pivot_root()
vfs: split off vfsmount-related parts of vfs_kern_mount()
Some fixes for pstore
kill simple_set_mnt()
Diffstat (limited to 'fs/dcache.c')
-rw-r--r-- | fs/dcache.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/dcache.c b/fs/dcache.c index 8b1f8425549f..ad25c4cec7d5 100644 --- a/fs/dcache.c +++ b/fs/dcache.c | |||
@@ -1612,10 +1612,13 @@ struct dentry *d_obtain_alias(struct inode *inode) | |||
1612 | __bit_spin_unlock(0, (unsigned long *)&tmp->d_sb->s_anon.first); | 1612 | __bit_spin_unlock(0, (unsigned long *)&tmp->d_sb->s_anon.first); |
1613 | spin_unlock(&tmp->d_lock); | 1613 | spin_unlock(&tmp->d_lock); |
1614 | spin_unlock(&inode->i_lock); | 1614 | spin_unlock(&inode->i_lock); |
1615 | security_d_instantiate(tmp, inode); | ||
1615 | 1616 | ||
1616 | return tmp; | 1617 | return tmp; |
1617 | 1618 | ||
1618 | out_iput: | 1619 | out_iput: |
1620 | if (res && !IS_ERR(res)) | ||
1621 | security_d_instantiate(res, inode); | ||
1619 | iput(inode); | 1622 | iput(inode); |
1620 | return res; | 1623 | return res; |
1621 | } | 1624 | } |