From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:39675) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIhaL-0000TT-BO for qemu-devel@nongnu.org; Tue, 25 Oct 2011 10:02:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RIhaF-0001vd-Er for qemu-devel@nongnu.org; Tue, 25 Oct 2011 10:02:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39316) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIhaF-0001vQ-54 for qemu-devel@nongnu.org; Tue, 25 Oct 2011 10:02:27 -0400 From: Juan Quintela Date: Tue, 25 Oct 2011 16:00:40 +0200 Message-Id: In-Reply-To: References: In-Reply-To: References: Subject: [Qemu-devel] [PATCH 06/25] vmstate: use new style for lm32 cpus List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, Michael Walle Signed-off-by: Juan Quintela CC: Michael Walle --- target-lm32/cpu.h | 2 -- target-lm32/machine.c | 12 +----------- 2 files changed, 1 insertions(+), 13 deletions(-) diff --git a/target-lm32/cpu.h b/target-lm32/cpu.h index 037ef52..bd37af8 100644 --- a/target-lm32/cpu.h +++ b/target-lm32/cpu.h @@ -202,8 +202,6 @@ void cpu_lm32_set_phys_msb_ignore(CPUState *env, int value); #define cpu_gen_code cpu_lm32_gen_code #define cpu_signal_handler cpu_lm32_signal_handler -#define CPU_SAVE_VERSION 1 - int cpu_lm32_handle_mmu_fault(CPUState *env, target_ulong address, int rw, int mmu_idx); #define cpu_handle_mmu_fault cpu_lm32_handle_mmu_fault diff --git a/target-lm32/machine.c b/target-lm32/machine.c index 9014a9f..e9ed250 100644 --- a/target-lm32/machine.c +++ b/target-lm32/machine.c @@ -3,7 +3,7 @@ const VMStateDescription vmstate_cpu = { .name = "cpu", - .version_id = CPU_SAVE_VERSION, + .version_id = 1, .minimum_version_id = 1, .minimum_version_id_old = 1, .fields = (VMStateField[]) { @@ -21,13 +21,3 @@ const VMStateDescription vmstate_cpu = { VMSTATE_END_OF_LIST() } }; - -void cpu_save(QEMUFile *f, void *opaque) -{ - vmstate_save_state(f, &vmstate_cpu, opaque); -} - -int cpu_load(QEMUFile *f, void *opaque, int version_id) -{ - return vmstate_load_state(f, &vmstate_cpu, opaque, version_id); -} -- 1.7.6.4