mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
vz: fix disk enumeration
If we want to delete all disks for container or vm we should make a loop from 0 to NumberOfDisks and always use zero index in PrlVmCfg_GetHardDisk to get disk handle. When we delete first disk after that numbers of other disks will be changed, start from 0 to NumberOfDisks-1. That's why we should always use zero index.
This commit is contained in:
parent
4d28d0931f
commit
cdbbb93a96
@ -3810,7 +3810,7 @@ prlsdkDetachDomainHardDisks(PRL_HANDLE sdkdom)
|
||||
prlsdkCheckRetGoto(pret, cleanup);
|
||||
|
||||
for (i = 0; i < hddCount; ++i) {
|
||||
pret = PrlVmCfg_GetHardDisk(sdkdom, i, &sdkdisk);
|
||||
pret = PrlVmCfg_GetHardDisk(sdkdom, 0, &sdkdisk);
|
||||
prlsdkCheckRetGoto(pret, cleanup);
|
||||
|
||||
pret = PrlVmDev_Remove(sdkdisk);
|
||||
|
Loading…
x
Reference in New Issue
Block a user