diff options
Diffstat (limited to 'include/linux/netdev_features.h')
-rw-r--r-- | include/linux/netdev_features.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/include/linux/netdev_features.h b/include/linux/netdev_features.h index 2c4e94ab88da..d9654f0eecb3 100644 --- a/include/linux/netdev_features.h +++ b/include/linux/netdev_features.h | |||
@@ -146,15 +146,12 @@ enum { | |||
146 | #define NETIF_F_GSO_SOFTWARE (NETIF_F_TSO | NETIF_F_TSO_ECN | \ | 146 | #define NETIF_F_GSO_SOFTWARE (NETIF_F_TSO | NETIF_F_TSO_ECN | \ |
147 | NETIF_F_TSO6 | NETIF_F_UFO) | 147 | NETIF_F_TSO6 | NETIF_F_UFO) |
148 | 148 | ||
149 | #define NETIF_F_GEN_CSUM NETIF_F_HW_CSUM | 149 | /* List of IP checksum features. Note that NETIF_F_ HW_CSUM should not be |
150 | #define NETIF_F_V4_CSUM (NETIF_F_GEN_CSUM | NETIF_F_IP_CSUM) | ||
151 | #define NETIF_F_V6_CSUM (NETIF_F_GEN_CSUM | NETIF_F_IPV6_CSUM) | ||
152 | |||
153 | /* List of IP checksum features. Note that NETIF_HW_CSUM should not be | ||
154 | * set in features when NETIF_F_IP_CSUM or NETIF_F_IPV6_CSUM are set-- | 150 | * set in features when NETIF_F_IP_CSUM or NETIF_F_IPV6_CSUM are set-- |
155 | * this would be contradictory | 151 | * this would be contradictory |
156 | */ | 152 | */ |
157 | #define NETIF_F_CSUM_MASK (NETIF_F_V4_CSUM | NETIF_F_V6_CSUM) | 153 | #define NETIF_F_CSUM_MASK (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | \ |
154 | NETIF_F_HW_CSUM) | ||
158 | 155 | ||
159 | #define NETIF_F_ALL_TSO (NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN) | 156 | #define NETIF_F_ALL_TSO (NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN) |
160 | 157 | ||