summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorPeter Boonstoppel <pboonstoppel@nvidia.com>2012-07-19 14:58:10 -0700
committerVarun Wadekar <vwadekar@nvidia.com>2012-08-06 14:55:30 +0530
commit68c9de8e17b859108cda331bfb1c86952b2db742 (patch)
tree2979cbd0acfc3aa3fe2a2a209556a49295541d90 /kernel
parent9fe16af79d90224d78a43dbbc558f514e706b1d4 (diff)
kthread: disable preemption during complete()
After a kthread is created it signals the requester using complete() and enters TASK_UNINTERRUPTIBLE. However, since complete() wakes up the requesting thread this can cause a preemption. The preemption will not remove the task from the runqueue (for that schedule() has to be invoked directly). This is a problem if directly after kthread creation you try to do a kthread_bind(), which will block in HZ steps until the thread is off the runqueue. This patch disables preemption during complete(), since we call schedule() directly afterwards, so it will correctly enter TASK_UNINTERRUPTIBLE. This speeds up kthread creation/binding during cpu hotplug significantly. Change-Id: I856ddd4e01ebdb198ba90f343b4a0c5933fd2b23 Signed-off-by: Peter Boonstoppel <pboonstoppel@nvidia.com>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/kthread.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/kernel/kthread.c b/kernel/kthread.c
index 3d3de633702e..b68236b45ba9 100644
--- a/kernel/kthread.c
+++ b/kernel/kthread.c
@@ -16,6 +16,7 @@
#include <linux/mutex.h>
#include <linux/slab.h>
#include <linux/freezer.h>
+#include <linux/preempt.h>
#include <trace/events/sched.h>
static DEFINE_SPINLOCK(kthread_create_lock);
@@ -113,7 +114,17 @@ static int kthread(void *_create)
/* OK, tell user we're spawned, wait for stop or wakeup */
__set_current_state(TASK_UNINTERRUPTIBLE);
create->result = current;
+
+ /*
+ * Disable preemption so we enter TASK_UNINTERRUPTIBLE after
+ * complete() instead of possibly being preempted. This speeds
+ * up clients that do a kthread_bind() directly after
+ * creation.
+ */
+ preempt_disable();
complete(&create->done);
+ preempt_enable_no_resched();
+
schedule();
ret = -EINTR;