From owner-svn-src-all@freebsd.org Fri Aug 25 21:13:54 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7109CDE1ABC; Fri, 25 Aug 2017 21:13:54 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.glebi.us (glebi.us [96.95.210.25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "cell.glebi.us", Issuer "cell.glebi.us" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 57A2070F1D; Fri, 25 Aug 2017 21:13:53 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.glebi.us (localhost [127.0.0.1]) by cell.glebi.us (8.15.2/8.15.2) with ESMTPS id v7PLDlem025824 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 25 Aug 2017 14:13:47 -0700 (PDT) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.glebi.us (8.15.2/8.15.2/Submit) id v7PLDlo3025823; Fri, 25 Aug 2017 14:13:47 -0700 (PDT) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.glebi.us: glebius set sender to glebius@FreeBSD.org using -f Date: Fri, 25 Aug 2017 14:13:47 -0700 From: Gleb Smirnoff To: Sean Bruno Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r322900 - in head: . sys/netinet sys/sys usr.bin/netstat Message-ID: <20170825211347.GO1071@FreeBSD.org> References: <201708251941.v7PJfcI5040915@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201708251941.v7PJfcI5040915@repo.freebsd.org> User-Agent: Mutt/1.8.3 (2017-05-23) X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 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: Fri, 25 Aug 2017 21:13:54 -0000 Sean, On Fri, Aug 25, 2017 at 07:41:38PM +0000, Sean Bruno wrote: S> Modified: head/sys/netinet/tcp_var.h S> ============================================================================== S> --- head/sys/netinet/tcp_var.h Fri Aug 25 19:06:36 2017 (r322899) S> +++ head/sys/netinet/tcp_var.h Fri Aug 25 19:41:38 2017 (r322900) S> @@ -580,6 +580,11 @@ struct tcpstat { S> uint64_t tcps_sig_err_sigopt; /* No signature expected by socket */ S> uint64_t tcps_sig_err_nosigopt; /* No signature provided by segment */ S> S> + /* Path MTU Discovery Black Hole Detection related stats */ S> + uint64_t tcps_pmtud_blackhole_activated; /* Black Hole Count */ S> + uint64_t tcps_pmtud_blackhole_activated_min_mss; /* BH at min MSS Count */ S> + uint64_t tcps_pmtud_blackhole_failed; /* Black Hole Failure Count */ S> + S> uint64_t _pad[12]; /* 6 UTO, 6 TBD */ S> }; You may have used space in the _pad, and won't need to bump __FreeBSD_version or update UPDATING. This is what for these spares were made for :) -- Totus tuus, Glebius.