Lines Matching full:nvme

3  * NVMe over Fabrics common host code.
13 #include "nvme.h"
99 * @ctrl: Host NVMe controller instance which we got the address
125 * nvmf_reg_read32() - NVMe Fabrics "Property Get" API function.
126 * @ctrl: Host NVMe controller instance maintaining the admin
128 * the allocated NVMe controller resource on the target system.
130 * register (see the fabrics section of the NVMe standard).
135 * from an NVMe controller on the target system.
138 * NVMe fabrics space.)
142 * > 0: NVMe error status code
170 * nvmf_reg_read64() - NVMe Fabrics "Property Get" API function.
171 * @ctrl: Host NVMe controller instance maintaining the admin
175 * register (see the fabrics section of the NVMe standard).
180 * from an NVMe controller on the target system.
183 * NVMe fabrics space.)
187 * > 0: NVMe error status code
215 * nvmf_reg_write32() - NVMe Fabrics "Property Write" API function.
216 * @ctrl: Host NVMe controller instance maintaining the admin
218 * the allocated NVMe controller resource on the target system.
220 * register (see the fabrics section of the NVMe standard).
224 * Used by the NVMe host system to write a 32-bit capsule property value
225 * to an NVMe controller on the target system.
228 * NVMe fabrics space.)
232 * > 0: NVMe error status code
262 * @offset: For use with the NVMe error code
353 * nvmf_connect_admin_queue() - NVMe Fabrics Admin Queue "Connect"
355 * @ctrl: Host nvme controller instance used to request
356 * a new NVMe controller allocation on the target
357 * system and establish an NVMe Admin connection to
360 * This function enables an NVMe host device to request a new allocation of
361 * an NVMe controller resource on a target system as well establish a
362 * fabrics-protocol connection of the NVMe Admin queue between the
363 * host system device and the allocated NVMe controller on the
364 * target system via a NVMe Fabrics "Connect" command.
368 * > 0: NVMe error status code
437 * nvmf_connect_io_queue() - NVMe Fabrics I/O Queue "Connect"
439 * @ctrl: Host nvme controller instance used to establish an
440 * NVMe I/O queue connection to the already allocated NVMe
442 * @qid: NVMe I/O queue number for the new I/O connection between
444 * the Admin queue, per NVMe standard).
447 * of a NVMe I/O queue (via NVMe Fabrics "Connect" command)
448 * between the host system device and the allocated NVMe controller
453 * > 0: NVMe error status code
519 * nvmf_register_transport() - NVMe Fabrics Library registration function.
524 * being implemented to the common NVMe fabrics library. Part of
541 * nvmf_unregister_transport() - NVMe Fabrics Library unregistration function.
546 * fabric being implemented from the common NVMe fabrics library.
1068 request_module("nvme-%s", opts->transport); in nvmf_create_ctrl()
1230 .name = "nvme-fabrics",
1242 nvmf_class = class_create(THIS_MODULE, "nvme-fabrics"); in nvmf_init()
1244 pr_err("couldn't register class nvme-fabrics\n"); in nvmf_init()
1252 pr_err("couldn't create nvme-fabrics device!\n"); in nvmf_init()