]> Git Repo - linux.git/commit
kthread: Make struct kthread kmalloc'ed
authorOleg Nesterov <[email protected]>
Tue, 29 Nov 2016 17:50:57 +0000 (18:50 +0100)
committerThomas Gleixner <[email protected]>
Thu, 8 Dec 2016 13:36:18 +0000 (14:36 +0100)
commit1da5c46fa965ff90f5ffc080b6ab3fae5e227bc3
tree907dd44b43d3cf5f49be920c46a5592364bcb1e8
parent7c4788950ba5922fde976d80b72baf46f14dee8d
kthread: Make struct kthread kmalloc'ed

commit 23196f2e5f5d "kthread: Pin the stack via try_get_task_stack() /
put_task_stack() in to_live_kthread() function" is a workaround for the
fragile design of struct kthread being allocated on the task stack.

struct kthread in its current form should be removed, but this needs
cleanups outside of kthread.c.

As a first step move struct kthread away from the task stack by making it
kmalloc'ed. This allows to access kthread.exited without the magic of
trying to pin task stack and the try logic in to_live_kthread().

Signed-off-by: Oleg Nesterov <[email protected]>
Acked-by: Peter Zijlstra (Intel) <[email protected]>
Reviewed-by: Thomas Gleixner <[email protected]>
Cc: Chunming Zhou <[email protected]>
Cc: Roman Pen <[email protected]>
Cc: Petr Mladek <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: Tejun Heo <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: Alex Deucher <[email protected]>
Cc: Andrew Morton <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>
include/linux/kthread.h
kernel/fork.c
kernel/kthread.c
This page took 0.069653 seconds and 4 git commands to generate.