From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v2] ixgbe: fix check for split packets Date: Sun, 26 Jul 2015 14:41:31 +0200 Message-ID: <9994501.9xXobeAAYD@xps13> References: <1437492307-29754-1-git-send-email-bruce.richardson@intel.com> <1437556410-14102-1-git-send-email-bruce.richardson@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org To: Bruce Richardson Return-path: Received: from mail-wi0-f174.google.com (mail-wi0-f174.google.com [209.85.212.174]) by dpdk.org (Postfix) with ESMTP id 5E56BC3F4 for ; Sun, 26 Jul 2015 14:48:48 +0200 (CEST) Received: by wibud3 with SMTP id ud3so83237853wib.0 for ; Sun, 26 Jul 2015 05:48:48 -0700 (PDT) In-Reply-To: <1437556410-14102-1-git-send-email-bruce.richardson@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" > The check for split packets to be reassembled in the vector ixgbe PMD > was incorrectly only checking the first 16 elements of the array instead > of all 32. This is fixed by changing the uint32_t values to be uint64_t > instead. > > Fixes: cf4b4708a88a ("ixgbe: improve slow-path perf with vector scattered Rx") > > Reported-by: Zoltan Kiss > Signed-off-by: Bruce Richardson > > --- > V2: Rename variable from split_fl32 to split_fl64 to match type change. Applied, thanks