[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <Y2S9eTeOch+TYmks@feng-clx>
Date: Fri, 4 Nov 2022 15:21:29 +0800
From: Feng Tang <feng.tang@...el.com>
To: Dave Hansen <dave.hansen@...el.com>,
Zhang Rui <rui.zhang@...el.com>,
Thomas Gleixner <tglx@...utronix.de>,
Ingo Molnar <mingo@...hat.com>, Borislav Petkov <bp@...en8.de>,
"H . Peter Anvin" <hpa@...or.com>,
"Peter Zijlstra" <peterz@...radead.org>, <x86@...nel.org>
CC: <linux-kernel@...r.kernel.org>, <tim.c.chen@...el.com>,
Xiongfeng Wang <wangxiongfeng2@...wei.com>,
<liaoyu15@...wei.com>, <oliver.sang@...el.com>,
<ying.huang@...el.com>
Subject: Re: [PATCH v1 1/2] x86/tsc: use logical_package as a better
estimation of socket numbers
On Tue, Oct 25, 2022 at 03:57:12PM +0800, Feng Tang wrote:
> On Mon, Oct 24, 2022 at 08:43:33AM -0700, Dave Hansen wrote:
> > That's too wishy-washy. Also, I *KNOW* Intel has built systems with
> > wonky, opaque numbers of "sockets". Cascade Lake was a single physical
> > "socket", but in all other respects (including enumeration to software)
> > it acted like two logical sockets.
> >
> > So, what was the "real" socket number for Cascade Lake? If you looked
> > in a chassis, you'd see one socket. But, there were two dies in that
> > socket talking to each other over UPI, so it had a system topology which
> > was indistinguishable from a 2-socket system.
>
> Good to know and thanks for the info.
>
> I have to admit I haven't checked a server's internals before, and
> thanks to Oliver for helping checking some Cascade Lake boxes of 0Day.
>
> In one box where 'lscpu' shows 4 sockets (96 cores in total), it does
> only have 2 physical processors in the chassis, just like you
> mentioned, it has 2 dies for each processor. And in another box,
> 'lscpu' shows 2 sockets (44 cores in total), it also has 2 physical
> processors but with much smaller size.
>
> And fortunately the 'logical_packages' for these 2 boxes are both
> the correct value: 2.
>
> > Let's just state the facts:
> >
> > pr_info("Disabling TSC watchdog on %d-package system.", ...)
> >
> > Then, we can have a flag elsewhere to say how reliable that number is.
> > A taint flag or CPU bug is probably going to far, but something like this:
> >
> > bool logical_package_count_unreliable = false;
> >
> > void mark_bad_package_count(char *reason)
> > {
> > if (logical_package_count_unreliable)
> > return true;
> >
> > pr_warn("processor package count is unreliable");
> > }
> >
> > Might be OK. Then you can call mark_bad_package_count() from multiple
> > sites, like the maxcpus= code.
>
> This should work! we can just add one more check:
>
> boot_cpu_has(X86_FEATURE_TSC_ADJUST) &&
> !logical_package_count_unreliable &&
> logical_packages <= 2
>
> And when some new case leading to a imprecise 'logical_packages' is
> found in future, we could just apply to this to it.
Hi Thomas, Peter and reviewers,
For estimating socket numbers, there are quite some BIOS/kernel
settings that can affect its accuracy, like:
* numa emulation (numa=fake=4 etc.)
* numa=off
* platforms with CPU+DRAM nodes, CPU-less HBM nodes, CPU-less
persistent memory nodes.
* SNC (sub-numa cluster) mode is enabled
* 'maxcpus=' cmdline limiting onlined CPU numbers
Ideally, BIOS could provide that info in some MSR or through
CPUID, as it knows most of the information before transfering
to OS, but that's just my wishful thinking for now.
And we checked several ways for estimating socket number:
* nr_online_nodes
* SRAT table init(parsing node with CPUs)
* 'logical_packages'
And 'logical_packages' is a better option after comparison,
as it works for mostof the cases above except 'maxcpus='
one, where the 'logical_package' could be smaller than the
real number. Dave suggested to explicitly skip the check
and warn.
We plan to use 'logical_packages' to replace current
'nr_online_nodes' for estimation of socket number, any thoughts
on this, or some suggestions? thanks!
- Feng
Powered by blists - more mailing lists