Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 262228
b: refs/heads/master
c: 92b8e89
h: refs/heads/master
v: v3
  • Loading branch information
Mark Fasheh committed Jul 25, 2011
1 parent 6ca1717 commit d580057
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 17e9f796bd92cddec17d781c459376f82340fa44
refs/heads/master: 92b8e897f6e7ba4aa10037ebd8186f85d39330d0
4 changes: 4 additions & 0 deletions trunk/fs/btrfs/extent-tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -3277,6 +3277,9 @@ static int do_chunk_alloc(struct btrfs_trans_handle *trans,
}

ret = btrfs_alloc_chunk(trans, extent_root, flags);
if (ret < 0 && ret != -ENOSPC)
goto out;

spin_lock(&space_info->lock);
if (ret)
space_info->full = 1;
Expand All @@ -3286,6 +3289,7 @@ static int do_chunk_alloc(struct btrfs_trans_handle *trans,
space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
space_info->chunk_alloc = 0;
spin_unlock(&space_info->lock);
out:
mutex_unlock(&extent_root->fs_info->chunk_mutex);
return ret;
}
Expand Down
6 changes: 4 additions & 2 deletions trunk/fs/btrfs/volumes.c
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,8 @@ static noinline int find_next_chunk(struct btrfs_root *root,
struct btrfs_key found_key;

path = btrfs_alloc_path();
BUG_ON(!path);
if (!path)
return -ENOMEM;

key.objectid = objectid;
key.offset = (u64)-1;
Expand Down Expand Up @@ -2663,7 +2664,8 @@ static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,

ret = find_next_chunk(fs_info->chunk_root,
BTRFS_FIRST_CHUNK_TREE_OBJECTID, &chunk_offset);
BUG_ON(ret);
if (ret)
return ret;

alloc_profile = BTRFS_BLOCK_GROUP_METADATA |
(fs_info->metadata_alloc_profile &
Expand Down

0 comments on commit d580057

Please sign in to comment.