From: Mark Fasheh Date: Wed, 10 Aug 2011 19:32:10 +0000 (-0700) Subject: btrfs: Don't BUG_ON errors in __finish_chunk_alloc() X-Git-Tag: v3.4-rc3~11^2~20^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4ed1d16e944c61cfb8a78159548672e7df168d97;p=profile%2Fivi%2Fkernel-x86-ivi.git btrfs: Don't BUG_ON errors in __finish_chunk_alloc() All callers of __finish_chunk_alloc() BUG_ON() return value, so it's trivial for us to always bubble up any errors caught in __finish_chunk_alloc() to be caught there. Signed-off-by: Mark Fasheh --- diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 1c5f8a4..c4ea7d8 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c @@ -3417,16 +3417,18 @@ static int __finish_chunk_alloc(struct btrfs_trans_handle *trans, key.offset = chunk_offset; ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size); - BUG_ON(ret); - if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) { + if (ret == 0 && map->type & BTRFS_BLOCK_GROUP_SYSTEM) { + /* + * TODO: Cleanup of inserted chunk root in case of + * failure. + */ ret = btrfs_add_system_chunk(chunk_root, &key, chunk, item_size); - BUG_ON(ret); } kfree(chunk); - return 0; + return ret; } /*