migration: Introduce multifd_recv_new_channel()
Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
7a169d745c
commit
71bb07dbfc
@ -449,8 +449,9 @@ void migration_ioc_process_incoming(QIOChannel *ioc)
|
|||||||
if (!mis->from_src_file) {
|
if (!mis->from_src_file) {
|
||||||
QEMUFile *f = qemu_fopen_channel_input(ioc);
|
QEMUFile *f = qemu_fopen_channel_input(ioc);
|
||||||
migration_fd_process_incoming(f);
|
migration_fd_process_incoming(f);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
/* We still only have a single channel. Nothing to do here yet */
|
multifd_recv_new_channel(ioc);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -36,6 +36,7 @@
|
|||||||
#include "xbzrle.h"
|
#include "xbzrle.h"
|
||||||
#include "ram.h"
|
#include "ram.h"
|
||||||
#include "migration.h"
|
#include "migration.h"
|
||||||
|
#include "socket.h"
|
||||||
#include "migration/register.h"
|
#include "migration/register.h"
|
||||||
#include "migration/misc.h"
|
#include "migration/misc.h"
|
||||||
#include "qemu-file.h"
|
#include "qemu-file.h"
|
||||||
@ -654,6 +655,11 @@ int multifd_load_setup(void)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void multifd_recv_new_channel(QIOChannel *ioc)
|
||||||
|
{
|
||||||
|
/* nothing to do yet */
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* save_page_header: write page header to wire
|
* save_page_header: write page header to wire
|
||||||
*
|
*
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
#include "qemu-common.h"
|
#include "qemu-common.h"
|
||||||
#include "qapi/qapi-types-migration.h"
|
#include "qapi/qapi-types-migration.h"
|
||||||
#include "exec/cpu-common.h"
|
#include "exec/cpu-common.h"
|
||||||
|
#include "io/channel.h"
|
||||||
|
|
||||||
extern MigrationStats ram_counters;
|
extern MigrationStats ram_counters;
|
||||||
extern XBZRLECacheStats xbzrle_counters;
|
extern XBZRLECacheStats xbzrle_counters;
|
||||||
@ -44,6 +45,7 @@ int multifd_save_setup(void);
|
|||||||
int multifd_save_cleanup(Error **errp);
|
int multifd_save_cleanup(Error **errp);
|
||||||
int multifd_load_setup(void);
|
int multifd_load_setup(void);
|
||||||
int multifd_load_cleanup(Error **errp);
|
int multifd_load_cleanup(Error **errp);
|
||||||
|
void multifd_recv_new_channel(QIOChannel *ioc);
|
||||||
|
|
||||||
uint64_t ram_pagesize_summary(void);
|
uint64_t ram_pagesize_summary(void);
|
||||||
int ram_save_queue_pages(const char *rbname, ram_addr_t start, ram_addr_t len);
|
int ram_save_queue_pages(const char *rbname, ram_addr_t start, ram_addr_t len);
|
||||||
|
Loading…
Reference in New Issue
Block a user