[PATCH] cputime.h seems to assume HZ==1000

From: Roland McGrath
Date: Mon Jan 17 2005 - 21:21:44 EST


Shouldn't msecs mean msecs, not secs/HZ?

--- linux-2.6/include/asm-generic/cputime.h
+++ linux-2.6/include/asm-generic/cputime.h
@@ -35,8 +35,8 @@ typedef u64 cputime64_t;
/*
* Convert cputime to seconds and back.
*/
-#define cputime_to_secs(__ct) (jiffies_to_msecs(__ct) / HZ)
-#define secs_to_cputime(__secs) (msecs_to_jiffies(__secs * HZ))
+#define cputime_to_secs(__ct) (jiffies_to_msecs(__ct) / 1000)
+#define secs_to_cputime(__secs) (msecs_to_jiffies(__secs * 1000))

/*
* Convert cputime to timespec and back.
-
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/