From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id E23C01C00 for ; Mon, 4 Dec 2017 20:48:04 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Dec 2017 11:48:03 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,361,1508828400"; d="scan'208";a="8985729" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.241.225.178]) ([10.241.225.178]) by FMSMGA003.fm.intel.com with ESMTP; 04 Dec 2017 11:48:03 -0800 To: Jingjing Wu , dev@dpdk.org Cc: wenzhuo.lu@intel.com References: <1508488012-82704-1-git-send-email-jingjing.wu@intel.com> <1511505206-97333-1-git-send-email-jingjing.wu@intel.com> From: Ferruh Yigit Message-ID: <67c7e812-aeee-6ccd-c79c-546e4e036a6a@intel.com> Date: Mon, 4 Dec 2017 11:48:02 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <1511505206-97333-1-git-send-email-jingjing.wu@intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v2 00/14] add new avf PMD X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2017 19:48:05 -0000 On 11/23/2017 10:33 PM, Jingjing Wu wrote: > Adaptive Virtual Function (AVF) Driver is VF driver which supports > for all future Intel devices without requiring a VM update. > It promises the basic high speed connectivity. And since this happens > to be an adaptive VF driver, every new drop of the VF driver would > add more and more advanced features that can be turned on in the VM > if the underlying HW device supports those advanced features. Most > importantly in a device agnostic way without ever compromising on the > base functionality. All the AVF's interface need to follow AVF spec, > and AVF compliant interface is supported start from the > IntelĀ® Ethernet Controller 710 Series. > > This patch set adds AVF PMD supporting. > - Device initialization > - Queue setup and Device start > - Basic Rx and Tx. > - MAC address offload feature > - Vlan offload feature > - RSS offload feature > - Vectored Rx and Tx func > - Bulk allocate Rx func > - Rx interrupt support > - Statistics query > > v2 changes: > - rebase to 17.11 > - add vectored Rx and Tx func > - add bulk allocate Rx func > - add Rx interrupt support > - add statistics query > - fix coding style issue > - remove extra compile flags in Makefile > - add doc to list avf PMD features > - fix lut setting when rss is disabled > - fix log init missing > - remove rx_descriptor_done > > Jingjing Wu (13): > net/avf/base: add base code for avf PMD > net/avf: initilization of avf PMD > net/avf: enable queue and device > net/avf: enable basic Rx Tx func > net/avf: enable link status update > net/avf: enable ops to get stats > net/avf: enable ops for MAC VLAN offload > net/avf: enable ops for RSS setting > net/avf: enable ops for MTU setting > net/avf: enable ops to check queue info and status > net/i40e: support AVF basic interface > net/avf: enable sse vector Rx Tx func > net/avf: enable Rx interrupt support > > Wenzhuo Lu (1): > net/avf: enable bulk allocate Rx func Overall, there are shared build errors, and there are checkpatch warnings, can you please check them?