From: Andrew Cooper Date: Mon, 23 Oct 2017 09:49:33 +0000 (+0100) Subject: x86/efer: Make {read,write}_efer() into inline helpers X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~915 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d630832f9f9c2ef80b04a2c7d7f08581a18df2b3;p=xen.git x86/efer: Make {read,write}_efer() into inline helpers There is no need for the overhead of a call to a separate translation unit. While moving the implementation, update them to use uint64_t over u64 Signed-off-by: Andrew Cooper Acked-by: Jan Beulich --- diff --git a/xen/arch/x86/traps.c b/xen/arch/x86/traps.c index 8a80cd9f48..db16a44417 100644 --- a/xen/arch/x86/traps.c +++ b/xen/arch/x86/traps.c @@ -93,7 +93,7 @@ static char __read_mostly opt_nmi[10] = "fatal"; #endif string_param("nmi", opt_nmi); -DEFINE_PER_CPU(u64, efer); +DEFINE_PER_CPU(uint64_t, efer); static DEFINE_PER_CPU(unsigned long, last_extable_addr); DEFINE_PER_CPU_READ_MOSTLY(u32, ler_msr); @@ -1718,17 +1718,6 @@ void do_device_not_available(struct cpu_user_regs *regs) return; } -u64 read_efer(void) -{ - return this_cpu(efer); -} - -void write_efer(u64 val) -{ - this_cpu(efer) = val; - wrmsrl(MSR_EFER, val); -} - static void ler_enable(void) { u64 debugctl; diff --git a/xen/include/asm-x86/msr.h b/xen/include/asm-x86/msr.h index 41732a4c93..2fbed0251e 100644 --- a/xen/include/asm-x86/msr.h +++ b/xen/include/asm-x86/msr.h @@ -196,9 +196,17 @@ static inline void wrgsbase(unsigned long base) wrmsrl(MSR_GS_BASE, base); } -DECLARE_PER_CPU(u64, efer); -u64 read_efer(void); -void write_efer(u64 val); +DECLARE_PER_CPU(uint64_t, efer); +static inline uint64_t read_efer(void) +{ + return this_cpu(efer); +} + +static inline void write_efer(uint64_t val) +{ + this_cpu(efer) = val; + wrmsrl(MSR_EFER, val); +} DECLARE_PER_CPU(u32, ler_msr);