--- qapi-schema.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+)
diff --git a/qapi-schema.json b/qapi-schema.json index cdd8384..cf4e9d6 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -796,6 +796,24 @@ { 'command': 'query-block', 'returns': ['BlockInfo'] } ## +# @DedupStatus +# +# An enumeration of a virtual block device deduplication status. +# +# @stopped: The deduplication has been stopped +# +# @starting: The deduplication is starting +# +# @started: The deduplication is started +# +# @stopping: The deduplication is stopping +# +# Since: 1.5.0 +## +{ 'enum': 'DedupStatus', 'data': [ 'stopped', 'starting', 'started', + 'stopping' ] } + +## # @BlockDeviceStats: # # Statistics of a virtual block device or a block backing device. -- 1.7.10.4