From b086838090e32e05a60b21c2cabca8098c1562c4 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Mon, 7 Dec 2009 21:37:03 +0100 Subject: [PATCH] QError: New QERR_DEVICE_LOCKED 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 03e3b34c7d..37e8072464 100644 --- a/qerror.c +++ b/qerror.c @@ -48,6 +48,10 @@ static const QErrorStringTable qerror_table[] = { .error_fmt = QERR_DEVICE_ENCRYPTED, .desc = "The %(device) is encrypted", }, + { + .error_fmt = QERR_DEVICE_LOCKED, + .desc = "Device %(device) is locked", + }, { .error_fmt = QERR_DEVICE_NOT_ACTIVE, .desc = "The %(device) device has not been activated by the guest", diff --git a/qerror.h b/qerror.h index 062c0c4093..be6cd6897a 100644 --- a/qerror.h +++ b/qerror.h @@ -44,6 +44,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_DEVICE_ENCRYPTED \ "{ 'class': 'DeviceEncrypted', 'data': { 'device': %s } }" +#define QERR_DEVICE_LOCKED \ + "{ 'class': 'DeviceLocked', 'data': { 'device': %s } }" + #define QERR_DEVICE_NOT_ACTIVE \ "{ 'class': 'DeviceNotActive', 'data': { 'device': %s } }"