DPDK patches and discussions
 help / color / mirror / Atom feed
From: David Marchand <david.marchand@redhat.com>
To: Ajit Khaparde <ajit.khaparde@broadcom.com>,
	Somnath Kotur <somnath.kotur@broadcom.com>
Cc: "Yigit, Ferruh" <ferruh.yigit@intel.com>,
	"Liang, LongfengX" <longfengx.liang@intel.com>,
	 dev <dev@dpdk.org>, "Mcnamara, John" <john.mcnamara@intel.com>,
	 Stephen Hemminger <stephen@networkplumber.org>,
	Conor Walsh <conor.walsh@intel.com>
Subject: Re: [PATCH 5/7] drivers/net: fix unused but set variables
Date: Mon, 15 Nov 2021 10:28:33 +0100	[thread overview]
Message-ID: <CAJFAV8xBtfz-4mSzg06y2eKqrbpA2He8WMRd_JHq_FqsrjJZvA@mail.gmail.com> (raw)
In-Reply-To: <20211112140111.922171-6-conor.walsh@intel.com>

Hello Ajit, Somnath,

On Fri, Nov 12, 2021 at 3:02 PM Conor Walsh <conor.walsh@intel.com> wrote:
>
> This patch fixes unused but set variables in the following net drivers:
>  - bnxt
>  - hinic
>  - liquidio
>  - nfp
>  - octeontx
>  - qede
>  - txgbe
>  - vmxnet3
>
> This patch also fixes an unused function warning for vmxnet3_unmap_pkt
> from within vmxnet3
>
> Bugzilla ID: 881
>
> Fixes: b87abb2e55cb ("net/bnxt: support marking packet")
> Fixes: 88badb3aef94 ("net/bnxt: add helper functions for blob/regfile ops")
> Fixes: a4957d87e05a ("net/hinic/base: add mgmt module")
> Fixes: 5ee7640f95a0 ("net/liquidio: add API to flush IQ")
> Fixes: 19af5a38f7b6 ("net/nfp: move CPP bridge to separate file")
> Fixes: 9eb5cb3b11cc ("net/octeontx: fix access to indirect buffers")
> Fixes: 86a2265e59d7 ("qede: add SRIOV support")
> Fixes: b7311360fb67 ("net/txgbe: support VF interrupt")
> Fixes: c3ecdbb376da ("vmxnet3: support TSO")
>
> Signed-off-by: Conor Walsh <conor.walsh@intel.com>
> Reported-by: Liang Longfeng <longfengx.liang@intel.com>
> ---
>  drivers/net/bnxt/bnxt_rxr.c             | 22 ----------------------
>  drivers/net/bnxt/tf_ulp/ulp_utils.c     |  3 ---
>  drivers/net/hinic/base/hinic_pmd_mgmt.c |  6 ------
>  drivers/net/liquidio/lio_rxtx.c         |  2 --
>  drivers/net/nfp/nfp_cpp_bridge.c        |  6 ++----
>  drivers/net/octeontx/octeontx_rxtx.h    |  3 +--
>  drivers/net/qede/base/ecore_vf.c        |  5 +----
>  drivers/net/txgbe/txgbe_ethdev_vf.c     |  2 ++
>  drivers/net/vmxnet3/vmxnet3_rxtx.c      |  8 ++++++++
>  9 files changed, 14 insertions(+), 43 deletions(-)
>
> diff --git a/drivers/net/bnxt/bnxt_rxr.c b/drivers/net/bnxt/bnxt_rxr.c
> index 8bc8ddc353..157297bc64 100644
> --- a/drivers/net/bnxt/bnxt_rxr.c
> +++ b/drivers/net/bnxt/bnxt_rxr.c
> @@ -823,9 +823,6 @@ void bnxt_set_mark_in_mbuf(struct bnxt *bp,
>                            struct rte_mbuf *mbuf)
>  {
>         uint32_t cfa_code = 0;
> -       uint8_t meta_fmt = 0;
> -       uint16_t flags2 = 0;
> -       uint32_t meta =  0;
>
>         cfa_code = rte_le_to_cpu_16(rxcmp1->cfa_code);
>         if (!cfa_code)
> @@ -834,25 +831,6 @@ void bnxt_set_mark_in_mbuf(struct bnxt *bp,
>         if (cfa_code && !bp->mark_table[cfa_code].valid)
>                 return;
>
> -       flags2 = rte_le_to_cpu_16(rxcmp1->flags2);
> -       meta = rte_le_to_cpu_32(rxcmp1->metadata);
> -       if (meta) {
> -               meta >>= BNXT_RX_META_CFA_CODE_SHIFT;
> -
> -               /* The flags field holds extra bits of info from [6:4]
> -                * which indicate if the flow is in TCAM or EM or EEM
> -                */
> -               meta_fmt = (flags2 & BNXT_CFA_META_FMT_MASK) >>
> -                          BNXT_CFA_META_FMT_SHFT;
> -
> -               /* meta_fmt == 4 => 'b100 => 'b10x => EM.
> -                * meta_fmt == 5 => 'b101 => 'b10x => EM + VLAN
> -                * meta_fmt == 6 => 'b110 => 'b11x => EEM
> -                * meta_fmt == 7 => 'b111 => 'b11x => EEM + VLAN.
> -                */
> -               meta_fmt >>= BNXT_CFA_META_FMT_EM_EEM_SHFT;
> -       }
> -
>         mbuf->hash.fdir.hi = bp->mark_table[cfa_code].mark_id;
>         mbuf->ol_flags |= RTE_MBUF_F_RX_FDIR | RTE_MBUF_F_RX_FDIR_ID;
>  }
> diff --git a/drivers/net/bnxt/tf_ulp/ulp_utils.c b/drivers/net/bnxt/tf_ulp/ulp_utils.c
> index df3afaa6fd..c60d81d14a 100644
> --- a/drivers/net/bnxt/tf_ulp/ulp_utils.c
> +++ b/drivers/net/bnxt/tf_ulp/ulp_utils.c
> @@ -200,7 +200,6 @@ ulp_bs_push_msb(uint8_t *bs, uint16_t pos, uint8_t len, uint8_t *val)
>  {
>         int i;
>         int cnt = (len + 7) / 8;
> -       int tlen = len;
>
>         /* Handle any remainder bits */
>         int tmp = len % 8;
> @@ -211,12 +210,10 @@ ulp_bs_push_msb(uint8_t *bs, uint16_t pos, uint8_t len, uint8_t *val)
>         ulp_bs_put_msb(bs, pos, tmp, val[0]);
>
>         pos += tmp;
> -       tlen -= tmp;
>
>         for (i = 1; i < cnt; i++) {
>                 ulp_bs_put_msb(bs, pos, 8, val[i]);
>                 pos += 8;
> -               tlen -= 8;
>         }
>
>         return len;

Review please.


-- 
David Marchand


  parent reply	other threads:[~2021-11-15  9:28 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-12 14:01 [PATCH 0/7] " Conor Walsh
2021-11-12 14:01 ` [PATCH 1/7] app/test: " Conor Walsh
2021-11-12 14:29   ` Medvedkin, Vladimir
2021-11-12 14:01 ` [PATCH 2/7] drivers/bus/fslmc: " Conor Walsh
2021-11-12 14:01 ` [PATCH 3/7] drivers/common/qat: " Conor Walsh
2021-11-12 14:01 ` [PATCH 4/7] drivers/event/sw: " Conor Walsh
2021-11-12 15:15   ` Van Haaren, Harry
2021-11-12 14:01 ` [PATCH 5/7] drivers/net: " Conor Walsh
2021-11-12 16:17   ` Ferruh Yigit
2021-11-12 16:27     ` David Marchand
2021-11-12 16:38       ` Walsh, Conor
2021-11-12 16:41         ` Stephen Hemminger
2021-11-12 16:46           ` Walsh, Conor
2021-11-12 16:35     ` Walsh, Conor
2021-11-15  9:28   ` David Marchand [this message]
2021-11-16  4:58     ` Somnath Kotur
2021-11-16  5:08       ` Ajit Khaparde
2021-11-12 14:01 ` [PATCH 6/7] examples/performance-thread: " Conor Walsh
2021-11-12 14:01 ` [PATCH 7/7] lib/power: " Conor Walsh
2021-11-12 14:13   ` David Marchand
2021-11-12 14:17     ` Walsh, Conor
2021-11-12 14:26       ` David Marchand
2021-11-15 17:58 ` [PATCH 0/6] " Conor Walsh
2021-11-15 17:58   ` [PATCH 1/6] app/test: " Conor Walsh
2021-11-15 17:58   ` [PATCH 2/6] drivers/bus/fslmc: " Conor Walsh
2021-11-15 17:58   ` [PATCH 3/6] drivers/common/qat: " Conor Walsh
2021-11-15 17:58   ` [PATCH 4/6] drivers/event/sw: " Conor Walsh
2021-11-15 17:58   ` [PATCH 5/6] drivers/net: " Conor Walsh
2021-11-16 12:04     ` David Marchand
2021-11-15 17:58   ` [PATCH 6/6] examples/performance-thread: " Conor Walsh
2021-11-16 12:28   ` [PATCH 0/6] " David Marchand

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAJFAV8xBtfz-4mSzg06y2eKqrbpA2He8WMRd_JHq_FqsrjJZvA@mail.gmail.com \
    --to=david.marchand@redhat.com \
    --cc=ajit.khaparde@broadcom.com \
    --cc=conor.walsh@intel.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    --cc=john.mcnamara@intel.com \
    --cc=longfengx.liang@intel.com \
    --cc=somnath.kotur@broadcom.com \
    --cc=stephen@networkplumber.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).