diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2009-12-07 21:36:59 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-07 16:34:32 -0600 |
commit | 59050228e9f31e3833582a8ba060da5ae19f045b (patch) | |
tree | a48dcc60efe8cd4e15a90fbcd876ed01f73ec901 | |
parent | 99aa3a3852d29df130e6957924060f7da3ea2523 (diff) | |
download | qemu-59050228e9f31e3833582a8ba060da5ae19f045b.tar.gz qemu-59050228e9f31e3833582a8ba060da5ae19f045b.tar.bz2 qemu-59050228e9f31e3833582a8ba060da5ae19f045b.zip |
QError: new class for device encrypted errors
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | qerror.c | 4 | ||||
-rw-r--r-- | qerror.h | 3 |
2 files changed, 7 insertions, 0 deletions
@@ -45,6 +45,10 @@ static const QErrorStringTable qerror_table[] = { .desc = "The command %(name) has not been found", }, { + .error_fmt = QERR_DEVICE_ENCRYPTED, + .desc = "The %(device) is encrypted", + }, + { .error_fmt = QERR_DEVICE_NOT_FOUND, .desc = "The %(device) device has not been found", }, @@ -41,6 +41,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_COMMAND_NOT_FOUND \ "{ 'class': 'CommandNotFound', 'data': { 'name': %s } }" +#define QERR_DEVICE_ENCRYPTED \ + "{ 'class': 'DeviceEncrypted', 'data': { 'device': %s } }" + #define QERR_DEVICE_NOT_FOUND \ "{ 'class': 'DeviceNotFound', 'data': { 'device': %s } }" |