From: Matthew Wilcox <willy@infradead.org>
To: Ross Zwisler <ross.zwisler@linux.intel.com>,
"zhangyi (F)" <yi.zhang@huawei.com>,
linux-fsdevel@vger.kernel.org, linux-mm@kvack.org,
mawilcox@microsoft.com, viro@zeniv.linux.org.uk,
miaoxie@huawei.com
Subject: Re: [PATCH] dax: fix potential overflow on 32bit machine
Date: Tue, 5 Dec 2017 09:37:13 -0800 [thread overview]
Message-ID: <20171205173713.GA26021@bombadil.infradead.org> (raw)
In-Reply-To: <20171205170709.GA21010@linux.intel.com>
On Tue, Dec 05, 2017 at 10:07:09AM -0700, Ross Zwisler wrote:
> > /* The 'colour' (ie low bits) within a PMD of a page offset. */
> > #define PG_PMD_COLOUR ((PMD_SIZE >> PAGE_SHIFT) - 1)
> > +#define PG_PMD_NR (PMD_SIZE >> PAGE_SHIFT)
>
> I wonder if it's confusing that PG_PMD_COLOUR is a mask, but PG_PMD_NR is a
> count? Would "PAGES_PER_PMD" be clearer, in the spirit of
> PTRS_PER_{PGD,PMD,PTE}?
Maybe. I don't think that 'NR' can ever be confused with a mask.
I went with PG_PMD_NR because I didn't want to use HPAGE_PMD_NR, but
in retrospect I just needed to go to sleep and leave thinking about
hard problems like naming things for the morning. I decided to call it
'colour' rather than 'mask' originally because I got really confused with
PMD_MASK masking off the low bits. If you ask 'What colour is this page
within the PMD', you know you're talking about the low bits.
I actually had cause to define PMD_ORDER in a separate unrelated patch
I was working on this morning. How does this set of definitions grab you?
#define PMD_ORDER (PMD_SHIFT - PAGE_SHIFT)
#define PMD_PAGES (1UL << PMD_ORDER)
#define PMD_PAGE_COLOUR (PMD_PAGES - 1)
and maybe put them in linux/mm.h so everybody can see them?
> Also, can we use the same define both in fs/dax.c and in mm/truncate.c,
> instead of the latter using HPAGE_PMD_NR?
I'm OK with the latter using HPAGE_PMD_NR because it's explicitly "is
this a huge page?" But I'd kind of like to get rid of a lot of the HPAGE_*
definitions, so
> > static wait_queue_head_t wait_table[DAX_WAIT_TABLE_ENTRIES];
> >
> > @@ -375,8 +376,8 @@ static void *grab_mapping_entry(struct address_space *mapping, pgoff_t index,
> > * unmapped.
> > */
> > if (pmd_downgrade && dax_is_zero_entry(entry))
> > - unmap_mapping_range(mapping,
> > - (index << PAGE_SHIFT) & PMD_MASK, PMD_SIZE, 0);
> > + unmap_mapping_pages(mapping, index & ~PG_PMD_COLOUR,
> > + PG_PMD_NR, 0);
> >
> > err = radix_tree_preload(
> > mapping_gfp_mask(mapping) & ~__GFP_HIGHMEM);
> > @@ -538,12 +539,10 @@ static void *dax_insert_mapping_entry(struct address_space *mapping,
> > if (dax_is_zero_entry(entry) && !(flags & RADIX_DAX_ZERO_PAGE)) {
> > /* we are replacing a zero page with block mapping */
> > if (dax_is_pmd_entry(entry))
> > - unmap_mapping_range(mapping,
> > - (vmf->pgoff << PAGE_SHIFT) & PMD_MASK,
> > - PMD_SIZE, 0);
> > + unmap_mapping_pages(mapping, vmf->pgoff & PG_PMD_COLOUR,
>
> I think you need: ~PG_PMD_COLOUR,
Heh, yeah, I fixed that in v2 ... which I forgot to cc you on. Sorry.
It's on linux-fsdevel & linux-mm.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2017-12-05 17:37 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-05 3:32 [PATCH] dax: fix potential overflow on 32bit machine zhangyi (F)
2017-12-05 5:24 ` Matthew Wilcox
2017-12-05 8:40 ` zhangyi (F)
2017-12-05 17:07 ` Ross Zwisler
2017-12-05 17:37 ` Matthew Wilcox [this message]
2017-12-05 19:19 ` Ross Zwisler
2017-12-05 19:54 ` 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=20171205173713.GA26021@bombadil.infradead.org \
--to=willy@infradead.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mawilcox@microsoft.com \
--cc=miaoxie@huawei.com \
--cc=ross.zwisler@linux.intel.com \
--cc=viro@zeniv.linux.org.uk \
--cc=yi.zhang@huawei.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;
as well as URLs for NNTP newsgroup(s).