diff options
author | Dan Williams <dan.j.williams@intel.com> | 2011-05-10 02:39:11 -0700 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2011-07-03 04:04:48 -0700 |
commit | f00e6ba4996a34f098fe50c78077f0568fd838ec (patch) | |
tree | 02bbbc01b8c392ca99b26c194580fc7a0f4f854a /drivers/scsi/isci/request.h | |
parent | 5dec6f4e41340196d223caf922578c44dfe2295a (diff) |
isci: unify request abort handlers
Unify the implementation in scic_sds_io_request_terminate and kill the state
handler.
Reported-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/scsi/isci/request.h')
-rw-r--r-- | drivers/scsi/isci/request.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/scsi/isci/request.h b/drivers/scsi/isci/request.h index 95b65891fc4..b1733695231 100644 --- a/drivers/scsi/isci/request.h +++ b/drivers/scsi/isci/request.h @@ -445,12 +445,6 @@ struct scic_sds_io_request_state_handler { scic_sds_io_request_handler_t start_handler; /** - * The abort_handler specifies the method invoked when a user attempts to - * abort a request. - */ - scic_sds_io_request_handler_t abort_handler; - - /** * The complete_handler specifies the method invoked when a user attempts to * complete a request. */ @@ -459,7 +453,6 @@ struct scic_sds_io_request_state_handler { scic_sds_io_request_task_completion_handler_t tc_completion_handler; scic_sds_io_request_event_handler_t event_handler; scic_sds_io_request_frame_handler_t frame_handler; - }; /** |