From: Mike Galbraith <efault@gmx.de>
To: Paolo Ornati <ornati@fastwebnet.it>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Con Kolivas <kernel@kolivas.org>, Ingo Molnar <mingo@elte.hu>,
Nick Piggin <nickpiggin@yahoo.com.au>,
Peter Williams <pwil3058@bigpond.net.au>
Subject: Re: [SCHED] wrong priority calc - SIMPLE test case
Date: Mon, 09 Jan 2006 12:11:31 +0100 [thread overview]
Message-ID: <5.2.1.1.2.20060109112238.00be96f8@pop.gmx.net> (raw)
In-Reply-To: <5.2.1.1.2.20060102092903.00bde090@pop.gmx.net>
[-- Attachment #1: Type: text/plain, Size: 2290 bytes --]
At 10:15 AM 1/2/2006 +0100, Mike Galbraith wrote:
>At 12:39 PM 1/1/2006 +0100, Paolo Ornati wrote:
>>On Sat, 31 Dec 2005 17:37:11 +0100
>>Mike Galbraith <efault@gmx.de> wrote:
>>
>> > Strange. Using the exact same arguments, I do see some odd bouncing up to
>> > high priorities, but they spend the vast majority of their time down
>> at 25.
>>
>>Mmmm... to make it more easly reproducible I've enlarged the sleep time
>>(1 microsecond is likely to be rounded too much and give different
>>results on different hardware/kernel/config...).
>>
>>Compile this _without_ optimizations and try again:
>
><snip>
>
>>Try different values: 1000, 2000, 3000 ... are you able to reproduce it
>>now?
>
>Yeah. One instance running has to sustain roughly _95%_ cpu before it's
>classified as a cpu piggy. Not good.
>
>>If yes, try to start 2 of them with something like this:
>>
>>"./a.out 3000 & ./a.out 3161"
>>
>>so they are NOT syncronized and they use almost all the CPU time:
>>
>> PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
>> 5582 paolo 16 0 2396 320 252 S 45.7 0.1 0:05.52 a.out
>> 5583 paolo 15 0 2392 320 252 S 45.7 0.1 0:05.49 a.out
>>
>>This is the bad situation I hate: some cpu-eaters that eat all the CPU
>>time BUT have a really good priority only because they sleeps a bit.
>
>Yup, your proggy fools the interactivity estimator quite well. This
>problem was addressed a long time ago, and thought to be more or less
>cured. Guess not.
Care to try an experiment? I'd be very interested in knowing if the
attached patch cures the real-life problem you were investigating.
It attempts to catch tasks which the interactivity logic has misidentified,
and "pull their plug". It maintains a running plausibility check
(slice_avg) against sleep_avg, and if a sustained disparity appears, cuts
off a cpu burning task's supply of bonus points such that it has to "run on
battery" until the disparity decreases to within acceptable limits.
Obviously, anything that affects fairness _will_ affect interactivity to
some degree. This simple bolt-on throttle has delayed initiation and
accelerated release in the hopes of keeping it's impact acceptable. After
some initial testing, It doesn't _seem_ to suck.
-Mike
[-- Attachment #2: sched_throttle --]
[-- Type: application/octet-stream, Size: 3629 bytes --]
--- include/linux/sched.h.org Tue Jan 3 09:26:50 2006
+++ include/linux/sched.h Sat Jan 7 14:45:37 2006
@@ -701,8 +701,8 @@
unsigned short ioprio;
- unsigned long sleep_avg;
- unsigned long long timestamp, last_ran;
+ unsigned long sleep_avg, slice_avg;
+ unsigned long long timestamp, last_ran, last_slice;
unsigned long long sched_time; /* sched_clock time spent running */
int activated;
--- linux-2.6.15/kernel/sched.c.org Sat Jan 7 16:22:13 2006
+++ linux-2.6.15/kernel/sched.c Mon Jan 9 11:50:40 2006
@@ -47,6 +47,7 @@
#include <linux/syscalls.h>
#include <linux/times.h>
#include <linux/acct.h>
+#include <linux/jiffies.h>
#include <asm/tlb.h>
#include <asm/unistd.h>
@@ -1353,7 +1354,7 @@
out_activate:
#endif /* CONFIG_SMP */
- if (old_state == TASK_UNINTERRUPTIBLE) {
+ if (old_state & TASK_UNINTERRUPTIBLE) {
rq->nr_uninterruptible--;
/*
* Tasks on involuntary sleep don't earn
@@ -1492,6 +1493,8 @@
*/
p->sleep_avg = JIFFIES_TO_NS(CURRENT_BONUS(p) *
CHILD_PENALTY / 100 * MAX_SLEEP_AVG / MAX_BONUS);
+ p->slice_avg = NS_MAX_SLEEP_AVG;
+ p->last_slice = sched_clock();
p->prio = effective_prio(p);
@@ -2646,6 +2649,12 @@
runqueue_t *rq = this_rq();
task_t *p = current;
unsigned long long now = sched_clock();
+#if 1
+ static unsigned long printme = 0;
+
+ if (unlikely(!printme))
+ printme = jiffies;
+#endif
update_cpu_clock(p, rq, now);
@@ -2679,6 +2688,7 @@
if ((p->policy == SCHED_RR) && !--p->time_slice) {
p->time_slice = task_timeslice(p);
p->first_time_slice = 0;
+ p->last_slice = now;
set_tsk_need_resched(p);
/* put it at the end of the queue: */
@@ -2687,12 +2697,40 @@
goto out_unlock;
}
if (!--p->time_slice) {
+ unsigned long long nsecs = now - p->last_slice;
+ unsigned long idle, ticks;
+ int w = 10;
+
dequeue_task(p, rq->active);
set_tsk_need_resched(p);
p->prio = effective_prio(p);
p->time_slice = task_timeslice(p);
p->first_time_slice = 0;
+ if (nsecs > ~0UL)
+ nsecs = ~0UL;
+ ticks = NS_TO_JIFFIES((unsigned long) nsecs);
+ if (ticks < p->time_slice)
+ ticks = p->time_slice;
+ idle = 100 - (100 * p->time_slice / ticks);
+ p->slice_avg /= NS_MAX_SLEEP_AVG / 100;
+ /*
+ * If we're improving our behaviour, speed up the improvement's
+ * effect so we don't over throttle.
+ */
+ if (idle > p->slice_avg + 10)
+ w -= (100 * p->slice_avg / idle) / 10;
+ p->slice_avg = (w * p->slice_avg + idle) / (w + 1);
+ p->slice_avg *= NS_MAX_SLEEP_AVG / 100;
+ p->last_slice = now;
+#if 1
+ if (p->mm && time_after(jiffies, printme + HZ)) {
+ printk(KERN_DEBUG"%s pid:%d sle:%ld sli:%ld tic:%ld idle:%ld w:%d\n",
+ p->comm,p->pid,p->sleep_avg,p->slice_avg,ticks,idle,w);
+ printme = jiffies + HZ;
+ }
+#endif
+
if (!rq->expired_timestamp)
rq->expired_timestamp = jiffies;
if (!TASK_INTERACTIVE(p) || EXPIRED_STARVING(rq)) {
@@ -3010,7 +3048,7 @@
unlikely(signal_pending(prev))))
prev->state = TASK_RUNNING;
else {
- if (prev->state == TASK_UNINTERRUPTIBLE)
+ if (prev->state & TASK_UNINTERRUPTIBLE)
rq->nr_uninterruptible++;
deactivate_task(prev, rq);
}
@@ -3095,6 +3133,13 @@
prev->sleep_avg -= run_time;
if ((long)prev->sleep_avg <= 0)
prev->sleep_avg = 0;
+ if (prev->state & (TASK_INTERRUPTIBLE|TASK_UNINTERRUPTIBLE) &&
+ prev->sleep_avg > prev->slice_avg + (NS_MAX_SLEEP_AVG/10) &&
+ !rt_task(prev))
+ prev->state |= TASK_NONINTERACTIVE;
+ if (!rt_task(next) && !(next->time_slice % DEF_TIMESLICE))
+ next->last_slice = now;
+
prev->timestamp = prev->last_ran = now;
sched_info_switch(prev, next);
next prev parent reply other threads:[~2006-01-09 11:11 UTC|newest]
Thread overview: 58+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-12-27 18:09 [SCHED] Totally WRONG prority calculation with specific test-case (since 2.6.10-bk12) Paolo Ornati
2005-12-27 21:48 ` Paolo Ornati
2005-12-27 23:26 ` Con Kolivas
2005-12-28 11:01 ` Paolo Ornati
2005-12-28 11:19 ` Con Kolivas
2005-12-28 11:35 ` Paolo Ornati
2005-12-28 17:23 ` Paolo Ornati
2005-12-28 17:39 ` Paolo Ornati
2005-12-30 13:52 ` [SCHED] wrong priority calc - SIMPLE test case Paolo Ornati
2005-12-31 2:06 ` Peter Williams
2005-12-31 10:34 ` Paolo Ornati
2005-12-31 10:52 ` Paolo Ornati
2005-12-31 11:12 ` Con Kolivas
2005-12-31 13:44 ` Peter Williams
2005-12-31 16:31 ` Paolo Ornati
2005-12-31 22:04 ` Peter Williams
2005-12-31 8:13 ` Mike Galbraith
2005-12-31 11:00 ` Paolo Ornati
2005-12-31 15:11 ` Paolo Ornati
2005-12-31 16:37 ` Mike Galbraith
2005-12-31 17:24 ` Paolo Ornati
2005-12-31 17:42 ` Paolo Ornati
2006-01-01 11:39 ` Paolo Ornati
2006-01-02 9:15 ` Mike Galbraith
2006-01-02 9:50 ` Paolo Ornati
2006-01-09 11:11 ` Mike Galbraith [this message]
2006-01-09 15:52 ` Mike Galbraith
2006-01-09 16:08 ` Con Kolivas
2006-01-09 18:14 ` Mike Galbraith
2006-01-09 20:00 ` Paolo Ornati
2006-01-09 20:23 ` Paolo Ornati
2006-01-10 7:08 ` Mike Galbraith
2006-01-10 12:07 ` Mike Galbraith
2006-01-10 12:56 ` Paolo Ornati
2006-01-10 13:01 ` Mike Galbraith
2006-01-10 13:53 ` Paolo Ornati
2006-01-10 15:18 ` Mike Galbraith
2006-01-13 1:13 ` Con Kolivas
2006-01-13 1:32 ` Con Kolivas
2006-01-13 10:46 ` Paolo Ornati
2006-01-13 10:51 ` Con Kolivas
2006-01-13 13:01 ` Mike Galbraith
2006-01-13 14:34 ` Con Kolivas
2006-01-13 16:15 ` Mike Galbraith
2006-01-14 2:05 ` Con Kolivas
2006-01-14 2:56 ` Mike Galbraith
2005-12-27 23:59 ` [SCHED] Totally WRONG prority calculation with specific test-case (since 2.6.10-bk12) Peter Williams
2005-12-28 10:20 ` Paolo Ornati
2005-12-28 13:38 ` Peter Williams
2005-12-28 19:45 ` Paolo Ornati
2005-12-29 3:13 ` Nick Piggin
2005-12-29 3:35 ` Peter Williams
2005-12-29 8:11 ` Nick Piggin
2006-01-27 16:57 [SCHED] wrong priority calc - SIMPLE test case Con Kolivas
2006-01-27 20:06 ` MIke Galbraith
2006-01-27 23:18 ` Con Kolivas
2006-01-28 0:01 ` Peter Williams
2006-01-28 3:43 ` MIke Galbraith
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=5.2.1.1.2.20060109112238.00be96f8@pop.gmx.net \
--to=efault@gmx.de \
--cc=kernel@kolivas.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=nickpiggin@yahoo.com.au \
--cc=ornati@fastwebnet.it \
--cc=pwil3058@bigpond.net.au \
/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
Powered by JetHome