From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 44BF8A04F0 for ; Thu, 19 Dec 2019 11:00:27 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 00D9F1252; Thu, 19 Dec 2019 11:00:27 +0100 (CET) Received: from mail-ot1-f66.google.com (mail-ot1-f66.google.com [209.85.210.66]) by dpdk.org (Postfix) with ESMTP id EDB0A1252; Thu, 19 Dec 2019 11:00:25 +0100 (CET) Received: by mail-ot1-f66.google.com with SMTP id d7so2175127otf.5; Thu, 19 Dec 2019 02:00:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=nSCjGaTgxUL3Ix/DcRE8UmTMPKKRpp677t4KaTwb2zA=; b=lgcqErdzC6F8kK7DXkrCC8xZ9JMWT9Ntk64jbAuVTXnquwI7wB8e9dMvYubh16o5sr CWJYTEKYsMbgcga4rImsReSjdjaq/lA20vVTmU05Iz/xsU2fMDOQFSK3UvHfg9Ms/ozp BfMYOLkxR1wTmZDmTtLpwoqvWOP20VNt+eVNgSOcf8bJfq/za9tNQMqqLuHPaqCnBlUa qTRuUyGaR/rXYdLWE58EBab5BR8X4fysjssREi4nx1H8WZI3rCeEzm6I8lF59u6k9pqa 2d4AUZF/j2l4NaxSHHz4IEIpC67GqaLU7VMPlauVlBYGEfVQmx420qqfiBJj/9OIyKmw JwRA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=nSCjGaTgxUL3Ix/DcRE8UmTMPKKRpp677t4KaTwb2zA=; b=Ehd8qJBLJRkhqQ4efyfZ0f6FUkLRz3/V04OhPS5NJ4TFI4wj9r0B7HZwT+lOtneuef pwIwezNX5vEFoo+wImcYtUWLp+o/JQ7G32z6krWTrlk2rwybJvo42mg+ni4Sxv9J6i/j FtZCfqslGXuH1sn2JhJilIOdr0PEFAsHbj5FoXemOOUPRbZuKwB3E6K+/fDuX6kpgIsP K3hZQgy1EMZsdECpiXZi6Pyp0E/RIpLYgTSWDssL153G88d6Oq5s+9JCUaiq3ZwE+prw AZhhHrRLaeHemAIu6eJ2s5aM8Yh4ZLtXqO7sG0JEt41umXmtG8r39Rt5Md87wBnWXC22 fNuQ== X-Gm-Message-State: APjAAAXR3TfIR4hJukXGJ4/4DottS4cDMVgG41tpnxAoK5V9X00Q4tSO i9laf2qxZscsKKgVhyo6Bv8ZaJyuy/K3vjKrI8t8LQ== X-Google-Smtp-Source: APXvYqx7iEVAHWAqeYe6Ya4EmqJuC+PoHDA4NiQ9sWD5MquDlDh7ftsTcP3cXirYS4bLt2GTes8OeNyYsmXNgwNcC/E= X-Received: by 2002:a9d:12f1:: with SMTP id g104mr8234427otg.334.1576749625025; Thu, 19 Dec 2019 02:00:25 -0800 (PST) MIME-Version: 1.0 References: <1576567771-46094-1-git-send-email-xiangxia.m.yue@gmail.com> In-Reply-To: <1576567771-46094-1-git-send-email-xiangxia.m.yue@gmail.com> From: Tonghao Zhang Date: Thu, 19 Dec 2019 17:59:40 +0800 Message-ID: To: Suanming Mou Cc: dev@dpdk.org, stable@dpdk.org Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-stable] [PATCH] net/mlx5: allow install more meter actions X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" ping On Tue, Dec 17, 2019 at 3:29 PM wrote: > > From: Tonghao Zhang > > When creating the dr rule of meter, the matcher which > struct is "struct mlx5dv_dr_matcher" should not be > shared, if shared, mlx5dv_dr_rule_create will return > NULL. We can't install more metering offload actions. > > The call tree (rdma-core-47mlnx1 OFED 4.7-3.2.9): > * dr_rule_handle_ste_branch > * dr_rule_create_rule_nic > * dr_rule_create_rule_fdb > * dr_rule_create_rule > * mlx5dv_dr_rule_create > > In the dr_rule_handle_ste_branch, if ste is not used, > mlx5dv_dr_rule_create will return rule, if the ste is > used, and the ste is the last in the rule, mlx5dv_dr_rule_create > will return NULL. > > dr_rule_handle_ste_branch: > if dr_ste_not_used_ste > dr_rule_handle_empty_entry > else > dr_rule_find_ste_in_miss_list > dr_ste_is_last_in_rule: if so return NULL and set errno = EINVAL; > > Fixes: 9ea9b049a960 ("net/mlx5: split meter flow") > Cc: Suanming Mou > Cc: stable@dpdk.org > > Signed-off-by: Tonghao Zhang > --- > drivers/net/mlx5/mlx5_flow.c | 20 +++++++++++++------- > drivers/net/mlx5/mlx5_flow.h | 2 ++ > drivers/net/mlx5/mlx5_flow_dv.c | 5 +++++ > 3 files changed, 20 insertions(+), 7 deletions(-) > > diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c > index 0087163..f8cdc25 100644 > --- a/drivers/net/mlx5/mlx5_flow.c > +++ b/drivers/net/mlx5/mlx5_flow.c > @@ -3421,7 +3421,9 @@ uint32_t mlx5_flow_adjust_priority(struct rte_eth_dev *dev, int32_t priority, > const struct rte_flow_attr *attr, > const struct rte_flow_item items[], > const struct rte_flow_action actions[], > - bool external, struct rte_flow_error *error) > + bool external, > + bool shared, > + struct rte_flow_error *error) > { > struct mlx5_flow *dev_flow; > > @@ -3434,6 +3436,7 @@ uint32_t mlx5_flow_adjust_priority(struct rte_eth_dev *dev, int32_t priority, > LIST_INSERT_HEAD(&flow->dev_flows, dev_flow, next); > if (sub_flow) > *sub_flow = dev_flow; > + dev_flow->matcher_shared = shared; > return flow_drv_translate(dev, dev_flow, attr, items, actions, error); > } > > @@ -3741,7 +3744,9 @@ uint32_t mlx5_flow_adjust_priority(struct rte_eth_dev *dev, int32_t priority, > const struct rte_flow_attr *attr, > const struct rte_flow_item items[], > const struct rte_flow_action actions[], > - bool external, struct rte_flow_error *error) > + bool external, > + bool shared, > + struct rte_flow_error *error) > { > struct mlx5_priv *priv = dev->data->dev_private; > struct mlx5_dev_config *config = &priv->config; > @@ -3759,7 +3764,8 @@ uint32_t mlx5_flow_adjust_priority(struct rte_eth_dev *dev, int32_t priority, > config->dv_xmeta_en == MLX5_XMETA_MODE_LEGACY || > !mlx5_flow_ext_mreg_supported(dev)) > return flow_create_split_inner(dev, flow, NULL, attr, items, > - actions, external, error); > + actions, external, > + shared, error); > actions_n = flow_parse_qrss_action(actions, &qrss); > if (qrss) { > /* Exclude hairpin flows from splitting. */ > @@ -3842,7 +3848,7 @@ uint32_t mlx5_flow_adjust_priority(struct rte_eth_dev *dev, int32_t priority, > /* Add the unmodified original or prefix subflow. */ > ret = flow_create_split_inner(dev, flow, &dev_flow, attr, items, > ext_actions ? ext_actions : actions, > - external, error); > + external, shared, error); > if (ret < 0) > goto exit; > assert(dev_flow); > @@ -3906,7 +3912,7 @@ uint32_t mlx5_flow_adjust_priority(struct rte_eth_dev *dev, int32_t priority, > ret = flow_create_split_inner(dev, flow, &dev_flow, > &q_attr, mtr_sfx ? items : > q_items, q_actions, > - external, error); > + external, shared, error); > if (ret < 0) > goto exit; > assert(dev_flow); > @@ -3999,7 +4005,7 @@ uint32_t mlx5_flow_adjust_priority(struct rte_eth_dev *dev, int32_t priority, > } > /* Add the prefix subflow. */ > ret = flow_create_split_inner(dev, flow, &dev_flow, attr, items, > - pre_actions, external, error); > + pre_actions, external, false, error); > if (ret) { > ret = -rte_errno; > goto exit; > @@ -4035,7 +4041,7 @@ uint32_t mlx5_flow_adjust_priority(struct rte_eth_dev *dev, int32_t priority, > ret = flow_create_split_metadata(dev, flow, &sfx_attr, > sfx_items ? sfx_items : items, > sfx_actions ? sfx_actions : actions, > - external, error); > + external, sfx_items == NULL, error); > exit: > if (sfx_actions) > rte_free(sfx_actions); > diff --git a/drivers/net/mlx5/mlx5_flow.h b/drivers/net/mlx5/mlx5_flow.h > index 3fff5dd..84636be 100644 > --- a/drivers/net/mlx5/mlx5_flow.h > +++ b/drivers/net/mlx5/mlx5_flow.h > @@ -338,6 +338,7 @@ struct mlx5_flow_dv_matcher { > /**< Pointer to the table(group) the matcher associated with. */ > rte_atomic32_t refcnt; /**< Reference counter. */ > void *matcher_object; /**< Pointer to DV matcher */ > + bool shared; > uint16_t crc; /**< CRC of key. */ > uint16_t priority; /**< Priority of matcher. */ > struct mlx5_flow_dv_match_params mask; /**< Matcher mask. */ > @@ -532,6 +533,7 @@ struct mlx5_flow { > uint32_t mtr_flow_id; /**< Unique meter match flow id. */ > }; > bool external; /**< true if the flow is created external to PMD. */ > + bool matcher_shared; > }; > > /* Flow meter state. */ > diff --git a/drivers/net/mlx5/mlx5_flow_dv.c b/drivers/net/mlx5/mlx5_flow_dv.c > index 7528556..362c36c 100644 > --- a/drivers/net/mlx5/mlx5_flow_dv.c > +++ b/drivers/net/mlx5/mlx5_flow_dv.c > @@ -6324,10 +6324,13 @@ struct field_modify_info modify_tcp[] = { > if (!tbl) > return -rte_errno; /* No need to refill the error info */ > tbl_data = container_of(tbl, struct mlx5_flow_tbl_data_entry, tbl); > + if (!dev_flow->matcher_shared) > + goto create_matcher; > /* Lookup from cache. */ > LIST_FOREACH(cache_matcher, &tbl_data->matchers, next) { > if (matcher->crc == cache_matcher->crc && > matcher->priority == cache_matcher->priority && > + cache_matcher->shared && > !memcmp((const void *)matcher->mask.buf, > (const void *)cache_matcher->mask.buf, > cache_matcher->mask.size)) { > @@ -6346,6 +6349,7 @@ struct field_modify_info modify_tcp[] = { > return 0; > } > } > +create_matcher: > /* Register new matcher. */ > cache_matcher = rte_calloc(__func__, 1, sizeof(*cache_matcher), 0); > if (!cache_matcher) { > @@ -6355,6 +6359,7 @@ struct field_modify_info modify_tcp[] = { > "cannot allocate matcher memory"); > } > *cache_matcher = *matcher; > + cache_matcher->shared = dev_flow->matcher_shared; > dv_attr.match_criteria_enable = > flow_dv_matcher_enable(cache_matcher->mask.buf); > dv_attr.priority = matcher->priority; > -- > 1.8.3.1 >