Lines Matching refs:features
575 if (lowerdev->features & NETIF_F_HW_L2FW_DOFFLOAD && in macvlan_open()
799 dev->features = lowerdev->features & MACVLAN_FEATURES; in macvlan_init()
800 dev->features |= ALWAYS_ON_FEATURES; in macvlan_init()
950 netdev_features_t features) in macvlan_fix_features() argument
953 netdev_features_t lowerdev_features = vlan->lowerdev->features; in macvlan_fix_features()
956 features |= NETIF_F_ALL_FOR_ALL; in macvlan_fix_features()
957 features &= (vlan->set_features | ~MACVLAN_FEATURES); in macvlan_fix_features()
958 mask = features; in macvlan_fix_features()
960 lowerdev_features &= (features | ~NETIF_F_LRO); in macvlan_fix_features()
961 features = netdev_increment_features(lowerdev_features, features, mask); in macvlan_fix_features()
962 features |= ALWAYS_ON_FEATURES; in macvlan_fix_features()
963 features &= ~NETIF_F_NETNS_LOCAL; in macvlan_fix_features()
965 return features; in macvlan_fix_features()