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>
This commit is contained in:
parent
bc1256f7f1
commit
be903b2ae7
@ -112,6 +112,7 @@ void qemu_file_reset_rate_limit(QEMUFile *f);
|
|||||||
void qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate);
|
void qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate);
|
||||||
int64_t qemu_file_get_rate_limit(QEMUFile *f);
|
int64_t qemu_file_get_rate_limit(QEMUFile *f);
|
||||||
int qemu_file_get_error(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)
|
static inline void qemu_put_be64s(QEMUFile *f, const uint64_t *pv)
|
||||||
{
|
{
|
||||||
|
2
savevm.c
2
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
|
* If there is writev_buffer QEMUFileOps it uses it otherwise uses
|
||||||
* put_buffer ops.
|
* put_buffer ops.
|
||||||
*/
|
*/
|
||||||
static void qemu_fflush(QEMUFile *f)
|
void qemu_fflush(QEMUFile *f)
|
||||||
{
|
{
|
||||||
ssize_t ret = 0;
|
ssize_t ret = 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user