* [dpdk-dev] [PATCH 0/2] Enable DCB in SRIOV mode for ixgbe driver
@ 2015-01-12 14:41 Michal Jastrzebski
2015-01-12 15:44 ` Jastrzebski, MichalX K
0 siblings, 1 reply; 5+ messages in thread
From: Michal Jastrzebski @ 2015-01-12 14:41 UTC (permalink / raw)
To: dev
Date: Mon, 12 Jan 2015 15:39:39 +0100
Message-Id: <1421073581-6644-1-git-send-email-michalx.k.jastrzebski@intel.com>
X-Mailer: git-send-email 2.1.1
From: Pawel Wodkowski <pawelx.wodkowski@intel.com>
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
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH 0/2] Enable DCB in SRIOV mode for ixgbe driver
2015-01-12 14:41 [dpdk-dev] [PATCH 0/2] Enable DCB in SRIOV mode for ixgbe driver Michal Jastrzebski
@ 2015-01-12 15:44 ` Jastrzebski, MichalX K
0 siblings, 0 replies; 5+ messages in thread
From: Jastrzebski, MichalX K @ 2015-01-12 15:44 UTC (permalink / raw)
To: Jastrzebski, MichalX K, dev
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Michal Jastrzebski
> Sent: Monday, January 12, 2015 3:41 PM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH 0/2] Enable DCB in SRIOV mode for ixgbe driver
>
> Date: Mon, 12 Jan 2015 15:39:39 +0100
> Message-Id: <1421073581-6644-1-git-send-email-
> michalx.k.jastrzebski@intel.com>
> X-Mailer: git-send-email 2.1.1
>
> From: Pawel Wodkowski <pawelx.wodkowski@intel.com>
>
>
> 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
>
>
Self nacked - because of wrong message format.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH 0/2] Enable DCB in SRIOV mode for ixgbe driver
2015-01-12 15:50 Michal Jastrzebski
2015-01-13 9:50 ` Wodkowski, PawelX
@ 2015-01-13 10:11 ` Vlad Zolotarov
1 sibling, 0 replies; 5+ messages in thread
From: Vlad Zolotarov @ 2015-01-13 10:11 UTC (permalink / raw)
To: Michal Jastrzebski, dev
On 01/12/15 17:50, Michal Jastrzebski wrote:
> From: Pawel Wodkowski <pawelx.wodkowski@intel.com>
>
> 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.
Here it is! ;) Thanks. Pls., ignore my previous email about the
respinning... ;)
>
>
> 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(-)
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH 0/2] Enable DCB in SRIOV mode for ixgbe driver
2015-01-12 15:50 Michal Jastrzebski
@ 2015-01-13 9:50 ` Wodkowski, PawelX
2015-01-13 10:11 ` Vlad Zolotarov
1 sibling, 0 replies; 5+ messages in thread
From: Wodkowski, PawelX @ 2015-01-13 9:50 UTC (permalink / raw)
To: Jastrzebski, MichalX K, dev
Comments are more than welcome :)
Pawel
^ permalink raw reply [flat|nested] 5+ messages in thread
* [dpdk-dev] [PATCH 0/2] Enable DCB in SRIOV mode for ixgbe driver
@ 2015-01-12 15:50 Michal Jastrzebski
2015-01-13 9:50 ` Wodkowski, PawelX
2015-01-13 10:11 ` Vlad Zolotarov
0 siblings, 2 replies; 5+ messages in thread
From: Michal Jastrzebski @ 2015-01-12 15:50 UTC (permalink / raw)
To: dev
From: Pawel Wodkowski <pawelx.wodkowski@intel.com>
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
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-01-13 10:11 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-12 14:41 [dpdk-dev] [PATCH 0/2] Enable DCB in SRIOV mode for ixgbe driver Michal Jastrzebski
2015-01-12 15:44 ` Jastrzebski, MichalX K
2015-01-12 15:50 Michal Jastrzebski
2015-01-13 9:50 ` Wodkowski, PawelX
2015-01-13 10:11 ` Vlad Zolotarov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).