diff options
author | Helge Deller | 2022-03-17 23:01:09 +0100 |
---|---|---|
committer | Helge Deller | 2022-03-17 23:01:09 +0100 |
commit | 46162ac2a6a425674b0e20a3e0668b21187f94bf (patch) | |
tree | 26f13c8ed86b88bd20a7f6d18dfd928536054d02 /arch/parisc | |
parent | 2b41be484abd81c6a43d4b171943d67af6f7c5c3 (diff) |
parisc: Improve CPU socket and core bootup info text
Improve CPU bootup info text from:
CPU1: thread -1, cpu 0, socket 1
to
CPU1: cpu core 0 of socket 1
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/kernel/topology.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/parisc/kernel/topology.c b/arch/parisc/kernel/topology.c index 0a10e4ddc528..e88a6ce7c96d 100644 --- a/arch/parisc/kernel/topology.c +++ b/arch/parisc/kernel/topology.c @@ -101,8 +101,8 @@ void __init store_cpu_topology(unsigned int cpuid) update_siblings_masks(cpuid); - pr_info("CPU%u: thread %d, cpu %d, socket %d\n", - cpuid, cpu_topology[cpuid].thread_id, + pr_info("CPU%u: cpu core %d of socket %d\n", + cpuid, cpu_topology[cpuid].core_id, cpu_topology[cpuid].socket_id); } |