All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RFC 0/6] support of QinQ stripping and insertion of i40e
@ 2015-05-05  2:32 Helin Zhang
       [not found] ` <1430793143-3610-1-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
  2015-05-26  8:36 ` [PATCH 0/5] support i40e " Helin Zhang
  0 siblings, 2 replies; 55+ messages in thread
From: Helin Zhang @ 2015-05-05  2:32 UTC (permalink / raw)
  To: dev-VfR2kkLFssw

As i40e hardware can be reconfigured to support QinQ stripping and
insertion, this patch set is to enable that with the update of
'struct rte_mbuf', and testpmd commands.
Note that the Vector-PMD will be updated soon later.

Helin Zhang (6):
  mbuf: update mbuf structure for QinQ support
  i40e: reconfigure the hardware to support QinQ stripping/insertion
  i40e: support of QinQ stripping/insertion in RX/TX
  ethdev: add QinQ offload capability flags
  i40e: update of offload capability flags
  app/testpmd: support of QinQ stripping and insertion

 app/test-pmd/cmdline.c                | 78 +++++++++++++++++++++++++++++---
 app/test-pmd/config.c                 | 23 +++++++++-
 app/test-pmd/flowgen.c                |  8 ++--
 app/test-pmd/macfwd.c                 |  5 ++-
 app/test-pmd/macswap.c                |  5 ++-
 app/test-pmd/rxonly.c                 |  5 ++-
 app/test-pmd/testpmd.h                |  6 ++-
 app/test-pmd/txonly.c                 | 10 +++--
 app/test/packet_burst_generator.c     |  4 +-
 lib/librte_ether/rte_ethdev.h         | 28 ++++++------
 lib/librte_ether/rte_ether.h          |  4 +-
 lib/librte_mbuf/rte_mbuf.h            | 22 +++++++--
 lib/librte_pmd_e1000/em_rxtx.c        |  8 ++--
 lib/librte_pmd_e1000/igb_rxtx.c       |  8 ++--
 lib/librte_pmd_enic/enic_ethdev.c     |  2 +-
 lib/librte_pmd_enic/enic_main.c       |  2 +-
 lib/librte_pmd_fm10k/fm10k_rxtx.c     |  2 +-
 lib/librte_pmd_i40e/i40e_ethdev.c     | 50 +++++++++++++++++++++
 lib/librte_pmd_i40e/i40e_ethdev_vf.c  | 13 ++++++
 lib/librte_pmd_i40e/i40e_rxtx.c       | 85 +++++++++++++++++++++++------------
 lib/librte_pmd_ixgbe/ixgbe_rxtx.c     | 11 +++--
 lib/librte_pmd_vmxnet3/vmxnet3_rxtx.c |  6 +--
 22 files changed, 297 insertions(+), 88 deletions(-)

-- 
1.9.3

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

end of thread, other threads:[~2015-07-07 14:45 UTC | newest]

Thread overview: 55+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-05  2:32 [PATCH RFC 0/6] support of QinQ stripping and insertion of i40e Helin Zhang
     [not found] ` <1430793143-3610-1-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-05-05  2:32   ` [PATCH RFC 1/6] mbuf: update mbuf structure for QinQ support Helin Zhang
     [not found]     ` <1430793143-3610-2-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-05-05 11:04       ` Ananyev, Konstantin
     [not found]         ` <2601191342CEEE43887BDE71AB97725821424AF9-pww93C2UFcwu0RiL9chJVbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2015-05-05 15:42           ` Chilikin, Andrey
     [not found]             ` <AAC06825A3B29643AF5372F5E0DDF053350C7510-kPTMFJFq+rFT4JjzTwqWc7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2015-05-05 22:37               ` Ananyev, Konstantin
     [not found]                 ` <2601191342CEEE43887BDE71AB97725821424E6C-pww93C2UFcwu0RiL9chJVbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2015-05-06  4:07                   ` Zhang, Helin
