From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id 7DC1419F5 for ; Wed, 24 Dec 2014 16:04:10 +0100 (CET) Received: from [2001:470:8:a08:215:ff:fecc:4872] (helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1Y3nTp-0003tQ-C5; Wed, 24 Dec 2014 10:04:09 -0500 Date: Wed, 24 Dec 2014 10:04:01 -0500 From: Neil Horman To: sothy shan Message-ID: <20141224150401.GB23653@localhost.localdomain> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) X-Spam-Score: -2.9 (--) X-Spam-Status: No Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] No probed ethernet devices /DPDP 1.7.1 in Fedora 21 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: Wed, 24 Dec 2014 15:04:10 -0000 On Wed, Dec 24, 2014 at 02:26:21PM +0100, sothy shan wrote: > Hello! > > I am playing with DPDK 1.7.1 in Fedora. > > When I do like this: > > export RTE_SDK=$(pwd)export RTE_TARGET="x86_64-ivshmem-linuxapp-gcc" > make install T="$RTE_TARGET" > > It worked. Means Testpmd is running. > > When I run as mentioned below: > > make CONFIG_RTE_BUILD_SHARED_LIB=y install T="$RTE_TARGET" > > Build is sucess. But Testpmd gives error. > > Error is : > The dpdk ivshmem build assumes the presence of ivshmem devices as plumbed by qemu virtual guests. If you don't have a qemu guest running dpdk won't find any shared memory devices, which is exactly what you are seeing. That said, even if you are running qemu guests, IIRC Fedora doesn't enable ivshmem because the code has some security and behavioral issues still I think. You'll need to rebuild qemu to add support for it. Neil