projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2b67ef
)
powerpc/hugetlb: Fix 8M hugepages on 8xx
author
Christophe Leroy
<christophe.leroy@c-s.fr>
Sun, 9 Feb 2020 16:02:41 +0000
(16:02 +0000)
committer
Michael Ellerman
<mpe@ellerman.id.au>
Mon, 17 Feb 2020 01:47:06 +0000
(12:47 +1100)
With HW assistance all page tables must be 4k aligned, the 8xx drops
the last 12 bits during the walk.
Redefine HUGEPD_SHIFT_MASK to mask last 12 bits out. HUGEPD_SHIFT_MASK
is used to for alignment of page table cache.
Fixes:
22569b881d37
("powerpc/8xx: Enable 8M hugepage support with HW assistance")
Cc: stable@vger.kernel.org # v5.0+
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link:
https://lore.kernel.org/r/778b1a248c4c7ca79640eeff7740044da6a220a0.1581264115.git.christophe.leroy@c-s.fr
arch/powerpc/include/asm/page.h
patch
|
blob
|
history
diff --git
a/arch/powerpc/include/asm/page.h
b/arch/powerpc/include/asm/page.h
index
8633208
..
080a0bf
100644
(file)
--- a/
arch/powerpc/include/asm/page.h
+++ b/
arch/powerpc/include/asm/page.h
@@
-295,8
+295,13
@@
static inline bool pfn_valid(unsigned long pfn)
/*
* Some number of bits at the level of the page table that points to
* a hugepte are used to encode the size. This masks those bits.
+ * On 8xx, HW assistance requires 4k alignment for the hugepte.
*/
+#ifdef CONFIG_PPC_8xx
+#define HUGEPD_SHIFT_MASK 0xfff
+#else
#define HUGEPD_SHIFT_MASK 0x3f
+#endif
#ifndef __ASSEMBLY__