diff options
author | Juan Quintela <quintela@redhat.com> | 2015-07-07 14:44:05 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2015-07-07 14:54:55 +0200 |
commit | b05dc72342b27585909d9e99d95d17fd3dfbb269 (patch) | |
tree | d1088c8f86568e7cefb97ce674872f2e138360b7 /qapi-schema.json | |
parent | 598cd2bda0845096d2f06500e45b4d0d399b384a (diff) | |
download | qemu-b05dc72342b27585909d9e99d95d17fd3dfbb269.tar.gz qemu-b05dc72342b27585909d9e99d95d17fd3dfbb269.tar.bz2 qemu-b05dc72342b27585909d9e99d95d17fd3dfbb269.zip |
migration: Make events a capability
Make check fails with events. THis is due to the parser/lexer that it
uses. Just in case that they are more broken parsers, just only send
events when there are capabilities.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index 106008cdeb..1285b8c74a 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -523,6 +523,9 @@ # minimize migration traffic. The feature is disabled by default. # (since 2.4 ) # +# @events: generate events for each migration state change +# (since 2.4 ) +# # @auto-converge: If enabled, QEMU will automatically throttle down the guest # to speed up convergence of RAM migration. (since 1.6) # @@ -530,7 +533,7 @@ ## { 'enum': 'MigrationCapability', 'data': ['xbzrle', 'rdma-pin-all', 'auto-converge', 'zero-blocks', - 'compress'] } + 'compress', 'events'] } ## # @MigrationCapabilityStatus |