diff options
author | Huang Shijie <shijie@os.amperecomputing.com> | 2023-12-13 09:20:46 +0800 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2023-12-13 12:09:00 +0000 |
commit | 7b1a09e44dc64f4f5930659b6d14a27183c00705 (patch) | |
tree | aa7e193aa2bf97294d0d2b096d965bfde8781502 | |
parent | 75b5e0bf90bffaca4b1f19114065dc59f5cc161f (diff) | |
download | linux-7b1a09e44dc64f4f5930659b6d14a27183c00705.tar.gz linux-7b1a09e44dc64f4f5930659b6d14a27183c00705.tar.bz2 linux-7b1a09e44dc64f4f5930659b6d14a27183c00705.zip |
arm64: irq: set the correct node for shadow call stack
The init_irq_stacks() has been changed to use the correct node:
https://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git/commit/?id=75b5e0bf90bf
The init_irq_scs() has the same issue with init_irq_stacks():
cpu_to_node() is not initialized yet, it does not work.
This patch uses early_cpu_to_node() to set the init_irq_scs()
with the correct node.
Signed-off-by: Huang Shijie <shijie@os.amperecomputing.com>
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Link: https://lore.kernel.org/r/20231213012046.12014-1-shijie@os.amperecomputing.com
Signed-off-by: Will Deacon <will@kernel.org>
-rw-r--r-- | arch/arm64/kernel/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kernel/irq.c b/arch/arm64/kernel/irq.c index 9f253d8efe90..85087e2df564 100644 --- a/arch/arm64/kernel/irq.c +++ b/arch/arm64/kernel/irq.c @@ -48,7 +48,7 @@ static void init_irq_scs(void) for_each_possible_cpu(cpu) per_cpu(irq_shadow_call_stack_ptr, cpu) = - scs_alloc(cpu_to_node(cpu)); + scs_alloc(early_cpu_to_node(cpu)); } #ifdef CONFIG_VMAP_STACK |