Home
last modified time | relevance | path

Searched refs:NVME_SGL_TYPE (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/hw/nvme/
H A Dctrl.c996 uint8_t type = NVME_SGL_TYPE(segment[i].type); in nvme_map_sgl_data()
1070 trace_pci_nvme_map_sgl(NVME_SGL_TYPE(sgl.type), len); in nvme_map_sgl()
1078 if (NVME_SGL_TYPE(sgl.type) == NVME_SGL_DESCR_TYPE_DATA_BLOCK) { in nvme_map_sgl()
1088 switch (NVME_SGL_TYPE(sgld->type)) { in nvme_map_sgl()
1139 if (NVME_SGL_TYPE(last_sgld->type) == NVME_SGL_DESCR_TYPE_DATA_BLOCK) { in nvme_map_sgl()
1152 if (NVME_SGL_TYPE(sgld->type) == NVME_SGL_DESCR_TYPE_LAST_SEGMENT) { in nvme_map_sgl()
/openbmc/qemu/include/block/
H A Dnvme.h567 #define NVME_SGL_TYPE(type) ((type >> 4) & 0xf) macro