Re: [PATCH v2 0/9] net: add support for IPv6 Segment Routing

2016-10-26 Thread David Lebrun
On 10/26/2016 05:54 PM, David Lebrun wrote: > struct ipv6_sr_hdr { > __u8nexthdr; > __u8hdrlen; > __u8type; > __u8segments_left; > __u8first_segment; > __be16 flags; > __u8reserved; > > struct in6_addr segment

[PATCH v2 0/9] net: add support for IPv6 Segment Routing

2016-10-26 Thread David Lebrun
v2: - Remove packed attribute from sr6 struct and replaced unaligned 16-bit flags with two 8-bit flags. - SR code now included by default. Option CONFIG_IPV6_SEG6_HMAC exists for HMAC support (which requires crypto dependencies). - Replace "hidden" calls to mutex_{un,}lock to direct calls.