mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-28 01:11:52 +02:00
add extra safety for the packet mangling in the mvswitch driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11880 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
f85a5739c0
commit
15333144ce
@ -78,7 +78,7 @@ mvswitch_mangle_tx(struct sk_buff *skb, struct net_device *dev)
|
|||||||
if (__vlan_hwaccel_get_tag(skb, &vid))
|
if (__vlan_hwaccel_get_tag(skb, &vid))
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
if ((skb->len <= 62) || (skb_headroom(skb) < MV_HEADER_SIZE)) {
|
if (skb_cloned(skb) || (skb->len <= 62) || (skb_headroom(skb) < MV_HEADER_SIZE)) {
|
||||||
if (pskb_expand_head(skb, MV_HEADER_SIZE, 0, GFP_ATOMIC))
|
if (pskb_expand_head(skb, MV_HEADER_SIZE, 0, GFP_ATOMIC))
|
||||||
goto error_expand;
|
goto error_expand;
|
||||||
if (skb->len < 62)
|
if (skb->len < 62)
|
||||||
|
Loading…
Reference in New Issue
Block a user