diff options
author | John Fastabend <john.r.fastabend@intel.com> | 2010-10-30 10:22:37 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-11-15 13:11:40 -0500 |
commit | 8f5549f381ced6a255f2c7127b2b3b3b05fdfd6e (patch) | |
tree | 495c1ed3e1031a8f07b659cf3772ed2be22ea9d3 /net/8021q | |
parent | 029f5fc31cdb35d6c8a7fe9a54bf21556e175988 (diff) |
net: remove check for headroom in vlan_dev_create
It is possible for the headroom to be smaller then the
hard_header_len for a short period of time after toggling
the vlan offload setting.
This is not a hard error and skb_cow_head is called in
__vlan_put_tag() to resolve this.
Signed-off-by: John Fastabend <john.r.fastabend@intel.com>
Acked-by: Jesse Gross <jesse@nicira.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/8021q')
-rw-r--r-- | net/8021q/vlan_dev.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/8021q/vlan_dev.c b/net/8021q/vlan_dev.c index 14e3d1fa07a0..afb03c5a7adc 100644 --- a/net/8021q/vlan_dev.c +++ b/net/8021q/vlan_dev.c | |||
@@ -274,9 +274,6 @@ static int vlan_dev_hard_header(struct sk_buff *skb, struct net_device *dev, | |||
274 | u16 vlan_tci = 0; | 274 | u16 vlan_tci = 0; |
275 | int rc; | 275 | int rc; |
276 | 276 | ||
277 | if (WARN_ON(skb_headroom(skb) < dev->hard_header_len)) | ||
278 | return -ENOSPC; | ||
279 | |||
280 | if (!(vlan_dev_info(dev)->flags & VLAN_FLAG_REORDER_HDR)) { | 277 | if (!(vlan_dev_info(dev)->flags & VLAN_FLAG_REORDER_HDR)) { |
281 | vhdr = (struct vlan_hdr *) skb_push(skb, VLAN_HLEN); | 278 | vhdr = (struct vlan_hdr *) skb_push(skb, VLAN_HLEN); |
282 | 279 | ||