 df215b59d9
			
		
	
	
		df215b59d9
		
	
	
	
	
		
			
			Fixes all over the place. virtio dataplane migration support. Old q35 machine types removed. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJWzuKeAAoJECgfDbjSjVRpGzIH/1Tz6CoEq1rowiyVJ9B80oQU gDI2YWnJDSwJllmAF0rmoPRBQR8op3ZETZiCAcADHoZ7kdBNWGbyQeaDrrEPH7Q/ rCDVt8Q3g80vs89aWKG0nQ16J2MW5TbkuiQw7pjQSdc9AbUdWpUqSiWnpZ+sPAql 6DuVpjQ4/rN2alucXoa1Sir8KDDV7kBuY8U6/KoY890qzh842dv2523qvuCza9yR KX8Imj3oQAFjFSv5t1aOD3yYvWFd73EsReHPLGb1JtsVr/6wjs0sFUyA3JicBgnT +kWoSObWikfDY69HnqTkJpkun6woMM3zW5h2SkUBf9QP3yqLfGIp9uSriNN84Ak= =KXyh -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging vhost, virtio, pci, pc Fixes all over the place. virtio dataplane migration support. Old q35 machine types removed. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> # gpg: Signature made Thu 25 Feb 2016 11:16:46 GMT using RSA key ID D28D5469 # gpg: Good signature from "Michael S. Tsirkin <mst@kernel.org>" # gpg: aka "Michael S. Tsirkin <mst@redhat.com>" * remotes/mst/tags/for_upstream: (21 commits) q35: No need to check gigabyte_align q35: Remove unused q35-acpi-dsdt.aml file ich9: Remove enable_tco arguments from init functions machine: Remove no_tco field q35: Remove old machine versions tests/vhost-user-bridge: fix build on 32 bit systems vring: remove virtio-scsi: do not use vring in dataplane virtio-blk: do not use vring in dataplane virtio-blk: fix "disabled data plane" mode virtio: export vring_notify as virtio_should_notify virtio: add AioContext-specific function for host notifiers vring: make vring_enable_notification return void block-migration: acquire AioContext as necessary pci core: function pci_bus_init() cleanup pci core: function pci_host_bus_register() cleanup balloon: Use only 'pc-dimm' type dimm for ballooning virtio-balloon: rewrite get_current_ram_size() move get_current_ram_size to virtio-balloon.c vhost-user: don't merge regions with different fds ... Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
		
			
				
	
	
		
			26 lines
		
	
	
		
			911 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			911 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef BIOS_LINKER_LOADER_H
 | |
| #define BIOS_LINKER_LOADER_H
 | |
| 
 | |
| #include <glib.h>
 | |
| 
 | |
| GArray *bios_linker_loader_init(void);
 | |
| 
 | |
| void bios_linker_loader_alloc(GArray *linker,
 | |
|                               const char *file,
 | |
|                               uint32_t alloc_align,
 | |
|                               bool alloc_fseg);
 | |
| 
 | |
| void bios_linker_loader_add_checksum(GArray *linker, const char *file,
 | |
|                                      GArray *table,
 | |
|                                      void *start, unsigned size,
 | |
|                                      uint8_t *checksum);
 | |
| 
 | |
| void bios_linker_loader_add_pointer(GArray *linker,
 | |
|                                     const char *dest_file,
 | |
|                                     const char *src_file,
 | |
|                                     GArray *table, void *pointer,
 | |
|                                     uint8_t pointer_size);
 | |
| 
 | |
| void *bios_linker_loader_cleanup(GArray *linker);
 | |
| #endif
 |