]> 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:19:54 +0000 (01:19 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 13 Mar 2025 11:47:24 +0000 (12:47 +0100)
This reverts commit a1c3a19446a440c68e80e9c34c5f308ff58aac88.

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

index 560c4f2a183345038746cfecd46b42ac50c02dc4..45c1732a9677d1ded07cf44f514759d752c2d0ad 100644 (file)
@@ -7127,8 +7127,6 @@ noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
                        ret = -EAGAIN;
                        goto out;
                }
-
-               cond_resched();
        }
 
        btrfs_release_path(path);