Fix linker warnings (errors on gcc) that resulted from r304510.

The variables that are extern in the netmap header file should be
defined in ixl_txrx.c (the file that is included in both ixl(4)/ixlv(4),
not in the main driver source files.

Reported by:	ed@, dim@, ngie@
This commit is contained in:
Eric Joyner 2016-09-01 01:08:18 +00:00
parent a9feb2cdbb
commit ff9b61ca07
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=305168
3 changed files with 1 additions and 6 deletions

View File

@ -217,11 +217,6 @@ TUNABLE_INT("hw.ixlv.tx_itr", &ixlv_tx_itr);
SYSCTL_INT(_hw_ixlv, OID_AUTO, tx_itr, CTLFLAG_RDTUN,
&ixlv_tx_itr, 0, "TX Interrupt Rate");
/* Fix when building as a standalone module when netmap is enabled */
#if defined(DEV_NETMAP) && !defined(NETMAP_IXL_MAIN)
int ixl_rx_miss, ixl_rx_miss_bufs, ixl_crcstrip;
#endif
/*********************************************************************
* Device identification routine
*

View File

@ -69,6 +69,7 @@ static inline u32 ixl_get_tx_head(struct ixl_queue *que);
#ifdef DEV_NETMAP
#include <dev/netmap/if_ixl_netmap.h>
int ixl_rx_miss, ixl_rx_miss_bufs, ixl_crcstrip = 1;
#endif /* DEV_NETMAP */
/*

View File

@ -71,7 +71,6 @@ SYSCTL_DECL(_dev_netmap);
/*
* The xl driver by default strips CRCs and we do not override it.
*/
int ixl_rx_miss, ixl_rx_miss_bufs, ixl_crcstrip = 1;
#if 0
SYSCTL_INT(_dev_netmap, OID_AUTO, ixl_crcstrip,
CTLFLAG_RW, &ixl_crcstrip, 1, "strip CRC on rx frames");