From 8e94025b413ebc581da6b27887f6d408bc8a757e Mon Sep 17 00:00:00 2001 From: "Bjoern A. Zeeb" Date: Fri, 20 Oct 2017 21:40:59 +0000 Subject: 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 --- sys/net/vnet.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sys/net/vnet.c') 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, -- cgit v1.2.3