aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/extent-tree.c
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2008-07-22 11:18:08 -0400
committerChris Mason <chris.mason@oracle.com>2008-09-25 11:04:05 -0400
commita61e6f29dc7c9d56a776a518eed92bbc61848263 (patch)
tree6856ad3e5822eacfc2ac94693b6023ef81567fd2 /fs/btrfs/extent-tree.c
parent6af118ce51b52ceda357c671550c79628b9c4a65 (diff)
Btrfs: Use a mutex in the extent buffer for tree block locking
This replaces the use of the page cache lock bit for locking, which wasn't suitable for block size < page size and couldn't be used recursively. The mutexes alone don't fix either problem, but they are the first step. Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/extent-tree.c')
-rw-r--r--fs/btrfs/extent-tree.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c
index ccd49322f793..c51cd11de206 100644
--- a/fs/btrfs/extent-tree.c
+++ b/fs/btrfs/extent-tree.c
@@ -1451,7 +1451,7 @@ static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1451 struct extent_buffer *buf; 1451 struct extent_buffer *buf;
1452 buf = btrfs_find_tree_block(root, bytenr, num_bytes); 1452 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
1453 if (buf) { 1453 if (buf) {
1454 if (!btrfs_try_tree_lock(buf) && 1454 if (btrfs_try_tree_lock(buf) &&
1455 btrfs_buffer_uptodate(buf, 0)) { 1455 btrfs_buffer_uptodate(buf, 0)) {
1456 u64 transid = 1456 u64 transid =
1457 root->fs_info->running_transaction->transid; 1457 root->fs_info->running_transaction->transid;
@@ -3345,11 +3345,6 @@ int btrfs_read_block_groups(struct btrfs_root *root)
3345 set_state_private(block_group_cache, found_key.objectid, 3345 set_state_private(block_group_cache, found_key.objectid,
3346 (unsigned long)cache); 3346 (unsigned long)cache);
3347 3347
3348 /* hack for now */
3349 if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
3350 cache_block_group(root->fs_info->extent_root,
3351 cache);
3352 }
3353 if (key.objectid >= 3348 if (key.objectid >=
3354 btrfs_super_total_bytes(&info->super_copy)) 3349 btrfs_super_total_bytes(&info->super_copy))
3355 break; 3350 break;