linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Hugh Dickins <hughd@google.com>
To: Matthew Wilcox <willy@infradead.org>
Cc: linux-mm@kvack.org
Subject: Re: When is page->index stable?
Date: Thu, 27 Aug 2020 13:52:47 -0700 (PDT)	[thread overview]
Message-ID: <alpine.LSU.2.11.2008271319380.5245@eggly.anvils> (raw)
In-Reply-To: <20200827191407.GM14765@casper.infradead.org>

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).

Hugh


  reply	other threads:[~2020-08-27 20:53 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 [this message]
2020-09-10 14:27   ` Matthew Wilcox

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=alpine.LSU.2.11.2008271319380.5245@eggly.anvils \
    --to=hughd@google.com \
    --cc=linux-mm@kvack.org \
    --cc=willy@infradead.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