From patchwork Mon Mar 19 22:57:56 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 147714 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D26BAB6EF1 for ; Tue, 20 Mar 2012 11:51:21 +1100 (EST) Received: from localhost ([::1]:37848 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9lYv-0005xQ-Oo for incoming@patchwork.ozlabs.org; Mon, 19 Mar 2012 19:00:25 -0400 Received: from eggs.gnu.org ([208.118.235.92]:55935) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9lXL-0003Hv-49 for qemu-devel@nongnu.org; Mon, 19 Mar 2012 18:58:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S9lXG-00013o-AZ for qemu-devel@nongnu.org; Mon, 19 Mar 2012 18:58:46 -0400 Received: from mx1.redhat.com ([209.132.183.28]:38222) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9lXG-00013O-2D for qemu-devel@nongnu.org; Mon, 19 Mar 2012 18:58:42 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q2JMwe5e012448 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 19 Mar 2012 18:58:40 -0400 Received: from trasno.mitica (ovpn-116-17.ams2.redhat.com [10.36.116.17]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id q2JMw4oi017718; Mon, 19 Mar 2012 18:58:39 -0400 From: Juan Quintela To: qemu-devel@nongnu.org Date: Mon, 19 Mar 2012 23:57:56 +0100 Message-Id: <83eb8d59fa87f52a6bade7af9cc05006759683c1.1332197811.git.quintela@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 28/36] vmstate: rename machine.c to vmstate-cpu.c X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org They only contain vmstate cpu sections nowadays. Change name to reflect the case. Signed-off-by: Juan Quintela --- Makefile.target | 3 ++- target-alpha/{machine.c => vmstate-cpu.c} | 0 target-arm/{machine.c => vmstate-cpu.c} | 0 target-cris/{machine.c => vmstate-cpu.c} | 0 target-i386/{machine.c => vmstate-cpu.c} | 0 target-lm32/{machine.c => vmstate-cpu.c} | 0 target-m68k/{machine.c => vmstate-cpu.c} | 0 target-microblaze/{machine.c => vmstate-cpu.c} | 0 target-mips/{machine.c => vmstate-cpu.c} | 0 target-ppc/{machine.c => vmstate-cpu.c} | 0 target-s390x/{machine.c => vmstate-cpu.c} | 0 target-sh4/{machine.c => vmstate-cpu.c} | 0 target-sparc/{machine.c => vmstate-cpu.c} | 0 target-xtensa/{machine.c => vmstate-cpu.c} | 0 14 files changed, 2 insertions(+), 1 deletions(-) rename target-alpha/{machine.c => vmstate-cpu.c} (100%) rename target-arm/{machine.c => vmstate-cpu.c} (100%) rename target-cris/{machine.c => vmstate-cpu.c} (100%) rename target-i386/{machine.c => vmstate-cpu.c} (100%) rename target-lm32/{machine.c => vmstate-cpu.c} (100%) rename target-m68k/{machine.c => vmstate-cpu.c} (100%) rename target-microblaze/{machine.c => vmstate-cpu.c} (100%) rename target-mips/{machine.c => vmstate-cpu.c} (100%) rename target-ppc/{machine.c => vmstate-cpu.c} (100%) rename target-s390x/{machine.c => vmstate-cpu.c} (100%) rename target-sh4/{machine.c => vmstate-cpu.c} (100%) rename target-sparc/{machine.c => vmstate-cpu.c} (100%) rename target-xtensa/{machine.c => vmstate-cpu.c} (100%) diff --git a/target-alpha/machine.c b/target-alpha/vmstate-cpu.c similarity index 100% rename from target-alpha/machine.c rename to target-alpha/vmstate-cpu.c diff --git a/target-arm/machine.c b/target-arm/vmstate-cpu.c similarity index 100% rename from target-arm/machine.c rename to target-arm/vmstate-cpu.c diff --git a/target-cris/machine.c b/target-cris/vmstate-cpu.c similarity index 100% rename from target-cris/machine.c rename to target-cris/vmstate-cpu.c diff --git a/target-i386/machine.c b/target-i386/vmstate-cpu.c similarity index 100% rename from target-i386/machine.c rename to target-i386/vmstate-cpu.c diff --git a/target-lm32/machine.c b/target-lm32/vmstate-cpu.c similarity index 100% rename from target-lm32/machine.c rename to target-lm32/vmstate-cpu.c diff --git a/target-m68k/machine.c b/target-m68k/vmstate-cpu.c similarity index 100% rename from target-m68k/machine.c rename to target-m68k/vmstate-cpu.c diff --git a/target-microblaze/machine.c b/target-microblaze/vmstate-cpu.c similarity index 100% rename from target-microblaze/machine.c rename to target-microblaze/vmstate-cpu.c diff --git a/target-mips/machine.c b/target-mips/vmstate-cpu.c similarity index 100% rename from target-mips/machine.c rename to target-mips/vmstate-cpu.c diff --git a/target-ppc/machine.c b/target-ppc/vmstate-cpu.c similarity index 100% rename from target-ppc/machine.c rename to target-ppc/vmstate-cpu.c diff --git a/target-s390x/machine.c b/target-s390x/vmstate-cpu.c similarity index 100% rename from target-s390x/machine.c rename to target-s390x/vmstate-cpu.c diff --git a/target-sh4/machine.c b/target-sh4/vmstate-cpu.c similarity index 100% rename from target-sh4/machine.c rename to target-sh4/vmstate-cpu.c diff --git a/target-sparc/machine.c b/target-sparc/vmstate-cpu.c similarity index 100% rename from target-sparc/machine.c rename to target-sparc/vmstate-cpu.c diff --git a/target-xtensa/machine.c b/target-xtensa/vmstate-cpu.c similarity index 100% rename from target-xtensa/machine.c rename to target-xtensa/vmstate-cpu.c diff --git a/Makefile.target b/Makefile.target index 63cf769..0f59106 100644 --- a/Makefile.target +++ b/Makefile.target @@ -204,7 +204,8 @@ endif #CONFIG_BSD_USER # System emulator target ifdef CONFIG_SOFTMMU -obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o ioport.o +obj-y = arch_init.o cpus.o monitor.o vmstate-cpu.o gdbstub.o balloon.o +obj-y += ioport.o # virtio has to be here due to weird dependency between PCI and virtio-net. # need to fix this properly obj-$(CONFIG_NO_PCI) += pci-stub.o