Btrfs: don't wait on uptodate buffers on read
Signed-off-by: Chris Mason <chris.mason@oracle.com>
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index 39b117a..055cd45 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -214,6 +214,8 @@
bh = btrfs_find_create_tree_block(root, blocknr);
if (!bh)
return bh;
+ if (buffer_uptodate(bh))
+ goto uptodate;
lock_buffer(bh);
if (!buffer_uptodate(bh)) {
get_bh(bh);
@@ -226,6 +228,7 @@
} else {
unlock_buffer(bh);
}
+uptodate:
if (check_tree_block(root, bh))
BUG();
return bh;