From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 6034AFFA for ; Tue, 11 Oct 2016 17:09:41 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga105.fm.intel.com with ESMTP; 11 Oct 2016 08:09:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,329,1473145200"; d="scan'208";a="1063360175" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.94]) ([10.237.220.94]) by orsmga002.jf.intel.com with ESMTP; 11 Oct 2016 08:09:22 -0700 To: Bernard Iremonger , dev@dpdk.org, rahul.r.shah@intel.com, wenzhuo.lu@intel.com, az5157@att.com References: <1475231418-30717-2-git-send-email-bernard.iremonger@intel.com> <1475837150-11190-3-git-send-email-bernard.iremonger@intel.com> From: Ferruh Yigit Message-ID: <819331a6-6b39-5cae-468a-d447e094bb50@intel.com> Date: Tue, 11 Oct 2016 16:09:22 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: <1475837150-11190-3-git-send-email-bernard.iremonger@intel.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v7 2/2] app/test_pmd: add tests for new API's 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, 11 Oct 2016 15:09:42 -0000 Hi Bernard, On 10/7/2016 11:45 AM, Bernard Iremonger wrote: > add test for set vf vlan anti spoof > add test for set vf mac anti spoof > add test for set vf vlan stripq > add test for set vf vlan insert > add test for set tx loopback > add test for set all queues drop enable bit > add test for set vf split drop enable bit > add test for set vf mac address > add new API's to the testpmd guide > > Signed-off-by: Bernard Iremonger > --- > app/test-pmd/cmdline.c | 675 ++++++++++++++++++++++++++++ This will cause a compilation error for shared libraries. Because PMDs not linked against application when compiled as shared library but used as plugins. Since it has been decided to have NIC specific APIs, we need to re-work that approach to fix shared library compilation. Thanks, ferruh