Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/bhyve/
H A Dpci_nvme.c500 if (ncq > NVME_QUEUES) { in pci_nvme_init_queues()
502 __func__, ncq, NVME_QUEUES); in pci_nvme_init_queues()
503 ncq = NVME_QUEUES; in pci_nvme_init_queues()
506 sc->num_cqueues = ncq; in pci_nvme_init_queues()
1351 struct nvme_completion_queue *ncq; in nvme_opc_create_io_cq() local
1374 ncq = &sc->compl_queues[qid]; in nvme_opc_create_io_cq()
1376 ncq->intr_vec = (command->cdw11 >> 16) & 0xffff; in nvme_opc_create_io_cq()
1377 if (ncq->intr_vec > (sc->max_queues + 1)) { in nvme_opc_create_io_cq()
1385 if ((ncq->size < 2) || (ncq->size > sc->max_qentries)) { in nvme_opc_create_io_cq()
1396 ncq->head = ncq->tail = 0; in nvme_opc_create_io_cq()
[all …]
H A Dpci_ahci.c675 ncq = 0; in ahci_handle_rw()
696 ncq = 1; in ahci_handle_rw()
738 if (ncq && first) in ahci_handle_rw()
819 int err, first, ncq; in ahci_handle_dsm_trim() local
826 ncq = 0; in ahci_handle_dsm_trim()
830 ncq = 1; in ahci_handle_dsm_trim()
846 if (ncq) { in ahci_handle_dsm_trim()
890 if (ncq && first) in ahci_handle_dsm_trim()
1903 ncq = dsm = 0; in ata_ioreq_cb()
1914 ncq = 1; in ata_ioreq_cb()
[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.c2063 ncq = NVSLOT_NCQ; in nv_start_common()
2188 if (ncq == NVSLOT_NCQ) { in nv_start_common()
3705 uint8_t cmd, ncq; in nv_start_async() local
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()
4259 if (ncq == B_TRUE) { in nv_program_taskfile_regs()
4408 uint8_t ncq = B_FALSE; in nv_start_dma() local
4441 ncq = B_TRUE; in nv_start_dma()
[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.c1391 nvme_create_cq_array(nvme_t *nvme, uint_t ncq, uint32_t nentry, uint_t nthr) in nvme_create_cq_array() argument
1396 ASSERT3U(ncq, >, nvme->n_cq_count); in nvme_create_cq_array()
1401 nvme->n_cq = kmem_zalloc(sizeof (*nvme->n_cq) * ncq, KM_SLEEP); in nvme_create_cq_array()
1402 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()