Lines Matching defs:new_fsm
602 * @new_fsm - The target state to reach
603 * @next_fsm - Pointer to the next step to get to new_fsm
607 * new_fsm will be set in next_fsm.
610 * returns the next step to get to new_fsm. The function may need to be called
611 * multiple times before reaching new_fsm.
616 enum vfio_device_mig_state new_fsm,
790 if (new_fsm >= ARRAY_SIZE(vfio_from_fsm_table) ||
791 (state_flags_table[new_fsm] & device->migration_flags) !=
792 state_flags_table[new_fsm])
800 *next_fsm = vfio_from_fsm_table[cur_fsm][new_fsm];
803 *next_fsm = vfio_from_fsm_table[*next_fsm][new_fsm];