mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 20:44:16 +00:00 
			
		
		
		
	 e965ffa70a
			
		
	
	
		e965ffa70a
		
	
	
	
	
		
			
			Children sometimes depend on their parent's vm change state handler having completed. Add a vm change state handler API for devices that guarantees tree depth ordering. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # core qdev-related obj files, also used by *-user:
 | |
| common-obj-y += qdev.o qdev-properties.o
 | |
| common-obj-y += bus.o reset.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += qdev-fw.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += fw-path-provider.o
 | |
| # irq.o needed for qdev GPIO handling:
 | |
| common-obj-y += irq.o
 | |
| common-obj-y += hotplug.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += nmi.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += vm-change-state-handler.o
 | |
| 
 | |
| common-obj-$(CONFIG_EMPTY_SLOT) += empty_slot.o
 | |
| common-obj-$(CONFIG_XILINX_AXI) += stream.o
 | |
| common-obj-$(CONFIG_PTIMER) += ptimer.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += sysbus.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += machine.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += loader.o
 | |
| common-obj-$(CONFIG_FITLOADER) += loader-fit.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += qdev-properties-system.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += register.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += or-irq.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += split-irq.o
 | |
| common-obj-$(CONFIG_PLATFORM_BUS) += platform-bus.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += generic-loader.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += null-machine.o
 | |
| 
 | |
| obj-$(CONFIG_SOFTMMU) += machine-qmp-cmds.o
 | |
| obj-$(CONFIG_SOFTMMU) += numa.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += machine-hmp-cmds.o
 |