Btrfs: cleanup to remove reduplicate code in transaction.c
Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com> Signed-off-by: Josef Bacik <jbacik@fusionio.com>
This commit is contained in:
parent
47fb091fb7
commit
98ad43be0a
@ -707,23 +707,13 @@ static int __btrfs_end_transaction(struct btrfs_trans_handle *trans,
|
|||||||
int btrfs_end_transaction(struct btrfs_trans_handle *trans,
|
int btrfs_end_transaction(struct btrfs_trans_handle *trans,
|
||||||
struct btrfs_root *root)
|
struct btrfs_root *root)
|
||||||
{
|
{
|
||||||
int ret;
|
return __btrfs_end_transaction(trans, root, 0);
|
||||||
|
|
||||||
ret = __btrfs_end_transaction(trans, root, 0);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
|
int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans,
|
||||||
struct btrfs_root *root)
|
struct btrfs_root *root)
|
||||||
{
|
{
|
||||||
int ret;
|
return __btrfs_end_transaction(trans, root, 1);
|
||||||
|
|
||||||
ret = __btrfs_end_transaction(trans, root, 1);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int btrfs_end_transaction_dmeta(struct btrfs_trans_handle *trans,
|
int btrfs_end_transaction_dmeta(struct btrfs_trans_handle *trans,
|
||||||
|
Loading…
Reference in New Issue
Block a user