Skip to content

Commit 4bf9636

Browse files
pavelmachektorvalds
authored andcommitted
Revert "ARM: 7830/1: delay: don't bother reporting bogomips in /proc/cpuinfo"
Commit 9fc2105 ("ARM: 7830/1: delay: don't bother reporting bogomips in /proc/cpuinfo") breaks audio in python, and probably elsewhere, with message FATAL: cannot locate cpu MHz in /proc/cpuinfo I'm not the first one to hit it, see for example https://theredblacktree.wordpress.com/2014/08/10/fatal-cannot-locate-cpu-mhz-in-proccpuinfo/ https://devtalk.nvidia.com/default/topic/765800/workaround-for-fatal-cannot-locate-cpu-mhz-in-proc-cpuinf/?offset=1 Reading original changelog, I have to say "Stop breaking working setups. You know who you are!". Signed-off-by: Pavel Machek <pavel@ucw.cz> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent d753856 commit 4bf9636

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

arch/arm/kernel/setup.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1046,6 +1046,15 @@ static int c_show(struct seq_file *m, void *v)
10461046
seq_printf(m, "model name\t: %s rev %d (%s)\n",
10471047
cpu_name, cpuid & 15, elf_platform);
10481048

1049+
#if defined(CONFIG_SMP)
1050+
seq_printf(m, "BogoMIPS\t: %lu.%02lu\n",
1051+
per_cpu(cpu_data, i).loops_per_jiffy / (500000UL/HZ),
1052+
(per_cpu(cpu_data, i).loops_per_jiffy / (5000UL/HZ)) % 100);
1053+
#else
1054+
seq_printf(m, "BogoMIPS\t: %lu.%02lu\n",
1055+
loops_per_jiffy / (500000/HZ),
1056+
(loops_per_jiffy / (5000/HZ)) % 100);
1057+
#endif
10491058
/* dump out the processor features */
10501059
seq_puts(m, "Features\t: ");
10511060

arch/arm/kernel/smp.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,18 @@ asmlinkage void secondary_start_kernel(void)
387387

388388
void __init smp_cpus_done(unsigned int max_cpus)
389389
{
390+
int cpu;
391+
unsigned long bogosum = 0;
392+
393+
for_each_online_cpu(cpu)
394+
bogosum += per_cpu(cpu_data, cpu).loops_per_jiffy;
395+
396+
printk(KERN_INFO "SMP: Total of %d processors activated "
397+
"(%lu.%02lu BogoMIPS).\n",
398+
num_online_cpus(),
399+
bogosum / (500000/HZ),
400+
(bogosum / (5000/HZ)) % 100);
401+
390402
hyp_mode_check();
391403
}
392404

0 commit comments

Comments
 (0)