From: David Hildenbrand <david@redhat.com>
To: Bibo Mao <maobibo@loongson.cn>,
Andrew Morton <akpm@linux-foundation.org>
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
Anshuman Khandual <anshuman.khandual@arm.com>
Subject: Re: [PATCH v2] mm: add access/dirty bit on numa page fault
Date: Thu, 17 Mar 2022 13:32:48 +0100 [thread overview]
Message-ID: <fbe8f659-44dd-dd10-a3c3-acaf387abd4d@redhat.com> (raw)
In-Reply-To: <20220317065033.2635123-1-maobibo@loongson.cn>
On 17.03.22 07:50, Bibo Mao wrote:
> On platforms like x86/arm which supports hw page walking, access
> and dirty bit is set by hw, however on some platforms without
> such hw functions, access and dirty bit is set by software in
> next trap.
>
> During numa page fault, dirty bit can be added for old pte if
> fail to migrate on write fault. And if it succeeds to migrate,
> access bit can be added for migrated new pte, also dirty bit
> can be added for write fault.
>
> Signed-off-by: Bibo Mao <maobibo@loongson.cn>
> ---
> mm/memory.c | 21 ++++++++++++++++++++-
> 1 file changed, 20 insertions(+), 1 deletion(-)
>
> diff --git a/mm/memory.c b/mm/memory.c
> index c125c4969913..65813bec9c06 100644
> --- a/mm/memory.c
> +++ b/mm/memory.c
> @@ -4404,6 +4404,22 @@ static vm_fault_t do_numa_page(struct vm_fault *vmf)
> if (migrate_misplaced_page(page, vma, target_nid)) {
> page_nid = target_nid;
> flags |= TNF_MIGRATED;
> +
> + /*
> + * update pte entry with access bit, and dirty bit for
> + * write fault
> + */
> + spin_lock(vmf->ptl);
Ehm, are you sure? We did a pte_unmap_unlock(), so you most certainly need a
vmf->pte = pte_offset_map(vmf->pmd, vmf->address);
Also, don't we need pte_same() checks before we do anything after
dropping the PT lock?
> + pte = *vmf->pte;
> + pte = pte_mkyoung(pte);
> + if (was_writable) {
> + pte = pte_mkwrite(pte);
> + if (vmf->flags & FAULT_FLAG_WRITE)
> + pte = pte_mkdirty(pte);
> + }
> + set_pte_at(vma->vm_mm, vmf->address, vmf->pte, pte);
> + update_mmu_cache(vma, vmf->address, vmf->pte);
> + pte_unmap_unlock(vmf->pte, vmf->ptl);
> } else {
> flags |= TNF_MIGRATE_FAIL;
> vmf->pte = pte_offset_map(vmf->pmd, vmf->address);
> @@ -4427,8 +4443,11 @@ static vm_fault_t do_numa_page(struct vm_fault *vmf)
> old_pte = ptep_modify_prot_start(vma, vmf->address, vmf->pte);
> pte = pte_modify(old_pte, vma->vm_page_prot);
> pte = pte_mkyoung(pte);
> - if (was_writable)
> + if (was_writable) {
> pte = pte_mkwrite(pte);
> + if (vmf->flags & FAULT_FLAG_WRITE)
> + pte = pte_mkdirty(pte);
> + }
> ptep_modify_prot_commit(vma, vmf->address, vmf->pte, old_pte, pte);
> update_mmu_cache(vma, vmf->address, vmf->pte);
> pte_unmap_unlock(vmf->pte, vmf->ptl);
--
Thanks,
David / dhildenb
next prev parent reply other threads:[~2022-03-17 12:32 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-17 6:50 Bibo Mao
2022-03-17 12:23 ` Matthew Wilcox
2022-03-18 1:01 ` maobibo
2022-03-18 1:46 ` Matthew Wilcox
2022-03-18 2:17 ` maobibo
2022-03-17 12:32 ` David Hildenbrand [this message]
2022-03-18 1:17 ` maobibo
2022-03-18 8:21 ` David Hildenbrand
2022-03-19 2:58 ` maobibo
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=fbe8f659-44dd-dd10-a3c3-acaf387abd4d@redhat.com \
--to=david@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=anshuman.khandual@arm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=maobibo@loongson.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