From 13ce6ebdf0acd9fc3b26c48497ef2c0e8b99d074 Mon Sep 17 00:00:00 2001 From: Craig Small Date: Fri, 7 Oct 2011 14:35:16 +1100 Subject: [PATCH] Use 7 cpu numbers not 4 for Hertz Hack For the small number of devices that we cannot get Hertz out of ELF notes but the cpu numbers make sense (ie not kFreeBSD) there is a hack by using the CPU numbers. The problem is there was 4 numbers, now there are 7. This fixes the hack by adding all 7 to get a more correct number. This is from Debian patch sysinfo_7_numbers Bug-Debian: http://bugs.debian.org/460331 --- proc/sysinfo.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/proc/sysinfo.c b/proc/sysinfo.c index 85b28b7c..6396db58 100644 --- a/proc/sysinfo.c +++ b/proc/sysinfo.c @@ -153,7 +153,7 @@ unsigned long getbtime(void) { unsigned long long Hertz; static void old_Hertz_hack(void){ - unsigned long long user_j, nice_j, sys_j, other_j; /* jiffies (clock ticks) */ + unsigned long long user_j, nice_j, sys_j, other_j, wait_j, hirq_j, sirq_j, stol_j; /* jiffies (clock ticks) */ double up_1, up_2, seconds; unsigned long long jiffies; unsigned h; @@ -167,18 +167,19 @@ static void old_Hertz_hack(void){ } #endif + wait_j = hirq_j = sirq_j = stol_j = 0; savelocale = setlocale(LC_NUMERIC, NULL); setlocale(LC_NUMERIC, "C"); do{ FILE_TO_BUF(UPTIME_FILE,uptime_fd); sscanf(buf, "%lf", &up_1); /* uptime(&up_1, NULL); */ FILE_TO_BUF(STAT_FILE,stat_fd); - sscanf(buf, "cpu %Lu %Lu %Lu %Lu", &user_j, &nice_j, &sys_j, &other_j); + sscanf(buf, "cpu %Lu %Lu %Lu %Lu %Lu %Lu %Lu %Lu", &user_j, &nice_j, &sys_j, &other_j, &wait_j, &hirq_j, &sirq_j, &stol_j); FILE_TO_BUF(UPTIME_FILE,uptime_fd); sscanf(buf, "%lf", &up_2); /* uptime(&up_2, NULL); */ } while((long long)( (up_2-up_1)*1000.0/up_1 )); /* want under 0.1% error */ setlocale(LC_NUMERIC, savelocale); - jiffies = user_j + nice_j + sys_j + other_j; + jiffies = user_j + nice_j + sys_j + other_j + wait_j + hirq_j + sirq_j + stol_j ; seconds = (up_1 + up_2) / 2; h = (unsigned)( (double)jiffies/seconds/smp_num_cpus ); /* actual values used by 2.4 kernels: 32 64 100 128 1000 1024 1200 */