diff --git a/src/runtime/virtcontainers/clh.go b/src/runtime/virtcontainers/clh.go index 58324a956..9f2925bee 100644 --- a/src/runtime/virtcontainers/clh.go +++ b/src/runtime/virtcontainers/clh.go @@ -412,6 +412,9 @@ func (clh *cloudHypervisor) hotplugBlockDevice(drive *config.BlockDrive) error { return openAPIClientError(err) } + //Explicitly set PCIAddr to NULL, so that VirtPath can be used + drive.PCIAddr = "" + if drive.Pmem { err = fmt.Errorf("pmem device hotplug not supported") } else {