mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
machine, hostmem: improve error messages for unsupported features
Detect early unsupported MADV_MERGEABLE and MADV_DONTDUMP, and print a clearer error message that points to the deficiency of the host. Cc: Michal Privoznik <mprivozn@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
5d9a9a6170
commit
a2b6a96505
2 changed files with 24 additions and 0 deletions
|
@ -428,6 +428,10 @@ static void machine_set_dump_guest_core(Object *obj, bool value, Error **errp)
|
|||
{
|
||||
MachineState *ms = MACHINE(obj);
|
||||
|
||||
if (!value && QEMU_MADV_DONTDUMP == QEMU_MADV_INVALID) {
|
||||
error_setg(errp, "Dumping guest memory cannot be disabled on this host");
|
||||
return;
|
||||
}
|
||||
ms->dump_guest_core = value;
|
||||
}
|
||||
|
||||
|
@ -442,6 +446,10 @@ static void machine_set_mem_merge(Object *obj, bool value, Error **errp)
|
|||
{
|
||||
MachineState *ms = MACHINE(obj);
|
||||
|
||||
if (value && QEMU_MADV_MERGEABLE == QEMU_MADV_INVALID) {
|
||||
error_setg(errp, "Memory merging is not supported on this host");
|
||||
return;
|
||||
}
|
||||
ms->mem_merge = value;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue