From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:36322) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UGVwe-0005ut-5X for qemu-devel@nongnu.org; Fri, 15 Mar 2013 10:49:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UGVwa-0003vP-Pp for qemu-devel@nongnu.org; Fri, 15 Mar 2013 10:49:20 -0400 Received: from nodalink.pck.nerim.net ([62.212.105.220]:59511 helo=paradis.irqsave.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UGVwa-0003vK-Fr for qemu-devel@nongnu.org; Fri, 15 Mar 2013 10:49:16 -0400 From: =?UTF-8?q?Beno=C3=AEt=20Canet?= Date: Fri, 15 Mar 2013 15:49:16 +0100 Message-Id: <1363358986-8360-3-git-send-email-benoit@irqsave.net> In-Reply-To: <1363358986-8360-1-git-send-email-benoit@irqsave.net> References: <1363358986-8360-1-git-send-email-benoit@irqsave.net> Subject: [Qemu-devel] [RFC V7 02/32] qmp: Add DedupStatus enum. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, =?UTF-8?q?Beno=C3=AEt=20Canet?= , stefanha@redhat.com --- qapi-schema.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/qapi-schema.json b/qapi-schema.json index 28b070f..ec01773 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -839,6 +839,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