Commit c5114cd59d2664f258b0d021d79b1532d94bdc2b

Authored by Jiri Pirko
Committed by David S. Miller
1 parent 9331db4f00

vlan: reset headers on accel emulation path

It's after all necessary to do reset headers here. The reason is we
cannot depend that it gets reseted in __netif_receive_skb once skb is
reinjected. For incoming vlanids without vlan_dev, vlan_do_receive()
returns false with skb != NULL and __netif_reveive_skb continues, skb is
not reinjected.

This might be good material for 3.0-stable as well

Reported-by: Mike Auty <mike.auty@gmail.com>
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

net/8021q/vlan_core.c
... ... @@ -167,6 +167,8 @@
167 167 if (unlikely(!skb))
168 168 goto err_free;
169 169  
  170 + skb_reset_network_header(skb);
  171 + skb_reset_transport_header(skb);
170 172 return skb;
171 173  
172 174 err_free: