mirror of https://gitee.com/openkylin/libvirt.git
util: Use consistent error preservation and restoration calls
Provide some consistency over error message variable name and usage when saving error messages across possible other errors or possibility of resetting of the last error. Instead of virSaveLastError paired up with virSetError and virFreeError, we should use the newer virErrorPreserveLast and virRestoreError. Signed-off-by: John Ferlan <jferlan@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
7c47becf76
commit
5af7c72c9c
|
@ -1168,13 +1168,12 @@ virCgroupNewMachineSystemd(const char *name,
|
|||
}
|
||||
|
||||
if (virCgroupAddProcess(*group, pidleader) < 0) {
|
||||
virErrorPtr saved = virSaveLastError();
|
||||
virErrorPtr saved;
|
||||
|
||||
virErrorPreserveLast(&saved);
|
||||
virCgroupRemove(*group);
|
||||
virCgroupFree(group);
|
||||
if (saved) {
|
||||
virSetError(saved);
|
||||
virFreeError(saved);
|
||||
}
|
||||
virErrorRestore(&saved);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
@ -1220,13 +1219,12 @@ virCgroupNewMachineManual(const char *name,
|
|||
goto cleanup;
|
||||
|
||||
if (virCgroupAddProcess(*group, pidleader) < 0) {
|
||||
virErrorPtr saved = virSaveLastError();
|
||||
virErrorPtr saved;
|
||||
|
||||
virErrorPreserveLast(&saved);
|
||||
virCgroupRemove(*group);
|
||||
virCgroupFree(group);
|
||||
if (saved) {
|
||||
virSetError(saved);
|
||||
virFreeError(saved);
|
||||
}
|
||||
virErrorRestore(&saved);
|
||||
}
|
||||
|
||||
done:
|
||||
|
|
|
@ -838,7 +838,9 @@ virFirewallApply(virFirewallPtr firewall)
|
|||
if (virFirewallApplyGroup(firewall, i) < 0) {
|
||||
VIR_DEBUG("Rolling back groups up to %zu for %p", i, firewall);
|
||||
size_t first = i;
|
||||
g_autoptr(virError) saved_error = virSaveLastError();
|
||||
virErrorPtr saved_error;
|
||||
|
||||
virErrorPreserveLast(&saved_error);
|
||||
|
||||
/*
|
||||
* Look at any inheritance markers to figure out
|
||||
|
@ -858,7 +860,7 @@ virFirewallApply(virFirewallPtr firewall)
|
|||
virFirewallRollbackGroup(firewall, j);
|
||||
}
|
||||
|
||||
virSetError(saved_error);
|
||||
virErrorRestore(&saved_error);
|
||||
VIR_DEBUG("Done rolling back groups for %p", firewall);
|
||||
goto cleanup;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue