From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f170.google.com (mail-wi0-f170.google.com [209.85.212.170]) by dpdk.org (Postfix) with ESMTP id 6B3BCC35A for ; Tue, 28 Jul 2015 19:36:36 +0200 (CEST) Received: by wibxm9 with SMTP id xm9so167501629wib.0 for ; Tue, 28 Jul 2015 10:36:36 -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:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=gkz/th6yrRXp9G5DIUFQfYKpxgvstBaBQX9yDadl5Bk=; b=jHsB7dRkhV0BoqKsatb5FnixUNA8YIQZw2sqbXfaQjmzAriKgj5auctFx028J72ODc IXeO9JqzbAMhv0GCKWPVZrK3umOnc9N32tp1sdiBe1/ZUe0VPmDP5Lk4W7hVS8T9C2co 5B3LEoJE01y7fom8D5g37+ewFNGVUcPvL8y/dJP+0RRbtqMAKIDDFh4GjPHrTCKM4flq UeU77TM+s3vj7z2Sy6CXFvCd2RieWomcZWABDkON/BXpf4urd9r1bQE9n8YoyasW/85/ 0wlUpO9XAyH8nu2KurrRZWYDVm8/X/mSVk1asgiEq0g4fxIr9W75FNf8pzxGNTmKNkY7 KMdA== X-Gm-Message-State: ALoCoQnGjFhLhUvmFG9icoj/9F4RFmyHzwHNO7QbzTOSjBwP0QPXEvsVd+ALVjZJVRWusnAnBkZt X-Received: by 10.195.13.1 with SMTP id eu1mr67922736wjd.131.1438104996255; Tue, 28 Jul 2015 10:36:36 -0700 (PDT) Received: from xps13.localnet (6wind.net2.nerim.net. [213.41.151.210]) by smtp.gmail.com with ESMTPSA id di7sm20052595wib.23.2015.07.28.10.36.34 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 28 Jul 2015 10:36:35 -0700 (PDT) From: Thomas Monjalon To: Xavier Simonart Date: Tue, 28 Jul 2015 19:35:19 +0200 Message-ID: <12623939.MjktNa5oK0@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) In-Reply-To: <55B79ABB.2060000@intel.com> References: <1438095279-234959-1-git-send-email-xavier.simonart@intel.com> <55B79ABB.2060000@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] hash: fix crash when adding already inserted keys 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, 28 Jul 2015 17:36:36 -0000 > > 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 > Acked-by: Sergio Gonzalez Monroy Fixes: 48a399119619 ("hash: replace with cuckoo hash implementation") Applied, thanks