diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 266c73e8..169f920e 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -1898,8 +1898,9 @@ sub print_drivedevice_full { $path = PVE::Storage::path($storecfg, $drive->{file}); } - if($path =~ m/^iscsi\:\/\// && - !qemu_machine_feature_enabled($machine_type, undef, 4, 1)) { + # for compatibility only, we prefer scsi-hd (#2408, #2355, #2380) + if ($path =~ m/^iscsi\:\/\// && + !qemu_machine_feature_enabled($machine_type, undef, 4, 1)) { $devicetype = 'generic'; } }