From 927d66381948659b0acbb1b3f23de5a5008d48a4 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Tue, 18 Apr 2017 18:12:35 +0200 Subject: migration: Pass Error ** argument to {save,load}_vmstate This way we use the "normal" way of printing errors for hmp commands. Signed-off-by: Juan Quintela Suggested-by: Paolo Bonzini Reviewed-by: Peter Xu Reviewed-by: Laurent Vivier --- hmp.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'hmp.c') diff --git a/hmp.c b/hmp.c index 524e5890de..b9dd933e19 100644 --- a/hmp.c +++ b/hmp.c @@ -1274,17 +1274,22 @@ void hmp_loadvm(Monitor *mon, const QDict *qdict) { int saved_vm_running = runstate_is_running(); const char *name = qdict_get_str(qdict, "name"); + Error *err = NULL; vm_stop(RUN_STATE_RESTORE_VM); - if (load_vmstate(name) == 0 && saved_vm_running) { + if (load_vmstate(name, &err) == 0 && saved_vm_running) { vm_start(); } + hmp_handle_error(mon, &err); } void hmp_savevm(Monitor *mon, const QDict *qdict) { - save_vmstate(qdict_get_try_str(qdict, "name")); + Error *err = NULL; + + save_vmstate(qdict_get_try_str(qdict, "name"), &err); + hmp_handle_error(mon, &err); } void hmp_delvm(Monitor *mon, const QDict *qdict) -- cgit v1.2.3