filesystems: add missing nlink wrappers
Replace direct i_nlink updates with the respective updater function (inc_nlink, drop_nlink, clear_nlink, inode_dec_link_count). Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
This commit is contained in:

committed by
Christoph Hellwig

parent
dd2a981f46
commit
6d6b77f163
@@ -157,7 +157,7 @@ fail_drop:
|
||||
dquot_drop(inode);
|
||||
inode->i_flags |= S_NOQUOTA;
|
||||
fail_unlock:
|
||||
inode->i_nlink = 0;
|
||||
clear_nlink(inode);
|
||||
unlock_new_inode(inode);
|
||||
fail_put:
|
||||
iput(inode);
|
||||
|
@@ -172,7 +172,7 @@ static int jfs_create(struct inode *dip, struct dentry *dentry, int mode,
|
||||
mutex_unlock(&JFS_IP(dip)->commit_mutex);
|
||||
if (rc) {
|
||||
free_ea_wmap(ip);
|
||||
ip->i_nlink = 0;
|
||||
clear_nlink(ip);
|
||||
unlock_new_inode(ip);
|
||||
iput(ip);
|
||||
} else {
|
||||
@@ -311,7 +311,7 @@ static int jfs_mkdir(struct inode *dip, struct dentry *dentry, int mode)
|
||||
mutex_unlock(&JFS_IP(dip)->commit_mutex);
|
||||
if (rc) {
|
||||
free_ea_wmap(ip);
|
||||
ip->i_nlink = 0;
|
||||
clear_nlink(ip);
|
||||
unlock_new_inode(ip);
|
||||
iput(ip);
|
||||
} else {
|
||||
@@ -844,7 +844,7 @@ static int jfs_link(struct dentry *old_dentry,
|
||||
rc = txCommit(tid, 2, &iplist[0], 0);
|
||||
|
||||
if (rc) {
|
||||
ip->i_nlink--; /* never instantiated */
|
||||
drop_nlink(ip); /* never instantiated */
|
||||
iput(ip);
|
||||
} else
|
||||
d_instantiate(dentry, ip);
|
||||
@@ -1048,7 +1048,7 @@ static int jfs_symlink(struct inode *dip, struct dentry *dentry,
|
||||
mutex_unlock(&JFS_IP(dip)->commit_mutex);
|
||||
if (rc) {
|
||||
free_ea_wmap(ip);
|
||||
ip->i_nlink = 0;
|
||||
clear_nlink(ip);
|
||||
unlock_new_inode(ip);
|
||||
iput(ip);
|
||||
} else {
|
||||
@@ -1433,7 +1433,7 @@ static int jfs_mknod(struct inode *dir, struct dentry *dentry,
|
||||
mutex_unlock(&JFS_IP(dir)->commit_mutex);
|
||||
if (rc) {
|
||||
free_ea_wmap(ip);
|
||||
ip->i_nlink = 0;
|
||||
clear_nlink(ip);
|
||||
unlock_new_inode(ip);
|
||||
iput(ip);
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user