pktgen: make sure that pktgen_thread_worker has been executed

The following courruption can happen during pktgen stop:
list_del corruption. prev->next should be ffff81007e8a5e70, but was 6b6b6b6b6b6b6b6b
kernel BUG at lib/list_debug.c:67!
:pktgen:pktgen_thread_worker+0x374/0x10b0
? autoremove_wake_function+0x0/0x40
? _spin_unlock_irqrestore+0x42/0x80
? :pktgen:pktgen_thread_worker+0x0/0x10b0
kthread+0x4d/0x80
child_rip+0xa/0x12
? restore_args+0x0/0x30
? kthread+0x0/0x80
? child_rip+0x0/0x12
RIP list_del+0x48/0x70

The problem is that pktgen_thread_worker can not be executed if kthread_stop
has been called too early. Insert a completion on the normal initialization
path to make sure that pktgen_thread_worker will gain the control for sure.

Signed-off-by: Denis V. Lunev <den@openvz.org>
Acked-by: Alexey Dobriyan <adobriyan@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Denis V. Lunev and committed by David S. Miller d3ede327 5fb13570

+4
+4
net/core/pktgen.c
··· 390 int cpu; 391 392 wait_queue_head_t queue; 393 }; 394 395 #define REMOVE 1 ··· 3415 BUG_ON(smp_processor_id() != cpu); 3416 3417 init_waitqueue_head(&t->queue); 3418 3419 pr_debug("pktgen: starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current)); 3420 ··· 3617 INIT_LIST_HEAD(&t->if_list); 3618 3619 list_add_tail(&t->th_list, &pktgen_threads); 3620 3621 p = kthread_create(pktgen_thread_worker, t, "kpktgend_%d", cpu); 3622 if (IS_ERR(p)) { ··· 3642 } 3643 3644 wake_up_process(p); 3645 3646 return 0; 3647 }
··· 390 int cpu; 391 392 wait_queue_head_t queue; 393 + struct completion start_done; 394 }; 395 396 #define REMOVE 1 ··· 3414 BUG_ON(smp_processor_id() != cpu); 3415 3416 init_waitqueue_head(&t->queue); 3417 + complete(&t->start_done); 3418 3419 pr_debug("pktgen: starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current)); 3420 ··· 3615 INIT_LIST_HEAD(&t->if_list); 3616 3617 list_add_tail(&t->th_list, &pktgen_threads); 3618 + init_completion(&t->start_done); 3619 3620 p = kthread_create(pktgen_thread_worker, t, "kpktgend_%d", cpu); 3621 if (IS_ERR(p)) { ··· 3639 } 3640 3641 wake_up_process(p); 3642 + wait_for_completion(&t->start_done); 3643 3644 return 0; 3645 }