diff options
author | 2017-09-17 06:10:53 +0000 | |
---|---|---|
committer | 2017-09-17 06:10:53 +0000 | |
commit | a37fefdfecd9c495ac11851de471031357419421 (patch) | |
tree | dae8550ff0e933dcc143bf3ccde42c06dfbf208b | |
parent | we already have a comparison function for libobjects, so move it up to (diff) | |
download | wireguard-openbsd-a37fefdfecd9c495ac11851de471031357419421.tar.xz wireguard-openbsd-a37fefdfecd9c495ac11851de471031357419421.zip |
Do not print "cpuX launched" any longer. This reduces dmesg spam
on multicore systems.
-rw-r--r-- | sys/arch/octeon/octeon/machdep.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/octeon/octeon/machdep.c b/sys/arch/octeon/octeon/machdep.c index 26cee405272..b4ee447d9ac 100644 --- a/sys/arch/octeon/octeon/machdep.c +++ b/sys/arch/octeon/octeon/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.99 2017/09/02 15:56:29 visa Exp $ */ +/* $OpenBSD: machdep.c,v 1.100 2017/09/17 06:10:53 visa Exp $ */ /* * Copyright (c) 2009, 2010 Miodrag Vallat. @@ -907,8 +907,6 @@ hw_cpu_hatch(struct cpu_info *ci) Octeon_ConfigCache(ci); Mips_SyncCache(ci); - printf("cpu%lu launched\n", cpu_number()); - (*md_startclock)(ci); ncpus++; cpuset_add(&cpus_running, ci); |