diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2006-04-04 12:26:07 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2006-04-04 12:26:07 +0000 |
| commit | ae0e714308e5e4847f5dba83282b3d2f2ed95fbc (patch) | |
| tree | 3ae678c38dc3a2f611a58b8c87c8c1104c4a32b7 /sys/netinet/tcp_reass.c | |
| parent | 46587ab89820df1469c323e7e729824f6fbf544a (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_reass.c')
| -rw-r--r-- | sys/netinet/tcp_reass.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/netinet/tcp_reass.c b/sys/netinet/tcp_reass.c index 8662ffca7809..ad94e76b7aa8 100644 --- a/sys/netinet/tcp_reass.c +++ b/sys/netinet/tcp_reass.c @@ -3156,6 +3156,15 @@ tcp_timewait(tw, to, th, m, tlen) const int isipv6 = 0; #endif + /* + * XXXRW: Time wait state for inpcb has been recycled, but inpcb is + * still present. This is undesirable, but temporarily necessary + * until we work out how to handle inpcb's who's timewait state has + * been removed. + */ + if (tw == NULL) + goto drop; + /* tcbinfo lock required for tcp_twclose(), tcp_2msl_reset. */ INP_INFO_WLOCK_ASSERT(&tcbinfo); INP_LOCK_ASSERT(tw->tw_inpcb); |
