DPDK patches and discussions
 help / color / mirror / Atom feed
From: Raslan Darawsheh <rasland@mellanox.com>
To: Slava Ovsiienko <viacheslavo@mellanox.com>,
	"dev@dpdk.org" <dev@dpdk.org>
Cc: Matan Azrad <matan@mellanox.com>, "stable@dpdk.org" <stable@dpdk.org>
Subject: Re: [dpdk-dev] [PATCH] net/mlx5: fix metadata for compressed Rx CQEs
Date: Wed, 25 Mar 2020 15:37:13 +0000	[thread overview]
Message-ID: <AM0PR05MB6707F9AE822A9D2F8D0751D2C2CE0@AM0PR05MB6707.eurprd05.prod.outlook.com> (raw)
In-Reply-To: <1585052118-29013-1-git-send-email-viacheslavo@mellanox.com>

Hi,

> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Viacheslav Ovsiienko
> Sent: Tuesday, March 24, 2020 2:15 PM
> To: dev@dpdk.org
> Cc: Matan Azrad <matan@mellanox.com>; stable@dpdk.org
> Subject: [dpdk-dev] [PATCH] net/mlx5: fix metadata for compressed Rx CQEs
> 
> If packets with the same metadata are received with compressed CQE
> the metadata value is not copied from the title packet in vectorized
> rx_burst routines, it causes wrong metadat values seeing by
> applications.
> 
> Fixes: a18ac6113331 ("net/mlx5: add metadata support to Rx datapath")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
> ---
>  drivers/net/mlx5/mlx5_rxtx_vec_altivec.h | 13 +++++++++++++
>  drivers/net/mlx5/mlx5_rxtx_vec_neon.h    | 13 +++++++++++++
>  drivers/net/mlx5/mlx5_rxtx_vec_sse.h     | 14 +++++++++++++-
>  3 files changed, 39 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/net/mlx5/mlx5_rxtx_vec_altivec.h
> b/drivers/net/mlx5/mlx5_rxtx_vec_altivec.h
> index aa43cab..ae5c857 100644
> --- a/drivers/net/mlx5/mlx5_rxtx_vec_altivec.h
> +++ b/drivers/net/mlx5/mlx5_rxtx_vec_altivec.h
> @@ -263,6 +263,19 @@
>  			elts[pos + 2]->hash.fdir.hi = flow_tag;
>  			elts[pos + 3]->hash.fdir.hi = flow_tag;
>  		}
> +		if (rte_flow_dynf_metadata_avail()) {
> +			const uint32_t meta =
> *RTE_FLOW_DYNF_METADATA(t_pkt);
> +
> +			/* Check if title packet has valid metadata. */
> +			if (meta) {
> +				MLX5_ASSERT(t_pkt->ol_flags &
> +					    PKT_RX_DYNF_METADATA);
> +				*RTE_FLOW_DYNF_METADATA(elts[pos]) =
> meta;
> +				*RTE_FLOW_DYNF_METADATA(elts[pos + 1])
> = meta;
> +				*RTE_FLOW_DYNF_METADATA(elts[pos + 2])
> = meta;
> +				*RTE_FLOW_DYNF_METADATA(elts[pos + 3])
> = meta;
> +			}
> +		}
> 
>  		pos += MLX5_VPMD_DESCS_PER_LOOP;
>  		/* Move to next CQE and invalidate consumed CQEs. */
> diff --git a/drivers/net/mlx5/mlx5_rxtx_vec_neon.h
> b/drivers/net/mlx5/mlx5_rxtx_vec_neon.h
> index 6d952df..701e5e0 100644
> --- a/drivers/net/mlx5/mlx5_rxtx_vec_neon.h
> +++ b/drivers/net/mlx5/mlx5_rxtx_vec_neon.h
> @@ -205,6 +205,19 @@
>  			elts[pos + 2]->hash.fdir.hi = flow_tag;
>  			elts[pos + 3]->hash.fdir.hi = flow_tag;
>  		}
> +		if (rte_flow_dynf_metadata_avail()) {
> +			const uint32_t meta =
> *RTE_FLOW_DYNF_METADATA(t_pkt);
> +
> +			/* Check if title packet has valid metadata. */
> +			if (meta) {
> +				MLX5_ASSERT(t_pkt->ol_flags &
> +					    PKT_RX_DYNF_METADATA);
> +				*RTE_FLOW_DYNF_METADATA(elts[pos]) =
> meta;
> +				*RTE_FLOW_DYNF_METADATA(elts[pos + 1])
> = meta;
> +				*RTE_FLOW_DYNF_METADATA(elts[pos + 2])
> = meta;
> +				*RTE_FLOW_DYNF_METADATA(elts[pos + 3])
> = meta;
> +			}
> +		}
>  		pos += MLX5_VPMD_DESCS_PER_LOOP;
>  		/* Move to next CQE and invalidate consumed CQEs. */
>  		if (!(pos & 0x7) && pos < mcqe_n) {
> diff --git a/drivers/net/mlx5/mlx5_rxtx_vec_sse.h
> b/drivers/net/mlx5/mlx5_rxtx_vec_sse.h
> index 406f23f..a4086df 100644
> --- a/drivers/net/mlx5/mlx5_rxtx_vec_sse.h
> +++ b/drivers/net/mlx5/mlx5_rxtx_vec_sse.h
> @@ -118,7 +118,6 @@
>  			     14, 15,  6,  7,
>  			     10, 11,  2,  3);
>  #endif
> -
>  	/*
>  	 * A. load mCQEs into a 128bit register.
>  	 * B. store rearm data to mbuf.
> @@ -191,6 +190,19 @@
>  			elts[pos + 2]->hash.fdir.hi = flow_tag;
>  			elts[pos + 3]->hash.fdir.hi = flow_tag;
>  		}
> +		if (rte_flow_dynf_metadata_avail()) {
> +			const uint32_t meta =
> *RTE_FLOW_DYNF_METADATA(t_pkt);
> +
> +			/* Check if title packet has valid metadata. */
> +			if (meta) {
> +				MLX5_ASSERT(t_pkt->ol_flags &
> +					    PKT_RX_DYNF_METADATA);
> +				*RTE_FLOW_DYNF_METADATA(elts[pos]) =
> meta;
> +				*RTE_FLOW_DYNF_METADATA(elts[pos + 1])
> = meta;
> +				*RTE_FLOW_DYNF_METADATA(elts[pos + 2])
> = meta;
> +				*RTE_FLOW_DYNF_METADATA(elts[pos + 3])
> = meta;
> +			}
> +		}
>  		pos += MLX5_VPMD_DESCS_PER_LOOP;
>  		/* Move to next CQE and invalidate consumed CQEs. */
>  		if (!(pos & 0x7) && pos < mcqe_n) {
> --
> 1.8.3.1


Patch applied to next-net-mlx,

Kindest regards,
Raslan Darawsheh

      parent reply	other threads:[~2020-03-25 15:37 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-24 12:15 Viacheslav Ovsiienko
2020-03-24 15:57 ` Matan Azrad
2020-03-25 15:37 ` Raslan Darawsheh [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=AM0PR05MB6707F9AE822A9D2F8D0751D2C2CE0@AM0PR05MB6707.eurprd05.prod.outlook.com \
    --to=rasland@mellanox.com \
    --cc=dev@dpdk.org \
    --cc=matan@mellanox.com \
    --cc=stable@dpdk.org \
    --cc=viacheslavo@mellanox.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).