Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Jun 2001 20:21:47 -0700 (PDT)
From:      Mike Silbersack <silby@FreeBSD.org>
To:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/sys/netinet tcp_input.c tcp_output.c tcp_subr.c tcp_timer.c tcp_usrreq.c tcp_var.h
Message-ID:  <200106230321.f5N3Llv09510@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
silby       2001/06/22 20:21:47 PDT

  Modified files:
    sys/netinet          tcp_input.c tcp_output.c tcp_subr.c 
                         tcp_timer.c tcp_usrreq.c tcp_var.h 
  Log:
  Eliminate the allocation of a tcp template structure for each
  connection.  The information contained in a tcptemp can be
  reconstructed from a tcpcb when needed.
  
  Previously, tcp templates required the allocation of one
  mbuf per connection.  On large systems, this change should
  free up a large number of mbufs.
  
  Reviewed by:	bmilekic, jlemon, ru
  MFC after: 2 weeks
  
  Revision  Changes    Path
  1.134     +1 -7      src/sys/netinet/tcp_input.c
  1.52      +3 -11     src/sys/netinet/tcp_output.c
  1.106     +55 -49    src/sys/netinet/tcp_subr.c
  1.45      +10 -4     src/sys/netinet/tcp_timer.c
  1.62      +1 -13     src/sys/netinet/tcp_usrreq.c
  1.69      +4 -3      src/sys/netinet/tcp_var.h


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200106230321.f5N3Llv09510>