netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next v1 0/5][pull request] ice: L2TPv3 offload support
@ 2022-09-08 17:16 Tony Nguyen
  2022-09-08 17:16 ` [PATCH net-next v1 1/5] uapi: move IPPROTO_L2TP to in.h Tony Nguyen
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Tony Nguyen @ 2022-09-08 17:16 UTC (permalink / raw)
  To: davem, kuba, pabeni, edumazet
  Cc: Tony Nguyen, netdev, wojciech.drewek, simon.horman, kurt,
	komachi.yoshiki, jchapman, boris.sukholitko, louis.peens, gnault,
	vladbu, pablo, baowen.zheng, maksym.glubokiy, jiri, paulb, jhs,
	xiyou.wangcong

Wojciech Drewek says:

Add support for dissecting L2TPv3 session id in flow dissector. Add support
for this field in tc-flower and support offloading L2TPv3. Finally, add
support for hardware offload of L2TPv3 packets based on session id in
switchdev mode in ice driver.

Example filter:
  # tc filter add dev $PF1 ingress prio 1 protocol ip \
      flower \
        ip_proto l2tp \
        l2tpv3_sid 1234 \
        skip_sw \
      action mirred egress redirect dev $VF1_PR

Changes in iproute2 are required to use the new fields.

ICE COMMS DDP package is required to create a filter in ice.
COMMS DDP package contains profiles of more advanced protocols.
Without COMMS DDP package hw offload will not work, however
sw offload will still work.
---
v1: fix typos

From RFC:
v2: rebase
v3: refactor of __skb_flow_dissect_l2tpv3

The following are changes since commit 75554fe00f941c3c3d9344e88708093a14d2b4b8:
  net: sparx5: fix function return type to match actual type
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue 100GbE

Marcin Szycik (1):
  ice: Add L2TPv3 hardware offload support

Wojciech Drewek (4):
  uapi: move IPPROTO_L2TP to in.h
  flow_dissector: Add L2TPv3 dissectors
  net/sched: flower: Add L2TPv3 filter
  flow_offload: Introduce flow_match_l2tpv3

 .../ethernet/intel/ice/ice_protocol_type.h    |  8 +++
 drivers/net/ethernet/intel/ice/ice_switch.c   | 70 ++++++++++++++++++-
 drivers/net/ethernet/intel/ice/ice_tc_lib.c   | 27 ++++++-
 drivers/net/ethernet/intel/ice/ice_tc_lib.h   |  6 ++
 include/net/flow_dissector.h                  |  9 +++
 include/net/flow_offload.h                    |  6 ++
 include/uapi/linux/in.h                       |  2 +
 include/uapi/linux/l2tp.h                     |  2 -
 include/uapi/linux/pkt_cls.h                  |  2 +
 net/core/flow_dissector.c                     | 28 ++++++++
 net/core/flow_offload.c                       |  7 ++
 net/sched/cls_flower.c                        | 16 +++++
 12 files changed, 179 insertions(+), 4 deletions(-)

-- 
2.35.1


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

end of thread, other threads:[~2022-09-20  7:30 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-08 17:16 [PATCH net-next v1 0/5][pull request] ice: L2TPv3 offload support Tony Nguyen
2022-09-08 17:16 ` [PATCH net-next v1 1/5] uapi: move IPPROTO_L2TP to in.h Tony Nguyen
2022-09-08 17:16 ` [PATCH net-next v1 2/5] flow_dissector: Add L2TPv3 dissectors Tony Nguyen
2022-09-08 17:16 ` [PATCH net-next v1 3/5] net/sched: flower: Add L2TPv3 filter Tony Nguyen
2022-09-08 17:16 ` [PATCH net-next v1 4/5] flow_offload: Introduce flow_match_l2tpv3 Tony Nguyen
2022-09-08 17:16 ` [PATCH net-next v1 5/5] ice: Add L2TPv3 hardware offload support Tony Nguyen
2022-09-20  7:30 ` [PATCH net-next v1 0/5][pull request] ice: L2TPv3 " patchwork-bot+netdevbpf

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