Re: [PATCH 1/4] hugetlb: skip to end of PT page mapping when pte not present
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
- To: Peter Xu <peterx@xxxxxxxxxx>
- Subject: Re: [PATCH 1/4] hugetlb: skip to end of PT page mapping when pte not present
- From: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx>
- Date: Fri, 17 Jun 2022 17:26:31 +0200
- Cc: Mike Kravetz <mike.kravetz@xxxxxxxxxx>, Linux Kernel Mailing List <linux-kernel@xxxxxxxxxxxxxxx>, Linux MM <linux-mm@xxxxxxxxx>, Linux ARM <linux-arm-kernel@xxxxxxxxxxxxxxxxxxx>, linux-s390 <linux-s390@xxxxxxxxxxxxxxx>, Linux-sh list <linux-sh@xxxxxxxxxxxxxxx>, sparclinux <sparclinux@xxxxxxxxxxxxxxx>, "linux-ia64@xxxxxxxxxxxxxxx" <linux-ia64@xxxxxxxxxxxxxxx>, "open list:BROADCOM NVRAM DRIVER" <linux-mips@xxxxxxxxxxxxxxx>, Parisc List <linux-parisc@xxxxxxxxxxxxxxx>, linuxppc-dev <linuxppc-dev@xxxxxxxxxxxxxxxx>, Muchun Song <songmuchun@xxxxxxxxxxxxx>, Baolin Wang <baolin.wang@xxxxxxxxxxxxxxxxx>, Michal Hocko <mhocko@xxxxxxxx>, Naoya Horiguchi <naoya.horiguchi@xxxxxxxxx>, James Houghton <jthoughton@xxxxxxxxxx>, Mina Almasry <almasrymina@xxxxxxxxxx>, "Aneesh Kumar K . V" <aneesh.kumar@xxxxxxxxxxxxxxxxxx>, Anshuman Khandual <anshuman.khandual@xxxxxxx>, Paul Walmsley <paul.walmsley@xxxxxxxxxx>, Christian Borntraeger <borntraeger@xxxxxxxxxxxxx>, Catalin Marinas <catalin.marinas@xxxxxxx>, Will Deacon <will@xxxxxxxxxx>, Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
- In-reply-to: <YqyMhmAjrQ4C+EyA@xz-m1.local>
- References: <20220616210518.125287-1-mike.kravetz@oracle.com> <20220616210518.125287-2-mike.kravetz@oracle.com> <YqyMhmAjrQ4C+EyA@xz-m1.local>
Hi Peter,
On Fri, Jun 17, 2022 at 4:22 PM Peter Xu <peterx@xxxxxxxxxx> wrote:
> On Thu, Jun 16, 2022 at 02:05:15PM -0700, Mike Kravetz wrote:
> > @@ -6877,6 +6896,39 @@ pte_t *huge_pte_offset(struct mm_struct *mm,
> > return (pte_t *)pmd;
> > }
> >
> > +/*
> > + * Return a mask that can be used to update an address to the last huge
> > + * page in a page table page mapping size. Used to skip non-present
> > + * page table entries when linearly scanning address ranges. Architectures
> > + * with unique huge page to page table relationships can define their own
> > + * version of this routine.
> > + */
> > +unsigned long hugetlb_mask_last_page(struct hstate *h)
> > +{
> > + unsigned long hp_size = huge_page_size(h);
> > +
> > + switch (hp_size) {
> > + case P4D_SIZE:
> > + return PGDIR_SIZE - P4D_SIZE;
> > + case PUD_SIZE:
> > + return P4D_SIZE - PUD_SIZE;
> > + case PMD_SIZE:
> > + return PUD_SIZE - PMD_SIZE;
> > + default:
>
> Should we add a WARN_ON_ONCE() if it should never trigger?
And with panic_on_warn, it'll panic only once ;-)
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@xxxxxxxxxxxxxx
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
[Index of Archives]
[Linux Kernel]
[Sparc Linux]
[DCCP]
[Linux ARM]
[Yosemite News]
[Linux SCSI]
[Linux x86_64]
[Linux for Ham Radio]