[Midnightbsd-cvs] src [11979] trunk/sys: fix OS name
root at midnightbsd.org
root at midnightbsd.org
Sun Jul 29 13:45:01 EDT 2018
Revision: 11979
http://svnweb.midnightbsd.org/src/?rev=11979
Author: root
Date: 2018-07-29 13:45:01 -0400 (Sun, 29 Jul 2018)
Log Message:
-----------
fix OS name
Modified Paths:
--------------
trunk/sys/amd64/amd64/mp_machdep.c
trunk/sys/i386/i386/mp_machdep.c
trunk/sys/kern/subr_smp.c
Modified: trunk/sys/amd64/amd64/mp_machdep.c
===================================================================
--- trunk/sys/amd64/amd64/mp_machdep.c 2018-07-29 17:24:31 UTC (rev 11978)
+++ trunk/sys/amd64/amd64/mp_machdep.c 2018-07-29 17:45:01 UTC (rev 11979)
@@ -590,7 +590,7 @@
const char *hyperthread;
int i;
- printf("FreeBSD/SMP: %d package(s) x %d core(s)",
+ printf("MidnightBSD/SMP: %d package(s) x %d core(s)",
mp_ncpus / (cpu_cores * cpu_logical), cpu_cores);
if (hyperthreading_cpus > 1)
printf(" x %d HTT threads", cpu_logical);
Modified: trunk/sys/i386/i386/mp_machdep.c
===================================================================
--- trunk/sys/i386/i386/mp_machdep.c 2018-07-29 17:24:31 UTC (rev 11978)
+++ trunk/sys/i386/i386/mp_machdep.c 2018-07-29 17:45:01 UTC (rev 11979)
@@ -631,7 +631,7 @@
const char *hyperthread;
int i;
- printf("FreeBSD/SMP: %d package(s) x %d core(s)",
+ printf("MidnightBSD/SMP: %d package(s) x %d core(s)",
mp_ncpus / (cpu_cores * cpu_logical), cpu_cores);
if (hyperthreading_cpus > 1)
printf(" x %d HTT threads", cpu_logical);
Modified: trunk/sys/kern/subr_smp.c
===================================================================
--- trunk/sys/kern/subr_smp.c 2018-07-29 17:24:31 UTC (rev 11978)
+++ trunk/sys/kern/subr_smp.c 2018-07-29 17:45:01 UTC (rev 11979)
@@ -149,7 +149,7 @@
}
cpu_mp_start();
- printf("FreeBSD/SMP: Multiprocessor System Detected: %d CPUs\n",
+ printf("MidnightBSD/SMP: Multiprocessor System Detected: %d CPUs\n",
mp_ncpus);
cpu_mp_announce();
}
More information about the Midnightbsd-cvs
mailing list