提交 fc0d48b8 编写于 作者: V Vlad Yasevich 提交者: David S. Miller

vlan: Set hard_header_len according to available acceleration

Currently, if the card supports CTAG acceleration we do not
account for the vlan header even if we are configuring an
8021AD vlan.  This may not be best since we'll do software
tagging for 8021AD which will cause data copy on skb head expansion
Configure the length based on available hw offload capabilities and
vlan protocol.

CC: Patrick McHardy <kaber@trash.net>
Signed-off-by: NVlad Yasevich <vyasevic@redhat.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 14a0d635
...@@ -307,9 +307,11 @@ static void vlan_sync_address(struct net_device *dev, ...@@ -307,9 +307,11 @@ static void vlan_sync_address(struct net_device *dev,
static void vlan_transfer_features(struct net_device *dev, static void vlan_transfer_features(struct net_device *dev,
struct net_device *vlandev) struct net_device *vlandev)
{ {
struct vlan_dev_priv *vlan = vlan_dev_priv(vlandev);
vlandev->gso_max_size = dev->gso_max_size; vlandev->gso_max_size = dev->gso_max_size;
if (dev->features & NETIF_F_HW_VLAN_CTAG_TX) if (vlan_hw_offload_capable(dev->features, vlan->vlan_proto))
vlandev->hard_header_len = dev->hard_header_len; vlandev->hard_header_len = dev->hard_header_len;
else else
vlandev->hard_header_len = dev->hard_header_len + VLAN_HLEN; vlandev->hard_header_len = dev->hard_header_len + VLAN_HLEN;
......
...@@ -592,7 +592,8 @@ static int vlan_dev_init(struct net_device *dev) ...@@ -592,7 +592,8 @@ static int vlan_dev_init(struct net_device *dev)
#endif #endif
dev->needed_headroom = real_dev->needed_headroom; dev->needed_headroom = real_dev->needed_headroom;
if (real_dev->features & NETIF_F_HW_VLAN_CTAG_TX) { if (vlan_hw_offload_capable(real_dev->features,
vlan_dev_priv(dev)->vlan_proto)) {
dev->header_ops = &vlan_passthru_header_ops; dev->header_ops = &vlan_passthru_header_ops;
dev->hard_header_len = real_dev->hard_header_len; dev->hard_header_len = real_dev->hard_header_len;
} else { } else {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册