migration: Export fd.c functions in its own file
Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
f4dbe1bf34
commit
7fcac4a2cc
@ -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 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_outgoing_migration(void *opaque, const char *host_port, Error **errp);
|
||||||
|
|
||||||
void rdma_start_incoming_migration(const char *host_port, Error **errp);
|
void rdma_start_incoming_migration(const char *host_port, Error **errp);
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
#include "qemu-common.h"
|
#include "qemu-common.h"
|
||||||
#include "channel.h"
|
#include "channel.h"
|
||||||
|
#include "fd.h"
|
||||||
#include "migration/migration.h"
|
#include "migration/migration.h"
|
||||||
#include "monitor/monitor.h"
|
#include "monitor/monitor.h"
|
||||||
#include "io/channel-util.h"
|
#include "io/channel-util.h"
|
||||||
|
23
migration/fd.h
Normal file
23
migration/fd.h
Normal file
@ -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
|
@ -19,6 +19,7 @@
|
|||||||
#include "qemu/main-loop.h"
|
#include "qemu/main-loop.h"
|
||||||
#include "migration/blocker.h"
|
#include "migration/blocker.h"
|
||||||
#include "exec.h"
|
#include "exec.h"
|
||||||
|
#include "fd.h"
|
||||||
#include "migration/migration.h"
|
#include "migration/migration.h"
|
||||||
#include "savevm.h"
|
#include "savevm.h"
|
||||||
#include "qemu-file-channel.h"
|
#include "qemu-file-channel.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user