Lines Matching refs:_ha
4421 #define QLA_FW_STARTED(_ha) { \ argument
4423 _ha->flags.fw_started = 1; \
4424 _ha->base_qpair->fw_started = 1; \
4425 for (i = 0; i < _ha->max_qpairs; i++) { \
4426 if (_ha->queue_pair_map[i]) \
4427 _ha->queue_pair_map[i]->fw_started = 1; \
4431 #define QLA_FW_STOPPED(_ha) { \ argument
4433 _ha->flags.fw_started = 0; \
4434 _ha->base_qpair->fw_started = 0; \
4435 for (i = 0; i < _ha->max_qpairs; i++) { \
4436 if (_ha->queue_pair_map[i]) \
4437 _ha->queue_pair_map[i]->fw_started = 0; \
4485 #define QLA_ENA_CONF(_ha) {\ argument
4487 _ha->base_qpair->enable_explicit_conf = 1; \
4488 for (i = 0; i < _ha->max_qpairs; i++) { \
4489 if (_ha->queue_pair_map[i]) \
4490 _ha->queue_pair_map[i]->enable_explicit_conf = 1; \
4494 #define QLA_DIS_CONF(_ha) {\ argument
4496 _ha->base_qpair->enable_explicit_conf = 0; \
4497 for (i = 0; i < _ha->max_qpairs; i++) { \
4498 if (_ha->queue_pair_map[i]) \
4499 _ha->queue_pair_map[i]->enable_explicit_conf = 0; \
4639 #define USER_CTRL_IRQ(_ha) (ql2xuctrlirq && QLA_TGT_MODE_ENABLED() && \ argument
4640 (IS_QLA27XX(_ha) || IS_QLA83XX(_ha)))
4642 #define SAVE_TOPO(_ha) { \ argument
4643 if (_ha->current_topology) \
4644 _ha->prev_topology = _ha->current_topology; \