Loading kernel/timer.c +2 −3 Original line number Diff line number Diff line Loading @@ -1518,8 +1518,7 @@ static int init_timers_cpu(int cpu) /* * The APs use this path later in boot */ base = kmalloc_node(sizeof(*base), GFP_KERNEL | __GFP_ZERO, base = kzalloc_node(sizeof(*base), GFP_KERNEL, cpu_to_node(cpu)); if (!base) return -ENOMEM; Loading Loading
kernel/timer.c +2 −3 Original line number Diff line number Diff line Loading @@ -1518,8 +1518,7 @@ static int init_timers_cpu(int cpu) /* * The APs use this path later in boot */ base = kmalloc_node(sizeof(*base), GFP_KERNEL | __GFP_ZERO, base = kzalloc_node(sizeof(*base), GFP_KERNEL, cpu_to_node(cpu)); if (!base) return -ENOMEM; Loading