From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qa0-f53.google.com (mail-qa0-f53.google.com [209.85.216.53]) by dpdk.org (Postfix) with ESMTP id 25CC01FE for ; Tue, 26 Aug 2014 09:22:30 +0200 (CEST) Received: by mail-qa0-f53.google.com with SMTP id v10so13424100qac.12 for ; Tue, 26 Aug 2014 00:26:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=U4Wi2CXy0nTWuaqGCutKuiiBdS+nP7P805ItasqB5nk=; b=CLoVHToDoDUY9OMZeBac8j/5VlLVv0Hsaggsoq5gk7ncP1ECy0zE/+21iQtSgsAZHW ELpn/ZGZ+KPNmAvfU4tEmqqXBmgrPeQQpKSnI4FvGdbb4mu1vqBVRzvLG434/GhVIKwN ggON8g6WkpQSR0hmfgqDOzVueiS0ui7PDjpzWZ1H8qL6QfH2SibiaJCMFcKGV5kIj2Hl Rtz47gOS+ecI6DrHJMlxX2zyDviM9w+BuV8+KcbMDxjAsvqrR7SXyzUp6w5GTgg0k3+d V9de+VT5hFug+uOKkT57V3ibIqv/JT+zV0OCbpf8HNttg3VDLl+uN+81tw2AjVjFlUTS ns8w== MIME-Version: 1.0 X-Received: by 10.229.212.66 with SMTP id gr2mr42574758qcb.27.1409037988226; Tue, 26 Aug 2014 00:26:28 -0700 (PDT) Received: by 10.96.70.194 with HTTP; Tue, 26 Aug 2014 00:26:28 -0700 (PDT) In-Reply-To: <20140825171417.6eeafe8e@uryu.home.lan> References: <20140825171417.6eeafe8e@uryu.home.lan> Date: Tue, 26 Aug 2014 11:26:28 +0400 Message-ID: From: Sergey Mironov To: Stephen Hemminger Content-Type: text/plain; charset=UTF-8 Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] Fwd: ixgbe network card has dev_info.max_rx_queues == 0 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 Aug 2014 07:22:30 -0000 Yep, I understand now. The manual [1] says that intel 827574 controller (controlled by e1000 driver) has only 2 ports per port. Thanks for the help. Sergey [1] - http://www.intel.com/content/www/us/en/ethernet-controllers/i211-ethernet-controller-datasheet.html PS I actually have another machine SCB-8973 equipped with i211 controller, where DPDK returns number of queues - zero. Probably, it is a hardware bug, but I'll better start another thread for this issue. 2014-08-26 4:14 GMT+04:00 Stephen Hemminger : > On Mon, 25 Aug 2014 13:41:34 +0400 > Sergey Mironov wrote: > >> Hi. I've found more data on this issue. My machine (CB-8970) is >> equipped with two ixgbe and six e1000 ports + one more e1000 port as >> management interface. >> I ask the DPDK to allocate 3 TX queues and 3 RX queues for each of 8 >> working ports, 6 * 8 = 48 queues (see the configuration code snippet >> at the end of the letter) > > You need to look at dev_info and not allocate more queues than the > hardware supports. Many E1000 devices only support a single queue.