From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH v7 2/2] app/test_pmd: add tests for new API's Date: Tue, 11 Oct 2016 16:09:22 +0100 Message-ID: <819331a6-6b39-5cae-468a-d447e094bb50@intel.com> References: <1475231418-30717-2-git-send-email-bernard.iremonger@intel.com> <1475837150-11190-3-git-send-email-bernard.iremonger@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit To: Bernard Iremonger , dev@dpdk.org, rahul.r.shah@intel.com, wenzhuo.lu@intel.com, az5157@att.com 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) In-Reply-To: <1475837150-11190-3-git-send-email-bernard.iremonger@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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