DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jerin Jacob <jerinjacobk@gmail.com>
To: Ankur Dwivedi <adwivedi@marvell.com>,
	Ferruh Yigit <ferruh.yigit@intel.com>
Cc: dpdk-dev <dev@dpdk.org>, Jerin Jacob <jerinj@marvell.com>,
	 Gowrishankar Muthukrishnan <gmuthukrishn@marvell.com>,
	Nithin Dabilpuram <ndabilpuram@marvell.com>,
	 Kiran Kumar K <kirankumark@marvell.com>,
	Sunil Kumar Kori <skori@marvell.com>,
	 Satha Koteswara Rao Kottidi <skoteshwar@marvell.com>
Subject: Re: [dpdk-dev] [PATCH] common/cnxk: fix pointer argument with gcc 12
Date: Thu, 11 Nov 2021 20:47:08 +0530	[thread overview]
Message-ID: <CALBAE1MNLhRvrFkpmVZLOc15kZrdBvNiv7neXtyfVf76H2BZEw@mail.gmail.com> (raw)
In-Reply-To: <20211108091948.9659-1-adwivedi@marvell.com>

On Mon, Nov 8, 2021 at 2:50 PM Ankur Dwivedi <adwivedi@marvell.com> wrote:
>
> The pointer passed to the rq_ctx and sq_ctx functions was the address
> of qctx. Instead of that qctx should be passed. This patch fixes this.
>
> This patch also resolves warning observed with gcc 12 compiler.
>
> log:
>    ../drivers/common/cnxk/cnxk_telemetry.h:12:38: warning: array subscript
>    ‘struct nix_cn10k_sq_ctx_s[0]’ is partly outside array bounds of
>    ‘volatile void[8]’ [-Warray-bounds]
>
> Bugzilla ID: 853
> Fixes: af75aac78978 ("common/cnxk: support telemetry for NIX")
>
> Signed-off-by: Ankur Dwivedi <adwivedi@marvell.com>
> Reviewed-by: Gowrishankar Muthukrishnan <gmuthukrishn@marvell.com>
> Reviewed-by: Jerin Jacob <jerinj@marvell.com>

Applied to dpdk-next-net-mrvl/for-next-net. Thanks


> ---
>  drivers/common/cnxk/cnxk_telemetry_nix.c | 32 +++++++++++++++---------
>  1 file changed, 20 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/common/cnxk/cnxk_telemetry_nix.c b/drivers/common/cnxk/cnxk_telemetry_nix.c
> index 1175f68a51..df6458039d 100644
> --- a/drivers/common/cnxk/cnxk_telemetry_nix.c
> +++ b/drivers/common/cnxk/cnxk_telemetry_nix.c
> @@ -266,9 +266,11 @@ cnxk_tel_nix_sq(struct roc_nix_sq *sq, struct plt_tel_data *d)
>  }
>
>  static void
> -nix_rq_ctx_cn9k(void *qctx, struct plt_tel_data *d)
> +nix_rq_ctx_cn9k(volatile void *qctx, struct plt_tel_data *d)
>  {
> -       struct nix_rq_ctx_s *ctx = (struct nix_rq_ctx_s *)qctx;
> +       volatile struct nix_rq_ctx_s *ctx;
> +
> +       ctx = (volatile struct nix_rq_ctx_s *)qctx;
>
>         /* W0 */
>         CNXK_TEL_DICT_INT(d, ctx, wqe_aura, w0_);
> @@ -343,9 +345,11 @@ nix_rq_ctx_cn9k(void *qctx, struct plt_tel_data *d)
>  }
>
>  static void
> -nix_rq_ctx(void *qctx, struct plt_tel_data *d)
> +nix_rq_ctx(volatile void *qctx, struct plt_tel_data *d)
>  {
> -       struct nix_cn10k_rq_ctx_s *ctx = (struct nix_cn10k_rq_ctx_s *)qctx;
> +       volatile struct nix_cn10k_rq_ctx_s *ctx;
> +
> +       ctx = (volatile struct nix_cn10k_rq_ctx_s *)qctx;
>
>         /* W0 */
>         CNXK_TEL_DICT_INT(d, ctx, wqe_aura, w0_);
> @@ -453,9 +457,9 @@ cnxk_tel_nix_rq_ctx(struct roc_nix *roc_nix, uint8_t n, struct plt_tel_data *d)
>         }
>
>         if (roc_model_is_cn9k())
> -               nix_rq_ctx_cn9k(&qctx, d);
> +               nix_rq_ctx_cn9k(qctx, d);
>         else
> -               nix_rq_ctx(&qctx, d);
> +               nix_rq_ctx(qctx, d);
>
>         return 0;
>  }
> @@ -512,9 +516,11 @@ cnxk_tel_nix_cq_ctx(struct roc_nix *roc_nix, uint8_t n, struct plt_tel_data *d)
>  }
>
>  static void
> -nix_sq_ctx_cn9k(void *qctx, struct plt_tel_data *d)
> +nix_sq_ctx_cn9k(volatile void *qctx, struct plt_tel_data *d)
>  {
> -       struct nix_sq_ctx_s *ctx = (struct nix_sq_ctx_s *)qctx;
> +       volatile struct nix_sq_ctx_s *ctx;
> +
> +       ctx = (volatile struct nix_sq_ctx_s *)qctx;
>
>         /* W0 */
>         CNXK_TEL_DICT_INT(d, ctx, sqe_way_mask, w0_);
> @@ -595,9 +601,11 @@ nix_sq_ctx_cn9k(void *qctx, struct plt_tel_data *d)
>  }
>
>  static void
> -nix_sq_ctx(void *qctx, struct plt_tel_data *d)
> +nix_sq_ctx(volatile void *qctx, struct plt_tel_data *d)
>  {
> -       struct nix_cn10k_sq_ctx_s *ctx = (struct nix_cn10k_sq_ctx_s *)qctx;
> +       volatile struct nix_cn10k_sq_ctx_s *ctx;
> +
> +       ctx = (volatile struct nix_cn10k_sq_ctx_s *)qctx;
>
>         /* W0 */
>         CNXK_TEL_DICT_INT(d, ctx, sqe_way_mask, w0_);
> @@ -698,9 +706,9 @@ cnxk_tel_nix_sq_ctx(struct roc_nix *roc_nix, uint8_t n, struct plt_tel_data *d)
>         }
>
>         if (roc_model_is_cn9k())
> -               nix_sq_ctx_cn9k(&qctx, d);
> +               nix_sq_ctx_cn9k(qctx, d);
>         else
> -               nix_sq_ctx(&qctx, d);
> +               nix_sq_ctx(qctx, d);
>
>         return 0;
>  }
> --
> 2.28.0
>

      reply	other threads:[~2021-11-11 15:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-08  9:19 Ankur Dwivedi
2021-11-11 15:17 ` Jerin Jacob [this message]

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=CALBAE1MNLhRvrFkpmVZLOc15kZrdBvNiv7neXtyfVf76H2BZEw@mail.gmail.com \
    --to=jerinjacobk@gmail.com \
    --cc=adwivedi@marvell.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    --cc=gmuthukrishn@marvell.com \
    --cc=jerinj@marvell.com \
    --cc=kirankumark@marvell.com \
    --cc=ndabilpuram@marvell.com \
    --cc=skori@marvell.com \
    --cc=skoteshwar@marvell.com \
    /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).