Home
last modified time | relevance | path

Searched refs:NETIF_F_GEN_CSUM (Results 1 – 5 of 5) sorted by relevance

/linux-4.1.27/include/linux/
Dnetdev_features.h148 #define NETIF_F_GEN_CSUM NETIF_F_HW_CSUM macro
149 #define NETIF_F_V4_CSUM (NETIF_F_GEN_CSUM | NETIF_F_IP_CSUM)
150 #define NETIF_F_V6_CSUM (NETIF_F_GEN_CSUM | NETIF_F_IPV6_CSUM)
Dnetdevice.h3579 return ((features & NETIF_F_GEN_CSUM) || in can_checksum_protocol()
3650 if (f1 & NETIF_F_GEN_CSUM) in netdev_intersect_features()
3651 f1 |= (NETIF_F_ALL_CSUM & ~NETIF_F_GEN_CSUM); in netdev_intersect_features()
3652 if (f2 & NETIF_F_GEN_CSUM) in netdev_intersect_features()
3653 f2 |= (NETIF_F_ALL_CSUM & ~NETIF_F_GEN_CSUM); in netdev_intersect_features()
3655 if (f1 & NETIF_F_GEN_CSUM) in netdev_intersect_features()
3656 f1 &= ~(NETIF_F_ALL_CSUM & ~NETIF_F_GEN_CSUM); in netdev_intersect_features()
Dif_vlan.h624 NETIF_F_GEN_CSUM | in vlan_features_check()
/linux-4.1.27/net/core/
Ddev.c6136 if (!((features & NETIF_F_GEN_CSUM) || in netdev_fix_features()
7203 if (mask & NETIF_F_GEN_CSUM) in netdev_increment_features()
7211 if (all & NETIF_F_GEN_CSUM) in netdev_increment_features()
7212 all &= ~(NETIF_F_ALL_CSUM & ~NETIF_F_GEN_CSUM); in netdev_increment_features()
/linux-4.1.27/drivers/net/
Dmacvlan.c759 (NETIF_F_SG | NETIF_F_GEN_CSUM | NETIF_F_GSO_SOFTWARE | NETIF_F_LLTX | \