Further silence ipsec_attach().

"initializing IPsec..."" done" is of somewhat limited value.
(I normally wouldn't care; but on my box the (root) uhub(4)s attach
between the first and last portion of the line.)
This commit is contained in:
jakllsch 2010-07-21 20:41:31 +00:00
parent 0ccb4e68f8
commit e7bf96a4c3

View File

@ -1,4 +1,4 @@
/* $NetBSD: ipsec.c,v 1.47 2010/01/31 00:43:38 hubertf Exp $ */
/* $NetBSD: ipsec.c,v 1.48 2010/07/21 20:41:31 jakllsch Exp $ */
/* $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/netipsec/ipsec.c,v 1.2.2.2 2003/07/01 01:38:13 sam Exp $ */
/* $KAME: ipsec.c,v 1.103 2001/05/24 07:14:18 sakane Exp $ */
@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ipsec.c,v 1.47 2010/01/31 00:43:38 hubertf Exp $");
__KERNEL_RCSID(0, "$NetBSD: ipsec.c,v 1.48 2010/07/21 20:41:31 jakllsch Exp $");
/*
* IPsec controller part.
@ -2280,7 +2280,6 @@ ipsec_attach(void)
ipsecstat_percpu = percpu_alloc(sizeof(uint64_t) * IPSEC_NSTATS);
aprint_verbose("initializing IPsec...");
ah_attach();
esp_attach();
ipcomp_attach();
@ -2288,6 +2287,5 @@ ipsec_attach(void)
#ifdef TCP_SIGNATURE
tcpsignature_attach();
#endif
aprint_verbose(" done\n");
}
#endif /* __NetBSD__ */