From: Juan Quintela <quintela@redhat.com>
To: qemu-devel@nongnu.org
Cc: dgilbert@redhat.com, lvivier@redhat.com, peterx@redhat.com
Subject: [Qemu-devel] [PULL 09/15] migration: Export fd.c functions in its own file
Date: Thu, 1 Jun 2017 21:23:21 +0200 [thread overview]
Message-ID: <20170601192327.29712-10-quintela@redhat.com> (raw)
In-Reply-To: <20170601192327.29712-1-quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
---
include/migration/migration.h | 4 ----
migration/fd.c | 1 +
migration/fd.h | 23 +++++++++++++++++++++++
migration/migration.c | 1 +
4 files changed, 25 insertions(+), 4 deletions(-)
create mode 100644 migration/fd.h
diff --git a/include/migration/migration.h b/include/migration/migration.h
index d04f045..d249c13 100644
--- a/include/migration/migration.h
+++ b/include/migration/migration.h
@@ -171,10 +171,6 @@ void unix_start_incoming_migration(const char *path, Error **errp);
void unix_start_outgoing_migration(MigrationState *s, const char *path, Error **errp);
-void fd_start_incoming_migration(const char *path, Error **errp);
-
-void fd_start_outgoing_migration(MigrationState *s, const char *fdname, Error **errp);
-
void rdma_start_outgoing_migration(void *opaque, const char *host_port, Error **errp);
void rdma_start_incoming_migration(const char *host_port, Error **errp);
diff --git a/migration/fd.c b/migration/fd.c
index 05e0a5c..0077a50 100644
--- a/migration/fd.c
+++ b/migration/fd.c
@@ -18,6 +18,7 @@
#include "qapi/error.h"
#include "qemu-common.h"
#include "channel.h"
+#include "fd.h"
#include "migration/migration.h"
#include "monitor/monitor.h"
#include "io/channel-util.h"
diff --git a/migration/fd.h b/migration/fd.h
new file mode 100644
index 0000000..a14a63c
--- /dev/null
+++ b/migration/fd.h
@@ -0,0 +1,23 @@
+/*
+ * QEMU live migration via generic fd
+ *
+ * Copyright Red Hat, Inc. 2009-2016
+ *
+ * Authors:
+ * Chris Lalancette <clalance@redhat.com>
+ * Daniel P. Berrange <berrange@redhat.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2. See
+ * the COPYING file in the top-level directory.
+ *
+ * Contributions after 2012-01-13 are licensed under the terms of the
+ * GNU GPL, version 2 or (at your option) any later version.
+ */
+
+#ifndef QEMU_MIGRATION_FD_H
+#define QEMU_MIGRATION_FD_H
+void fd_start_incoming_migration(const char *path, Error **errp);
+
+void fd_start_outgoing_migration(MigrationState *s, const char *fdname,
+ Error **errp);
+#endif
diff --git a/migration/migration.c b/migration/migration.c
index c400388..ec93f7a 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -19,6 +19,7 @@
#include "qemu/main-loop.h"
#include "migration/blocker.h"
#include "exec.h"
+#include "fd.h"
#include "migration/migration.h"
#include "savevm.h"
#include "qemu-file-channel.h"
--
2.9.4
next prev parent reply other threads:[~2017-06-01 19:23 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-01 19:23 [Qemu-devel] [PULL 00/15] Migration PULL request Juan Quintela
2017-06-01 19:23 ` [Qemu-devel] [PULL 01/15] migration: Use savevm_handlers instead of loadvm copy Juan Quintela
2017-06-01 19:23 ` [Qemu-devel] [PULL 02/15] migration: loadvm handlers are not used Juan Quintela
2017-06-01 19:23 ` [Qemu-devel] [PULL 03/15] migration: Remove section_id parameter from vmstate_load Juan Quintela
2017-06-01 19:23 ` [Qemu-devel] [PULL 04/15] migration: fix leak of src file on dst Juan Quintela
2017-06-01 19:23 ` [Qemu-devel] [PULL 05/15] migration: shut src return path unconditionally Juan Quintela
2017-06-01 19:23 ` [Qemu-devel] [PULL 06/15] migration: Remove unneeded includes of migration/vmstate.h Juan Quintela
2017-06-01 19:23 ` [Qemu-devel] [PULL 07/15] migration: Split qemu-file.h Juan Quintela
2017-06-01 19:23 ` [Qemu-devel] [PULL 08/15] migration: Export exec.c functions in its own file Juan Quintela
2017-06-01 19:23 ` Juan Quintela [this message]
2017-06-01 19:23 ` [Qemu-devel] [PULL 10/15] migration: Export socket.c " Juan Quintela
2017-06-01 19:23 ` [Qemu-devel] [PULL 11/15] migration: Export tls.c " Juan Quintela
2017-06-01 19:23 ` [Qemu-devel] [PULL 12/15] migration: Export rdma.c " Juan Quintela
2017-06-01 19:23 ` [Qemu-devel] [PULL 13/15] migration: Create include for migration snapshots Juan Quintela
2017-06-01 19:23 ` [Qemu-devel] [PULL 14/15] migration: Export ram.c functions in its own file Juan Quintela
2017-06-01 19:23 ` [Qemu-devel] [PULL 15/15] migration: Move include/migration/block.h into migration/ Juan Quintela
2017-06-02 14:19 ` [Qemu-devel] [PULL 00/15] Migration PULL request Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170601192327.29712-10-quintela@redhat.com \
--to=quintela@redhat.com \
--cc=dgilbert@redhat.com \
--cc=lvivier@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).