lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sun, 14 Sep 2014 22:30:15 -0700 From: behanw@...verseincode.com To: anderson@...hat.com, catalin.marinas@....com, jays.lee@...sung.com, msalter@...hat.com, steve.capper@...aro.org, will.deacon@....com Cc: akpm@...ux-foundation.org, linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org, Mark Charlebois <charlebm@...il.com>, Behan Webster <behanw@...verseincode.com> Subject: [PATCH] arm64: LLVMLinux: Fix inline arm64 assembly for use with clang From: Mark Charlebois <charlebm@...il.com> Remove '#' from immediate parameter in AARCH64 inline assembly in mmu. This code now works with both gcc and clang. Signed-off-by: Mark Charlebois <charlebm@...il.com> Signed-off-by: Behan Webster <behanw@...verseincode.com> --- arch/arm64/mm/mmu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/mm/mmu.c b/arch/arm64/mm/mmu.c index c555672..6894ef3 100644 --- a/arch/arm64/mm/mmu.c +++ b/arch/arm64/mm/mmu.c @@ -94,7 +94,7 @@ static int __init early_cachepolicy(char *p) */ asm volatile( " mrs %0, mair_el1\n" - " bfi %0, %1, #%2, #8\n" + " bfi %0, %1, %2, #8\n" " msr mair_el1, %0\n" " isb\n" : "=&r" (tmp) -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists