Skip to content

Commit 46162ac

Browse files
committed
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>
1 parent 2b41be4 commit 46162ac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

arch/parisc/kernel/topology.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ void __init store_cpu_topology(unsigned int cpuid)
101101

102102
update_siblings_masks(cpuid);
103103

104-
pr_info("CPU%u: thread %d, cpu %d, socket %d\n",
105-
cpuid, cpu_topology[cpuid].thread_id,
104+
pr_info("CPU%u: cpu core %d of socket %d\n",
105+
cpuid,
106106
cpu_topology[cpuid].core_id,
107107
cpu_topology[cpuid].socket_id);
108108
}

0 commit comments

Comments
 (0)