net/sfc/base: fix name of the argument to store RSS flags
authorIvan Malov <ivan.malov@oktetlabs.ru>
Mon, 10 Sep 2018 09:33:27 +0000 (10:33 +0100)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 27 Sep 2018 23:41:02 +0000 (01:41 +0200)
The function used to retrieve supported RSS flags has an
argument which should be named properly to indicate
that it's a pointer.

Fixes: 613cbe75ae99 ("net/sfc/base: add a new means to control RSS hash")
Cc: stable@dpdk.org
Signed-off-by: Ivan Malov <ivan.malov@oktetlabs.ru>
Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
drivers/net/sfc/base/efx.h
drivers/net/sfc/base/efx_rx.c

index 0982a34..15b3882 100644 (file)
@@ -2368,7 +2368,7 @@ extern    __checkReturn                           efx_rc_t
 efx_rx_scale_hash_flags_get(
        __in                                    efx_nic_t *enp,
        __in                                    efx_rx_hash_alg_t hash_alg,
-       __inout_ecount(EFX_RX_HASH_NFLAGS)      unsigned int *flags,
+       __inout_ecount(EFX_RX_HASH_NFLAGS)      unsigned int *flagsp,
        __out                                   unsigned int *nflagsp);
 
 extern __checkReturn   efx_rc_t
index 09933b4..7b9f286 100644 (file)
@@ -298,16 +298,16 @@ fail1:
 efx_rx_scale_hash_flags_get(
        __in                                    efx_nic_t *enp,
        __in                                    efx_rx_hash_alg_t hash_alg,
-       __inout_ecount(EFX_RX_HASH_NFLAGS)      unsigned int *flags,
+       __inout_ecount(EFX_RX_HASH_NFLAGS)      unsigned int *flagsp,
        __out                                   unsigned int *nflagsp)
 {
        efx_nic_cfg_t *encp = &enp->en_nic_cfg;
        boolean_t l4;
        boolean_t additional_modes;
-       unsigned int *entryp = flags;
+       unsigned int *entryp = flagsp;
        efx_rc_t rc;
 
-       if (flags == NULL || nflagsp == NULL) {
+       if (flagsp == NULL || nflagsp == NULL) {
                rc = EINVAL;
                goto fail1;
        }
@@ -368,7 +368,7 @@ efx_rx_scale_hash_flags_get(
 
 #undef LIST_FLAGS
 
-       *nflagsp = (unsigned int)(entryp - flags);
+       *nflagsp = (unsigned int)(entryp - flagsp);
        EFSYS_ASSERT3U(*nflagsp, <=, EFX_RX_HASH_NFLAGS);
 
        return (0);