kthread_unpark(9) unpark a thread created by kthread_create.

SYNOPSIS

void kthread_unpark(struct task_struct * k);

ARGUMENTS

k

thread created by kthread_create.

DESCRIPTION

Sets kthread_should_park for k to return false, wakes it, and waits for it to return. If the thread is marked percpu then its bound to the cpu again.

COPYRIGHT