cxgbe: delete now-redundant vnet decls
r324539 gathered some vnet decls into netinet/tcp_var.h, so that they are now redundant in dev/cxgbe/tom/{t4_cpl_io.c,t4_ddp.c}. This triggers gcc -Wredundant-decls. Reviewed by: np Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D12674
This commit is contained in:
parent
fa00affd18
commit
b541ba195c
@ -71,19 +71,6 @@ __FBSDID("$FreeBSD$");
|
||||
#include "tom/t4_tom_l2t.h"
|
||||
#include "tom/t4_tom.h"
|
||||
|
||||
VNET_DECLARE(int, tcp_do_autosndbuf);
|
||||
#define V_tcp_do_autosndbuf VNET(tcp_do_autosndbuf)
|
||||
VNET_DECLARE(int, tcp_autosndbuf_inc);
|
||||
#define V_tcp_autosndbuf_inc VNET(tcp_autosndbuf_inc)
|
||||
VNET_DECLARE(int, tcp_autosndbuf_max);
|
||||
#define V_tcp_autosndbuf_max VNET(tcp_autosndbuf_max)
|
||||
VNET_DECLARE(int, tcp_do_autorcvbuf);
|
||||
#define V_tcp_do_autorcvbuf VNET(tcp_do_autorcvbuf)
|
||||
VNET_DECLARE(int, tcp_autorcvbuf_inc);
|
||||
#define V_tcp_autorcvbuf_inc VNET(tcp_autorcvbuf_inc)
|
||||
VNET_DECLARE(int, tcp_autorcvbuf_max);
|
||||
#define V_tcp_autorcvbuf_max VNET(tcp_autorcvbuf_max)
|
||||
|
||||
#define IS_AIOTX_MBUF(m) \
|
||||
((m)->m_flags & M_EXT && (m)->m_ext.ext_flags & EXT_FLAG_AIOTX)
|
||||
|
||||
|
@ -67,13 +67,6 @@ __FBSDID("$FreeBSD$");
|
||||
#include "common/t4_tcb.h"
|
||||
#include "tom/t4_tom.h"
|
||||
|
||||
VNET_DECLARE(int, tcp_do_autorcvbuf);
|
||||
#define V_tcp_do_autorcvbuf VNET(tcp_do_autorcvbuf)
|
||||
VNET_DECLARE(int, tcp_autorcvbuf_inc);
|
||||
#define V_tcp_autorcvbuf_inc VNET(tcp_autorcvbuf_inc)
|
||||
VNET_DECLARE(int, tcp_autorcvbuf_max);
|
||||
#define V_tcp_autorcvbuf_max VNET(tcp_autorcvbuf_max)
|
||||
|
||||
/*
|
||||
* Use the 'backend3' field in AIO jobs to store the amount of data
|
||||
* received by the AIO job so far.
|
||||
|
Loading…
Reference in New Issue
Block a user