]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/doc/nvme/hotplug.md
bump version to 12.2.12-pve1
[ceph.git] / ceph / src / spdk / doc / nvme / hotplug.md
CommitLineData
7c673cae
FG
1# NVMe Hotplug {#nvme_hotplug}
2
3At the NVMe driver level, we provide the following support for Hotplug:
4
51. Hotplug events detection:
6The user of the NVMe library can call spdk_nvme_probe() periodically to detect
7hotplug events. The probe_cb, followed by the attach_cb, will be called for each
8new device detected. The user may optionally also provide a remove_cb that will be
9called if a previously attached NVMe device is no longer present on the system.
10All subsequent I/O to the removed device will return an error.
11
122. Hot remove NVMe with IO loads:
13When a device is hot removed while I/O is occurring, all access to the PCI BAR will
14result in a SIGBUS error. The NVMe driver automatically handles this case by installing
15a SIGBUS handler and remapping the PCI BAR to a new, placeholder memory location.
16This means I/O in flight during a hot remove will complete with an appropriate error
17code and will not crash the application.
18
19@sa spdk_nvme_probe