aboutsummaryrefslogtreecommitdiff
path: root/sys/net/vnet.c
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2017-10-20 21:40:59 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2017-10-20 21:40:59 +0000
commit8e94025b413ebc581da6b27887f6d408bc8a757e (patch)
tree98c014987743665a7489fdffd1140e6b635188ed /sys/net/vnet.c
parenteadbeae5e7c26bbdaf7daa29baf51a6696021254 (diff)
downloadsrc-8e94025b413ebc581da6b27887f6d408bc8a757e.tar.gz
src-8e94025b413ebc581da6b27887f6d408bc8a757e.zip
With r181803 on 2008-08-17 23:27:27Z the first VIMAGE commit went into
HEAD. Enable VIMAGE in GENERIC kernels and some others (where GENERIC does not exist) on HEAD. Disable building LINT-VIMAGE with VIMAGE being default. This should give it a lot more exposure in the run-up to 12 to help us evaluate whether to keep it on by default or not. We are also hoping to get better performance testing. The feature can be disabled using nooptions. Requested by: many Reviewed by: kristof, emaste, hiren X-MFC after: never Relnotes: yes Differential Revision: https://reviews.freebsd.org/D12639
Notes
Notes: svn path=/head/; revision=324810
Diffstat (limited to 'sys/net/vnet.c')
-rw-r--r--sys/net/vnet.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/net/vnet.c b/sys/net/vnet.c
index b2cad6302253..eb07efbf4fb3 100644
--- a/sys/net/vnet.c
+++ b/sys/net/vnet.c
@@ -312,9 +312,8 @@ static void
vnet0_init(void *arg __unused)
{
- /* Warn people before take off - in case we crash early. */
- printf("WARNING: VIMAGE (virtualized network stack) is a highly "
- "experimental feature.\n");
+ if (bootverbose)
+ printf("VIMAGE (virtualized network stack) enabled\n");
/*
* We MUST clear curvnet in vi_init_done() before going SMP,