mbox series

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

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

Message

Wojciech Drewek March 17, 2022, 4:27 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 (merged):
https://lore.kernel.org/netdev/164708701228.11169.15700740251869229843.git-patchwork-notify@kernel.org/

---
v4: updated link to merged kernel changes
v5: restore changelogs, they were missing in
    previous version

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

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

Comments

David Ahern March 21, 2022, 5:06 p.m. UTC | #1
On 3/17/22 10:27 AM, Wojciech Drewek wrote:
> 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 (merged):
> https://lore.kernel.org/netdev/164708701228.11169.15700740251869229843.git-patchwork-notify@kernel.org/
> 
> ---
> v4: updated link to merged kernel changes
> v5: restore changelogs, they were missing in
>     previous version
> 
> Wojciech Drewek (2):
>   ip: GTP support in ip link
>   f_flower: Implement gtp options support
> 
>  include/uapi/linux/if_link.h |   2 +
>  include/uapi/linux/pkt_cls.h |  16 ++++
>  ip/Makefile                  |   2 +-
>  ip/iplink.c                  |   2 +-
>  ip/iplink_gtp.c              | 140 +++++++++++++++++++++++++++++++++++
>  man/man8/ip-link.8.in        |  29 +++++++-
>  man/man8/tc-flower.8         |  10 +++
>  tc/f_flower.c                | 123 +++++++++++++++++++++++++++++-
>  8 files changed, 319 insertions(+), 5 deletions(-)
>  create mode 100644 ip/iplink_gtp.c
> 

looks like the patchworks notification did not go out. This set has been
applied to iproute2-next.
Wojciech Drewek March 22, 2022, 9:18 a.m. UTC | #2
> -----Original Message-----
> From: David Ahern <dsahern@gmail.com>
> Sent: poniedziaƂek, 21 marca 2022 18:06
> To: Drewek, Wojciech <wojciech.drewek@intel.com>; netdev@vger.kernel.org
> Cc: dsahern@gmail.com; stephen@networkplumber.org; jiri@mellanox.com
> Subject: Re: [PATCH iproute2-next v7 0/2] GTP support for ip link and tc flowers
> 
> On 3/17/22 10:27 AM, Wojciech Drewek wrote:
> > 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 (merged):
> > https://lore.kernel.org/netdev/164708701228.11169.15700740251869229843.git-patchwork-notify@kernel.org/
> >
> > ---
> > v4: updated link to merged kernel changes
> > v5: restore changelogs, they were missing in
> >     previous version
> >
> > Wojciech Drewek (2):
> >   ip: GTP support in ip link
> >   f_flower: Implement gtp options support
> >
> >  include/uapi/linux/if_link.h |   2 +
> >  include/uapi/linux/pkt_cls.h |  16 ++++
> >  ip/Makefile                  |   2 +-
> >  ip/iplink.c                  |   2 +-
> >  ip/iplink_gtp.c              | 140 +++++++++++++++++++++++++++++++++++
> >  man/man8/ip-link.8.in        |  29 +++++++-
> >  man/man8/tc-flower.8         |  10 +++
> >  tc/f_flower.c                | 123 +++++++++++++++++++++++++++++-
> >  8 files changed, 319 insertions(+), 5 deletions(-)
> >  create mode 100644 ip/iplink_gtp.c
> >
> 
> looks like the patchworks notification did not go out. This set has been
> applied to iproute2-next.

Thanks for letting me know!