mbox series

[iproute2-next,v2,0/2] GTP support for ip link and tc flower

Message ID 20220204165821.12104-1-wojciech.drewek@intel.com (mailing list archive)
Headers show
Series GTP support for ip link and tc flower | expand

Message

Wojciech Drewek Feb. 4, 2022, 4:58 p.m. UTC
This patch series introduces GTP support to iproute2. Since this patch
series it is possible to create net devices of GTP type. Then, those
devices can be used in tc in order to offload GTP packets. New field
in tc flower (gtp_opts) can be used to match on QFI and PDU type.

Kernel changes:
https://lore.kernel.org/netdev/20220204164929.10356-1-marcin.szycik@linux.intel.com/T/#t

Wojciech Drewek (2):
  ip: GTP support in ip link
  f_flower: Implement gtp options support

 include/uapi/linux/if_link.h |   1 +
 include/uapi/linux/pkt_cls.h |  16 +++++
 ip/Makefile                  |   2 +-
 ip/iplink.c                  |   2 +-
 ip/iplink_gtp.c              | 123 +++++++++++++++++++++++++++++++++++
 man/man8/ip-link.8.in        |  29 ++++++++-
 man/man8/tc-flower.8         |  10 +++
 tc/f_flower.c                | 113 ++++++++++++++++++++++++++++++++
 8 files changed, 293 insertions(+), 3 deletions(-)
 create mode 100644 ip/iplink_gtp.c