From patchwork Mon Aug 6 10:55:16 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 43596 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 64B081B1C4; Mon, 6 Aug 2018 12:57:20 +0200 (CEST) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 10FB18E76 for ; Mon, 6 Aug 2018 12:57:19 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id B4E072112B; Mon, 6 Aug 2018 06:57:18 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Mon, 06 Aug 2018 06:57:18 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:date:from:message-id:subject:to:x-me-sender:x-me-sender :x-sasl-enc; s=mesmtp; bh=BkTnHK1YqRtp3Mb/zcLGHMRvdyjGJsE8f4mdm0 QGlqs=; b=sfWnwgF3CrkVjGA2JxZyj/jPTB4Vbp1r72IXO+F5Q1TKhHKwEyGaCy SIjOKS7NFjlOPwNwD+r71fer5y6vodrT3iuQ1Kho0IkDen8GiPet9mnHOdhOutEN IuX5MV8x0iaFkn+fRtPbZ18LBEJb6QJJgFMdfpYXjLlUgA1cDEV6c= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:message-id:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=BkTnHK1YqRtp3Mb/z cLGHMRvdyjGJsE8f4mdm0QGlqs=; b=HDVyDlhHkzE5uoPWcqKRB61zFvbR9zeQV Q8X35OgXYYn94dJzdGKPGm6qw06upZ7Ub1JI+qqso4IUddRCe/rmS7VszEm+dO1Z 9/h/VZSNPLVRrsv2KMVUnsVRa7SBoCU6V9Kcl1L3Ch/MbT7jud5YP9E3YIILvE4Q uObTAWnW82+Bv60BZpD61xtVxQueU9S9MpBWcllQzcAS+O3WDFI/fahlFRFcdzM0 /piMnCA6yqcZKhymfnTdr7g/njKoApZFhaPLsyiLJe/DWDCFoUgvmi7slr+INNaY L5RhESOQqXbYfPbV3bFrMgZE8Jjz5HUasFYJjvmF0y4peS+uYmkEA== X-ME-Proxy: X-ME-Sender: Received: from xps.monjalon.net (114.149.6.93.rev.sfr.net [93.6.149.114]) by mail.messagingengine.com (Postfix) with ESMTPA id 92EBA1025C; Mon, 6 Aug 2018 06:57:17 -0400 (EDT) From: Thomas Monjalon To: ferruh.yigit@intel.com, arybchenko@solarflare.com Cc: dev@dpdk.org Date: Mon, 6 Aug 2018 12:55:16 +0200 Message-Id: <20180806105516.2685-1-thomas@monjalon.net> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH] ethdev: bump library version X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The old offload API is removed in 18.08, so the library version must be increased, in order to show the incompatibility with 18.05 one. Fixes: ab3ce1e0c193 ("ethdev: remove old offload API") Signed-off-by: Thomas Monjalon Reviewed-by: Andrew Rybchenko --- doc/guides/rel_notes/release_18_08.rst | 13 ++++++++++++- lib/librte_ethdev/Makefile | 2 +- lib/librte_ethdev/meson.build | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/doc/guides/rel_notes/release_18_08.rst b/doc/guides/rel_notes/release_18_08.rst index 9849fec7d..a3546c892 100644 --- a/doc/guides/rel_notes/release_18_08.rst +++ b/doc/guides/rel_notes/release_18_08.rst @@ -131,6 +131,17 @@ API Changes - ``rte_mempool_xmem_size`` - ``rte_mempool_xmem_usage`` +* ethdev: The old offload API is removed: + + - Rx per-port ``rte_eth_conf.rxmode.[bit-fields]`` + - Tx per-queue ``rte_eth_txconf.txq_flags`` + - ``ETH_TXQ_FLAGS_NO*`` + + The transition bits are removed: + + - ``rte_eth_conf.rxmode.ignore_offload_bitfield`` + - ``ETH_TXQ_FLAGS_IGNORE`` + * cryptodev: In struct ``struct rte_cryptodev_info``, field ``rte_pci_device *pci_dev`` has been replaced with field ``struct rte_device *device``. Value 0 is accepted in ``sym.max_nb_sessions``, meaning that a device @@ -243,7 +254,7 @@ The libraries prepended with a plus sign were incremented in this version. + librte_cryptodev.so.5 librte_distributor.so.1 librte_eal.so.7 - librte_ethdev.so.9 + + librte_ethdev.so.10 librte_eventdev.so.4 librte_flow_classify.so.1 librte_gro.so.1 diff --git a/lib/librte_ethdev/Makefile b/lib/librte_ethdev/Makefile index c2f2f7d82..0935a275e 100644 --- a/lib/librte_ethdev/Makefile +++ b/lib/librte_ethdev/Makefile @@ -16,7 +16,7 @@ LDLIBS += -lrte_mbuf EXPORT_MAP := rte_ethdev_version.map -LIBABIVER := 9 +LIBABIVER := 10 SRCS-y += rte_ethdev.c SRCS-y += rte_flow.c diff --git a/lib/librte_ethdev/meson.build b/lib/librte_ethdev/meson.build index aed5d2265..596cd0f39 100644 --- a/lib/librte_ethdev/meson.build +++ b/lib/librte_ethdev/meson.build @@ -2,7 +2,7 @@ # Copyright(c) 2017 Intel Corporation name = 'ethdev' -version = 9 +version = 10 allow_experimental_apis = true sources = files('ethdev_profile.c', 'rte_ethdev.c',