Re: [patch net-next 10/21] ipv6: fib: Add offload indication to routes

2017-08-03 Thread David Ahern
On 8/3/17 5:28 AM, Jiri Pirko wrote: > diff --git a/include/uapi/linux/ipv6_route.h b/include/uapi/linux/ipv6_route.h > index d496c02..33e2a57 100644 > --- a/include/uapi/linux/ipv6_route.h > +++ b/include/uapi/linux/ipv6_route.h > @@ -35,6 +35,7 @@ > #define RTF_PREF(pref) ((pref) << 27) >

[patch net-next 10/21] ipv6: fib: Add offload indication to routes

2017-08-03 Thread Jiri Pirko
From: Ido Schimmel Allow user space applications to see which routes are offloaded and which aren't by setting the RTNH_F_OFFLOAD flag when dumping them. To be consistent with IPv4, offload indication is provided on a per-nexthop basis. Signed-off-by: Ido Schimmel Signed-off-by: Jiri Pirko --