From 4f1b2e581744d5f78e4c809faf0a3167644afb82 Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Thu, 30 Apr 2020 10:34:56 +0200 Subject: [PATCH] x86/msr: Fix XEN_MSR_PAT to build with older binutils Older binutils complains with: trampoline.S:95: Error: junk `ul&0xffffffff' after expression Use an assembly-safe constant. Signed-off-by: Andrew Cooper Acked-by: Jan Beulich --- xen/include/asm-x86/processor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/asm-x86/processor.h b/xen/include/asm-x86/processor.h index ea6e5497f4..8f6f5a97dd 100644 --- a/xen/include/asm-x86/processor.h +++ b/xen/include/asm-x86/processor.h @@ -99,7 +99,7 @@ * Host IA32_CR_PAT value to cover all memory types. This is not the default * MSR_PAT value, and is an ABI with PV guests. */ -#define XEN_MSR_PAT 0x050100070406ul +#define XEN_MSR_PAT _AC(0x050100070406, ULL) #ifndef __ASSEMBLY__ -- 2.30.2