From: Matthew Wilcox <willy@infradead.org>
To: Ira Weiny <ira.weiny@intel.com>
Cc: linux-mm@kvack.org
Subject: Re: Rare memory leakage
Date: Tue, 22 Sep 2020 12:04:46 +0100 [thread overview]
Message-ID: <20200922110446.GA32101@casper.infradead.org> (raw)
In-Reply-To: <20200922034314.GR2540965@iweiny-DESK2.sc.intel.com>
On Mon, Sep 21, 2020 at 08:43:14PM -0700, Ira Weiny wrote:
> On Tue, Sep 22, 2020 at 04:12:15AM +0100, Matthew Wilcox wrote:
> > This is a fun little race.
> >
> > Dramatis personae: Pages P0, P1 are consecutive and aligned.
> > Threads A, B, C.
> >
> > Page P0 is allocated to the page cache.
> > Page P1 is free.
> >
> > Thread A calls find_get_entry()
> > P0 is returned from xas_load()
> >
> > Thread B removes the page from the page cache (eg truncate, invalidatepage).
> > P0 is buddy-merged with P1.
> >
> > Thread C calls alloc_pages, order 1, does not specify GFP_COMP. P0 now
> > has refcount 1.
> >
> > Thread A calls page_cache_get_speculative(). P0 has refcount 2.
> >
> > Thread C calls __free_page(P0, 1)
> > put_page_testzero is _false_. Do not call free_the_page().
> >
> > Thread A calls put_page(P0)
> > We free P0 and nobody knows to free P1.
> >
> >
> > Weird solution: In __free_page(), if put_page_testzero() fails and page
> > is not PageHead,
>
> I'm not an expert, so I'm probably off here, but if Thread C calls
> __free_page(P0, 1) wouldn't that be on PageHead? So how would you know to
> convert it to a compound page?
Only compound pages get PageHead set. A regular multiorder allocation
without GFP_COMP set does not have PageHead.
void prep_compound_page(struct page *page, unsigned int order)
{
...
__SetPageHead(page);
next prev parent reply other threads:[~2020-09-22 11:04 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-22 3:12 Rare memory leakage Matthew Wilcox
2020-09-22 3:43 ` Ira Weiny
2020-09-22 11:04 ` Matthew Wilcox [this message]
2020-09-22 11:22 ` Vlastimil Babka
2020-09-22 11:44 ` Matthew Wilcox
2020-09-22 13:12 ` Matthew Wilcox
2020-09-23 6:46 ` Kirill A. Shutemov
2020-09-23 11:26 ` 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=20200922110446.GA32101@casper.infradead.org \
--to=willy@infradead.org \
--cc=ira.weiny@intel.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;
as well as URLs for NNTP newsgroup(s).