mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Zhang, Rui" <rui.zhang@intel.com>
To: "peterz@infradead.org" <peterz@infradead.org>
Cc: "Brown, Len" <len.brown@intel.com>,
	"zhang.jia@linux.alibaba.com" <zhang.jia@linux.alibaba.com>,
	"bp@alien8.de" <bp@alien8.de>,
	"dave.hansen@linux.intel.com" <dave.hansen@linux.intel.com>,
	"hpa@zytor.com" <hpa@zytor.com>,
	"mingo@redhat.com" <mingo@redhat.com>,
	"tglx@linutronix.de" <tglx@linutronix.de>,
	"x86@kernel.org" <x86@kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH V2 1/1] x86/topology: fix erroneous smp_num_siblings on Intel Hybrid platform
Date: Mon, 13 Mar 2023 02:05:25 +0000	[thread overview]
Message-ID: <a9f40d7aac8c03ce19f6e9004efa2817a66770b7.camel@intel.com> (raw)
In-Reply-To: <23112ed6f8dd1d8973b896fbd714c1499a92ffe1.camel@intel.com>

On Tue, 2023-02-21 at 16:34 +0800, Zhang Rui wrote:
> Hi, Peter,
> 
> > > ---
> > >  arch/x86/kernel/cpu/topology.c | 5 +++--
> > >  1 file changed, 3 insertions(+), 2 deletions(-)
> > > 
> > > diff --git a/arch/x86/kernel/cpu/topology.c
> > > b/arch/x86/kernel/cpu/topology.c
> > > index 5e868b62a7c4..0270925fe013 100644
> > > --- a/arch/x86/kernel/cpu/topology.c
> > > +++ b/arch/x86/kernel/cpu/topology.c
> > > @@ -79,7 +79,7 @@ int detect_extended_topology_early(struct
> > > cpuinfo_x86 *c)
> > >  	 * initial apic id, which also represents 32-bit extended
> > > x2apic id.
> > >  	 */
> > >  	c->initial_apicid = edx;
> > > -	smp_num_siblings = LEVEL_MAX_SIBLINGS(ebx);
> > > +	smp_num_siblings = max_t(int, smp_num_siblings,
> > > LEVEL_MAX_SIBLINGS(ebx));
> > >  #endif
> > >  	return 0;
> > >  }
> > > @@ -109,7 +109,8 @@ int detect_extended_topology(struct
> > > cpuinfo_x86
> > > *c)
> > >  	 */
> > >  	cpuid_count(leaf, SMT_LEVEL, &eax, &ebx, &ecx, &edx);
> > >  	c->initial_apicid = edx;
> > > -	core_level_siblings = smp_num_siblings =
> > > LEVEL_MAX_SIBLINGS(ebx);
> > > +	core_level_siblings = LEVEL_MAX_SIBLINGS(ebx);
> > > +	smp_num_siblings = max_t(int, smp_num_siblings,
> > > LEVEL_MAX_SIBLINGS(ebx));
> > >  	core_plus_mask_width = ht_mask_width =
> > > BITS_SHIFT_NEXT_LEVEL(eax);
> > >  	die_level_siblings = LEVEL_MAX_SIBLINGS(ebx);
> > >  	pkg_mask_width = die_plus_mask_width =
> > > BITS_SHIFT_NEXT_LEVEL(eax);
> > 
> > Seems ok, but perhaps you can stick an 'int' cast in
> > LEVEL_MAX_SIGLINGS instead and write a simpler max() -- and/or
> > convert
> > smt_num_siblings to unsigned int.
> > 
> yeah, it is doable. I'd prefer to use the current version to keep
> this
> fix simpler if you don't mind.
> 
> > Regardless,
> > 
> > Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
> 
> Thanks for your ACK.

Hi, all,

Despite the discussions about future improvements in the cover letter
of this patch series, is there any further changes needed for this one?

thanks,
rui

  reply	other threads:[~2023-03-13  2:05 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-20  3:28 [RFC PATCH V2 0/1] x86: cpu topology fix and question on x86_max_cores Zhang Rui
2023-02-20  3:28 ` [PATCH V2 1/1] x86/topology: fix erroneous smp_num_siblings on Intel Hybrid platform Zhang Rui
2023-02-20 11:22   ` Peter Zijlstra
2023-02-21  8:34     ` Zhang, Rui
2023-03-13  2:05       ` Zhang, Rui [this message]
2023-02-20 10:36 ` [RFC PATCH V2 0/1] x86: cpu topology fix and question on x86_max_cores Peter Zijlstra
2023-02-20 14:40   ` Zhang, Rui
2023-02-20 11:08 ` Peter Zijlstra
2023-02-20 14:33   ` Zhang, Rui
2023-02-20 19:06     ` Peter Zijlstra
2023-02-20 22:52       ` Thomas Gleixner
2023-02-21  8:01       ` Zhang, Rui
2023-02-20 22:49     ` Thomas Gleixner
2023-02-21  8:26       ` Zhang, Rui
2023-03-07 16:10         ` Zhang, Rui
2023-03-08  2:46           ` Brown, Len
2023-02-21  9:00       ` Peter Zijlstra
2023-02-21 10:09         ` Borislav Petkov

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=a9f40d7aac8c03ce19f6e9004efa2817a66770b7.camel@intel.com \
    --to=rui.zhang@intel.com \
    --cc=bp@alien8.de \
    --cc=dave.hansen@linux.intel.com \
    --cc=hpa@zytor.com \
    --cc=len.brown@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=peterz@infradead.org \
    --cc=tglx@linutronix.de \
    --cc=x86@kernel.org \
    --cc=zhang.jia@linux.alibaba.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®