Changeset View
Changeset View
Standalone View
Standalone View
sys/dev/nvme/nvme_private.h
| Show First 20 Lines • Show All 297 Lines • ▼ Show 20 Lines | #define QUIRK_AHCI 8 /* Attached via AHCI redirect */ | ||||
| void *cons_cookie[NVME_MAX_CONSUMERS]; | void *cons_cookie[NVME_MAX_CONSUMERS]; | ||||
| uint32_t is_resetting; | uint32_t is_resetting; | ||||
| uint32_t is_initialized; | uint32_t is_initialized; | ||||
| uint32_t notification_sent; | uint32_t notification_sent; | ||||
| bool is_failed; | bool is_failed; | ||||
| bool is_dying; | bool is_dying; | ||||
| bool isr_warned; | |||||
| STAILQ_HEAD(, nvme_request) fail_req; | STAILQ_HEAD(, nvme_request) fail_req; | ||||
| /* Host Memory Buffer */ | /* Host Memory Buffer */ | ||||
| int hmb_nchunks; | int hmb_nchunks; | ||||
| size_t hmb_chunk; | size_t hmb_chunk; | ||||
| bus_dma_tag_t hmb_tag; | bus_dma_tag_t hmb_tag; | ||||
| struct nvme_hmb_chunk { | struct nvme_hmb_chunk { | ||||
| bus_dmamap_t hmbc_map; | bus_dmamap_t hmbc_map; | ||||
| ▲ Show 20 Lines • Show All 254 Lines • Show Last 20 Lines | |||||