* [KJ] Status of TODO item jiffies towards end
@ 2005-04-21 10:48 blm
0 siblings, 0 replies; 2+ messages in thread
From: blm @ 2005-04-21 10:48 UTC (permalink / raw)
To: kernel-janitors
[-- Attachment #1: Type: text/plain, Size: 717 bytes --]
I am new at this but am very keen to contribute. I
thought I would start at the end of the TODO on the
web site (hoping noone else thought of the same thing)
and see what happens.
The item:
Some drivers do:
if ((jiffies - data->last_updated > HZ * 2) ||
(jiffies < data->last_updated))
Should be:
#include <linux/jiffies.h>
if (time_after(jiffies, data->last_updated + HZ * 2))
Have a patch for drivers/i2c/chips/*.
It seems this has been fixed because I only found the
problem code in drivers/i2c/chips/* in kernel source 2.6.10.
Are there any items that need attention that it is known that
noone is working on? What kernel tree should I be looking at?
Ben Marsh
[-- Attachment #2: Type: text/plain, Size: 167 bytes --]
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
http://lists.osdl.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [KJ] Status of TODO item jiffies towards end
@ 2005-04-21 16:13 Nish Aravamudan
0 siblings, 0 replies; 2+ messages in thread
From: Nish Aravamudan @ 2005-04-21 16:13 UTC (permalink / raw)
To: kernel-janitors
On 4/21/05, blm@woodheap.org <blm@woodheap.org> wrote:
> I am new at this but am very keen to contribute. I
> thought I would start at the end of the TODO on the
> web site (hoping noone else thought of the same thing)
> and see what happens.
>
> The item:
>
> Some drivers do:
>
> if ((jiffies - data->last_updated > HZ * 2) ||
> (jiffies < data->last_updated))
>
> Should be:
>
> #include <linux/jiffies.h>
> if (time_after(jiffies, data->last_updated + HZ * 2))
>
> Have a patch for drivers/i2c/chips/*.
>
> It seems this has been fixed because I only found the
> problem code in drivers/i2c/chips/* in kernel source 2.6.10.
Yes, many of these have been fixed. Marcelo Parisi has been posting a
number of patches to KJML recently (check archives).
> Are there any items that need attention that it is known that
> noone is working on? What kernel tree should I be looking at?
I'm not sure there is any way to verify this without asking about
specific TODO entries. As far as a tree to base on, it's always
whatever current mainline is (2.6.12-rc3 currently).
Thanks,
Nish
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
http://lists.osdl.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-04-21 16:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-21 16:13 [KJ] Status of TODO item jiffies towards end Nish Aravamudan
-- strict thread matches above, loose matches on Subject: below --
2005-04-21 10:48 blm
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.