[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 22/35] qapi-schema: add ErrorClass enum
From: |
Luiz Capitulino |
Subject: |
[Qemu-devel] [PATCH 22/35] qapi-schema: add ErrorClass enum |
Date: |
Tue, 7 Aug 2012 12:53:33 -0300 |
Signed-off-by: Luiz Capitulino <address@hidden>
---
qapi-schema.json | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/qapi-schema.json b/qapi-schema.json
index 5805f74..8f670f3 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -3,6 +3,36 @@
# QAPI Schema
##
+# @ErrorClass
+#
+# QEMU error classes
+#
+# @GenericError: this is used for errors that don't require a specific error
+# class. This should be the default case for most errors
+#
+# @CommandNotFound: the requested command has not been found
+#
+# @DeviceEncrypted: the requested operation can't be fulfilled because the
+# selected device is encrypted
+#
+# @DeviceNotActive: a device has failed to be become active
+#
+# @DeviceNotFound: the requested device has not been found
+#
+# @KVMMissingCap: the requested operation can't be fulfilled because a
+# required KVM capability is missing
+#
+# @MigrationExpected: the requested operation can't be fulfilled because a
+# migration process is expected
+#
+# Since: 1.2
+##
+{ 'enum': 'ErrorClass',
+ 'data': [ 'GenericError', 'CommandNotFound', 'DeviceEncrypted',
+ 'DeviceNotActive', 'DeviceNotFound', 'KVMMissingCap',
+ 'MigrationExpected' ] }
+
+##
# @NameInfo:
#
# Guest name information.
--
1.7.11.2.249.g31c7954.dirty
- [Qemu-devel] [PATCH 25/35] qerror: add proper ErrorClass value for QERR_ macros, (continued)
- [Qemu-devel] [PATCH 25/35] qerror: add proper ErrorClass value for QERR_ macros, Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 28/35] error: drop unused functions, Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 29/35] qmp: switch to the new error format on the wire, Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 06/35] qerror: avoid passing qerr pointer, Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 04/35] qerror: reduce public exposure, Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 14/35] net: inet_connect(), inet_connect_opts(): add in_progress argument, Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 32/35] error, qerror: pass desc string to error calls, Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 26/35] error: add error_get_class(), Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 22/35] qapi-schema: add ErrorClass enum,
Luiz Capitulino <=
- [Qemu-devel] [PATCH 19/35] qapi: qapi-types.h: don't include qapi/qapi-types-core.h, Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 01/35] monitor: drop unused monitor debug code, Luiz Capitulino, 2012/08/07
- [Qemu-devel] [PATCH 15/35] migration: don't rely on any QERR_SOCKET_*, Luiz Capitulino, 2012/08/07
- Re: [Qemu-devel] [PATCH 15/35] migration: don't rely on any QERR_SOCKET_*, Markus Armbruster, 2012/08/10
- Re: [Qemu-devel] [PATCH 15/35] migration: don't rely on any QERR_SOCKET_*, Luiz Capitulino, 2012/08/10
- Re: [Qemu-devel] [PATCH 15/35] migration: don't rely on any QERR_SOCKET_*, Juan Quintela, 2012/08/14
- Re: [Qemu-devel] [PATCH 15/35] migration: don't rely on any QERR_SOCKET_*, Markus Armbruster, 2012/08/14
- Re: [Qemu-devel] [PATCH 15/35] migration: don't rely on any QERR_SOCKET_*, Luiz Capitulino, 2012/08/14
- Re: [Qemu-devel] [PATCH 15/35] migration: don't rely on any QERR_SOCKET_*, Juan Quintela, 2012/08/14
[Qemu-devel] [PATCH 30/35] qemu-ga: switch to the new error format on the wire, Luiz Capitulino, 2012/08/07