From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751384AbdCOBCn (ORCPT ); Tue, 14 Mar 2017 21:02:43 -0400 Received: from a2nlsmtp01-02.prod.iad2.secureserver.net ([198.71.225.36]:53654 "EHLO a2nlsmtp01-02.prod.iad2.secureserver.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750926AbdCOBCm (ORCPT ); Tue, 14 Mar 2017 21:02:42 -0400 x-originating-ip: 107.180.71.197 From: kys@exchange.microsoft.com To: gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org, devel@linuxdriverproject.org, olaf@aepfle.de, apw@canonical.com, vkuznets@redhat.com, jasowang@redhat.com, leann.ogasawara@canonical.com, marcelo.cerri@canonical.com Cc: "K. Y. Srinivasan" Subject: [PATCH 1/2] Drivers: hv: Fix a typo Date: Tue, 14 Mar 2017 18:01:38 -0700 Message-Id: <1489539699-2604-1-git-send-email-kys@exchange.microsoft.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1489539667-2561-1-git-send-email-kys@exchange.microsoft.com> References: <1489539667-2561-1-git-send-email-kys@exchange.microsoft.com> Reply-To: kys@microsoft.com X-CMAE-Envelope: MS4wfJA6HDv+supUUC8MPgRn52Bwqo6i6vrA0FsoLGFprpHJwULdk+TqEnHuRuMPgYnP7uR3PevC59ltx+EamxWkb71DQeOY289gTncMkBVZRAGaZ03cG6Nh izKC+b5rH7269oWM0YF9czOgdwV8VB9Q/sN4xjT2KAnsqzJh/w4NyNeYwqtC0ja0//T45s3/WTXPDpA5GIkSji16XHwGmiK2D8xLa1P3ufEjTgtbkaaiBqAW T1EbUheKkqEXhWhjHR+GtQpKB7huQdIZWE/PFHkuyWL1HqgVWBncGEhhqNPDerjfZ8+twrlBnWtxAgRYmHQCK5xy9uyIKU+FRBhp/DNeFOwUlFkz0Lbphnp7 xAA5y7+8JJiRDvzOic5j7jkty1+4dFpR/nHNQYpMfV2P8pC5ZcSn9SgShQXBkr5OlAwNru3ko0k3JAV7pnEGXoooeeRFJBpQdZ8pWgMB4R0E2bwvHJJOPYBk c3qKziXhPWxyEs6oBE0Wbe80t+dCiKmkNDCgnQ== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: K. Y. Srinivasan Fix a typo in the macro. Signed-off-by: K. Y. Srinivasan --- arch/x86/include/uapi/asm/hyperv.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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) -- 1.7.1