From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH v7 1/5] net/af_xdp: introduce AF XDP PMD driver Date: Fri, 29 Mar 2019 08:10:55 +0000 Message-ID: <42dfd66b-7417-f140-c60f-8896e6350c0b@intel.com> References: <20190301080947.91086-1-xiaolong.ye@intel.com> <20190327090027.72170-1-xiaolong.ye@intel.com> <20190327090027.72170-2-xiaolong.ye@intel.com> <20190329020505.GB92946@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org, David Marchand , Andrew Rybchenko , Qi Zhang , Karlsson Magnus , Topel Bjorn , Maxime Coquelin , Stephen Hemminger , Luca Boccassi , Bruce Richardson , Ananyev Konstantin To: Ye Xiaolong Return-path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 7E84D2BD3 for ; Fri, 29 Mar 2019 09:11:00 +0100 (CET) In-Reply-To: <20190329020505.GB92946@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 3/29/2019 2:05 AM, Ye Xiaolong wrote: >> <...> >> >>> +static void >>> +eth_dev_info(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info) >>> +{ >>> + struct pmd_internals *internals = dev->data->dev_private; >>> + >>> + dev_info->if_index = internals->if_index; >>> + dev_info->max_mac_addrs = 1; >>> + dev_info->max_rx_pktlen = ETH_FRAME_LEN; >>> + dev_info->max_rx_queues = 1; >>> + dev_info->max_tx_queues = 1; >> What do you think documenting the only single queue supported limitation? > I've mentioned the single queue limitation in af_xdp.rst, or you mean we also > need to comment it here? > I missed it in af_xdp.rst, if documented there I think it is OK.