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_gre.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/netinet/ip_gre.c') diff --git a/sys/netinet/ip_gre.c b/sys/netinet/ip_gre.c index 886964f2070..d6948648d25 100644 --- a/sys/netinet/ip_gre.c +++ b/sys/netinet/ip_gre.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_gre.c,v 1.27 2005/07/31 03:52:19 pascoe Exp $ */ +/* $OpenBSD: ip_gre.c,v 1.28 2006/03/04 22:40:16 brad Exp $ */ /* $NetBSD: ip_gre.c,v 1.9 1999/10/25 19:18:11 drochner Exp $ */ /* @@ -196,7 +196,7 @@ gre_input2(m , hlen, proto) bpf_mtap_af(sc->sc_if.if_bpf, af, m); #endif - s = splimp(); /* possible */ + s = splnet(); /* possible */ IF_INPUT_ENQUEUE(ifq, m); splx(s); @@ -322,7 +322,7 @@ gre_mobile_input(struct mbuf *m, ...) bpf_mtap_af(sc->sc_if.if_bpf, AF_INET, m); #endif - s = splimp(); /* possible */ + s = splnet(); /* possible */ IF_INPUT_ENQUEUE(ifq, m); splx(s); } -- cgit v1.2.3