From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Gonzalez Monroy, Sergio" Subject: Re: [PATCH] hash: fix crash when adding already inserted keys Date: Tue, 28 Jul 2015 16:07:39 +0100 Message-ID: <55B79ABB.2060000@intel.com> References: <1438095279-234959-1-git-send-email-xavier.simonart@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org To: Xavier Simonart Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 3E2E2CF9 for ; Tue, 28 Jul 2015 17:08:11 +0200 (CEST) In-Reply-To: <1438095279-234959-1-git-send-email-xavier.simonart@intel.com> 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" On 28/07/2015 15:54, Xavier Simonart wrote: > When adding with cuckoo hash a key which was already inserted > a new slot is dequeued and then enqueued back, but the enqueue > operation was not done properly. > > Signed-off-by: Xavier Simonart > --- > lib/librte_hash/rte_cuckoo_hash.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > Acked-by: Sergio Gonzalez Monroy