提交 11969d69 编写于 作者: S Sudeep Holla 提交者: Greg Kroah-Hartman

cacheinfo: Use atomic allocation for percpu cache attributes

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: NConor Dooley <conor.dooley@microchip.com>
Signed-off-by: NSudeep Holla <sudeep.holla@arm.com>
Link: https://lore.kernel.org/r/20220720-arch_topo_fixes-v3-1-43d696288e84@arm.comSigned-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 7ee951ac
...@@ -356,7 +356,7 @@ int detect_cache_attributes(unsigned int cpu) ...@@ -356,7 +356,7 @@ int detect_cache_attributes(unsigned int cpu)
return -ENOENT; return -ENOENT;
per_cpu_cacheinfo(cpu) = kcalloc(cache_leaves(cpu), per_cpu_cacheinfo(cpu) = kcalloc(cache_leaves(cpu),
sizeof(struct cacheinfo), GFP_KERNEL); sizeof(struct cacheinfo), GFP_ATOMIC);
if (per_cpu_cacheinfo(cpu) == NULL) { if (per_cpu_cacheinfo(cpu) == NULL) {
cache_leaves(cpu) = 0; cache_leaves(cpu) = 0;
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册