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>,
	 Ferruh Yigit <ferruh.yigit@amd.com>,
	dev@dpdk.org
Subject: Re: [dpdk-dev] [PATCH v2 2/2] net/cnxk: support Tx queue flow pattern item
Date: Wed, 24 May 2023 19:50:04 +0530	[thread overview]
Message-ID: <CALBAE1MNez6ojRHruDKjN_N8zYN5mgJmVxqrstg+Uvb5hjgasw@mail.gmail.com> (raw)
In-Reply-To: <20230524045346.2477489-2-psatheesh@marvell.com>

On Wed, May 24, 2023 at 10:24 AM <psatheesh@marvell.com> wrote:
>
> From: Satheesh Paul <psatheesh@marvell.com>
>
> Added support for Tx queue flow pattern item.
>
> Signed-off-by: Satheesh Paul <psatheesh@marvell.com>
> Reviewed-by: Kiran Kumar K <kirankumark@marvell.com>

Series applied to dpdk-next-net-mrvl/for-next-net. Thanks


> ---
>  doc/guides/nics/features/cnxk.ini     | 1 +
>  doc/guides/nics/features/cnxk_vec.ini | 1 +
>  doc/guides/nics/features/cnxk_vf.ini  | 1 +
>  doc/guides/nics/features/default.ini  | 1 +
>  drivers/net/cnxk/cnxk_flow.c          | 4 +++-
>  5 files changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/doc/guides/nics/features/cnxk.ini b/doc/guides/nics/features/cnxk.ini
> index 7947c044bb..838e781d6d 100644
> --- a/doc/guides/nics/features/cnxk.ini
> +++ b/doc/guides/nics/features/cnxk.ini
> @@ -73,6 +73,7 @@ nvgre                = Y
>  raw                  = Y
>  sctp                 = Y
>  tcp                  = Y
> +tx_queue             = Y
>  udp                  = Y
>  vlan                 = Y
>  vxlan                = Y
> diff --git a/doc/guides/nics/features/cnxk_vec.ini b/doc/guides/nics/features/cnxk_vec.ini
> index 5d0976e6ce..e2cac64e4b 100644
> --- a/doc/guides/nics/features/cnxk_vec.ini
> +++ b/doc/guides/nics/features/cnxk_vec.ini
> @@ -68,6 +68,7 @@ nvgre                = Y
>  raw                  = Y
>  sctp                 = Y
>  tcp                  = Y
> +tx_queue             = Y
>  udp                  = Y
>  vlan                 = Y
>  vxlan                = Y
> diff --git a/doc/guides/nics/features/cnxk_vf.ini b/doc/guides/nics/features/cnxk_vf.ini
> index 873e1dcc0a..470c45ce59 100644
> --- a/doc/guides/nics/features/cnxk_vf.ini
> +++ b/doc/guides/nics/features/cnxk_vf.ini
> @@ -64,6 +64,7 @@ nvgre                = Y
>  raw                  = Y
>  sctp                 = Y
>  tcp                  = Y
> +tx_queue             = Y
>  udp                  = Y
>  vlan                 = Y
>  vxlan                = Y
> diff --git a/doc/guides/nics/features/default.ini b/doc/guides/nics/features/default.ini
> index 1a5087abad..52a57d0805 100644
> --- a/doc/guides/nics/features/default.ini
> +++ b/doc/guides/nics/features/default.ini
> @@ -142,6 +142,7 @@ represented_port     =
>  sctp                 =
>  tag                  =
>  tcp                  =
> +tx_queue             =
>  udp                  =
>  vlan                 =
>  vxlan                =
> diff --git a/drivers/net/cnxk/cnxk_flow.c b/drivers/net/cnxk/cnxk_flow.c
> index f13d8e5582..9595fe9386 100644
> --- a/drivers/net/cnxk/cnxk_flow.c
> +++ b/drivers/net/cnxk/cnxk_flow.c
> @@ -58,7 +58,9 @@ const struct cnxk_rte_flow_term_info term[] = {
>         [RTE_FLOW_ITEM_TYPE_RAW] = {ROC_NPC_ITEM_TYPE_RAW,
>                                     sizeof(struct rte_flow_item_raw)},
>         [RTE_FLOW_ITEM_TYPE_MARK] = {ROC_NPC_ITEM_TYPE_MARK,
> -                                    sizeof(struct rte_flow_item_mark)}};
> +                                    sizeof(struct rte_flow_item_mark)},
> +       [RTE_FLOW_ITEM_TYPE_TX_QUEUE] = {ROC_NPC_ITEM_TYPE_TX_QUEUE,
> +                                    sizeof(struct rte_flow_item_tx_queue)}};
>
>  static int
>  npc_rss_action_validate(struct rte_eth_dev *eth_dev,
> --
> 2.39.2
>

      reply	other threads:[~2023-05-24 14:20 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-19  3:42 [dpdk-dev] [PATCH 1/2] common/cnxk: support Tx queue flow pattern in ROC API psatheesh
2023-05-19  3:42 ` [dpdk-dev] [PATCH 2/2] net/cnxk: support Tx queue flow pattern item psatheesh
2023-05-22 13:22   ` Jerin Jacob
2023-05-23  6:04 ` [dpdk-dev] [PATCH v2 1/2] common/cnxk: support Tx queue flow pattern in ROC API psatheesh
2023-05-23  6:04   ` [dpdk-dev] [PATCH v2 2/2] net/cnxk: support Tx queue flow pattern item psatheesh
2023-05-24  4:53 ` [dpdk-dev] [PATCH v2 1/2] common/cnxk: support Tx queue flow pattern in ROC API psatheesh
2023-05-24  4:53   ` [dpdk-dev] [PATCH v2 2/2] net/cnxk: support Tx queue flow pattern item psatheesh
2023-05-24 14:20     ` 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=CALBAE1MNez6ojRHruDKjN_N8zYN5mgJmVxqrstg+Uvb5hjgasw@mail.gmail.com \
    --to=jerinjacobk@gmail.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@amd.com \
    --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).