Lines Matching refs:_ha
4891 #define QLA_FW_STARTED(_ha) { \ argument
4893 _ha->flags.fw_started = 1; \
4894 _ha->base_qpair->fw_started = 1; \
4895 for (i = 0; i < _ha->max_qpairs; i++) { \
4896 if (_ha->queue_pair_map[i]) \
4897 _ha->queue_pair_map[i]->fw_started = 1; \
4901 #define QLA_FW_STOPPED(_ha) { \ argument
4903 _ha->flags.fw_started = 0; \
4904 _ha->base_qpair->fw_started = 0; \
4905 for (i = 0; i < _ha->max_qpairs; i++) { \
4906 if (_ha->queue_pair_map[i]) \
4907 _ha->queue_pair_map[i]->fw_started = 0; \
4973 #define QLA_ENA_CONF(_ha) {\ argument
4975 _ha->base_qpair->enable_explicit_conf = 1; \
4976 for (i = 0; i < _ha->max_qpairs; i++) { \
4977 if (_ha->queue_pair_map[i]) \
4978 _ha->queue_pair_map[i]->enable_explicit_conf = 1; \
4982 #define QLA_DIS_CONF(_ha) {\ argument
4984 _ha->base_qpair->enable_explicit_conf = 0; \
4985 for (i = 0; i < _ha->max_qpairs; i++) { \
4986 if (_ha->queue_pair_map[i]) \
4987 _ha->queue_pair_map[i]->enable_explicit_conf = 0; \
5135 #define USER_CTRL_IRQ(_ha) (ql2xuctrlirq && QLA_TGT_MODE_ENABLED() && \ argument
5136 (IS_QLA27XX(_ha) || IS_QLA28XX(_ha) || IS_QLA83XX(_ha)))
5138 #define SAVE_TOPO(_ha) { \ argument
5139 if (_ha->current_topology) \
5140 _ha->prev_topology = _ha->current_topology; \