From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <dev-bounces@dpdk.org> Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id D46E5A045E for <public@inbox.dpdk.org>; Fri, 31 May 2019 04:01:50 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A559A378B; Fri, 31 May 2019 04:01:49 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 8FBA72B9A for <dev@dpdk.org>; Fri, 31 May 2019 04:01:47 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 30 May 2019 19:01:46 -0700 X-ExtLoop1: 1 Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.110.206]) by fmsmga005.fm.intel.com with ESMTP; 30 May 2019 19:01:45 -0700 Date: Fri, 31 May 2019 09:53:14 +0800 From: Ye Xiaolong <xiaolong.ye@intel.com> To: Stephen Hemminger <stephen@networkplumber.org> Cc: Qi Zhang <qi.z.zhang@intel.com>, John McNamara <john.mcnamara@intel.com>, Marko Kovacevic <marko.kovacevic@intel.com>, Karlsson Magnus <magnus.karlsson@intel.com>, Topel Bjorn <bjorn.topel@intel.com>, dev@dpdk.org Message-ID: <20190531015314.GB42839@intel.com> References: <20190515083842.15116-1-xiaolong.ye@intel.com> <20190530090707.36290-1-xiaolong.ye@intel.com> <20190530090707.36290-3-xiaolong.ye@intel.com> <20190530083236.2e485c1a@hermes.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190530083236.2e485c1a@hermes.lan> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH v2 2/3] net/af_xdp: add multi-queue support X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> On 05/30, Stephen Hemminger wrote: >On Thu, 30 May 2019 17:07:06 +0800 >Xiaolong Ye <xiaolong.ye@intel.com> wrote: > >> This patch adds two parameters `start_queue` and `queue_count` to >> specify the range of netdev queues used by AF_XDP pmd. >> >> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com> > >Why does this have to be a config option, we already have max queues >and number of queues in DPDK configuration. Here multi-queue refers to nic ethdev queue, AF_XDP now has 1:1 mapping between af_xdp socket and netdev queue, this patch is to support one vdev with multi af_xdp sockets (netdev queues). Thanks, Xiaolong