We should not be too strict regarding device indices check because it is not really necessary and in fact it breaks some common scenarios when CD-ROMs are added as the only deivce on IDE bus with /dev/hdd device name, which corresponds to ide0-1-1 device indices, rather than ide0-0-0(hda). Signed-off-by: Maxim Nestratov <mnestratov@xxxxxxxxxxxxx> --- src/vz/vz_utils.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/vz/vz_utils.c b/src/vz/vz_utils.c index 312355d..c707309 100644 --- a/src/vz/vz_utils.c +++ b/src/vz/vz_utils.c @@ -279,14 +279,6 @@ vzCheckDiskAddressDriveUnsupportedParams(virDomainDiskDefPtr disk) return -1; } - if (busIdx != drive->bus || devIdx != drive->unit) { - virReportError(VIR_ERR_CONFIG_UNSUPPORTED, - _("Invalid drive address of disk %s, vz driver " - "does not support non default name mappings."), - disk->dst); - return -1; - } - return 0; } -- 1.8.3.1 -- libvir-list mailing list libvir-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/libvir-list