diff options
author | Eric Dumazet <edumazet@google.com> | 2015-10-19 23:17:59 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-10-21 22:36:10 -0400 |
commit | 8f3af27786913851e720bc9466d1abffcfa7aff6 (patch) | |
tree | d85ab640da126487ee2dbdc4954dd4738e7e9d4d | |
parent | b1974ed05ea90264d534a200e8a13932ad55f8b8 (diff) |
net: dummy: add more features
While testing my SIT/GRO patch using netfilter TEE module and a dummy
device, I found some features were missing :
TSO IPv6, UFO, and encapsulated traffic.
ethtool -k dummy0 now gives :
...
tcp-segmentation-offload: on
tx-tcp-segmentation: on
tx-tcp-ecn-segmentation: on
tx-tcp6-segmentation: on
udp-fragmentation-offload: on
...
tx-gre-segmentation: on
tx-ipip-segmentation: on
tx-sit-segmentation: on
tx-udp_tnl-segmentation: on
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/dummy.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/net/dummy.c b/drivers/net/dummy.c index 815eb94990f5..69fc8409a973 100644 --- a/drivers/net/dummy.c +++ b/drivers/net/dummy.c | |||
@@ -147,8 +147,12 @@ static void dummy_setup(struct net_device *dev) | |||
147 | dev->flags |= IFF_NOARP; | 147 | dev->flags |= IFF_NOARP; |
148 | dev->flags &= ~IFF_MULTICAST; | 148 | dev->flags &= ~IFF_MULTICAST; |
149 | dev->priv_flags |= IFF_LIVE_ADDR_CHANGE | IFF_NO_QUEUE; | 149 | dev->priv_flags |= IFF_LIVE_ADDR_CHANGE | IFF_NO_QUEUE; |
150 | dev->features |= NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_TSO; | 150 | dev->features |= NETIF_F_SG | NETIF_F_FRAGLIST; |
151 | dev->features |= NETIF_F_ALL_TSO | NETIF_F_UFO; | ||
151 | dev->features |= NETIF_F_HW_CSUM | NETIF_F_HIGHDMA | NETIF_F_LLTX; | 152 | dev->features |= NETIF_F_HW_CSUM | NETIF_F_HIGHDMA | NETIF_F_LLTX; |
153 | dev->features |= NETIF_F_GSO_ENCAP_ALL; | ||
154 | dev->hw_features |= dev->features; | ||
155 | dev->hw_enc_features |= dev->features; | ||
152 | eth_hw_addr_random(dev); | 156 | eth_hw_addr_random(dev); |
153 | } | 157 | } |
154 | 158 | ||