summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/Kconfig.debug
diff options
context:
space:
mode:
authorMichael Ellerman2016-11-30 09:41:02 +0100
committerMichael Ellerman2016-12-01 06:20:18 +0100
commitdd5ac03e09554b7504f64990cfbcec884e3ec430 (patch)
tree142b164e3ed0ebc6aba7002e729b3c587c8e7ba2 /arch/powerpc/Kconfig.debug
parentpowerpc/ps3: Fix system hang with GCC 5 builds (diff)
downloadkernel-qcow2-linux-dd5ac03e09554b7504f64990cfbcec884e3ec430.tar.gz
kernel-qcow2-linux-dd5ac03e09554b7504f64990cfbcec884e3ec430.tar.xz
kernel-qcow2-linux-dd5ac03e09554b7504f64990cfbcec884e3ec430.zip
powerpc/mm: Fix page table dump build on non-Book3S
In the recent commit 1515ab932156 ("powerpc/mm: Dump hash table") we added code to dump the hage page table. Currently this can be selected to build on any platform. However it breaks the build if we're building for a non-Book3S platform, because none of the hash page table related defines and so on exist. So restrict it to building only on Book3S. Similarly in commit 8eb07b187000 ("powerpc/mm: Dump linux pagetables") we added code to dump the Linux page tables, which uses some constants which are only defined on Book3S - so guard those with an #ifdef. Fixes: 1515ab932156 ("powerpc/mm: Dump hash table") Fixes: 8eb07b187000 ("powerpc/mm: Dump linux pagetables") Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/Kconfig.debug')
-rw-r--r--arch/powerpc/Kconfig.debug4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/Kconfig.debug b/arch/powerpc/Kconfig.debug
index 20cf770611ec..949258d412d0 100644
--- a/arch/powerpc/Kconfig.debug
+++ b/arch/powerpc/Kconfig.debug
@@ -366,4 +366,8 @@ config PPC_PTDUMP
If you are unsure, say N.
+config PPC_HTDUMP
+ def_bool y
+ depends on PPC_PTDUMP && PPC_BOOK3S
+
endmenu