All of lore.kernel.org
 help / color / mirror / Atom feed
* Lots of bugs with current->state = TASK_*INTERRUPTIBLE
@ 2010-01-19 20:29 ` Steven Rostedt
  0 siblings, 0 replies; 29+ messages in thread
From: Steven Rostedt @ 2010-01-19 20:29 UTC (permalink / raw)
  To: LKML
  Cc: kernel-janitors, Peter Zijlstra, Andrew Morton, linux-arch,
	Greg KH, Andy Whitcroft

Peter Zijlstra and I were doing a look over of places that assign
current->state = TASK_*INTERRUPTIBLE, by simply looking at places with:

 $ git grep -A1 'state[[:space:]]*=[[:space:]]*TASK_[^R]'

and it seems there are quite a few places that looks like bugs. To be on
the safe side, everything outside of a run queue lock that sets the
current state to something other than TASK_RUNNING (or dead) should be
using set_current_state().

	current->state = TASK_INTERRUPTIBLE;
	schedule();

is probably OK, but it would not hurt to be consistent. Here's a few
examples of likely bugs:

From drivers/staging/line6/midi.c:

        current->state = TASK_INTERRUPTIBLE;

        while (line6->line6midi->num_active_send_urbs > 0)

From drivers/staging/line6/pod.c:

        current->state = TASK_INTERRUPTIBLE;

        while (param->value = POD_system_invalid) {


Also drivers/macintosh/adb.c looks like there's a bug too.

I'm sure there's others but I stopped looking.

Anyway, this looks like a good janitorial work. Anything that assigns
state outside the rq locks to something other than TASK_RUNNING and that
is not before a schedule() (perhaps even those) should be converted to:

	set_current_task(<state>).

This probably should be checked in checkpatch.pl too, if it is not
already.

-- Steve



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

end of thread, other threads:[~2010-01-21 20:21 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-19 20:29 Lots of bugs with current->state = TASK_*INTERRUPTIBLE Steven Rostedt
2010-01-19 20:29 ` Steven Rostedt
2010-01-19 20:29 ` Steven Rostedt
2010-01-19 20:58 ` Julia Lawall
2010-01-19 20:58   ` Julia Lawall
2010-01-19 21:08   ` Steven Rostedt
2010-01-19 21:08     ` Steven Rostedt
2010-01-21 10:47     ` Julia Lawall
2010-01-21 10:47       ` Julia Lawall
2010-01-21 10:53       ` Frederic Weisbecker
2010-01-21 10:53         ` Frederic Weisbecker
2010-01-21 10:56         ` Peter Zijlstra
2010-01-21 10:56           ` Peter Zijlstra
2010-01-21 10:59           ` Frederic Weisbecker
2010-01-21 10:59             ` Frederic Weisbecker
2010-01-21 17:31       ` Steven Rostedt
2010-01-21 17:31         ` Steven Rostedt
2010-01-21 18:12         ` Julia Lawall
2010-01-21 18:12           ` Julia Lawall
2010-01-21 19:18 ` David Daney
2010-01-21 19:18   ` David Daney
2010-01-21 19:34   ` Steven Rostedt
2010-01-21 19:34     ` Steven Rostedt
2010-01-21 19:57     ` David Daney
2010-01-21 19:57       ` David Daney
2010-01-21 20:18       ` Steven Rostedt
2010-01-21 20:18         ` Steven Rostedt
2010-01-21 20:21         ` David Daney
2010-01-21 20:21           ` David Daney

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.