diff options
| author | Michael R. Hines <mrhines@us.ibm.com> | 2013-06-25 21:35:32 -0400 |
|---|---|---|
| committer | Juan Quintela <quintela@redhat.com> | 2013-06-27 02:38:36 +0200 |
| commit | be903b2ae7ca750bde2549432c5536087436cf49 (patch) | |
| tree | be1cbea40068afa2f361604cde2d294d152ba34f | |
| parent | bc1256f7f187cc7d491bfe3861249a60873adbbc (diff) | |
| download | focaccia-qemu-be903b2ae7ca750bde2549432c5536087436cf49.tar.gz focaccia-qemu-be903b2ae7ca750bde2549432c5536087436cf49.zip | |
rdma: export qemu_fflush()
RDMA uses this to flush the control channel before sending its own message to handle page registrations. Reviewed-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Chegu Vinod <chegu_vinod@hp.com> Tested-by: Chegu Vinod <chegu_vinod@hp.com> Tested-by: Michael R. Hines <mrhines@us.ibm.com> Signed-off-by: Michael R. Hines <mrhines@us.ibm.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
| -rw-r--r-- | include/migration/qemu-file.h | 1 | ||||
| -rw-r--r-- | savevm.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/migration/qemu-file.h b/include/migration/qemu-file.h index dd3fd5155e..37d1604065 100644 --- a/include/migration/qemu-file.h +++ b/include/migration/qemu-file.h @@ -112,6 +112,7 @@ void qemu_file_reset_rate_limit(QEMUFile *f); void qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate); int64_t qemu_file_get_rate_limit(QEMUFile *f); int qemu_file_get_error(QEMUFile *f); +void qemu_fflush(QEMUFile *f); static inline void qemu_put_be64s(QEMUFile *f, const uint64_t *pv) { diff --git a/savevm.c b/savevm.c index 67ddf06af0..26d56071ea 100644 --- a/savevm.c +++ b/savevm.c @@ -589,7 +589,7 @@ static inline bool qemu_file_is_writable(QEMUFile *f) * If there is writev_buffer QEMUFileOps it uses it otherwise uses * put_buffer ops. */ -static void qemu_fflush(QEMUFile *f) +void qemu_fflush(QEMUFile *f) { ssize_t ret = 0; |