Re: [patch 2/2] round_jiffies users

2006-10-10 Thread Arjan van de Ven
Paul Dickson wrote: On Tue, 10 Oct 2006 18:04:23 +0200, Arjan van de Ven wrote: + mod_timer(&adapter->phy_info_timer, round_jiffies(jiffies + 2 * HZ)); Shouldn't round_jiffies_relative be used for some of these, a la: + mod_timer(&adapter->phy_inf

Re: [patch 2/2] round_jiffies users

2006-10-10 Thread Paul Dickson
On Tue, 10 Oct 2006 18:04:23 +0200, Arjan van de Ven wrote: > + mod_timer(&adapter->phy_info_timer, > round_jiffies(jiffies + 2 * HZ)); Shouldn't round_jiffies_relative be used for some of these, a la: + mod_timer(&adapter->phy_info_timer, round_jiffie

Re: [patch 2/2] round_jiffies users

2006-10-10 Thread Arjan van de Ven
On Tue, 2006-10-10 at 18:47 +0200, Ingo Oeser wrote: > Hi Arjan, > > Arjan van de Ven wrote: > > Index: linux-2.6.19-rc1-git6/mm/slab.c > > === > > --- linux-2.6.19-rc1-git6.orig/mm/slab.c > > +++ linux-2.6.19-rc1-git6/mm/slab.c > > @

Re: [patch 2/2] round_jiffies users

2006-10-10 Thread Ingo Oeser
Hi Arjan, Arjan van de Ven wrote: > Index: linux-2.6.19-rc1-git6/mm/slab.c > === > --- linux-2.6.19-rc1-git6.orig/mm/slab.c > +++ linux-2.6.19-rc1-git6/mm/slab.c > @@ -926,7 +926,7 @@ static void __devinit start_cpu_timer(in > i

[patch 2/2] round_jiffies users

2006-10-10 Thread Arjan van de Ven
From: Arjan van de Ven <[EMAIL PROTECTED]> Subject: round_jiffies users CC: [EMAIL PROTECTED] CC: netdev@vger.kernel.org This patch introduces users of the round_jiffies() function. These timers all were of the "about once a second" or "about once every X seconds" variety and several showed up i