diff options
author | Juan Quintela <quintela@redhat.com> | 2017-04-20 18:52:18 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2017-06-01 18:49:22 +0200 |
commit | 08a0aee15cba50bd082770b7596e75023163fe87 (patch) | |
tree | 21ee845d9cc0cd14e6731e13ee801c69721acbe0 /migration/rdma.c | |
parent | 107da9acb5f2ec99dc5cb70041245a53e16bfcbd (diff) | |
download | qemu-08a0aee15cba50bd082770b7596e75023163fe87.zip qemu-08a0aee15cba50bd082770b7596e75023163fe87.tar.gz qemu-08a0aee15cba50bd082770b7596e75023163fe87.tar.bz2 |
migration: Split qemu-file.h
Split the file into public and internal interfaces. I have to rename
the external one because we can't have two include files with the same
name in the same directory. Build system gets confused. The only
exported functions are the ones that handle basic types.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'migration/rdma.c')
-rw-r--r-- | migration/rdma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/rdma.c b/migration/rdma.c index 166cd60..4cb5bf8 100644 --- a/migration/rdma.c +++ b/migration/rdma.c @@ -18,7 +18,7 @@ #include "qemu-common.h" #include "qemu/cutils.h" #include "migration/migration.h" -#include "migration/qemu-file.h" +#include "qemu-file.h" #include "exec/cpu-common.h" #include "qemu-file-channel.h" #include "qemu/error-report.h" |