Lines Matching refs:state
50 /* VSI state flags shared with common code */
63 DECLARE_BITMAP(state, __IAVF_VSI_STATE_SIZE__);
171 enum iavf_vlan_state_t state;
177 __IAVF_TC_INVALID, /* no traffic class, default state */
184 enum iavf_tc_state_t state;
196 /* Driver state. The order of these is important! */
241 enum iavf_cloud_filter_state_t state;
353 * During the __IAVF_INIT_EXTENDED_CAPS state, the driver will
354 * process one flag at a time during each state loop.
376 enum iavf_state_t state;
472 static inline const char *iavf_state_str(enum iavf_state_t state)
474 switch (state) {
509 enum iavf_state_t state)
511 if (adapter->state != state) {
512 adapter->last_state = adapter->state;
513 adapter->state = state;
516 "state transition from:%s to:%s\n",
518 iavf_state_str(adapter->state));