From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lb0-f174.google.com (mail-lb0-f174.google.com [209.85.217.174]) by dpdk.org (Postfix) with ESMTP id 2D0DB9AB5 for ; Tue, 24 Mar 2015 10:55:34 +0100 (CET) Received: by lbcmq2 with SMTP id mq2so26772486lbc.0 for ; Tue, 24 Mar 2015 02:55:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=HlOmKBw8K0r8I9wwZ9JPBjFCoV+UXoceh8UC6Ok3w98=; b=Y5cSeUsL7HsRcxTfcqW5xJl0xq5wxb7UpNzDdNhoAJCDBtV9297/KOCG+dwkWYXps3 M6e4jJBTAO83TFPUyupXDY0N/GIc7tUMNknyfXqHEWJ09EkPXUrr9YDzGA/cFRyldduv ctnRAZVB9pWz4QkkOHaIGZpuRK7cnPWERSh8VbQfrCAq2/5p5/nB9ayxdM5MWNEOPZ3o mbGVd+KuJdiyzxrYXplbodss/HS0I54J7mYnfEbmAmRd9RorK9u35lvbUhh1Yq3eRwQR T30VH21J21Cl3b/k7EtyH01fTntU+ixO3Cm+UYERpfhmt3Vwn7/+IFqSFm78SbAqSYp6 dqrQ== MIME-Version: 1.0 X-Received: by 10.112.218.5 with SMTP id pc5mr3196726lbc.32.1427190933843; Tue, 24 Mar 2015 02:55:33 -0700 (PDT) Received: by 10.25.41.194 with HTTP; Tue, 24 Mar 2015 02:55:33 -0700 (PDT) In-Reply-To: <20150323212459.GA5502@mhcomputing.net> References: <20150323145958.GA12720@bricha3-MOBL3> <20150323212459.GA5502@mhcomputing.net> Date: Tue, 24 Mar 2015 11:55:33 +0200 Message-ID: From: Dor Green To: Matthew Hall Content-Type: text/plain; charset=UTF-8 Cc: dev@dpdk.org Subject: Re: [dpdk-dev] Packet data out of bounds after rte_eth_rx_burst 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: Tue, 24 Mar 2015 09:55:34 -0000 I tried 1.8, but that fails to initialize my device and fails at the pci probe: "Cause: Requested device 0000:04:00.1 cannot be used" Can't even compile 2.0rc2 atm, getting: "/usr/lib/gcc/x86_64-linux-gnu/4.6/include/emmintrin.h:701:1: note: expected '__m128i' but argument is of type 'int'" For reasons I don't understand. As for the example apps (in 1.7), I can run them properly but I don't think any of them do the same processing as I do. Note that mine does work with most packets. On Mon, Mar 23, 2015 at 11:24 PM, Matthew Hall wrote: > On Mon, Mar 23, 2015 at 05:19:00PM +0200, Dor Green wrote: >> I changed it to free and it still happens. Note that the segmentation fault >> happens before that anyway. >> >> I am using 1.7.1 at the moment. I can try using a newer version. > > I'm using 1.7.X in my open-source DPDK-based app and it works, but I have an > IGB 1-gigabit NIC though, and how RX / TX work are quite driver specific of > course. > > I suspect there's some issue with how things are working in your IXGBE NIC > driver / setup. Do the same failures occur inside of the DPDK's own sample > apps? > > Matthew.