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 F2D10AD86 for ; Thu, 19 Feb 2015 16:58:25 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP; 19 Feb 2015 07:52:58 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,609,1418112000"; d="scan'208";a="654401959" Received: from unknown (HELO Sent) ([10.217.248.233]) by orsmga001.jf.intel.com with SMTP; 19 Feb 2015 07:58:20 -0800 Received: by Sent (sSMTP sendmail emulation); Thu, 19 Feb 2015 16:54:57 +0100 From: Pawel Wodkowski To: dev@dpdk.org Date: Thu, 19 Feb 2015 16:54:42 +0100 Message-Id: <1424361289-30718-1-git-send-email-pawelx.wodkowski@intel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1421672551-11652-1-git-send-email-pawelx.wodkowski@intel.com> References: <1421672551-11652-1-git-send-email-pawelx.wodkowski@intel.com> Subject: [dpdk-dev] [PATCH v4 0/7] 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: Thu, 19 Feb 2015 15:58:26 -0000 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. PATCH v4 changes: - resend patch as previous was sent by mistake with different one. PATCH v3 changes: - Rework patch to fit ixgbe RSS in VT mode changes. - move driver specific code from rte_ethdev.c to driver code. - fix bug ixgbe driver VLAN filter enable in PF discoveded during testing. PATCH v2 changes: - Split patch for easer review. - Remove "pmd: add api version negotiation for ixgbe driver" and "pmd: extend mailbox api to report number of RX/TX queues" patches as those are already already marged from other patch Pawel Wodkowski (7): ethdev: Allow zero rx/tx queues in SRIOV mode pmd igb: fix VMDQ mode checking pmd: igb/ixgbe split nb_q_per_pool to rx and tx nb_q_per_pool move rte_eth_dev_check_mq_mode() logic to ixgbe driver pmd ixgbe: enable DCB in SRIOV tespmd: fix DCB in SRIOV mode support pmd ixgbe: fix vlan setting in in PF app/test-pmd/cmdline.c | 4 +- app/test-pmd/testpmd.c | 39 +++++-- app/test-pmd/testpmd.h | 10 -- lib/librte_ether/rte_ethdev.c | 212 ++-------------------------------- lib/librte_ether/rte_ethdev.h | 3 +- lib/librte_pmd_e1000/igb_ethdev.c | 45 +++++++- lib/librte_pmd_e1000/igb_pf.c | 3 +- lib/librte_pmd_e1000/igb_rxtx.c | 2 +- lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 126 ++++++++++++++++++--- lib/librte_pmd_ixgbe/ixgbe_ethdev.h | 5 +- lib/librte_pmd_ixgbe/ixgbe_pf.c | 220 +++++++++++++++++++++++++++++++----- lib/librte_pmd_ixgbe/ixgbe_rxtx.c | 18 +-- 12 files changed, 407 insertions(+), 280 deletions(-) -- 1.9.1