From: "Kirill A. Shutemov" <kirill@shutemov.name>
To: "Figo.zhang" <figo1802@gmail.com>
Cc: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>,
Andrew Morton <akpm@linux-foundation.org>,
"Kirill A . Shutemov" <kirill.shutemov@linux.intel.com>,
Linux MM <linux-mm@kvack.org>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH V2] mm: Recheck page table entry with page table lock held
Date: Mon, 28 Oct 2019 15:08:25 +0300 [thread overview]
Message-ID: <20191028120825.mmlfputxj3p44yxh@box> (raw)
In-Reply-To: <CAF7GXvqmf_pqrYCoG+9Kna184Yi0JNvGpwN7JcGvnBL3SFrcnQ@mail.gmail.com>
On Fri, Oct 25, 2019 at 11:13:58AM +0800, Figo.zhang wrote:
> Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com> 于2018年9月26日周三 上午11:19写道:
>
> > We clear the pte temporarily during read/modify/write update of the pte.
> > If we
> > take a page fault while the pte is cleared, the application can get
> > SIGBUS. One
> > such case is with remap_pfn_range without a backing vm_ops->fault callback.
> > do_fault will return SIGBUS in that case.
> >
> what is " remap_pfn_range without a backing vm_ops->fault callback ", would
> you like elaborate the scenario?
> is it the case using remap_pfn_range() in drivers mmap() file operations?
> if in that case, why it will trap into do_fault?
Because there's no page mapped there during the race.
> >
> > cpu 0 cpu1
> > mprotect()
> > ptep_modify_prot_start()/pte cleared.
> > .
> > . page fault.
> > .
> > .
> > prep_modify_prot_commit()
>
>
> i am confusing this scenario, when CPU0 will call
> in change_pte_range()->ptep_modify_prot_start() to clear the pte content,
> and
> on the other thread, in handle_pte_fault(), pte_offset_map() can get the
> pte, and the pte is not invalid, it's pte is valid but just the content is
> all zero, so why it will call into do_fault?
>
> in handle_pte_fault():
> vmf->pte = pte_offset_map(vmf->pmd, vmf->address);
> if (!vmf->pte) {
> return do_fault(vmf);
> }
This case handles the situation when pte is none (clear) or page table is
not allocated at all.
--
Kirill A. Shutemov
prev parent reply other threads:[~2019-10-28 12:08 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-26 3:18 Aneesh Kumar K.V
2018-09-26 12:40 ` Kirill A. Shutemov
2019-10-25 3:13 ` Figo.zhang
2019-10-28 12:08 ` Kirill A. Shutemov [this message]
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=20191028120825.mmlfputxj3p44yxh@box \
--to=kirill@shutemov.name \
--cc=akpm@linux-foundation.org \
--cc=aneesh.kumar@linux.ibm.com \
--cc=figo1802@gmail.com \
--cc=kirill.shutemov@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.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