From: Wang Shilong Date: Sun, 14 Apr 2013 14:08:49 +0000 (+0000) Subject: Btrfs: cleanup to remove reduplicate code in transaction.c X-Git-Tag: v3.10-rc1~31^2~53 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=98ad43be0a7ec87962b194a09ae9514bf2443f35;p=linux.git Btrfs: cleanup to remove reduplicate code in transaction.c Signed-off-by: Wang Shilong Signed-off-by: Josef Bacik --- 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,