Message ID | 4A43342C.2070303@siemens.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 06/25/2009 11:24 AM, Jan Kiszka wrote: > For i386, native_read_msr_safe was already introduced in 2.6.22. > Applied, thanks.
diff --git a/x86/external-module-compat.h b/x86/external-module-compat.h index 881602e..8436e43 100644 --- a/x86/external-module-compat.h +++ b/x86/external-module-compat.h @@ -72,6 +72,8 @@ typedef u64 phys_addr_t; #define _ASM_ALIGN __ASM_SEL(.balign 4, .balign 8) #endif +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22) || defined(CONFIG_X86_64) + static inline unsigned long long native_read_msr_safe(unsigned int msr, int *err) { @@ -90,6 +92,8 @@ static inline unsigned long long native_read_msr_safe(unsigned int msr, #endif +#endif + #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26) static inline int rdmsrl_safe(unsigned msr, unsigned long long *p)
For i386, native_read_msr_safe was already introduced in 2.6.22. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> --- x86/external-module-compat.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html