From: Peter Zijlstra <a.p.zijlstra@chello.nl>
To: linux-kernel@vger.kernel.org
Cc: Linus Torvalds <torvalds@linux-foundation.org>,
Ingo Molnar <mingo@elte.hu>, Thomas Gleixner <tglx@linutronix.de>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Tejun Heo <tj@kernel.org>, Jens Axboe <jaxboe@fusionio.com>
Subject: [RFC][PATCH 2/3] sched, workqueue: Move WQ-sleeper wakeup
Date: Wed, 22 Jun 2011 01:34:46 +0200 [thread overview]
Message-ID: <20110621233648.861571721@chello.nl> (raw)
In-Reply-To: 20110621233444.094372367@chello.nl
[-- Attachment #1: tglx2 --]
[-- Type: text/plain, Size: 2864 bytes --]
While Thomas was annoyed with the block bits, he found no reason for the WQ
bits to be as they are, the signal thing can only avoid a wakeup, extra wakeups
for the WQ bits increase concurrency (in as far as signals are relevant to
kthreads at all).
Moving the WQ bits allow us to do away with try_to_wake_up_local, removing
more lines.
Cc: Tejun Heo <tj@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
kernel/sched.c | 60 ++++++++++++---------------------------------------------
1 file changed, 13 insertions(+), 47 deletions(-)
Index: linux-2.6/kernel/sched.c
===================================================================
--- linux-2.6.orig/kernel/sched.c
+++ linux-2.6/kernel/sched.c
@@ -2703,40 +2703,6 @@ try_to_wake_up(struct task_struct *p, un
}
/**
- * try_to_wake_up_local - try to wake up a local task with rq lock held
- * @p: the thread to be awakened
- *
- * Put @p on the run-queue if it's not already there. The caller must
- * ensure that this_rq() is locked, @p is bound to this_rq() and not
- * the current task.
- */
-static void try_to_wake_up_local(struct task_struct *p)
-{
- struct rq *rq = task_rq(p);
-
- BUG_ON(rq != this_rq());
- BUG_ON(p == current);
- lockdep_assert_held(&rq->lock);
-
- if (!raw_spin_trylock(&p->pi_lock)) {
- raw_spin_unlock(&rq->lock);
- raw_spin_lock(&p->pi_lock);
- raw_spin_lock(&rq->lock);
- }
-
- if (!(p->state & TASK_NORMAL))
- goto out;
-
- if (!p->on_rq)
- ttwu_activate(rq, p, ENQUEUE_WAKEUP);
-
- ttwu_do_wakeup(rq, p, 0);
- ttwu_stat(p, smp_processor_id(), 0);
-out:
- raw_spin_unlock(&p->pi_lock);
-}
-
-/**
* wake_up_process - Wake up a specific process
* @p: The process to be woken up.
*
@@ -4215,6 +4181,19 @@ static inline void sched_submit_work(voi
if (tsk->state && !(preempt_count() & PREEMPT_ACTIVE)) {
/*
+ * If a worker went to sleep, notify and ask workqueue
+ * whether it wants to wake up a task to maintain
+ * concurrency.
+ */
+ if (tsk->flags & PF_WQ_WORKER) {
+ struct task_struct *to_wakeup;
+
+ to_wakeup = wq_worker_sleeping(tsk, smp_processor_id());
+ if (to_wakeup)
+ wake_up_process(to_wakeup);
+ }
+
+ /*
* If we are going to sleep and we have plugged IO
* queued, make sure to submit it to avoid deadlocks.
*/
@@ -4256,19 +4235,6 @@ asmlinkage void __sched schedule(void)
} else {
deactivate_task(rq, prev, DEQUEUE_SLEEP);
prev->on_rq = 0;
-
- /*
- * If a worker went to sleep, notify and ask workqueue
- * whether it wants to wake up a task to maintain
- * concurrency.
- */
- if (prev->flags & PF_WQ_WORKER) {
- struct task_struct *to_wakeup;
-
- to_wakeup = wq_worker_sleeping(prev, cpu);
- if (to_wakeup)
- try_to_wake_up_local(to_wakeup);
- }
}
switch_count = &prev->nvcsw;
}
next prev parent reply other threads:[~2011-06-21 23:47 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-21 23:34 [RFC][PATCH 0/3] Move WQ,unplug scheduler hooks Peter Zijlstra
2011-06-21 23:34 ` [RFC][PATCH 1/3] sched, block: Move unplug Peter Zijlstra
2011-06-22 7:01 ` Jens Axboe
2011-06-22 13:53 ` Thomas Gleixner
2011-06-22 14:01 ` Jens Axboe
2011-06-22 14:30 ` Thomas Gleixner
2011-06-22 14:38 ` Peter Zijlstra
2011-06-22 15:08 ` Vivek Goyal
2011-06-22 16:04 ` Jens Axboe
2011-06-21 23:34 ` Peter Zijlstra [this message]
2011-06-22 9:24 ` [RFC][PATCH 2/3] sched, workqueue: Move WQ-sleeper wakeup Tejun Heo
2011-06-22 9:27 ` Peter Zijlstra
2011-06-22 9:37 ` Tejun Heo
2011-06-22 13:47 ` Thomas Gleixner
2011-06-21 23:34 ` [RFC][PATCH 3/3] block: Break long IRQ disabled region Peter Zijlstra
2011-06-22 7:03 ` Jens Axboe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110621233648.861571721@chello.nl \
--to=a.p.zijlstra@chello.nl \
--cc=jaxboe@fusionio.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=tglx@linutronix.de \
--cc=tj@kernel.org \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox