diff options
author | Luben Tuikov <ltuikov@yahoo.com> | 2006-05-15 20:57:18 +0900 |
---|---|---|
committer | Tejun Heo <htejun@gmail.com> | 2006-05-15 20:57:18 +0900 |
commit | 89f48c4d67dd875cf2216d4402bf77eda41fbdd9 (patch) | |
tree | 72f8664d7029f0190557b1b9f437b35e047cfd95 /include/scsi | |
parent | acc696d93dcf993dec123d69d599979e1456ffec (diff) | |
download | linux-3.10-89f48c4d67dd875cf2216d4402bf77eda41fbdd9.tar.gz linux-3.10-89f48c4d67dd875cf2216d4402bf77eda41fbdd9.tar.bz2 linux-3.10-89f48c4d67dd875cf2216d4402bf77eda41fbdd9.zip |
[PATCH] SCSI: Introduce scsi_req_abort_cmd (REPOST)
Introduce scsi_req_abort_cmd(struct scsi_cmnd *).
This function requests that SCSI Core start recovery for the
command by deleting the timer and adding the command to the eh
queue. It can be called by either LLDDs or SCSI Core. LLDDs who
implement their own error recovery MAY ignore the timeout event if
they generated scsi_req_abort_cmd.
First post:
http://marc.theaimsgroup.com/?l=linux-scsi&m=113833937421677&w=2
Signed-off-by: Luben Tuikov <ltuikov@yahoo.com>
Signed-off-by: Tejun Heo <htejun@gmail.com>
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/scsi_cmnd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/scsi/scsi_cmnd.h b/include/scsi/scsi_cmnd.h index 1ace1b9fe53..88c6c4da6c0 100644 --- a/include/scsi/scsi_cmnd.h +++ b/include/scsi/scsi_cmnd.h @@ -151,5 +151,6 @@ extern struct scsi_cmnd *scsi_get_command(struct scsi_device *, gfp_t); extern void scsi_put_command(struct scsi_cmnd *); extern void scsi_io_completion(struct scsi_cmnd *, unsigned int, unsigned int); extern void scsi_finish_command(struct scsi_cmnd *cmd); +extern void scsi_req_abort_cmd(struct scsi_cmnd *cmd); #endif /* _SCSI_SCSI_CMND_H */ |