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 D5607A0540; Wed, 15 Jul 2020 00:37:01 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9D0821C20D; Wed, 15 Jul 2020 00:36:59 +0200 (CEST) Received: from mail-oo1-f67.google.com (mail-oo1-f67.google.com [209.85.161.67]) by dpdk.org (Postfix) with ESMTP id E58641C201 for ; Wed, 15 Jul 2020 00:36:57 +0200 (CEST) Received: by mail-oo1-f67.google.com with SMTP id d125so90552oob.0 for ; Tue, 14 Jul 2020 15:36:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=broadcom.com; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=UPE6olZ+DFPgOieT5AYfR5ix7GOByGwWlKhaodrWM48=; b=YDLCuLHq4sL/1P6sVmiGJu2Qtcu3F+dYHGfvVly2xmbdV1CrbgLQ23myiESToPMQVO 1NPnSiriAwia1IDsWvsvffgDrnYJhY149MHH/hK5r/FrJfH7MBJnKheSyE+Z4K1oL05H NsKKm42TzkyUejZHYrW6NHus/fLIiCBb0ucLc= 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=UPE6olZ+DFPgOieT5AYfR5ix7GOByGwWlKhaodrWM48=; b=kNjCeL7hCURWIkZQT9BSRv8RGtSLShkJSSz3w+BDRge74owOPxcrT7btuknQr6kQ3j u6iC0ocfF1gZIUGerIugCxnvYVJSB7PQ3YGfE5xf989y6HdSBfvvCK6Ko4e9OZCnVFBB 2kqkiiAexKUDOZlx7+lJthieqHa+u6R9PX+rk8g2PiweraOI2Y0cXARS8ddyA5cdEB6x szC07GALaJNNzP96AmQ660djqU1svnQJlcPIgEJ03ILjSvIcMcgfR5MvjjJ3e1BK6BDp 7YnMeMw8G37l9Ddpd2q0j5OLxWCfacBtEKBsyVFb6t5h2v37dx1CoKuI87k6PVNzJbci snQw== X-Gm-Message-State: AOAM533x4ROWsIuZkP9+ZIOMYy1Pov9PmVeBuXJe9H4RtaV9oEHfcPXW eeODT58gOHzbavp7dpd0QMzoVcOFxeRC+JovM5d6/g== X-Google-Smtp-Source: ABdhPJxTh3OMFYeMARMTpne45/XdQm+KZJk4I99WHRG5nzeOGjey7gUAeH1ncyyUaNbDPlt8r/RcCcJQbkt6P7vCiEA= X-Received: by 2002:a4a:6b44:: with SMTP id h4mr6779409oof.52.1594766216799; Tue, 14 Jul 2020 15:36:56 -0700 (PDT) MIME-Version: 1.0 References: <20200713061600.19456-1-somnath.kotur@broadcom.com> <20200713094213.21410-1-somnath.kotur@broadcom.com> In-Reply-To: <20200713094213.21410-1-somnath.kotur@broadcom.com> From: Ajit Khaparde Date: Tue, 14 Jul 2020 15:36:40 -0700 Message-ID: To: Somnath Kotur Cc: dpdk-dev , Ferruh Yigit Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH v3 00/10] bnxt patches X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, Jul 13, 2020 at 2:47 AM Somnath Kotur wrote: > Minor enhancments added to the TF-ULP/Core layers > > Farah Smith (1): > net/bnxt: add changes to support 2 table scopes > > Jay Ding (2): > net/bnxt: implement TF Identifier search > net/bnxt: check index range in bulk get > > Kishore Padmanabha (6): > net/bnxt: add support to extract data from the ulp blob > net/bnxt: ignore ipv4 TOS mask > net/bnxt: add support for identifier search and ref count > net/bnxt: consider VLAN fields for template match criteria > net/bnxt: increase the number of egress flow entries > net/bnxt: add support for decrement TTL action > > Peter Spreadborough (1): > net/bnxt: add option to delay EEM sysmem mapping > > drivers/net/bnxt/meson.build | 3 +- > drivers/net/bnxt/tf_core/Makefile | 1 + > drivers/net/bnxt/tf_core/tf_core.c | 78 +++++++- > drivers/net/bnxt/tf_core/tf_core.h | 78 +++++++- > drivers/net/bnxt/tf_core/tf_device.h | 20 +++ > drivers/net/bnxt/tf_core/tf_device_p4.c | 2 + > drivers/net/bnxt/tf_core/tf_em.h | 11 ++ > drivers/net/bnxt/tf_core/tf_em_common.c | 145 ++++++++++++++- > drivers/net/bnxt/tf_core/tf_em_common.h | 27 ++- > drivers/net/bnxt/tf_core/tf_em_host.c | 23 +-- > drivers/net/bnxt/tf_core/tf_em_internal.c | 2 +- > drivers/net/bnxt/tf_core/tf_em_system.c | 25 +-- > drivers/net/bnxt/tf_core/tf_identifier.c | 148 +++++++++++++++ > drivers/net/bnxt/tf_core/tf_identifier.h | 47 +++++ > drivers/net/bnxt/tf_core/tf_msg.c | 3 +- > drivers/net/bnxt/tf_core/tf_rm.c | 43 +++++ > drivers/net/bnxt/tf_core/tf_rm.h | 45 +++++ > drivers/net/bnxt/tf_core/tf_shadow_identifier.c | 190 ++++++++++++++++++++ > drivers/net/bnxt/tf_core/tf_shadow_identifier.h | 229 > ++++++++++++++++++++++++ > drivers/net/bnxt/tf_core/tf_tbl.c | 40 ++--- > drivers/net/bnxt/tf_ulp/bnxt_ulp.c | 2 +- > drivers/net/bnxt/tf_ulp/ulp_mapper.c | 117 +++++++++++- > drivers/net/bnxt/tf_ulp/ulp_rte_parser.c | 74 +++++++- > drivers/net/bnxt/tf_ulp/ulp_rte_parser.h | 5 + > drivers/net/bnxt/tf_ulp/ulp_template_db_tbl.c | 4 +- > drivers/net/bnxt/tf_ulp/ulp_utils.c | 76 ++++++++ > drivers/net/bnxt/tf_ulp/ulp_utils.h | 17 ++ > 27 files changed, 1367 insertions(+), 88 deletions(-) > create mode 100644 drivers/net/bnxt/tf_core/tf_shadow_identifier.c > create mode 100644 drivers/net/bnxt/tf_core/tf_shadow_identifier.h > > -- > v1->v2: Corrected some typos in patch 5 and 6 > v2->v3: Modified case of some words in commit summary as per > git-check-log.sh > Patchset applied to dpdk-next-net-brcm. Thanks > 2.7.4 > >