From: K. Y. Srinivasan Date: Wed, 15 Mar 2017 01:01:38 +0000 (-0700) Subject: Drivers: hv: Fix a typo X-Git-Tag: v4.12-rc1~95^2~109 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4539673a6ac027e3ba95901379b5f36c5eb3c9dc;p=platform%2Fkernel%2Flinux-exynos.git Drivers: hv: Fix a typo Fix a typo in the macro. Signed-off-by: K. Y. Srinivasan Signed-off-by: Greg Kroah-Hartman --- diff --git a/arch/x86/include/uapi/asm/hyperv.h b/arch/x86/include/uapi/asm/hyperv.h index 3a20ccf..32ea7a3 100644 --- a/arch/x86/include/uapi/asm/hyperv.h +++ b/arch/x86/include/uapi/asm/hyperv.h @@ -124,7 +124,7 @@ * Recommend using hypercall for address space switches rather * than MOV to CR3 instruction */ -#define HV_X64_MWAIT_RECOMMENDED (1 << 0) +#define HV_X64_AS_SWITCH_RECOMMENDED (1 << 0) /* Recommend using hypercall for local TLB flushes rather * than INVLPG or MOV to CR3 instructions */ #define HV_X64_LOCAL_TLB_FLUSH_RECOMMENDED (1 << 1)