summaryrefslogtreecommitdiff
path: root/sys/net/if_faith.c
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2006-03-04 22:40:17 +0000
committerBrad Smith <brad@cvs.openbsd.org>2006-03-04 22:40:17 +0000
commitb751ff7496fc73fe22ed7d0c2371837c4c2aed2c (patch)
treebd1ae2cb58e37d25f97c0e7f581ad0b9035bf683 /sys/net/if_faith.c
parent15e7a983128283f9a61840e1ed37255bb4ada6fe (diff)
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/net/if_faith.c')
-rw-r--r--sys/net/if_faith.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_faith.c b/sys/net/if_faith.c
index 2e66d742581..e61a9b191ef 100644
--- a/sys/net/if_faith.c
+++ b/sys/net/if_faith.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_faith.c,v 1.20 2006/01/04 06:04:42 canacar Exp $ */
+/* $OpenBSD: if_faith.c,v 1.21 2006/03/04 22:40:15 brad Exp $ */
/*
* Copyright (c) 1982, 1986, 1993
* The Regents of the University of California. All rights reserved.
@@ -180,7 +180,7 @@ faithoutput(ifp, m, dst, rt)
/* XXX do we need more sanity checks? */
m->m_pkthdr.rcvif = ifp;
- s = splimp();
+ s = splnet();
if (IF_QFULL(ifq)) {
IF_DROP(ifq);
m_freem(m);