From: Alejandro Vallejo <alejandro.garciavallejo@amd.com>
To: Jan Beulich <jbeulich@suse.com>
Cc: "Andrew Cooper" <andrew.cooper3@citrix.com>,
"Roger Pau Monné" <roger.pau@citrix.com>,
"Jason Andryuk" <jason.andryuk@amd.com>,
xen-devel@lists.xenproject.org
Subject: Re: [PATCH 06/12] x86: Migrate switch vendor checks to cpu_vendor()
Date: Thu, 12 Feb 2026 16:06:37 +0100 [thread overview]
Message-ID: <DGD2RYDMNWSJ.2JIIPRX6WYWJE@amd.com> (raw)
In-Reply-To: <dea3752f-1926-4fb4-b0df-305ebbea4aa2@suse.com>
On Thu Feb 12, 2026 at 12:06 PM CET, Jan Beulich wrote:
> On 06.02.2026 17:15, Alejandro Vallejo wrote:
>> --- a/xen/arch/x86/acpi/cpufreq/cpufreq.c
>> +++ b/xen/arch/x86/acpi/cpufreq/cpufreq.c
>> @@ -133,7 +133,7 @@ static int __init cf_check cpufreq_driver_init(void)
>>
>> ret = -ENOENT;
>>
>> - switch ( boot_cpu_data.x86_vendor )
>> + switch( cpu_vendor() )
>
> Nit: Please avoid screwing up style.
bah, yes.
>
>> @@ -141,12 +141,10 @@ static int __init cf_check cpufreq_driver_init(void)
>> switch ( cpufreq_xen_opts[i] )
>> {
>> case CPUFREQ_xen:
>> - ret = IS_ENABLED(CONFIG_INTEL) ?
>> - acpi_cpufreq_register() : -ENODEV;
>> + ret = acpi_cpufreq_register();
>> break;
>> case CPUFREQ_hwp:
>> - ret = IS_ENABLED(CONFIG_INTEL) ?
>> - hwp_register_driver() : -ENODEV;
>> + ret = hwp_register_driver();
>> break;
>> case CPUFREQ_none:
>> ret = 0;
>
> This of course is a neat (side) effect.
>
>> @@ -165,7 +163,6 @@ static int __init cf_check cpufreq_driver_init(void)
>>
>> case X86_VENDOR_AMD:
>> case X86_VENDOR_HYGON:
>> -#ifdef CONFIG_AMD
>> for ( i = 0; i < cpufreq_xen_cnt; i++ )
>> {
>> switch ( cpufreq_xen_opts[i] )
>> @@ -191,9 +188,6 @@ static int __init cf_check cpufreq_driver_init(void)
>> if ( !ret || ret == -EBUSY )
>> break;
>> }
>> -#else
>> - ret = -ENODEV;
>> -#endif /* CONFIG_AMD */
>> break;
>>
>> default:
>
> There's a change to the function's return value, though: When reaching default:,
> -ENOENT will result, when previously -ENODEV would have been returned for
> compiled-out cases. It may well be that there is a dependency somewhere on the
> particular return value - did you thoroughly check that?
It's a presmp_initcall. The specific ret value is inconsequential.
>
> Of course this may well apply elsewhere as well; I did not go through and check
> every of the switch()es you alter.
It may. I did check, but that doesn't mean I didn't miss any.
>
>> --- a/xen/arch/x86/cpu/mcheck/mce.h
>> +++ b/xen/arch/x86/cpu/mcheck/mce.h
>> @@ -137,7 +137,7 @@ void x86_mcinfo_dump(struct mc_info *mi);
>>
>> static inline int mce_vendor_bank_msr(const struct vcpu *v, uint32_t msr)
>> {
>> - switch (boot_cpu_data.x86_vendor) {
>> + switch (cpu_vendor()) {
>
> Would be nice if style was updated while touching such.
sure.
>
>> --- a/xen/arch/x86/cpu/vpmu.c
>> +++ b/xen/arch/x86/cpu/vpmu.c
>> @@ -815,7 +815,7 @@ static struct notifier_block cpu_nfb = {
>>
>> static int __init cf_check vpmu_init(void)
>> {
>> - int vendor = current_cpu_data.x86_vendor;
>> + int vendor = cpu_vendor();
>
> It is only seeing the plain int here that I notice that cpu_vendor() returns
> uint8_t. I don't think that's necessary, and hence as per ./CODING_STYLE it
> should rather be unsigned int. Which is then waht would want using here as
> well.
Hmm, I need to check whether it affects codegen. Probably not seeing how its
all inline. Will do unless it has terrible side effects.
>
>> --- a/xen/arch/x86/domain.c
>> +++ b/xen/arch/x86/domain.c
>> @@ -319,7 +319,7 @@ void domain_cpu_policy_changed(struct domain *d)
>> if ( cpu_has_htt )
>> edx |= cpufeat_mask(X86_FEATURE_HTT);
>>
>> - switch ( boot_cpu_data.x86_vendor )
>> + switch( cpu_vendor() )
>> {
>> case X86_VENDOR_INTEL:
>> /*
>> @@ -427,7 +427,7 @@ void domain_cpu_policy_changed(struct domain *d)
>> if ( !(p->x86_vendor & (X86_VENDOR_AMD | X86_VENDOR_HYGON)) )
>> edx &= ~CPUID_COMMON_1D_FEATURES;
>>
>> - switch ( boot_cpu_data.x86_vendor )
>> + switch( cpu_vendor() )
> As they recur, I wonder where these bogus style adjustments are coming from.
> It's not like ...
>
>> --- a/xen/arch/x86/guest/xen/xen.c
>> +++ b/xen/arch/x86/guest/xen/xen.c
>> @@ -63,7 +63,7 @@ void asmlinkage __init early_hypercall_setup(void)
>> x86_cpuid_vendor_to_str(boot_cpu_data.x86_vendor));
>> }
>>
>> - switch ( boot_cpu_data.x86_vendor )
>> + switch ( cpu_vendor() )
>
> ... you would have used a bad sed pattern globally, as here style remains
> intact. Further down it breaks again.
This patch used to be several. One of the primordial commits seems to suffer
from this. Will fix globally. Thanks.
Alejandro
next prev parent reply other threads:[~2026-02-12 15:07 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-06 16:15 [PATCH 00/12] const-ify vendor checks Alejandro Vallejo
2026-02-06 16:15 ` [PATCH 01/12] x86: Reject CPU policies with vendors other than the host's Alejandro Vallejo
2026-02-10 8:19 ` Roger Pau Monné
2026-02-10 10:11 ` Alejandro Vallejo
2026-02-11 15:41 ` Jan Beulich
2026-02-11 17:41 ` Alejandro Vallejo
2026-02-12 7:16 ` Jan Beulich
2026-02-06 16:15 ` [PATCH 02/12] x86: Add more granularity to the vendors in Kconfig Alejandro Vallejo
2026-02-10 8:26 ` Roger Pau Monné
2026-02-10 10:04 ` Alejandro Vallejo
2026-02-11 16:06 ` Jan Beulich
2026-02-11 17:51 ` Alejandro Vallejo
2026-02-12 7:24 ` Jan Beulich
2026-02-06 16:15 ` [PATCH 03/12] x86: Add cpu_vendor() as a wrapper for the host's CPU vendor Alejandro Vallejo
2026-02-10 8:46 ` Roger Pau Monné
2026-02-10 10:35 ` Alejandro Vallejo
2026-02-10 12:06 ` Roger Pau Monné
2026-02-11 16:04 ` Jan Beulich
2026-02-11 17:35 ` Alejandro Vallejo
2026-02-11 17:57 ` Alejandro Vallejo
2026-02-12 10:52 ` Jan Beulich
2026-02-12 14:36 ` Alejandro Vallejo
2026-02-06 16:15 ` [PATCH 04/12] x86: Migrate MSR handler vendor checks to cpu_vendor() Alejandro Vallejo
2026-02-11 16:15 ` Jan Beulich
2026-02-06 16:15 ` [PATCH 05/12] x86: Migrate spec_ctrl " Alejandro Vallejo
2026-02-12 10:49 ` Jan Beulich
2026-02-12 14:55 ` Alejandro Vallejo
2026-02-06 16:15 ` [PATCH 06/12] x86: Migrate switch " Alejandro Vallejo
2026-02-12 11:06 ` Jan Beulich
2026-02-12 15:06 ` Alejandro Vallejo [this message]
2026-02-06 16:15 ` [PATCH 07/12] x86: Have x86_emulate/ implement the single-vendor optimisation Alejandro Vallejo
2026-02-12 11:26 ` Jan Beulich
2026-02-12 15:29 ` Alejandro Vallejo
2026-02-06 16:15 ` [PATCH 07/12] x86: Migrate x86_emulate/ to use cpu_vendor() Alejandro Vallejo
2026-02-12 11:31 ` Jan Beulich
2026-02-12 15:30 ` Alejandro Vallejo
2026-02-06 16:15 ` [PATCH 08/12] x86/acpi: Migrate vendor checks to cpu_vendor() Alejandro Vallejo
2026-02-12 11:52 ` Jan Beulich
2026-02-12 15:34 ` Alejandro Vallejo
2026-02-12 15:52 ` Jan Beulich
2026-02-06 16:15 ` [PATCH 09/12] x86/pv: " Alejandro Vallejo
2026-02-06 16:15 ` [PATCH 10/12] x86/mcheck: Migrate vendor checks to use cpu_vendor() Alejandro Vallejo
2026-02-12 12:02 ` Jan Beulich
2026-02-12 12:21 ` Jan Beulich
2026-02-12 15:46 ` Alejandro Vallejo
2026-02-06 16:15 ` [PATCH 11/12] x86/cpu: " Alejandro Vallejo
2026-02-12 13:17 ` Jan Beulich
2026-02-06 16:15 ` [PATCH 12/12] x86: Migrate every remaining raw vendor check to cpu_vendor() Alejandro Vallejo
2026-02-12 13:29 ` Jan Beulich
2026-02-09 9:21 ` [PATCH 00/12] const-ify vendor checks Jan Beulich
2026-02-09 10:05 ` Alejandro Vallejo
2026-02-09 10:15 ` Jan Beulich
2026-02-09 11:56 ` Alejandro Vallejo
2026-02-09 12:52 ` Jan Beulich
2026-02-09 14:37 ` Alejandro Vallejo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=DGD2RYDMNWSJ.2JIIPRX6WYWJE@amd.com \
--to=alejandro.garciavallejo@amd.com \
--cc=andrew.cooper3@citrix.com \
--cc=jason.andryuk@amd.com \
--cc=jbeulich@suse.com \
--cc=roger.pau@citrix.com \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.