From: "David Hildenbrand (Arm)" <david@kernel.org>
To: xu.xin16@zte.com.cn, akpm@linux-foundation.org
Cc: chengming.zhou@linux.dev, hughd@google.com,
wang.yaxin@zte.com.cn, linux-mm@kvack.org,
linux-kernel@vger.kernel.org, ljs@kernel.org
Subject: Re: [PATCH v8 1/3] ksm: add linear_page_index into ksm_rmap_item
Date: Tue, 9 Jun 2026 09:44:37 +0200 [thread overview]
Message-ID: <84886648-8cbb-49db-a816-de3e0d359ed0@kernel.org> (raw)
In-Reply-To: <20260609124031750t-yHeQFCJs4gAeOmsvEJx@zte.com.cn>
On 6/9/26 06:40, xu.xin16@zte.com.cn wrote:
> From: xu xin <xu.xin16@zte.com.cn>
>
> As preparation for KSM rmap optimizations, let's track the original
> linear_page_index() of a de-duplicated page in its ksm_rmap_item, so we can
> efficiently search for the page in an address space, avoiding scanning the
> entire address space. This was previously discussed in [1, 2].
>
> To avoid growing ksm_rmap_item, let's squeeze it into the existing
> structure by overlying some members (oldchecksum, age, remaining_skips)
> that are only relevant while on the unstable tree. The new entry will
> only be relevant for entries in the stable tree.
>
> However, as the age information is read by should_skip_rmap_item() with the
> smart-scanning approach even while we have an entry in the stable tree, but
> the page changes (no longer a KSM page, for example due to COW), we have to
> change the handling there a bit.
>
> We'll calculate the linear page index in try_to_merge_with_ksm_page(), when
> adding it to the stable tree, and reset the index (to reset overlayed data)
> when removing an item from the stable tree -- in
> remove_rmap_item_from_tree(), remove_node_from_stable_tree() and
> break_cow().
>
> To be specially clarified, the reason for resetting the stored index at
> break_cow() is:
>
> - When a page successfully becomes a KSM page (i.e., after
> stable_tree_append() sets STABLE_FLAG), both anon_vma and the index are
> stored and remain valid.
>
> - However, during the merging process, there are several failure paths
> where we already prepared an rmap item to be added to the stable tree,
> but must revert that as some part of the merge process failed. Examples
> include:
> * The second call to try_to_merge_with_ksm_page() fails in
> try_to_merge_two_pages().
> * stable_tree_insert() fails in cmp_and_merge_page().
> In such cases, break_cow() is invoked to break the COW mapping and
> discard the KSM state.
>
> Currently, break_cow() already contains a put_anon_vma(rmap_item->anon_vma)
> to release the reference taken during the aborted merge. Because the index
> is logically paired with anon_vma (both are only meaningful when the
> rmap_item is in a stable state), it must also be cleared (or reset) in
> break_cow() to avoid leaving stale linear_page_index values that could
> confuse subsequent rmap walks or scanning logic.
>
> [1] https://lore.kernel.org/all/adTPQSb-qSSHviJN@lucifer/
> [2] https://lore.kernel.org/all/202604091806051535BJWZ_FTtdIm3Snk24ei_@zte.com.cn/
[...]
> +/*
> + * break_cow: actively break COW, replacing the KSM page by a fresh anonymous
> + * page. This is called when rmap_item has not yet become stable, but page
> + * has been merged.
> + */
> static void break_cow(struct ksm_rmap_item *rmap_item)
> {
> struct mm_struct *mm = rmap_item->mm;
> @@ -787,6 +798,11 @@ static void break_cow(struct ksm_rmap_item *rmap_item)
> * to undo, we also need to drop a reference to the anon_vma.
> */
> put_anon_vma(rmap_item->anon_vma);
> + /*
> + * Reset linear_page_index that might overlay age-related
> + * information. (it's still unstable node)
> + */
> + rmap_item->linear_page_index = 0;
Sashiko comments that, on 32bit, it is not overlaying age-related information.
So setting it to 0 won't clear the age.
Which is what we document with the "might".
On 32bit, it simply behaves the way it was before (no reset of age-related
information here).
We could move oldchecksum below remaining_skips to clear age-related information
consistently. Not sure whether that is really worth it.
I would even say that we can just stop supporting KSM on 32bit completely.
>
> mmap_read_lock(mm);
> vma = find_mergeable_vma(mm, addr);
> @@ -899,6 +915,8 @@ static void remove_node_from_stable_tree(struct ksm_stable_node *stable_node)
> VM_BUG_ON(stable_node->rmap_hlist_len <= 0);
> stable_node->rmap_hlist_len--;
> put_anon_vma(rmap_item->anon_vma);
> + /* Reset linear_page_index that might overlay age-related information. */
> + rmap_item->linear_page_index = 0;
> rmap_item->address &= PAGE_MASK;
> cond_resched();
> }
> @@ -1052,6 +1070,8 @@ static void remove_rmap_item_from_tree(struct ksm_rmap_item *rmap_item)
> stable_node->rmap_hlist_len--;
>
> put_anon_vma(rmap_item->anon_vma);
> + /* Reset linear_page_index that might overlay age-related information. */
> + rmap_item->linear_page_index = 0;
> rmap_item->head = NULL;
> rmap_item->address &= PAGE_MASK;
>
> @@ -1598,8 +1618,16 @@ static int try_to_merge_with_ksm_page(struct ksm_rmap_item *rmap_item,
> /* Unstable nid is in union with stable anon_vma: remove first */
> remove_rmap_item_from_tree(rmap_item);
>
> - /* Must get reference to anon_vma while still holding mmap_lock */
> + /*
> + * Must get reference to anon_vma while still holding mmap_lock.
I think this sentence should go, and instead ...
> + * Must can only reference the VMA while still holding the mmap
This one should become:
"We can consider the VMA only while still holding the mmap lock, so ...
> + * lock, so reference the anon_vma and calculate the linear page
> + * index early, before stable_tree_append(). If anything goes
> + * wrong that prevents the rmap_item from being added to the
> + * stable_tree, break_cow() will clean it up.
> + */
> rmap_item->anon_vma = vma->anon_vma;
> + rmap_item->linear_page_index = linear_page_index(vma, rmap_item->address);
> get_anon_vma(vma->anon_vma);
> out:
> mmap_read_unlock(mm);
> @@ -2458,6 +2486,13 @@ static bool should_skip_rmap_item(struct folio *folio,
> if (folio_test_ksm(folio))
> return false;
Thinking about the overlay once more, I'm trying to assess what it means when we
clear rmap_item->checksum. We'd do that now in:
(a) remove_node_from_stable_tree(): We had a stable node -> KSM page, but
something changed.
(b) remove_rmap_item_from_tree(): Same as (a)
(c) break_cow(): we have to unshare, either because insertion into the stable
tree failed, or because we would have only a single PTE mapping the KSM
folio after a failed merge.
For (c), I guess if we'd have to, we could remember the checksum while
processing the rmap_item.
Clearing rmap_item->checksum implies that cmp_and_merge_page() would refuse to
merge one round.
Having rmap_item->checksum cleared is just like allocating a fresh rmap_item. So
it will fix itself up during the next scan.
So my best guess is that this is alright.
Hoping for no surprises in corner cases
Acked-by: David Hildenbrand (Arm) <david@kernel.org>
--
Cheers,
David
next prev parent reply other threads:[~2026-06-09 7:44 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-09 4:39 [PATCH v8 0/3] KSM: performance optimizations for rmap_walk_ksm xu.xin16
2026-06-09 4:40 ` [PATCH v8 1/3] ksm: add linear_page_index into ksm_rmap_item xu.xin16
2026-06-09 7:44 ` David Hildenbrand (Arm) [this message]
2026-06-09 11:45 ` xu.xin16
2026-06-09 4:47 ` [PATCH v8 2/3] ksm: Optimize rmap_walk_ksm by passing a suitable page index xu.xin16
2026-06-09 8:13 ` David Hildenbrand (Arm)
2026-06-09 4:47 ` [PATCH v8 3/3] ksm: add mremap selftests for ksm_rmap_walk xu.xin16
2026-06-09 9:18 ` David Hildenbrand (Arm)
2026-06-10 6:21 ` xu.xin16
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=84886648-8cbb-49db-a816-de3e0d359ed0@kernel.org \
--to=david@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=chengming.zhou@linux.dev \
--cc=hughd@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=ljs@kernel.org \
--cc=wang.yaxin@zte.com.cn \
--cc=xu.xin16@zte.com.cn \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®