From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56189) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XMxjs-0001NX-3T for qemu-devel@nongnu.org; Thu, 28 Aug 2014 07:19:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XMxjl-0007pD-Jk for qemu-devel@nongnu.org; Thu, 28 Aug 2014 07:19:35 -0400 Received: from mail.ispras.ru ([83.149.199.45]:55547) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XMxjl-0007p5-CO for qemu-devel@nongnu.org; Thu, 28 Aug 2014 07:19:29 -0400 From: Pavel Dovgalyuk Date: Thu, 28 Aug 2014 15:19:30 +0400 Message-ID: <20140828111930.1624.40704.stgit@PASHA-ISP> In-Reply-To: <20140828111822.1624.24556.stgit@PASHA-ISP> References: <20140828111822.1624.24556.stgit@PASHA-ISP> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH v2 12/12] pl031: add missed field to vmstate List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, zealot351@gmail.com, maria.klimushenkova@ispras.ru, pavel.dovgaluk@ispras.ru This patch adds timer which uses virtual clock to the VMState. Such timers are required for saving because virtual clock is the part of the virtual machine state. Signed-off-by: Pavel Dovgalyuk --- hw/timer/pl031.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/hw/timer/pl031.c b/hw/timer/pl031.c index 34d9b44..f8e5abc 100644 --- a/hw/timer/pl031.c +++ b/hw/timer/pl031.c @@ -230,12 +230,13 @@ static int pl031_post_load(void *opaque, int version_id) static const VMStateDescription vmstate_pl031 = { .name = "pl031", - .version_id = 1, + .version_id = 2, .minimum_version_id = 1, .pre_save = pl031_pre_save, .post_load = pl031_post_load, .fields = (VMStateField[]) { VMSTATE_UINT32(tick_offset_vmstate, PL031State), + VMSTATE_TIMER_V(timer, PL031State, 2), VMSTATE_UINT32(mr, PL031State), VMSTATE_UINT32(lr, PL031State), VMSTATE_UINT32(cr, PL031State),