summaryrefslogtreecommitdiffstats
path: root/mm/shmem.c
diff options
context:
space:
mode:
authorAl Viro2010-10-23 17:11:40 +0200
committerAl Viro2010-10-26 03:26:11 +0200
commit7de9c6ee3ecffd99e1628e81a5ea5468f7581a1f (patch)
tree88787e77ba8a253d0a26aeda4bd5e58532d592e0 /mm/shmem.c
parentfs: remove inode_add_to_list/__inode_add_to_list (diff)
downloadkernel-qcow2-linux-7de9c6ee3ecffd99e1628e81a5ea5468f7581a1f.tar.gz
kernel-qcow2-linux-7de9c6ee3ecffd99e1628e81a5ea5468f7581a1f.tar.xz
kernel-qcow2-linux-7de9c6ee3ecffd99e1628e81a5ea5468f7581a1f.zip
new helper: ihold()
Clones an existing reference to inode; caller must already hold one. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'mm/shmem.c')
-rw-r--r--mm/shmem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/shmem.c b/mm/shmem.c
index 27a58120dbd5..d4e2852526e6 100644
--- a/mm/shmem.c
+++ b/mm/shmem.c
@@ -1903,7 +1903,7 @@ static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentr
dir->i_size += BOGO_DIRENT_SIZE;
inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
inc_nlink(inode);
- atomic_inc(&inode->i_count); /* New dentry reference */
+ ihold(inode); /* New dentry reference */
dget(dentry); /* Extra pinning count for the created dentry */
d_instantiate(dentry, inode);
out: