From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: i40e queues per VF Date: Wed, 08 Mar 2017 12:25:49 +0100 Message-ID: <17951395.s0M76qHr7t@xps13> References: <32336171.7h5g7kEJXa@xps13> <9BB6961774997848B5B42BEC655768F810CDE4AF@SHSMSX103.ccr.corp.intel.com> <6154321.GLCpcWPPOA@xps13> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: "Zhang, Helin" , "Mcnamara, John" , dev@dpdk.org, ferruh.yigit@intel.com To: "Wu, Jingjing" Return-path: Received: from mail-wm0-f47.google.com (mail-wm0-f47.google.com [74.125.82.47]) by dpdk.org (Postfix) with ESMTP id 9C36B2C71 for ; Wed, 8 Mar 2017 12:25:51 +0100 (CET) Received: by mail-wm0-f47.google.com with SMTP id t189so28074817wmt.1 for ; Wed, 08 Mar 2017 03:25:51 -0800 (PST) In-Reply-To: <6154321.GLCpcWPPOA@xps13> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" ping - still waiting for answers to below questions, please 2017-02-16 15:55, Thomas Monjalon: > 2017-02-16 13:58, Wu, Jingjing: > > From: Thomas Monjalon > > > > > > Hi, > > > > > > When reading the documentation, it is not easy to understand the capability of > > > i40evf for the number of queues. > > > > > > First, please could you explain why we need a build-time config option? > > > In the doc, there is neither justification nor tuning guidelines: > > > > > > http://dpdk.org/doc/guides/nics/i40e.html#config-file-options > > > " > > > CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_PF (default 64) Number of > > > queues reserved for PF. > > > CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_VF (default 4) Number of > > > queues reserved for each SR-IOV VF. > > > " > > > > This number is used as initialization time to allocate queue number > > for PF/VF for HW's queue pool. Will add more description in i40e.rst. > > The description "Number of queues reserved for each SR-IOV VF" seems > partially wrong. Please explain it is a queue pair. > > > > I feel these are hard limits and should be some constants in the code, not some > > > build configuration options. > > > > > > The other doc to look at is: > > > http://dpdk.org/doc/guides/nics/intel_vf.html#intel-fortville-10-40-gigabit- > > > ethernet-controller-vf-infrastructure > > > " > > > Each VF can have a maximum of 16 queue pairs. > > > " > > > > > > Do we agree that a queue pair is 1 Rx queue / 1 Tx queue? > > > Note: the concept of queue pairs in Intel VF should be explained somewhere. > > > > > Yes. > > > Below, a different limitation is given: > > > " > > > The available queue number(at most 4) per VF depends on the total number of > > > pool, which is determined by the max number of VF at PF initialization stage and > > > the number of queue specified in config " > > > > > I think there may be some inconsistent description in doc intel_vf.rst due to > > Multiple kinds of NICs. We should correct them. > > Thanks for pointing that. > > > > > So what is the real maximum of queue pairs? 4 or 16? > > > The datasheet talks about 16 queues. Is it 8 pairs? > > > > That's is 16 queue pairs. 16 RX queues and 16 Tx queues. > > > > > > Is there something to configure the number of queues when creating VF with the > > > kernel driver? > > > > In kernel driver, it seems at most only 4 queues are supported. That's > > Why we add build-time config option to make more queues are possible. > > If we can create 16 queue pairs, why restrict the default configuration to 4? > Why is it a build-time config option?