* [Linux-ia64] Re: [PATCH] fix nanosleep() granularity bumps
@ 2003-03-24 12:06 Finn Arne Gangstad
2003-03-24 12:10 ` Tim Schmielau
0 siblings, 1 reply; 2+ messages in thread
From: Finn Arne Gangstad @ 2003-03-24 12:06 UTC (permalink / raw)
To: linux-ia64
On Tue, Mar 18, 2003 at 10:05:56AM +0100, Tim Schmielau wrote:
> On Mon, 17 Mar 2003, Tim Schmielau wrote:
>
> > I've re-checked that the problem does not occur with the original "initial
> > jiffies" patch for 2.4.
>
> Stupid me - 2.4 with the patch has the same problem, it just takes 10x as
> long to show up, a range that was not covered by the testcase.
>
>
> The actual problem is that I didn't fully understand the, well,
> 'elaborated' way of counting jiffies in the timer cascade:
>
> When starting out with timer_jiffies=0, the timer cascade is
> (unneccessarily) triggered on the first timer interrupt, incrementing all
> the higher indices.
> When starting with any other initial jiffies value, we miss that and end
> up with all higher indices being off by one.
Suggest the attached patch as a fix instead - easier to understand I
think and works for every possible start value. This is what I made for
Andrea Arcangeli many years ago...
diff -ur linux-2.5.65/kernel/timer.c linux-2.5.65-new/kernel/timer.c
--- linux-2.5.65/kernel/timer.c 2003-03-17 22:44:41.000000000 +0100
+++ linux-2.5.65-new/kernel/timer.c 2003-03-24 12:57:31.000000000 +0100
@@ -1182,11 +1182,14 @@
INIT_LIST_HEAD(base->tv1.vec + j);
base->timer_jiffies = INITIAL_JIFFIES;
- base->tv1.index = INITIAL_JIFFIES & TVR_MASK;
- base->tv2.index = (INITIAL_JIFFIES >> TVR_BITS) & TVN_MASK;
- base->tv3.index = (INITIAL_JIFFIES >> (TVR_BITS+TVN_BITS)) & TVN_MASK;
- base->tv4.index = (INITIAL_JIFFIES >> (TVR_BITS+2*TVN_BITS)) & TVN_MASK;
- base->tv5.index = (INITIAL_JIFFIES >> (TVR_BITS+3*TVN_BITS)) & TVN_MASK;
+ base->tv1.index = (1 + (INITIAL_JIFFIES - 1)) & TVR_MASK;
+ base->tv2.index = (1 + ((INITIAL_JIFFIES - 1) >> TVR_BITS)) & TVN_MASK;
+ base->tv3.index = (1 + ((INITIAL_JIFFIES - 1)
+ >> (TVR_BITS + TVN_BITS))) & TVN_MASK;
+ base->tv4.index = (1 + ((INITIAL_JIFFIES - 1)
+ >> (TVR_BITS + 2 * TVN_BITS))) & TVN_MASK;
+ base->tv5.index = (1 + ((INITIAL_JIFFIES - 1)
+ >> (TVR_BITS + 3 * TVN_BITS))) & TVN_MASK;
}
static int __devinit timer_cpu_notify(struct notifier_block *self,
- Finn Arne
^ permalink raw reply [flat|nested] 2+ messages in thread
* [Linux-ia64] Re: [PATCH] fix nanosleep() granularity bumps
2003-03-24 12:06 [Linux-ia64] Re: [PATCH] fix nanosleep() granularity bumps Finn Arne Gangstad
@ 2003-03-24 12:10 ` Tim Schmielau
0 siblings, 0 replies; 2+ messages in thread
From: Tim Schmielau @ 2003-03-24 12:10 UTC (permalink / raw)
To: linux-ia64
> On Tue, Mar 18, 2003 at 10:05:56AM +0100, Tim Schmielau wrote:
[...]
> Suggest the attached patch as a fix instead - easier to understand I
> think and works for every possible start value. This is what I made for
> Andrea Arcangeli many years ago...
>
> diff -ur linux-2.5.65/kernel/timer.c linux-2.5.65-new/kernel/timer.c
> --- linux-2.5.65/kernel/timer.c 2003-03-17 22:44:41.000000000 +0100
> +++ linux-2.5.65-new/kernel/timer.c 2003-03-24 12:57:31.000000000 +0100
> @@ -1182,11 +1182,14 @@
> INIT_LIST_HEAD(base->tv1.vec + j);
>
> base->timer_jiffies = INITIAL_JIFFIES;
> - base->tv1.index = INITIAL_JIFFIES & TVR_MASK;
> - base->tv2.index = (INITIAL_JIFFIES >> TVR_BITS) & TVN_MASK;
> - base->tv3.index = (INITIAL_JIFFIES >> (TVR_BITS+TVN_BITS)) & TVN_MASK;
> - base->tv4.index = (INITIAL_JIFFIES >> (TVR_BITS+2*TVN_BITS)) & TVN_MASK;
> - base->tv5.index = (INITIAL_JIFFIES >> (TVR_BITS+3*TVN_BITS)) & TVN_MASK;
> + base->tv1.index = (1 + (INITIAL_JIFFIES - 1)) & TVR_MASK;
> + base->tv2.index = (1 + ((INITIAL_JIFFIES - 1) >> TVR_BITS)) & TVN_MASK;
> + base->tv3.index = (1 + ((INITIAL_JIFFIES - 1)
> + >> (TVR_BITS + TVN_BITS))) & TVN_MASK;
> + base->tv4.index = (1 + ((INITIAL_JIFFIES - 1)
> + >> (TVR_BITS + 2 * TVN_BITS))) & TVN_MASK;
> + base->tv5.index = (1 + ((INITIAL_JIFFIES - 1)
> + >> (TVR_BITS + 3 * TVN_BITS))) & TVN_MASK;
> }
>
> static int __devinit timer_cpu_notify(struct notifier_block *self,
Too late - the whole tv[1-5].index duplication is gone already after a
cleanup done by George Anzinger.
Tim
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2003-03-24 12:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-03-24 12:06 [Linux-ia64] Re: [PATCH] fix nanosleep() granularity bumps Finn Arne Gangstad
2003-03-24 12:10 ` Tim Schmielau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox