Date: Thu, 15 Oct 2015 01:44:32 +0000 (UTC) From: "Bjoern A. Zeeb" <bz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r289350 - head/sys/netinet Message-ID: <201510150144.t9F1iWdo089946@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bz Date: Thu Oct 15 01:44:32 2015 New Revision: 289350 URL: https://svnweb.freebsd.org/changeset/base/289350 Log: Hopefully also unbreak VIMAGE kernels replacing the &V_... with &VNET_NAME(...). Everything else is just a whitespace wrapping change. Modified: head/sys/netinet/tcp_pcap.c Modified: head/sys/netinet/tcp_pcap.c ============================================================================== --- head/sys/netinet/tcp_pcap.c Thu Oct 15 01:09:14 2015 (r289349) +++ head/sys/netinet/tcp_pcap.c Thu Oct 15 01:44:32 2015 (r289350) @@ -70,9 +70,9 @@ SYSCTL_INT(_net_inet_tcp, OID_AUTO, tcp_ VNET_DEFINE(int, tcp_pcap_packets) = 0; #define V_tcp_pcap_packets VNET(tcp_pcap_packets) -SYSCTL_INT(_net_inet_tcp, OID_AUTO, tcp_pcap_packets, CTLFLAG_RW, - &V_tcp_pcap_packets, 0, "Default number of packets saved per direction " - "per TCPCB"); +SYSCTL_INT(_net_inet_tcp, OID_AUTO, tcp_pcap_packets, + CTLFLAG_RW, &VNET_NAME(tcp_pcap_packets), 0, + "Default number of packets saved per direction per TCPCB"); /* Initialize the values. */ static void
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510150144.t9F1iWdo089946>