]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blobdiff - kernel/softirq.c
percpu: make percpu symbols under kernel/ and mm/ unique
[mirror_ubuntu-jammy-kernel.git] / kernel / softirq.c
index f8749e5216e00c0b1a719a4aa945be8454ca67c0..0740dfd55c51f8b6ffde0ae0c870eb9b51b36373 100644 (file)
@@ -697,7 +697,7 @@ void __init softirq_init(void)
        open_softirq(HI_SOFTIRQ, tasklet_hi_action);
 }
 
-static int ksoftirqd(void * __bind_cpu)
+static int run_ksoftirqd(void * __bind_cpu)
 {
        set_current_state(TASK_INTERRUPTIBLE);
 
@@ -810,7 +810,7 @@ static int __cpuinit cpu_callback(struct notifier_block *nfb,
        switch (action) {
        case CPU_UP_PREPARE:
        case CPU_UP_PREPARE_FROZEN:
-               p = kthread_create(ksoftirqd, hcpu, "ksoftirqd/%d", hotcpu);
+               p = kthread_create(run_ksoftirqd, hcpu, "ksoftirqd/%d", hotcpu);
                if (IS_ERR(p)) {
                        printk("ksoftirqd for %i failed\n", hotcpu);
                        return NOTIFY_BAD;