From owner-svn-src-all@FreeBSD.ORG Thu May 7 16:42:45 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE8241065677; Thu, 7 May 2009 16:42:45 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CD4C28FC08; Thu, 7 May 2009 16:42:45 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n47GgjRV061755; Thu, 7 May 2009 16:42:45 GMT (envelope-from rrs@svn.freebsd.org) Received: (from rrs@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n47GgjmJ061754; Thu, 7 May 2009 16:42:45 GMT (envelope-from rrs@svn.freebsd.org) Message-Id: <200905071642.n47GgjmJ061754@svn.freebsd.org> From: Randall Stewart Date: Thu, 7 May 2009 16:42:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r191890 - head/sys/netinet X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 May 2009 16:42:46 -0000 Author: rrs Date: Thu May 7 16:42:45 2009 New Revision: 191890 URL: http://svn.freebsd.org/changeset/base/191890 Log: ABI expansions to hopefully future-proof our MIB/netstat code for 8.0 Modified: head/sys/netinet/sctp_uio.h Modified: head/sys/netinet/sctp_uio.h ============================================================================== --- head/sys/netinet/sctp_uio.h Thu May 7 16:31:50 2009 (r191889) +++ head/sys/netinet/sctp_uio.h Thu May 7 16:42:45 2009 (r191890) @@ -764,6 +764,8 @@ struct sctp_timeval { }; struct sctpstat { + struct sctp_timeval sctps_discontinuitytime; /* sctpStats 18 + * (TimeStamp) */ /* MIB according to RFC 3873 */ uint32_t sctps_currestab; /* sctpStats 1 (Gauge32) */ uint32_t sctps_activeestab; /* sctpStats 2 (Counter32) */ @@ -948,8 +950,8 @@ struct sctpstat { uint32_t sctps_fwdtsn_map_over; /* number of map array over-runs via * fwd-tsn's */ - struct sctp_timeval sctps_discontinuitytime; /* sctpStats 18 - * (TimeStamp) */ + uint32_t sctps_reserved[32]; /* Future ABI compat - remove int's + * from here when adding new */ }; #define SCTP_STAT_INCR(_x) SCTP_STAT_INCR_BY(_x,1)