DPDK patches and discussions
 help / color / mirror / Atom feed
From: David Marchand <david.marchand@redhat.com>
To: dev@dpdk.org
Cc: arybchenko@solarflare.com
Subject: [dpdk-dev] [PATCH v3 0/6] 20.11 announced cleanups
Date: Thu, 17 Sep 2020 13:28:17 +0200	[thread overview]
Message-ID: <20200917112823.10534-1-david.marchand@redhat.com> (raw)
In-Reply-To: <20200914081727.12215-1-david.marchand@redhat.com>

I put those EAL and PCI cleanups as a single series since I intend to
apply them at once with the rte_logs series.

Nothing really hard in this series, but the devil is in the details,
reviews welcome.


-- 
David Marchand

Changelog since v2:
- no change: rebased, added acks, reworded patch3 commitlog for Thomas,

Changelog since v1:
- added missing first patch, I suspect this will be a long week...

David Marchand (6):
  ethdev: remove unused kernel driver field
  bus/pci: switch to private kernel driver enum
  pci: move resource mapping to the PCI bus
  mem: drop mapping API workaround
  eal: hide internal device event structure
  bus/pci: remove duplicate declaration

 doc/guides/rel_notes/deprecation.rst    | 21 --------
 doc/guides/rel_notes/release_20_11.rst  | 15 ++++++
 drivers/bus/pci/bsd/pci.c               | 19 ++++---
 drivers/bus/pci/linux/pci.c             | 64 +++++++++++------------
 drivers/bus/pci/linux/pci_init.h        |  2 +
 drivers/bus/pci/linux/pci_uio.c         |  5 +-
 drivers/bus/pci/linux/pci_vfio.c        |  4 +-
 drivers/bus/pci/pci_common.c            | 56 ++++++++++++++++++---
 drivers/bus/pci/pci_common_uio.c        |  2 +-
 drivers/bus/pci/private.h               | 67 ++++++++++++++++++++++++-
 drivers/bus/pci/rte_bus_pci.h           | 11 +++-
 drivers/bus/pci/windows/pci.c           |  6 +--
 drivers/net/hinic/base/hinic_pmd_hwif.c |  2 +-
 drivers/net/hns3/hns3_ethdev_vf.c       |  4 +-
 drivers/net/liquidio/lio_ethdev.c       |  4 +-
 drivers/net/mvneta/mvneta_ethdev.c      |  1 -
 drivers/net/mvpp2/mrvl_ethdev.c         |  1 -
 drivers/net/nfp/nfp_net.c               |  2 +-
 drivers/net/octeontx/octeontx_ethdev.c  |  1 -
 drivers/net/ring/rte_eth_ring.c         |  1 -
 drivers/net/softnic/rte_eth_softnic.c   |  1 -
 drivers/net/virtio/virtio_pci.c         |  2 +-
 lib/librte_eal/include/rte_dev.h        | 18 -------
 lib/librte_eal/include/rte_eal_paging.h | 10 ----
 lib/librte_eal/linux/eal_dev.c          |  6 +++
 lib/librte_eal/windows/include/rte_os.h |  6 ---
 lib/librte_ethdev/rte_ethdev_core.h     |  1 -
 lib/librte_ethdev/rte_ethdev_pci.h      |  1 -
 lib/librte_ethdev/rte_ethdev_vdev.h     |  1 -
 lib/librte_pci/rte_pci.c                | 42 ----------------
 lib/librte_pci/rte_pci.h                | 66 ------------------------
 lib/librte_pci/rte_pci_version.map      |  2 -
 32 files changed, 203 insertions(+), 241 deletions(-)

-- 
2.23.0


  parent reply	other threads:[~2020-09-17 11:28 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-14  8:17 [dpdk-dev] [PATCH 0/5] " David Marchand
2020-09-14  8:17 ` [dpdk-dev] [PATCH 1/5] bus/pci: switch to private kernel driver enum David Marchand
2020-09-14  8:17 ` [dpdk-dev] [PATCH 2/5] pci: move resource mapping to the PCI bus David Marchand
2020-09-14  8:17 ` [dpdk-dev] [PATCH 3/5] mem: drop mapping API workaround David Marchand
2020-09-14  8:17 ` [dpdk-dev] [PATCH 4/5] eal: hide internal device event structure David Marchand
2020-09-14  8:17 ` [dpdk-dev] [PATCH 5/5] bus/pci: remove duplicate declaration David Marchand
2020-09-14  8:23 ` [dpdk-dev] [PATCH v2 0/6] 20.11 announced cleanups David Marchand
2020-09-14  8:23   ` [dpdk-dev] [PATCH v2 1/6] ethdev: remove unused kernel driver field David Marchand
2020-09-14 10:14     ` Andrew Rybchenko
2020-09-14  8:23   ` [dpdk-dev] [PATCH v2 2/6] bus/pci: switch to private kernel driver enum David Marchand
2020-09-14 10:19     ` Andrew Rybchenko
2020-09-14  8:23   ` [dpdk-dev] [PATCH v2 3/6] pci: move resource mapping to the PCI bus David Marchand
2020-09-14 10:22     ` Andrew Rybchenko
2020-09-14  8:23   ` [dpdk-dev] [PATCH v2 4/6] mem: drop mapping API workaround David Marchand
2020-09-14 10:22     ` Andrew Rybchenko
2020-09-14  8:23   ` [dpdk-dev] [PATCH v2 5/6] eal: hide internal device event structure David Marchand
2020-09-18 14:56     ` Kinsella, Ray
2020-09-14  8:23   ` [dpdk-dev] [PATCH v2 6/6] bus/pci: remove duplicate declaration David Marchand
2020-09-14 10:24     ` Andrew Rybchenko
2020-09-17 11:28 ` David Marchand [this message]
2020-09-17 11:28   ` [dpdk-dev] [PATCH v3 1/6] ethdev: remove unused kernel driver field David Marchand
2020-09-17 11:28   ` [dpdk-dev] [PATCH v3 2/6] bus/pci: switch to private kernel driver enum David Marchand
2020-09-17 11:28   ` [dpdk-dev] [PATCH v3 3/6] pci: move resource mapping to the PCI bus David Marchand
2020-09-18 13:43     ` Kinsella, Ray
2020-09-17 11:28   ` [dpdk-dev] [PATCH v3 4/6] mem: drop mapping API workaround David Marchand
2020-09-17 11:28   ` [dpdk-dev] [PATCH v3 5/6] eal: hide internal device event structure David Marchand
2020-09-18  3:40     ` Guo, Jia
2020-09-18 13:36       ` Kinsella, Ray
2020-09-17 11:28   ` [dpdk-dev] [PATCH v3 6/6] bus/pci: remove duplicate declaration David Marchand
2020-09-21  9:05   ` [dpdk-dev] [PATCH v3 0/6] 20.11 announced cleanups David Marchand

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=20200917112823.10534-1-david.marchand@redhat.com \
    --to=david.marchand@redhat.com \
    --cc=arybchenko@solarflare.com \
    --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).