From: Kefeng Wang <wangkefeng.wang@huawei.com>
To: SeongJae Park <sj@kernel.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
<damon@lists.linux.dev>, <linux-mm@kvack.org>,
<vishal.moola@gmail.com>, <willy@infradead.org>,
<david@redhat.com>
Subject: Re: [PATCH -next v2 2/7] mm: damon: introduce damon_get_folio()
Date: Wed, 28 Dec 2022 10:06:20 +0800 [thread overview]
Message-ID: <f6741372-de20-0fea-a876-07dc4248356a@huawei.com> (raw)
In-Reply-To: <20221227194257.2744-1-sj@kernel.org>
On 2022/12/28 3:42, SeongJae Park wrote:
> Hi Kefeng,
>
> Could we use 'mm/damon:' prefix instead of 'mm: damon:' for the patch subjects?
Sure.
>
> On Tue, 27 Dec 2022 20:27:09 +0800 Kefeng Wang <wangkefeng.wang@huawei.com> wrote:
>
>> Introduce damon_get_folio(), and the temporary wrapper function
>> damon_get_page(), which help us to convert damon related function
>> to use folios, and it will be droped once the conversion is completed.
>>
>> Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
>> ---
>> mm/damon/ops-common.c | 14 ++++++++------
>> mm/damon/ops-common.h | 8 +++++++-
>> 2 files changed, 15 insertions(+), 7 deletions(-)
>>
>> diff --git a/mm/damon/ops-common.c b/mm/damon/ops-common.c
>> index 75409601f934..ff38a19aa92e 100644
>> --- a/mm/damon/ops-common.c
>> +++ b/mm/damon/ops-common.c
>> @@ -16,21 +16,23 @@
>> * Get an online page for a pfn if it's in the LRU list. Otherwise, returns
>> * NULL.
>> *
>> - * The body of this function is stolen from the 'page_idle_get_page()'. We
>> + * The body of this function is stolen from the 'page_idle_get_folio()'. We
>> * steal rather than reuse it because the code is quite simple.
>> */
>> -struct page *damon_get_page(unsigned long pfn)
>> +struct folio *damon_get_folio(unsigned long pfn)
>> {
>> struct page *page = pfn_to_online_page(pfn);
>> + struct folio *folio;
>>
>> if (!page || !PageLRU(page) || !get_page_unless_zero(page))
>> return NULL;
>>
>> - if (unlikely(!PageLRU(page))) {
>> - put_page(page);
>> - page = NULL;
>> + folio = page_folio(page);
>> + if (unlikely(!folio_test_lru(folio))) {
>> + folio_put(folio);
>> + folio = NULL;
>> }
>
> I think Matthew's comment for 'page_idle_get_folio()'[1] could applied here?
>
Will change too.
>
> [1] https://lore.kernel.org/damon/Y6s2HPjrON2Sx%2Fgr@casper.infradead.org/
>
>> - return page;
>> + return folio;
>> }
>>
>> void damon_ptep_mkold(pte_t *pte, struct mm_struct *mm, unsigned long addr)
>> diff --git a/mm/damon/ops-common.h b/mm/damon/ops-common.h
>> index 8d82d3722204..4ee607813981 100644
>> --- a/mm/damon/ops-common.h
>> +++ b/mm/damon/ops-common.h
>> @@ -7,7 +7,13 @@
>>
>> #include <linux/damon.h>
>>
>> -struct page *damon_get_page(unsigned long pfn);
>> +struct folio *damon_get_folio(unsigned long pfn);
>> +static inline struct page *damon_get_page(unsigned long pfn)
>> +{
>> + struct folio *folio = damon_get_folio(pfn);
>> +
>> + return &folio->page;
>
> I think we should check if folio is NULL before dereferencing it?
I could add comment here, thanks.
>
>> +}
>>
>> void damon_ptep_mkold(pte_t *pte, struct mm_struct *mm, unsigned long addr);
>> void damon_pmdp_mkold(pmd_t *pmd, struct mm_struct *mm, unsigned long addr);
>> --
>> 2.35.3
>>
next prev parent reply other threads:[~2022-12-28 2:06 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-27 12:27 [PATCH -next v2 0/7] mm: convert page_idle/damon to use folios Kefeng Wang
2022-12-27 12:27 ` [PATCH -next v2 1/7] mm: page_idle: Convert page idle " Kefeng Wang
2022-12-27 18:14 ` Matthew Wilcox
2022-12-28 1:18 ` Kefeng Wang
2022-12-27 12:27 ` [PATCH -next v2 2/7] mm: damon: introduce damon_get_folio() Kefeng Wang
2022-12-27 19:42 ` SeongJae Park
2022-12-27 19:49 ` Matthew Wilcox
2022-12-27 21:38 ` SeongJae Park
2022-12-28 2:06 ` Kefeng Wang [this message]
2022-12-27 12:27 ` [PATCH -next v2 3/7] mm: damon: convert damon_ptep/pmdp_mkold() to use folios Kefeng Wang
2022-12-27 12:27 ` [PATCH -next v2 4/7] mm: damon: paddr: convert damon_pa_*() " Kefeng Wang
2022-12-27 19:50 ` SeongJae Park
2022-12-28 1:26 ` Kefeng Wang
2022-12-27 12:27 ` [PATCH -next v2 5/7] mm: damon: vaddr: convert damon_young_pmd_entry() to use folio Kefeng Wang
2022-12-27 12:27 ` [PATCH -next v2 6/7] mm: damon: remove unneed damon_get_page() Kefeng Wang
2022-12-27 12:27 ` [PATCH -next v2 7/7] mm: damon: vaddr: convert hugetlb related function to use folios 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=f6741372-de20-0fea-a876-07dc4248356a@huawei.com \
--to=wangkefeng.wang@huawei.com \
--cc=akpm@linux-foundation.org \
--cc=damon@lists.linux.dev \
--cc=david@redhat.com \
--cc=linux-mm@kvack.org \
--cc=sj@kernel.org \
--cc=vishal.moola@gmail.com \
--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