From: "Hillf Danton" <hillf.zj@alibaba-inc.com>
To: 'Andrea Arcangeli' <aarcange@redhat.com>,
'Andrew Morton' <akpm@linux-foundation.org>
Cc: linux-mm@kvack.org, 'Rik van Riel' <riel@redhat.com>,
'Hugh Dickins' <hughd@google.com>,
'Mel Gorman' <mgorman@techsingularity.net>
Subject: Re: [PATCH 1/4] mm: vm_page_prot: update with WRITE_ONCE/READ_ONCE
Date: Thu, 22 Sep 2016 15:17:52 +0800 [thread overview]
Message-ID: <002e01d214a1$6f39e100$4dada300$@alibaba-inc.com> (raw)
In-Reply-To: <1474492522-2261-2-git-send-email-aarcange@redhat.com>
Hey Andrea
>
> @@ -111,13 +111,16 @@ static pgprot_t vm_pgprot_modify(pgprot_t oldprot, unsigned long vm_flags)
> void vma_set_page_prot(struct vm_area_struct *vma)
> {
> unsigned long vm_flags = vma->vm_flags;
> + pgprot_t vm_page_prot;
>
> - vma->vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags);
> + vm_page_prot = vm_pgprot_modify(vma->vm_page_prot, vm_flags);
> if (vma_wants_writenotify(vma)) {
Since vma->vm_page_prot is currently used in vma_wants_writenotify(), is
it possible that semantic change is introduced here with local variable?
thanks
Hillf
> vm_flags &= ~VM_SHARED;
> - vma->vm_page_prot = vm_pgprot_modify(vma->vm_page_prot,
> - vm_flags);
> + vm_page_prot = vm_pgprot_modify(vma->vm_page_prot,
> + vm_flags);
> }
> + /* remove_protection_ptes reads vma->vm_page_prot without mmap_sem */
> + WRITE_ONCE(vma->vm_page_prot, vm_page_prot);
> }
>
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2016-09-22 7:18 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-21 21:15 [PATCH 0/4] mm: vma_merge/vma_adjust minor updates against -mm Andrea Arcangeli
2016-09-21 21:15 ` [PATCH 1/4] mm: vm_page_prot: update with WRITE_ONCE/READ_ONCE Andrea Arcangeli
2016-09-22 7:17 ` Hillf Danton [this message]
2016-09-22 19:15 ` Andrea Arcangeli
2016-09-23 19:51 ` Andrea Arcangeli
2016-09-21 21:15 ` [PATCH 2/4] mm: vma_adjust: minor comment correction Andrea Arcangeli
2016-09-21 21:15 ` [PATCH 3/4] mm: vma_merge: correct false positive from __vma_unlink->validate_mm_rb Andrea Arcangeli
2016-09-21 21:15 ` [PATCH 4/4] mm: vma_adjust: remove superfluous confusing update in remove_next == 1 case Andrea Arcangeli
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='002e01d214a1$6f39e100$4dada300$@alibaba-inc.com' \
--to=hillf.zj@alibaba-inc.com \
--cc=aarcange@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=hughd@google.com \
--cc=linux-mm@kvack.org \
--cc=mgorman@techsingularity.net \
--cc=riel@redhat.com \
/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