]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
Revert "btrfs: avoid monopolizing a core when activating a swap file"
authorKoichiro Den <koichiro.den@canonical.com>
Thu, 6 Feb 2025 16:20:22 +0000 (01:20 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 13 Mar 2025 11:50:47 +0000 (12:50 +0100)
This reverts commit 214d92f0a465f93eea15e702e743f2c63823b1fd.

The backport for linux-5.15.y, commit 214d92f0a465 ("btrfs: avoid
monopolizing a core when activating a swap file"), inserted
cond_resched() in the wrong location.

Revert it now; a subsequent commit will re-backport the original patch.

Fixes: 214d92f0a465 ("btrfs: avoid monopolizing a core when activating a swap file") # linux-5.15.y
Signed-off-by: Koichiro Den <koichiro.den@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/btrfs/inode.c

index a6b1dd8340600713773674e3de7eb5b7eec5adfc..8f048e517e656ed1b2b123531f867e23a5a9bde1 100644 (file)
@@ -7698,8 +7698,6 @@ noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
                        ret = -EAGAIN;
                        goto out;
                }
-
-               cond_resched();
        }
 
        btrfs_release_path(path);