This patch is for 18.05 and implements changes referenced in the deprecation notice[1]. (not yet merged as of this writing)
This patchset breaks the EAL ABI and bumps its version. This is arguably OK as memory changes will change a lot in EAL and thus likely break ABI anyway. However, two other alternative implementations are possible: 1) local static variable recording number of detected sockets. This is arguably less clean approach, but will not break the ABI and will have relatively little impact on the codebase. 2) keeping ABI compatibility, as shown in v3 of this patch [2]. My preference would be to keep this one. [1] http://dpdk.org/dev/patchwork/patch/33853/ [2] http://dpdk.org/dev/patchwork/patch/34994/ Anatoly Burakov (1): eal: add function to return number of detected sockets lib/librte_eal/bsdapp/eal/Makefile | 2 +- lib/librte_eal/common/eal_common_lcore.c | 37 +++++++++++++++++++++---------- lib/librte_eal/common/include/rte_eal.h | 1 + lib/librte_eal/common/include/rte_lcore.h | 8 +++++++ lib/librte_eal/linuxapp/eal/Makefile | 2 +- lib/librte_eal/rte_eal_version.map | 9 +++++++- 6 files changed, 44 insertions(+), 15 deletions(-) -- 2.7.4