From patchwork Fri Mar 1 13:33:45 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 224350 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 3A7432C02A3 for ; Sat, 2 Mar 2013 00:43:01 +1100 (EST) Received: from localhost ([::1]:49600 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UBQEl-0006dx-Fv for incoming@patchwork.ozlabs.org; Fri, 01 Mar 2013 08:42:59 -0500 Received: from eggs.gnu.org ([208.118.235.92]:40753) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UBQ6X-0003hS-MZ for qemu-devel@nongnu.org; Fri, 01 Mar 2013 08:34:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UBQ6W-0007Tb-KC for qemu-devel@nongnu.org; Fri, 01 Mar 2013 08:34:29 -0500 Received: from mail-qe0-f52.google.com ([209.85.128.52]:52368) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UBQ6W-0007TR-Gm for qemu-devel@nongnu.org; Fri, 01 Mar 2013 08:34:28 -0500 Received: by mail-qe0-f52.google.com with SMTP id s14so1894764qeb.39 for ; Fri, 01 Mar 2013 05:34:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=y6OYa0Px3m25vcsHE01PFpPMMejdFYC4ZT3EuuuOsgs=; b=NG9knWkaMgN+EFV3xM4lxmfvShypLi5H+tMBIH+Bsjos6lR1tLfvboWiAVSGv/UEYr WFdQNW39WSIOSnodoRFYXw/NhAReE+EEJ4QXv2lbnhRWYDeIznI6f1M3x2LQzx25/RSm GMPoDYY6ILmG5cP8LNxU0hpnBhyoP5wxwAal/lEJ0mkuoVjBWh8ua3rmJR+Am/gCzDAZ mPO2fDKjs41nRi6muTN0veKr81xj0AG5bFqxSzO1I0603vowzbPIuF9sE9nXR8hekbsU lYTMfqP2N0HkqNaMECvFn4XleeFEyqC7moPiL/Rl2RfOUY+Np5YnufIOvrXxpB5qm6zv pJjw== X-Received: by 10.224.206.137 with SMTP id fu9mr19768403qab.91.1362144868141; Fri, 01 Mar 2013 05:34:28 -0800 (PST) Received: from yakj.usersys.redhat.com (93-34-176-20.ip50.fastwebnet.it. [93.34.176.20]) by mx.google.com with ESMTPS id hr1sm19338754qeb.3.2013.03.01.05.34.26 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Fri, 01 Mar 2013 05:34:27 -0800 (PST) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Fri, 1 Mar 2013 14:33:45 +0100 Message-Id: <1362144829-26979-15-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1362144829-26979-1-git-send-email-pbonzini@redhat.com> References: <1362144829-26979-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 209.85.128.52 Cc: peter.maydell@linaro.org, afaerber@suse.de Subject: [Qemu-devel] [PATCH 14/18] i386: move files referencing CPU to hw/i386/ 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 Signed-off-by: Paolo Bonzini --- hw/i386/Makefile.objs | 4 +++- hw/{ => i386}/kvmvapic.c | 0 2 files changed, 3 insertions(+), 1 deletion(-) rename hw/{ => i386}/kvmvapic.c (100%) diff --git a/hw/kvmvapic.c b/hw/i386/kvmvapic.c similarity index 100% rename from hw/kvmvapic.c rename to hw/i386/kvmvapic.c diff --git a/hw/i386/Makefile.objs b/hw/i386/Makefile.objs index 5d071f4..a78c0b2 100644 --- a/hw/i386/Makefile.objs +++ b/hw/i386/Makefile.objs @@ -1,5 +1,5 @@ obj-y += mc146818rtc.o -obj-y += apic_common.o apic.o kvmvapic.o +obj-y += apic_common.o apic.o obj-y += sga.o ioapic_common.o ioapic.o piix_pci.o obj-y += vmport.o obj-y += pci/pci-hotplug.o wdt_ib700.o @@ -18,3 +18,5 @@ obj-y := $(addprefix ../,$(obj-y)) obj-y += multiboot.o smbios.o obj-y += pc.o pc_piix.o pc_q35.o obj-$(CONFIG_XEN) += xen_domainbuild.o xen_machine_pv.o + +obj-y += kvmvapic.o