From: Jason Gunthorpe <jgg@nvidia.com>
To: Jan Kara <jack@suse.cz>
Cc: <linux-kernel@vger.kernel.org>, Peter Xu <peterx@redhat.com>,
Linus Torvalds <torvalds@linux-foundation.org>,
Andrea Arcangeli <aarcange@redhat.com>,
Andrew Morton <akpm@linux-foundation.org>,
Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com>,
Christoph Hellwig <hch@lst.de>, Hugh Dickins <hughd@google.com>,
Jann Horn <jannh@google.com>, John Hubbard <jhubbard@nvidia.com>,
Kirill Shutemov <kirill@shutemov.name>,
Kirill Tkhai <ktkhai@virtuozzo.com>,
Leon Romanovsky <leonro@nvidia.com>,
Linux-MM <linux-mm@kvack.org>, Michal Hocko <mhocko@suse.com>,
Oleg Nesterov <oleg@redhat.com>
Subject: Re: [PATCH v2 2/2] mm: prevent gup_fast from racing with COW during fork
Date: Fri, 30 Oct 2020 14:02:26 -0300 [thread overview]
Message-ID: <20201030170226.GF2620339@nvidia.com> (raw)
In-Reply-To: <20201030165105.GH19757@quack2.suse.cz>
On Fri, Oct 30, 2020 at 05:51:05PM +0100, Jan Kara wrote:
> Looks good to me. Just one nit below. With that fixed feel free to add:
>
> Reviewed-by: Jan Kara <jack@suse.cz>
Thanks!
> > @@ -446,6 +447,12 @@ struct mm_struct {
> > */
> > atomic_t has_pinned;
> >
> > + /**
> > + * @write_protect_seq: Odd when any thread is write protecting
> > + * pages in this mm, for instance during fork().
> > + */
> > + seqcount_t write_protect_seq;
> > +
>
> So this comment isn't quite true. We can be writeprotecting pages due to
> many other reasons and not touch write_protect_seq. E.g. for shared
> mappings or due to explicit mprotect() calls. So the write_protect_seq
> protection has to be about something more than pure write protection. One
> requirement certainly is that the VMA has to be is_cow_mapping(). What
> about mprotect(2) calls? I guess the application would have only itself to
> blame so we don't care?
Yes, that sounds right, How about
/**
* @write_protect_seq: Locked when any thread is write protecting
* pages for COW in this mm, for instance during page table copying
* for fork().
*/
mprotect and shared mappings cause faults on write access not COW?
Jason
next prev parent reply other threads:[~2020-10-30 17:02 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-30 14:46 [PATCH v2 0/2] Add a seqcount between gup_fast and copy_page_range() Jason Gunthorpe
2020-10-30 14:46 ` [PATCH v2 1/2] mm: reorganize internal_get_user_pages_fast() Jason Gunthorpe
2020-10-30 16:29 ` Jan Kara
2020-10-30 21:31 ` John Hubbard
2020-10-30 22:36 ` Peter Xu
2020-10-30 14:46 ` [PATCH v2 2/2] mm: prevent gup_fast from racing with COW during fork Jason Gunthorpe
2020-10-30 16:51 ` Jan Kara
2020-10-30 17:02 ` Jason Gunthorpe [this message]
2020-11-02 8:31 ` Jan Kara
2020-10-30 21:20 ` John Hubbard
2020-10-30 22:52 ` Peter Xu
2020-10-30 23:51 ` Jason Gunthorpe
2020-10-31 15:26 ` Peter Xu
2020-11-03 0:33 ` Ahmed S. Darwish
2020-11-03 0:17 ` Ahmed S. Darwish
2020-11-03 0:25 ` Jason Gunthorpe
2020-11-03 0:41 ` Ahmed S. Darwish
2020-11-03 2:20 ` John Hubbard
2020-11-03 6:52 ` Ahmed S. Darwish
2020-11-03 7:05 ` John Hubbard
2020-11-03 17:40 ` Linus Torvalds
2020-11-04 1:32 ` Ahmed S. Darwish
2020-11-04 2:01 ` John Hubbard
2020-11-04 3:17 ` Ahmed S. Darwish
2020-11-04 18:38 ` Linus Torvalds
2020-11-10 11:53 ` Peter Zijlstra
2020-11-03 17:03 ` Peter Xu
2020-11-02 23:58 ` Ahmed S. Darwish
2020-11-02 22:19 ` [PATCH v2 0/2] Add a seqcount between gup_fast and copy_page_range() Ahmed S. Darwish
2020-11-02 22:39 ` Linus Torvalds
2020-11-02 23:18 ` Ahmed S. Darwish
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=20201030170226.GF2620339@nvidia.com \
--to=jgg@nvidia.com \
--cc=aarcange@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=aneesh.kumar@linux.ibm.com \
--cc=hch@lst.de \
--cc=hughd@google.com \
--cc=jack@suse.cz \
--cc=jannh@google.com \
--cc=jhubbard@nvidia.com \
--cc=kirill@shutemov.name \
--cc=ktkhai@virtuozzo.com \
--cc=leonro@nvidia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@suse.com \
--cc=oleg@redhat.com \
--cc=peterx@redhat.com \
--cc=torvalds@linux-foundation.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