From: Con Kolivas <kernel@kolivas.org>
To: linux <linux-kernel@vger.kernel.org>
Cc: Andrew Morton <akpm@osdl.org>, Ingo Molnar <mingo@elte.hu>
Subject: [PATCH] consolidate task preempts
Date: Tue, 02 Nov 2004 15:06:58 +1100 [thread overview]
Message-ID: <418707E2.1060105@kolivas.org> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 28 bytes --]
consolidate task preempts
[-- Attachment #1.2: sched-consolidate_task_preempts.diff --]
[-- Type: text/x-patch, Size: 2581 bytes --]
TASK_PREEMPTS_CURR is only used when followed by resched_task. Consolidate
the two into a single function.
Allow tasks of equal dynamic priority to preempt tasks of lower static
priority.
Signed-off-by: Con Kolivas <kernel@kolivas.org>
Index: linux-2.6.10-rc1-mm2/kernel/sched.c
===================================================================
--- linux-2.6.10-rc1-mm2.orig/kernel/sched.c 2004-11-02 14:19:32.973509317 +1100
+++ linux-2.6.10-rc1-mm2/kernel/sched.c 2004-11-02 14:26:23.444588405 +1100
@@ -157,9 +157,6 @@
(JIFFIES_TO_NS(MAX_SLEEP_AVG * \
(MAX_BONUS / 2 + DELTA((p)) + 1) / MAX_BONUS - 1))
-#define TASK_PREEMPTS_CURR(p, rq) \
- ((p)->prio < (rq)->curr->prio)
-
/*
* task_timeslice() scales user-nice values [ -20 ... 0 ... 19 ]
* to time slice values: [800ms ... 100ms ... 5ms]
@@ -810,6 +807,13 @@ inline int task_curr(const task_t *p)
return cpu_curr(task_cpu(p)) == p;
}
+static void preempt(task_t *p, runqueue_t *rq)
+{
+ if (p->prio < rq->curr->prio || (p->prio == rq->curr->prio &&
+ p->static_prio < rq->curr->static_prio))
+ resched_task(rq->curr);
+}
+
#ifdef CONFIG_SMP
enum request_type {
REQ_MOVE_TASK,
@@ -1106,10 +1110,8 @@ out_activate:
* to be considered on this CPU.)
*/
activate_task(p, rq, cpu == this_cpu);
- if (!sync || cpu != this_cpu) {
- if (TASK_PREEMPTS_CURR(p, rq))
- resched_task(rq->curr);
- }
+ if (!sync || cpu != this_cpu)
+ preempt(p, rq);
success = 1;
out_running:
@@ -1263,8 +1265,7 @@ void fastcall wake_up_new_task(task_t *
p->timestamp = (p->timestamp - this_rq->timestamp_last_tick)
+ rq->timestamp_last_tick;
__activate_task(p, rq);
- if (TASK_PREEMPTS_CURR(p, rq))
- resched_task(rq->curr);
+ preempt(p, rq);
schedstat_inc(rq, wunt_moved);
/*
@@ -1621,8 +1622,7 @@ void pull_task(runqueue_t *src_rq, prio_
* Note that idle threads have a prio of MAX_PRIO, for this test
* to be always true for them.
*/
- if (TASK_PREEMPTS_CURR(p, this_rq))
- resched_task(this_rq->curr);
+ preempt(p, this_rq);
}
/*
@@ -3306,8 +3306,8 @@ recheck:
if (task_running(rq, p)) {
if (p->prio > oldprio)
resched_task(rq->curr);
- } else if (TASK_PREEMPTS_CURR(p, rq))
- resched_task(rq->curr);
+ } else
+ preempt(p, rq);
}
task_rq_unlock(rq, &flags);
out_unlock:
@@ -4008,8 +4008,7 @@ static void __migrate_task(struct task_s
+ rq_dest->timestamp_last_tick;
deactivate_task(p, rq_src);
activate_task(p, rq_dest, 0);
- if (TASK_PREEMPTS_CURR(p, rq_dest))
- resched_task(rq_dest->curr);
+ preempt(p, rq_dest);
}
out:
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 256 bytes --]
next reply other threads:[~2004-11-02 4:15 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-11-02 4:06 Con Kolivas [this message]
2004-11-02 12:25 ` [PATCH] consolidate task preempts Nick Piggin
2004-11-02 12:35 ` Ingo Molnar
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=418707E2.1060105@kolivas.org \
--to=kernel@kolivas.org \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.