From: Kevin Wolf Date: Wed, 9 Feb 2011 10:09:38 +0000 (+0100) Subject: qerror: Add QERR_UNKNOWN_BLOCK_FORMAT_FEATURE X-Git-Tag: TizenStudio_2.0_p2.3~3371^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=30bb12fb545cfdd349a8b06c55b1bc1eab22e625;p=sdk%2Femulator%2Fqemu.git qerror: Add QERR_UNKNOWN_BLOCK_FORMAT_FEATURE Signed-off-by: Kevin Wolf Reviewed-by: Anthony Liguori --- diff --git a/qerror.c b/qerror.c index 9d0cdeb..4855604 100644 --- a/qerror.c +++ b/qerror.c @@ -201,6 +201,11 @@ static const QErrorStringTable qerror_table[] = { .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 b0f69da..f732d45 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 } }"