mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 20:44:16 +00:00 
			
		
		
		
	 8110fa1d94
			
		
	
	
		8110fa1d94
		
	
	
	
	
		
			
			Generated using: $ ./scripts/codeconverter/converter.py -i \ --pattern=TypeCheckMacro $(git grep -l '' -- '*.[ch]') Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20200831210740.126168-12-ehabkost@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20200831210740.126168-13-ehabkost@redhat.com> Message-Id: <20200831210740.126168-14-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
		
			
				
	
	
		
			38 lines
		
	
	
		
			795 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			795 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * vhost_scsi host device
 | |
|  *
 | |
|  * Copyright IBM, Corp. 2011
 | |
|  *
 | |
|  * Authors:
 | |
|  *  Stefan Hajnoczi   <stefanha@linux.vnet.ibm.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_H
 | |
| #define VHOST_SCSI_H
 | |
| 
 | |
| #include "hw/virtio/virtio-scsi.h"
 | |
| #include "hw/virtio/vhost.h"
 | |
| #include "hw/virtio/vhost-scsi-common.h"
 | |
| #include "qom/object.h"
 | |
| 
 | |
| enum vhost_scsi_vq_list {
 | |
|     VHOST_SCSI_VQ_CONTROL = 0,
 | |
|     VHOST_SCSI_VQ_EVENT = 1,
 | |
|     VHOST_SCSI_VQ_NUM_FIXED = 2,
 | |
| };
 | |
| 
 | |
| #define TYPE_VHOST_SCSI "vhost-scsi"
 | |
| typedef struct VHostSCSI VHostSCSI;
 | |
| DECLARE_INSTANCE_CHECKER(VHostSCSI, VHOST_SCSI,
 | |
|                          TYPE_VHOST_SCSI)
 | |
| 
 | |
| struct VHostSCSI {
 | |
|     VHostSCSICommon parent_obj;
 | |
| };
 | |
| 
 | |
| #endif
 |