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 <guihc.f...@cn.fujitsu.com> --- volumes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 1.8.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html