Lines Matching refs:_ha
4896 #define QLA_FW_STARTED(_ha) { \ argument
4898 _ha->flags.fw_started = 1; \
4899 _ha->base_qpair->fw_started = 1; \
4900 for (i = 0; i < _ha->max_qpairs; i++) { \
4901 if (_ha->queue_pair_map[i]) \
4902 _ha->queue_pair_map[i]->fw_started = 1; \
4906 #define QLA_FW_STOPPED(_ha) { \ argument
4908 _ha->flags.fw_started = 0; \
4909 _ha->base_qpair->fw_started = 0; \
4910 for (i = 0; i < _ha->max_qpairs; i++) { \
4911 if (_ha->queue_pair_map[i]) \
4912 _ha->queue_pair_map[i]->fw_started = 0; \
4978 #define QLA_ENA_CONF(_ha) {\ argument
4980 _ha->base_qpair->enable_explicit_conf = 1; \
4981 for (i = 0; i < _ha->max_qpairs; i++) { \
4982 if (_ha->queue_pair_map[i]) \
4983 _ha->queue_pair_map[i]->enable_explicit_conf = 1; \
4987 #define QLA_DIS_CONF(_ha) {\ argument
4989 _ha->base_qpair->enable_explicit_conf = 0; \
4990 for (i = 0; i < _ha->max_qpairs; i++) { \
4991 if (_ha->queue_pair_map[i]) \
4992 _ha->queue_pair_map[i]->enable_explicit_conf = 0; \
5140 #define USER_CTRL_IRQ(_ha) (ql2xuctrlirq && QLA_TGT_MODE_ENABLED() && \ argument
5141 (IS_QLA27XX(_ha) || IS_QLA28XX(_ha) || IS_QLA83XX(_ha)))
5143 #define SAVE_TOPO(_ha) { \ argument
5144 if (_ha->current_topology) \
5145 _ha->prev_topology = _ha->current_topology; \