Re: [PATCH net-next] flow_dissector: fix ipv6 dst, hop-by-hop and routing ext hdrs

2015-06-12 Thread David Miller
From: Eric Dumazet Date: Fri, 12 Jun 2015 19:31:32 -0700 > From: Eric Dumazet > > __skb_header_pointer() returns a pointer that must be checked. > > Fixes infinite loop reported by Alexei, and add __must_check to > catch these errors earlier. > > Fixes: 6a74fcf426f5 ("flow_dissector: add supp

Re: [PATCH net-next] flow_dissector: fix ipv6 dst, hop-by-hop and routing ext hdrs

2015-06-12 Thread Tom Herbert
On Fri, Jun 12, 2015 at 7:31 PM, Eric Dumazet wrote: > From: Eric Dumazet > > __skb_header_pointer() returns a pointer that must be checked. > > Fixes infinite loop reported by Alexei, and add __must_check to > catch these errors earlier. > > Fixes: 6a74fcf426f5 ("flow_dissector: add support for

[PATCH net-next] flow_dissector: fix ipv6 dst, hop-by-hop and routing ext hdrs

2015-06-12 Thread Eric Dumazet
From: Eric Dumazet __skb_header_pointer() returns a pointer that must be checked. Fixes infinite loop reported by Alexei, and add __must_check to catch these errors earlier. Fixes: 6a74fcf426f5 ("flow_dissector: add support for dst, hop-by-hop and routing ext hdrs") Reported-by: Alexei Starovo