From: Andrew Morton <akpm@osdl.org>
To: Andrea Arcangeli <andrea@suse.de>
Cc: linux-kernel@vger.kernel.org, neilb@suse.de, trond.myklebust@fys.uio.no
Subject: Re: [andrea@suse.de: Re: [NFS] Problems with mmap consistency]
Date: Sat, 1 Apr 2006 20:55:22 -0800 [thread overview]
Message-ID: <20060401205522.76f300c5.akpm@osdl.org> (raw)
In-Reply-To: <20060331124141.GC18093@opteron.random>
Andrea Arcangeli <andrea@suse.de> wrote:
>
> Hello,
>
> Just a reminder, the below patch should be applied to mainline (it's
> still missing according to my log).
>
There's basically no description of what the patch does here. Patches
which turn up in the middle of an email discussion tend to not get applied.
Normally someone will send a new patch with a reworked description once the
discussion has come to a conclusion.
>
> I seem to remember I asked explanations on the "was_dirty" code in my
> first email on the subject (before noticing you also worked on the nfs
> part about at the same time ;), but I didn't get any answer.
It's all there in bk somewhere ;)
ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.10-rc1/2.6.10-rc1-mm1/broken-out/invalidate_inode_pages-mmap-coherency-fix.patch
> I didn't check if this fixes the testcase, patch still untested sorry.
>
Did it?
What was the testcase?
>
> Index: sp3/mm/truncate.c
> --- sp3/mm/truncate.c.~1~ 2006-02-23 06:31:14.000000000 +0100
> +++ sp3/mm/truncate.c 2006-02-24 04:36:02.000000000 +0100
> @@ -246,9 +246,14 @@ EXPORT_SYMBOL(invalidate_inode_pages);
> * @start: the page offset 'from' which to invalidate
> * @end: the page offset 'to' which to invalidate (inclusive)
> * Any pages which are found to be mapped into pagetables are unmapped prior to
> - * invalidation.
> + * invalidation. invalidate_inode_pages2_range is non destructive and it can't
> + * lose dirty data (if dirty data exists -EIO will be returned). It's up to
> + * the caller to call unmap_mapping_range and filemap_write_and_wait before
> + * invalidate_inode_pages2 if needed.
> *
> - * Returns -EIO if any pages could not be invalidated.
> + * Returns -EIO if any pages could not be invalidated. Before returning -EIO
> + * it tries invalidating all pages in the range, it doesn't stop at the first
> + * page invalidation failure.
> */
> int invalidate_inode_pages2_range(struct address_space *mapping,
> pgoff_t start, pgoff_t end)
> @@ -262,13 +267,12 @@ int invalidate_inode_pages2_range(struct
>
> pagevec_init(&pvec, 0);
> next = start;
> - while (next <= end && !ret && !wrapped &&
> + while (next <= end && !wrapped &&
> pagevec_lookup(&pvec, mapping, next,
> min(end - next, (pgoff_t)PAGEVEC_SIZE - 1) + 1)) {
> - for (i = 0; !ret && i < pagevec_count(&pvec); i++) {
> + for (i = 0; i < pagevec_count(&pvec); i++) {
> struct page *page = pvec.pages[i];
> pgoff_t page_index;
> - int was_dirty;
>
> lock_page(page);
> if (page->mapping != mapping) {
> @@ -304,12 +308,9 @@ int invalidate_inode_pages2_range(struct
> PAGE_CACHE_SIZE, 0);
> }
> }
> - was_dirty = test_clear_page_dirty(page);
> - if (!invalidate_complete_page(mapping, page)) {
> - if (was_dirty)
> - set_page_dirty(page);
> +
> + if (!invalidate_complete_page(mapping, page))
> ret = -EIO;
> - }
> unlock_page(page);
> }
> pagevec_release(&pvec);
>
Two separate things are happening here.
a) We go all the way to the end of the range even if something went
wrong partway through. Why?
b) Remove the was_dirty logic.
That's there to address the unmap-dirtyied-the-page-and-buffers
problem described in the above changelog. If that can happen then this
patch will end up giving us a page which is marked clean but which in
fact has dirty buffers.
next prev parent reply other threads:[~2006-04-02 4:56 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-03-31 12:41 Andrea Arcangeli
2006-04-02 4:55 ` Andrew Morton [this message]
2006-04-03 0:04 ` Neil Brown
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=20060401205522.76f300c5.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=andrea@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=neilb@suse.de \
--cc=trond.myklebust@fys.uio.no \
/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
Powered by JetHome