From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 5ED542A1A for ; Tue, 26 Apr 2016 03:58:30 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 25 Apr 2016 18:58:29 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,534,1455004800"; d="scan'208";a="966423366" Received: from shwde7554.ccr.corp.intel.com (HELO [10.239.67.73]) ([10.239.67.73]) by fmsmga002.fm.intel.com with ESMTP; 25 Apr 2016 18:58:29 -0700 To: "Xing, Beilei" References: <1461410959-16983-1-git-send-email-beilei.xing@intel.com> Cc: "dev@dpdk.org" From: "Wu, Jingjing" Message-ID: <571ECB44.4010001@intel.com> Date: Tue, 26 Apr 2016 09:58:28 +0800 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0 MIME-Version: 1.0 In-Reply-To: <1461410959-16983-1-git-send-email-beilei.xing@intel.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] i40evf: add ops for rx queue and tx queue 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, 26 Apr 2016 01:58:30 -0000 On 4/23/2016 7:29 PM, Xing, Beilei wrote: > Add 3 vf ops: rx_queue_count, rxq_info_get and > txq_info_get. They can reuse corresponding pv APIs. a typo here? pv -> pf ? > > Signed-off-by: Beilei Xing > --- > drivers/net/i40e/i40e_ethdev_vf.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/net/i40e/i40e_ethdev_vf.c b/drivers/net/i40e/i40e_ethdev_vf.c > index 2bce69b..87d6a64 100644 > --- a/drivers/net/i40e/i40e_ethdev_vf.c > +++ b/drivers/net/i40e/i40e_ethdev_vf.c > @@ -214,6 +214,9 @@ static const struct eth_dev_ops i40evf_eth_dev_ops = { > .rx_descriptor_done = i40e_dev_rx_descriptor_done, > .tx_queue_setup = i40e_dev_tx_queue_setup, > .tx_queue_release = i40e_dev_tx_queue_release, > + .rx_queue_count = i40e_dev_rx_queue_count, > + .rxq_info_get = i40e_rxq_info_get, > + .txq_info_get = i40e_txq_info_get, > .mac_addr_add = i40evf_add_mac_addr, > .mac_addr_remove = i40evf_del_mac_addr, > .reta_update = i40evf_dev_rss_reta_update,