diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2011-04-21 13:21:02 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2011-05-26 12:14:16 +0200 |
| commit | 0c34459b6af1b7ed2f000995b9bcb1c722646fbb (patch) | |
| tree | de9567cb5953e0ed8a71539772b923983feecda5 /hw/scsi.h | |
| parent | ad3376cc558f69606ac25ab6d597db71c969d8b6 (diff) | |
| download | focaccia-qemu-0c34459b6af1b7ed2f000995b9bcb1c722646fbb.tar.gz focaccia-qemu-0c34459b6af1b7ed2f000995b9bcb1c722646fbb.zip | |
scsi: introduce scsi_req_get_buf
... and remove some SCSIDevice variables or fields that now become unused. 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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/scsi.h b/hw/scsi.h index 6fd75dd660..edf68283c1 100644 --- a/hw/scsi.h +++ b/hw/scsi.h @@ -154,6 +154,7 @@ void scsi_req_print(SCSIRequest *req); void scsi_req_continue(SCSIRequest *req); void scsi_req_data(SCSIRequest *req, int len); void scsi_req_complete(SCSIRequest *req); +uint8_t *scsi_req_get_buf(SCSIRequest *req); void scsi_req_abort(SCSIRequest *req, int status); void scsi_req_cancel(SCSIRequest *req); void scsi_device_purge_requests(SCSIDevice *sdev); |