dev.dpdk.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/6] i40e VMDQ support
@ 2014-09-23 13:14 Chen Jing D(Mark)
       [not found] ` <1411478047-1251-1-git-send-email-jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 45+ messages in thread
From: Chen Jing D(Mark) @ 2014-09-23 13:14 UTC (permalink / raw)
  To: dev-VfR2kkLFssw

From: "Chen Jing D(Mark)" <jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>

Define extra VMDQ arguments to expand VMDQ configuration. This also
includes change in igb and ixgbe PMD driver. In the meanwhile, fix 2
defects in rte_ether library.

Add full VMDQ support in i40e PMD driver. renamed some functions, setup
VMDQ VSI after it's enabled in application. It also make some improvement
on macaddr add/delete to support setting multiple macaddr for single or
multiple pools.

Finally, change i40e rx/tx_queue_setup and dev_start/stop functions to
configure/switch queues belonging to VMDQ pools.

Chen Jing D(Mark) (6):
  ether: enhancement for VMDQ support
  igb: change for VMDQ arguments expansion
  ixgbe: change for VMDQ arguments expansion
  i40e: add VMDQ support
  i40e: macaddr add/del enhancement
  i40e: Add full VMDQ pools support

 config/common_linuxapp              |    1 +
 lib/librte_ether/rte_ethdev.c       |   12 +-
 lib/librte_ether/rte_ethdev.h       |   39 ++-
 lib/librte_pmd_e1000/igb_ethdev.c   |    3 +
 lib/librte_pmd_i40e/i40e_ethdev.c   |  509 ++++++++++++++++++++++++++---------
 lib/librte_pmd_i40e/i40e_ethdev.h   |   21 ++-
 lib/librte_pmd_i40e/i40e_rxtx.c     |  125 +++++++--
 lib/librte_pmd_ixgbe/ixgbe_ethdev.c |    1 +
 8 files changed, 537 insertions(+), 174 deletions(-)

-- 
1.7.7.6

^ permalink raw reply	[flat|nested] 45+ messages in thread

end of thread, other threads:[~2014-12-11  6:09 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-23 13:14 [PATCH 0/6] i40e VMDQ support Chen Jing D(Mark)
     [not found] ` <1411478047-1251-1-git-send-email-jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-09-23 13:14   ` [PATCH 1/6] ether: enhancement for " Chen Jing D(Mark)
     [not found]     ` <1411478047-1251-2-git-send-email-jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-14 14:09       ` Thomas Monjalon
2014-10-15  6:59         ` Chen, Jing D
     [not found]           ` <4341B239C0EFF9468EE453F9E9F4604D015F35FE-E2R4CRU6q/6iAffOGbnezLfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-10-15  8:10             ` Thomas Monjalon
2014-10-15  9:47               ` Chen, Jing D
     [not found]                 ` <4341B239C0EFF9468EE453F9E9F4604D015F36E1-E2R4CRU6q/6iAffOGbnezLfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-10-15  9:59                   ` Thomas Monjalon
2014-10-16 10:07       ` [PATCH v2 0/6] i40e " Chen Jing D(Mark)
     [not found]         ` <1413454046-13407-1-git-send-email-jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-16 10:07           ` [PATCH v2 1/6] ether: enhancement for " Chen Jing D(Mark)
     [not found]             ` <1413454046-13407-2-git-send-email-jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-03 22:17               ` Thomas Monjalon
2014-11-04  5:50                 ` Chen, Jing D
     [not found]                   ` <4341B239C0EFF9468EE453F9E9F4604D016061A7-E2R4CRU6q/6iAffOGbnezLfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-11-04  8:53                     ` Thomas Monjalon
2014-11-04  8:59                       ` Chen, Jing D
2014-10-16 10:07           ` [PATCH v2 2/6] igb: change for VMDQ arguments expansion Chen Jing D(Mark)
     [not found]             ` <1413454046-13407-3-git-send-email-jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-03 18:37               ` Thomas Monjalon
2014-11-04  5:26                 ` Chen, Jing D
2014-10-16 10:07           ` [PATCH v2 3/6] ixgbe: " Chen Jing D(Mark)
2014-10-16 10:07           ` [PATCH v2 4/6] i40e: add VMDQ support Chen Jing D(Mark)
     [not found]             ` <1413454046-13407-5-git-send-email-jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-03 18:33               ` Thomas Monjalon
2014-11-04  5:22                 ` Chen, Jing D
2014-10-16 10:07           ` [PATCH v2 5/6] i40e: macaddr add/del enhancement Chen Jing D(Mark)
2014-10-16 10:07           ` [PATCH v2 6/6] i40e: Add full VMDQ pools support Chen Jing D(Mark)
2014-10-21  3:30           ` [PATCH v2 0/6] i40e VMDQ support Cao, Min
2014-11-03  7:54           ` Chen, Jing D
2014-11-04 10:01       ` [PATCH v3 " Chen Jing D(Mark)
     [not found]         ` <1415095289-28961-1-git-send-email-jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-04 10:01           ` [PATCH v3 1/6] ether: enhancement for " Chen Jing D(Mark)
2014-11-04 10:01           ` [PATCH v3 2/6] igb: change for VMDQ arguments expansion Chen Jing D(Mark)
2014-11-04 10:01           ` [PATCH v3 3/6] ixgbe: " Chen Jing D(Mark)
2014-11-04 10:01           ` [PATCH v3 4/6] i40e: add VMDQ support Chen Jing D(Mark)
2014-11-04 10:01           ` [PATCH v3 5/6] i40e: macaddr add/del enhancement Chen Jing D(Mark)
2014-11-04 10:01           ` [PATCH v3 6/6] i40e: Add full VMDQ pools support Chen Jing D(Mark)
2014-11-04 11:19           ` [PATCH v3 0/6] i40e VMDQ support Ananyev, Konstantin
     [not found]             ` <2601191342CEEE43887BDE71AB977258213A249C-kPTMFJFq+rEu0RiL9chJVbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-11-04 23:17               ` Thomas Monjalon
2014-12-11  6:09           ` Cao, Min
2014-09-23 13:14   ` [PATCH 2/6] igb: change for VMDQ arguments expansion Chen Jing D(Mark)
2014-09-23 13:14   ` [PATCH 3/6] ixgbe: " Chen Jing D(Mark)
2014-09-23 13:14   ` [PATCH 4/6] i40e: add VMDQ support Chen Jing D(Mark)
     [not found]     ` <1411478047-1251-5-git-send-email-jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-13 16:14       ` De Lara Guarch, Pablo
2014-09-23 13:14   ` [PATCH 5/6] i40e: macaddr add/del enhancement Chen Jing D(Mark)
     [not found]     ` <1411478047-1251-6-git-send-email-jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-14 14:25       ` Thomas Monjalon
2014-10-15  7:01         ` Chen, Jing D
2014-09-23 13:14   ` [PATCH 6/6] i40e: Add full VMDQ pools support Chen Jing D(Mark)
2014-10-10 10:45   ` [PATCH 0/6] i40e VMDQ support Ananyev, Konstantin
2014-10-14  8:27   ` Chen, Jing D
2014-10-21  3:30   ` Cao, Min

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).