From 0df37c411ccf9f830f38f3f6405fac9320a70bac Mon Sep 17 00:00:00 2001 From: Luiz Capitulino Date: Mon, 7 Dec 2009 21:36:59 +0100 Subject: [PATCH] QError: new class for device encrypted errors Signed-off-by: Luiz Capitulino Signed-off-by: Markus Armbruster Signed-off-by: Anthony Liguori --- qerror.c | 4 ++++ qerror.h | 3 +++ 2 files changed, 7 insertions(+) diff --git a/qerror.c b/qerror.c index eb4ce33312..d90529cd49 100644 --- a/qerror.c +++ b/qerror.c @@ -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", }, diff --git a/qerror.h b/qerror.h index 5198adf14c..c9fcf973f3 100644 --- a/qerror.h +++ b/qerror.h @@ -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 } }" -- 2.11.0