summaryrefslogtreecommitdiff
path: root/ipc
diff options
context:
space:
mode:
authorOleg Nesterov <oleg@redhat.com>2009-06-17 23:27:45 (GMT)
committerLinus Torvalds <torvalds@linux-foundation.org>2009-06-18 20:03:54 (GMT)
commit63706172f332fd3f6e7458ebfb35fa6de9c21dc5 (patch)
tree5548f226aa3ba7cca565a2b9d9574a5b6b1a9446 /ipc
parentcdd140bdd6c7bc6395f08877a73c39941501af93 (diff)
downloadlinux-63706172f332fd3f6e7458ebfb35fa6de9c21dc5.tar.xz
kthreads: rework kthread_stop()
Based on Eric's patch which in turn was based on my patch. kthread_stop() has the nasty problems: - it runs unpredictably long with the global semaphore held. - it deadlocks if kthread itself does kthread_stop() before it obeys the kthread_should_stop() request. - it is not useable if kthread exits on its own, see for example the ugly "wait_to_die:" hack in migration_thread() - it is not possible to just tell kthread it should stop, we must always wait for its exit. With this patch kthread() allocates all neccesary data (struct kthread) on its own stack, globals kthread_stop_xxx are deleted. ->vfork_done is used as a pointer into "struct kthread", this means kthread_stop() can easily wait for kthread's exit. Signed-off-by: Oleg Nesterov <oleg@redhat.com> Cc: Christoph Hellwig <hch@lst.de> Cc: "Eric W. Biederman" <ebiederm@xmission.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Pavel Emelyanov <xemul@openvz.org> Cc: Rusty Russell <rusty@rustcorp.com.au> Cc: Vitaliy Gusev <vgusev@openvz.org Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'ipc')
0 files changed, 0 insertions, 0 deletions