ip_gre: make ipgre_tunnel_xmit() not parse network header as IP unconditionally
authorIsaku Yamahata <[email protected]>
Thu, 20 Dec 2012 15:12:52 +0000 (15:12 +0000)
committerDavid S. Miller <[email protected]>
Fri, 21 Dec 2012 21:14:00 +0000 (13:14 -0800)
commit412ed94744d16806fbec3bd250fd94e71cde5a1f
tree092eb88bc8d798797354bdaa8db95c26faa35f6b
parent29042073e7af55334ac3c4f2a8340263200c5749
ip_gre: make ipgre_tunnel_xmit() not parse network header as IP unconditionally

ipgre_tunnel_xmit() parses network header as IP unconditionally.
But transmitting packets are not always IP packet. For example such packet
can be sent by packet socket with sockaddr_ll.sll_protocol set.
So make the function check if skb->protocol is IP.

Signed-off-by: Isaku Yamahata <[email protected]>
Acked-by: Eric Dumazet <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
net/ipv4/ip_gre.c