When using KVM, use the kernel's initial state to set up the cpreg list, and sync to and from the kernel when doing migration. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
		
			
				
	
	
		
			24 lines
		
	
	
		
			437 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			437 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * QEMU KVM ARM specific function stubs
 | 
						|
 *
 | 
						|
 * Copyright Linaro Limited 2013
 | 
						|
 *
 | 
						|
 * Author: Peter Maydell <peter.maydell@linaro.org>
 | 
						|
 *
 | 
						|
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 | 
						|
 * See the COPYING file in the top-level directory.
 | 
						|
 *
 | 
						|
 */
 | 
						|
#include "qemu-common.h"
 | 
						|
#include "kvm_arm.h"
 | 
						|
 | 
						|
bool write_kvmstate_to_list(ARMCPU *cpu)
 | 
						|
{
 | 
						|
    abort();
 | 
						|
}
 | 
						|
 | 
						|
bool write_list_to_kvmstate(ARMCPU *cpu)
 | 
						|
{
 | 
						|
    abort();
 | 
						|
}
 |