From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:57903) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T1ezR-0002hb-Qk for qemu-devel@nongnu.org; Wed, 15 Aug 2012 10:54:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T1ezQ-0004xe-4Y for qemu-devel@nongnu.org; Wed, 15 Aug 2012 10:54:33 -0400 Received: from mail-wg0-f53.google.com ([74.125.82.53]:39945) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T1ezP-0004xO-UT for qemu-devel@nongnu.org; Wed, 15 Aug 2012 10:54:32 -0400 Received: by wgbfm10 with SMTP id fm10so1185561wgb.10 for ; Wed, 15 Aug 2012 07:54:31 -0700 (PDT) From: "=?UTF-8?q?Beno=C3=AEt=20Canet?=" Date: Wed, 15 Aug 2012 16:54:24 +0200 Message-Id: <1345042466-31743-2-git-send-email-benoit@irqsave.net> In-Reply-To: <1345042466-31743-1-git-send-email-benoit@irqsave.net> References: <1345042466-31743-1-git-send-email-benoit@irqsave.net> Subject: [Qemu-devel] [PATCH 1/3] qapi: Add SnapshotInfo. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, stefanha@linux.vnet.ibm.com, pbonzini@redhat.com, eblake@redhat.com, xiawenc@linux.vnet.ibm.com, =?UTF-8?q?Beno=C3=AEt=20Canet?= Signed-off-by: Benoit Canet --- qapi-schema.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/qapi-schema.json b/qapi-schema.json index a92adb1..8d4df19 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -126,6 +126,30 @@ 'running', 'save-vm', 'shutdown', 'suspended', 'watchdog' ] } ## +# @SnapshotInfo +# +# @id: unique snapshot id +# +# @name: user choosen name +# +# @vm-state-size: size of the VM state +# +# @date-sec: UTC date of the snapshot +# +# @date-nsec: date in nano seconds +# +# @vm-clock-sec: VM clock relative to boot +# +# Since: 1.3 +# +## + +{ 'type': 'SnapshotInfo', + 'data': { 'id': 'str', 'name': 'str', 'vm-state-size': 'int', + 'date-sec': 'int', 'date-nsec': 'int', + 'vm-clock-sec': 'int' } } + +## # @StatusInfo: # # Information about VCPU run state -- 1.7.9.5