Home | History | Annotate | Download | only in ic

Lines Matching defs:identify

143 #define NVME_TIMO_IDENT		10	/* probe identify timeout */
420 aprint_error_dev(sc->sc_dev, "unable to identify controller\n");
510 /* identify to check for availability */
513 aprint_error_dev(self, "couldn't identify namespace #%d\n", i);
523 * NVME1.0e 6.11 Identify command
701 struct nvm_identify_namespace *identify;
718 mem = nvme_dmamem_alloc(sc, sizeof(*identify));
746 identify = kmem_zalloc(sizeof(*identify), KM_SLEEP);
747 *identify = *((volatile struct nvm_identify_namespace *)NVME_DMA_KVA(mem));
750 nvme_identify_namespace_swapbytes(identify);
752 ns->ident = identify;
1161 struct nvm_identify_namespace *identify;
1166 identify = ns->ident;
1168 if (identify != NULL)
1169 kmem_free(identify, sizeof(*identify));
1578 struct nvm_identify_controller *identify;
1587 mem = nvme_dmamem_alloc(sc, sizeof(*identify));
1604 identify = NVME_DMA_KVA(mem);
1605 sc->sc_identify = *identify;
1606 identify = NULL;