mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* typecast bug in sched.c bites reschedule_idle on alpha
@ 2003-07-17 21:51 Andy Isaacson
  2003-07-17 22:20 ` Ivan Kokshaysky
  0 siblings, 1 reply; 3+ messages in thread
From: Andy Isaacson @ 2003-07-17 21:51 UTC (permalink / raw)
  To: linux-kernel

On SMP Alpha, a saturated system (with one busy userland process per
CPU) becomes almost completely unusable.  The busy loops don't have to
be doing anything more complicated than "while(1) ;".  The symptom is
that even logging into the system (with ssh) takes on the order of 30
seconds.  (Tested on an ES40 with 4 processors, 2.4.18.)

It turns out that the problem is in kernel/schedule.c:reschedule_idle.

        cycles_t oldest_idle;
...
        oldest_idle = (cycles_t) -1;
...
                        if (oldest_idle == -1ULL) {

Since asm-alpha/timex.h defines cycles_t as unsigned int, this
comparison is always false.  Changing it to (cycles_t)-1 fixes the
problem.

Patch below.  I'd like this to go into 2.4.22, if nobody has a problem
with that.  I would like confirmation from other eyes -- this patch
doesn't break semantics on any architecture, does it?

-andy

--- linux-2.4.21/kernel/sched.c	Thu Jul 17 16:43:37 2003
+++ linux-2.4.21-idle-fix/kernel/sched.c	Thu Jul 17 16:23:25 2003
@@ -282,7 +282,7 @@
 				target_tsk = tsk;
 			}
 		} else {
-			if (oldest_idle == -1ULL) {
+			if (oldest_idle == (cycles_t)-1) {
 				int prio = preemption_goodness(tsk, p, cpu);
 
 				if (prio > max_prio) {
@@ -294,7 +294,7 @@
 	}
 	tsk = target_tsk;
 	if (tsk) {
-		if (oldest_idle != -1ULL) {
+		if (oldest_idle != (cycles_t)-1) {
 			best_cpu = tsk->processor;
 			goto send_now_idle;
 		}

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2003-07-17 22:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-17 21:51 typecast bug in sched.c bites reschedule_idle on alpha Andy Isaacson
2003-07-17 22:20 ` Ivan Kokshaysky
2003-07-17 22:28   ` Andy Isaacson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®