From: Hugh Dickins <hugh@veritas.com>
To: David Howells <dhowells@redhat.com>
Cc: Anton Altaparmakov <aia21@cam.ac.uk>,
Andrew Morton <akpm@osdl.org>,
torvalds@osdl.org, Christoph Hellwig <hch@infradead.org>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Add notification of page becoming writable to VMA ops
Date: Mon, 24 Oct 2005 20:11:10 +0100 (BST) [thread overview]
Message-ID: <Pine.LNX.4.61.0510241938100.6142@goblin.wat.veritas.com> (raw)
In-Reply-To: <9792.1130171024@warthog.cambridge.redhat.com>
On Mon, 24 Oct 2005, David Howells wrote:
>
> The attached patch adds a new VMA operation to notify a filesystem or other
> driver about the MMU generating a fault because userspace attempted to write
> to a page mapped through a read-only PTE.
>
> This facility permits the filesystem or driver to:
>
> (*) Implement storage allocation/reservation on attempted write, and so to
> deal with problems such as ENOSPC more gracefully (perhaps by generating
> SIGBUS).
>
> (*) Delay making the page writable until the contents have been written to a
> backing cache. This is useful for NFS/AFS when using FS-Cache/CacheFS.
> It permits the filesystem to have some guarantee about the state of the
> cache.
I've only given it a quick look, it looks pretty good, but too hastily
thrown together, without understanding of the intervening changes:
> --- linux-2.6.14-rc4-mm1/mm/memory.c 2005-10-17 14:26:44.000000000 +0100
> +++ linux-2.6.14-rc4-mm1-cachefs/mm/memory.c 2005-10-20 18:53:04.000000000 +0100
> @@ -1261,19 +1261,53 @@ static int do_wp_page(struct mm_struct *
> + if (unlikely(vma->vm_flags & VM_SHARED)) {
> + if (vma->vm_ops && vma->vm_ops->page_mkwrite) {
> + /*
> + * Notify the page owner without the lock held,
> + * so they can sleep if they want to.
> + */
> + pte_unmap(page_table);
> + if (!PageReserved(old_page))
> + page_cache_get(old_page);
> + spin_unlock(&mm->page_table_lock);
No, you need to pay attention to Nick's PageReserved removal, and
my pte lock stuff, throughout do_wp_page - there shouldn't be any
references to PageReserved or page_table_lock there now (and you'll
need to recheck the mapping/locking/unlocking/unmapping). Sorry,
I don't have the time to spare to do it myself right now.
> + page_table = pte_offset_map(pmd, address);
> + if (!pte_same(*page_table, orig_pte)) {
> + ret |= VM_FAULT_WRITE;
No, don't add VM_FAULT_WRITE in this case: you should only do that
when you've gone through the maybe_mkwrite yourself; this case
should remain the default VM_FAULT_MINOR.
> @@ -1847,18 +1890,28 @@ retry:
> + } else {
> + /* if the page will be shareable, see if the backing
> + * address space wants to know that the page is about
> + * to become writable */
> + if (vma->vm_ops->page_mkwrite &&
> + vma->vm_ops->page_mkwrite(vma, new_page) < 0)
> + return VM_FAULT_SIGBUS;
> + }
> }
This isn't necessarily wrong, and may be exactly how it was before,
I don't remember. But it implies that when page_mkwrite fails,
it page_cache_releases the page. Is that desirable? Or should
that be left to the caller?
> @@ -1945,7 +1998,7 @@ static int do_file_page(struct mm_struct
Drop all those changes to do_file_page (which I added), they're no
longer necessary. A case appeared which made it clear that we cannot
rely on resolving this issue for get_user_pages in a single call to
handle_mm_fault, and that's why the VM_FAULT_WRITE stuff got added.
This complication of do_file_page was always ugly, and I'm delighted
to drop it. Whereas the call to do_wp_page from do_swap_page is less
obtrusive and may still be a worthwhile optimization, though I added
it for the same disgraced reason a year or more back.
Hugh
next prev parent reply other threads:[~2005-10-24 19:12 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-02-09 14:28 page_mkwrite seems broken Hugh Dickins
2005-10-24 15:16 ` what happened to page_mkwrite? - was: " Anton Altaparmakov
2005-10-24 15:36 ` Hugh Dickins
2005-10-24 15:49 ` Anton Altaparmakov
2005-10-24 15:26 ` David Howells
2005-10-24 15:43 ` Anton Altaparmakov
2005-10-24 16:01 ` Hugh Dickins
2005-10-24 19:38 ` Anton Altaparmakov
2005-10-24 20:31 ` Hugh Dickins
2005-10-24 21:18 ` Anton Altaparmakov
2005-10-24 16:23 ` [PATCH] Add notification of page becoming writable to VMA ops David Howells
2005-10-24 19:11 ` Hugh Dickins [this message]
2005-10-25 7:59 ` Anton Altaparmakov
2005-10-25 8:26 ` Hugh Dickins
2005-10-25 8:49 ` Anton Altaparmakov
2005-10-25 9:49 ` David Howells
2005-10-25 9:55 ` David Howells
2005-10-25 10:12 ` David Howells
2005-10-25 13:18 ` [PATCH] Add notification of page becoming writable to VMA ops [try #2] David Howells
2005-11-30 13:58 ` [PATCH] Add notification of page becoming writable to VMA ops [try #3] David Howells
2005-11-30 14:40 ` Miklos Szeredi
2005-11-30 14:50 ` David Howells
2005-11-30 15:20 ` [PATCH] Add notification of page becoming writable to VMA ops [try #4] David Howells
2006-01-11 12:19 ` [PATCH] Add notification of page becoming writable to VMA ops [try #5] David Howells
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=Pine.LNX.4.61.0510241938100.6142@goblin.wat.veritas.com \
--to=hugh@veritas.com \
--cc=aia21@cam.ac.uk \
--cc=akpm@osdl.org \
--cc=dhowells@redhat.com \
--cc=hch@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@osdl.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
all inboxes | Powered by JetHome®