diff options
Diffstat (limited to 'arch/sparc64/kernel/setup.c')
-rw-r--r-- | arch/sparc64/kernel/setup.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/sparc64/kernel/setup.c b/arch/sparc64/kernel/setup.c index f4345d837284..8e8baf2354df 100644 --- a/arch/sparc64/kernel/setup.c +++ b/arch/sparc64/kernel/setup.c | |||
@@ -605,6 +605,9 @@ extern void smp_info(struct seq_file *); | |||
605 | extern void smp_bogo(struct seq_file *); | 605 | extern void smp_bogo(struct seq_file *); |
606 | extern void mmu_info(struct seq_file *); | 606 | extern void mmu_info(struct seq_file *); |
607 | 607 | ||
608 | unsigned int dcache_parity_tl1_occurred; | ||
609 | unsigned int icache_parity_tl1_occurred; | ||
610 | |||
608 | static int show_cpuinfo(struct seq_file *m, void *__unused) | 611 | static int show_cpuinfo(struct seq_file *m, void *__unused) |
609 | { | 612 | { |
610 | seq_printf(m, | 613 | seq_printf(m, |
@@ -615,6 +618,8 @@ static int show_cpuinfo(struct seq_file *m, void *__unused) | |||
615 | "type\t\t: sun4u\n" | 618 | "type\t\t: sun4u\n" |
616 | "ncpus probed\t: %ld\n" | 619 | "ncpus probed\t: %ld\n" |
617 | "ncpus active\t: %ld\n" | 620 | "ncpus active\t: %ld\n" |
621 | "D$ parity tl1\t: %u\n" | ||
622 | "I$ parity tl1\t: %u\n" | ||
618 | #ifndef CONFIG_SMP | 623 | #ifndef CONFIG_SMP |
619 | "Cpu0Bogo\t: %lu.%02lu\n" | 624 | "Cpu0Bogo\t: %lu.%02lu\n" |
620 | "Cpu0ClkTck\t: %016lx\n" | 625 | "Cpu0ClkTck\t: %016lx\n" |
@@ -627,7 +632,9 @@ static int show_cpuinfo(struct seq_file *m, void *__unused) | |||
627 | (prom_prev >> 8) & 0xff, | 632 | (prom_prev >> 8) & 0xff, |
628 | prom_prev & 0xff, | 633 | prom_prev & 0xff, |
629 | (long)num_possible_cpus(), | 634 | (long)num_possible_cpus(), |
630 | (long)num_online_cpus() | 635 | (long)num_online_cpus(), |
636 | dcache_parity_tl1_occurred, | ||
637 | icache_parity_tl1_occurred | ||
631 | #ifndef CONFIG_SMP | 638 | #ifndef CONFIG_SMP |
632 | , cpu_data(0).udelay_val/(500000/HZ), | 639 | , cpu_data(0).udelay_val/(500000/HZ), |
633 | (cpu_data(0).udelay_val/(5000/HZ)) % 100, | 640 | (cpu_data(0).udelay_val/(5000/HZ)) % 100, |