diff options
author | Mark Fasheh <mfasheh@suse.com> | 2011-07-12 13:57:59 -0400 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2011-07-25 17:34:54 -0400 |
commit | 92b8e897f6e7ba4aa10037ebd8186f85d39330d0 (patch) | |
tree | 54988ee036e1dfe3297b0b4e0dfe6323568bf02e | |
parent | 17e9f796bd92cddec17d781c459376f82340fa44 (diff) |
btrfs: Don't BUG_ON alloc_path errors in find_next_chunk
I also removed the BUG_ON from error return of find_next_chunk in
init_first_rw_device(). It turns out that the only caller of
init_first_rw_device() also BUGS on any nonzero return so no actual behavior
change has occurred here.
do_chunk_alloc() also needed an update since it calls btrfs_alloc_chunk()
which can now return -ENOMEM. Instead of setting space_info->full on any
error from btrfs_alloc_chunk() I catch and return every error value _except_
-ENOSPC. Thanks goes to Tsutomu Itoh for pointing that issue out.
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
-rw-r--r-- | fs/btrfs/extent-tree.c | 4 | ||||
-rw-r--r-- | fs/btrfs/volumes.c | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c index aa91773fe31b..f6af4236e59b 100644 --- a/fs/btrfs/extent-tree.c +++ b/fs/btrfs/extent-tree.c | |||
@@ -3277,6 +3277,9 @@ again: | |||
3277 | } | 3277 | } |
3278 | 3278 | ||
3279 | ret = btrfs_alloc_chunk(trans, extent_root, flags); | 3279 | ret = btrfs_alloc_chunk(trans, extent_root, flags); |
3280 | if (ret < 0 && ret != -ENOSPC) | ||
3281 | goto out; | ||
3282 | |||
3280 | spin_lock(&space_info->lock); | 3283 | spin_lock(&space_info->lock); |
3281 | if (ret) | 3284 | if (ret) |
3282 | space_info->full = 1; | 3285 | space_info->full = 1; |
@@ -3286,6 +3289,7 @@ again: | |||
3286 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; | 3289 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
3287 | space_info->chunk_alloc = 0; | 3290 | space_info->chunk_alloc = 0; |
3288 | spin_unlock(&space_info->lock); | 3291 | spin_unlock(&space_info->lock); |
3292 | out: | ||
3289 | mutex_unlock(&extent_root->fs_info->chunk_mutex); | 3293 | mutex_unlock(&extent_root->fs_info->chunk_mutex); |
3290 | return ret; | 3294 | return ret; |
3291 | } | 3295 | } |
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 530a2fcea1ef..90d956c17d92 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c | |||
@@ -1037,7 +1037,8 @@ static noinline int find_next_chunk(struct btrfs_root *root, | |||
1037 | struct btrfs_key found_key; | 1037 | struct btrfs_key found_key; |
1038 | 1038 | ||
1039 | path = btrfs_alloc_path(); | 1039 | path = btrfs_alloc_path(); |
1040 | BUG_ON(!path); | 1040 | if (!path) |
1041 | return -ENOMEM; | ||
1041 | 1042 | ||
1042 | key.objectid = objectid; | 1043 | key.objectid = objectid; |
1043 | key.offset = (u64)-1; | 1044 | key.offset = (u64)-1; |
@@ -2663,7 +2664,8 @@ static noinline int init_first_rw_device(struct btrfs_trans_handle *trans, | |||
2663 | 2664 | ||
2664 | ret = find_next_chunk(fs_info->chunk_root, | 2665 | ret = find_next_chunk(fs_info->chunk_root, |
2665 | BTRFS_FIRST_CHUNK_TREE_OBJECTID, &chunk_offset); | 2666 | BTRFS_FIRST_CHUNK_TREE_OBJECTID, &chunk_offset); |
2666 | BUG_ON(ret); | 2667 | if (ret) |
2668 | return ret; | ||
2667 | 2669 | ||
2668 | alloc_profile = BTRFS_BLOCK_GROUP_METADATA | | 2670 | alloc_profile = BTRFS_BLOCK_GROUP_METADATA | |
2669 | (fs_info->metadata_alloc_profile & | 2671 | (fs_info->metadata_alloc_profile & |