DPDK patches and discussions
 help / color / mirror / Atom feed
From: Raslan Darawsheh <rasland@mellanox.com>
To: Bing Zhao <bingz@mellanox.com>,
	Slava Ovsiienko <viacheslavo@mellanox.com>
Cc: Ori Kam <orika@mellanox.com>, Matan Azrad <matan@mellanox.com>,
	"dev@dpdk.org" <dev@dpdk.org>,
	Suanming Mou <suanmingm@mellanox.com>
Subject: Re: [dpdk-dev] [PATCH 1/2] net/mlx5: fix port action assert timing
Date: Mon, 18 May 2020 09:33:12 +0000	[thread overview]
Message-ID: <AM0PR05MB670718FE2AC493CB7B238D41C2B80@AM0PR05MB6707.eurprd05.prod.outlook.com> (raw)
In-Reply-To: <1589543084-113804-1-git-send-email-bingz@mellanox.com>

Hi,

> -----Original Message-----
> From: Bing Zhao <bingz@mellanox.com>
> Sent: Friday, May 15, 2020 2:45 PM
> To: Slava Ovsiienko <viacheslavo@mellanox.com>; Raslan Darawsheh
> <rasland@mellanox.com>
> Cc: Ori Kam <orika@mellanox.com>; Matan Azrad <matan@mellanox.com>;
> dev@dpdk.org; Suanming Mou <suanmingm@mellanox.com>
> Subject: [PATCH 1/2] net/mlx5: fix port action assert timing
> 
> After memory optimization, some action object handles are changed to
> index to save the overhead. Assertion in debug mode will be helpful
> for trouble shooting.
> In the current implementation, only one port action is supported in
> switchdev mode for one device flow. In debug mode, an assertion will
> be used to check the if the port action is none, and it should
> locate before the port action resource registration but not after
> it. The action index in the handle should be 0 before registration.
> Or else it will always cause a failure because the port action is
> registered and the index is not 0.
> 
> Fixes: f3faf9e ("net/mlx5: convert port id action to indexed")
> Cc: suanmingm@mellanox.com
> 
> Signed-off-by: Bing Zhao <bingz@mellanox.com>
> Reviewed-by: Matan Azrad <matan@mellanox.com>
> Reviewed-by: Suanming Mou <suanmingm@mellanox.com>
> Acked-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
> ---
>  drivers/net/mlx5/mlx5_flow_dv.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/mlx5/mlx5_flow_dv.c
> b/drivers/net/mlx5/mlx5_flow_dv.c
> index 71da5fb..45fa60c 100644
> --- a/drivers/net/mlx5/mlx5_flow_dv.c
> +++ b/drivers/net/mlx5/mlx5_flow_dv.c
> @@ -7834,10 +7834,10 @@ struct field_modify_info modify_tcp[] = {
>  				return -rte_errno;
>  			memset(&port_id_resource, 0,
> sizeof(port_id_resource));
>  			port_id_resource.port_id = port_id;
> +			MLX5_ASSERT(!handle->rix_port_id_action);
>  			if (flow_dv_port_id_action_resource_register
>  			    (dev, &port_id_resource, dev_flow, error))
>  				return -rte_errno;
> -			MLX5_ASSERT(!handle->rix_port_id_action);
>  			dev_flow->dv.actions[actions_n++] =
>  					dev_flow->dv.port_id_action-
> >action;
>  			action_flags |= MLX5_FLOW_ACTION_PORT_ID;
> --
> 1.8.3.1


Series applied to next-net-mlx,

Kindest regards,
Raslan Darawsheh

      parent reply	other threads:[~2020-05-18  9:33 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-15 11:44 Bing Zhao
2020-05-15 11:44 ` [dpdk-dev] [PATCH 2/2] net/mlx5: fix port action resource initialization Bing Zhao
2020-05-18  9:33 ` 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=AM0PR05MB670718FE2AC493CB7B238D41C2B80@AM0PR05MB6707.eurprd05.prod.outlook.com \
    --to=rasland@mellanox.com \
    --cc=bingz@mellanox.com \
    --cc=dev@dpdk.org \
    --cc=matan@mellanox.com \
    --cc=orika@mellanox.com \
    --cc=suanmingm@mellanox.com \
    --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).