From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f177.google.com (mail-wi0-f177.google.com [209.85.212.177]) by dpdk.org (Postfix) with ESMTP id B734F5A44 for ; Mon, 13 Jul 2015 00:31:05 +0200 (CEST) Received: by widjy10 with SMTP id jy10so53969438wid.1 for ; Sun, 12 Jul 2015 15:31:05 -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=ADbju7vQwjnyjiS9GsKAjB9ICM++6UnLM4vyHwTiSEg=; b=Km7LgJJiSV7wJ8+Nh/nkCINUoei6uFdqrFExfZNXl0YC2bZix5L+a3ym/QrP85IUym vUeKHb4JR3NLKKZ5Bh8RK6HB4JjFXgCo9XW1scLefmi0T8ycrx38iSXX+FdSyP4C0k1Z j/sraeKha+TFJW4WK3WBPt1QX1yZ/0GFrQFPkuiKgJ3OgicWnkKuoNiPFYTIxEXCFysZ M5dg+7asxuu6ImK9xkYm2Ksh4T3J4O/GAa2oOrL6QqF7aWlNtKqLiGv2Os3EV26XAgNY gNxECjKG0ajILA5Lfl6iUKtJUcmiEOKpvbxNMaL/TnZNm34xlm1hvpowXKqxWC+O9kHI sMDQ== X-Gm-Message-State: ALoCoQlHtez2IWbvfUcOj7IkNs0D36FvHGYVk8DcQzj0U3VpaHQzAWIKQi5tELIEos2R+NpAb79r X-Received: by 10.194.200.194 with SMTP id ju2mr59647254wjc.61.1436740265604; Sun, 12 Jul 2015 15:31:05 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id c2sm25578877wjf.18.2015.07.12.15.31.04 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 12 Jul 2015 15:31:04 -0700 (PDT) From: Thomas Monjalon To: Pablo de Lara Date: Mon, 13 Jul 2015 00:29:53 +0200 Message-ID: <3000440.Zr2t0yRg7U@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) In-Reply-To: <1436573936-15956-2-git-send-email-pablo.de.lara.guarch@intel.com> References: <1436571020-16252-1-git-send-email-pablo.de.lara.guarch@intel.com> <1436573936-15956-1-git-send-email-pablo.de.lara.guarch@intel.com> <1436573936-15956-2-git-send-email-pablo.de.lara.guarch@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 v7 1/7] hash: replace existing hash library with cuckoo hash implementation 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: Sun, 12 Jul 2015 22:31:05 -0000 2015-07-11 01:18, Pablo de Lara: > The main change when creating a new table is that the number of entries > per bucket is fixed now, so its parameter is ignored now > (still there to maintain the same parameters structure). Why not rename the "bucket_entries" field to "reserved"? The API of this field has changed (now ignored) so it should be reflected without changing the ABI.