net: fec: fix receive VLAN CTAG HW acceleration issue
authorNimrod Andy <B38611@freescale.com>
Tue, 10 Mar 2015 11:09:41 +0000 (19:09 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 10 Mar 2015 17:37:01 +0000 (13:37 -0400)
The current driver support receive VLAN CTAG HW acceleration feature
(NETIF_F_HW_VLAN_CTAG_RX) through software simulation. There calls the
api .skb_copy_to_linear_data_offset() to skip the VLAN tag, but there
have overlap between the two memory data point range. The patch just fix
the issue.

V2:
Michael Grzeschik suggest to use memmove() instead of skb_copy_to_linear_data_offset().

Reported-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
Fixes: 1b7bde6d659d ("net: fec: implement rx_copybreak to improve rx performance")
Signed-off-by: Fugang Duan <B38611@freescale.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/freescale/fec_main.c

index 99492b7e3713bbd04aaacffb8aa1a926b1ce9ef9..787db5026191ae663000cdcf9a4d1d42dc24be2f 100644 (file)
@@ -1479,8 +1479,7 @@ fec_enet_rx_queue(struct net_device *ndev, int budget, u16 queue_id)
 
                        vlan_packet_rcvd = true;
 
-                       skb_copy_to_linear_data_offset(skb, VLAN_HLEN,
-                                                      data, (2 * ETH_ALEN));
+                       memmove(skb->data + VLAN_HLEN, data, ETH_ALEN * 2);
                        skb_pull(skb, VLAN_HLEN);
                }
 
This page took 0.027196 seconds and 5 git commands to generate.