diff options
author | Anthony Liguori | 2011-11-14 22:09:47 +0100 |
---|---|---|
committer | Anthony Liguori | 2011-11-21 21:58:48 +0100 |
commit | 1ed520c66e3f3b57b88d201c08558ec1616bf69d (patch) | |
tree | 806c590f41a6872f17dcdde827e7632aead4bd7a /qerror.h | |
parent | qcow2: implement bdrv_invalidate_cache (v2) (diff) | |
download | qemu-1ed520c66e3f3b57b88d201c08558ec1616bf69d.tar.gz qemu-1ed520c66e3f3b57b88d201c08558ec1616bf69d.tar.xz qemu-1ed520c66e3f3b57b88d201c08558ec1616bf69d.zip |
qed: add migration blocker (v2)
Now when you try to migrate with qed, you get:
(qemu) migrate tcp:localhost:1025
Block format 'qed' used by device 'ide0-hd0' does not support feature 'live migration'
(qemu)
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qerror.h')
-rw-r--r-- | qerror.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -54,6 +54,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_BAD_BUS_FOR_DEVICE \ "{ 'class': 'BadBusForDevice', 'data': { 'device': %s, 'bad_bus_type': %s } }" +#define QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED \ + "{ 'class': 'BlockFormatFeatureNotSupported', 'data': { 'format': %s, 'name': %s, 'feature': %s } }" + #define QERR_BUS_NOT_FOUND \ "{ 'class': 'BusNotFound', 'data': { 'bus': %s } }" |