lkml.org 
[lkml]   [2022]   [Oct]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [PATCH v1 1/2] x86/tsc: use logical_package as a better estimation of socket numbers
From
On 10/24/22 00:37, Feng Tang wrote:
>> For instance, I can live with the implementation being a bit goofy when
>> kernel commandlines are in play. We can pr_info() about those cases.
> Something like adding
>
> pr_info("Watchdog for TSC is disabled for this platform while estimating
> the socket number is %d, if the real socket number is bigger than
> 4 (may due to some tricks like 'maxcpus=' cmdline parameter, please
> add 'tsc=watchdog' to cmdline as well\n", logical_packages);

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.

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.

But, like I said in the other thread, let's make sure we're agreed on
the precise problem that we're solving before we go down this road.

> and adding a new 'tsc=watchdog' option to force watchdog on (might be
> over-complexed?)

Agreed, I don't think that's quite warranted yet.

\
 
 \ /
  Last update: 2022-10-24 20:15    [W:0.087 / U:0.232 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site