Lines Matching full:set
24 1. netdev->hw_features set contains features whose state may possibly
26 request. This set should be initialized in ndo_init callback and not
29 2. netdev->features set contains features which are currently enabled
33 3. netdev->vlan_features set contains features whose state is inherited
34 by child VLAN devices (limits netdev->features set). This is currently
38 4. netdev->wanted_features set contains feature set requested by user.
39 This set is filtered by ndo_fix_features callback whenever it or
40 some device-specific conditions change. This set is internal to
48 When current feature set (netdev->features) is to be changed, new set
50 and netdev_fix_features(). If the resulting set differs from current
51 set, it is passed to ndo_set_features callback and (if the callback
54 set might have changed.
77 set can be reduced further by networking core imposed limitations (as coded
91 Hardware should be reconfigured to match passed feature set. The set
117 set, be it TCPv4 (when NETIF_F_TSO is enabled) or TCPv6 (NETIF_F_TSO6).
152 NETIF_F_NETNS_LOCAL is set for devices that are not allowed to move between
159 NETIF_F_VLAN_CHALLENGED should be set for devices which can't cope with VLAN
160 headers. Some drivers set this because the cards can't handle the bigger MTU.