2015-05-06  4:06           ` Zhang, Helin
     [not found]             ` <F35DEAC7BCE34641BA9FAC6BCA4A12E70A859453-0J0gbvR4kTg/UvCtAeCM4rfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2015-05-06  8:39               ` Bruce Richardson
2015-05-06  8:48                 ` Zhang, Helin
2015-05-05  2:32   ` [PATCH RFC 2/6] i40e: reconfigure the hardware to support QinQ stripping/insertion Helin Zhang
2015-05-05  2:32   ` [PATCH RFC 3/6] i40e: support of QinQ stripping/insertion in RX/TX Helin Zhang
2015-05-05  2:32   ` [PATCH RFC 4/6] ethdev: add QinQ offload capability flags Helin Zhang
2015-05-05  2:32   ` [PATCH RFC 5/6] i40e: update of " Helin Zhang
2015-05-05  2:32   ` [PATCH RFC 6/6] app/testpmd: support of QinQ stripping and insertion Helin Zhang
2015-05-26  8:36 ` [PATCH 0/5] support i40e " Helin Zhang
2015-05-26  8:36   ` [PATCH 1/5] ixgbe: remove a discarded source line Helin Zhang
2015-06-01  8:50     ` Olivier MATZ
2015-06-02  1:45       ` Zhang, Helin
2015-05-26  8:36   ` [PATCH 2/5] mbuf: use the reserved 16 bits for double vlan Helin Zhang
2015-05-26 14:55     ` Stephen Hemminger
2015-05-26 15:00       ` Zhang, Helin
2015-05-26 15:02       ` Ananyev, Konstantin
2015-05-26 15:35         ` Stephen Hemminger
2015-05-26 15:46           ` Ananyev, Konstantin
2015-05-27  1:07             ` Zhang, Helin
2015-06-01  8:50     ` Olivier MATZ
2015-06-02  2:37       ` Zhang, Helin
2015-05-26  8:36   ` [PATCH 3/5] i40e: support double vlan stripping and insertion Helin Zhang
2015-06-01  8:50     ` Olivier MATZ
2015-06-02  2:45       ` Zhang, Helin
2015-05-26  8:36   ` [PATCH 4/5] i40evf: add supported offload capability flags Helin Zhang
2015-05-26  8:36   ` [PATCH 5/5] app/testpmd: add test cases for qinq stripping and insertion Helin Zhang
2015-06-02  3:16   ` [PATCH v2 0/6] support i40e QinQ " Helin Zhang
2015-06-02  3:16     ` [PATCH v2 1/6] ixgbe: remove a discarded source line Helin Zhang
2015-06-02  3:16     ` [PATCH v2 2/6] mbuf: use the reserved 16 bits for double vlan Helin Zhang
2015-06-02  3:16     ` [PATCH v2 3/6] i40e: support double vlan stripping and insertion Helin Zhang
2015-06-02  3:16     ` [PATCH v2 4/6] i40evf: add supported offload capability flags Helin Zhang
2015-06-02  3:16     ` [PATCH v2 5/6] app/testpmd: add test cases for qinq stripping and insertion Helin Zhang
2015-06-02  3:16     ` [PATCH v2 6/6] examples/ipv4_multicast: support double vlan " Helin Zhang
2015-06-02  7:37     ` [PATCH v2 0/6] support i40e QinQ " Liu, Jijiang
2015-06-08  7:32       ` Cao, Min
2015-06-08  7:40     ` Olivier MATZ
2015-06-11  7:03     ` [PATCH v3 0/7] " Helin Zhang
2015-06-11  7:03       ` [PATCH v3 1/7] ixgbe: remove a discarded source line Helin Zhang
2015-06-11  7:03       ` [PATCH v3 2/7] mbuf: use the reserved 16 bits for double vlan Helin Zhang
2015-06-25  8:31         ` Zhang, Helin
2015-06-28 20:36           ` Thomas Monjalon
2015-06-30  7:33             ` Olivier MATZ
2015-06-11  7:03       ` [PATCH v3 3/7] i40e: support double vlan stripping and insertion Helin Zhang
2015-06-11  7:03       ` [PATCH v3 4/7] i40evf: add supported offload capability flags Helin Zhang
2015-06-11  7:03       ` [PATCH v3 5/7] app/testpmd: add test cases for qinq stripping and insertion Helin Zhang
2015-06-11  7:03       ` [PATCH v3 6/7] examples/ipv4_multicast: support double vlan " Helin Zhang
2015-06-11  7:04       ` [PATCH v3 7/7] doc: update testpmd command Helin Zhang
2015-06-11  7:25       ` [PATCH v3 0/7] support i40e QinQ stripping and insertion Wu, Jingjing
2015-07-07 14:43         ` Thomas Monjalon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.