From: Youngjun Park <youngjun.park@lge.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Chris Li <chrisl@kernel.org>, Kairui Song <kasong@tencent.com>,
Kemeng Shi <shikemeng@huaweicloud.com>,
Nhat Pham <nphamcs@gmail.com>, Baoquan He <baoquan.he@linux.dev>,
Barry Song <baohua@kernel.org>,
Jianyue Wu <wujianyue000@gmail.com>,
her0gyugyu@gmail.com, linux-mm@kvack.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 0/4] mm, swap: keep hibernation swap slots out of the swap cache
Date: Tue, 11 Aug 2026 22:23:45 +0900 [thread overview]
Message-ID: <ansiYRpljHxWMtiQ@yjaykim-PowerEdge-T330> (raw)
In-Reply-To: <20260810151642.871c9b5d9cd56f6efd45ff90@linux-foundation.org>
On Mon, Aug 10, 2026 at 03:16:42PM -0700, Andrew Morton wrote:
> On Sun, 9 Aug 2026 23:45:55 +0900 Youngjun Park <youngjun.park@lge.com> 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.
> >
> > The rest removes the cause. Readahead should not touch these slots at all,
> > so patch 2 lets only swapped out slots into the swap cache, which also puts
> > back a bad slot check the swap cache rework dropped, patch 3 gives
> > hibernation slots their own swap table entry type so that check covers them
> > too, and patch 4 drops the guard and the reclaim, since no such folio can
> > exist any more.
>
> Thanks. It's late and review is only partial. I'd prefer to wait
> until after 7.3-rc1 to process this series.
>
> AI review suggests that more such fixing is needed in
> __swap_cache_add_check():
> https://sashiko.dev/#/patchset/20260809144559.2104856-1-youngjun.park@lge.com
False positive. But, more fix needed by different reason.
The walk the AI review points at is the large folio swapin path, where
swapin pulls the neighboring slots in together with the faulting one. A
bad slot cannot show up there. The range comes from present swap
entries in the page table or the shmem mapping, so every slot in it was
handed out by the allocator, and bad slots never are.
The spot is still worth fixing. The range is not pinned between the
locked check and the locked recheck, a concurrent free can empty a slot
in it, and hibernation can claim the emptied slot from the allocator.
The raw count read in the walk then trips the countable assertion under
DEBUG_VM, even though the -EBUSY fallback handles the changed range
fine.
I sent v3 with the shadow requirement of patch 2 extended to that routine.
Thanks!
Youngjun
prev parent reply other threads:[~2026-08-11 13:23 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-09 14:45 [PATCH v2 0/4] mm, swap: keep hibernation swap slots out of the swap cache Youngjun Park
2026-08-09 14:45 ` [PATCH v2 1/4] mm, swap: don't free a hibernation slot that is in " Youngjun Park
2026-08-09 14:45 ` [PATCH v2 2/4] mm, swap: only allow swapped-out slots into " Youngjun Park
2026-08-10 18:23 ` Kairui Song
2026-08-09 14:45 ` [PATCH v2 3/4] mm, swap: give hibernation swap slots their own swap table entry type Youngjun Park
2026-08-09 14:45 ` [PATCH v2 4/4] mm, swap: drop the swap cache guard and reclaim in swap_free_hibernation_slot() Youngjun Park
2026-08-10 22:16 ` [PATCH v2 0/4] mm, swap: keep hibernation swap slots out of the swap cache Andrew Morton
2026-08-11 13:23 ` Youngjun Park [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ansiYRpljHxWMtiQ@yjaykim-PowerEdge-T330 \
--to=youngjun.park@lge.com \
--cc=akpm@linux-foundation.org \
--cc=baohua@kernel.org \
--cc=baoquan.he@linux.dev \
--cc=chrisl@kernel.org \
--cc=her0gyugyu@gmail.com \
--cc=kasong@tencent.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=nphamcs@gmail.com \
--cc=shikemeng@huaweicloud.com \
--cc=wujianyue000@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.