diff options
author | Shan Wei <shanwei@cn.fujitsu.com> | 2011-07-05 23:44:17 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-07-06 01:34:52 -0400 |
commit | f9d7a1187dfefc6b54b53e0ffff4d26c0eff2702 (patch) | |
tree | 8d708bcd28dd6c93cc4a9741a870b8805ced607b | |
parent | 7736d33f4262d437c51ed7a28114eacbfca236ff (diff) |
net: Add GSO to vlan_features initialization
Just add GSO to vlan_features initialization, and update comments.
When we set offload features, vlan_dev_fix_features() will do more check.
In vlan_dev_fix_features(), final features is decided by
features of real device and vlan_features of real device.
Signed-off-by: Shan Wei <shanwei@cn.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/core/dev.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 4577e6711ec3..9ca15142d823 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -5488,11 +5488,12 @@ int register_netdevice(struct net_device *dev) | |||
5488 | dev->features |= NETIF_F_NOCACHE_COPY; | 5488 | dev->features |= NETIF_F_NOCACHE_COPY; |
5489 | } | 5489 | } |
5490 | 5490 | ||
5491 | /* Enable GRO and NETIF_F_HIGHDMA for vlans by default, | 5491 | /* Enable GSO, GRO and NETIF_F_HIGHDMA for vlans by default, |
5492 | * vlan_dev_init() will do the dev->features check, so these features | 5492 | * vlan_dev_fix_features() will do the features check, |
5493 | * are enabled only if supported by underlying device. | 5493 | * so NETIF_F_HIGHDMA feature is enabled only if supported |
5494 | * by underlying device. | ||
5494 | */ | 5495 | */ |
5495 | dev->vlan_features |= (NETIF_F_GRO | NETIF_F_HIGHDMA); | 5496 | dev->vlan_features |= (NETIF_F_SOFT_FEATURES | NETIF_F_HIGHDMA); |
5496 | 5497 | ||
5497 | ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev); | 5498 | ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev); |
5498 | ret = notifier_to_errno(ret); | 5499 | ret = notifier_to_errno(ret); |