From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f42.google.com (mail-wg0-f42.google.com [74.125.82.42]) by dpdk.org (Postfix) with ESMTP id 59B6C58DD for ; Thu, 8 Jan 2015 09:10:54 +0100 (CET) Received: by mail-wg0-f42.google.com with SMTP id k14so1170917wgh.1 for ; Thu, 08 Jan 2015 00:10:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=C6aYQdfWt9zp8Qk9xyBASu3bp5NiAJPsVTZde2SGll0=; b=HPKrq5Mm5ULuBBOR0YEa5pa1W5MMtELjrfoR0gU2jw9TBvUFKgQQFs1nYVHC/vdgQw e7VdduMU1hiL4zYdWOsVNl+Vx615UDfU5GKi4AwzN/VEfrQo+eM7Y69FesGK4yyB87R1 2MiexGOzJaU06SVEb+vsvwHq/zRbh2PoeIgYLGLhIuG4247pwVcw1Q5oAf+2d0cSoxHg x0o+QWqtf1Awpd2NEV9pFschoPzfaQrQ5mnSA9y1MoY1FYbLntQMw0pVteJe0doicNOK Y7x0DYDnFy8REcLsY9eQ1DXz8VKD2QwtZmBOa8lm9zVymCUGePSFWOFiryeGLAHENh1r 35Cw== MIME-Version: 1.0 X-Received: by 10.180.126.99 with SMTP id mx3mr17052477wib.66.1420704654141; Thu, 08 Jan 2015 00:10:54 -0800 (PST) Received: by 10.194.2.10 with HTTP; Thu, 8 Jan 2015 00:10:54 -0800 (PST) Date: Thu, 8 Jan 2015 13:40:54 +0530 Message-ID: From: Prashant Upadhyaya To: dev@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] Packet Rx issue with DPDK1.8 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: Thu, 08 Jan 2015 08:10:54 -0000 Hi, I am migrating from DPDK1.7 to DPDK1.8. My application works fine with DPDK1.7. I am using 10 Gb Intel 82599 NIC. I have jumbo frames enabled, with max_rx_pkt_len = 10232 My mbuf dataroom size is 2048+headroom So naturally the ixgbe_recv_scattered_pkts driver function is triggered for receiving. This works with DPDK1.7 and my app receives packets. However, it does not work with DPDK1.8 somehow.I don't receive any packets. So, I increased the mbuf data room size in my application to a higher value so that the function ixgbe_recv_scattered_pkts is not enabled (I believe ixgbe_recv_pkts will be used in this case), and now my application starts getting packets with DPDK1.8 and the entire application usecase works fine (ofcourse my application had to adapt to the mbuf structure changes which I have done) I am kind of coming to the conclusion that ixgbe_recv_scattered_pkts has something broken in DPDK1.8 as compared to the earlier versions by the above empirical evidence. Has anybody else faced a similar issue ? Regards -Prashant