summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShahar Havivi <shaharh@redhat.com>2010-03-06 00:25:35 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2010-03-17 10:41:05 -0500
commit25b28f01d840c56c1323f2bb941da061a8003176 (patch)
treeae283db51a934e7e8d27437f357c8e520117bbaa
parent4a39943bd1fd2ac7e3163f9d9b056394519661f3 (diff)
downloadqemu-25b28f01d840c56c1323f2bb941da061a8003176.tar.gz
QError: New QERR_DEVICE_NOT_ENCRYPTED
Signed-off-by: Shahar Havivi <shaharh@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 26eb70472e..d0aba61b2a 100644
--- a/qerror.c
+++ b/qerror.c
@@ -65,6 +65,10 @@ static const QErrorStringTable qerror_table[] = {
.desc = "Device '%(device)' could not be initialized",
},
{
+ .error_fmt = QERR_DEVICE_NOT_ENCRYPTED,
+ .desc = "Device '%(device)' is not encrypted",
+ },
+ {
.error_fmt = QERR_DEVICE_LOCKED,
.desc = "Device '%(device)' is locked",
},
diff --git a/qerror.h b/qerror.h
index 88b297a96d..d96abe1d06 100644
--- a/qerror.h
+++ b/qerror.h
@@ -57,6 +57,9 @@ QError *qobject_to_qerror(const QObject *obj);
#define QERR_DEVICE_ENCRYPTED \
"{ 'class': 'DeviceEncrypted', 'data': { 'device': %s } }"
+#define QERR_DEVICE_NOT_ENCRYPTED \
+ "{ 'class': 'DeviceNotEncrypted', 'data': { 'device': %s } }"
+
#define QERR_DEVICE_INIT_FAILED \
"{ 'class': 'DeviceInitFailed', 'data': { 'device': %s } }"