Lines Matching refs:_ha
4378 #define QLA_ABTS_FW_ENABLED(_ha) ((_ha)->fw_attributes_ext[0] & BIT_14) argument
5179 #define QLA_FW_STARTED(_ha) { \ argument
5181 _ha->flags.fw_started = 1; \
5182 _ha->base_qpair->fw_started = 1; \
5183 for (i = 0; i < _ha->max_qpairs; i++) { \
5184 if (_ha->queue_pair_map[i]) \
5185 _ha->queue_pair_map[i]->fw_started = 1; \
5189 #define QLA_FW_STOPPED(_ha) { \ argument
5191 _ha->flags.fw_started = 0; \
5192 _ha->base_qpair->fw_started = 0; \
5193 for (i = 0; i < _ha->max_qpairs; i++) { \
5194 if (_ha->queue_pair_map[i]) \
5195 _ha->queue_pair_map[i]->fw_started = 0; \
5260 #define QLA_ENA_CONF(_ha) {\ argument
5262 _ha->base_qpair->enable_explicit_conf = 1; \
5263 for (i = 0; i < _ha->max_qpairs; i++) { \
5264 if (_ha->queue_pair_map[i]) \
5265 _ha->queue_pair_map[i]->enable_explicit_conf = 1; \
5269 #define QLA_DIS_CONF(_ha) {\ argument
5271 _ha->base_qpair->enable_explicit_conf = 0; \
5272 for (i = 0; i < _ha->max_qpairs; i++) { \
5273 if (_ha->queue_pair_map[i]) \
5274 _ha->queue_pair_map[i]->enable_explicit_conf = 0; \
5460 #define USER_CTRL_IRQ(_ha) (ql2xuctrlirq && QLA_TGT_MODE_ENABLED() && \ argument
5461 (IS_QLA27XX(_ha) || IS_QLA28XX(_ha) || IS_QLA83XX(_ha)))
5463 #define SAVE_TOPO(_ha) { \ argument
5464 if (_ha->current_topology) \
5465 _ha->prev_topology = _ha->current_topology; \