diff options
author | Visa Hankala <visa@cvs.openbsd.org> | 2017-09-17 06:10:54 +0000 |
---|---|---|
committer | Visa Hankala <visa@cvs.openbsd.org> | 2017-09-17 06:10:54 +0000 |
commit | 60d959266cf7d4da2b5f033239a175ef67688b83 (patch) | |
tree | 424675d02911d5b9275d9eb658fd1bb77daae62b /sys | |
parent | a3ce51d35cab58c9c9c5edead8f5fc7109f09ccb (diff) |
Do not print "cpuX launched" any longer. This reduces dmesg spam
on multicore systems.
Diffstat (limited to 'sys')
-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); |