From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f182.google.com (mail-pd0-f182.google.com [209.85.192.182]) by dpdk.org (Postfix) with ESMTP id 5D3203975 for ; Tue, 26 Aug 2014 02:10:27 +0200 (CEST) Received: by mail-pd0-f182.google.com with SMTP id fp1so21306815pdb.27 for ; Mon, 25 Aug 2014 17:14:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-type:content-transfer-encoding; bh=O9JNWPHqhFyJUVgxGzh8GFT8S/bdzmP0wuh2ld4EeKg=; b=XdeX9OPpwgNFQK8SlYzwalap59rEtRKGhujFtqt+0os1rIs8XamI50R5mM7D7xGL8U s7eoskUoTWrvkrqkY5p/zagN1hKAB8AxwAg5nL4u2MHTFMSVMH8bAa7rh9qN254w8bh9 e3VjZwKpmjuacmZ/GYtt3Zm01u4bt/YY7gotTJ0kGDaxyMHQdCgyDs4zJkXaoO2mgWBS F6yECnT8I0A4A6ZK7CeitIl5Voe/nFywBC82gHyGk+b3tOrweI3wcUICbW/XGwHRaYXg i/ukNPaxN+Ns+8XR/Rvkb1v+vQztO4p44UAJeXu1RNitxrkTsHIt2+82U53vHExDJsWJ 90og== X-Gm-Message-State: ALoCoQkzVWEVLLc9fZ7XDtRrEF44XpbO5EcthuNd2tUVmcgu4q9ij0dAyy4zqFWn1xUss1kFBlRA X-Received: by 10.68.194.66 with SMTP id hu2mr5718718pbc.19.1409012064024; Mon, 25 Aug 2014 17:14:24 -0700 (PDT) Received: from uryu.home.lan (static-50-53-65-80.bvtn.or.frontiernet.net. [50.53.65.80]) by mx.google.com with ESMTPSA id i10sm1708036pdn.26.2014.08.25.17.14.23 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 25 Aug 2014 17:14:23 -0700 (PDT) Date: Mon, 25 Aug 2014 17:14:17 -0700 From: Stephen Hemminger To: Sergey Mironov Message-ID: <20140825171417.6eeafe8e@uryu.home.lan> In-Reply-To: References: X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.10; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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 00:10:27 -0000 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.