From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi0-f48.google.com (mail-oi0-f48.google.com [209.85.218.48]) by dpdk.org (Postfix) with ESMTP id 6E5781041 for ; Fri, 7 Sep 2018 15:52:16 +0200 (CEST) Received: by mail-oi0-f48.google.com with SMTP id v198-v6so9653429oif.9 for ; Fri, 07 Sep 2018 06:52:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=1kjcO1ZXonYpHa47sp3O0q6/PoGnifyrAcYpy9+ekuQ=; b=llT8os0DC1oz9Lt4PLacLag4FoZDq0JwyM34QH4H3EaJDY0hI5LxMNdFn1l424FBdd i7KYin34aNn7qOeBkOhGyOv4AqNHoKYwpQiue80/hkLnbHJIE8jXWlig8amSYmcpHgUu vGGamJUSPV3qpswZGHsrwY4JL/yojYwals9mH+BQh/uiPTRG9My5cFhTMUUWFWr7/yAb Y+H+LTg29+cz3DIMvHIYqpAg3ZkK/yyEW84Ff2ZwfhZsRLhnlW/TOYPFLnPh5BPfXWsS /RlbmjCi71AcTBE2Q3A2osQ4wsU94+xZWLhjo3r4YFCc4ou//GktqbAwvLpTlWIe+3s/ pWJA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=1kjcO1ZXonYpHa47sp3O0q6/PoGnifyrAcYpy9+ekuQ=; b=Iu40YDiDfrz4J2SQpM/xq1QZOiSGr8sbj2YsqOWFGYk4lg3QUNCtLDzGarGFeCA4Qe eRsxsXcDtYUn4gLrbNee/mLq28jHAqx75sL+Wa6T92IcNAL8Agn6LGAmhYDAxp67uad4 tM950kv8XD0nw+u30+YzgbhEIhkINRq4ncVBJd04GhTezwbAyIKegfIKHfQYFd/D8ALA WsFJ+zjCIMZ2iBeHaKdil/inYJNY+C/dBWu3PaY1AIKMDyLj/Qn9JxYb0YKn7gnvNTuv 4unTlAA+Je+6LDTI8Zq+K3RH7B24Ggx7ztEJWaKeLzZiV3iV17wPMaRJDeMV55HaUdP1 GbUQ== X-Gm-Message-State: APzg51CuPvCRYkWv5jOzNHG27XAAAQ1WxrXJi0y4xdaydUVD2GlBoMBa sokhi9yKNTjbGtQzCeYSm0ElfWMeX3aNJKLoBo+NBL9y9PI= X-Google-Smtp-Source: ANB0VdZxKBkHmel7eRk7KYzRlK943GRGtsNstkxWDU/eSERTE+bcduiEsfSI5r+ATpP9g+ACMQutbd6Mt8H7na7Oj4E= X-Received: by 2002:aca:bd8b:: with SMTP id n133-v6mr8639383oif.108.1536328335672; Fri, 07 Sep 2018 06:52:15 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Rami Rosen Date: Fri, 7 Sep 2018 16:52:04 +0300 Message-ID: To: jfargen@redhat.com Cc: users@dpdk.org Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-users] TestPMD testing with VMX3NET Devices... X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Sep 2018 13:52:16 -0000 Hi, Jamie, By default, building in DPDK (including in stable-17.11.4) is by creating static libs (*.a) and not shared libs (*so). What does cat build/.config | grep -i shared show ? If you have CONFIG_RTE_BUILD_SHARED_LIB=y, this means that you use shared libs, and in such a case, a VMXNET3 *.so should be generated in the build (librte_pmd_vmxnet3_uio.so), and if indeed the testpmd app you use was built in a tree where CONFIG_RTE_BUILD_SHARED_LIB is "y", then the librte_pmd_vmxnet3_uio.so should be under /usr/lib64/... folder so it will work. It seems that the best thing is to rebuild the DPKD tree (after make clean) and reinstall it. Regards, Rami Rosen