Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752916AbdHKMSn (ORCPT ); Fri, 11 Aug 2017 08:18:43 -0400 Received: from terminus.zytor.com ([65.50.211.136]:33661 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752169AbdHKMSl (ORCPT ); Fri, 11 Aug 2017 08:18:41 -0400 Date: Fri, 11 Aug 2017 05:13:07 -0700 From: tip-bot for Borislav Petkov Message-ID: Cc: hpa@zytor.com, rkrcmar@redhat.com, peterz@infradead.org, tglx@linutronix.de, linux-kernel@vger.kernel.org, Janakarajan.Natarajan@amd.com, torvalds@linux-foundation.org, joro@8bytes.org, kvm@vger.kernel.org, mingo@kernel.org, bp@suse.de, pbonzini@redhat.com Reply-To: tglx@linutronix.de, peterz@infradead.org, rkrcmar@redhat.com, hpa@zytor.com, pbonzini@redhat.com, bp@suse.de, torvalds@linux-foundation.org, linux-kernel@vger.kernel.org, Janakarajan.Natarajan@amd.com, kvm@vger.kernel.org, mingo@kernel.org, joro@8bytes.org In-Reply-To: <20170801185552.GA3743@nazgul.tnic> References: <20170801185552.GA3743@nazgul.tnic> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/urgent] x86/cpufeature, kvm/svm: Rename (shorten) the new "virtualized VMSAVE/VMLOAD" CPUID flag Git-Commit-ID: 5442c26995527245c94c4a49e535eae8a60a5299 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2567 Lines: 60 Commit-ID: 5442c26995527245c94c4a49e535eae8a60a5299 Gitweb: http://git.kernel.org/tip/5442c26995527245c94c4a49e535eae8a60a5299 Author: Borislav Petkov AuthorDate: Tue, 1 Aug 2017 20:55:52 +0200 Committer: Ingo Molnar CommitDate: Fri, 11 Aug 2017 13:42:28 +0200 x86/cpufeature, kvm/svm: Rename (shorten) the new "virtualized VMSAVE/VMLOAD" CPUID flag "virtual_vmload_vmsave" is what is going to land in /proc/cpuinfo now as per v4.13-rc4, for a single feature bit which is clearly too long. So rename it to what it is called in the processor manual. "v_vmsave_vmload" is a bit shorter, after all. We could go more aggressively here but having it the same as in the processor manual is advantageous. Signed-off-by: Borislav Petkov Acked-by: Radim Krčmář Cc: Janakarajan Natarajan Cc: Jörg Rödel Cc: Linus Torvalds Cc: Paolo Bonzini Cc: Peter Zijlstra Cc: Thomas Gleixner Cc: kvm-ML Link: http://lkml.kernel.org/r/20170801185552.GA3743@nazgul.tnic Signed-off-by: Ingo Molnar --- arch/x86/include/asm/cpufeatures.h | 2 +- arch/x86/kvm/svm.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86/include/asm/cpufeatures.h b/arch/x86/include/asm/cpufeatures.h index ca3c48c..5a28e8e 100644 --- a/arch/x86/include/asm/cpufeatures.h +++ b/arch/x86/include/asm/cpufeatures.h @@ -286,7 +286,7 @@ #define X86_FEATURE_PAUSEFILTER (15*32+10) /* filtered pause intercept */ #define X86_FEATURE_PFTHRESHOLD (15*32+12) /* pause filter threshold */ #define X86_FEATURE_AVIC (15*32+13) /* Virtual Interrupt Controller */ -#define X86_FEATURE_VIRTUAL_VMLOAD_VMSAVE (15*32+15) /* Virtual VMLOAD VMSAVE */ +#define X86_FEATURE_V_VMSAVE_VMLOAD (15*32+15) /* Virtual VMSAVE VMLOAD */ /* Intel-defined CPU features, CPUID level 0x00000007:0 (ecx), word 16 */ #define X86_FEATURE_AVX512VBMI (16*32+ 1) /* AVX512 Vector Bit Manipulation instructions*/ diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index 1107626..56ba053 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c @@ -1100,7 +1100,7 @@ static __init int svm_hardware_setup(void) if (vls) { if (!npt_enabled || - !boot_cpu_has(X86_FEATURE_VIRTUAL_VMLOAD_VMSAVE) || + !boot_cpu_has(X86_FEATURE_V_VMSAVE_VMLOAD) || !IS_ENABLED(CONFIG_X86_64)) { vls = false; } else {