Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Oct 2015 15:31:39 +0300
From:      Gleb Smirnoff <glebius@FreeBSD.org>
To:        "Bjoern A. Zeeb" <bz@FreeBSD.org>
Cc:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   Re: svn commit: r289350 - head/sys/netinet
Message-ID:  <20151016123139.GX1023@FreeBSD.org>
In-Reply-To: <201510150144.t9F1iWdo089946@repo.freebsd.org>
References:  <201510150144.t9F1iWdo089946@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, Oct 15, 2015 at 01:44:32AM +0000, Bjoern A. Zeeb wrote:
B> Author: bz
B> Date: Thu Oct 15 01:44:32 2015
B> New Revision: 289350
B> URL: https://svnweb.freebsd.org/changeset/base/289350
B> 
B> Log:
B>   Hopefully also unbreak VIMAGE kernels replacing the &V_... with
B>   &VNET_NAME(...).
B>   Everything else is just a whitespace wrapping change.
B> 
B> Modified:
B>   head/sys/netinet/tcp_pcap.c
B> 
B> Modified: head/sys/netinet/tcp_pcap.c
B> ==============================================================================
B> --- head/sys/netinet/tcp_pcap.c	Thu Oct 15 01:09:14 2015	(r289349)
B> +++ head/sys/netinet/tcp_pcap.c	Thu Oct 15 01:44:32 2015	(r289350)
B> @@ -70,9 +70,9 @@ SYSCTL_INT(_net_inet_tcp, OID_AUTO, tcp_
B>  
B>  VNET_DEFINE(int, tcp_pcap_packets) = 0;
B>  #define V_tcp_pcap_packets	VNET(tcp_pcap_packets)
B> -SYSCTL_INT(_net_inet_tcp, OID_AUTO, tcp_pcap_packets, CTLFLAG_RW,
B> -	&V_tcp_pcap_packets, 0, "Default number of packets saved per direction "
B> -	"per TCPCB");
B> +SYSCTL_INT(_net_inet_tcp, OID_AUTO, tcp_pcap_packets,
B> +	CTLFLAG_RW, &VNET_NAME(tcp_pcap_packets), 0,
B> +	"Default number of packets saved per direction per TCPCB");

It also lacks CTLFLAG_VNET flag. Will panic on write now.

-- 
Totus tuus, Glebius.



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