cvs commit: src/sys/netinet in_pcb.c tcp_input.c tcp_subr.c tcp_timer.c tcp_timer.h tcp_var.h

Gleb Smirnoff glebius at FreeBSD.org
Fri Sep 15 02:51:18 PDT 2006


glebius     2006-09-15 09:51:06 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/netinet          in_pcb.c tcp_input.c tcp_subr.c 
                         tcp_timer.c tcp_timer.h tcp_var.h 
  Log:
  Merge a bunch of changes to TCP compressed TIME_WAIT state handling
  that was done by myself and ru@ in HEAD:
  
  o Remove a code from in in_pcblookup_local() that can lead to
    million times looping in this function.
  o Rewrite the storage of tcptw entries to simple TAILQ. The
    more complex double LIST is not needed anymore since T/TCP
    is removed.
  o Add possibility to change net.inet.tcp.maxtcptw via sysctl
    and load time tunable. Do not modify maxtcptw if it was set
    explicitly, if maxsockets is modified.
  o Add sysctl that allows to suppress creating time wait states
    for sockets, where both endpoints are local.
  
  Approved by:    re (kensmith)
  
  Revision    Changes    Path
  1.165.2.5   +0 -13     src/sys/netinet/in_pcb.c
  1.281.2.10  +2 -2      src/sys/netinet/tcp_input.c
  1.228.2.10  +49 -13    src/sys/netinet/tcp_subr.c
  1.74.2.5    +20 -41    src/sys/netinet/tcp_timer.c
  1.27.2.3    +1 -1      src/sys/netinet/tcp_timer.h
  1.126.2.2   +1 -1      src/sys/netinet/tcp_var.h


More information about the cvs-src mailing list