svn commit: r301392 - stable/10/sys/dev/sfxge/common
Andrew Rybchenko
arybchik at FreeBSD.org
Sat Jun 4 17:15:40 UTC 2016
Author: arybchik
Date: Sat Jun 4 17:15:38 2016
New Revision: 301392
URL: https://svnweb.freebsd.org/changeset/base/301392
Log:
MFC r300840
sfxge(4): note unused variables to make lint happier
Found by lint on illumos.
Submitted by: Garrett D'Amore <garrett at damore.org>
Sponsored by: Solarflare Communications, Inc.
Modified:
stable/10/sys/dev/sfxge/common/ef10_nvram.c
stable/10/sys/dev/sfxge/common/ef10_rx.c
stable/10/sys/dev/sfxge/common/ef10_tx.c
stable/10/sys/dev/sfxge/common/efx_ev.c
stable/10/sys/dev/sfxge/common/efx_rx.c
stable/10/sys/dev/sfxge/common/efx_tx.c
stable/10/sys/dev/sfxge/common/hunt_phy.c
stable/10/sys/dev/sfxge/common/siena_mcdi.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/dev/sfxge/common/ef10_nvram.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_nvram.c Sat Jun 4 17:14:28 2016 (r301391)
+++ stable/10/sys/dev/sfxge/common/ef10_nvram.c Sat Jun 4 17:15:38 2016 (r301392)
@@ -903,6 +903,8 @@ ef10_nvram_buffer_find_end(
efx_rc_t rc;
uint32_t *segment_used;
+ _NOTE(ARGUNUSED(offset))
+
if ((rc = tlv_init_cursor_from_size(&cursor, (uint8_t *)bufferp,
buffer_size)) != 0) {
rc = EFAULT;
@@ -1078,6 +1080,8 @@ ef10_nvram_buffer_delete_item(
efx_rc_t rc;
tlv_cursor_t cursor;
+ _NOTE(ARGUNUSED(length, end))
+
if ((rc = tlv_init_cursor_at_offset(&cursor, (uint8_t *)bufferp,
buffer_size, offset)) != 0) {
goto fail1;
Modified: stable/10/sys/dev/sfxge/common/ef10_rx.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_rx.c Sat Jun 4 17:14:28 2016 (r301391)
+++ stable/10/sys/dev/sfxge/common/ef10_rx.c Sat Jun 4 17:15:38 2016 (r301392)
@@ -601,6 +601,8 @@ ef10_rx_prefix_pktlen(
__in uint8_t *buffer,
__out uint16_t *lengthp)
{
+ _NOTE(ARGUNUSED(enp))
+
/*
* The RX pseudo-header contains the packet length, excluding the
* pseudo-header. If the hardware receive datapath was operating in
@@ -619,6 +621,8 @@ ef10_rx_prefix_hash(
__in efx_rx_hash_alg_t func,
__in uint8_t *buffer)
{
+ _NOTE(ARGUNUSED(enp))
+
switch (func) {
case EFX_RX_HASHALG_TOEPLITZ:
return (buffer[0] |
@@ -745,7 +749,7 @@ ef10_rx_qcreate(
efx_rc_t rc;
boolean_t disable_scatter;
- _NOTE(ARGUNUSED(erp))
+ _NOTE(ARGUNUSED(id, erp))
EFX_STATIC_ASSERT(EFX_EV_RX_NLABELS == (1 << ESF_DZ_RX_QLABEL_WIDTH));
EFSYS_ASSERT3U(label, <, EFX_EV_RX_NLABELS);
Modified: stable/10/sys/dev/sfxge/common/ef10_tx.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/ef10_tx.c Sat Jun 4 17:14:28 2016 (r301391)
+++ stable/10/sys/dev/sfxge/common/ef10_tx.c Sat Jun 4 17:15:38 2016 (r301392)
@@ -195,6 +195,7 @@ ef10_tx_qcreate(
efx_qword_t desc;
efx_rc_t rc;
+ _NOTE(ARGUNUSED(id))
if ((rc = efx_mcdi_init_txq(enp, n, eep->ee_index, label, index, flags,
esmp)) != 0)
Modified: stable/10/sys/dev/sfxge/common/efx_ev.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_ev.c Sat Jun 4 17:14:28 2016 (r301391)
+++ stable/10/sys/dev/sfxge/common/efx_ev.c Sat Jun 4 17:15:38 2016 (r301392)
@@ -1264,6 +1264,8 @@ siena_ev_qcreate(
efx_oword_t oword;
efx_rc_t rc;
+ _NOTE(ARGUNUSED(esmp))
+
EFX_STATIC_ASSERT(ISP2(EFX_EVQ_MAXNEVS));
EFX_STATIC_ASSERT(ISP2(EFX_EVQ_MINNEVS));
Modified: stable/10/sys/dev/sfxge/common/efx_rx.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_rx.c Sat Jun 4 17:14:28 2016 (r301391)
+++ stable/10/sys/dev/sfxge/common/efx_rx.c Sat Jun 4 17:15:38 2016 (r301392)
@@ -965,6 +965,8 @@ siena_rx_prefix_hash(
__in efx_rx_hash_alg_t func,
__in uint8_t *buffer)
{
+ _NOTE(ARGUNUSED(enp))
+
switch (func) {
case EFX_RX_HASHALG_TOEPLITZ:
return ((buffer[12] << 24) |
@@ -988,6 +990,8 @@ siena_rx_prefix_pktlen(
__in uint8_t *buffer,
__out uint16_t *lengthp)
{
+ _NOTE(ARGUNUSED(enp, buffer, lengthp))
+
/* Not supported by Falcon/Siena hardware */
EFSYS_ASSERT(0);
return (ENOTSUP);
@@ -1120,6 +1124,8 @@ siena_rx_qcreate(
boolean_t jumbo;
efx_rc_t rc;
+ _NOTE(ARGUNUSED(esmp))
+
EFX_STATIC_ASSERT(EFX_EV_RX_NLABELS ==
(1 << FRF_AZ_RX_DESCQ_LABEL_WIDTH));
EFSYS_ASSERT3U(label, <, EFX_EV_RX_NLABELS);
Modified: stable/10/sys/dev/sfxge/common/efx_tx.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_tx.c Sat Jun 4 17:14:28 2016 (r301391)
+++ stable/10/sys/dev/sfxge/common/efx_tx.c Sat Jun 4 17:15:38 2016 (r301392)
@@ -901,6 +901,8 @@ siena_tx_qcreate(
uint32_t size;
efx_rc_t rc;
+ _NOTE(ARGUNUSED(esmp))
+
EFX_STATIC_ASSERT(EFX_EV_TX_NLABELS ==
(1 << FRF_AZ_TX_DESCQ_LABEL_WIDTH));
EFSYS_ASSERT3U(label, <, EFX_EV_TX_NLABELS);
Modified: stable/10/sys/dev/sfxge/common/hunt_phy.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/hunt_phy.c Sat Jun 4 17:14:28 2016 (r301391)
+++ stable/10/sys/dev/sfxge/common/hunt_phy.c Sat Jun 4 17:15:38 2016 (r301392)
@@ -92,6 +92,8 @@ hunt_bist_poll(
uint32_t result;
efx_rc_t rc;
+ _NOTE(ARGUNUSED(type))
+
(void) memset(payload, 0, sizeof (payload));
req.emr_cmd = MC_CMD_POLL_BIST;
req.emr_in_buf = payload;
Modified: stable/10/sys/dev/sfxge/common/siena_mcdi.c
==============================================================================
--- stable/10/sys/dev/sfxge/common/siena_mcdi.c Sat Jun 4 17:14:28 2016 (r301391)
+++ stable/10/sys/dev/sfxge/common/siena_mcdi.c Sat Jun 4 17:15:38 2016 (r301392)
@@ -174,6 +174,8 @@ siena_mcdi_init(
unsigned int portnum;
efx_rc_t rc;
+ _NOTE(ARGUNUSED(mtp))
+
EFSYS_ASSERT(enp->en_family == EFX_FAMILY_SIENA);
/* Determine the port number to use for MCDI */
@@ -212,6 +214,7 @@ fail1:
siena_mcdi_fini(
__in efx_nic_t *enp)
{
+ _NOTE(ARGUNUSED(enp))
}
__checkReturn efx_rc_t
More information about the svn-src-stable-10
mailing list