linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next v2 1/2] cacheinfo: Use atomic allocation for percpu cache attributes
@ 2022-07-15 10:26 Sudeep Holla
  2022-07-15 10:26 ` [PATCH -next v2 2/2] arch_topology: Fix cache attributes detection in the CPU hotplug path Sudeep Holla
  2022-07-15 10:33 ` [PATCH -next v2 1/2] cacheinfo: Use atomic allocation for percpu cache attributes Conor.Dooley
  0 siblings, 2 replies; 4+ messages in thread
From: Sudeep Holla @ 2022-07-15 10:26 UTC (permalink / raw)
  To: linux-kernel, Greg Kroah-Hartman, Conor Dooley
  Cc: Sudeep Holla, Vincent Guittot, Dietmar Eggemann, Ionela Voinescu,
	Pierre Gondois, linux-arm-kernel, linux-riscv

On couple of architectures like RISC-V and ARM64, we need to detect
cache attribues quite early during the boot when the secondary CPUs
start. So we will call detect_cache_attributes in the atomic context
and since use of normal allocation can sleep, we will end up getting
"sleeping in the atomic context" bug splat.

In order avoid that, move the allocation to use atomic version in
preparation to move the actual detection of cache attributes in the
CPU hotplug path which is atomic.

Cc: Ionela Voinescu <ionela.voinescu@arm.com>
Tested-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
---
 drivers/base/cacheinfo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Hi Greg,

Can you apply these couple of patches directly if and when you are happy
with them ?

Regards,
Sudeep

v1->v2: This was added in v2

diff --git a/drivers/base/cacheinfo.c b/drivers/base/cacheinfo.c
index 65d566ff24c4..4b5cd08c5a65 100644
--- a/drivers/base/cacheinfo.c
+++ b/drivers/base/cacheinfo.c
@@ -356,7 +356,7 @@ int detect_cache_attributes(unsigned int cpu)
 		return -ENOENT;

 	per_cpu_cacheinfo(cpu) = kcalloc(cache_leaves(cpu),
-					 sizeof(struct cacheinfo), GFP_KERNEL);
+					 sizeof(struct cacheinfo), GFP_ATOMIC);
 	if (per_cpu_cacheinfo(cpu) == NULL) {
 		cache_leaves(cpu) = 0;
 		return -ENOMEM;
--
2.37.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-07-19 15:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-15 10:26 [PATCH -next v2 1/2] cacheinfo: Use atomic allocation for percpu cache attributes Sudeep Holla
2022-07-15 10:26 ` [PATCH -next v2 2/2] arch_topology: Fix cache attributes detection in the CPU hotplug path Sudeep Holla
2022-07-19 15:24   ` Geert Uytterhoeven
2022-07-15 10:33 ` [PATCH -next v2 1/2] cacheinfo: Use atomic allocation for percpu cache attributes Conor.Dooley

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).