From: Yicong Yang <yangyicong@huawei.com>
To: Dietmar Eggemann <dietmar.eggemann@arm.com>,
Pierre Gondois <pierre.gondois@arm.com>
Cc: <yangyicong@hisilicon.com>, <linuxppc-dev@lists.ozlabs.org>,
<x86@kernel.org>, <bp@alien8.de>, <mingo@redhat.com>,
<linux-arm-kernel@lists.infradead.org>, <mpe@ellerman.id.au>,
<peterz@infradead.org>, <tglx@linutronix.de>,
<sudeep.holla@arm.com>, <catalin.marinas@arm.com>,
<will@kernel.org>, <linux-kernel@vger.kernel.org>,
<morten.rasmussen@arm.com>, <msuchanek@suse.de>,
<gregkh@linuxfoundation.org>, <rafael@kernel.org>,
<jonathan.cameron@huawei.com>, <prime.zeng@hisilicon.com>,
<linuxarm@huawei.com>, <xuwei5@huawei.com>,
<guohanjun@huawei.com>, <dave.hansen@linux.intel.com>
Subject: Re: [PATCH v9 1/4] cpu/SMT: Provide a default topology_is_primary_thread()
Date: Tue, 19 Nov 2024 20:27:34 +0800 [thread overview]
Message-ID: <6d732b89-d3d4-7bd6-d60e-e8bea05d05cf@huawei.com> (raw)
In-Reply-To: <ab5d70ad-d4a4-4116-82c6-908b9e641ee6@arm.com>
On 2024/11/18 23:04, Dietmar Eggemann wrote:
> On 18/11/2024 11:50, Yicong Yang wrote:
>> On 2024/11/15 17:42, Pierre Gondois wrote:
>>> Hello Yicong,
>>>
>>>
>>> On 11/14/24 15:11, Yicong Yang wrote:
>>>> From: Yicong Yang <yangyicong@hisilicon.com>
>
> [...]
>
>>>> diff --git a/include/linux/topology.h b/include/linux/topology.h
>>>> index 52f5850730b3..b8e860276518 100644
>>>> --- a/include/linux/topology.h
>>>> +++ b/include/linux/topology.h
>>>> @@ -240,6 +240,26 @@ static inline const struct cpumask *cpu_smt_mask(int cpu)
>>>> }
>>>> #endif
>>>> +#ifndef topology_is_primary_thread
>>>> +
>>>> +#define topology_is_primary_thread topology_is_primary_thread
>>>> +
>>>> +static inline bool topology_is_primary_thread(unsigned int cpu)
>>>> +{
>>>> + /*
>>>> + * On SMT hotplug the primary thread of the SMT won't be disabled.
>>>> + * Architectures do have a special primary thread (e.g. x86) need
>>>> + * to override this function. Otherwise just make the first thread
>>>> + * in the SMT as the primary thread.
>>>> + *
>>>> + * The sibling cpumask of an offline CPU contains always the CPU
>>>> + * itself.
>>>
>>> As Thomas suggested, would it be possible to check it for other
>>> architectures ?
>>> For instance for loongarch at arch/loongarch/kernel/smp.c,
>>> clear_cpu_sibling_map() seems to completely clear &cpu_sibling_map[cpu]
>>> when a CPU is put offline. This would make topology_sibling_cpumask(cpu)
>>> to be empty and cpu_bootable() return false if the CPU never booted before.
>>>
>>
>> cpu_bootable() only affects architectures select HOTPLUG_SMT, otherwise it'll always
>> return true. Since x86 and powerpc have their own illustration of primary thread and
>> have an override version of this funciton, arm64 is the only user now by this patchset.
>> We have this guarantee for arm64 and also for other architectures using arch_topology.c
>> (see clear_cpu_topology()). So if loogarch has a different implementation, they
>> should implement a topology_is_primary_thread() variant to support HOTPLUG_SMT.
>
> I also stumbled over this sentence.
>
> drivers/base/arch_topology.c:
>
> void clear_cpu_topology(int cpu) (2)
>
> ...
> cpumask_set_cpu(cpu, &cpu_topo->thread_sibling) (4)
>
> void __init reset_cpu_topology(void) (1)
>
> for_each_possible_cpu(cpu)
>
> ...
> clear_cpu_topology(cpu) (2)
>
> #if defined(CONFIG_ARM64) || defined(CONFIG_RISCV) (3)
> void __init init_cpu_topology(void)
>
> reset_cpu_topology() (1)
> ...
>
> Does this mean the default implementation relies on (4), i.e. is only
> valid for arm64 and riscv? (3)
> Do all the other archs then have to overwrite the default implementation
> (like x86 and powerpc) if they want to implement CONFIG_HOTPLUG_SMT?
>
I think yes if they have problems with the default implementation. That's
what used to be to support HOTPLUG_SMT before this, each arthitecture
provides their own variant of topology_is_primary_thread.
The current approach may also work since cpu_bootable() will make all the
CPUs boot at least once:
static inline bool cpu_bootable(unsigned int cpu) {
[...]
if (topology_is_primary_thread(cpu))
return true;
return !cpumask_test_cpu(cpu, &cpus_booted_once_mask); // True if not booted
}
The boot process will be like below. cpu_bootable() is checked twice:
-> cpu_up()
cpu_bootable() (1)
[...]
cpuhp_bringup_ap()
[ archs usually update the sibling_mask in start_secondary() here ]
bringup_wait_for_ap_online()
if (!cpu_bootable(cpu)) (2)
return -ECANCELED // roll back and offline this CPU
So an empty mask in (1) won't block the CPU going online. And the default
topology_is_primary_thread() should work if sibling mask updated before
the checking in (2). I hacked x86 to use the default topology_is_primary_thread
and tested on a qemu vm and it seems also work (just for test since the
primary thread should not always be the 1st thread in the core on x86,
not quite sure).
Thanks.
next prev parent reply other threads:[~2024-11-19 12:27 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-14 14:11 [PATCH v9 0/4] Support SMT control on arm64 Yicong Yang
2024-11-14 14:11 ` [PATCH v9 1/4] cpu/SMT: Provide a default topology_is_primary_thread() Yicong Yang
2024-11-15 9:42 ` Pierre Gondois
2024-11-18 10:50 ` Yicong Yang
2024-11-18 15:04 ` Dietmar Eggemann
2024-11-19 12:27 ` Yicong Yang [this message]
2024-11-14 14:11 ` [PATCH v9 2/4] arch_topology: Support SMT control for OF based system Yicong Yang
2024-11-14 14:11 ` [PATCH v9 3/4] arm64: topology: Support SMT control on ACPI " Yicong Yang
2024-11-14 14:11 ` [PATCH v9 4/4] arm64: Kconfig: Enable HOTPLUG_SMT Yicong Yang
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=6d732b89-d3d4-7bd6-d60e-e8bea05d05cf@huawei.com \
--to=yangyicong@huawei.com \
--cc=bp@alien8.de \
--cc=catalin.marinas@arm.com \
--cc=dave.hansen@linux.intel.com \
--cc=dietmar.eggemann@arm.com \
--cc=gregkh@linuxfoundation.org \
--cc=guohanjun@huawei.com \
--cc=jonathan.cameron@huawei.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxarm@huawei.com \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=mingo@redhat.com \
--cc=morten.rasmussen@arm.com \
--cc=mpe@ellerman.id.au \
--cc=msuchanek@suse.de \
--cc=peterz@infradead.org \
--cc=pierre.gondois@arm.com \
--cc=prime.zeng@hisilicon.com \
--cc=rafael@kernel.org \
--cc=sudeep.holla@arm.com \
--cc=tglx@linutronix.de \
--cc=will@kernel.org \
--cc=x86@kernel.org \
--cc=xuwei5@huawei.com \
--cc=yangyicong@hisilicon.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;
as well as URLs for NNTP newsgroup(s).