Re: [PATCH v3 0/4] mm, swap: keep hibernation swap slots out of the swap cache

From: Andrew Morton

Date: Tue Aug 11 2026 - 14:50:27 EST


On Tue, 11 Aug 2026 22:22:05 +0900 Youngjun Park <youngjun.park@xxxxxxx> wrote:

> Cluster readahead walks a raw page_cluster sized window of offsets around
> the faulting entry. A hibernation slot looks like an ordinary swapped out
> slot, so __swap_cache_add_check() lets it in. Readahead reads the offset
> off the device into a folio and puts that folio in the swap table where the
> hibernation entry was. This has been possible for a long time. It only
> wasted a folio and a read.
>
> That changed with commit 0d6af9bcf383 ("mm, swap: use the swap table to
> track the swap count"). A slot with a folio in the swap cache should only
> be freed when the folio leaves the cache. swap_put_entries_cluster() still
> does that, but the conversion left swap_free_hibernation_slot() freeing the
> slot either way. Nothing points at the folio after that, and when reclaim
> drops it later, it writes to the table entry at the old offset, which
> someone else may own by then.
>
> Patch 1 is the fix and the only patch for stable. It puts the missing
> check back, so both free paths behave the same again.

Thanks.

When fixing things, please always take care to describe the
userspace-visible runtime effects of the bug, particularly when
proposing a -stable backport.

For [1/4] Gemini tells me "At a high level, this bug triggers silent
memory corruption, process crashes, or data instability across
completely unrelated userspace applications - typically occurring after a
system resumes from hibernation (suspend-to-disk)." Which is what I
figured too.

Do we have any reports of this? Reported-by/Closes?

I'd like to grab [1/4] only, and defer the other three until 7.3-rc1.
This might be mistaken, but from a quick read, it's not clear what
benefit those three patches offer our users.

And there's value in merging the backportable fix alone, to avoid the
risk that the other three patches accidentally fix misbehavior in
[1/4].