From: Peter Zijlstra Date: Wed, 24 Sep 2014 08:18:50 +0000 (+0200) Subject: sched, inotify: Deal with nested sleeps X-Git-Tag: omap-for-v3.19/fixes-rc1~165^2~35 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e23738a7300a7591a57a22f47b813fd1b53ec404;p=pandora-kernel.git sched, inotify: Deal with nested sleeps inotify_read is a wait loop with sleeps in. Wait loops rely on task_struct::state and sleeps do too, since that's the only means of actually sleeping. Therefore the nested sleeps destroy the wait loop state and the wait loop breaks the sleep functions that assume TASK_RUNNING (mutex_lock). Fix this by using the new woken_wake_function and wait_woken() stuff, which registers wakeups in wait and thereby allows shrinking the task_state::state changes to the actual sleep part. Signed-off-by: Peter Zijlstra (Intel) Cc: Al Viro Cc: Linus Torvalds Cc: tglx@linutronix.de Cc: ilya.dryomov@inktank.com Cc: umgwanakikbuti@gmail.com Cc: Robert Love Cc: Eric Paris Cc: John McCutchan Cc: Robert Love Cc: Oleg Nesterov Link: http://lkml.kernel.org/r/20140924082242.254858080@infradead.org Signed-off-by: Ingo Molnar --- Reading git-diff-tree failed