diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2011-04-18 17:14:51 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2011-05-26 12:14:15 +0200 |
commit | 19d110ab8af3308ce58d0936f085f0124930e7e7 (patch) | |
tree | 66655ab907e2b6f1ea43dce26b394789fbd1e280 /hw/scsi.h | |
parent | c557e889156c5f5da23b4b047aea804aefce4982 (diff) |
scsi: introduce scsi_req_abort
This covers the case of canceling a request's I/O and still
completing it.
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
@@ -114,6 +114,7 @@ int scsi_req_parse(SCSIRequest *req, uint8_t *buf); void scsi_req_print(SCSIRequest *req); void scsi_req_data(SCSIRequest *req, int len); void scsi_req_complete(SCSIRequest *req); +void scsi_req_abort(SCSIRequest *req, int status); void scsi_device_purge_requests(SCSIDevice *sdev); #endif |