diff options
author | 2006-03-04 22:40:15 +0000 | |
---|---|---|
committer | 2006-03-04 22:40:15 +0000 | |
commit | aaed91e5ef42bd30ba3177914c849703310a8bc1 (patch) | |
tree | d3dfc90d75405e26b2cdca7e11dde2ea26c23fca /sys/netinet/ipsec_input.c | |
parent | | -> || (diff) | |
download | wireguard-openbsd-aaed91e5ef42bd30ba3177914c849703310a8bc1.tar.xz wireguard-openbsd-aaed91e5ef42bd30ba3177914c849703310a8bc1.zip |
With the exception of two other small uncommited diffs this moves
the remainder of the network stack from splimp to splnet.
ok miod@
Diffstat (limited to 'sys/netinet/ipsec_input.c')
-rw-r--r-- | sys/netinet/ipsec_input.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/ipsec_input.c b/sys/netinet/ipsec_input.c index aaddbf4a778..84292f88471 100644 --- a/sys/netinet/ipsec_input.c +++ b/sys/netinet/ipsec_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_input.c,v 1.77 2006/01/13 10:11:23 mpf Exp $ */ +/* $OpenBSD: ipsec_input.c,v 1.78 2006/03/04 22:40:16 brad Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -676,7 +676,7 @@ int ah4_input_cb(struct mbuf *m, ...) { struct ifqueue *ifq = &ipintrq; - int s = splimp(); + int s = splnet(); /* * Interface pointer is already in first mbuf; chop off the @@ -731,7 +731,7 @@ int esp4_input_cb(struct mbuf *m, ...) { struct ifqueue *ifq = &ipintrq; - int s = splimp(); + int s = splnet(); /* * Interface pointer is already in first mbuf; chop off the @@ -773,7 +773,7 @@ int ipcomp4_input_cb(struct mbuf *m, ...) { struct ifqueue *ifq = &ipintrq; - int s = splimp(); + int s = splnet(); /* * Interface pointer is already in first mbuf; chop off the |