Lines Matching refs:_ha
4367 #define QLA_ABTS_FW_ENABLED(_ha) ((_ha)->fw_attributes_ext[0] & BIT_14) argument
5167 #define QLA_FW_STARTED(_ha) { \ argument
5169 _ha->flags.fw_started = 1; \
5170 _ha->base_qpair->fw_started = 1; \
5171 for (i = 0; i < _ha->max_qpairs; i++) { \
5172 if (_ha->queue_pair_map[i]) \
5173 _ha->queue_pair_map[i]->fw_started = 1; \
5177 #define QLA_FW_STOPPED(_ha) { \ argument
5179 _ha->flags.fw_started = 0; \
5180 _ha->base_qpair->fw_started = 0; \
5181 for (i = 0; i < _ha->max_qpairs; i++) { \
5182 if (_ha->queue_pair_map[i]) \
5183 _ha->queue_pair_map[i]->fw_started = 0; \
5248 #define QLA_ENA_CONF(_ha) {\ argument
5250 _ha->base_qpair->enable_explicit_conf = 1; \
5251 for (i = 0; i < _ha->max_qpairs; i++) { \
5252 if (_ha->queue_pair_map[i]) \
5253 _ha->queue_pair_map[i]->enable_explicit_conf = 1; \
5257 #define QLA_DIS_CONF(_ha) {\ argument
5259 _ha->base_qpair->enable_explicit_conf = 0; \
5260 for (i = 0; i < _ha->max_qpairs; i++) { \
5261 if (_ha->queue_pair_map[i]) \
5262 _ha->queue_pair_map[i]->enable_explicit_conf = 0; \
5448 #define USER_CTRL_IRQ(_ha) (ql2xuctrlirq && QLA_TGT_MODE_ENABLED() && \ argument
5449 (IS_QLA27XX(_ha) || IS_QLA28XX(_ha) || IS_QLA83XX(_ha)))
5451 #define SAVE_TOPO(_ha) { \ argument
5452 if (_ha->current_topology) \
5453 _ha->prev_topology = _ha->current_topology; \