patch-2.2.18 linux/arch/sparc64/kernel/smp.c
Next file: linux/arch/sparc64/kernel/sparc64_ksyms.c
Previous file: linux/arch/sparc64/kernel/setup.c
Back to the patch index
Back to the overall index
- Lines: 31
- Date:
Sat Oct 14 00:28:12 2000
- Orig file:
v2.2.17/arch/sparc64/kernel/smp.c
- Orig date:
Fri Apr 21 12:45:48 2000
diff -u --new-file --recursive --exclude-from /usr/src/exclude v2.2.17/arch/sparc64/kernel/smp.c linux/arch/sparc64/kernel/smp.c
@@ -78,8 +78,8 @@
if(cpu_present_map & (1UL << i))
len += sprintf(buf + len,
"Cpu%dBogo\t: %lu.%02lu\n",
- i, cpu_data[i].udelay_val / 500000,
- (cpu_data[i].udelay_val / 5000) % 100);
+ i, cpu_data[i].udelay_val / (500000/HZ),
+ (cpu_data[i].udelay_val / (5000/HZ)) % 100);
return len;
}
@@ -91,7 +91,7 @@
cpu_data[id].bh_count = 0;
/* multiplier and counter set by
smp_setup_percpu_timer() */
- cpu_data[id].udelay_val = loops_per_sec;
+ cpu_data[id].udelay_val = loops_per_jiffy;
cpu_data[id].pgcache_size = 0;
cpu_data[id].pte_cache[0] = NULL;
@@ -280,8 +280,8 @@
}
printk("Total of %d processors activated (%lu.%02lu BogoMIPS).\n",
cpucount + 1,
- (bogosum + 2500)/500000,
- ((bogosum + 2500)/5000)%100);
+ (bogosum + 2500)/(500000/HZ),
+ ((bogosum + 2500)/(5000/HZ))%100);
smp_activated = 1;
smp_num_cpus = cpucount + 1;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)