mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 6a0acfff99
			
		
	
	
		6a0acfff99
		
	
	
	
	
		
			
			migration/qemu-file.h neglects to include it even though it needs ram_addr_t. Fix that. Drop a few superfluous inclusions elsewhere. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20190812052359.30071-14-armbru@redhat.com>
		
			
				
	
	
		
			26 lines
		
	
	
		
			468 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			468 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QEMU TCG accelerator stub
 | |
|  *
 | |
|  * Copyright Red Hat, Inc. 2013
 | |
|  *
 | |
|  * Author: Paolo Bonzini     <pbonzini@redhat.com>
 | |
|  *
 | |
|  * 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/osdep.h"
 | |
| #include "qemu-common.h"
 | |
| #include "cpu.h"
 | |
| #include "tcg/tcg.h"
 | |
| #include "exec/exec-all.h"
 | |
| 
 | |
| void tb_flush(CPUState *cpu)
 | |
| {
 | |
| }
 | |
| 
 | |
| void tlb_set_dirty(CPUState *cpu, target_ulong vaddr)
 | |
| {
 | |
| }
 |