From owner-cvs-all@FreeBSD.ORG Fri Jun 22 13:50:57 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 75D1116A400; Fri, 22 Jun 2007 13:50:57 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6900E13C46A; Fri, 22 Jun 2007 13:50:57 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5MDovNV068607; Fri, 22 Jun 2007 13:50:57 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5MDovRs068603; Fri, 22 Jun 2007 13:50:57 GMT (envelope-from rrs) Message-Id: <200706221350.l5MDovRs068603@repoman.freebsd.org> From: Randall Stewart Date: Fri, 22 Jun 2007 13:50:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet sctp_indata.c sctp_indata.h sctp_input.c sctp_uio.h sctputil.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 13:50:57 -0000 rrs 2007-06-22 13:50:57 UTC FreeBSD src repository Modified files: sys/netinet sctp_indata.c sctp_indata.h sctp_input.c sctp_uio.h sctputil.c Log: - Fix stream reset so it limits the number of streams that can be listed - Fix fwd-tsn to use proper accessor so it does not overrun mbufs - Fix stream reset error reporting to actually work (it has always been broken if the peer rejects a stream reset) - Some 64 bit friendly changes Approved by: re(bmah@freebsd.org) Revision Changes Path 1.34 +12 -5 src/sys/netinet/sctp_indata.c 1.9 +1 -1 src/sys/netinet/sctp_indata.h 1.45 +45 -15 src/sys/netinet/sctp_input.c 1.24 +180 -175 src/sys/netinet/sctp_uio.h 1.48 +2 -2 src/sys/netinet/sctputil.c