Subject: CVS commit: syssrc/sys/netinet
To: None <source-changes@netbsd.org>
From: Matt Thomas <matt@netbsd.org>
List: source-changes
Date: 05/07/2002 05:59:40
Module Name:	syssrc
Committed By:	matt
Date:		Tue May  7 02:59:39 UTC 2002

Modified Files:
	syssrc/sys/netinet: ip_input.c ip_var.h tcp_input.c tcp_subr.c

Log Message:
Change struct ipqe to use TAILQ's instead of LIST's (primarily for TCP's
benefit currently).  Rework tcp_reass code to optimize the 4 most likely causes
of out-of-order packets: first OoO pkt, next OoO pkt in seq, OoO pkt is part
of new chuck of OoO packets, and the OoO pkt fills the first hole.  Add evcnts
to instrument tcp_reass (enabled by the options TCP_REASS_COUNTERS).  This is
part 1/2 of tcp_reass changes.


To generate a diff of this commit:
cvs rdiff -r1.147 -r1.148 syssrc/sys/netinet/ip_input.c
cvs rdiff -r1.46 -r1.47 syssrc/sys/netinet/ip_var.h
cvs rdiff -r1.140 -r1.141 syssrc/sys/netinet/tcp_input.c
cvs rdiff -r1.125 -r1.126 syssrc/sys/netinet/tcp_subr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.