From: Matthew Wilcox <willy@infradead.org>
To: Hugh Dickins <hughd@google.com>
Cc: linux-mm@kvack.org
Subject: Re: When is page->index stable?
Date: Thu, 10 Sep 2020 15:27:38 +0100 [thread overview]
Message-ID: <20200910142738.GS6583@casper.infradead.org> (raw)
In-Reply-To: <alpine.LSU.2.11.2008271319380.5245@eggly.anvils>
On Thu, Aug 27, 2020 at 01:52:47PM -0700, Hugh Dickins wrote:
> On Thu, 27 Aug 2020, Matthew Wilcox wrote:
> > We have a number of places where we look up a page in the page cache,
> > lock it, then have some kind of assertion that we got back the page we
> > asked for, eg filemap_fault():
> >
> > page = find_get_page(mapping, offset);
> > ...
> > if (!lock_page_maybe_drop_mmap(vmf, page, &fpin))
> > goto out_retry;
> > ...
> > VM_BUG_ON_PAGE(page_to_pgoff(page) != offset, page);
> >
> > but today I noticed this in shmem_undo_range():
> >
> > pvec.nr = find_get_entries(mapping, index,
> > min(end - index, (pgoff_t)PAGEVEC_SIZE),
> > pvec.pages, indices);
> > ...
> > VM_BUG_ON_PAGE(page_to_pgoff(page) != index, page);
> > ...
> > if (!trylock_page(page))
> > continue;
> >
> > So is page->index stable if we have a refcount on the page,
>
> Yes (once it has been found in the page cache -
> obviously not stable before it has been put into the page cache).
>
> > or is a lock on the page required?
>
> No. A lock on the page is required for page cache page->mapping
> to be stable, but not required for its page->index to remain stable.
>
> > A refcount on the page prevents it from being
> > split or freed. And there's plenty of comments along the lines of:
> >
> > mm/filemap.c: /* Leave page->index set: truncation lookup relies on it */
> >
> > which indicates that once a page is removed from the page cache, its
> > index remains reliable (until it's freed).
> >
> > It might be nice to remove all these assertions from the callers and
> > bury them down in find_get_(entry,page,entries,...), but we can't do
> > that if we need the lock to check the index. If we don't need the lock,
> > then it should be safe to check as soon as we've checked that
> > page == xas_reload().
>
> Yes.
>
> But you might then discover something violating the principle.
> I have an indistinct memory of spotting an instance once, maybe
> just in a prospective patchset that didn't reach the kernel; perhaps
> someone resetting page->index to 0 "for tidiness" before freeing;
> maybe page migration did that once upon a time, then got fixed.
>
> And of course beware of hugetlbfs, defining page->index differently
> (unless you have fixed that already).
The other thing to beware of is swapcache, which also defines page->index
differently. We went through this last year ...
https://lore.kernel.org/linux-mm/20190323033852.GC10344@bombadil.infradead.org/T/#u
As can be seen from that thread, even calling page_index() instead of
directly looking at page->index is insufficient because having a reference
on a page is insufficient to keep ClearPageSwapCache from being cleared.
What you're doing is safe, because you know mapping isn't a swapcache
mapping; it's a shmem mapping.
So I'm going to back out a good chunk of the work I did yesterday :-(
prev parent reply other threads:[~2020-09-10 14:27 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-27 19:14 Matthew Wilcox
2020-08-27 20:52 ` Hugh Dickins
2020-09-10 14:27 ` Matthew Wilcox [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=20200910142738.GS6583@casper.infradead.org \
--to=willy@infradead.org \
--cc=hughd@google.com \
--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