From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 75481C2D0A8 for ; Mon, 28 Sep 2020 15:37:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 3ECC72074A for ; Mon, 28 Sep 2020 15:37:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726534AbgI1Phg (ORCPT ); Mon, 28 Sep 2020 11:37:36 -0400 Received: from mga14.intel.com ([192.55.52.115]:3455 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726424AbgI1Phg (ORCPT ); Mon, 28 Sep 2020 11:37:36 -0400 IronPort-SDR: rllHz9qmaMor5eCYnzW9LDwGaT9i9dA3WOkSekOTGRk86IJ/f82fJ++f/xTQnGMCTtRNer+32Z yY+XWTbz1Okw== X-IronPort-AV: E=McAfee;i="6000,8403,9758"; a="161243340" X-IronPort-AV: E=Sophos;i="5.77,313,1596524400"; d="scan'208";a="161243340" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Sep 2020 08:37:35 -0700 IronPort-SDR: nw503zQt96GOU7yXMdfJ7+GJDrYRTySzeypEu0PgiXkkVvKgAWS1pN/Bq5L8Y8K/OyXTNnKhsv ADDikHVYygpw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,313,1596524400"; d="scan'208";a="350764144" Received: from lkp-server01.sh.intel.com (HELO 0e0978ea3297) ([10.239.97.150]) by orsmga007.jf.intel.com with ESMTP; 28 Sep 2020 08:37:33 -0700 Received: from kbuild by 0e0978ea3297 with local (Exim 4.92) (envelope-from ) id 1kMvDY-0000L8-UP; Mon, 28 Sep 2020 15:37:32 +0000 Date: Mon, 28 Sep 2020 23:37:14 +0800 From: kernel test robot To: Sean Christopherson Cc: kbuild-all@lists.01.org, kvm@vger.kernel.org, Robert Hu , Farrah Chen , Danmei Wei , Paolo Bonzini Subject: [RFC PATCH kvm] KVM: VMX: vmx_uret_msrs_list[] can be static Message-ID: <20200928153714.GA6285@a3a878002045> References: <202009282300.GKb6ot6E%lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <202009282300.GKb6ot6E%lkp@intel.com> X-Patchwork-Hint: ignore User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Fixes: 14a61b642de9 ("KVM: VMX: Rename "vmx_msr_index" to "vmx_uret_msrs_list"") Signed-off-by: kernel test robot --- vmx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kvm/vmx/vmx.c b/arch/x86/kvm/vmx/vmx.c index 07781403db08a2..b20ef136894acc 100644 --- a/arch/x86/kvm/vmx/vmx.c +++ b/arch/x86/kvm/vmx/vmx.c @@ -437,7 +437,7 @@ static unsigned long host_idt_base; * support this emulation, IA32_STAR must always be included in * vmx_uret_msrs_list[], even in i386 builds. */ -const u32 vmx_uret_msrs_list[] = { +static const u32 vmx_uret_msrs_list[] = { #ifdef CONFIG_X86_64 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, #endif From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============0892091977621787861==" MIME-Version: 1.0 From: kernel test robot To: kbuild-all@lists.01.org Subject: [RFC PATCH kvm] KVM: VMX: vmx_uret_msrs_list[] can be static Date: Mon, 28 Sep 2020 23:37:14 +0800 Message-ID: <20200928153714.GA6285@a3a878002045> In-Reply-To: <202009282300.GKb6ot6E%lkp@intel.com> List-Id: --===============0892091977621787861== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Fixes: 14a61b642de9 ("KVM: VMX: Rename "vmx_msr_index" to "vmx_uret_msrs_li= st"") Signed-off-by: kernel test robot --- vmx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kvm/vmx/vmx.c b/arch/x86/kvm/vmx/vmx.c index 07781403db08a2..b20ef136894acc 100644 --- a/arch/x86/kvm/vmx/vmx.c +++ b/arch/x86/kvm/vmx/vmx.c @@ -437,7 +437,7 @@ static unsigned long host_idt_base; * support this emulation, IA32_STAR must always be included in * vmx_uret_msrs_list[], even in i386 builds. */ -const u32 vmx_uret_msrs_list[] =3D { +static const u32 vmx_uret_msrs_list[] =3D { #ifdef CONFIG_X86_64 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, #endif --===============0892091977621787861==--