From patchwork Wed May 10 12:52:04 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Ga=C3=ABtan_Rivet?= X-Patchwork-Id: 24197 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 2447714EC; Wed, 10 May 2017 14:52:18 +0200 (CEST) Received: from mail-wr0-f176.google.com (mail-wr0-f176.google.com [209.85.128.176]) by dpdk.org (Postfix) with ESMTP id B2088F72 for ; Wed, 10 May 2017 14:52:16 +0200 (CEST) Received: by mail-wr0-f176.google.com with SMTP id l9so42923009wre.1 for ; Wed, 10 May 2017 05:52:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=rMeUtsrQt6Z4tWkl9c0DV9UULygaJ6fN4Hw2Jgt2bf8=; b=pjCIsXGkdAvTO4++RodlML7PUYOd1YKoY6oE8IXjmuJJoayE5fY0v9l9eaYFwqjJwo 5bU0rciJLQbQ44LxwoL/x24wJoDf7KGeYEUbkyUVHQm/mqOPdhtGU48a9yqP+bRORZrT QSTqrLLYfJC6nw93DNhLFgcqDxKvgq8UZPbAfjWY+EjmV2sbIicUBrYVNpBmtDLfQcW9 jfuJJS5Vz/dzDbMy7HOiueGvodngwTZLMHznRu3xUlcZ4fWiGSv2tlLXYRrzbkf9gz5e VGrauZdVNYTVbKBxnOoWzeuQBzLlrAg7t88MOiQLG4N+sYWxP1EAfKdEIPP5I89sCcse 2ftg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=rMeUtsrQt6Z4tWkl9c0DV9UULygaJ6fN4Hw2Jgt2bf8=; b=nxs2YQLI0MV/oULZKw/IUf12mKJqhg0qdv6tuS8nbZ27BSvDEbD98fe1QW+Vl3/xg5 joCwsv4Z/ggvD79JFgQD1xzDJCQAvKOmuYYtP4v0MIQXFLUi9yJBwtZ5/GdrmzrA7fjA x0n70b4c9sYPi+RveXJ7itSln+e6KJ6EMVirOy7C+mQADzsQiVdvvZl9yoNPtEmG3IU0 av0o9APZ+9tz4lPEfcoipfpcLrGT3ACbQdGMC13K1JuP0RxGnF7mTQLfgp5H6yx9iK8x GwlqsJMQit5fqJdeyHD8veRFcrAVtDrmIqRgSOf3CveeQOGt9/qGUuCWn6e5VuBHjfJQ Q1JA== X-Gm-Message-State: AODbwcB99PTVI27Qs/E8fKxkoGQQ+OxHKexwxFO624/tbQTxm1j0w1fq ZzJJUfUOjpWM0r30Seo= X-Received: by 10.28.107.143 with SMTP id a15mr981199wmi.81.1494420736056; Wed, 10 May 2017 05:52:16 -0700 (PDT) Received: from bidouze.dev.6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id 4sm3319032wrv.33.2017.05.10.05.52.15 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 10 May 2017 05:52:15 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Jan Blunck Date: Wed, 10 May 2017 14:52:04 +0200 Message-Id: <4b1edeb12ff61bdb04a0189be30395589c713dbb.1494420483.git.gaetan.rivet@6wind.com> X-Mailer: git-send-email 2.1.4 Subject: [dpdk-dev] [PATCH 1/2] pci: deprecate PCI detach 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" This patch deprecates the function rte_eal_pci_detach in 17.05, which will be removed in 17.08. The generic detach bus method should be used instead. Signed-off-by: Gaetan Rivet Cc: Jan Blunck --- doc/guides/rel_notes/deprecation.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index a3e7c72..c2f58eb 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -81,3 +81,9 @@ Deprecation Notices - ``rte_crpytodev_scheduler_mode_get``, replaced by ``rte_cryptodev_scheduler_mode_get`` - ``rte_crpytodev_scheduler_mode_set``, replaced by ``rte_cryptodev_scheduler_mode_set`` + +* pci: The following function is deprecated starting from 17.05 and will be + removed in 17.08: + + - ``rte_eal_pci_detach``, replaced by using the corresponding bus generic + method ``detach``.