From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH] ixgbe: fix vector PMD chained mbuf receive Date: Fri, 20 Feb 2015 12:00:04 +0100 Message-ID: <5791019.FD3NlPO73p@xps13> References: <54C261EC.8000104@allegro-packets.com> <1423230068-10841-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-VfR2kkLFssw@public.gmane.org To: Bruce Richardson Return-path: In-Reply-To: <1423230068-10841-1-git-send-email-bruce.richardson-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" > When the vector pmd was receiving a mix of packets of various sizes, > some of which were split across multiple mbufs, there was an issue > with reassembly of the jumbo frames. This was due to a skipped increment > when using "continue" in a while loop. Changing the loop to a "for" > loop fixes this problem, by ensuring the increment is always performed. > > Reported-by: Prashant Upadhyaya > Reported-by: Martin Weiser > Signed-off-by: Bruce Richardson > Tested-by: Martin Weiser Applied, thanks