|
#define | SPDK_NVMF_MAX_SGL_ENTRIES 16 |
|
#define | NVMF_REQ_MAX_BUFFERS (SPDK_NVMF_MAX_SGL_ENTRIES * 2 + 1) |
|
#define | SPDK_NVMF_MIGR_MAX_PENDING_AERS 256 |
|
#define | SPDK_NVMF_MAX_ASYNC_EVENTS 4 |
|
#define | NVMF_DATA_BUFFER_ALIGNMENT VALUE_4KB |
|
#define | NVMF_DATA_BUFFER_MASK (NVMF_DATA_BUFFER_ALIGNMENT - 1LL) |
|
#define | SPDK_NVMF_DEFAULT_ACCEPT_POLL_RATE_US 10000 |
|
#define | MAX_MEMPOOL_NAME_LENGTH 40 |
|
#define | SPDK_NVMF_TRANSPORT_REGISTER(name, transport_ops) |
|
|
| SPDK_STATIC_ASSERT (sizeof(union nvmf_h2c_msg)==64, "Incorrect size") |
|
| SPDK_STATIC_ASSERT (sizeof(union nvmf_c2h_msg)==16, "Incorrect size") |
|
| SPDK_STATIC_ASSERT (sizeof(struct spdk_nvmf_request)==808, "Incorrect size") |
|
static int32_t | spdk_nvmf_qpair_get_numa_id (struct spdk_nvmf_qpair *qpair) |
|
void | spdk_nvmf_transport_register (const struct spdk_nvmf_transport_ops *ops) |
| Register the operations for a given transport type.
|
|
int | spdk_nvmf_ctrlr_connect (struct spdk_nvmf_request *req) |
|
void | spdk_nvmf_tgt_new_qpair (struct spdk_nvmf_tgt *tgt, struct spdk_nvmf_qpair *qpair) |
| Function to be called for each newly discovered qpair.
|
|
static bool | spdk_nvmf_qpair_is_active (struct spdk_nvmf_qpair *qpair) |
|
| SPDK_STATIC_ASSERT (sizeof(struct spdk_nvmf_registers)==40, "Incorrect size") |
|
const struct spdk_nvmf_registers * | spdk_nvmf_ctrlr_get_regs (struct spdk_nvmf_ctrlr *ctrlr) |
|
void | spdk_nvmf_request_free_buffers (struct spdk_nvmf_request *req, struct spdk_nvmf_transport_poll_group *group, struct spdk_nvmf_transport *transport) |
|
int | spdk_nvmf_request_get_buffers (struct spdk_nvmf_request *req, struct spdk_nvmf_transport_poll_group *group, struct spdk_nvmf_transport *transport, uint32_t length) |
|
bool | spdk_nvmf_request_get_dif_ctx (struct spdk_nvmf_request *req, struct spdk_dif_ctx *dif_ctx) |
|
void | spdk_nvmf_request_exec (struct spdk_nvmf_request *req) |
|
void | spdk_nvmf_request_exec_fabrics (struct spdk_nvmf_request *req) |
|
int | spdk_nvmf_request_free (struct spdk_nvmf_request *req) |
|
int | spdk_nvmf_request_complete (struct spdk_nvmf_request *req) |
|
void | spdk_nvmf_request_zcopy_start (struct spdk_nvmf_request *req) |
|
void | spdk_nvmf_request_zcopy_end (struct spdk_nvmf_request *req, bool commit) |
|
static bool | spdk_nvmf_request_using_zcopy (const struct spdk_nvmf_request *req) |
|
void | spdk_nvmf_poll_group_remove (struct spdk_nvmf_qpair *qpair) |
| Remove the given qpair from the poll group.
|
|
struct spdk_nvmf_subsystem * | spdk_nvmf_ctrlr_get_subsystem (struct spdk_nvmf_ctrlr *ctrlr) |
| Get the NVMe-oF subsystem associated with this controller.
|
|
uint16_t | spdk_nvmf_ctrlr_get_id (struct spdk_nvmf_ctrlr *ctrlr) |
| Get the NVMe-oF controller ID.
|
|
| SPDK_STATIC_ASSERT (sizeof(struct spdk_nvmf_ctrlr_feat)==40, "Incorrect size") |
|
| SPDK_STATIC_ASSERT (offsetof(struct spdk_nvmf_ctrlr_migr_data, regs) - offsetof(struct spdk_nvmf_ctrlr_migr_data, data_size)==16, "Incorrect header size") |
|
| SPDK_STATIC_ASSERT (offsetof(struct spdk_nvmf_ctrlr_migr_data, feat) - offsetof(struct spdk_nvmf_ctrlr_migr_data, regs)==256, "Incorrect regs size") |
|
| SPDK_STATIC_ASSERT (offsetof(struct spdk_nvmf_ctrlr_migr_data, cntlid) - offsetof(struct spdk_nvmf_ctrlr_migr_data, feat)==256, "Incorrect feat size") |
|
| SPDK_STATIC_ASSERT (sizeof(struct spdk_nvmf_ctrlr_migr_data)==4096, "Incorrect size") |
|
int | spdk_nvmf_ctrlr_save_migr_data (struct spdk_nvmf_ctrlr *ctrlr, struct spdk_nvmf_ctrlr_migr_data *data) |
| Save the NVMe-oF controller state and configuration.
|
|
int | spdk_nvmf_ctrlr_restore_migr_data (struct spdk_nvmf_ctrlr *ctrlr, const struct spdk_nvmf_ctrlr_migr_data *data) |
| Restore the NVMe-oF controller state and configuration.
|
|
static enum spdk_nvme_data_transfer | spdk_nvmf_req_get_xfer (struct spdk_nvmf_request *req) |
|
int | spdk_nvmf_ctrlr_async_event_error_event (struct spdk_nvmf_ctrlr *ctrlr, enum spdk_nvme_async_event_info_error info) |
| Complete Asynchronous Event as Error.
|
|
void | spdk_nvmf_ctrlr_abort_aer (struct spdk_nvmf_ctrlr *ctrlr) |
| Abort outstanding Asynchronous Event Requests (AERs).
|
|
NVMe-oF Target transport plugin API.