From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f173.google.com (mail-wi0-f173.google.com [209.85.212.173]) by dpdk.org (Postfix) with ESMTP id AA6075A31 for ; Mon, 20 Jul 2015 01:05:40 +0200 (CEST) Received: by wibud3 with SMTP id ud3so82691060wib.0 for ; Sun, 19 Jul 2015 16:05:40 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=CD4nurQD74IOrumhKznapeY83K0XzgS2ro2dpcEPO4k=; b=GTjuJXyXzfsC4SK4lM8LGO8tKwPLXMe5/B83rooIX9rkcRLIQM9Atd3MI+7WwIciXh XbEQXxA88WJbpFU0X8YnsJiABMasgFhQbh+0cO7OONuwu2gMcljKyb9qo6mwY1iCwAaP oUXAn/zQfFveZ2E6XOIzaq2zTVcxtYfV0Yzl2kAA2swI2gKJQPx5AX0D3rUNFm1EbQ3G E8qGHK7RN8OkZwfvNhSq3y8Qi3jhJUkSJV6+i8CdlM4Yb+dZ0EFIJBIFqEHT1GYTCH+Y xE2DXSJj/aAqc4S19eT16LJ08vPQHBxLFYPaYYSK6I7CCPmzhouzgh9bi9Aj3T+cIHNi 3Yng== X-Gm-Message-State: ALoCoQkdAm+BBexxB3gntjjg6zixQkrEbeUYxkd2i15nmquvsDbFHGVWBfLRlImk/xvjBLmRj8tF X-Received: by 10.180.9.6 with SMTP id v6mr16088525wia.83.1437347140543; Sun, 19 Jul 2015 16:05:40 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id nb9sm8944249wic.10.2015.07.19.16.05.38 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 19 Jul 2015 16:05:39 -0700 (PDT) From: Thomas Monjalon To: "Wu, Jingjing" Date: Mon, 20 Jul 2015 01:04:29 +0200 Message-ID: <4791767.QP1g9sLXx2@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) In-Reply-To: References: <1436750501-6585-1-git-send-email-jingjing.wu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] i40e: fix the VF rss issue when nb_rx_queue is less than nb_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: Sun, 19 Jul 2015 23:05:40 -0000 > > I40e VF driver uses the num_queue_pairs in vf structure to construct queue > > index look up table. When the nb_rx_queue is less than nb_tx_queue, > > num_queue_pairs is equal to nb_tx_queue. It will make the table use invalid > > queue index, then application cannot poll packets on these queues. > > > > This patch also moves the inline function i40e_align_floor from i40e_ethdev.c to > > i40e_ethdev.h. > > > > Signed-off-by: jingjing.wu > Acked-by: Helin Zhang Applied, thanks