diff options
Diffstat (limited to 'include/linux/netdev_features.h')
-rw-r--r-- | include/linux/netdev_features.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/netdev_features.h b/include/linux/netdev_features.h index a734bf43d190..7cf272a4b5c8 100644 --- a/include/linux/netdev_features.h +++ b/include/linux/netdev_features.h | |||
@@ -39,6 +39,7 @@ enum { | |||
39 | NETIF_F_UFO_BIT, /* ... UDPv4 fragmentation */ | 39 | NETIF_F_UFO_BIT, /* ... UDPv4 fragmentation */ |
40 | NETIF_F_GSO_ROBUST_BIT, /* ... ->SKB_GSO_DODGY */ | 40 | NETIF_F_GSO_ROBUST_BIT, /* ... ->SKB_GSO_DODGY */ |
41 | NETIF_F_TSO_ECN_BIT, /* ... TCP ECN support */ | 41 | NETIF_F_TSO_ECN_BIT, /* ... TCP ECN support */ |
42 | NETIF_F_TSO_MANGLEID_BIT, /* ... IPV4 ID mangling allowed */ | ||
42 | NETIF_F_TSO6_BIT, /* ... TCPv6 segmentation */ | 43 | NETIF_F_TSO6_BIT, /* ... TCPv6 segmentation */ |
43 | NETIF_F_FSO_BIT, /* ... FCoE segmentation */ | 44 | NETIF_F_FSO_BIT, /* ... FCoE segmentation */ |
44 | NETIF_F_GSO_GRE_BIT, /* ... GRE with TSO */ | 45 | NETIF_F_GSO_GRE_BIT, /* ... GRE with TSO */ |
@@ -120,6 +121,7 @@ enum { | |||
120 | #define NETIF_F_GSO_SIT __NETIF_F(GSO_SIT) | 121 | #define NETIF_F_GSO_SIT __NETIF_F(GSO_SIT) |
121 | #define NETIF_F_GSO_UDP_TUNNEL __NETIF_F(GSO_UDP_TUNNEL) | 122 | #define NETIF_F_GSO_UDP_TUNNEL __NETIF_F(GSO_UDP_TUNNEL) |
122 | #define NETIF_F_GSO_UDP_TUNNEL_CSUM __NETIF_F(GSO_UDP_TUNNEL_CSUM) | 123 | #define NETIF_F_GSO_UDP_TUNNEL_CSUM __NETIF_F(GSO_UDP_TUNNEL_CSUM) |
124 | #define NETIF_F_TSO_MANGLEID __NETIF_F(TSO_MANGLEID) | ||
123 | #define NETIF_F_GSO_TUNNEL_REMCSUM __NETIF_F(GSO_TUNNEL_REMCSUM) | 125 | #define NETIF_F_GSO_TUNNEL_REMCSUM __NETIF_F(GSO_TUNNEL_REMCSUM) |
124 | #define NETIF_F_HW_VLAN_STAG_FILTER __NETIF_F(HW_VLAN_STAG_FILTER) | 126 | #define NETIF_F_HW_VLAN_STAG_FILTER __NETIF_F(HW_VLAN_STAG_FILTER) |
125 | #define NETIF_F_HW_VLAN_STAG_RX __NETIF_F(HW_VLAN_STAG_RX) | 127 | #define NETIF_F_HW_VLAN_STAG_RX __NETIF_F(HW_VLAN_STAG_RX) |
@@ -147,6 +149,7 @@ enum { | |||
147 | 149 | ||
148 | /* List of features with software fallbacks. */ | 150 | /* List of features with software fallbacks. */ |
149 | #define NETIF_F_GSO_SOFTWARE (NETIF_F_TSO | NETIF_F_TSO_ECN | \ | 151 | #define NETIF_F_GSO_SOFTWARE (NETIF_F_TSO | NETIF_F_TSO_ECN | \ |
152 | NETIF_F_TSO_MANGLEID | \ | ||
150 | NETIF_F_TSO6 | NETIF_F_UFO) | 153 | NETIF_F_TSO6 | NETIF_F_UFO) |
151 | 154 | ||
152 | /* List of IP checksum features. Note that NETIF_F_ HW_CSUM should not be | 155 | /* List of IP checksum features. Note that NETIF_F_ HW_CSUM should not be |