diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-03-04 22:40:17 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-03-04 22:40:17 +0000 |
commit | b751ff7496fc73fe22ed7d0c2371837c4c2aed2c (patch) | |
tree | bd1ae2cb58e37d25f97c0e7f581ad0b9035bf683 /sys/netipx/ipx_pcb.c | |
parent | 15e7a983128283f9a61840e1ed37255bb4ada6fe (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/netipx/ipx_pcb.c')
-rw-r--r-- | sys/netipx/ipx_pcb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netipx/ipx_pcb.c b/sys/netipx/ipx_pcb.c index 929498843ca..48315371754 100644 --- a/sys/netipx/ipx_pcb.c +++ b/sys/netipx/ipx_pcb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipx_pcb.c,v 1.10 2003/12/10 07:22:43 itojun Exp $ */ +/* $OpenBSD: ipx_pcb.c,v 1.11 2006/03/04 22:40:16 brad Exp $ */ /*- * @@ -317,7 +317,7 @@ ipx_pcbnotify(dst, errno, notify, param) long param; { struct ipxpcb *ipxp, *oinp; - int s = splimp(); + int s = splnet(); for (ipxp = ipxcbtable.ipxpt_queue.cqh_first; ipxp != (struct ipxpcb *)&ipxcbtable.ipxpt_queue;) { |