[dpdk-dev] [PATCH v2 00/12] EAL and PCI ABI changes for 19.11

David Marchand david.marchand at redhat.com
Wed Oct 23 20:54:12 CEST 2019


Let's prepare for the ABI freeze.

The first patches are about changes that had been announced before (with
a patch from Stephen that I took as it is ready as is from my pov).

The malloc_heap structure from the memory subsystem can be hidden.
The PCI library had some forgotten deprecated APIs that are removed with
this series.

rte_logs could be hidden, but I am not that confortable about
doing it right away: I added an accessor to rte_logs.file, but I am fine
with dropping the last patch and wait for actually hiding this in the next
ABI break.

Changelog since v1:
- I went a step further, hiding rte_config after de-inlining non critical
  functions

Comments?


-- 
David Marchand

David Marchand (11):
  eal: remove deprecated CPU flags check function
  eal: remove deprecated malloc virt2phys function
  mem: hide internal heap header
  net/bonding: use non deprecated PCI API
  pci: remove deprecated functions
  log: add log stream accessor
  log: hide internal log structure
  test/mem: remove dependency on EAL internals
  eal: deinline lcore APIs
  eal: factorize lcore role code in common code
  eal: make the global configuration private

Stephen Hemminger (1):
  eal: make lcore config private

 app/test-pmd/testpmd.c                             |  1 -
 app/test/test_memzone.c                            | 50 +++++++++------
 doc/guides/rel_notes/deprecation.rst               | 17 -----
 doc/guides/rel_notes/release_19_11.rst             | 19 ++++++
 drivers/common/qat/qat_logs.c                      |  3 +-
 drivers/common/qat/qat_logs.h                      |  3 +-
 drivers/net/bonding/rte_eth_bond_args.c            |  5 +-
 lib/librte_eal/common/Makefile                     |  2 +-
 lib/librte_eal/common/eal_common_cpuflags.c        | 11 ----
 lib/librte_eal/common/eal_common_launch.c          |  2 +
 lib/librte_eal/common/eal_common_lcore.c           | 48 ++++++++++++++
 lib/librte_eal/common/eal_common_log.c             | 56 ++++++++++-------
 lib/librte_eal/common/eal_common_mcfg.c            |  1 +
 lib/librte_eal/common/eal_memcfg.h                 |  3 +-
 lib/librte_eal/common/eal_private.h                | 57 +++++++++++++++++
 .../common/include/generic/rte_cpuflags.h          |  9 ---
 lib/librte_eal/common/include/rte_eal.h            | 43 -------------
 lib/librte_eal/common/include/rte_lcore.h          | 73 ++++------------------
 lib/librte_eal/common/include/rte_log.h            | 33 +++++-----
 lib/librte_eal/common/include/rte_malloc.h         |  7 ---
 lib/librte_eal/common/include/rte_malloc_heap.h    | 35 -----------
 lib/librte_eal/common/malloc_heap.c                |  1 +
 lib/librte_eal/common/malloc_heap.h                | 25 +++++++-
 lib/librte_eal/common/meson.build                  |  1 -
 lib/librte_eal/common/rte_malloc.c                 |  1 +
 lib/librte_eal/common/rte_service.c                |  2 +
 lib/librte_eal/freebsd/eal/eal.c                   |  7 ---
 lib/librte_eal/linux/eal/eal.c                     |  7 ---
 lib/librte_eal/rte_eal_version.map                 | 17 +++--
 lib/librte_eal/windows/eal/eal_thread.c            |  1 +
 lib/librte_pci/rte_pci.c                           | 19 ------
 lib/librte_pci/rte_pci.h                           | 47 --------------
 lib/librte_pci/rte_pci_version.map                 |  3 -
 33 files changed, 271 insertions(+), 338 deletions(-)
 delete mode 100644 lib/librte_eal/common/include/rte_malloc_heap.h

-- 
1.8.3.1



More information about the dev mailing list