diff options
| author | Jeffrey Hsu <hsu@FreeBSD.org> | 2002-06-24 16:47:02 +0000 |
|---|---|---|
| committer | Jeffrey Hsu <hsu@FreeBSD.org> | 2002-06-24 16:47:02 +0000 |
| commit | f14e4cfe330d2a29718fc5faffb0a7da0bf740ce (patch) | |
| tree | d9a9b9f469db63507e6110b66ad1e3eff0e5a678 /sys/netinet/tcp_input.c | |
| parent | f6077588492c2f82c47e60dea36c1d7a5ba59085 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_input.c')
| -rw-r--r-- | sys/netinet/tcp_input.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index d787daae7b34..6a2b69d0df46 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -2187,7 +2187,7 @@ dropafterack: &tcp_savetcp, 0); #endif if (headlocked) - INP_INFO_WUNLOCK(&tcbinfo); + INP_INFO_WUNLOCK(&tcbinfo); m_freem(m); tp->t_flags |= TF_ACKNOW; (void) tcp_output(tp); @@ -2217,7 +2217,7 @@ dropwithreset: /* IPv6 anycast check is done at tcp6_input() */ if (tp) - INP_UNLOCK(inp); + INP_UNLOCK(inp); /* * Perform bandwidth limiting. */ @@ -2241,7 +2241,7 @@ dropwithreset: (tcp_seq)0, TH_RST|TH_ACK); } if (headlocked) - INP_INFO_WUNLOCK(&tcbinfo); + INP_INFO_WUNLOCK(&tcbinfo); return; drop: @@ -2254,10 +2254,10 @@ drop: &tcp_savetcp, 0); #endif if (tp) - INP_UNLOCK(inp); + INP_UNLOCK(inp); m_freem(m); if (headlocked) - INP_INFO_WUNLOCK(&tcbinfo); + INP_INFO_WUNLOCK(&tcbinfo); return; } |
