From: Peter Zijlstra Date: Fri, 31 Oct 2014 10:57:30 +0000 (+0100) Subject: sched/wait: Fix a kthread race with wait_woken() X-Git-Tag: omap-for-v3.19/fixes-rc1~165^2~28 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb6538e740d7543cd989128625cf8cac4b471e0a;p=pandora-kernel.git sched/wait: Fix a kthread race with wait_woken() There is a race between kthread_stop() and the new wait_woken() that can result in a lack of progress. CPU 0 | CPU 1 | rfcomm_run() | kthread_stop() ... | if (!test_bit(KTHREAD_SHOULD_STOP)) | | set_bit(KTHREAD_SHOULD_STOP) | wake_up_process() wait_woken() | wait_for_completion() set_current_state(INTERRUPTIBLE) | if (!WQ_FLAG_WOKEN) | schedule_timeout() | | After which both tasks will wait.. forever. Fix this by having wait_woken() check for kthread_should_stop() but only for kthreads (obviously). Signed-off-by: Peter Zijlstra (Intel) Cc: Peter Hurley Cc: Oleg Nesterov Cc: Linus Torvalds Signed-off-by: Ingo Molnar --- Reading git-diff-tree failed