DPDK patches and discussions
 help / color / mirror / Atom feed
From: Stephen Hemminger <stephen@networkplumber.org>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH 0/4 v4] bnx2x: new poll mode driver
Date: Thu,  7 May 2015 16:25:31 -0700	[thread overview]
Message-ID: <1431041135-6289-1-git-send-email-stephen@networkplumber.org> (raw)

Update to previous sumbission.
 - Split main source of driver from one monster patch into two large patches
 - Add map files for shared library support

Stephen Hemminger (4):
  pci: allow access to PCI config space
  bnx2x: new poll mode driver (part1)
  bnx2x: new poll mode driver (part2)
  bnx2x: enable BNX2X poll mode driver

 MAINTAINERS                                     |     3 +
 config/common_linuxapp                          |    10 +
 lib/Makefile                                    |     1 +
 lib/librte_eal/common/include/rte_pci.h         |    28 +
 lib/librte_eal/common/include/rte_pci_dev_ids.h |    30 +
 lib/librte_eal/linuxapp/eal/eal_pci.c           |    48 +
 lib/librte_eal/linuxapp/eal/eal_pci_init.h      |    11 +
 lib/librte_eal/linuxapp/eal/eal_pci_uio.c       |    14 +
 lib/librte_eal/linuxapp/eal/eal_pci_vfio.c      |    16 +
 lib/librte_eal/linuxapp/eal/rte_eal_version.map |     2 +
 lib/librte_pmd_bnx2x/Makefile                   |    28 +
 lib/librte_pmd_bnx2x/bnx2x.c                    | 11816 +++++++++++++++++++
 lib/librte_pmd_bnx2x/bnx2x.h                    |  1998 ++++
 lib/librte_pmd_bnx2x/bnx2x_ethdev.c             |   542 +
 lib/librte_pmd_bnx2x/bnx2x_ethdev.h             |    79 +
 lib/librte_pmd_bnx2x/bnx2x_logs.h               |    51 +
 lib/librte_pmd_bnx2x/bnx2x_rxtx.c               |   487 +
 lib/librte_pmd_bnx2x/bnx2x_rxtx.h               |    85 +
 lib/librte_pmd_bnx2x/bnx2x_stats.c              |  1619 +++
 lib/librte_pmd_bnx2x/bnx2x_stats.h              |   632 +
 lib/librte_pmd_bnx2x/bnx2x_vfpf.c               |   597 +
 lib/librte_pmd_bnx2x/bnx2x_vfpf.h               |   315 +
 lib/librte_pmd_bnx2x/debug.c                    |   113 +
 lib/librte_pmd_bnx2x/ecore_fw_defs.h            |   422 +
 lib/librte_pmd_bnx2x/ecore_hsi.h                |  6348 ++++++++++
 lib/librte_pmd_bnx2x/ecore_init.h               |   841 ++
 lib/librte_pmd_bnx2x/ecore_init_ops.h           |   886 ++
 lib/librte_pmd_bnx2x/ecore_mfw_req.h            |   206 +
 lib/librte_pmd_bnx2x/ecore_reg.h                |  3663 ++++++
 lib/librte_pmd_bnx2x/ecore_sp.c                 |  5455 +++++++++
 lib/librte_pmd_bnx2x/ecore_sp.h                 |  1795 +++
 lib/librte_pmd_bnx2x/elink.c                    | 13378 ++++++++++++++++++++++
 lib/librte_pmd_bnx2x/elink.h                    |   609 +
 lib/librte_pmd_bnx2x/rte_pmd_bnx2x_version.map  |     4 +
 mk/rte.app.mk                                   |     8 +
 35 files changed, 52140 insertions(+)
 create mode 100644 lib/librte_pmd_bnx2x/Makefile
 create mode 100644 lib/librte_pmd_bnx2x/bnx2x.c
 create mode 100644 lib/librte_pmd_bnx2x/bnx2x.h
 create mode 100644 lib/librte_pmd_bnx2x/bnx2x_ethdev.c
 create mode 100644 lib/librte_pmd_bnx2x/bnx2x_ethdev.h
 create mode 100644 lib/librte_pmd_bnx2x/bnx2x_logs.h
 create mode 100644 lib/librte_pmd_bnx2x/bnx2x_rxtx.c
 create mode 100644 lib/librte_pmd_bnx2x/bnx2x_rxtx.h
 create mode 100644 lib/librte_pmd_bnx2x/bnx2x_stats.c
 create mode 100644 lib/librte_pmd_bnx2x/bnx2x_stats.h
 create mode 100644 lib/librte_pmd_bnx2x/bnx2x_vfpf.c
 create mode 100644 lib/librte_pmd_bnx2x/bnx2x_vfpf.h
 create mode 100644 lib/librte_pmd_bnx2x/debug.c
 create mode 100644 lib/librte_pmd_bnx2x/ecore_fw_defs.h
 create mode 100644 lib/librte_pmd_bnx2x/ecore_hsi.h
 create mode 100644 lib/librte_pmd_bnx2x/ecore_init.h
 create mode 100644 lib/librte_pmd_bnx2x/ecore_init_ops.h
 create mode 100644 lib/librte_pmd_bnx2x/ecore_mfw_req.h
 create mode 100644 lib/librte_pmd_bnx2x/ecore_reg.h
 create mode 100644 lib/librte_pmd_bnx2x/ecore_sp.c
 create mode 100644 lib/librte_pmd_bnx2x/ecore_sp.h
 create mode 100644 lib/librte_pmd_bnx2x/elink.c
 create mode 100644 lib/librte_pmd_bnx2x/elink.h
 create mode 100644 lib/librte_pmd_bnx2x/rte_pmd_bnx2x_version.map

-- 
2.1.4

             reply	other threads:[~2015-05-07 23:25 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-07 23:25 Stephen Hemminger [this message]
2015-05-07 23:25 ` [dpdk-dev] [PATCH 1/4] pci: allow access to PCI config space Stephen Hemminger
2015-05-11 12:54   ` Neil Horman
     [not found]   ` <38426478085b4e779e18967cd1b6ae4f@BRMWP-EXMB11.corp.brocade.com>
2015-05-11 15:23     ` Stephen Hemminger
2015-05-11 15:37       ` Neil Horman
2015-05-11 17:30         ` Stephen Hemminger
2015-05-11 17:31     ` Stephen Hemminger
2015-05-12  9:56       ` Bruce Richardson
2015-05-07 23:25 ` [dpdk-dev] [PATCH 2/4] bnx2x: new poll mode driver (part1) Stephen Hemminger
2015-05-07 23:25 ` [dpdk-dev] [PATCH 3/4] bnx2x: new poll mode driver (part2) Stephen Hemminger
2015-05-07 23:25 ` [dpdk-dev] [PATCH 4/4] bnx2x: enable BNX2X poll mode driver Stephen Hemminger

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=1431041135-6289-1-git-send-email-stephen@networkplumber.org \
    --to=stephen@networkplumber.org \
    --cc=dev@dpdk.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).