From b751ff7496fc73fe22ed7d0c2371837c4c2aed2c Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Sat, 4 Mar 2006 22:40:17 +0000 Subject: With the exception of two other small uncommited diffs this moves the remainder of the network stack from splimp to splnet. ok miod@ --- sys/netinet/ip_ipip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/netinet/ip_ipip.c') diff --git a/sys/netinet/ip_ipip.c b/sys/netinet/ip_ipip.c index e121ece0c3e..9b6fd0c5615 100644 --- a/sys/netinet/ip_ipip.c +++ b/sys/netinet/ip_ipip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipip.c,v 1.33 2005/07/31 03:52:19 pascoe Exp $ */ +/* $OpenBSD: ip_ipip.c,v 1.34 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 @@ -365,7 +365,7 @@ ipip_input(struct mbuf *m, int iphlen, struct ifnet *gifp) m); #endif - s = splimp(); /* isn't it already? */ + s = splnet(); /* isn't it already? */ if (IF_QFULL(ifq)) { IF_DROP(ifq); m_freem(m); -- cgit v1.2.3