Commit 43baa579 authored by Filipe Brandenburger's avatar Filipe Brandenburger Committed by Chris Mason

Btrfs: refactor error handling to drop inode in btrfs_create()

Refactor it by checking whether the inode has been created and needs to be
dropped (drop_inode_on_err) and also if the err variable is set. That way the
variable doesn't need to be set on each and every error handling block.
Signed-off-by: default avatarFilipe Brandenburger <filbranden@google.com>
Signed-off-by: default avatarChris Mason <chris.mason@fusionio.com>
parent 2794ed01
...@@ -4989,7 +4989,7 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry, ...@@ -4989,7 +4989,7 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry,
struct btrfs_trans_handle *trans; struct btrfs_trans_handle *trans;
struct btrfs_root *root = BTRFS_I(dir)->root; struct btrfs_root *root = BTRFS_I(dir)->root;
struct inode *inode = NULL; struct inode *inode = NULL;
int drop_inode = 0; int drop_inode_on_err = 0;
int err; int err;
u64 objectid; u64 objectid;
u64 index = 0; u64 index = 0;
...@@ -5014,12 +5014,11 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry, ...@@ -5014,12 +5014,11 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry,
err = PTR_ERR(inode); err = PTR_ERR(inode);
goto out_unlock; goto out_unlock;
} }
drop_inode_on_err = 1;
err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
if (err) { if (err)
drop_inode = 1;
goto out_unlock; goto out_unlock;
}
/* /*
* If the active LSM wants to access the inode during * If the active LSM wants to access the inode during
...@@ -5032,16 +5031,16 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry, ...@@ -5032,16 +5031,16 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry,
err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index); err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
if (err) if (err)
drop_inode = 1; goto out_unlock;
else {
inode->i_mapping->a_ops = &btrfs_aops; inode->i_mapping->a_ops = &btrfs_aops;
inode->i_mapping->backing_dev_info = &root->fs_info->bdi; inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
d_instantiate(dentry, inode); d_instantiate(dentry, inode);
}
out_unlock: out_unlock:
btrfs_end_transaction(trans, root); btrfs_end_transaction(trans, root);
if (drop_inode) { if (err && drop_inode_on_err) {
inode_dec_link_count(inode); inode_dec_link_count(inode);
iput(inode); iput(inode);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment