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 E567CA00C3; Sat, 16 May 2020 17:12:31 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 940DB1D8FC; Sat, 16 May 2020 17:12:31 +0200 (CEST) Received: from mail-ot1-f67.google.com (mail-ot1-f67.google.com [209.85.210.67]) by dpdk.org (Postfix) with ESMTP id 93EAD1D5DE for ; Sat, 16 May 2020 17:12:30 +0200 (CEST) Received: by mail-ot1-f67.google.com with SMTP id 63so4391260oto.8 for ; Sat, 16 May 2020 08:12:30 -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=b9aXOtBpmP4NGrAqBa8IlGwsPnHQrwDsYbPB9EFZ5lQ=; b=eJDp9dmlv4QLfu0xk7hR6UAD1oRAO4sRcsqwTzts/HwvNp0j78821lRVvpxYkYaV4y 86IzBIB/ea/VKRE9GDLaxZcD0+7z++taufTRSI0Nskea62ZXKIaY/xkl/P2BRKuCfS5X 4/Y3D/PkEvHBiNNqBixxM8UnsdqRKbrb0174g= 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=b9aXOtBpmP4NGrAqBa8IlGwsPnHQrwDsYbPB9EFZ5lQ=; b=ObOJShmb2aH3AUSTgRa/qIe1HUGQPc+EEH5dD79kH7bwf7CVzSMKh41ODCFOt07nKt zLFPwqZZSFA5k84i6s5LhYzttCyw8Vp8Z74c3Jpx1EVBhHSZYokmWdhsMgw1tF/pdTb/ pYqjK3MHFc5gRIOem8acn3GIhxn2Nt2T15Rng+N2UTZZuxri7tCthk/og2mhkJaQH/Bl ne76Y1kl2NLHtB6iJC0Jb+WBadZJqbYFJZJJ3rxFTm1bsgOAHq5A6ynlbdSU8c5Glml0 pBwQAS38Et4YAmeVZpKQTyK8258Lwt5+oNwpV37u+39BoYjH68ugENbophx7a0K0hSWd 7yuA== X-Gm-Message-State: AOAM531MjgG01Nsl+ohY94GofVFFAB4v6jcTzpZylL7rsMQLZTy2/HpG S/E2eTJ7sdc3FeXQ4dE7va4EM2CFIZOzwfz9ujkQ90iB/Ns= X-Google-Smtp-Source: ABdhPJyVh3QrHTbgIYsS4pRum3Zt6rDZJ3Gc8GBjyeYEPubFrHwUMXZNr6cXzBuGuV+jMtA/0v5cQO9a8UxAACHGts8= X-Received: by 2002:a9d:6d03:: with SMTP id o3mr2930117otp.283.1589641949517; Sat, 16 May 2020 08:12:29 -0700 (PDT) MIME-Version: 1.0 References: <20200515184542.89318-1-ajit.khaparde@broadcom.com> In-Reply-To: <20200515184542.89318-1-ajit.khaparde@broadcom.com> From: Ajit Khaparde Date: Sat, 16 May 2020 08:12:13 -0700 Message-ID: To: dpdk-dev Cc: Ferruh Yigit Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH v1 0/9] bug fixes for bnxt PMD 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 Fri, May 15, 2020 at 11:45 AM Ajit Khaparde wrote: > Patchset with fixes. > The patch [1/9] enhances the log message in case of a FW command > timeout. The rest of the patches address a perf regression. > Recent commits caused a regression in performance because > bnxt structure became too big and noticed in rc2. > Most of the patches reduce the memory footprint of the struct bnxt. > With these changes the performance is back to normal. > > Ajit Khaparde (7): > net/bnxt: fix error log for command timeout > net/bnxt: fix to alloc LED config info > net/bnxt: fix to alloc COS queue info dynamically > net/bnxt: fix to allocate flow stat related structs > net/bnxt: fix to alloc link info struct > net/bnxt: fix to alloc PF info structure > net/bnxt: fix to use RSS config from eth dev struct > > Kalesh AP (1): > net/bnxt: fix to remove unneeded structure variable > > Mike Baucom (1): > net/bnxt: fix to allocate bnxt ulp context > > drivers/net/bnxt/bnxt.h | 47 ++-- > drivers/net/bnxt/bnxt_cpr.c | 20 +- > drivers/net/bnxt/bnxt_ethdev.c | 331 ++++++++++++++++++++--------- > drivers/net/bnxt/bnxt_filter.c | 12 +- > drivers/net/bnxt/bnxt_flow.c | 14 +- > drivers/net/bnxt/bnxt_hwrm.c | 205 +++++++++--------- > drivers/net/bnxt/bnxt_rxq.c | 4 +- > drivers/net/bnxt/bnxt_rxr.c | 4 +- > drivers/net/bnxt/bnxt_stats.c | 14 +- > drivers/net/bnxt/rte_pmd_bnxt.c | 98 ++++----- > drivers/net/bnxt/tf_ulp/bnxt_ulp.c | 64 ++++-- > 11 files changed, 492 insertions(+), 321 deletions(-) > Patchset applied to dpdk-next-net-brcm. Thanks