linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
To: Anshuman Khandual <khandual@linux.vnet.ibm.com>,
	benh@kernel.crashing.org, paulus@samba.org, mpe@ellerman.id.au
Cc: linuxppc-dev@lists.ozlabs.org
Subject: Re: [RFC PATCH] powerpc/mm/hugetlb: Add support for 1G huge pages
Date: Wed, 5 Apr 2017 12:03:01 +0530	[thread overview]
Message-ID: <5615ed34-1e8a-4f16-102b-4d2c87e77a0a@linux.vnet.ibm.com> (raw)
In-Reply-To: <d0f14ff7-fce7-e39d-d921-14485aef2ead@linux.vnet.ibm.com>



On Wednesday 05 April 2017 11:05 AM, Anshuman Khandual wrote:
> On 04/04/2017 07:33 PM, Aneesh Kumar K.V wrote:
>> This patch adds support for gigantic pages in ppc64. We also updates
>> gigantic_page_supported helper such that arch can override it.
>
> Seems like only radix based 1GB is considered as gigantic page in this
> implementation. What about the existing 16GB pages support ? IIUC they
> are still supported currently as gigantic pages (as defined in generic
> HugeTLB) if the platform gives us reserved memory areas during boot.
> Can you explain how this is going to be different ?
>
>>
>> Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
>> ---
>>  arch/powerpc/include/asm/book3s/64/hugetlb.h | 9 +++++++++
>>  arch/powerpc/mm/hugetlbpage.c                | 7 +++++--
>>  arch/powerpc/platforms/Kconfig.cputype       | 1 +
>>  mm/hugetlb.c                                 | 4 ++++
>>  4 files changed, 19 insertions(+), 2 deletions(-)
>>
>> diff --git a/arch/powerpc/include/asm/book3s/64/hugetlb.h b/arch/powerpc/include/asm/book3s/64/hugetlb.h
>> index 6666cd366596..a994d069fdaf 100644
>> --- a/arch/powerpc/include/asm/book3s/64/hugetlb.h
>> +++ b/arch/powerpc/include/asm/book3s/64/hugetlb.h
>> @@ -50,4 +50,13 @@ static inline pte_t arch_make_huge_pte(pte_t entry, struct vm_area_struct *vma,
>>  	else
>>  		return entry;
>>  }
>> +
>> +#define gigantic_page_supported gigantic_page_supported
>> +static inline bool gigantic_page_supported(void)
>> +{
>> +	if (radix_enabled())
>> +		return true;
>> +	return false;
>> +}
>
> POWER8 (non radix MMU) cannot have 16GB gigantic HugeTLB pages ?

that helper determines whether we can do gigantic page allocation at 
runtime. I doubt we can do that for 16GB pages. Hence this is only 
enabled for 1G radix config


-aneesh

      reply	other threads:[~2017-04-05  6:33 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-04 14:03 [RFC PATCH] powerpc/mm/hugetlb: Add support for 1G huge pages Aneesh Kumar K.V
2017-04-05  5:35 ` Anshuman Khandual
2017-04-05  6:33   ` Aneesh Kumar K.V [this message]

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=5615ed34-1e8a-4f16-102b-4d2c87e77a0a@linux.vnet.ibm.com \
    --to=aneesh.kumar@linux.vnet.ibm.com \
    --cc=benh@kernel.crashing.org \
    --cc=khandual@linux.vnet.ibm.com \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=mpe@ellerman.id.au \
    --cc=paulus@samba.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).