]>
Commit | Line | Data |
---|---|---|
e1a3ecee JQ |
1 | /* |
2 | * RDMA protocol and interfaces | |
3 | * | |
4 | * Copyright IBM, Corp. 2010-2013 | |
5 | * Copyright Red Hat, Inc. 2015-2016 | |
6 | * | |
7 | * Authors: | |
8 | * Michael R. Hines <[email protected]> | |
9 | * Jiuxing Liu <[email protected]> | |
10 | * Daniel P. Berrange <[email protected]> | |
11 | * | |
12 | * This work is licensed under the terms of the GNU GPL, version 2 or | |
13 | * later. See the COPYING file in the top-level directory. | |
14 | * | |
15 | */ | |
16 | ||
17 | #ifndef QEMU_MIGRATION_RDMA_H | |
18 | #define QEMU_MIGRATION_RDMA_H | |
19 | ||
20 | void rdma_start_outgoing_migration(void *opaque, const char *host_port, | |
21 | Error **errp); | |
22 | ||
23 | void rdma_start_incoming_migration(const char *host_port, Error **errp); | |
24 | ||
25 | #endif |