These properties cannot be specified via '-blockdev' like they could with '-drive', because they are properties of the front-end drive device.
Signed-off-by: Fiona Ebner <f.eb...@proxmox.com> --- PVE/QemuServer.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index f9e1b3f9..90d07cee 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -1412,6 +1412,9 @@ sub print_drivedevice_full { } $device .= ",write-cache=$write_cache"; } + for my $o (qw(rerror werror)) { + $device .= ",$o=$drive->{$o}" if defined($drive->{$o}); + } } return $device; -- 2.39.5 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel