mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
migration: Export rdma.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
41d64227ed
commit
e1a3ecee3b
4 changed files with 27 additions and 4 deletions
|
@ -153,10 +153,6 @@ void qemu_start_incoming_migration(const char *uri, Error **errp);
|
|||
|
||||
uint64_t migrate_max_downtime(void);
|
||||
|
||||
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 migrate_fd_error(MigrationState *s, const Error *error);
|
||||
|
||||
void migrate_fd_connect(MigrationState *s);
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include "exec.h"
|
||||
#include "fd.h"
|
||||
#include "socket.h"
|
||||
#include "rdma.h"
|
||||
#include "migration/migration.h"
|
||||
#include "savevm.h"
|
||||
#include "qemu-file-channel.h"
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
#include "qapi/error.h"
|
||||
#include "qemu-common.h"
|
||||
#include "qemu/cutils.h"
|
||||
#include "rdma.h"
|
||||
#include "migration/migration.h"
|
||||
#include "qemu-file.h"
|
||||
#include "exec/cpu-common.h"
|
||||
|
|
25
migration/rdma.h
Normal file
25
migration/rdma.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
* RDMA protocol and interfaces
|
||||
*
|
||||
* Copyright IBM, Corp. 2010-2013
|
||||
* Copyright Red Hat, Inc. 2015-2016
|
||||
*
|
||||
* Authors:
|
||||
* Michael R. Hines <mrhines@us.ibm.com>
|
||||
* Jiuxing Liu <jl@us.ibm.com>
|
||||
* Daniel P. Berrange <berrange@redhat.com>
|
||||
*
|
||||
* This work is licensed under the terms of the GNU GPL, version 2 or
|
||||
* later. See the COPYING file in the top-level directory.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef QEMU_MIGRATION_RDMA_H
|
||||
#define QEMU_MIGRATION_RDMA_H
|
||||
|
||||
void rdma_start_outgoing_migration(void *opaque, const char *host_port,
|
||||
Error **errp);
|
||||
|
||||
void rdma_start_incoming_migration(const char *host_port, Error **errp);
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue