From: Rik van Riel <riel@fb.com>
To: Song Liu <songliubraving@fb.com>
Cc: "linux-mm@kvack.org" <linux-mm@kvack.org>,
"matthew.wilcox@oracle.com" <matthew.wilcox@oracle.com>,
"kirill.shutemov@linux.intel.com"
<kirill.shutemov@linux.intel.com>,
Kernel Team <Kernel-team@fb.com>,
"william.kucharski@oracle.com" <william.kucharski@oracle.com>,
"akpm@linux-foundation.org" <akpm@linux-foundation.org>
Subject: Re: [PATCH v3 6/6] mm,thp: handle writes to file with THP in pagecache
Date: Thu, 20 Jun 2019 13:00:36 +0000 [thread overview]
Message-ID: <559305a9825adc7e49aabf52ddec3b40d054fa62.camel@fb.com> (raw)
In-Reply-To: <B051CE4A-063B-4464-8193-93C9F1D0A0A7@fb.com>
On Wed, 2019-06-19 at 22:10 -0400, Song Liu wrote:
> > On Jun 19, 2019, at 6:39 PM, Rik van Riel <riel@fb.com> wrote:
> >
> > On Tue, 2019-06-18 at 23:24 -0700, Song Liu wrote:
> >
> > > index 8563339041f6..bab8d9eef46c 100644
> > > --- a/mm/truncate.c
> > > +++ b/mm/truncate.c
> > > @@ -790,7 +790,11 @@ EXPORT_SYMBOL_GPL(invalidate_inode_pages2);
> > > void truncate_pagecache(struct inode *inode, loff_t newsize)
> > > {
> > > struct address_space *mapping = inode->i_mapping;
> > > - loff_t holebegin = round_up(newsize, PAGE_SIZE);
> > > + loff_t holebegin;
> > > +
> > > + /* if non-shmem file has thp, truncate the whole file */
> > > + if (filemap_nr_thps(mapping))
> > > + newsize = 0;
> > >
> >
> > I don't get it. Sometimes truncate is used to
> > increase the size of a file, or to change it
> > to a non-zero size.
> >
> > Won't forcing the newsize to zero break applications,
> > when the file is truncated to a different size than
> > they expect?
>
> This is not truncate the file. It only drops page cache.
> truncate_setsize() will still set correct size. I don't
> think this breaks anything.
Ahhh, indeed. Good point.
I wonder if the dropping of the page cache could be
done automatically from open(), if it determines that
there are no more readonly THP users of the file, and
the new opener wants to write to the file?
That magic could be in a helper function, so it would
be just a one line change in the same spot where it
currently denies the permission :)
> We can probably make it smarter and only drop the clean
> huge pages (dirty page should not exist).
next prev parent reply other threads:[~2019-06-20 13:01 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-19 6:24 [PATCH v3 0/6] Enable THP for text section of non-shmem files Song Liu
2019-06-19 6:24 ` [PATCH v3 1/6] filemap: check compound_head(page)->mapping in filemap_fault() Song Liu
2019-06-19 6:24 ` [PATCH v3 2/6] filemap: update offset check " Song Liu
2019-06-20 1:04 ` Rik van Riel
2019-06-19 6:24 ` [PATCH v3 3/6] mm,thp: stats for file backed THP Song Liu
2019-06-19 6:24 ` [PATCH v3 4/6] khugepaged: rename collapse_shmem() and khugepaged_scan_shmem() Song Liu
2019-06-20 1:05 ` Rik van Riel
2019-06-19 6:24 ` [PATCH v3 5/6] mm,thp: add read-only THP support for (non-shmem) FS Song Liu
2019-06-19 6:24 ` [PATCH v3 6/6] mm,thp: handle writes to file with THP in pagecache Song Liu
2019-06-20 1:39 ` Rik van Riel
2019-06-20 2:10 ` Song Liu
2019-06-20 13:00 ` Rik van Riel [this message]
2019-06-20 13:55 ` William Kucharski
2019-06-19 6:51 ` [PATCH v3 0/6] Enable THP for text section of non-shmem files Michal Hocko
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=559305a9825adc7e49aabf52ddec3b40d054fa62.camel@fb.com \
--to=riel@fb.com \
--cc=Kernel-team@fb.com \
--cc=akpm@linux-foundation.org \
--cc=kirill.shutemov@linux.intel.com \
--cc=linux-mm@kvack.org \
--cc=matthew.wilcox@oracle.com \
--cc=songliubraving@fb.com \
--cc=william.kucharski@oracle.com \
/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