Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d69e9e18 authored by Oleg Nesterov's avatar Oleg Nesterov Committed by Sasha Levin
Browse files

net: pktgen: fix race between pktgen_thread_worker() and kthread_stop()



[ Upstream commit fecdf8be2d91e04b0a9a4f79ff06499a36f5d14f ]

pktgen_thread_worker() is obviously racy, kthread_stop() can come
between the kthread_should_stop() check and set_current_state().

Signed-off-by: default avatarOleg Nesterov <oleg@redhat.com>
Reported-by: default avatarJan Stancek <jstancek@redhat.com>
Reported-by: default avatarMarcelo Leitner <mleitner@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarSasha Levin <sasha.levin@oracle.com>
parent 4192b620
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -3490,8 +3490,10 @@ static int pktgen_thread_worker(void *arg)
	pktgen_rem_thread(t);

	/* Wait for kthread_stop */
	while (!kthread_should_stop()) {
	for (;;) {
		set_current_state(TASK_INTERRUPTIBLE);
		if (kthread_should_stop())
			break;
		schedule();
	}
	__set_current_state(TASK_RUNNING);