parisc: Improve CPU socket and core bootup info text
authorHelge Deller <deller@gmx.de>
Thu, 17 Mar 2022 22:01:09 +0000 (23:01 +0100)
committerHelge Deller <deller@gmx.de>
Thu, 17 Mar 2022 22:01:09 +0000 (23:01 +0100)
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>
arch/parisc/kernel/topology.c

index 0a10e4d..e88a6ce 100644 (file)
@@ -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);
 }