From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.mhcomputing.net (master.mhcomputing.net [74.208.228.170]) by dpdk.org (Postfix) with ESMTP id 537332C12 for ; Thu, 31 Mar 2016 00:40:32 +0200 (CEST) Received: by mail.mhcomputing.net (Postfix, from userid 1000) id C7452D3; Wed, 30 Mar 2016 15:40:31 -0700 (PDT) Date: Wed, 30 Mar 2016 15:40:31 -0700 From: Matthew Hall To: Cliff Burdick Cc: gowrishankar , users@dpdk.org Message-ID: <20160330224031.GA23525@mhcomputing.net> References: <56EE4053.9060306@linux.vnet.ibm.com> <20160329213044.GA15001@mhcomputing.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Subject: Re: [dpdk-users] Difficulty With rte_eal_init() X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Mar 2016 22:40:32 -0000 On Wed, Mar 30, 2016 at 07:16:28AM -0700, Cliff Burdick wrote: > Thanks, -march=native fixed that. Now I get a segfault when calling > rte_eth_tx_queue_setup: > > PMD: ixgbe_dev_tx_queue_setup(): sw_ring=0x7fff755efa40 > hw_ring=0x7fff755efe80 dma_addr=0x2005befe80 > Program received signal SIGSEGV, Segmentation fault. > 0x00007ffff6798aad in malloc_consolidate () from /lib64/libc.so.6 > Missing separate debuginfos, use: debuginfo-install > glibc-2.17-106.el7_2.4.x86_64 libconfig-1.4.9-5.el7.x86_64 > libgcc-4.8.5-4.el7.x86_64 libstdc++-4.8.5-4.el7.x86_64 Rebuild your DPDK w/ "-g -O0" in the EXTRA_CFLAGS env var. Install the libc6-dbg symbols or equivalent. The BT is useless w/ no symbols. Matthew.