From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id BE50A3784 for ; Tue, 15 Sep 2015 15:09:12 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP; 15 Sep 2015 06:07:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,536,1437462000"; d="scan'208";a="805567342" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga002.fm.intel.com with ESMTP; 15 Sep 2015 06:07:57 -0700 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t8FD7uMB029596; Tue, 15 Sep 2015 14:07:57 +0100 Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id t8FD7uxm027415; Tue, 15 Sep 2015 14:07:56 +0100 Received: (from jmcnam2x@localhost) by sivswdev02.ir.intel.com with id t8FD7uk5027411; Tue, 15 Sep 2015 14:07:56 +0100 From: John McNamara To: dev@dpdk.org Date: Tue, 15 Sep 2015 14:07:54 +0100 Message-Id: <1442322474-27380-1-git-send-email-john.mcnamara@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH] doc: update the dpdk 2.2 release notes 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: , X-List-Received-Date: Tue, 15 Sep 2015 13:09:13 -0000 Update the DPDK 2.2 release notes with recent fixes: 7e01e3 i40e: fix base driver allocation when not using first numa node 5e73f4 ixgbe: remove burst size restriction of vector Rx 7fcd13 ixgbe: fix X550 DCB d49e0f hash: fix memory allocation of cuckoo key table 9db649 eal/linux: fix epoll timeout Signed-off-by: John McNamara --- Authors of the above commits can you please check the associated release note below. doc/guides/rel_notes/release_2_2.rst | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/doc/guides/rel_notes/release_2_2.rst b/doc/guides/rel_notes/release_2_2.rst index 682f468..9604316 100644 --- a/doc/guides/rel_notes/release_2_2.rst +++ b/doc/guides/rel_notes/release_2_2.rst @@ -8,6 +8,37 @@ New Features Resolved Issues --------------- +* **i40e: Fixed base driver allocation when not using first numa node.** + +Fixed i40e issue that occurred when a DPDK application didn't initialize ports +if memory wasn't available on socket 0. + + +* **ixgbe: Removed burst size restriction of vector RX.** + +Fixed issue where a burst size less than 32 didn't receive anything. + + +* **ixgbe: Fixed issue with X550 DCB.** + +Fixed a DCB issue with x550 where for 8 TCs (Traffic Classes), if a packet +with user priority 6 or 7 was injected to the NIC, then the NIC would only put +3 packets into the queue. There was also a similar issue for 4 TCs. + + +* **hash: Fixed memory allocation of Cuckoo Hash key table.** + +Fixed issue where an incorrect Cuckoo Hash key table size could be calculated +limiting the size to 4GB. + +Fixes: 48a399119619 ("hash: replace with cuckoo hash implementation") + + +* **eal/linux: Fixed epoll timeout.** + +Fixed issue where the ``rte_epoll_wait()`` function didn't return when the +underlying call to ``epoll_wait()`` timed out. + Known Issues ------------ -- 1.8.1.4