bug in jiffy time comparison macros

From: Ralph Campbell
Date: Tue Jun 10 2008 - 20:29:53 EST


It may just be me :-) but this looks like a bug:
In the current include/linux/jiffies.h:

#define time_before(a,b) time_after(b,a)

Shouldn't this be:

#define time_before(a,b) time_after_eq(b,a)

There are a number of similar macros which fail
to change before to after_eq, or before_eq to after,
etc.

--
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/