From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH v5 16/31] net/ice: support device and queue ops Date: Mon, 17 Dec 2018 23:48:29 +0000 Message-ID: References: <1542956179-80951-1-git-send-email-wenzhuo.lu@intel.com> <1545032259-77179-1-git-send-email-wenzhuo.lu@intel.com> <1545032259-77179-17-git-send-email-wenzhuo.lu@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: Qiming Yang , Xiaoyun Li , Jingjing Wu To: Wenzhuo Lu , dev@dpdk.org Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id EF46C1BA0C for ; Tue, 18 Dec 2018 00:48:33 +0100 (CET) In-Reply-To: <1545032259-77179-17-git-send-email-wenzhuo.lu@intel.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 12/17/2018 7:37 AM, Wenzhuo Lu wrote: > Normally when starting/stopping the device the queue > should be started and stopped. Support them both in > this patch. > > Below ops are added, > dev_configure > dev_start > dev_stop > dev_close > dev_reset > rx_queue_start > rx_queue_stop > tx_queue_start > tx_queue_stop > rx_queue_setup > rx_queue_release > tx_queue_setup > tx_queue_release > > Signed-off-by: Wenzhuo Lu > Signed-off-by: Qiming Yang > Signed-off-by: Xiaoyun Li > Signed-off-by: Jingjing Wu > --- > config/common_base | 2 + > doc/guides/nics/features/ice.ini | 1 + > doc/guides/nics/ice.rst | 8 + > drivers/net/ice/Makefile | 3 +- > drivers/net/ice/ice_ethdev.c | 198 ++++++++- > drivers/net/ice/ice_lan_rxtx.c | 927 +++++++++++++++++++++++++++++++++++++++ Out of curiosity, why not ice_rxtx.c but "ice_lan_rxtx.c", is that "lan" means something?