[PATCH] for /proc/cpuinfo MHz

From: Kohtala Marko (kohtala@trshp.ntc.nokia.com)
Date: Wed Nov 22 2000 - 17:40:50 EST


cat /proc/cpuinfo shows like this for 2.4.0-test11 (also in ac2)
cpu MHz : 132.000956

The "000" seems to be excess. linux/arch/i386/kernel/time.c has it
right in time_init().

diff -u linux/arch/i386/kernel/setup.c\~ linux/arch/i386/kernel/setup.c
--- linux/arch/i386/kernel/setup.c~ Wed Nov 22 21:43:15 2000
+++ linux/arch/i386/kernel/setup.c Thu Nov 23 00:16:32 2000
@@ -2113,7 +2113,7 @@
                         p += sprintf(p, "stepping\t: unknown\n");
 
                 if ( test_bit(X86_FEATURE_TSC, &c->x86_capability) ) {
- p += sprintf(p, "cpu MHz\t\t: %lu.%06lu\n",
+ p += sprintf(p, "cpu MHz\t\t: %lu.%03lu\n",
                                 cpu_khz / 1000, (cpu_khz % 1000));
                 }

-- 

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Thu Nov 23 2000 - 21:00:24 EST