[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 3/9] migration: Export qemu-file-channel.c funct
From: |
Peter Xu |
Subject: |
Re: [Qemu-devel] [PATCH 3/9] migration: Export qemu-file-channel.c functions in its own file |
Date: |
Thu, 18 May 2017 20:07:10 +0800 |
User-agent: |
Mutt/1.5.24 (2015-08-30) |
On Wed, May 17, 2017 at 05:47:50PM +0200, Juan Quintela wrote:
> Signed-off-by: Juan Quintela <address@hidden>
> ---
> include/migration/migration.h | 1 +
> include/migration/qemu-file.h | 4 ----
> migration/channel.c | 1 +
> migration/colo.c | 1 +
> migration/migration.c | 1 +
> migration/qemu-file-channel.c | 1 +
> migration/qemu-file-channel.h | 21 +++++++++++++++++++++
> migration/rdma.c | 1 +
> migration/savevm.c | 1 +
> tests/test-vmstate.c | 1 +
> 10 files changed, 29 insertions(+), 4 deletions(-)
> create mode 100644 migration/qemu-file-channel.h
>
> diff --git a/include/migration/migration.h b/include/migration/migration.h
> index e831259..8280df1 100644
> --- a/include/migration/migration.h
> +++ b/include/migration/migration.h
> @@ -19,6 +19,7 @@
> #include "qemu/thread.h"
> #include "qemu/notify.h"
> #include "migration/vmstate.h"
> +#include "io/channel.h"
Could I ask why we add this line here? I thought one of the main goals
of this series is removing things from migration.h...
> #include "qapi-types.h"
> #include "exec/cpu-common.h"
> #include "qemu/coroutine_int.h"
Thanks,
--
Peter Xu
- [Qemu-devel] [PATCH v4 0/9] Migration mini-cleanup, Juan Quintela, 2017/05/17
- [Qemu-devel] [PATCH 1/9] migration: Create migration/xbzrle.h, Juan Quintela, 2017/05/17
- [Qemu-devel] [PATCH 2/9] migration: Split migration/channel.c for channel operations, Juan Quintela, 2017/05/17
- [Qemu-devel] [PATCH 3/9] migration: Export qemu-file-channel.c functions in its own file, Juan Quintela, 2017/05/17
- [Qemu-devel] [PATCH 4/9] migration: Remove migration.h from colo.h, Juan Quintela, 2017/05/17
- [Qemu-devel] [PATCH 5/9] migration: Move qjson.h to migration/, Juan Quintela, 2017/05/17