From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44])
 by dpdk.org (Postfix) with ESMTP id 679CC8E86
 for <dev@dpdk.org>; Tue,  3 Nov 2015 23:02:53 +0100 (CET)
Received: by wmff134 with SMTP id f134so95817467wmf.1
 for <dev@dpdk.org>; Tue, 03 Nov 2015 14:02:53 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=6wind_com.20150623.gappssmtp.com; s=20150623;
 h=from:to:cc:subject:date:message-id:organization:user-agent
 :in-reply-to:references:mime-version:content-transfer-encoding
 :content-type; bh=WFSIeNXr7qDPQyEu3HVMVDeas/RX8OUIL7vF9cB2Geg=;
 b=wQUyeLZ7zD8RSvjUsUovToyNHahyJni4MW9mCAtCuHaK3dBTbADpQOW+Fm2eRiOU76
 9rDYt0tdAe+fga6U0WsnkCFfpDNHJEN02wnv04LD9yoqe1P/35JylsUPZiBv9cZpRQ38
 FPkBDEGzUAf7bq/Ezb8lLJI9irq1BXN6AZOfenrdbAIWiT0E8nYu0NKwvgd32cGzhVIq
 2SDq3MGZe67c0M8fR8n5i4hswyp1CaV+4L5JynJa0Ak86AL619OqaLd35DyV3a6zWUTl
 pSL3lvBAg1gONIrNNz6MhlXLgYDkgGUZRpAJ5MoB6eiJBLA5dc7YO+1e4U2RE+K7Am3Q
 9yIA==
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=WFSIeNXr7qDPQyEu3HVMVDeas/RX8OUIL7vF9cB2Geg=;
 b=PHILT7vvmdJ2Y6nlqfSbUv2ixWDv48Ymej5BLYe11JDxgu4zM/cjBP6WhNdOS1aSJp
 OCYJXU0R0oCf8jvvZx+ZZzAACqKkgyggL9KjoE67IETgOVXaOAMhLY9VDH58AW/2JcbP
 uLHdFBCF1nawwKL87Z1zKvZmfn0tM5/MuYCaEXS4jVS5zHvhCBCoiMpGBZp/h2UUX7L/
 +N0tLZ9HIcXni9vcN3q4toQOTWrhS1N3sQhZQdjD2WPN3ah9BRSwwqej3DuFD7RrHas3
 oIA6ZLVjVTeX/+hkB/WFjPfGB5jxWW4lO5I5mY8ISwmeAsIS9NkNPQSZDlaslIM9ykLC
 ap8Q==
X-Gm-Message-State: ALoCoQkXemmnYvpaK/xjAS6DQefmedc56uSn0PzXbLDoKzB21r67YloY4vq9Rva4nyEWPN7hVM98
X-Received: by 10.28.54.211 with SMTP id y80mr23677969wmh.3.1446588173258;
 Tue, 03 Nov 2015 14:02:53 -0800 (PST)
Received: from xps13.localnet ([93.158.41.25])
 by smtp.gmail.com with ESMTPSA id q1sm29612430wjy.31.2015.11.03.14.02.49
 (version=TLSv1/SSLv3 cipher=OTHER);
 Tue, 03 Nov 2015 14:02:52 -0800 (PST)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: Adrien Mazarguil <adrien.mazarguil@6wind.com>
Date: Tue, 03 Nov 2015 23:00:13 +0100
Message-ID: <4769838.M3nnHXWMrx@xps13>
Organization: 6WIND
User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; )
In-Reply-To: <1446570914-25996-2-git-send-email-adrien.mazarguil@6wind.com>
References: <1446570914-25996-1-git-send-email-adrien.mazarguil@6wind.com>
 <1446570914-25996-2-git-send-email-adrien.mazarguil@6wind.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 2/2] mlx5: fix wrong hash RX queue type in
	RSS mode
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: Tue, 03 Nov 2015 22:02:53 -0000

2015-11-03 18:15, Adrien Mazarguil:
> Only seen since IPv6 RSS support was added, confusion about the purpose of
> the hash_rxq_type_from_n() function has caused it to return invalid hash RX
> queue types.
> 
> Refactor function for its intended purpose, rename it
> hash_rxq_type_from_pos() and update comment with a better description.
> 
> Fixes: a76133214d88 ("mlx5: use separate indirection table for default hash Rx queue")
> 
> Reported-by: Olga Shern <olgas@mellanox.com>
> Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
> Signed-off-by: Nelio Laranjeiro <nelio.laranjeiro@6wind.com>

Series applied, thanks