Re: [PATCH V2] net: Fix skb_under_panic oops in neigh_resolve_output

2012-10-07 Thread David Miller
From: ramesh.naga...@gmail.com Date: Fri, 5 Oct 2012 22:10:15 -0700 > The retry loop in neigh_resolve_output() and neigh_connected_output() > call dev_hard_header() with out reseting the skb to network_header. > This causes the retry to fail with skb_under_panic. The fix is to > reset the network

[PATCH V2] net: Fix skb_under_panic oops in neigh_resolve_output

2012-10-05 Thread ramesh . nagappa
The retry loop in neigh_resolve_output() and neigh_connected_output() call dev_hard_header() with out reseting the skb to network_header. This causes the retry to fail with skb_under_panic. The fix is to reset the network_header within the retry loop. Signed-off-by: Ramesh Nagappa Reviewed-by: Sh