cvs commit: src/sys/netinet sctp_indata.c sctp_input.c sctp_lock_bsd.h sctp_output.c sctp_pcb.c sctp_structs.h sctp_uio.h sctp_usrreq.c sctp_var.h sctputil.c sctputil.h

Randall Stewart rrs at FreeBSD.org
Thu Apr 19 11:28:44 UTC 2007


rrs         2007-04-19 11:28:43 UTC

  FreeBSD src repository

  Modified files:
    sys/netinet          sctp_indata.c sctp_input.c 
                         sctp_lock_bsd.h sctp_output.c sctp_pcb.c 
                         sctp_structs.h sctp_uio.h sctp_usrreq.c 
                         sctp_var.h sctputil.c sctputil.h 
  Log:
  - More work on making send lock contention.
  - Removed free-oqueue cache.
  - Fix counter for sq entries
  - Increased the amount of information retained
    on ASOC_TSN logging on the association.
  - Made it so with the ASOC_TSN logging on
    sending or recieving an abort we dump the log.
  - Went through and added invariant's around some
    panic's that needed them.
  - decrements went to atomic_subtact_int instead of add -1
  - Removed residual count increment that threw off a
    strm oq count.
  - Tracks and complaints if we don't have a LAST fragment and
    clean up the sp structure.
  - Track a new stat that counts number of abandoned msgs that
    happen if you close without reading.
  - Fix lookup of frag point to be aware of a 0 assoc-id.
  Reviewed by:    gnn
  
  Revision  Changes    Path
  1.17      +15 -4     src/sys/netinet/sctp_indata.c
  1.19      +3 -0      src/sys/netinet/sctp_input.c
  1.5       +8 -11     src/sys/netinet/sctp_lock_bsd.h
  1.19      +97 -34    src/sys/netinet/sctp_output.c
  1.20      +4 -13     src/sys/netinet/sctp_pcb.c
  1.13      +5 -3      src/sys/netinet/sctp_structs.h
  1.13      +2 -0      src/sys/netinet/sctp_uio.h
  1.18      +5 -1      src/sys/netinet/sctp_usrreq.c
  1.10      +6 -21     src/sys/netinet/sctp_var.h
  1.20      +64 -1     src/sys/netinet/sctputil.c
  1.13      +5 -0      src/sys/netinet/sctputil.h


More information about the cvs-src mailing list