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 8A40AA04B1; Thu, 24 Sep 2020 01:51:01 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4AD6B1DB48; Thu, 24 Sep 2020 01:51:00 +0200 (CEST) Received: from mail-oi1-f196.google.com (mail-oi1-f196.google.com [209.85.167.196]) by dpdk.org (Postfix) with ESMTP id 0E7FA1DB3D for ; Thu, 24 Sep 2020 01:50:58 +0200 (CEST) Received: by mail-oi1-f196.google.com with SMTP id i17so1701130oig.10 for ; Wed, 23 Sep 2020 16:50: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=Go25HSTdG2uuBcCE+7fJ0+0n3GB0qTgAh66sZ5Lpn7E=; b=AIWRN7P8euPY+aSL0Rb6lSbafK73q7NJ3/zNXC1usI+2LH/nWTB64exV+6kpyD4AhN 4dCyTrfvO5Yivp+Ri41kW9u7ZdvBv8OsXOuGeRtKeKkZVDUvTQH+kVgNRgMUErYW+oXN QXlPyX4wQ9gzCC3W7y4KkPp0sUBb99zMWWHok= 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=Go25HSTdG2uuBcCE+7fJ0+0n3GB0qTgAh66sZ5Lpn7E=; b=pZm9Aa//R/HPM3FAP/HGdej55XyrlrwCiY/GzOY+ASr8bhvjaQjt+ODcyAtXrrDa1P bWY7go2uYdHvV4g0mv3Eld4XDvkQBjmSHbWw9gtONdCXt7J0/oPSegOcX5PmteDq78uh dlBgF+xB0WDTbLQXxi1J1ZJ61b14Xv503iT9MQDsCOtaabhwIEfFY43ZRuKCvzgB/gPJ rHWvN/8voAe1E4oLyDPCv55bmbga5lGkaQLHxnrbFxdI84Ykzdpq8I7tB/8vGD3H8zDQ AmSUYAkxZJC/+RC1mL8kvtRIDZ5duB15omoT0EtXzvPhYAQU0IbbjmQGP6yfSCY6X6Ls zDxA== X-Gm-Message-State: AOAM533UkU2q3gTvsCGxsLtP5r+t4xQ9V3vzb7cSQ0iNqDn3Aq7Frnvx Ta8wb6Xl6WoO8T28IdR5dOoi6cOXs4Z738vMpvWA+w== X-Google-Smtp-Source: ABdhPJwj42C55Vck4g9+K44nWeM0bBP37b5ComMpHeHwUeJFaPsv3FElyF1jTDw3ZYEhillDCrma4YAZK36X8cskdpo= X-Received: by 2002:aca:4904:: with SMTP id w4mr1058413oia.179.1600905057155; Wed, 23 Sep 2020 16:50:57 -0700 (PDT) MIME-Version: 1.0 References: <20200922070632.17706-1-somnath.kotur@broadcom.com> In-Reply-To: <20200922070632.17706-1-somnath.kotur@broadcom.com> From: Ajit Khaparde Date: Wed, 23 Sep 2020 16:50: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 0/8] 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 Tue, Sep 22, 2020 at 12:13 AM Somnath Kotur wrote: > > Fixes and enchancements in the bnxt PMD, mostly > in the TRUFLOW layer Patchset applied to dpdk-next-net-brcm. > > Kishore Padmanabha (3): > net/bnxt: add support for decap action for ipv6 VXLAN flows > net/bnxt: fix flow match to ignore pkt type > net/bnxt: fix seg fault during NAT configuration > > Somnath Kotur (5): > net/bnxt: simplify representor Rx ring creation > net/bnxt: fix to correct bad shift operation > net/bnxt: fix to honor value passed for truflow devargs > net/bnxt: add a null ptr check in bnxt PCI probe > net/bnxt: support for representors on remote host domain > > drivers/net/bnxt/bnxt.h | 21 +- > drivers/net/bnxt/bnxt_cpr.c | 4 +- > drivers/net/bnxt/bnxt_ethdev.c | 361 +++++- > drivers/net/bnxt/bnxt_hwrm.c | 97 +- > drivers/net/bnxt/bnxt_hwrm.h | 4 + > drivers/net/bnxt/bnxt_reps.c | 223 ++-- > drivers/net/bnxt/bnxt_reps.h | 30 +- > drivers/net/bnxt/hsi_struct_def_dpdk.h | 248 ++++ > drivers/net/bnxt/tf_ulp/bnxt_ulp.c | 6 +- > drivers/net/bnxt/tf_ulp/ulp_def_rules.c | 4 +- > drivers/net/bnxt/tf_ulp/ulp_template_db_class.c | 1512 +++++++++++++++-------- > drivers/net/bnxt/tf_ulp/ulp_template_db_enum.h | 40 +- > drivers/net/bnxt/tf_ulp/ulp_template_db_field.h | 118 +- > 13 files changed, 1924 insertions(+), 744 deletions(-) > > -- > 2.7.4 >