The backref code is looking for a reloc_root that corresponds to the
given fs root.  However any number of things could have gone wrong while
initializing that reloc_root, like ENOMEM while trying to allocate the
root itself, or EIO while trying to write the root item.  This would
result in no corresponding reloc_root being in the reloc root cache, and
thus would return NULL when we do the find_reloc_root() call.

Because of this we do not want to WARN_ON().  This presumably was meant
to catch developer errors, cases where we messed up adding the reloc
root.  However we can easily hit this case with error injection, and
thus should not do a WARN_ON().

Reported-by: Zygo Blaxell <ce3g8...@umail.furryterror.org>
Signed-off-by: Josef Bacik <jo...@toxicpanda.com>
---
 fs/btrfs/backref.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/btrfs/backref.c b/fs/btrfs/backref.c
index ef71aba5bc15..7ac59a568595 100644
--- a/fs/btrfs/backref.c
+++ b/fs/btrfs/backref.c
@@ -2617,7 +2617,7 @@ static int handle_direct_tree_backref(struct 
btrfs_backref_cache *cache,
                /* Only reloc backref cache cares about a specific root */
                if (cache->is_reloc) {
                        root = find_reloc_root(cache->fs_info, cur->bytenr);
-                       if (WARN_ON(!root))
+                       if (!root)
                                return -ENOENT;
                        cur->root = root;
                } else {
-- 
2.26.2

Reply via email to