mirror of https://github.com/xemu-project/xemu.git
blockdev: Use error_report() in hmp_commit()
Instead of using monitor_printf() to report errors, hmp_commit() should use error_report() like other places do. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
This commit is contained in:
parent
d926f4ddd2
commit
46741111ba
|
@ -1088,11 +1088,11 @@ void hmp_commit(Monitor *mon, const QDict *qdict)
|
||||||
|
|
||||||
blk = blk_by_name(device);
|
blk = blk_by_name(device);
|
||||||
if (!blk) {
|
if (!blk) {
|
||||||
monitor_printf(mon, "Device '%s' not found\n", device);
|
error_report("Device '%s' not found", device);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!blk_is_available(blk)) {
|
if (!blk_is_available(blk)) {
|
||||||
monitor_printf(mon, "Device '%s' has no medium\n", device);
|
error_report("Device '%s' has no medium", device);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1105,8 +1105,7 @@ void hmp_commit(Monitor *mon, const QDict *qdict)
|
||||||
aio_context_release(aio_context);
|
aio_context_release(aio_context);
|
||||||
}
|
}
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
monitor_printf(mon, "'commit' error for '%s': %s\n", device,
|
error_report("'commit' error for '%s': %s", device, strerror(-ret));
|
||||||
strerror(-ret));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue