aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2009-12-07 21:37:03 +0100
committerAnthony Liguori <aliguori@us.ibm.com>2009-12-07 16:34:33 -0600
commitb086838090e32e05a60b21c2cabca8098c1562c4 (patch)
tree57fb2e2825bdf0e68a364a9c2fc35cc9acf4bcbf
parente16a18122212e86b87a0ca1dd79269918c7dc667 (diff)
QError: New QERR_DEVICE_LOCKED
Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r--qerror.c4
-rw-r--r--qerror.h3
2 files changed, 7 insertions, 0 deletions
diff --git a/qerror.c b/qerror.c
index 03e3b34c7d..37e8072464 100644
--- a/qerror.c
+++ b/qerror.c
@@ -49,6 +49,10 @@ static const QErrorStringTable qerror_table[] = {
.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 } }"