From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54778) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d9dwr-0001xi-SD for qemu-devel@nongnu.org; Sat, 13 May 2017 16:47:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d9dwn-0005Bz-0X for qemu-devel@nongnu.org; Sat, 13 May 2017 16:47:33 -0400 Received: from mail-qk0-x242.google.com ([2607:f8b0:400d:c09::242]:36103) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d9dwm-0005Bd-Sc for qemu-devel@nongnu.org; Sat, 13 May 2017 16:47:28 -0400 Received: by mail-qk0-x242.google.com with SMTP id y128so12239713qka.3 for ; Sat, 13 May 2017 13:47:28 -0700 (PDT) Sender: =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= References: <20170425220451.6028-1-quintela@redhat.com> <20170425220451.6028-14-quintela@redhat.com> From: =?UTF-8?Q?Philippe_Mathieu-Daud=c3=a9?= Message-ID: Date: Sat, 13 May 2017 17:47:25 -0300 MIME-Version: 1.0 In-Reply-To: <20170425220451.6028-14-quintela@redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH 13/41] migration: Remove vmstate.h from migration.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Juan Quintela , qemu-devel@nongnu.org Cc: lvivier@redhat.com, dgilbert@redhat.com, peterx@redhat.com On 04/25/2017 07:04 PM, Juan Quintela wrote: > Signed-off-by: Juan Quintela > Reviewed-by: Dr. David Alan Gilbert Reviewed-by: Philippe Mathieu-Daudé > -- > > Minor rearrangements due to rebase > > Signed-off-by: Juan Quintela > --- > include/migration/migration.h | 1 - > migration/block.c | 1 + > migration/colo-comm.c | 1 + > migration/migration.c | 1 + > migration/ram.c | 1 + > 5 files changed, 4 insertions(+), 1 deletion(-) > > diff --git a/include/migration/migration.h b/include/migration/migration.h > index d465624..22578db 100644 > --- a/include/migration/migration.h > +++ b/include/migration/migration.h > @@ -18,7 +18,6 @@ > #include "qemu-common.h" > #include "qemu/thread.h" > #include "qemu/notify.h" > -#include "migration/vmstate.h" > #include "io/channel.h" > #include "qapi-types.h" > #include "exec/cpu-common.h" > diff --git a/migration/block.c b/migration/block.c > index d2923b3..c919787 100644 > --- a/migration/block.c > +++ b/migration/block.c > @@ -27,6 +27,7 @@ > #include "migration/migration.h" > #include "sysemu/blockdev.h" > #include "migration/qemu-file.h" > +#include "migration/vmstate.h" > #include "sysemu/block-backend.h" > > #define BLOCK_SIZE (1 << 20) > diff --git a/migration/colo-comm.c b/migration/colo-comm.c > index 9b35027..b4288b8 100644 > --- a/migration/colo-comm.c > +++ b/migration/colo-comm.c > @@ -13,6 +13,7 @@ > > #include "qemu/osdep.h" > #include "migration/migration.h" > +#include "migration/vmstate.h" > #include "colo.h" > #include "trace.h" > > diff --git a/migration/migration.c b/migration/migration.c > index fef1f0a..4668236 100644 > --- a/migration/migration.c > +++ b/migration/migration.c > @@ -21,6 +21,7 @@ > #include "migration/migration.h" > #include "qemu-file-channel.h" > #include "migration/qemu-file.h" > +#include "migration/vmstate.h" > #include "sysemu/sysemu.h" > #include "block/block.h" > #include "qapi/qmp/qerror.h" > diff --git a/migration/ram.c b/migration/ram.c > index 8e1c136..c431ef9 100644 > --- a/migration/ram.c > +++ b/migration/ram.c > @@ -38,6 +38,7 @@ > #include "xbzrle.h" > #include "migration/migration.h" > #include "migration/qemu-file.h" > +#include "migration/vmstate.h" > #include "postcopy-ram.h" > #include "exec/address-spaces.h" > #include "migration/page_cache.h" >