From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qg0-f44.google.com (mail-qg0-f44.google.com [209.85.192.44]) by dpdk.org (Postfix) with ESMTP id 5280A282 for ; Thu, 25 Dec 2014 10:11:52 +0100 (CET) Received: by mail-qg0-f44.google.com with SMTP id q107so6496685qgd.31 for ; Thu, 25 Dec 2014 01:11:51 -0800 (PST) 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=nhmR6YGLOzhUJbCLyqgOeGM7xgJEaFR8+0BUfE6Hijw=; b=gmN/8suNKuxlsDE8t8k0Q1HwQU6URRFcU+mtZZSZ6L6Q5sxBGqyQb6K/YsX28xol0p I2bCeHKTbJOFtMAAUqjCPC5TuusAqaEF4HmEuVDm6KbnBfpsc5vSuxKgBprJvhx2WjqZ 0vrAfXhupYd3dvVZ3LqQDcpWDxvhgnqJqRVEQ/HGFkctfx6KlNW6yPKRbvbjJDM9jxmN GSLDOClePUoKBQiqwlDNza5RBysH3PAh4vFYvoYC0sEoPLZFUznM2ptuvdH71j2yQE+9 BRLqwJ4Wuo04viHWrq5LRFArOhEA5lxOK6pIzyqFgLrOSTbCA/G17QYhZCqjP/YIvENZ sKww== MIME-Version: 1.0 X-Received: by 10.140.97.139 with SMTP id m11mr58038107qge.46.1419498711841; Thu, 25 Dec 2014 01:11:51 -0800 (PST) Received: by 10.229.181.8 with HTTP; Thu, 25 Dec 2014 01:11:51 -0800 (PST) In-Reply-To: <20141224150401.GB23653@localhost.localdomain> References: <20141224150401.GB23653@localhost.localdomain> Date: Thu, 25 Dec 2014 10:11:51 +0100 Message-ID: From: sothy shan To: Neil Horman Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 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: Thu, 25 Dec 2014 09:11:52 -0000 On Wed, Dec 24, 2014 at 4:04 PM, Neil Horman wrote: > 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. > My understanding is that It is problem of enabling CONFIG_RTE_BUILD_SHARED_LIB=y in make command, I am able to build target of x86_64-ivshmem-linuxapp-gcc alone without shared_lib flag. I suspect an error because of shared lib flag. Sothy > > Neil > >