diff mbox

arm64: Define PTE_TYPE_HUGEPAGE

Message ID 1371519455-64998-1-git-send-email-christoffer.dall@linaro.org
State New
Headers show

Commit Message

Christoffer Dall June 18, 2013, 1:37 a.m. UTC
PTE_TYPE_HUGEPAGE is referenced by pte_huge, but because nobody uses
this macro it doesn't fail yet.  KVM will be using this when 32-bit
support for huge pages is added so add it.

Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
---
 arch/arm64/include/asm/pgtable-hwdef.h | 1 +
 1 file changed, 1 insertion(+)

Comments

Steve Capper June 18, 2013, 9:37 a.m. UTC | #1
On Mon, Jun 17, 2013 at 06:37:35PM -0700, Christoffer Dall wrote:
> PTE_TYPE_HUGEPAGE is referenced by pte_huge, but because nobody uses
> this macro it doesn't fail yet.  KVM will be using this when 32-bit
> support for huge pages is added so add it.
> 
> Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
> ---
>  arch/arm64/include/asm/pgtable-hwdef.h | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm64/include/asm/pgtable-hwdef.h b/arch/arm64/include/asm/pgtable-hwdef.h
> index 66367c6..0219523 100644
> --- a/arch/arm64/include/asm/pgtable-hwdef.h
> +++ b/arch/arm64/include/asm/pgtable-hwdef.h
> @@ -54,6 +54,7 @@
>  #define PTE_TYPE_MASK		(_AT(pteval_t, 3) << 0)
>  #define PTE_TYPE_FAULT		(_AT(pteval_t, 0) << 0)
>  #define PTE_TYPE_PAGE		(_AT(pteval_t, 3) << 0)
> +#define PTE_TYPE_HUGEPAGE	(_AT(pteval_t, 1) << 0)
>  #define PTE_USER		(_AT(pteval_t, 1) << 6)		/* AP[1] */
>  #define PTE_RDONLY		(_AT(pteval_t, 1) << 7)		/* AP[2] */
>  #define PTE_SHARED		(_AT(pteval_t, 3) << 8)		/* SH[1:0], inner shareable */
> -- 
> 1.8.1.2
> 

Hi Christoffer,
We can have PROT_NONE protected huge pages in ARM64 and the descriptors for
these will end in 00b. They are faulting descriptors, so any reads or writes by
user or kernel space will fault.

I have the following in my huge page patches:
#define pte_huge(pte)          (!(pte_val(pte) & PTE_TABLE_BIT))

i.e. check for bit 1 clear.

Please let me know if I've missed a PTE_TYPE_HUGEPAGE somewhere and I'll fix
it.

Thanks,
Christoffer Dall June 18, 2013, 3:49 p.m. UTC | #2
On Tue, Jun 18, 2013 at 10:37:37AM +0100, Steve Capper wrote:
> On Mon, Jun 17, 2013 at 06:37:35PM -0700, Christoffer Dall wrote:
> > PTE_TYPE_HUGEPAGE is referenced by pte_huge, but because nobody uses
> > this macro it doesn't fail yet.  KVM will be using this when 32-bit
> > support for huge pages is added so add it.
> > 
> > Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
> > ---
> >  arch/arm64/include/asm/pgtable-hwdef.h | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/arch/arm64/include/asm/pgtable-hwdef.h b/arch/arm64/include/asm/pgtable-hwdef.h
> > index 66367c6..0219523 100644
> > --- a/arch/arm64/include/asm/pgtable-hwdef.h
> > +++ b/arch/arm64/include/asm/pgtable-hwdef.h
> > @@ -54,6 +54,7 @@
> >  #define PTE_TYPE_MASK		(_AT(pteval_t, 3) << 0)
> >  #define PTE_TYPE_FAULT		(_AT(pteval_t, 0) << 0)
> >  #define PTE_TYPE_PAGE		(_AT(pteval_t, 3) << 0)
> > +#define PTE_TYPE_HUGEPAGE	(_AT(pteval_t, 1) << 0)
> >  #define PTE_USER		(_AT(pteval_t, 1) << 6)		/* AP[1] */
> >  #define PTE_RDONLY		(_AT(pteval_t, 1) << 7)		/* AP[2] */
> >  #define PTE_SHARED		(_AT(pteval_t, 3) << 8)		/* SH[1:0], inner shareable */
> > -- 
> > 1.8.1.2
> > 
> 
> Hi Christoffer,
> We can have PROT_NONE protected huge pages in ARM64 and the descriptors for
> these will end in 00b. They are faulting descriptors, so any reads or writes by
> user or kernel space will fault.
> 
> I have the following in my huge page patches:
> #define pte_huge(pte)          (!(pte_val(pte) & PTE_TABLE_BIT))
> 
> i.e. check for bit 1 clear.
> 
> Please let me know if I've missed a PTE_TYPE_HUGEPAGE somewhere and I'll fix
> it.
> 

I don't think so, the only place it showed up was for the predicates.
I'll just wait until all this is worked out and merged into Catalin's
tree (or upstream) and base the patch series on that for the next
version.

Thanks,
-Christoffer
diff mbox

Patch

diff --git a/arch/arm64/include/asm/pgtable-hwdef.h b/arch/arm64/include/asm/pgtable-hwdef.h
index 66367c6..0219523 100644
--- a/arch/arm64/include/asm/pgtable-hwdef.h
+++ b/arch/arm64/include/asm/pgtable-hwdef.h
@@ -54,6 +54,7 @@ 
 #define PTE_TYPE_MASK		(_AT(pteval_t, 3) << 0)
 #define PTE_TYPE_FAULT		(_AT(pteval_t, 0) << 0)
 #define PTE_TYPE_PAGE		(_AT(pteval_t, 3) << 0)
+#define PTE_TYPE_HUGEPAGE	(_AT(pteval_t, 1) << 0)
 #define PTE_USER		(_AT(pteval_t, 1) << 6)		/* AP[1] */
 #define PTE_RDONLY		(_AT(pteval_t, 1) << 7)		/* AP[2] */
 #define PTE_SHARED		(_AT(pteval_t, 3) << 8)		/* SH[1:0], inner shareable */