[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <878rcr7ylj.ffs@tglx>
Date: Sun, 11 Jun 2023 00:15:52 +0200
From: Thomas Gleixner <tglx@...utronix.de>
To: Michael Ellerman <mpe@...erman.id.au>, linux-kernel@...r.kernel.org
Cc: linuxppc-dev@...ts.ozlabs.org, linux-arch@...r.kernel.org,
ldufour@...ux.ibm.com, bp@...en8.de, dave.hansen@...ux.intel.com,
mingo@...hat.com, x86@...nel.org
Subject: Re: [PATCH 4/9] cpu/SMT: Create topology_smt_threads_supported()
On Thu, May 25 2023 at 01:56, Michael Ellerman wrote:
> +/**
> + * topology_smt_threads_supported - Check if the given number of SMT threads
> + * is supported.
> + *
> + * @threads: The number of SMT threads.
> + */
> +bool topology_smt_threads_supported(unsigned int threads)
> +{
> + // Only support a single thread or all threads.
> + return threads == 1 || threads == smp_num_siblings;
> +}
You can make that a simple core function when cpu_smt_*_threads is
consistent along the lines of my previous reply.
static bool cpu_smt_num_threads_valid(unsigned int threads)
{
if (IS_ENABLED(CONFIG_SMT_NUM_THREADS_DYNAMIC))
return threads >= 1 && threads <= cpu_smt_max_threads;
return threads == 1 || threads == cpu_smt_max_threads;
}
Or something like that.
Thanks,
tglx
Powered by blists - more mailing lists