Re: [PATCH] fix get_jiffies_64 to work on voyager

From: Andrew Morton
Date: Tue Jan 06 2004 - 12:23:55 EST


Tim Schmielau <tim@xxxxxxxxxxxxxxxxxxxxxx> wrote:
>
> #if (BITS_PER_LONG < 64)
> @@ -21,7 +21,7 @@
> #else
> static inline u64 get_jiffies_64(void)
> {
> - return (u64)jiffies;
> + return jiffies_64;
> }
> #endif

hm, why this change? Are you sure that all 64-bit architectures alias
jiffies onto jiffies_64? x86_64 seems not to.

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