]> 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:22:16 +0000 (01:22 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 17 Feb 2025 09:05:46 +0000 (10:05 +0100)
This reverts commit 9f372e86b9bd1914df58c8f6e30939b7a224c6b0.

The backport for linux-6.12.y, commit 9f372e86b9bd ("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: 9f372e86b9bd ("btrfs: avoid monopolizing a core when activating a swap file") # linux-6.12.y
Signed-off-by: Koichiro Den <koichiro.den@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/btrfs/inode.c

index 9d9ce308488dd3577d72ed2ac0dd063dde3fd74c..197ba9be9718719fa69799f2eee8033cbac2f2dd 100644 (file)
@@ -7200,8 +7200,6 @@ noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
                        ret = -EAGAIN;
                        goto out;
                }
-
-               cond_resched();
        }
 
        if (file_extent)