net: Fix skb_under_panic oops in neigh_resolve_output
authorramesh.nagappa@gmail.com <ramesh.nagappa@gmail.com>
Fri, 5 Oct 2012 19:10:15 +0000 (19:10 +0000)
committerBen Hutchings <ben@decadent.org.uk>
Tue, 30 Oct 2012 23:26:33 +0000 (23:26 +0000)
commitf5b6b28c1f2c77dcbbf4b0f478078c6d6a661628
tree9fc6c7fbda162cca774fc5472c3357912417d5ea
parentad5ca6d13f5c9c2f34f0ebc0dbea3da0e417805b
net: Fix skb_under_panic oops in neigh_resolve_output

[ Upstream commit e1f165032c8bade3a6bdf546f8faf61fda4dd01c ]

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 <ramesh.nagappa@ericsson.com>
Reviewed-by: Shawn Lu <shawn.lu@ericsson.com>
Reviewed-by: Robert Coulson <robert.coulson@ericsson.com>
Reviewed-by: Billie Alsup <billie.alsup@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
net/core/neighbour.c