Signed-off-by: Luiz Capitulino <lcapitul...@redhat.com> --- qerror.c | 4 ++++ qerror.h | 3 +++ 2 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/qerror.c b/qerror.c index 034c7de..648d438 100644 --- a/qerror.c +++ b/qerror.c @@ -181,6 +181,10 @@ static const QErrorStringTable qerror_table[] = { .desc = "Could not set password", }, { + .error_fmt = QERR_SNAPSHOT_NO_DEVICE, + .desc = "No block device can accept snapshots", + }, + { .error_fmt = QERR_TOO_MANY_FILES, .desc = "Too many open files", }, diff --git a/qerror.h b/qerror.h index c98c61a..2f6633c 100644 --- a/qerror.h +++ b/qerror.h @@ -151,6 +151,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_SET_PASSWD_FAILED \ "{ 'class': 'SetPasswdFailed', 'data': {} }" +#define QERR_SNAPSHOT_NO_DEVICE \ + "{ 'class': 'SnapshotNoDevice', 'data': {} }" + #define QERR_TOO_MANY_FILES \ "{ 'class': 'TooManyFiles', 'data': {} }" -- 1.7.1.rc1.12.ga6018