mirror of https://gitee.com/openkylin/linux.git
ipvlan: Stop advertising NETIF_F_UFO support.
It is going away. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f9c45ae020
commit
182e0b6b58
|
@ -169,7 +169,7 @@ static void ipvlan_port_destroy(struct net_device *dev)
|
|||
|
||||
#define IPVLAN_FEATURES \
|
||||
(NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST | \
|
||||
NETIF_F_GSO | NETIF_F_TSO | NETIF_F_UFO | NETIF_F_GSO_ROBUST | \
|
||||
NETIF_F_GSO | NETIF_F_TSO | NETIF_F_GSO_ROBUST | \
|
||||
NETIF_F_TSO_ECN | NETIF_F_TSO6 | NETIF_F_GRO | NETIF_F_RXCSUM | \
|
||||
NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_STAG_FILTER)
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <linux/virtio_net.h>
|
||||
|
||||
#define TUN_OFFLOADS (NETIF_F_HW_CSUM | NETIF_F_TSO_ECN | NETIF_F_TSO | \
|
||||
NETIF_F_TSO6 | NETIF_F_UFO)
|
||||
NETIF_F_TSO6)
|
||||
|
||||
static dev_t ipvtap_major;
|
||||
static struct cdev ipvtap_cdev;
|
||||
|
|
Loading…
Reference in New Issue