[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 00/35]: add new error format
From: |
Luiz Capitulino |
Subject: |
[Qemu-devel] [PATCH v2 00/35]: add new error format |
Date: |
Tue, 7 Aug 2012 12:53:11 -0300 |
v2
o rebase on top of master
o fix linux-user build breakage
o maintain DeviceEncrypted error and let hmp_change() use it
o drop patch that changed inet_connect() and inet_connect_opts()
to return -errno
o Simplified tcp_start_outgoing_migration() error handling
o use g_strdup_vprintf() (instead of vsnprintf() plus g_strdup())
o drop errors from command's documentation in qapi-schema.json
o update docs/writing-qmp-commands.txt
This series implements the 'Plan for error handling in QMP' as described
by Anthony in this email:
http://lists.gnu.org/archive/html/qemu-devel/2012-07/msg03764.html
Basically, this replaces almost all error classes by GenericError (the
exception are a few error classes used by libvirt) and drops the error
data memeber. This also adds a free form string to error_set().
On the wire, we go from:
{ "error": { "class": "DeviceNotRemovable",
"data": { "device": "virtio0" },
"desc": "Device 'virtio0' is not removable" } }
to:
{ "error": { "class": "GenericError",
"desc": "Device 'virtio0' is not removable" } }
Internally, we go from:
void error_set(Error **err, const char *fmt, ...);
to:
void error_set(Error **err, ErrorClass err_class, const char *fmt, ...);
Makefile.objs | 1 +
QMP/qmp-spec.txt | 10 +-
block.c | 1 +
block_int.h | 1 +
configure | 10 -
docs/writing-qmp-commands.txt | 47 ++--
error.c | 93 +-------
error.h | 34 +--
error_int.h | 29 ---
hmp.c | 75 +++---
hmp.h | 1 +
migration-tcp.c | 22 +-
monitor.c | 83 ++-----
nbd.c | 2 +-
qapi-schema.json | 93 +++-----
qapi/qmp-core.h | 1 +
qapi/qmp-dispatch.c | 11 +-
qemu-char.c | 2 +-
qemu-ga.c | 5 +-
qemu-sockets.c | 14 +-
qemu_socket.h | 4 +-
qerror.c | 516 ++----------------------------------------
qerror.h | 168 ++++++--------
qmp-commands.hx | 4 +-
scripts/qapi-types.py | 17 +-
ui/vnc.c | 2 +-
26 files changed, 272 insertions(+), 974 deletions(-)
- [Qemu-devel] [PATCH v2 00/35]: add new error format,
Luiz Capitulino <=
- [Qemu-devel] [PATCH 05/35] qerror: drop qerror_abort(), Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 07/35] qerror: QError: drop file, linenr, func, Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 12/35] hmp: hmp_cont(): don't rely on QERR_DEVICE_ENCRYPTED, Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 02/35] qerror: QERR_AMBIGUOUS_PATH: drop %(object) from human msg, Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 09/35] qerror: don't delay error message construction, Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 13/35] hmp_change(): don't access DeviceEncrypted's data, Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 20/35] qapi: generate correct enum names for camel case enums, Luiz Capitulino, 2012/08/07