diff options
| author | Al Viro <[email protected]> | 2010-10-23 15:11:40 +0000 |
|---|---|---|
| committer | Al Viro <[email protected]> | 2010-10-26 01:26:11 +0000 |
| commit | 7de9c6ee3ecffd99e1628e81a5ea5468f7581a1f (patch) | |
| tree | 88787e77ba8a253d0a26aeda4bd5e58532d592e0 /fs/btrfs/inode.c | |
| parent | fs: remove inode_add_to_list/__inode_add_to_list (diff) | |
| download | kernel-7de9c6ee3ecffd99e1628e81a5ea5468f7581a1f.tar.gz kernel-7de9c6ee3ecffd99e1628e81a5ea5468f7581a1f.zip | |
new helper: ihold()
Clones an existing reference to inode; caller must already hold one.
Signed-off-by: Al Viro <[email protected]>
Diffstat (limited to 'fs/btrfs/inode.c')
| -rw-r--r-- | fs/btrfs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index f6f2a0da2695..64f99cf69ce0 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -4758,7 +4758,7 @@ static int btrfs_link(struct dentry *old_dentry, struct inode *dir, } btrfs_set_trans_block_group(trans, dir); - atomic_inc(&inode->i_count); + ihold(inode); err = btrfs_add_nondir(trans, dentry, inode, 1, index); |
