From e37dcdfb8dc328471c98dc22444be98455e5f0f7 Mon Sep 17 00:00:00 2001 From: Kevin Wolf Date: Wed, 9 Feb 2011 11:09:38 +0100 Subject: qerror: Add QERR_UNKNOWN_BLOCK_FORMAT_FEATURE Signed-off-by: Kevin Wolf Reviewed-by: Anthony Liguori (cherry picked from commit f54e3641122e51c6343d587805422642f307462e) --- qerror.c | 5 +++++ qerror.h | 3 +++ 2 files changed, 8 insertions(+) diff --git a/qerror.c b/qerror.c index 9d0cdeb45c..485560418b 100644 --- a/qerror.c +++ b/qerror.c @@ -200,6 +200,11 @@ static const QErrorStringTable qerror_table[] = { .error_fmt = QERR_UNDEFINED_ERROR, .desc = "An undefined error has ocurred", }, + { + .error_fmt = QERR_UNKNOWN_BLOCK_FORMAT_FEATURE, + .desc = "'%(device)' uses a %(format) feature which is not " + "supported by this qemu version: %(feature)", + }, { .error_fmt = QERR_VNC_SERVER_FAILED, .desc = "Could not start VNC server on %(target)", diff --git a/qerror.h b/qerror.h index b0f69dabe5..f732d45e80 100644 --- a/qerror.h +++ b/qerror.h @@ -165,6 +165,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_UNDEFINED_ERROR \ "{ 'class': 'UndefinedError', 'data': {} }" +#define QERR_UNKNOWN_BLOCK_FORMAT_FEATURE \ + "{ 'class': 'UnknownBlockFormatFeature', 'data': { 'device': %s, 'format': %s, 'feature': %s } }" + #define QERR_VNC_SERVER_FAILED \ "{ 'class': 'VNCServerFailed', 'data': { 'target': %s } }" -- cgit v1.2.1