* [PATCH] btrfs: hold space_info->lock when clearing periodic reclaim ready
@ 2026-02-09 12:53 Sun YangKai
2026-02-09 17:10 ` Boris Burkov
2026-02-24 17:06 ` David Sterba
0 siblings, 2 replies; 4+ messages in thread
From: Sun YangKai @ 2026-02-09 12:53 UTC (permalink / raw)
To: linux-btrfs; +Cc: Sun YangKai, Chris Mason
btrfs_set_periodic_reclaim_ready() requires space_info->lock to be held,
as enforced by lockdep_assert_held(). However, btrfs_reclaim_sweep() was
calling it after do_reclaim_sweep() returns, at which point
space_info->lock is no longer held.
Fix this by explicitly acquiring space_info->lock before clearing the
periodic reclaim ready flag in btrfs_reclaim_sweep().
Fixes: 19eff93dc738 ("btrfs: fix periodic reclaim condition")
Reported-by: Chris Mason <clm@meta.com>
Closes: https://lore.kernel.org/linux-btrfs/20260208182556.891815-1-clm@meta.com/
Signed-off-by: Sun YangKai <sunk67188@gmail.com>
---
fs/btrfs/space-info.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/fs/btrfs/space-info.c b/fs/btrfs/space-info.c
index 1dd65fae6349..931f0dc02b95 100644
--- a/fs/btrfs/space-info.c
+++ b/fs/btrfs/space-info.c
@@ -2205,8 +2205,11 @@ void btrfs_reclaim_sweep(const struct btrfs_fs_info *fs_info)
if (!btrfs_should_periodic_reclaim(space_info))
continue;
for (raid = 0; raid < BTRFS_NR_RAID_TYPES; raid++) {
- if (do_reclaim_sweep(space_info, raid))
+ if (do_reclaim_sweep(space_info, raid)) {
+ spin_lock(&space_info->lock);
btrfs_set_periodic_reclaim_ready(space_info, false);
+ spin_unlock(&space_info->lock);
+ }
}
}
}
--
2.52.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] btrfs: hold space_info->lock when clearing periodic reclaim ready
2026-02-09 12:53 [PATCH] btrfs: hold space_info->lock when clearing periodic reclaim ready Sun YangKai
@ 2026-02-09 17:10 ` Boris Burkov
2026-02-24 17:06 ` David Sterba
1 sibling, 0 replies; 4+ messages in thread
From: Boris Burkov @ 2026-02-09 17:10 UTC (permalink / raw)
To: Sun YangKai; +Cc: linux-btrfs, Chris Mason
On Mon, Feb 09, 2026 at 08:53:39PM +0800, Sun YangKai wrote:
> btrfs_set_periodic_reclaim_ready() requires space_info->lock to be held,
> as enforced by lockdep_assert_held(). However, btrfs_reclaim_sweep() was
> calling it after do_reclaim_sweep() returns, at which point
> space_info->lock is no longer held.
>
> Fix this by explicitly acquiring space_info->lock before clearing the
> periodic reclaim ready flag in btrfs_reclaim_sweep().
>
> Fixes: 19eff93dc738 ("btrfs: fix periodic reclaim condition")
> Reported-by: Chris Mason <clm@meta.com>
> Closes: https://lore.kernel.org/linux-btrfs/20260208182556.891815-1-clm@meta.com/
> Signed-off-by: Sun YangKai <sunk67188@gmail.com>
Reviewed-by: Boris Burkov <boris@bur.io>
> ---
> fs/btrfs/space-info.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/fs/btrfs/space-info.c b/fs/btrfs/space-info.c
> index 1dd65fae6349..931f0dc02b95 100644
> --- a/fs/btrfs/space-info.c
> +++ b/fs/btrfs/space-info.c
> @@ -2205,8 +2205,11 @@ void btrfs_reclaim_sweep(const struct btrfs_fs_info *fs_info)
> if (!btrfs_should_periodic_reclaim(space_info))
> continue;
> for (raid = 0; raid < BTRFS_NR_RAID_TYPES; raid++) {
> - if (do_reclaim_sweep(space_info, raid))
> + if (do_reclaim_sweep(space_info, raid)) {
> + spin_lock(&space_info->lock);
> btrfs_set_periodic_reclaim_ready(space_info, false);
> + spin_unlock(&space_info->lock);
> + }
> }
> }
> }
> --
> 2.52.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] btrfs: hold space_info->lock when clearing periodic reclaim ready
2026-02-09 12:53 [PATCH] btrfs: hold space_info->lock when clearing periodic reclaim ready Sun YangKai
2026-02-09 17:10 ` Boris Burkov
@ 2026-02-24 17:06 ` David Sterba
2026-02-26 8:03 ` Sun YangKai
1 sibling, 1 reply; 4+ messages in thread
From: David Sterba @ 2026-02-24 17:06 UTC (permalink / raw)
To: Sun YangKai; +Cc: linux-btrfs, Chris Mason
On Mon, Feb 09, 2026 at 08:53:39PM +0800, Sun YangKai wrote:
> btrfs_set_periodic_reclaim_ready() requires space_info->lock to be held,
> as enforced by lockdep_assert_held(). However, btrfs_reclaim_sweep() was
> calling it after do_reclaim_sweep() returns, at which point
> space_info->lock is no longer held.
>
> Fix this by explicitly acquiring space_info->lock before clearing the
> periodic reclaim ready flag in btrfs_reclaim_sweep().
>
> Fixes: 19eff93dc738 ("btrfs: fix periodic reclaim condition")
> Reported-by: Chris Mason <clm@meta.com>
> Closes: https://lore.kernel.org/linux-btrfs/20260208182556.891815-1-clm@meta.com/
Please use Link: for the original report unless the tag is known to be
used for some sort of automation, e.g. what syzbot does.
> Signed-off-by: Sun YangKai <sunk67188@gmail.com>
Added to for-next, thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] btrfs: hold space_info->lock when clearing periodic reclaim ready
2026-02-24 17:06 ` David Sterba
@ 2026-02-26 8:03 ` Sun YangKai
0 siblings, 0 replies; 4+ messages in thread
From: Sun YangKai @ 2026-02-26 8:03 UTC (permalink / raw)
To: dsterba; +Cc: linux-btrfs, Chris Mason
On 2026/2/25 01:06, David Sterba wrote:
> On Mon, Feb 09, 2026 at 08:53:39PM +0800, Sun YangKai wrote:
>> btrfs_set_periodic_reclaim_ready() requires space_info->lock to be held,
>> as enforced by lockdep_assert_held(). However, btrfs_reclaim_sweep() was
>> calling it after do_reclaim_sweep() returns, at which point
>> space_info->lock is no longer held.
>>
>> Fix this by explicitly acquiring space_info->lock before clearing the
>> periodic reclaim ready flag in btrfs_reclaim_sweep().
>>
>> Fixes: 19eff93dc738 ("btrfs: fix periodic reclaim condition")
>> Reported-by: Chris Mason <clm@meta.com>
>> Closes: https://lore.kernel.org/linux-btrfs/20260208182556.891815-1-clm@meta.com/
>
> Please use Link: for the original report unless the tag is known to be
> used for some sort of automation, e.g. what syzbot does.
Got it. Thanks a lot :)
>
>> Signed-off-by: Sun YangKai <sunk67188@gmail.com>
>
> Added to for-next, thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-02-26 8:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-09 12:53 [PATCH] btrfs: hold space_info->lock when clearing periodic reclaim ready Sun YangKai
2026-02-09 17:10 ` Boris Burkov
2026-02-24 17:06 ` David Sterba
2026-02-26 8:03 ` Sun YangKai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox