diff options
author | David S. Miller <davem@davemloft.net> | 2011-07-28 23:31:26 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-07-28 23:31:26 -0700 |
commit | ac85fe8b21248054851e05bfaa352562e5b06dd3 (patch) | |
tree | 4c666e39ff9383180ea33e1246af5eafaac64954 /arch/sparc/kernel/cpu.c | |
parent | 55f9c40ff632d03c527d6a6ceddcda0a224587a6 (diff) |
sparc: Sanitize cpu feature detection and reporting.
Instead of evaluating the cpu features for ELF_HWCAP every exec,
calculate it once at boot time.
Add AV_SPARC_* capability flag bits, compatible with what Solaris
reports to applications.
Report these capabilities once in the kernel log, and also via
/proc/cpuinfo in a new "cpucaps" entry.
If available, fetch the cpu features from the machine description
'hwcap-list' property of the 'cpu' node.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/kernel/cpu.c')
-rw-r--r-- | arch/sparc/kernel/cpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sparc/kernel/cpu.c b/arch/sparc/kernel/cpu.c index 17cf290dc2bc..9810fd881058 100644 --- a/arch/sparc/kernel/cpu.c +++ b/arch/sparc/kernel/cpu.c @@ -396,6 +396,7 @@ static int show_cpuinfo(struct seq_file *m, void *__unused) , cpu_data(0).clock_tick #endif ); + cpucap_info(m); #ifdef CONFIG_SMP smp_bogo(m); #endif |