summaryrefslogtreecommitdiff
path: root/sys/netinet6
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2016-09-06 00:04:16 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2016-09-06 00:04:16 +0000
commit1bfbb1341f4733af2fc04e15e80077f779744a4b (patch)
tree7012cfaeb45f30e6889051122fe05c59026ac1e7 /sys/netinet6
parent6a67f8a92e71626adf0b0663f80235a0024a19e3 (diff)
pool_setipl for various netinet and netinet6 bits
thank you to everyone who helped reviewed these diffs ok mpi@
Diffstat (limited to 'sys/netinet6')
-rw-r--r--sys/netinet6/nd6.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet6/nd6.c b/sys/netinet6/nd6.c
index 6faced72f2d..216a0fb359c 100644
--- a/sys/netinet6/nd6.c
+++ b/sys/netinet6/nd6.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nd6.c,v 1.190 2016/08/22 16:01:52 mpi Exp $ */
+/* $OpenBSD: nd6.c,v 1.191 2016/09/06 00:04:15 dlg Exp $ */
/* $KAME: nd6.c,v 1.280 2002/06/08 19:52:07 itojun Exp $ */
/*
@@ -117,6 +117,7 @@ nd6_init(void)
TAILQ_INIT(&nd6_list);
pool_init(&nd6_pool, sizeof(struct llinfo_nd6), 0, 0, 0, "nd6", NULL);
+ pool_setipl(&nd6_pool, IPL_SOFTNET);
/* initialization of the default router list */
TAILQ_INIT(&nd_defrouter);