From 7f925159c708094ffeeefc8a8d1828f0d5393d0e Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sat, 12 Jul 2014 17:48:59 -0700 Subject: [PATCH] kernel - More verbose boot de-spamming * Try to fit common package siblings print lines into 80 columns. --- sys/kern/usched_dfly.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/kern/usched_dfly.c b/sys/kern/usched_dfly.c index 2989e10f3f..a7d1ac562d 100644 --- a/sys/kern/usched_dfly.c +++ b/sys/kern/usched_dfly.c @@ -2182,7 +2182,7 @@ usched_dfly_cpu_init(void) case THREAD_LEVEL: if (bootverbose) kprintf (" cpu%d - HyperThreading " - "available. Core siblings: ", + "available. Core Sibs: ", i); break; case CORE_LEVEL: @@ -2191,7 +2191,7 @@ usched_dfly_cpu_init(void) if (bootverbose) kprintf (" cpu%d - No HT available, " "multi-core/physical " - "cpu. Physical siblings: ", + "cpu. Physical Sibs: ", i); break; case CHIP_LEVEL: @@ -2200,7 +2200,7 @@ usched_dfly_cpu_init(void) if (bootverbose) kprintf (" cpu%d - No HT available, " "single-core/physical cpu. " - "Package Siblings: ", + "Package Sibs: ", i); break; default: @@ -2209,7 +2209,7 @@ usched_dfly_cpu_init(void) cache_coherent_not_supported = 1; if (bootverbose) kprintf (" cpu%d - Unknown cpunode->" - "type=%u. Siblings: ", + "type=%u. Sibs: ", i, (u_int)dd->cpunode->type); break; -- 2.41.0