Re: MSEC_TO_JIFFIES is messed up...
From: Jeff Garzik
Date: Wed May 12 2004 - 15:51:54 EST
Jan Olderdissen wrote:
Couple nitpicks:
#if HZ=1000
#if HZ==1000
#define MSEC_TO_JIFFIES(msec) (msec)
#define JIFFIES_TO_MESC(jiffies) (jiffies)
#elif HZ=100
#elif HZ==100
#define MSEC_TO_JIFFIES(msec) (msec * 10)
#define JIFFIES_TO_MESC(jiffies) (jiffies / 10)
#define JIFFIES_TO_MSEC(jiffies) (jiffies / 10)
#else
#define MSEC_TO_JIFFIES(msec) ((HZ * (msec) + 999) / 1000)
#define JIFFIES_TO_MSEC(jiffies) ...
#endif
And let's use something other than the name of a global variable in the
macros... it hurts my brain, at least... :)
Jeff
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/