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 1B3CFA0588; Thu, 16 Apr 2020 18:38:54 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 68F0A1DD90; Thu, 16 Apr 2020 18:38:53 +0200 (CEST) Received: from mail-oi1-f194.google.com (mail-oi1-f194.google.com [209.85.167.194]) by dpdk.org (Postfix) with ESMTP id 7EB681DD7B for ; Thu, 16 Apr 2020 18:38:51 +0200 (CEST) Received: by mail-oi1-f194.google.com with SMTP id b7so14508079oic.2 for ; Thu, 16 Apr 2020 09:38:51 -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=D3JdxjgjSTk+FYgLdZqw3jV2Z0BTMqgVgB4y54gPKtM=; b=IzskhQ1SdadpPDH8NnsIwnpKVaDSPHwR/BXq7bGXaWe/FXzs4SNKsPv9L2ML8o/4Qd g6LPCSm7XqejZRRuOzMWzVr8diSMcjY3+Dfj2Bu89GWgZ2Xc2moZ39Yzi7XB1NPAp5df 8fhrbjUSBq38qAyF4By9/J9LlBFyM3wnOk6cs= 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=D3JdxjgjSTk+FYgLdZqw3jV2Z0BTMqgVgB4y54gPKtM=; b=VsO/I2PNWRyjwjRu1JxHuYl7VXGG05rWvxLgIaLj5uwazXmYpQA+F69hTJdQDxxtvK unR1mgtlMhn78iP0Iyh9XE3KeXrIkWLkaj4Njj10Zh2ZJW7p3+xImsEupCOBK46Z6qY5 JaJh2H09bJqF7toBajjN3Tnzd52WhR7oqbmVLi3oJ84gNZW0zr6CimQrDgq8yUgJz4h3 Yp6+g3TqCtbzvQ7ecVx41LJuL0DIMM4K43ISO1hN7SZRBkh2uukPxCy56eIgVS5bbhAJ ism2uVyRmFTRMGbsnx4kwa91Zh+fFHT1kIMMctcPr5e95XFkDl1AwqpheC25+s3hgkSV bzJw== X-Gm-Message-State: AGi0PuZdBINsQkuOnsS/5qTQbGopqR7ACnuwjCB2i+olPqPr/G9x5l4a m5TOPLSKBqqrfTPcS4l8E20B29nlXJdI1H6NEYTUkQ== X-Google-Smtp-Source: APiQypKLHTBDxYM7jWw56fxM1xdlIDoifLGIkODISlEETGXZ37nkENUfbaZhtHuQwA72behGXVUiDS7k4WHQko515l8= X-Received: by 2002:aca:bbc6:: with SMTP id l189mr3571910oif.168.1587055130538; Thu, 16 Apr 2020 09:38:50 -0700 (PDT) MIME-Version: 1.0 References: <1586852011-37536-1-git-send-email-venkatkumar.duvvuru@broadcom.com> <1586938751-32808-1-git-send-email-venkatkumar.duvvuru@broadcom.com> In-Reply-To: From: Ajit Khaparde Date: Thu, 16 Apr 2020 09:38:34 -0700 Message-ID: To: Ferruh Yigit Cc: Venkat Duvvuru , dpdk-dev Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH v4 00/34] add support for host based flow table management 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 Thu, Apr 16, 2020 at 9:23 AM Ferruh Yigit wrote= : > On 4/15/2020 9:18 AM, Venkat Duvvuru wrote: > > This patchset introduces a new mechanism to allow host-memory based > > flow table management. This should allow higher flow scalability > > than what is currently supported. This new approach also defines a > > new rte_flow parser, and mapper which currently supports basic packet > > classification in receive path. The patchset uses a newly implemented > > control-plane firmware interface which optimizes flow insertions and > > deletions. > > > > This is a baseline patchset with limited scale. Follow on patches will > > add support for more protocol headers, rte_flow attributes, actions > > and such. > > > > This is a tech preview feature, hence disabled by default and can be > enabled > > using bnxt devargs. For ex: "-w 0000:0d:00.0,host-based-truflow=3D1=E2= =80=9D. > > > > v3=3D=3D>v4 > > =3D=3D=3D=3D=3D=3D=3D > > 1. Fixed some more compilation issues reported by CI > > > > Ajit Kumar Khaparde (1): > > net/bnxt: add updated dpdk hsi structure > > > > Farah Smith (2): > > net/bnxt: add tf core identifier support > > net/bnxt: add tf core table scope support > > > > Kishore Padmanabha (8): > > net/bnxt: match rte flow items with flow template patterns > > net/bnxt: match rte flow actions with flow template actions > > net/bnxt: add support for rte flow item parsing > > net/bnxt: add support for rte flow action parsing > > net/bnxt: add support for rte flow create driver hook > > net/bnxt: add support for rte flow validate driver hook > > net/bnxt: add support for rte flow destroy driver hook > > net/bnxt: add support for rte flow flush driver hook > > > > Michael Wildt (4): > > net/bnxt: add initial tf core session open > > net/bnxt: add initial tf core session close support > > net/bnxt: add tf core session sram functions > > net/bnxt: add resource manager functionality > > > > Mike Baucom (5): > > net/bnxt: add helper functions for blob/regfile ops > > net/bnxt: add support to process action tables > > net/bnxt: add support to process key tables > > net/bnxt: add support to free key and action tables > > net/bnxt: add support to alloc and program key and act tbls > > > > Pete Spreadborough (2): > > net/bnxt: add truflow message handlers > > net/bnxt: add EM/EEM functionality > > > > Randy Schacher (1): > > net/bnxt: update hwrm prep to use ptr > > > > Shahaji Bhosle (2): > > net/bnxt: add initial tf core resource mgmt support > > net/bnxt: add tf core TCAM support > > > > Venkat Duvvuru (9): > > net/bnxt: fetch SVIF information from the firmware > > net/bnxt: fetch vnic info from DPDK port > > net/bnxt: add devargs parameter for host memory based TRUFLOW feature > > net/bnxt: add support for ULP session manager init > > net/bnxt: add support for ULP session manager cleanup > > net/bnxt: register tf rte flow ops > > net/bnxt: disable vector mode when host based TRUFLOW is enabled > > net/bnxt: add support for injecting mark into packet=E2=80=99s mbuf > > net/bnxt: enable meson build on truflow code > > > > Can you please update the release notes too? > Also what do you think about updating the PMD documentation for TruFlow? > > These can be separate patches and can be merged to next-net separately. > Yes Ferruh. We. do have follow on patches. We will include the release notes update. PMD documentation is also in the works. It will be submitted soon. > > Thanks, > ferruh > >