From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 6EF1D5ABE for ; Mon, 12 Jan 2015 16:51:39 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP; 12 Jan 2015 07:48:04 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,744,1413270000"; d="scan'208";a="668497866" Received: from unknown (HELO Sent) ([10.217.248.81]) by orsmga002.jf.intel.com with SMTP; 12 Jan 2015 07:51:36 -0800 Received: by Sent (sSMTP sendmail emulation); Mon, 12 Jan 2015 16:50:53 +0200 From: Michal Jastrzebski To: dev@dpdk.org Date: Mon, 12 Jan 2015 16:50:41 +0100 Message-Id: <1421077843-8492-1-git-send-email-michalx.k.jastrzebski@intel.com> X-Mailer: git-send-email 2.1.1 Subject: [dpdk-dev] [PATCH 0/2] Enable DCB in SRIOV mode for ixgbe driver 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: Mon, 12 Jan 2015 15:51:40 -0000 From: Pawel Wodkowski Hi, this patchset enables DCB in SRIOV (ETH_MQ_RX_VMDQ_DCB and ETH_MQ_TX_VMDQ_DCB) for each VF and PF for ixgbe driver. As a side effect this allow to use multiple queues for TX in VF (8 if there is 16 or less VFs or 4 if there is 32 or less VFs) when PFC is not enabled. Pawel Wodkowski (2): pmd: add DCB for VF for ixgbe testpmd: fix dcb in vt mode app/test-pmd/cmdline.c | 4 +- app/test-pmd/testpmd.c | 39 ++++++++++---- app/test-pmd/testpmd.h | 10 ---- lib/librte_ether/rte_ethdev.c | 84 +++++++++++++++++++++--------- lib/librte_ether/rte_ethdev.h | 5 +- lib/librte_pmd_e1000/igb_pf.c | 3 +- lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 10 ++-- lib/librte_pmd_ixgbe/ixgbe_ethdev.h | 1 + lib/librte_pmd_ixgbe/ixgbe_pf.c | 98 ++++++++++++++++++++++++++++++----- lib/librte_pmd_ixgbe/ixgbe_rxtx.c | 7 ++- 10 files changed, 190 insertions(+), 71 deletions(-) -- 1.7.9.5