]> git.baikalelectronics.ru Git - kernel.git/commit
klist: del waiter from klist_remove_waiters before wakeup waitting process
authorwang, biao <biao.wang@intel.com>
Thu, 16 May 2013 01:50:13 +0000 (09:50 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 21 May 2013 17:16:39 +0000 (10:16 -0700)
commit66f4a661df24af0167a68c2e5e923ac8ac8cbfad
tree07c5b125c8b80182fedd9fd74098b79647f7a08f
parent0d09c47306aca593fa90c43fb0398e8d84b6a17c
klist: del waiter from klist_remove_waiters before wakeup waitting process

There is a race between klist_remove and klist_release. klist_remove
uses a local var waiter saved on stack. When klist_release calls
wake_up_process(waiter->process) to wake up the waiter, waiter might run
immediately and reuse the stack. Then, klist_release calls
list_del(&waiter->list) to change previous
wait data and cause prior waiter thread corrupt.

The patch fixes it against kernel 3.9.

Signed-off-by: wang, biao <biao.wang@intel.com>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
lib/klist.c