From: Sascha Wildner Date: Sat, 2 Aug 2014 12:27:31 +0000 (+0200) Subject: kernel/usched: Make the bootverbose messages a bit more informative. X-Git-Tag: v4.1.0~342 X-Git-Url: https://gitweb.dragonflybsd.org/~tuxillo/dragonfly.git/commitdiff_plain/1d136c469d7d78f87c8739496da0f7b42431f86a kernel/usched: Make the bootverbose messages a bit more informative. Talk about which scheduler this is about. While here, change Sibs -> siblings. --- diff --git a/sys/kern/usched_bsd4.c b/sys/kern/usched_bsd4.c index 295a8d5842..5856e42dbb 100644 --- a/sys/kern/usched_bsd4.c +++ b/sys/kern/usched_bsd4.c @@ -1883,7 +1883,7 @@ sched_thread_cpu_init(void) int cache_coherent_not_supported = 0; if (bootverbose) - kprintf("Start scheduler helpers on cpus:\n"); + kprintf("Start usched_bsd4 helpers on cpus:\n"); sysctl_ctx_init(&usched_bsd4_sysctl_ctx); usched_bsd4_sysctl_tree = diff --git a/sys/kern/usched_dfly.c b/sys/kern/usched_dfly.c index a7d1ac562d..2b03f56852 100644 --- a/sys/kern/usched_dfly.c +++ b/sys/kern/usched_dfly.c @@ -2144,7 +2144,7 @@ usched_dfly_cpu_init(void) int cache_coherent_not_supported = 0; if (bootverbose) - kprintf("Start scheduler helpers on cpus:\n"); + kprintf("Start usched_dfly helpers on cpus:\n"); sysctl_ctx_init(&usched_dfly_sysctl_ctx); usched_dfly_sysctl_tree = @@ -2182,7 +2182,7 @@ usched_dfly_cpu_init(void) case THREAD_LEVEL: if (bootverbose) kprintf (" cpu%d - HyperThreading " - "available. Core Sibs: ", + "available. Core siblings: ", 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 Sibs: ", + "cpu. Physical siblings: ", 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 Sibs: ", + "Package siblings: ", 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. Sibs: ", + "type=%u. siblings: ", i, (u_int)dd->cpunode->type); break;