From: Kefeng Wang <wangkefeng.wang@huawei.com>
To: Matthew Wilcox <willy@infradead.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
<linux-kernel@vger.kernel.org>, <linux-mm@kvack.org>,
David Hildenbrand <david@redhat.com>
Subject: Re: [PATCH 1/6] mm: ksm: use more folio api in ksm_might_need_to_copy()
Date: Thu, 9 Nov 2023 15:09:53 +0800 [thread overview]
Message-ID: <67eedbab-bf15-4bc3-88ce-36fc074393bd@huawei.com> (raw)
In-Reply-To: <ZUuUVDbiWETJ2OU1@casper.infradead.org>
On 2023/11/8 21:59, Matthew Wilcox wrote:
> On Wed, Nov 08, 2023 at 09:40:09AM +0800, Kefeng Wang wrote:
>>
>>
>> On 2023/11/7 22:24, Matthew Wilcox wrote:
>>> On Tue, Nov 07, 2023 at 09:52:11PM +0800, Kefeng Wang wrote:
>>>> struct page *ksm_might_need_to_copy(struct page *page,
>>>> - struct vm_area_struct *vma, unsigned long address)
>>>> + struct vm_area_struct *vma, unsigned long addr)
>>>> {
>>>> struct folio *folio = page_folio(page);
>>>> struct anon_vma *anon_vma = folio_anon_vma(folio);
>>>> - struct page *new_page;
>>>> + struct folio *new_folio;
>>>> - if (PageKsm(page)) {
>>>> - if (page_stable_node(page) &&
>>>> + if (folio_test_ksm(folio)) {
>>>> + if (folio_stable_node(folio) &&
>>>> !(ksm_run & KSM_RUN_UNMERGE))
>>>> return page; /* no need to copy it */
>>>> } else if (!anon_vma) {
>>>> return page; /* no need to copy it */
>>>> - } else if (page->index == linear_page_index(vma, address) &&
>>>> + } else if (page->index == linear_page_index(vma, addr) &&
>>>
>>> Hmm. page->index is going away. What should we do here instead?
>>
>> Do you mean to replace page->index to folio->index, or kill index from
>> struct page?
>
> I'm asking you what we should do.
>
> Tail pages already don't have a valid ->index (or ->mapping).
> So presumably we can't see a tail page here today. But will we in future?
I think we could replace page->index to page_to_pgoff(page).
>
> Just to remind you, the goal here is:
>
> struct page {
> unsigned long memdesc;
> };
>
Get your point, that will be great.
> so folios will be the only thing that have a ->index. I haven't looked
> at this code; I know nothing about it. But you're changing it, so you
> must have some understanding of it.
>
next prev parent reply other threads:[~2023-11-09 7:29 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-07 13:52 [PATCH 0/6] mm: cleanup and use more folio in page fault Kefeng Wang
2023-11-07 13:52 ` [PATCH 1/6] mm: ksm: use more folio api in ksm_might_need_to_copy() Kefeng Wang
2023-11-07 14:24 ` Matthew Wilcox
2023-11-08 1:40 ` Kefeng Wang
2023-11-08 13:59 ` Matthew Wilcox
2023-11-09 7:09 ` Kefeng Wang [this message]
2023-11-13 8:32 ` David Hildenbrand
2023-11-13 9:51 ` Kefeng Wang
2023-11-07 13:52 ` [PATCH 2/6] mm: memory: use a folio in validate_page_before_insert() Kefeng Wang
2023-11-07 18:17 ` Sidhartha Kumar
2023-11-07 13:52 ` [PATCH 3/6] mm: memory: rename page_copy_prealloc() to folio_prealloc() Kefeng Wang
2023-11-07 18:21 ` Sidhartha Kumar
2023-11-07 13:52 ` [PATCH 4/6] mm: memory: use a folio in do_cow_page() Kefeng Wang
2023-11-07 18:27 ` Sidhartha Kumar
2023-11-08 1:41 ` Kefeng Wang
2023-11-07 13:52 ` [PATCH 5/6] mm: memory: use folio_prealloc() in wp_page_copy() Kefeng Wang
2023-11-07 13:52 ` [PATCH 6/6] mm: memory: use folio_prealloc() in do_anonymous_page() Kefeng Wang
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=67eedbab-bf15-4bc3-88ce-36fc074393bd@huawei.com \
--to=wangkefeng.wang@huawei.com \
--cc=akpm@linux-foundation.org \
--cc=david@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=willy@infradead.org \
/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