From: Andrew Cooper Date: Thu, 30 Apr 2020 08:34:56 +0000 (+0200) Subject: x86/msr: Fix XEN_MSR_PAT to build with older binutils X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~323 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=4f1b2e581744d5f78e4c809faf0a3167644afb82;p=xen.git 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 --- 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__