Revert "vz: fixed race in vzDomainAttach/DettachDevice"

This reverts commit 3a6cf6fc16.

Mistakenly this commit was pushed because I thought I missed the
corret one b880ff42ddb while in fact I didn't.

Signed-off-by: Maxim Nestratov <mnestratov@virtuozzo.com>
This commit is contained in:
Maxim Nestratov 2016-11-18 19:16:46 +03:00
parent c2a5a4e7ea
commit 745263589f

View File

@ -3552,12 +3552,6 @@ prlsdkAttachDevice(vzDriverPtr driver,
return -1;
}
if (prlsdkUpdateDomain(driver, dom) < 0) {
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
_("Failed to save new config"));
return -1;
}
job = PrlVm_CommitEx(privdom->sdkdom, PVCF_DETACH_HDD_BUNDLE);
if (PRL_FAILED(waitDomainJob(job, dom)))
return -1;
@ -3623,12 +3617,6 @@ prlsdkDetachDevice(vzDriverPtr driver ATTRIBUTE_UNUSED,
goto cleanup;
}
if (prlsdkUpdateDomain(driver, dom) < 0) {
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
_("Failed to save new config"));
goto cleanup;
}
job = PrlVm_CommitEx(privdom->sdkdom, PVCF_DETACH_HDD_BUNDLE);
if (PRL_FAILED(waitDomainJob(job, dom)))
goto cleanup;