2
0

rdma.h 649 B

12345678910111213141516171819202122232425
  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 <mrhines@us.ibm.com>
  9. * Jiuxing Liu <jl@us.ibm.com>
  10. * Daniel P. Berrange <berrange@redhat.com>
  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. #ifndef QEMU_MIGRATION_RDMA_H
  17. #define QEMU_MIGRATION_RDMA_H
  18. void rdma_start_outgoing_migration(void *opaque, const char *host_port,
  19. Error **errp);
  20. void rdma_start_incoming_migration(const char *host_port, Error **errp);
  21. #endif