DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 0/5] 20.11 announced cleanups
@ 2020-09-14  8:17 David Marchand
  2020-09-14  8:17 ` [dpdk-dev] [PATCH 1/5] bus/pci: switch to private kernel driver enum David Marchand
                   ` (6 more replies)
  0 siblings, 7 replies; 30+ messages in thread
From: David Marchand @ 2020-09-14  8:17 UTC (permalink / raw)
  To: dev

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

David Marchand (5):
  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    | 18 -------
 doc/guides/rel_notes/release_20_11.rst  | 12 +++++
 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               | 68 ++++++++++++++++++++++++-
 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/nfp/nfp_net.c               |  2 +-
 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_pci/rte_pci.c                | 42 ---------------
 lib/librte_pci/rte_pci.h                | 66 ------------------------
 lib/librte_pci/rte_pci_version.map      |  2 -
 24 files changed, 201 insertions(+), 230 deletions(-)

-- 
2.23.0


^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2020-09-21  9:06 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-14  8:17 [dpdk-dev] [PATCH 0/5] 20.11 announced cleanups 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 ` [dpdk-dev] [PATCH v3 0/6] 20.11 announced cleanups David Marchand
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

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).