From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38605) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fETSp-0000IR-T3 for qemu-devel@nongnu.org; Fri, 04 May 2018 01:41:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fETSm-00057Q-QI for qemu-devel@nongnu.org; Fri, 04 May 2018 01:41:03 -0400 Received: from mail-wr0-x244.google.com ([2a00:1450:400c:c0c::244]:34812) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fETSm-00055S-JN for qemu-devel@nongnu.org; Fri, 04 May 2018 01:41:00 -0400 Received: by mail-wr0-x244.google.com with SMTP id p18-v6so19752709wrm.1 for ; Thu, 03 May 2018 22:41:00 -0700 (PDT) References: <1525376963-79623-1-git-send-email-mst@redhat.com> <1525376963-79623-58-git-send-email-mst@redhat.com> From: Marcel Apfelbaum Message-ID: Date: Fri, 4 May 2018 08:40:55 +0300 MIME-Version: 1.0 In-Reply-To: <1525376963-79623-58-git-send-email-mst@redhat.com> Content-Language: en-US Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 57/67] kvm: use include "kvm_i386.h" consistently List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" , qemu-devel@nongnu.org Cc: kwolf@redhat.com, peter.maydell@linaro.org, Eduardo Habkost , Marcel Apfelbaum , Paolo Bonzini , Richard Henderson On 05/03/2018 10:51 PM, Michael S. Tsirkin wrote: > Some places include kvm_i386.h, others target/i386/kvm_i386.h. > Let's be consistent. > > Signed-off-by: Michael S. Tsirkin > --- > hw/i386/kvm/apic.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/i386/kvm/apic.c b/hw/i386/kvm/apic.c > index 1df6d26..ce43c3c 100644 > --- a/hw/i386/kvm/apic.c > +++ b/hw/i386/kvm/apic.c > @@ -16,7 +16,7 @@ > #include "hw/pci/msi.h" > #include "sysemu/hw_accel.h" > #include "sysemu/kvm.h" > -#include "target/i386/kvm_i386.h" > +#include "kvm_i386.h" > > static inline void kvm_apic_set_reg(struct kvm_lapic_state *kapic, > int reg_id, uint32_t val) Reviewed-by: Marcel Apfelbaum Thanks, Marcel