mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 a27bd6c779
			
		
	
	
		a27bd6c779
		
	
	
	
	
		
			
			In my "build everything" tree, changing hw/qdev-properties.h triggers a recompile of some 2700 out of 6600 objects (not counting tests and objects that don't depend on qemu/osdep.h). Many places including hw/qdev-properties.h (directly or via hw/qdev.h) actually need only hw/qdev-core.h. Include hw/qdev-core.h there instead. hw/qdev.h is actually pointless: all it does is include hw/qdev-core.h and hw/qdev-properties.h, which in turn includes hw/qdev-core.h. Replace the remaining uses of hw/qdev.h by hw/qdev-properties.h. While there, delete a few superfluous inclusions of hw/qdev-core.h. Touching hw/qdev-properties.h now recompiles some 1200 objects. Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: "Daniel P. Berrangé" <berrange@redhat.com> Cc: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <20190812052359.30071-22-armbru@redhat.com>
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * vhost_scsi host device
 | |
|  *
 | |
|  * Copyright (c) 2016 Nutanix Inc. All rights reserved.
 | |
|  *
 | |
|  * Author:
 | |
|  *  Felipe Franciosi <felipe@nutanix.com>
 | |
|  *
 | |
|  * This work is licensed under the terms of the GNU LGPL, version 2 or later.
 | |
|  * See the COPYING.LIB file in the top-level directory.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef VHOST_SCSI_COMMON_H
 | |
| #define VHOST_SCSI_COMMON_H
 | |
| 
 | |
| #include "hw/virtio/virtio-scsi.h"
 | |
| #include "hw/virtio/vhost.h"
 | |
| #include "hw/fw-path-provider.h"
 | |
| 
 | |
| #define TYPE_VHOST_SCSI_COMMON "vhost-scsi-common"
 | |
| #define VHOST_SCSI_COMMON(obj) \
 | |
|         OBJECT_CHECK(VHostSCSICommon, (obj), TYPE_VHOST_SCSI_COMMON)
 | |
| 
 | |
| typedef struct VHostSCSICommon {
 | |
|     VirtIOSCSICommon parent_obj;
 | |
| 
 | |
|     Error *migration_blocker;
 | |
| 
 | |
|     struct vhost_dev dev;
 | |
|     const int *feature_bits;
 | |
|     int32_t bootindex;
 | |
|     int channel;
 | |
|     int target;
 | |
|     int lun;
 | |
|     uint64_t host_features;
 | |
|     bool migratable;
 | |
| } VHostSCSICommon;
 | |
| 
 | |
| int vhost_scsi_common_start(VHostSCSICommon *vsc);
 | |
| void vhost_scsi_common_stop(VHostSCSICommon *vsc);
 | |
| char *vhost_scsi_common_get_fw_dev_path(FWPathProvider *p, BusState *bus,
 | |
|                                         DeviceState *dev);
 | |
| void vhost_scsi_common_set_config(VirtIODevice *vdev, const uint8_t *config);
 | |
| uint64_t vhost_scsi_common_get_features(VirtIODevice *vdev, uint64_t features,
 | |
|                                         Error **errp);
 | |
| 
 | |
| #endif /* VHOST_SCSI_COMMON_H */
 |