From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f172.google.com (mail-wr0-f172.google.com [209.85.128.172]) by dpdk.org (Postfix) with ESMTP id 049832A6C for ; Wed, 5 Apr 2017 14:27:35 +0200 (CEST) Received: by mail-wr0-f172.google.com with SMTP id w43so11809683wrb.0 for ; Wed, 05 Apr 2017 05:27:35 -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=StE9AUIv2NR3zw1e+EeraT3mKHFB6NRhj2YWQ5CqDGA=; b=mEza97tTCKYEGtaPgZlpzQncE5r+bAqPiWWAHckPP0goV52Xd70n4o2131jwywmPMy puPyfuo9VNWUq+4ga9fUXO8iM0tl5toYq4inOu7dXxPRCb2aGEV6HJD1lfBT8JZgPPS1 QYOy9WbQPYPXDBY7Iu7VL6edOhhBpgq/srIcUFgYeMjbS0IkjuDQOLhOlVA+LF/qubjM tPtujUUYczRN3TgbbyJuZhher8yTUfPi/hEeKzKHbC7SZ0pNjEwv7PTXNRzbU52qLp4c f40kWWQrdqwccNuz+LWkUSeANKogxo93RPAdt4nrzsPItKFAxNJn5w3VNJ4i7dfLcdAY FsPQ== 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=StE9AUIv2NR3zw1e+EeraT3mKHFB6NRhj2YWQ5CqDGA=; b=pJeXkO4+lLhudpGq50msSWwPgBcclr7fsBkRn7vWR325CoRvZTLp89TJB5C5gPfMSn 6F5JALP5MG2OVL/L7nK7ZqgBVy0YctiFi5jJvekLha9TPJq4p8anffMYJpdJEUlvn+4V N1/OZCQg7+KaB2tHOBr3Zd05Y5bCafPDx0QAnWYrnG3Y+cfWw0TcWQyTWPXW6qYjj8Xg eaGRUuGXIrOS5sBudol4zGXg55dHI7/ReAtNh1Nna2o/Z5ch6aqg/+qns17n4VaXs1W3 J/mU0FJ1AtPVOh5raMpjQGooxf6XB8vDkzx9NvHf67kEybJYhlUzN/zaPX/WsYpiCnym sClg== X-Gm-Message-State: AFeK/H3JB6Ru1o1VMJtO+9Wpg+Pd90Zg3OkfyDx3CESQSErNbXons1WiXd9w2jQt542is65K X-Received: by 10.223.145.227 with SMTP id 90mr25136505wri.170.1491395255353; Wed, 05 Apr 2017 05:27:35 -0700 (PDT) Received: from XPS13.localdomain (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id c7sm4892864wrc.20.2017.04.05.05.27.33 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 05 Apr 2017 05:27:34 -0700 (PDT) From: Thomas Monjalon To: dev@dpdk.org Cc: bruce.richardson@intel.com, david.hunt@intel.com Date: Wed, 5 Apr 2017 14:27:26 +0200 Message-Id: <1491395246-26866-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.7.0 Subject: [dpdk-dev] [PATCH] doc: remove old deprecation notices 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: Wed, 05 Apr 2017 12:27:36 -0000 The ring and distributor reworks are done. Fixes: a6619414e0a9 ("ring: make struct and macros type agnostic") Fixes: 775003ad2f96 ("distributor: add new burst-capable library") Signed-off-by: Thomas Monjalon --- doc/guides/rel_notes/deprecation.rst | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index efbccb0..1df3b46 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -16,26 +16,6 @@ Deprecation Notices - ``rte_set_log_type``, replaced by ``rte_log_set_level`` - ``rte_get_log_type``, replaced by ``rte_log_get_level`` -* ring: Changes are planned to rte_ring APIs in release 17.05. Proposed - changes include: - - - Removing build time options for the ring: - CONFIG_RTE_RING_SPLIT_PROD_CONS - CONFIG_RTE_RING_PAUSE_REP_COUNT - - Adding an additional parameter to enqueue functions to return the - amount of free space in the ring - - Adding an additional parameter to dequeue functions to return the - number of remaining elements in the ring - - Removing direct support for watermarks in the rings, since the - additional return value from the enqueue function makes it - unneeded - - Adjusting the return values of the bulk() enq/deq functions to - make them consistent with the burst() equivalents. [Note, parameter - to these functions are changing too, per points above, so compiler - will flag them as needing update in legacy code] - - Updates to some library functions e.g. rte_ring_get_memsize() to - allow for variably-sized ring elements. - * igb_uio: iomem mapping and sysfs files created for iomem and ioport in igb_uio will be removed, because we are able to detect these from what Linux has exposed, like the way we have done with uio-pci-generic. This change @@ -104,9 +84,3 @@ Deprecation Notices ``rte_cryptodev_info.sym``. Some drivers may support limited number of sessions per queue_pair. With this new parameter application will know how many sessions can be mapped to each queue_pair of a device. - -* distributor: library API will be changed to incorporate a burst-oriented - API. This will include a change to ``rte_distributor_create`` - to specify which type of instance to create (single or burst), and - additional calls for ``rte_distributor_poll_pkt_burst`` and - ``rte_distributor_return_pkt_burst``, among others. -- 2.7.0