mbox series

[iproute2-next,0/2] ip: xfrm: support "external" mode for xfrm interfaces

Message ID 20221003091212.4017603-1-eyal.birger@gmail.com (mailing list archive)
Headers show
Series ip: xfrm: support "external" mode for xfrm interfaces | expand

Message

Eyal Birger Oct. 3, 2022, 9:12 a.m. UTC
This series adds support for configuring XFRM interfaces in "external"
mode as recently merged.

Eyal Birger (2):
  ip: xfrm: support "external" (`collect_md`) mode in xfrm interfaces
  ip: xfrm: support adding xfrm metadata as lwtunnel info in routes

 include/uapi/linux/if_link.h  |  1 +
 include/uapi/linux/lwtunnel.h | 10 +++++
 ip/iproute.c                  |  5 ++-
 ip/iproute_lwtunnel.c         | 83 +++++++++++++++++++++++++++++++++++
 ip/link_xfrm.c                | 18 ++++++++
 man/man8/ip-link.8.in         |  7 +++
 man/man8/ip-route.8.in        | 11 +++++
 7 files changed, 133 insertions(+), 2 deletions(-)

Comments

David Ahern Oct. 3, 2022, 2:50 p.m. UTC | #1
On 10/3/22 3:12 AM, Eyal Birger wrote:
> This series adds support for configuring XFRM interfaces in "external"
> mode as recently merged.
> 
> Eyal Birger (2):
>   ip: xfrm: support "external" (`collect_md`) mode in xfrm interfaces
>   ip: xfrm: support adding xfrm metadata as lwtunnel info in routes
> 
>  include/uapi/linux/if_link.h  |  1 +
>  include/uapi/linux/lwtunnel.h | 10 +++++
>  ip/iproute.c                  |  5 ++-
>  ip/iproute_lwtunnel.c         | 83 +++++++++++++++++++++++++++++++++++
>  ip/link_xfrm.c                | 18 ++++++++
>  man/man8/ip-link.8.in         |  7 +++
>  man/man8/ip-route.8.in        | 11 +++++
>  7 files changed, 133 insertions(+), 2 deletions(-)
> 

always put all uapi changes in a separate patch. headers are synched via
a script and a separate patch is easier to drop then editing patches.

Removed the use of matches() in patch 1 and applied to iproute2-next.