* [Linux-ia64] [patch] fix compares of jiffies
@ 2002-09-22 11:45 Tim Schmielau
0 siblings, 0 replies; only message in thread
From: Tim Schmielau @ 2002-09-22 11:45 UTC (permalink / raw)
To: linux-ia64
Dear Linux kernel code maintainer,
on rechecking the current stable kernel code, I found some places where jiffies
were compared in a way that seems to break when they wrap. For these,
I made up patches to use the macros "time_before()" or "time_after()"
that are supposed to handle wraparound correctly.
For a small part of the patches, I believe you to be the relevant kernel code
maintainer. Appended to this email you will find some lines explaining
why I decided to mail or cc: you on this (an extract of the copyright notice
or the MAINTAINERS file), followed by the patch itself. If I mailed you
in error, please drop me a short note.
I kindly ask you to approve the correctness of the patch, and pass it on to
the relevant people for inclusion into the mainline kernel.
Thanks,
Tim Schmielau (tim@physik3.uni-rostock.de)
IA64 (Itanium) PLATFORM
P: David Mosberger-Tang
M: davidm@hpl.hp.com
L: linux-ia64@linuxia64.org
W: http://www.linuxia64.org/
S: Maintained
--- linux-2.4.20-pre6/include/asm-ia64/sn/bte_copy.h Sat Aug 3 02:39:45 2002
+++ linux-2.4.20-pre6-jfix/include/asm-ia64/sn/bte_copy.h Wed Sep 11 11:59:32 2002
@@ -250,7 +250,7 @@
* status register into the notification area.
* This fakes the shub performing the copy.
*/
- if (jiffies > bte->idealTransferTimeout) {
+ if (time_after(jiffies, bte->idealTransferTimeout)) {
bte->notify = HUB_L(bte->bte_base_addr);
bte->idealTransferTimeoutReached++;
bte->idealTransferTimeout = jiffies +
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2002-09-22 11:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-09-22 11:45 [Linux-ia64] [patch] fix compares of jiffies Tim Schmielau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox