All of lore.kernel.org
 help / color / mirror / Atom feed
* net/sched: latent livelock in dev_deactivate_many() due to yield() usage
@ 2017-04-02  4:28 Mike Galbraith
  2017-04-04 22:39 ` Cong Wang
  2017-04-06  0:31 ` Stephen Hemminger
  0 siblings, 2 replies; 12+ messages in thread
From: Mike Galbraith @ 2017-04-02  4:28 UTC (permalink / raw)
  To: netdev; +Cc: LKML, Peter Zijlstra

Greetings network wizards,

Quoting kernel/sched/core.c:
/**
 * yield - yield the current processor to other threads.
 *
 * Do not ever use this function, there's a 99% chance you're doing it wrong.
 *
 * The scheduler is at all times free to pick the calling task as the most
 * eligible task to run, if removing the yield() call from your code breaks
 * it, its already broken.
 *
 * Typical broken usage is:
 *
 * while (!event)
 *	yield();
 *
 * where one assumes that yield() will let 'the other' process run that will
 * make event true. If the current task is a SCHED_FIFO task that will never
 * happen. Never use yield() as a progress guarantee!!
 *
 * If you want to use yield() to wait for something, use wait_event().
 * If you want to use yield() to be 'nice' for others, use cond_resched().
 * If you still want to use yield(), do not!
 */

Livelock can be triggered by setting kworkers to SCHED_FIFO, then
suspend/resume.. you come back from sleepy-land with a spinning
kworker.  For whatever reason, I can only do that with an enterprise
like config, my standard config refuses to play, but no matter, it's
"Typical broken usage".

(yield() should be rendered dead)

	-Mike

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2017-04-06 11:08 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-02  4:28 net/sched: latent livelock in dev_deactivate_many() due to yield() usage Mike Galbraith
2017-04-04 22:39 ` Cong Wang
2017-04-05  3:20   ` Mike Galbraith
2017-04-05  5:25     ` Cong Wang
2017-04-05  6:12       ` Mike Galbraith
2017-04-05 23:55         ` Cong Wang
2017-04-06  1:08           ` Mike Galbraith
2017-04-06 10:26       ` Peter Zijlstra
2017-04-06  0:31 ` Stephen Hemminger
2017-04-06  1:28   ` Mike Galbraith
2017-04-06 10:28   ` Peter Zijlstra
2017-04-06 11:08     ` Peter Zijlstra

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.