summaryrefslogtreecommitdiff
path: root/sys/netinet/if_ether.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/netinet/if_ether.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/netinet/if_ether.c')
-rw-r--r--sys/netinet/if_ether.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c
index 4bd58fa0e4f..74b5a5b5825 100644
--- a/sys/netinet/if_ether.c
+++ b/sys/netinet/if_ether.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ether.c,v 1.61 2005/11/29 02:59:42 jolan Exp $ */
+/* $OpenBSD: if_ether.c,v 1.62 2006/03/04 22:40:16 brad Exp $ */
/* $NetBSD: if_ether.c,v 1.31 1996/05/11 12:59:58 mycroft Exp $ */
/*
@@ -464,7 +464,7 @@ arpintr()
int s, len;
while (arpintrq.ifq_head) {
- s = splimp();
+ s = splnet();
IF_DEQUEUE(&arpintrq, m);
splx(s);
if (m == 0 || (m->m_flags & M_PKTHDR) == 0)