diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2011-04-18 19:07:23 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2011-05-26 12:14:16 +0200 |
| commit | fc4f0754c775d4b5e0fb90e503f7e505f62fb8ed (patch) | |
| tree | 99fd3e7e6ae403005fee0789650183a05e90ba53 /hw/scsi.h | |
| parent | a1f0cce2ac0243572ff72aa561da67fe3766a395 (diff) | |
| download | focaccia-qemu-fc4f0754c775d4b5e0fb90e503f7e505f62fb8ed.tar.gz focaccia-qemu-fc4f0754c775d4b5e0fb90e503f7e505f62fb8ed.zip | |
scsi: do not call send_command directly
Move the common part of scsi-disk.c and scsi-generic.c to the SCSI layer. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'hw/scsi.h')
| -rw-r--r-- | hw/scsi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/scsi.h b/hw/scsi.h index 7a7c9efb57..839bc0b3dd 100644 --- a/hw/scsi.h +++ b/hw/scsi.h @@ -143,7 +143,7 @@ int scsi_build_sense(SCSISense sense, uint8_t *buf, int len, int fixed); int scsi_sense_valid(SCSISense sense); SCSIRequest *scsi_req_alloc(size_t size, SCSIDevice *d, uint32_t tag, uint32_t lun); -void scsi_req_enqueue(SCSIRequest *req); +int32_t scsi_req_enqueue(SCSIRequest *req, uint8_t *buf); void scsi_req_free(SCSIRequest *req); SCSIRequest *scsi_req_ref(SCSIRequest *req); void scsi_req_unref(SCSIRequest *req); |