DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jerin Jacob <jerinjacobk@gmail.com>
To: Ray Kinsella <mdr@ashroe.eu>
Cc: Kiran Kumar K <kirankumark@marvell.com>,
	Nithin Dabilpuram <ndabilpuram@marvell.com>,
	 Sunil Kumar Kori <skori@marvell.com>,
	Satha Rao <skoteshwar@marvell.com>, dpdk-dev <dev@dpdk.org>
Subject: Re: [dpdk-dev][PATCH v2 3/3] net/cnxk: adding cnxk support to configure custom sa index
Date: Sat, 7 May 2022 15:47:29 +0530	[thread overview]
Message-ID: <CALBAE1Mjdmq4goBXhGPooa=Zy5TmuVEPkBWyOiisTxCjzQOjcw@mail.gmail.com> (raw)
In-Reply-To: <87wnf1k7qk.fsf@mdr78.vserver.site>

On Wed, May 4, 2022 at 2:14 PM Ray Kinsella <mdr@ashroe.eu> wrote:
>
>
> kirankumark@marvell.com writes:
>
> > From: Kiran Kumar K <kirankumark@marvell.com>
> >
> > Adding cnxk device driver support to configure custom sa index.
> > Custom sa index can be configured as part of the session create
> > as SPI, and later original SPI can be updated using session update.
> >
> > Signed-off-by: Kiran Kumar K <kirankumark@marvell.com>
> > ---
> >  doc/api/doxy-api-index.md           |   3 +-
> >  doc/api/doxy-api.conf.in            |   1 +
> >  drivers/net/cnxk/cn10k_ethdev_sec.c | 107 +++++++++++++++++++++++++++-
> >  drivers/net/cnxk/cn9k_ethdev.c      |   6 ++
> >  drivers/net/cnxk/cn9k_ethdev_sec.c  |   2 +-
> >  drivers/net/cnxk/cnxk_ethdev.h      |   3 +-
> >  drivers/net/cnxk/cnxk_ethdev_sec.c  |  30 +++++---
> >  drivers/net/cnxk/cnxk_flow.c        |   1 +
> >  drivers/net/cnxk/meson.build        |   2 +
> >  drivers/net/cnxk/rte_pmd_cnxk.h     |  94 ++++++++++++++++++++++++
> >  drivers/net/cnxk/version.map        |   7 ++
> >  11 files changed, 241 insertions(+), 15 deletions(-)
> >  create mode 100644 drivers/net/cnxk/rte_pmd_cnxk.h
> >
>
> Acked-by: Ray Kinsella <mdr@ashroe.eu>


Series Acked-by: Jerin Jacob <jerinj@marvell.com>
Updated the git commit as follows and Series applied to
dpdk-next-net-mrvl/for-next-net. Thanks

commit 5aa4c7ec93062381cdd155b2a87962a7e0186451 (HEAD -> for-next-net,
origin/for-next-net)
Author: Kiran Kumar K <kirankumark@marvell.com>
Date:   Wed May 4 10:41:18 2022 +0530

    net/cnxk: support to configure custom SA index

    Adding cnxk device driver support to configure custom SA index.
    Custom SA index can be configured as part of the session create
    as SPI, and later original SPI can be updated using session update.

    Signed-off-by: Kiran Kumar K <kirankumark@marvell.com>
    Acked-by: Ray Kinsella <mdr@ashroe.eu>
    Acked-by: Jerin Jacob <jerinj@marvell.com>

commit 1d63211bab5e87695d118b3b80e7b97c7eb18d99
Author: Kiran Kumar K <kirankumark@marvell.com>
Date:   Wed May 4 10:41:17 2022 +0530

    net/cnxk: devargs support to parse custom SA action

    Adding devargs support to parse custom SA action.
    Devargs can be specified in the following way.
    -a 0002:02:00.0,custom_sa_act=1

    Signed-off-by: Kiran Kumar K <kirankumark@marvell.com>
    Acked-by: Jerin Jacob <jerinj@marvell.com>

commit 8f8ce5cce0f29308edca8c65520c52a2d45b9f45
Author: Kiran Kumar K <kirankumark@marvell.com>
Date:   Wed May 4 10:41:16 2022 +0530

    common/cnxk: support to parse custom SA action

    Adding ROC Flow changes to parse custom SA action for cnxk device.
    When custom sa action is enabled, VTAG actions are not allowed.
    And custom SA index will be calculated based on SA_HI and SA_LO
    values. This allows the potential for a MCAM entry to match
    many SAs, rather than only match a single SA.

    Signed-off-by: Kiran Kumar K <kirankumark@marvell.com>
    Acked-by: Jerin Jacob <jerinj@marvell.com>

  reply	other threads:[~2022-05-07 10:17 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-22  4:38 [dpdk-dev][PATCH 1/3] common/cnxk: add ROC support to parse cnxk custom sa action kirankumark
2022-04-22  4:38 ` [dpdk-dev][PATCH 2/3] net/cnxk: add devargs support to parse custom SA action kirankumark
2022-04-22  4:38 ` [dpdk-dev][PATCH 3/3] net/cnxk: adding cnxk support to configure custom sa index kirankumark
2022-04-26 10:14   ` Ray Kinsella
2022-05-04  5:11 ` [dpdk-dev][PATCH v2 1/3] common/cnxk: add ROC support to parse cnxk custom sa action kirankumark
2022-05-04  5:11   ` [dpdk-dev][PATCH v2 2/3] net/cnxk: add devargs support to parse custom SA action kirankumark
2022-05-04  5:11   ` [dpdk-dev][PATCH v2 3/3] net/cnxk: adding cnxk support to configure custom sa index kirankumark
2022-05-04  8:44     ` Ray Kinsella
2022-05-07 10:17       ` Jerin Jacob [this message]
2022-05-04  5:12   ` [dpdk-dev][PATCH v2 1/3] common/cnxk: add ROC support to parse cnxk custom sa action kirankumark
2022-05-04  5:12     ` [dpdk-dev][PATCH v2 2/3] net/cnxk: add devargs support to parse custom SA action kirankumark
2022-05-04  5:12     ` [dpdk-dev][PATCH v2 3/3] net/cnxk: adding cnxk support to configure custom sa index kirankumark

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='CALBAE1Mjdmq4goBXhGPooa=Zy5TmuVEPkBWyOiisTxCjzQOjcw@mail.gmail.com' \
    --to=jerinjacobk@gmail.com \
    --cc=dev@dpdk.org \
    --cc=kirankumark@marvell.com \
    --cc=mdr@ashroe.eu \
    --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).