From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 2048D2C28 for ; Mon, 8 Oct 2018 00:26:00 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 9965D21F2B; Sun, 7 Oct 2018 18:25:59 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Sun, 07 Oct 2018 18:25:59 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; s=mesmtp; bh=NPKO+Z9RuhSFghI3w2SccM+ 6qAmBzap9pw1+hF7xVZM=; b=RKjLIl/2MejQ/xWoiNcYgm3IFWEaX+r8BF9zMXj rbLtQntDPXQVDBvrWrFM7wv3NsTNXQUEWPb6bjxHt3GCcbmwko2ZAmW1Axl1MK6q +3gjhpIMIdorMYsRdRpp1HzDosd3LNdZ/zy0yfHVBzL2oxOsrkVD826tTDinEcv0 NvMA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:date:from :message-id:mime-version:subject:to:x-me-proxy:x-me-proxy :x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=NPKO+Z9RuhSFghI3w 2SccM+6qAmBzap9pw1+hF7xVZM=; b=BWUYehrUo09894oq8yZJ587oZ07/xo6hE i+/5UHiT/7PTdzfIP4s6Tr+31XAG7c4WTBj/bbKjxwSxDu407rkrIPBr/btrHKoJ BmZFyJXQIwwaKuXJFrhhayoh4TER5wL6yumJp9an5RMIgXpMDKa9Lc0mUo9pORcx SI0UySXunOqWiNgl5xVrfo3MTOwfk8tnXuCkXIU0oVE1nQkQcDQQ5JBoChAnqu/i 2gkvosGPGf1Pln7PYw7n/vDKGjY1uAFfy2s99nbDCsLtBGQNw1HTYbYwT3AqrGbZ AEINum31c3fsfnjYUytNp7zWsW3/MBXZ5LWcw+wKXJK/FVSv4erGA== X-ME-Sender: X-ME-Proxy: Received: from xps.monjalon.net (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id C939AE48A7; Sun, 7 Oct 2018 18:25:57 -0400 (EDT) From: Thomas Monjalon To: dev@dpdk.org Cc: gaetan.rivet@6wind.com, ophirmu@mellanox.com, ferruh.yigit@intel.com, arybchenko@solarflare.com Date: Mon, 8 Oct 2018 00:25:49 +0200 Message-Id: <20181007222554.4886-1-thomas@monjalon.net> X-Mailer: git-send-email 2.19.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 0/5] replace attach/detach functions 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: , X-List-Received-Date: Sun, 07 Oct 2018 22:26:00 -0000 The functions for EAL attach/detach had already some replacements, so they are removed. The functions for ethdev attach/detach are removed and replaced thanks to a new ethdev iterator working with devargs. rte_eth_dev_attach(devargs, &port_id) is replaced by: rte_dev_probe(devargs); RTE_ETH_FOREACH_MATCHING_DEV(port_id, devargs, &iterator) { do what you want with the new port_id } The biggest benefit is to be able to manage devargs string matching several ports to probe. Depends on: https://patches.dpdk.org/project/dpdk/list/?series=1676 Thomas Monjalon (5): bus/vdev: add iteration filter on name ethdev: add an iterator to match some devargs input ethdev: allow iterating with only class filter ethdev: remove deprecated attach/detach functions eal: remove deprecated attach/detach functions app/test-pmd/testpmd.c | 17 +- doc/guides/contributing/documentation.rst | 15 +- .../prog_guide/port_hotplug_framework.rst | 106 ----------- doc/guides/rel_notes/deprecation.rst | 12 -- doc/guides/rel_notes/release_18_11.rst | 14 +- drivers/bus/vdev/vdev_params.c | 21 ++- drivers/net/virtio/virtio_user_ethdev.c | 1 - lib/librte_eal/common/eal_common_dev.c | 53 ------ lib/librte_eal/common/include/rte_common.h | 6 + lib/librte_eal/common/include/rte_dev.h | 27 --- lib/librte_eal/rte_eal_version.map | 2 - lib/librte_ethdev/Makefile | 2 +- lib/librte_ethdev/ethdev_private.c | 10 +- lib/librte_ethdev/ethdev_private.h | 6 + lib/librte_ethdev/meson.build | 2 +- lib/librte_ethdev/rte_class_eth.c | 2 +- lib/librte_ethdev/rte_ethdev.c | 177 ++++++++++-------- lib/librte_ethdev/rte_ethdev.h | 89 +++++---- lib/librte_ethdev/rte_ethdev_version.map | 4 +- 19 files changed, 228 insertions(+), 338 deletions(-) delete mode 100644 doc/guides/prog_guide/port_hotplug_framework.rst -- 2.19.0