From f0b1ff4481798c877bdf8869b8f69f36124466a8 Mon Sep 17 00:00:00 2001 From: Gui Hecheng Date: Wed, 26 Nov 2014 10:43:40 +0800 Subject: btrfs-progs: remove dead condition for btrfs_map_block The @search_cache_extent() only returns the next cache_extent or NULL, it will never return the previous cache_extent. So just remove the dead condition for previous cache_extent handle. Signed-off-by: Gui Hecheng Signed-off-by: David Sterba --- volumes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'volumes.c') diff --git a/volumes.c b/volumes.c index 5b007fc..a1fd162 100644 --- a/volumes.c +++ b/volumes.c @@ -1320,7 +1320,7 @@ again: kfree(multi); return -ENOENT; } - if (ce->start > logical || ce->start + ce->size < logical) { + if (ce->start > logical) { kfree(multi); return -ENOENT; } -- cgit v1.2.1