Home
last modified time | relevance | path

Searched refs:ncq (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/cmd/bhyve/common/
H A Dpci_nvme.c467 pci_nvme_init_queues(struct pci_nvme_softc *sc, uint32_t nsq, uint32_t ncq) in pci_nvme_init_queues() argument
497 if (ncq > NVME_QUEUES) { in pci_nvme_init_queues()
499 __func__, ncq, NVME_QUEUES); in pci_nvme_init_queues()
500 ncq = NVME_QUEUES; in pci_nvme_init_queues()
503 sc->num_cqueues = ncq; in pci_nvme_init_queues()
1346 struct nvme_completion_queue *ncq; in nvme_opc_create_io_cq() local
1369 ncq = &sc->compl_queues[qid]; in nvme_opc_create_io_cq()
1370 ncq->intr_en = (command->cdw11 & NVME_CMD_CDW11_IEN) >> 1; in nvme_opc_create_io_cq()
1371 ncq->intr_vec = (command->cdw11 >> 16) & 0xffff; in nvme_opc_create_io_cq()
1372 if (ncq->intr_vec > (sc->max_queues + 1)) { in nvme_opc_create_io_cq()
[all …]
H A Dpci_ahci.c669 int err, first, ncq, readop; in ahci_handle_rw() local
673 ncq = 0; in ahci_handle_rw()
694 ncq = 1; in ahci_handle_rw()
736 if (ncq && first) in ahci_handle_rw()
817 int err, first, ncq; in ahci_handle_dsm_trim() local
824 ncq = 0; in ahci_handle_dsm_trim()
828 ncq = 1; in ahci_handle_dsm_trim()
844 if (ncq) { in ahci_handle_dsm_trim()
888 if (ncq && first) in ahci_handle_dsm_trim()
1897 int slot, ncq, dsm; in ata_ioreq_cb() local
[all …]
/illumos-gate/usr/src/uts/common/io/scsi/adapters/pmcs/
H A Dpmcs_sata.c160 if (xp->ncq == 0) { in pmcs_sata_special_work()
170 xp->ncq = 1; in pmcs_sata_special_work()
287 if (xp->ncq && (xp->qdepth > 1)) { in pmcs_sata_special_work()
H A Dpmcs_scsa.c2515 if (xp->ncq) { in pmcs_SATA_run()
/illumos-gate/usr/src/uts/common/io/sata/adapters/nv_sata/
H A Dnv_sata.c2024 int on_bit = 0x01, slot, sactive, ret, ncq = 0; in nv_start_common() local
2063 ncq = NVSLOT_NCQ; in nv_start_common()
2075 nv_slotp->nvslot_flags = ncq; in nv_start_common()
2188 if (ncq == NVSLOT_NCQ) { in nv_start_common()
3705 uint8_t cmd, ncq; in nv_start_async() local
3711 ncq = ((cmd == SATAC_WRITE_FPDMA_QUEUED) || in nv_start_async()
3714 if (ncq == B_FALSE) { in nv_start_async()
4190 uint8_t cmd, ncq = B_FALSE; in nv_program_taskfile_regs() local
4200 ncq = B_TRUE; in nv_program_taskfile_regs()
4239 ASSERT(ncq != B_TRUE); in nv_program_taskfile_regs()
[all …]
/illumos-gate/usr/src/uts/common/sys/scsi/adapters/pmcs/
H A Dpmcs.h92 ncq : 1, /* SATA specific */ member
/illumos-gate/usr/src/uts/common/io/nvme/
H A Dnvme.c1536 nvme_create_cq_array(nvme_t *nvme, uint_t ncq, uint32_t nentry, uint_t nthr) in nvme_create_cq_array() argument
1541 ASSERT3U(ncq, >, nvme->n_cq_count); in nvme_create_cq_array()
1546 nvme->n_cq = kmem_zalloc(sizeof (*nvme->n_cq) * ncq, KM_SLEEP); in nvme_create_cq_array()
1547 nvme->n_cq_count = ncq; in nvme_create_cq_array()
/illumos-gate/usr/src/cmd/mdb/common/modules/pmcs/
H A Dpmcs.c827 if (xs.ncq) { in display_targets()