From: blm@woodheap.org
To: kernel-janitors@vger.kernel.org
Subject: [KJ] Status of TODO item jiffies towards end
Date: Thu, 21 Apr 2005 10:48:43 +0000 [thread overview]
Message-ID: <20050421104843.GA20839@gatekeeper> (raw)
[-- 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
next reply other threads:[~2005-04-21 10:48 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-04-21 10:48 blm [this message]
-- strict thread matches above, loose matches on Subject: below --
2005-04-21 16:13 [KJ] Status of TODO item jiffies towards end Nish Aravamudan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20050421104843.GA20839@gatekeeper \
--to=blm@woodheap.org \
--cc=kernel-janitors@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.