Btrfs: don't do async reclaim during log replay
[cascardo/linux.git] / fs / btrfs / extent-tree.c
index 28a27d5..44d0497 100644 (file)
@@ -4513,7 +4513,13 @@ again:
                space_info->flush = 1;
        } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
                used += orig_bytes;
-               if (need_do_async_reclaim(space_info, root->fs_info, used) &&
+               /*
+                * We will do the space reservation dance during log replay,
+                * which means we won't have fs_info->fs_root set, so don't do
+                * the async reclaim as we will panic.
+                */
+               if (!root->fs_info->log_root_recovering &&
+                   need_do_async_reclaim(space_info, root->fs_info, used) &&
                    !work_busy(&root->fs_info->async_reclaim_work))
                        queue_work(system_unbound_wq,
                                   &root->fs_info->async_reclaim_work);