From: Michael Ellerman <mpe@ellerman.id.au>
To: "Shreyas B. Prabhu" <shreyas@linux.vnet.ibm.com>,
linux-kernel@vger.kernel.org
Cc: "Shreyas B. Prabhu" <shreyas@linux.vnet.ibm.com>,
linuxppc-dev@lists.ozlabs.org
Subject: Re: [v3, 1/3] powerpc: Fix cpu_online_cores_map to return only online threads mask
Date: Mon, 30 Mar 2015 20:36:17 +1100 (AEDT) [thread overview]
Message-ID: <20150330093617.CDFA8140140@ozlabs.org> (raw)
In-Reply-To: <1426999379-20542-1-git-send-email-shreyas@linux.vnet.ibm.com>
On Sun, 2015-22-03 at 04:42:57 UTC, "Shreyas B. Prabhu" wrote:
> Currently, cpu_online_cores_map returns a mask, which for every core
> that has atleast one online thread, has the first-cpu-of-that-core's bit
> set.
... which for every core with at least one online thread, has the bit for
thread 0 of the core set to 1, and the bits for all other threads of the core
set to 0.
Maybe that's clearer?
> But the first cpu itself may not be online always. In such cases, if
^
of the core
> the returned mask is used for IPI, then it'll cause IPIs to be skipped
> on cores where the first thread is offline.
.. because the IPI code refuses to send IPIs to offline threads, right?
> Fix this by setting first-online-cpu-of-the-core's bit in the mask.
.. by setting the bit of the first online thread in the core.
> This is done by fixing this in the underlying function
> cpu_thread_mask_to_cores.
The result has the property that for all cores with online threads, there is
one bit set in the returned map. And further, all bits that are set in the
returned map correspond to online threads.
> Signed-off-by: Shreyas B. Prabhu <shreyas@linux.vnet.ibm.com>
> ---
> This patch is new in v3
>
> In an example scenario where all the threads of 1st core are offline
> and argument to cpu_thread_mask_to_cores is cpu_possible_mask,
> with this implementation, return value will not have any bit
> corresponding to 1st core set. I think that should be okay. Any thoughts?
Looking at linux-next:
$ git grep cpu_thread_mask_to_cores
arch/powerpc/include/asm/cputhreads.h:/* cpu_thread_mask_to_cores - Return a cpumask of one per cores
arch/powerpc/include/asm/cputhreads.h:static inline cpumask_t cpu_thread_mask_to_cores(const struct cpumask *threads)
arch/powerpc/include/asm/cputhreads.h: return cpu_thread_mask_to_cores(cpu_online_mask);
$ git grep cpu_online_cores_map
arch/powerpc/include/asm/cputhreads.h:static inline cpumask_t cpu_online_cores_map(void)
ie. There are no users.
So yeah I think we can change the semantics of this, and the semantics you
describe make sense.
If you agree with my changelog comments I'm happy to fix that up and merge
this, or you can send a v4 if you like.
cheers
next prev parent reply other threads:[~2015-03-30 9:36 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-22 4:42 [PATCH v3 1/3] powerpc: Fix cpu_online_cores_map to return only online threads mask Shreyas B. Prabhu
2015-03-22 4:42 ` [PATCH v3 2/3] powerpc/powernv: Move cpuidle related code from setup.c to new file Shreyas B. Prabhu
2015-03-30 9:40 ` [v3, " Michael Ellerman
2015-03-22 4:42 ` [PATCH v3 3/3] powerpc/powernv: Introduce sysfs control for fastsleep workaround behavior Shreyas B. Prabhu
2015-03-30 10:21 ` [v3, " Michael Ellerman
2015-03-30 17:15 ` Shreyas B Prabhu
2015-03-31 4:24 ` Michael Ellerman
2015-03-30 9:36 ` Michael Ellerman [this message]
2015-03-30 17:00 ` [v3, 1/3] powerpc: Fix cpu_online_cores_map to return only online threads mask Shreyas B Prabhu
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=20150330093617.CDFA8140140@ozlabs.org \
--to=mpe@ellerman.id.au \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=shreyas@linux.vnet.ibm.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).