summaryrefslogtreecommitdiff
path: root/migration/rdma.h
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2017-04-17 20:32:36 +0200
committerJuan Quintela <quintela@redhat.com>2017-06-01 18:49:23 +0200
commite1a3ecee3b85864932d093c3a29966779d038485 (patch)
tree54ffca9f1c54e8d5739e672915abf96257447aec /migration/rdma.h
parent41d64227ed0a8f843b022dbf3058aa51c240c8d9 (diff)
downloadqemu-e1a3ecee3b85864932d093c3a29966779d038485.tar.gz
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>
Diffstat (limited to 'migration/rdma.h')
-rw-r--r--migration/rdma.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/migration/rdma.h b/migration/rdma.h
new file mode 100644
index 0000000000..de2ba09dc5
--- /dev/null
+++ b/migration/rdma.h
@@ -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