From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id DFACB1DB1 for ; Mon, 8 Jun 2015 05:00:18 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP; 07 Jun 2015 20:00:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,571,1427785200"; d="scan'208";a="742763421" Received: from kmsmsx152.gar.corp.intel.com ([172.21.73.87]) by orsmga002.jf.intel.com with ESMTP; 07 Jun 2015 20:00:16 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by KMSMSX152.gar.corp.intel.com (172.21.73.87) with Microsoft SMTP Server (TLS) id 14.3.224.2; Mon, 8 Jun 2015 11:00:09 +0800 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.94]) by SHSMSX101.ccr.corp.intel.com ([10.239.4.153]) with mapi id 14.03.0224.002; Mon, 8 Jun 2015 11:00:09 +0800 From: "Zhang, Helin" To: "Wodkowski, PawelX" Thread-Topic: [dpdk-dev] [PATCH v4 0/7] Enable DCB in SRIOV mode for ixgbe driver Thread-Index: AQHQTFzy0T4Cxj+n006RGrwz/59gmJ2ilNVQ Date: Mon, 8 Jun 2015 03:00:07 +0000 Message-ID: References: <1421672551-11652-1-git-send-email-pawelx.wodkowski@intel.com> <1424361289-30718-1-git-send-email-pawelx.wodkowski@intel.com> In-Reply-To: <1424361289-30718-1-git-send-email-pawelx.wodkowski@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "dev@dpdk.org" Subject: Re: [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: Mon, 08 Jun 2015 03:00:19 -0000 Hi Pawel Could you help to rebase it to the latest? Then several DPDK developers her= e may help you on code review. I think your patches are really helpful on DCB decoupling in ethdev layer. Regards, Helin > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Pawel Wodkowski > Sent: Thursday, February 19, 2015 11:55 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v4 0/7] Enable DCB in SRIOV mode for ixgbe dri= ver >=20 > 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. >=20 > As a side effect this allow to use multiple queues for TX in VF (8 if the= re is > 16 or less VFs or 4 if there is 32 or less VFs) when PFC is not enabled. >=20 > PATCH v4 changes: > - resend patch as previous was sent by mistake with different one. >=20 > 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 testin= g. >=20 > PATCH v2 changes: > - Split patch for easer review. > - Remove "pmd: add api version negotiation for ixgbe driver" and "pmd: e= xtend > mailbox api to report number of RX/TX queues" patches as those are alre= ady > already marged from other patch >=20 > 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 >=20 > 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(-) >=20 > -- > 1.9.1