Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net

Pull one more networking bug-fix from David Miller:
"One last straggler.

Eric Dumazet's pktgen unload oops fix was not entirely complete, but
all the cases should be handled properly now.... fingers crossed."

* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net:
pktgen: fix module unload for good

+2 -2
+2 -2
net/core/pktgen.c
··· 3755 3755 { 3756 3756 struct pktgen_thread *t; 3757 3757 struct list_head *q, *n; 3758 - struct list_head list; 3758 + LIST_HEAD(list); 3759 3759 3760 3760 /* Stop all interfaces & threads */ 3761 3761 pktgen_exiting = true; 3762 3762 3763 3763 mutex_lock(&pktgen_thread_lock); 3764 - list_splice(&list, &pktgen_threads); 3764 + list_splice_init(&pktgen_threads, &list); 3765 3765 mutex_unlock(&pktgen_thread_lock); 3766 3766 3767 3767 list_for_each_safe(q, n, &list) {