DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jerin Jacob <jerinjacobk@gmail.com>
To: psatheesh@marvell.com
Cc: Nithin Dabilpuram <ndabilpuram@marvell.com>,
	Kiran Kumar K <kirankumark@marvell.com>,
	 Sunil Kumar Kori <skori@marvell.com>,
	Satha Rao <skoteshwar@marvell.com>,
	dev@dpdk.org
Subject: Re: [dpdk-dev] [PATCH 2/2] common/cnxk: fix SPI to SA index destroy
Date: Wed, 15 Mar 2023 11:22:23 +0530	[thread overview]
Message-ID: <CALBAE1NiLt109tNk4tdHCUrnrfoL9fzG7tAEFf3RRN=ANWCiBg@mail.gmail.com> (raw)
In-Reply-To: <20230313052403.230953-2-psatheesh@marvell.com>

On Mon, Mar 13, 2023 at 10:54 AM <psatheesh@marvell.com> wrote:
>
> From: Satheesh Paul <psatheesh@marvell.com>
>
> While destroying SPI to SA index rule, inline device
> mbox should be used. Adding changes to fix this.
>
> Fixes: 04087b781484 ("common/cnxk: support SPI to SA index")

Merged only 2/2 for rc3 as it is a fix.
Applied to dpdk-next-net-mrvl/for-next-net. Thanks

>
> Signed-off-by: Kiran Kumar K <kirankumark@marvell.com>
> Signed-off-by: Satheesh Paul <psatheesh@marvell.com>
> ---
>  drivers/common/cnxk/roc_npc.c      | 14 ++++++++++----
>  drivers/common/cnxk/roc_npc_mcam.c |  8 ++++----
>  2 files changed, 14 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/common/cnxk/roc_npc.c b/drivers/common/cnxk/roc_npc.c
> index 7228cffb57..ba75207955 100644
> --- a/drivers/common/cnxk/roc_npc.c
> +++ b/drivers/common/cnxk/roc_npc.c
> @@ -1503,16 +1503,22 @@ npc_rss_group_free(struct npc *npc, struct roc_npc_flow *flow)
>  static int
>  roc_npc_delete_spi_to_sa_action(struct roc_npc *roc_npc, struct roc_npc_flow *flow)
>  {
> -       struct roc_nix *roc_nix = roc_npc->roc_nix;
>         struct nix_spi_to_sa_delete_req *req;
> +       struct nix_inl_dev *inl_dev;
> +       struct idev_cfg *idev;
>         struct mbox *mbox;
> -       struct nix *nix;
> +
> +       PLT_SET_USED(roc_npc);
>
>         if (!flow->spi_to_sa_info.has_action || flow->spi_to_sa_info.duplicate)
>                 return 0;
>
> -       nix = roc_nix_to_nix_priv(roc_nix);
> -       mbox = (&nix->dev)->mbox;
> +       idev = idev_get_cfg();
> +       if (!idev)
> +               return -1;
> +
> +       inl_dev = idev->nix_inl_dev;
> +       mbox = inl_dev->dev.mbox;
>         req = mbox_alloc_msg_nix_spi_to_sa_delete(mbox);
>         if (req == NULL)
>                 return -ENOSPC;
> diff --git a/drivers/common/cnxk/roc_npc_mcam.c b/drivers/common/cnxk/roc_npc_mcam.c
> index 948c446312..72892be300 100644
> --- a/drivers/common/cnxk/roc_npc_mcam.c
> +++ b/drivers/common/cnxk/roc_npc_mcam.c
> @@ -96,10 +96,10 @@ int
>  npc_mcam_free_all_entries(struct npc *npc)
>  {
>         struct npc_mcam_free_entry_req *req;
> -       struct mbox *mbox = npc->mbox;
> +       struct mbox *mbox = mbox_get(npc->mbox);
>         int rc = -ENOSPC;
>
> -       req = mbox_alloc_msg_npc_mcam_free_entry(mbox_get(mbox));
> +       req = mbox_alloc_msg_npc_mcam_free_entry(mbox);
>         if (req == NULL)
>                 goto exit;
>         req->all = 1;
> @@ -354,10 +354,10 @@ npc_mcam_alloc_entry(struct npc *npc, struct roc_npc_flow *mcam,
>  {
>         struct npc_mcam_alloc_entry_req *req;
>         struct npc_mcam_alloc_entry_rsp *rsp;
> -       struct mbox *mbox = npc->mbox;
> +       struct mbox *mbox = mbox_get(npc->mbox);
>         int rc = -ENOSPC;
>
> -       req = mbox_alloc_msg_npc_mcam_alloc_entry(mbox_get(mbox));
> +       req = mbox_alloc_msg_npc_mcam_alloc_entry(mbox);
>         if (req == NULL)
>                 goto exit;
>         req->contig = 1;
> --
> 2.39.2
>

  reply	other threads:[~2023-03-15  5:52 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-13  5:24 [dpdk-dev] [PATCH 1/2] common/cnxk: support SPI to SA translation action psatheesh
2023-03-13  5:24 ` [dpdk-dev] [PATCH 2/2] common/cnxk: fix SPI to SA index destroy psatheesh
2023-03-15  5:52   ` Jerin Jacob [this message]
2023-04-04  7:30 ` [dpdk-dev] [PATCH 1/2] common/cnxk: support SPI to SA translation action Jerin Jacob

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='CALBAE1NiLt109tNk4tdHCUrnrfoL9fzG7tAEFf3RRN=ANWCiBg@mail.gmail.com' \
    --to=jerinjacobk@gmail.com \
    --cc=dev@dpdk.org \
    --cc=kirankumark@marvell.com \
    --cc=ndabilpuram@marvell.com \
    --cc=psatheesh@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).