From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [143.182.124.21]) by dpdk.org (Postfix) with ESMTP id 299F3678D for ; Thu, 14 Aug 2014 09:32:09 +0200 (CEST) Received: from azsmga001.ch.intel.com ([10.2.17.19]) by azsmga101.ch.intel.com with ESMTP; 14 Aug 2014 00:35:12 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.01,861,1400050800"; d="scan'208";a="468592355" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by azsmga001.ch.intel.com with ESMTP; 14 Aug 2014 00:35:11 -0700 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id s7E7Z8dX028893; Thu, 14 Aug 2014 15:35:08 +0800 Received: from shecgisg003.sh.intel.com (localhost [127.0.0.1]) by shecgisg003.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id s7E7Z6c0031030; Thu, 14 Aug 2014 15:35:08 +0800 Received: (from jingche2@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id s7E7Z6sD031026; Thu, 14 Aug 2014 15:35:06 +0800 From: "Chen Jing D(Mark)" To: dev@dpdk.org Date: Thu, 14 Aug 2014 15:34:59 +0800 Message-Id: <1408001703-30919-1-git-send-email-jing.d.chen@intel.com> X-Mailer: git-send-email 1.7.0.7 Subject: [dpdk-dev] [PATCH 0/4] RX/TX queue start/stop enhancement 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: Thu, 14 Aug 2014 07:32:10 -0000 From: "Chen Jing D(Mark)" This patch mainly includes 2 changes. One is in testpmd to add command testing specific RX/TX queue start/stop in Port X. Another change is in i40e, which implemented rx/tx_queue_start/stop in both PF and VF driver. In the meanwhile, support field start_rx_per_q in i40e_dev_rx_queue_setup and start_tx_per_q in i40e_dev_tx_queue_setup. Chen Jing D(Mark) (4): testpmd: add command to start/stop specfic queue i40e: PF Add support for per-queue start/stop i40e: PF driver to support RX/TX config paramter i40e: VF driver to support per-queue RX/TX start/stop app/test-pmd/cmdline.c | 95 ++++++++++++++ app/test-pmd/config.c | 6 +- app/test-pmd/testpmd.c | 12 ++ app/test-pmd/testpmd.h | 4 + lib/librte_pmd_i40e/i40e_ethdev.c | 50 +++++--- lib/librte_pmd_i40e/i40e_ethdev_vf.c | 232 ++++++++++++++++++++++++++-------- lib/librte_pmd_i40e/i40e_rxtx.c | 133 +++++++++++++++++-- lib/librte_pmd_i40e/i40e_rxtx.h | 9 ++ 8 files changed, 453 insertions(+), 88 deletions(-) -- 1.7.7.6