From: Jeff Mahoney Date: Tue, 4 Oct 2011 03:22:34 +0000 (-0400) Subject: btrfs: Simplify btrfs_insert_root X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=d16cb050e5b1c3a9d754fed7098eefb8237877d1;p=~shefty%2Frdma-dev.git btrfs: Simplify btrfs_insert_root btrfs_insert_root is just a wrapper for btrfs_insert_item. Just return the error directly. Signed-off-by: Jeff Mahoney --- diff --git a/fs/btrfs/root-tree.c b/fs/btrfs/root-tree.c index f4099904565..1fd93d63707 100644 --- a/fs/btrfs/root-tree.c +++ b/fs/btrfs/root-tree.c @@ -116,13 +116,10 @@ out: return ret; } -int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root - *root, struct btrfs_key *key, struct btrfs_root_item - *item) +int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root *root, + struct btrfs_key *key, struct btrfs_root_item *item) { - int ret; - ret = btrfs_insert_item(trans, root, key, item, sizeof(*item)); - return ret; + return btrfs_insert_item(trans, root, key, item, sizeof(*item)); } /*