All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ajit Khaparde <ajit.khaparde@broadcom.com>
To: dev@dpdk.org
Cc: ferruh.yigit@intel.com
Subject: [PATCH v4 00/24] bnxt patchset
Date: Thu, 28 Sep 2017 16:43:21 -0500	[thread overview]
Message-ID: <20170928214345.87655-1-ajit.khaparde@broadcom.com> (raw)

This patch set includes some bug fixes and also adds
support for new dev_ops like rx_queue_count,
rx/tx_descriptor_status, get/set_eeprom
and rx_queue_intr_enable/disable.
It also adds support for the flow_filter funciton to add
Flow API functionality.

Please apply.

Ajit Khaparde (22):
  net/bnxt: fix HWRM_*() macros and locking
  net/bnxt: use 64-bits of address for vlan_table
  net/bnxt: fix an issue with group id calculation
  net/bnxt: fix calculation of number of pools
  net/bnxt: handle multi queue mode properly
  net/bnxt: fix rx handling and buffer allocation logic
  net/bnxt: fix an issue with broadcast traffic
  net/bnxt: fix usage of ETH_VMDQ_* flags
  net/bnxt: set checksum offload flags correctly
  net/bnxt: update status of Rx IP/L4 CKSUM
  net/bnxt: add support for xstats get by id
  net/bnxt: fix config rss update
  net/bnxt: set the hash_key_size
  net/bnxt: add support for rx_queue_count
  net/bnxt: add support for rx_descriptor_status
  net/bnxt: add support for tx_descriptor_status
  net/bnxt: add new HWRM structs to support flow filtering
  net/bnxt: add support for flow filter ops
  doc: update release notes
  net/bnxt: fix per queue stats display in xstats
  net/bnxt: prevent interrupt handler from accessing freed memory
  net/bnxt: add dev_supported_ptypes_get dev_op

Somnath Kotur (2):
  net/bnxt: add support for get/set EEPROM
  net/bnxt: add support for rx_queue_intr_enable/disable APIs

 doc/guides/nics/features/bnxt.ini      |    2 +
 doc/guides/rel_notes/release_17_11.rst |   11 +
 drivers/net/bnxt/bnxt.h                |   11 +-
 drivers/net/bnxt/bnxt_cpr.c            |    2 +
 drivers/net/bnxt/bnxt_cpr.h            |    6 +-
 drivers/net/bnxt/bnxt_ethdev.c         |  571 +++++++++++++++-
 drivers/net/bnxt/bnxt_filter.c         |  871 ++++++++++++++++++++++++-
 drivers/net/bnxt/bnxt_filter.h         |   76 +++
 drivers/net/bnxt/bnxt_hwrm.c           |  963 +++++++++++++++++++++------
 drivers/net/bnxt/bnxt_hwrm.h           |   25 +-
 drivers/net/bnxt/bnxt_irq.c            |    3 +
 drivers/net/bnxt/bnxt_irq.h            |    3 +
 drivers/net/bnxt/bnxt_nvm_defs.h       |   75 +++
 drivers/net/bnxt/bnxt_rxq.c            |  241 ++++---
 drivers/net/bnxt/bnxt_rxq.h            |    4 +
 drivers/net/bnxt/bnxt_rxr.c            |   98 ++-
 drivers/net/bnxt/bnxt_rxr.h            |   16 +
 drivers/net/bnxt/bnxt_stats.c          |   57 +-
 drivers/net/bnxt/bnxt_stats.h          |    5 +
 drivers/net/bnxt/bnxt_txr.c            |   35 +-
 drivers/net/bnxt/bnxt_txr.h            |   21 +
 drivers/net/bnxt/bnxt_vnic.c           |    1 +
 drivers/net/bnxt/bnxt_vnic.h           |    1 +
 drivers/net/bnxt/hsi_struct_def_dpdk.h | 1122 ++++++++++++++++++++++++++++++++
 drivers/net/bnxt/rte_pmd_bnxt.c        |   15 +-
 25 files changed, 3884 insertions(+), 351 deletions(-)
 create mode 100644 drivers/net/bnxt/bnxt_nvm_defs.h

-- 
2.13.5 (Apple Git-94)

             reply	other threads:[~2017-09-28 21:43 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-28 21:43 Ajit Khaparde [this message]
2017-09-28 21:43 ` [PATCH v4 01/24] net/bnxt: fix HWRM_*() macros and locking Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 02/24] net/bnxt: use 64-bits of address for vlan_table Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 03/24] net/bnxt: fix an issue with group id calculation Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 04/24] net/bnxt: fix calculation of number of pools Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 05/24] net/bnxt: handle multi queue mode properly Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 06/24] net/bnxt: fix rx handling and buffer allocation logic Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 07/24] net/bnxt: fix an issue with broadcast traffic Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 08/24] net/bnxt: fix usage of ETH_VMDQ_* flags Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 09/24] net/bnxt: set checksum offload flags correctly Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 10/24] net/bnxt: update status of Rx IP/L4 CKSUM Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 11/24] net/bnxt: add support for xstats get by id Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 12/24] net/bnxt: fix config rss update Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 13/24] net/bnxt: set the hash_key_size Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 14/24] net/bnxt: add support for rx_queue_count Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 15/24] net/bnxt: add support for rx_descriptor_status Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 16/24] net/bnxt: add support for tx_descriptor_status Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 17/24] net/bnxt: add new HWRM structs to support flow filtering Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 18/24] net/bnxt: add support for flow filter ops Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 19/24] doc: update release notes Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 20/24] net/bnxt: fix per queue stats display in xstats Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 21/24] net/bnxt: prevent interrupt handler from accessing freed memory Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 22/24] net/bnxt: add dev_supported_ptypes_get dev_op Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 23/24] net/bnxt: add support for get/set EEPROM Ajit Khaparde
2017-09-28 21:43 ` [PATCH v4 24/24] net/bnxt: add support for rx_queue_intr_enable/disable APIs Ajit Khaparde
2017-10-02 21:28 ` [PATCH v4 00/24] bnxt patchset Ferruh Yigit

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170928214345.87655-1-ajit.khaparde@broadcom.com \
    --to=ajit.khaparde@broadcom.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.