* [PATCH 2.4 and 2.6] infinite loop in ia64_mca_wakeup_ipi_wait
@ 2003-10-13 18:47 Luck, Tony
0 siblings, 0 replies; only message in thread
From: Luck, Tony @ 2003-10-13 18:47 UTC (permalink / raw)
To: linux-ia64
This bugfix has been hiding inside the MCA TLB patches.
There is an infinite loop in ia64_mca_wakeup_ipi_wait() because
the compiler optimizes away the test at the bottom of the while
loop. It does this because IA64_MCA_WAKEUP_VECTOR is 0xf0, so
irr_bit is known to be the constant 0x30, a.k.a. 48 in decimal.
So when the compiler looks at the expression:
while (!(irr & (1 << irr_bit)))
It observes that "1" (an *integer* constant) shifted left by 48
bits is 0, and so the value of "irr" becomes irrelevent.
The fix is to make sure that the compiler treats the "1" as unsigned
long:
--- old/arch/ia64/kernel/mca.c 2003-10-13 11:20:08.885518014 -0700
+++ new/arch/ia64/kernel/mca.c 2003-10-13 11:20:31.427509925 -0700
@@ -828,7 +828,7 @@
irr = ia64_getreg(_IA64_REG_CR_IRR3);
break;
}
- } while (!(irr & (1 << irr_bit))) ;
+ } while (!(irr & (1UL << irr_bit))) ;
}
/*
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-10-13 18:47 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-10-13 18:47 [PATCH 2.4 and 2.6] infinite loop in ia64_mca_wakeup_ipi_wait Luck, Tony
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox