[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 10/12] x86/mcheck: Migrate vendor checks to use cpu_vendor()


  • To: Jan Beulich <jbeulich@xxxxxxxx>
  • From: Alejandro Vallejo <alejandro.garciavallejo@xxxxxxx>
  • Date: Thu, 12 Feb 2026 16:46:43 +0100
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass (sender ip is 165.204.84.17) smtp.rcpttodomain=suse.com smtp.mailfrom=amd.com; dmarc=pass (p=quarantine sp=quarantine pct=100) action=none header.from=amd.com; dkim=none (message not signed); arc=none (0)
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=W+61SZlI0ufxy97zKkBt+DLY0apk1WU8TXSyRaADQhc=; b=Ke7/dknUqyhJUvcD8qFeeTNJjqbTAkVPqJn4/+rmZcTFSMKuQDhTSD6stA2Fx5Y08xuAx+UiBu2WoAhEKjNrvzYXnVJl7lmeyf58WcPpDP3Thrpyu3MiP9lEKpGUayjub+498HYlJMd/lpd2VOGFCdPYWkmYa9qAZAJzRI6NLtDZUVbi9vOWUwSpCIjqTDmDf3hzsyjxdzXB+LM0cvD8vkcznf3WCuUx+kG7fDzNUKtvidF/I0YA7pJ0nxxpCREUwMayiBWs0svuNiyfhRmDeuFyvwdHDojDn9MFKQQak9Gemeql6vwxNzscKpxHv8+d2HPkrTpqgkyufQcyZU7Hpg==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=Tc8BkgMzle81Queu9MGc1MeQUqauFzoATgM4UX8uOXum+CcVg/lIj55oBi3M7avP9fL7tts1VlVv+QVd8cy2RuQKLF5dxYxq5E3Aa08Q/l9NAufM9GM7ETkz0FzSawZiuDHpBmAgBt/3GhsYYyIvLu4CJvznsJSgFUhLuUDTgdWS1Ht6h3e7HG4IJXMNH5PMknjZ0bKPIBPaKk5PcGbcGtLzytot+dQggZg3GEmZQ+swkFH3+trbmvVFgBiCeB8nx6wdZfloqndDjkwfEbUKyKiVi8X87djMOWseypWMMT5+J2iYC/C0wthqhot3vrXCik/ej1a3oglYaSG+Ll3Uqw==
  • Cc: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, Roger Pau Monné <roger.pau@xxxxxxxxxx>, Jason Andryuk <jason.andryuk@xxxxxxx>, <xen-devel@xxxxxxxxxxxxxxxxxxxx>
  • Delivery-date: Thu, 12 Feb 2026 15:47:06 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>

On Thu Feb 12, 2026 at 1:02 PM CET, Jan Beulich wrote:
> On 06.02.2026 17:15, Alejandro Vallejo wrote:
>> @@ -862,7 +861,7 @@ static void x86_mcinfo_apei_save(
>>      memset(&m, 0, sizeof(struct mce));
>>  
>>      m.cpu = mc_global->mc_coreid;
>> -    m.cpuvendor = boot_cpu_data.x86_vendor;
>> +    m.cpuvendor = cpu_vendor();
>>      m.cpuid = cpuid_eax(1);
>>      m.socketid = mc_global->mc_socketid;
>>      m.apicid = mc_global->mc_apicid;
>> @@ -964,7 +963,7 @@ static void cf_check __maybe_unused 
>> do_mc_get_cpu_info(void *v)
>>                          &xcp->mc_ncores_active, &xcp->mc_nthreads);
>>      xcp->mc_cpuid_level = c->cpuid_level;
>>      xcp->mc_family = c->x86;
>> -    xcp->mc_vendor = c->x86_vendor;
>> +    xcp->mc_vendor = cpu_vendor();
>>      xcp->mc_model = c->x86_model;
>>      xcp->mc_step = c->x86_mask;
>>      xcp->mc_cache_size = c->x86_cache_size;
>
> What we do internally is one thing. But what we report to the outside 
> shouldn't
> be inaccurate, imo.

I agree. There's also zero benefit.

>
>> @@ -1122,7 +1121,7 @@ static bool __maybe_unused 
>> x86_mc_msrinject_verify(struct xen_mc_msrinject *mci)
>>  
>>          if ( IS_MCA_BANKREG(reg, mci->mcinj_cpunr) )
>>          {
>> -            if ( c->x86_vendor == X86_VENDOR_AMD )
>> +            if ( (cpu_vendor() & X86_VENDOR_AMD) )
>
> Nit: No need for the extra parentheses here.

ack.

>
>> --- a/xen/arch/x86/cpu/mcheck/mce_amd.c
>> +++ b/xen/arch/x86/cpu/mcheck/mce_amd.c
>> @@ -160,7 +160,7 @@ mcequirk_lookup_amd_quirkdata(const struct cpuinfo_x86 
>> *c)
>>  {
>>      unsigned int i;
>>  
>> -    BUG_ON(c->x86_vendor != X86_VENDOR_AMD);
>> +    BUG_ON(!(cpu_vendor() & X86_VENDOR_AMD));
>>  
>>      for ( i = 0; i < ARRAY_SIZE(mce_amd_quirks); i++ )
>>      {
>> @@ -291,7 +291,7 @@ amd_mcheck_init(const struct cpuinfo_x86 *c, bool bsp)
>>      uint32_t i;
>>      enum mcequirk_amd_flags quirkflag = 0;
>>  
>> -    if ( c->x86_vendor != X86_VENDOR_HYGON )
>> +    if ( !(cpu_vendor() & X86_VENDOR_HYGON) )
>>          quirkflag = mcequirk_lookup_amd_quirkdata(c);
>
> I wonder if this wasn't better switched to the positive for (checking for 
> AMD).
> This would the render the BUG_ON() above useless.
>
>> --- a/xen/arch/x86/cpu/mcheck/mce_intel.c
>> +++ b/xen/arch/x86/cpu/mcheck/mce_intel.c
>> @@ -711,8 +711,8 @@ static bool mce_is_broadcast(struct cpuinfo_x86 *c)
>>       * DisplayFamily_DisplayModel encoding of 06H_EH and above,
>>       * a MCA signal is broadcast to all logical processors in the system
>>       */
>> -    if ( c->x86_vendor == X86_VENDOR_INTEL && c->x86 == 6 &&
>> -         c->x86_model >= 0xe )
>> +    if ( (cpu_vendor() & X86_VENDOR_INTEL) &&
>> +         c->x86 == 6 && c->x86_model >= 0xe )
>
> Nit: Why the re-wrapping of lines?

No good reason. I find it marginally easier to read. I can restore it's previous
state.

Cheers,
Alejandro



 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.