diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2016-09-06 00:04:16 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2016-09-06 00:04:16 +0000 |
commit | 1bfbb1341f4733af2fc04e15e80077f779744a4b (patch) | |
tree | 7012cfaeb45f30e6889051122fe05c59026ac1e7 /sys/netinet/if_ether.c | |
parent | 6a67f8a92e71626adf0b0663f80235a0024a19e3 (diff) |
pool_setipl for various netinet and netinet6 bits
thank you to everyone who helped reviewed these diffs
ok mpi@
Diffstat (limited to 'sys/netinet/if_ether.c')
-rw-r--r-- | sys/netinet/if_ether.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index cab6f574d10..63369753745 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ether.c,v 1.221 2016/08/22 16:01:52 mpi Exp $ */ +/* $OpenBSD: if_ether.c,v 1.222 2016/09/06 00:04:15 dlg Exp $ */ /* $NetBSD: if_ether.c,v 1.31 1996/05/11 12:59:58 mycroft Exp $ */ /* @@ -137,6 +137,7 @@ arp_rtrequest(struct ifnet *ifp, int req, struct rtentry *rt) arpinit_done = 1; pool_init(&arp_pool, sizeof(struct llinfo_arp), 0, 0, 0, "arp", NULL); + pool_setipl(&arp_pool, IPL_SOFTNET); timeout_set(&arptimer_to, arptimer, &arptimer_to); timeout_add_sec(&arptimer_to, 1); |