diff options
author | 2006-03-04 22:40:15 +0000 | |
---|---|---|
committer | 2006-03-04 22:40:15 +0000 | |
commit | aaed91e5ef42bd30ba3177914c849703310a8bc1 (patch) | |
tree | d3dfc90d75405e26b2cdca7e11dde2ea26c23fca /sys/netinet/tcp_subr.c | |
parent | | -> || (diff) | |
download | wireguard-openbsd-aaed91e5ef42bd30ba3177914c849703310a8bc1.tar.xz wireguard-openbsd-aaed91e5ef42bd30ba3177914c849703310a8bc1.zip |
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/tcp_subr.c')
-rw-r--r-- | sys/netinet/tcp_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index bea45d5015b..13dc5c7ec40 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_subr.c,v 1.92 2005/09/28 15:20:12 brad Exp $ */ +/* $OpenBSD: tcp_subr.c,v 1.93 2006/03/04 22:40:16 brad Exp $ */ /* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */ /* @@ -626,7 +626,7 @@ tcp_drain() { struct inpcb *inp; - /* called at splimp() */ + /* called at splnet() */ CIRCLEQ_FOREACH(inp, &tcbtable.inpt_queue, inp_queue) { struct tcpcb *tp = (struct tcpcb *)inp->inp_ppcb; |