Lines Matching refs:_ha
4305 #define QLA_ABTS_FW_ENABLED(_ha) ((_ha)->fw_attributes_ext[0] & BIT_14) argument
5104 #define QLA_FW_STARTED(_ha) { \ argument
5106 _ha->flags.fw_started = 1; \
5107 _ha->base_qpair->fw_started = 1; \
5108 for (i = 0; i < _ha->max_qpairs; i++) { \
5109 if (_ha->queue_pair_map[i]) \
5110 _ha->queue_pair_map[i]->fw_started = 1; \
5114 #define QLA_FW_STOPPED(_ha) { \ argument
5116 _ha->flags.fw_started = 0; \
5117 _ha->base_qpair->fw_started = 0; \
5118 for (i = 0; i < _ha->max_qpairs; i++) { \
5119 if (_ha->queue_pair_map[i]) \
5120 _ha->queue_pair_map[i]->fw_started = 0; \
5185 #define QLA_ENA_CONF(_ha) {\ argument
5187 _ha->base_qpair->enable_explicit_conf = 1; \
5188 for (i = 0; i < _ha->max_qpairs; i++) { \
5189 if (_ha->queue_pair_map[i]) \
5190 _ha->queue_pair_map[i]->enable_explicit_conf = 1; \
5194 #define QLA_DIS_CONF(_ha) {\ argument
5196 _ha->base_qpair->enable_explicit_conf = 0; \
5197 for (i = 0; i < _ha->max_qpairs; i++) { \
5198 if (_ha->queue_pair_map[i]) \
5199 _ha->queue_pair_map[i]->enable_explicit_conf = 0; \
5387 #define USER_CTRL_IRQ(_ha) (ql2xuctrlirq && QLA_TGT_MODE_ENABLED() && \ argument
5388 (IS_QLA27XX(_ha) || IS_QLA28XX(_ha) || IS_QLA83XX(_ha)))
5390 #define SAVE_TOPO(_ha) { \ argument
5391 if (_ha->current_topology) \
5392 _ha->prev_topology = _ha->current_topology; \