summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2009-12-07 21:37:04 +0100
committerAnthony Liguori <aliguori@us.ibm.com>2009-12-07 16:34:34 -0600
commit5cfe026475f3233a4c42351001560450886feddb (patch)
treef04e1fc53e5675102b75dad70e5eae24fc08c18f
parentb086838090e32e05a60b21c2cabca8098c1562c4 (diff)
downloadqemu-5cfe026475f3233a4c42351001560450886feddb.tar.gz
QError: New QERR_DEVICE_NOT_REMOVABLE
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 37e8072464..17532b0665 100644
--- a/qerror.c
+++ b/qerror.c
@@ -61,6 +61,10 @@ static const QErrorStringTable qerror_table[] = {
.desc = "The %(device) device has not been found",
},
{
+ .error_fmt = QERR_DEVICE_NOT_REMOVABLE,
+ .desc = "Device %(device) is not removable",
+ },
+ {
.error_fmt = QERR_INVALID_PARAMETER_TYPE,
.desc = "Invalid parameter type, expected: %(expected)",
},
diff --git a/qerror.h b/qerror.h
index be6cd6897a..2abff1e00b 100644
--- a/qerror.h
+++ b/qerror.h
@@ -53,6 +53,9 @@ QError *qobject_to_qerror(const QObject *obj);
#define QERR_DEVICE_NOT_FOUND \
"{ 'class': 'DeviceNotFound', 'data': { 'device': %s } }"
+#define QERR_DEVICE_NOT_REMOVABLE \
+ "{ 'class': 'DeviceNotRemovable', 'data': { 'device': %s } }"
+
#define QERR_INVALID_PARAMETER_TYPE \
"{ 'class': 'InvalidParameterType', 'data': { 'name': %s,'expected': %s } }"