Lines Matching refs:features
550 dev->features |= real_dev->vlan_features | NETIF_F_LLTX | in vlan_dev_init()
553 if (dev->features & NETIF_F_VLAN_FEATURES) in vlan_dev_init()
571 if (vlan_hw_offload_capable(real_dev->features, in vlan_dev_init()
608 netdev_features_t features) in vlan_dev_fix_features() argument
611 netdev_features_t old_features = features; in vlan_dev_fix_features()
613 features = netdev_intersect_features(features, real_dev->vlan_features); in vlan_dev_fix_features()
614 features |= NETIF_F_RXCSUM; in vlan_dev_fix_features()
615 features = netdev_intersect_features(features, real_dev->features); in vlan_dev_fix_features()
617 features |= old_features & (NETIF_F_SOFT_FEATURES | NETIF_F_GSO_SOFTWARE); in vlan_dev_fix_features()
618 features |= NETIF_F_LLTX; in vlan_dev_fix_features()
620 return features; in vlan_dev_fix_features()