mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 21:55:25 +00:00
Use the correct symbol for 'onCrash'
Although defined the same way, fortunately there hadn't been any deviation. Ensure any assignments to onCrash use VIR_DOMAIN_LIFECYCLE_CRASH_* defs and not VIR_DOMAIN_LIFECYCLE_* defs
This commit is contained in:
parent
a77056bdb5
commit
5cd985221b
@ -1013,7 +1013,7 @@ lxcParseConfigString(const char *config)
|
||||
virDomainDefSetMemoryInitial(vmdef, 64 * 1024);
|
||||
|
||||
vmdef->onReboot = VIR_DOMAIN_LIFECYCLE_RESTART;
|
||||
vmdef->onCrash = VIR_DOMAIN_LIFECYCLE_DESTROY;
|
||||
vmdef->onCrash = VIR_DOMAIN_LIFECYCLE_CRASH_DESTROY;
|
||||
vmdef->onPoweroff = VIR_DOMAIN_LIFECYCLE_DESTROY;
|
||||
vmdef->virtType = VIR_DOMAIN_VIRT_LXC;
|
||||
|
||||
|
@ -9381,7 +9381,7 @@ qemuBuildCommandLine(virConnectPtr conn,
|
||||
/* Only add -no-reboot option if each event destroys domain */
|
||||
if (def->onReboot == VIR_DOMAIN_LIFECYCLE_DESTROY &&
|
||||
def->onPoweroff == VIR_DOMAIN_LIFECYCLE_DESTROY &&
|
||||
def->onCrash == VIR_DOMAIN_LIFECYCLE_DESTROY) {
|
||||
def->onCrash == VIR_DOMAIN_LIFECYCLE_CRASH_DESTROY) {
|
||||
allowReboot = false;
|
||||
virCommandAddArg(cmd, "-no-reboot");
|
||||
}
|
||||
@ -12603,7 +12603,7 @@ qemuParseCommandLine(virCapsPtr qemuCaps,
|
||||
def->clock.offset = VIR_DOMAIN_CLOCK_OFFSET_UTC;
|
||||
|
||||
def->onReboot = VIR_DOMAIN_LIFECYCLE_RESTART;
|
||||
def->onCrash = VIR_DOMAIN_LIFECYCLE_DESTROY;
|
||||
def->onCrash = VIR_DOMAIN_LIFECYCLE_CRASH_DESTROY;
|
||||
def->onPoweroff = VIR_DOMAIN_LIFECYCLE_DESTROY;
|
||||
def->virtType = VIR_DOMAIN_VIRT_QEMU;
|
||||
if (VIR_STRDUP(def->emulator, progargv[0]) < 0)
|
||||
|
@ -1519,7 +1519,7 @@ virVMXParseConfig(virVMXContext *ctx,
|
||||
/* def:lifecycle */
|
||||
def->onReboot = VIR_DOMAIN_LIFECYCLE_RESTART;
|
||||
def->onPoweroff = VIR_DOMAIN_LIFECYCLE_DESTROY;
|
||||
def->onCrash = VIR_DOMAIN_LIFECYCLE_DESTROY;
|
||||
def->onCrash = VIR_DOMAIN_LIFECYCLE_CRASH_DESTROY;
|
||||
|
||||
/* def:os */
|
||||
def->os.type = VIR_DOMAIN_OSTYPE_HVM;
|
||||
|
@ -1208,7 +1208,7 @@ xenParseSxpr(const struct sexpr *root,
|
||||
goto error;
|
||||
}
|
||||
} else {
|
||||
def->onCrash = VIR_DOMAIN_LIFECYCLE_DESTROY;
|
||||
def->onCrash = VIR_DOMAIN_LIFECYCLE_CRASH_DESTROY;
|
||||
}
|
||||
|
||||
if (hvm) {
|
||||
|
Loading…
Reference in New Issue
Block a user