Lines Matching full:nvme
3 * NVMe over Fabrics common host code.
13 #include "nvme.h"
125 * @ctrl: Host NVMe controller instance which we got the address
151 * nvmf_reg_read32() - NVMe Fabrics "Property Get" API function.
152 * @ctrl: Host NVMe controller instance maintaining the admin
154 * the allocated NVMe controller resource on the target system.
156 * register (see the fabrics section of the NVMe standard).
161 * from an NVMe controller on the target system.
164 * NVMe fabrics space.)
168 * > 0: NVMe error status code
196 * nvmf_reg_read64() - NVMe Fabrics "Property Get" API function.
197 * @ctrl: Host NVMe controller instance maintaining the admin
201 * register (see the fabrics section of the NVMe standard).
206 * from an NVMe controller on the target system.
209 * NVMe fabrics space.)
213 * > 0: NVMe error status code
241 * nvmf_reg_write32() - NVMe Fabrics "Property Write" API function.
242 * @ctrl: Host NVMe controller instance maintaining the admin
244 * the allocated NVMe controller resource on the target system.
246 * register (see the fabrics section of the NVMe standard).
250 * Used by the NVMe host system to write a 32-bit capsule property value
251 * to an NVMe controller on the target system.
254 * NVMe fabrics space.)
258 * > 0: NVMe error status code
288 * @offset: For use with the NVMe error code
418 * nvmf_connect_admin_queue() - NVMe Fabrics Admin Queue "Connect"
420 * @ctrl: Host nvme controller instance used to request
421 * a new NVMe controller allocation on the target
422 * system and establish an NVMe Admin connection to
425 * This function enables an NVMe host device to request a new allocation of
426 * an NVMe controller resource on a target system as well establish a
427 * fabrics-protocol connection of the NVMe Admin queue between the
428 * host system device and the allocated NVMe controller on the
429 * target system via a NVMe Fabrics "Connect" command.
433 * > 0: NVMe error status code
493 * nvmf_connect_io_queue() - NVMe Fabrics I/O Queue "Connect"
495 * @ctrl: Host nvme controller instance used to establish an
496 * NVMe I/O queue connection to the already allocated NVMe
498 * @qid: NVMe I/O queue number for the new I/O connection between
500 * the Admin queue, per NVMe standard).
503 * of a NVMe I/O queue (via NVMe Fabrics "Connect" command)
504 * between the host system device and the allocated NVMe controller
509 * > 0: NVMe error status code
572 * nvmf_register_transport() - NVMe Fabrics Library registration function.
577 * being implemented to the common NVMe fabrics library. Part of
594 * nvmf_unregister_transport() - NVMe Fabrics Library unregistration function.
599 * fabric being implemented from the common NVMe fabrics library.
1198 request_module("nvme-%s", opts->transport); in nvmf_create_ctrl()
1360 .name = "nvme-fabrics",
1372 nvmf_class = class_create("nvme-fabrics"); in nvmf_init()
1374 pr_err("couldn't register class nvme-fabrics\n"); in nvmf_init()
1382 pr_err("couldn't create nvme-fabrics device!\n"); in nvmf_init()