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=-8.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 autolearn=unavailable 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 0D81DC3F2D1 for ; Mon, 2 Mar 2020 20:21:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CE92221D56 for ; Mon, 2 Mar 2020 20:21:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726845AbgCBUVX (ORCPT ); Mon, 2 Mar 2020 15:21:23 -0500 Received: from thoth.sbs.de ([192.35.17.2]:36338 "EHLO thoth.sbs.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726700AbgCBUVX (ORCPT ); Mon, 2 Mar 2020 15:21:23 -0500 Received: from mail2.sbs.de (mail2.sbs.de [192.129.41.66]) by thoth.sbs.de (8.15.2/8.15.2) with ESMTPS id 022KKr7x020818 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Mon, 2 Mar 2020 21:20:53 +0100 Received: from [139.25.68.37] ([139.25.68.37]) by mail2.sbs.de (8.15.2/8.15.2) with ESMTP id 022KKqOB014549; Mon, 2 Mar 2020 21:20:52 +0100 Subject: Re: [PATCH 5/6] KVM: x86: Rename "found" variable in kvm_cpuid() to "exact_entry_exists" To: Sean Christopherson , Paolo Bonzini Cc: Vitaly Kuznetsov , Wanpeng Li , Jim Mattson , Joerg Roedel , kvm@vger.kernel.org, linux-kernel@vger.kernel.org, Xiaoyao Li References: <20200302195736.24777-1-sean.j.christopherson@intel.com> <20200302195736.24777-6-sean.j.christopherson@intel.com> From: Jan Kiszka Message-ID: <680d85ee-948c-6968-2d1a-d563d4863140@siemens.com> Date: Mon, 2 Mar 2020 21:20:52 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.5.0 MIME-Version: 1.0 In-Reply-To: <20200302195736.24777-6-sean.j.christopherson@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org On 02.03.20 20:57, Sean Christopherson wrote: > Rename "found" in kvm_cpuid() to "exact_entry_exists" to better convey > that the intent of the tracepoint's "found/not found" output is to trace > whether the output values are for the actual requested leaf or for some > other (likely unrelated) leaf that was found while processing entries to > emulate funky CPU behavior, e.g. the max basic leaf on Intel CPUs when > the requested CPUID leaf is out of range. > > Suggested-by: Jan Kiszka > Signed-off-by: Sean Christopherson > --- > arch/x86/kvm/cpuid.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/arch/x86/kvm/cpuid.c b/arch/x86/kvm/cpuid.c > index 869526930cf7..b0a4f3c17932 100644 > --- a/arch/x86/kvm/cpuid.c > +++ b/arch/x86/kvm/cpuid.c > @@ -1002,10 +1002,10 @@ void kvm_cpuid(struct kvm_vcpu *vcpu, u32 *eax, u32 *ebx, > { > const u32 function = *eax, index = *ecx; > struct kvm_cpuid_entry2 *entry; > - bool found; > + bool exact_entry_exists; > > entry = kvm_find_cpuid_entry(vcpu, function, index); > - found = entry; > + exact_entry_exists = !!entry; > /* > * Intel CPUID semantics treats any query for an out-of-range > * leaf as if the highest basic leaf (i.e. CPUID.0H:EAX) were > @@ -1047,7 +1047,7 @@ void kvm_cpuid(struct kvm_vcpu *vcpu, u32 *eax, u32 *ebx, > } > } > } > - trace_kvm_cpuid(function, *eax, *ebx, *ecx, *edx, found); > + trace_kvm_cpuid(function, *eax, *ebx, *ecx, *edx, exact_entry_exists); Actually, I think we also what to change output in the tracepoint. Jan > } > EXPORT_SYMBOL_GPL(kvm_cpuid); > > -- Siemens AG, Corporate Technology, CT RDA IOT SES-DE Corporate Competence Center Embedded Linux