Let's make better public interface for COLO: instead of colo_process_incoming_thread and not trivial logic around creating the thread let's make simple colo_incoming_co(), hiding implementation from generic code. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20230515130640.46035-4-vsementsov@yandex-team.ru> Signed-off-by: Juan Quintela <quintela@redhat.com>
		
			
				
	
	
		
			38 lines
		
	
	
		
			653 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			653 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "qemu/osdep.h"
 | 
						|
#include "qemu/notify.h"
 | 
						|
#include "net/colo-compare.h"
 | 
						|
#include "migration/colo.h"
 | 
						|
#include "migration/migration.h"
 | 
						|
#include "qemu/error-report.h"
 | 
						|
#include "qapi/qapi-commands-migration.h"
 | 
						|
 | 
						|
void colo_shutdown(void)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
int coroutine_fn colo_incoming_co(void)
 | 
						|
{
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
void colo_checkpoint_delay_set(void)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
void migrate_start_colo_process(MigrationState *s)
 | 
						|
{
 | 
						|
    error_report("Impossible happend: trying to start COLO when COLO "
 | 
						|
                 "module is not built in");
 | 
						|
    abort();
 | 
						|
}
 | 
						|
 | 
						|
bool migration_in_colo_state(void)
 | 
						|
{
 | 
						|
    return false;
 | 
						|
}
 | 
						|
 | 
						|
bool migration_incoming_in_colo_state(void)
 | 
						|
{
 | 
						|
    return false;
 | 
						|
}
 |