From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wi0-f174.google.com (mail-wi0-f174.google.com
 [209.85.212.174]) by dpdk.org (Postfix) with ESMTP id DE3C3567C
 for <dev@dpdk.org>; Wed,  1 Jul 2015 23:24:18 +0200 (CEST)
Received: by wibdq8 with SMTP id dq8so56773258wib.1
 for <dev@dpdk.org>; Wed, 01 Jul 2015 14:24:18 -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=g5LML3dbWown0hRuC2vKGQMDr95FMdZnBCIydCJebdY=;
 b=T2zGAL3qvwI7xKqkIdBdNQo7qMZETaZP5kwG7qQo/wrv0/5Kadlk6kLy7CpumhbU4m
 kkhAxylAxL5Nd84u5RAkTr45jW9E2yJTDB7kR91AWYeZYhZ1MNeU2hLaB1jmpJG6C11E
 0AHBoFhqnsBZBLTExBa8DZGR5DYqCGu8VrlA29PggMC6LHQLSIyHgN6bxKKIECCwrzII
 9stZFXtONPKqydld0qCFQ550iAbue4kRwgZsgY3JERK6MTr/nniL7+trj1qzjU+iOTWE
 FBAnP/Et1t7pssXAcklycqEHDrBeFQFkHIn9/1rTWPdUuFBHlDbUrd9Egw4+NRYkMjp8
 69BA==
X-Gm-Message-State: ALoCoQnr3VxtaqnAvGPZLvki/k5xo8cALelJhUp2OKTnz8h+Cxky8xM0GgIzZ8oL+eFUle9QGGez
X-Received: by 10.180.91.107 with SMTP id cd11mr9399378wib.51.1435785858769;
 Wed, 01 Jul 2015 14:24:18 -0700 (PDT)
Received: from xps13.localnet (guy78-1-82-235-116-147.fbx.proxad.net.
 [82.235.116.147])
 by mx.google.com with ESMTPSA id a6sm4670914wjy.33.2015.07.01.14.24.16
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Wed, 01 Jul 2015 14:24:17 -0700 (PDT)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: Vladimir Medvedkin <medvedkinv@gmail.com>
Date: Wed, 01 Jul 2015 23:23:09 +0200
Message-ID: <9974204.LtA1fDUjBV@xps13>
Organization: 6WIND
User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; )
In-Reply-To: <20150701152952.GA8112@bricha3-MOBL3>
References: <1434735073-27414-1-git-send-email-medvedkinv@gmail.com>
 <1435707620-17383-1-git-send-email-medvedkinv@gmail.com>
 <20150701152952.GA8112@bricha3-MOBL3>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Cc: dev@dpdk.org
Subject: Re: [dpdk-dev] [PATCH v6] Add toeplitz hash algorithm used by RSS
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Wed, 01 Jul 2015 21:24:19 -0000

2015-07-01 16:29, Bruce Richardson:
> On Tue, Jun 30, 2015 at 07:40:20PM -0400, Vladimir Medvedkin wrote:
> > Software implementation of the Toeplitz hash function used by RSS.
> > Can be used either for packet distribution on single queue NIC
> > or for simulating of RSS computation on specific NIC (for example
> > after GRE header decapsulating).
> > 
> > v6 changes
> > - Fix compilation error
> > - Rename some defines and function
> > 
> > v5 changes
> > - Fix errors reported by checkpatch.pl
> > 
> > v4 changes
> > - Fix copyright
> > - rename bswap_mask constant, add rte_ prefix
> > - change rte_ipv[46]_tuple struct
> > - change rte_thash_load_v6_addr prototype
> > 
> > v3 changes
> > - Rework API to be more generic
> > - Add sctp_tag into tuple
> > 
> > v2 changes
> > - Add ipv6 support
> > - Various style fixes
> > 
> > Signed-off-by: Vladimir Medvedkin <medvedkinv@gmail.com>
> 
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>

Applied, thanks