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 4/7] mm: damon: paddr: convert damon_pa_*() to use folios
Date: Wed, 28 Dec 2022 09:26:21 +0800 [thread overview]
Message-ID: <a1e8633d-3338-8d62-4bac-2e54a5808f61@huawei.com> (raw)
In-Reply-To: <20221227195004.2809-1-sj@kernel.org>
On 2022/12/28 3:50, SeongJae Park wrote:
> Hi Kefeng,
>
>> With damon_get_folio(), let's convert all the damon_pa_*() to use folios.
>>
>> Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
>> ---
>> mm/damon/paddr.c | 59 +++++++++++++++++++++---------------------------
>> 1 file changed, 26 insertions(+), 33 deletions(-)
>>
>> diff --git a/mm/damon/paddr.c b/mm/damon/paddr.c
>> index 6334c99e5152..728a96c929fc 100644
>> --- a/mm/damon/paddr.c
>> +++ b/mm/damon/paddr.c
>> @@ -33,17 +33,15 @@ static bool __damon_pa_mkold(struct folio *folio, struct vm_area_struct *vma,
>>
>> static void damon_pa_mkold(unsigned long paddr)
>> {
>> - struct folio *folio;
>> - struct page *page = damon_get_page(PHYS_PFN(paddr));
>> + struct folio *folio = damon_get_folio(PHYS_PFN(paddr));
>> struct rmap_walk_control rwc = {
>> .rmap_one = __damon_pa_mkold,
>> .anon_lock = folio_lock_anon_vma_read,
>> };
>> bool need_lock;
>>
>> - if (!page)
>> + if (!folio)
>> return;
>> - folio = page_folio(page);
>>
>> if (!folio_mapped(folio) || !folio_raw_mapping(folio)) {
>> folio_set_idle(folio);
>> @@ -58,7 +56,6 @@ static void damon_pa_mkold(unsigned long paddr)
>>
>> if (need_lock)
>> folio_unlock(folio);
>> -
>
> Seems unnecessary change?
oh, will drop this change, thanks
>
> Thanks,
> SJ
next prev parent reply other threads:[~2022-12-28 1:26 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 " 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
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 [this message]
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=a1e8633d-3338-8d62-4bac-2e54a5808f61@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