diff options
author | Wang Shilong <wangsl-fnst@cn.fujitsu.com> | 2013-04-14 14:08:49 +0000 |
---|---|---|
committer | Josef Bacik <jbacik@fusionio.com> | 2013-05-06 15:54:49 -0400 |
commit | 98ad43be0a7ec87962b194a09ae9514bf2443f35 (patch) | |
tree | a2cd06ef739ed193d328bf0c9310ff7cceccb4c2 /fs | |
parent | 47fb091fb787420cd195e66f162737401cce023f (diff) | |
download | linux-rt-98ad43be0a7ec87962b194a09ae9514bf2443f35.tar.gz |
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>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/btrfs/transaction.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c index a5764aeb4549..de774580134f 100644 --- a/fs/btrfs/transaction.c +++ b/fs/btrfs/transaction.c @@ -707,23 +707,13 @@ static int __btrfs_end_transaction(struct btrfs_trans_handle *trans, int btrfs_end_transaction(struct btrfs_trans_handle *trans, struct btrfs_root *root) { - int ret; - - ret = __btrfs_end_transaction(trans, root, 0); - if (ret) - return ret; - return 0; + return __btrfs_end_transaction(trans, root, 0); } int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans, struct btrfs_root *root) { - int ret; - - ret = __btrfs_end_transaction(trans, root, 1); - if (ret) - return ret; - return 0; + return __btrfs_end_transaction(trans, root, 1); } int btrfs_end_transaction_dmeta(struct btrfs_trans_handle *trans, |