diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2018-11-06 19:25:18 +1100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-11-06 19:29:52 +1100 |
commit | 08e6a3434e2125e4b21d0d3f84678d427345bc0d (patch) | |
tree | 4b1e48802d2aeb89f3b01a1353d8f8f68ef2c1f4 /arch/powerpc/mm/slb.c | |
parent | 0ae790683fc28bb718d74f87cdf753c6445fe28d (diff) | |
download | talos-op-linux-08e6a3434e2125e4b21d0d3f84678d427345bc0d.tar.gz talos-op-linux-08e6a3434e2125e4b21d0d3f84678d427345bc0d.zip |
powerpc/mm/64s: Use PPC_SLBFEE macro
Old toolchains don't know about slbfee and break the build, eg:
{standard input}:37: Error: Unrecognized opcode: `slbfee.'
Fix it by using the macro version. We need to add an underscore
version that takes raw register numbers from the inline asm, rather
than our Rx macros.
Fixes: e15a4fea4dee ("powerpc/64s/hash: Add some SLB debugging tests")
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/mm/slb.c')
-rw-r--r-- | arch/powerpc/mm/slb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/mm/slb.c b/arch/powerpc/mm/slb.c index f3e002ee457b..457fd29448b1 100644 --- a/arch/powerpc/mm/slb.c +++ b/arch/powerpc/mm/slb.c @@ -19,6 +19,7 @@ #include <asm/mmu.h> #include <asm/mmu_context.h> #include <asm/paca.h> +#include <asm/ppc-opcode.h> #include <asm/cputable.h> #include <asm/cacheflush.h> #include <asm/smp.h> @@ -65,7 +66,7 @@ static void assert_slb_presence(bool present, unsigned long ea) WARN_ON_ONCE(mfmsr() & MSR_EE); - asm volatile("slbfee. %0, %1" : "=r"(tmp) : "r"(ea) : "cr0"); + asm volatile(__PPC_SLBFEE_DOT(%0, %1) : "=r"(tmp) : "r"(ea) : "cr0"); WARN_ON(present == (tmp == 0)); #endif |