From patchwork Sun Aug 16 22:51:29 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 6763 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 025B28E96; Mon, 17 Aug 2015 00:52:56 +0200 (CEST) Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by dpdk.org (Postfix) with ESMTP id C75848E8F for ; Mon, 17 Aug 2015 00:52:54 +0200 (CEST) Received: by wicne3 with SMTP id ne3so61297163wic.1 for ; Sun, 16 Aug 2015 15:52:54 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=+FxEcyo2ZyjeBu/P7Rn+WalrGc567PehAfeX1RvsrqA=; b=fTWjPXfIKs8rElYBaCNi4b5lsxGwGkx1o7vutU03Beg9/KslaYupB2c11BOynAGqNg 9WUmwrFM7XFaXBnE4hpQPHFo17CJ6u7X5oEP7ghFMFsVAyDtZDqJ+GwimZAHSZUXdonR 6bMpnlUitBMeWViHEO9zaM8cee31xAqwY4WjCZsMUW/aVrS6WrsDVbdtYEdXfJyNqg2D 6J8T3lwSQnqZ8ZRGXyjrFLrKXZoUuTZjmTB06CguVBvrAuf1mr4mpEMFmRii7JkdM6jx FPVnUZaHG+YVMPAGWnKwrZ9ipZoDX+vapYWh3/56SMj82vgf9HaapX6Fe0A1Mpqb5q2K KrGQ== X-Gm-Message-State: ALoCoQl4z+10ernFNlPoXbd9OTgsUG3sDdm265s0gV/stNtoaQv0nyTrvk5JV0kHOBaT55ECwnUQ X-Received: by 10.195.11.74 with SMTP id eg10mr21648868wjd.33.1439765574715; Sun, 16 Aug 2015 15:52:54 -0700 (PDT) Received: from XPS13.localdomain (177.20.90.92.rev.sfr.net. [92.90.20.177]) by smtp.gmail.com with ESMTPSA id v8sm19108477wjr.15.2015.08.16.15.52.53 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 16 Aug 2015 15:52:54 -0700 (PDT) From: Thomas Monjalon To: Stephen Hemminger Date: Mon, 17 Aug 2015 00:51:29 +0200 Message-Id: <1439765489-4747-4-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.4.2 In-Reply-To: <1439765489-4747-1-git-send-email-thomas.monjalon@6wind.com> References: <1434387073-16951-1-git-send-email-stephen@networkplumber.org> <1439765489-4747-1-git-send-email-thomas.monjalon@6wind.com> Cc: dev@dpdk.org Subject: [dpdk-dev] [PATCH 3/3] doc: announce ring PMD functions removal X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" These functions are marked as deprecated for a long time: 61934c0956d4 ("ring: convert to use of PMD_REGISTER_DRIVER and fix linking") As suggested in this patch, it should be removed: http://dpdk.org/ml/archives/dev/2015-June/019253.html Suggested-by: Stephen Hemminger Signed-off-by: Thomas Monjalon --- doc/guides/rel_notes/deprecation.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 2424c61..46a88ca 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -61,6 +61,9 @@ Deprecation Notices * librte_kni: Functions based on port id are deprecated for a long time and should be removed (rte_kni_create, rte_kni_get_port_id and rte_kni_info_get). +* librte_pmd_ring: The deprecated functions rte_eth_ring_pair_create and + rte_eth_ring_pair_attach should be removed. + * ABI changes are planned for struct virtio_net in order to support vhost-user multiple queues feature. It should be integrated in release 2.2 without backward compatibility.