mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Hopefully also unbreak VIMAGE kernels replacing the &V_... with
&VNET_NAME(...). Everything else is just a whitespace wrapping change.
This commit is contained in:
parent
a4c8dbbd87
commit
962d02b00b
1 changed files with 3 additions and 3 deletions
|
|
@ -70,9 +70,9 @@ SYSCTL_INT(_net_inet_tcp, OID_AUTO, tcp_pcap_alloc_new_mbuf,
|
|||
|
||||
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue