Skip to content

Commit

Permalink
kcov: Allocate per-CPU memory on the relevant node.
Browse files Browse the repository at this point in the history
During boot kcov allocates per-CPU memory which is used later if remote/
softirq processing is enabled.

Allocate the per-CPU memory on the CPU local node to avoid cross node
memory access.

Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Link: https://lore.kernel.org/r/20210830172627.267989-4-bigeasy@linutronix.de
  • Loading branch information
Sebastian Andrzej Siewior committed Sep 13, 2021
1 parent 8c97d6d commit f69f4f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernel/kcov.c
Original file line number Diff line number Diff line change
Expand Up @@ -1034,8 +1034,8 @@ static int __init kcov_init(void)
int cpu;

for_each_possible_cpu(cpu) {
void *area = vmalloc(CONFIG_KCOV_IRQ_AREA_SIZE *
sizeof(unsigned long));
void *area = vmalloc_node(CONFIG_KCOV_IRQ_AREA_SIZE *
sizeof(unsigned long), cpu_to_node(cpu));
if (!area)
return -ENOMEM;
per_cpu_ptr(&kcov_percpu_data, cpu)->irq_area = area;
Expand Down

0 comments on commit f69f4f1

Please sign in to comment.