From mboxrd@z Thu Jan 1 00:00:00 1970 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) 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=iZXWvtRmFUgwwh3ohN7w5tjDl6baUiGi3gfN5KGLgg4=; b=S+2kJLq27FB9d0VNsunRQ97yw5nmGZUgDe/EfIqECDJPuS9+3Ebuth1bJ4fFJ0dDP6 5EZbA7DGi1l+c6WKdgxOXmMv+zBKEfuoTq9K7EDqSIPOCwJUIFtqBUSy+oFUSgqk4opb x91Xbfg6HSb64k51ahNpQ2d5aP/RAdQHk9lieAA0UeZrA2jWN3bdHtN2ZUwg8/aQS6ak 5km+tmjdFoyO+Gskd9IoZIgoeWBYgnNiERGiLGsxNFBM7LL+S/BHw8uYjT7mY6baKWz/ f9gvXm+iIAfpHmd5skrxQFYlpOlpHoGG9ti01U+wBQll7l8/e1193/Kdv28WrGybPC2a qUPg== X-Gm-Message-State: ALoCoQkLpFmdhuF9FFukZjm2zypGcniZvL2r0S4Es/esJqUAod3ImeLKz9wuxsehC70uwnt34J+k X-Received: by 10.194.78.230 with SMTP id e6mr42457617wjx.43.1437914928246; Sun, 26 Jul 2015 05:48:48 -0700 (PDT) Received: from xps13.localnet (117.114.118.80.rev.sfr.net. [80.118.114.117]) by smtp.gmail.com with ESMTPSA id di7sm8103764wib.23.2015.07.26.05.48.45 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 26 Jul 2015 05:48:47 -0700 (PDT) From: Thomas Monjalon To: Bruce Richardson Date: Sun, 26 Jul 2015 14:41:31 +0200 Message-ID: <9994501.9xXobeAAYD@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) In-Reply-To: <1437556410-14102-1-git-send-email-bruce.richardson@intel.com> 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-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v2] ixgbe: fix check for split packets 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, 26 Jul 2015 12:48:48 -0000 > 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