summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk.kim@samsung.com>2013-05-22 12:06:26 +0900
committerChanho Park <chanho61.park@samsung.com>2014-03-20 17:34:37 +0900
commit59c25cc1bda84a5956fe8454deeef6ae7749d268 (patch)
treef9602bd1f18c91d45eb400682344e50466664549 /fs
parent39ed715a655a964512834be6ac09a0a8a33a288c (diff)
downloadlinux-3.10-59c25cc1bda84a5956fe8454deeef6ae7749d268.tar.gz
linux-3.10-59c25cc1bda84a5956fe8454deeef6ae7749d268.tar.bz2
linux-3.10-59c25cc1bda84a5956fe8454deeef6ae7749d268.zip
f2fs: use ihold
Use the following helper function committed by Al. commit 7de9c6ee3ecffd99e1628e81a5ea5468f7581a1f Author: Al Viro <viro@zeniv.linux.org.uk> Date: Sat Oct 23 11:11:40 2010 -0400 new helper: ihold() ... Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/f2fs/namei.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/namei.c b/fs/f2fs/namei.c
index 71aa30559c5..efe0a127cb7 100644
--- a/fs/f2fs/namei.c
+++ b/fs/f2fs/namei.c
@@ -172,7 +172,7 @@ static int f2fs_link(struct dentry *old_dentry, struct inode *dir,
f2fs_balance_fs(sbi);
inode->i_ctime = CURRENT_TIME;
- atomic_inc(&inode->i_count);
+ ihold(inode);
set_inode_flag(F2FS_I(inode), FI_INC_LINK);
ilock = mutex_lock_op(sbi);