diff options
author | Ishai Rabinovitz <ishai@mellanox.co.il> | 2006-05-17 09:20:48 -0700 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2006-05-17 09:20:48 -0700 |
commit | 093beac189e4295d968f0d38787b46f76cb0eaaa (patch) | |
tree | d5d5c476dd06b3ba6a5a7fc4787a3bbdc9d4ba63 /drivers/infiniband/ulp/srp | |
parent | ec2d7208494fe599a5ff13b40a0a20c9881f2737 (diff) | |
download | blackbird-op-linux-093beac189e4295d968f0d38787b46f76cb0eaaa.tar.gz blackbird-op-linux-093beac189e4295d968f0d38787b46f76cb0eaaa.zip |
IB/srp: Complete correct SCSI commands on device reset
When flushing out queued commands after a successful device reset,
make sure that SRP completes the right commands, instead of calling
scsi_done on the command passed into the device reset handler over and
over.
Signed-off-by: Ishai Rabinovitz <ishai@mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/ulp/srp')
-rw-r--r-- | drivers/infiniband/ulp/srp/ib_srp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/drivers/infiniband/ulp/srp/ib_srp.c index 0f24f04cb60e..9cbdffa08dc2 100644 --- a/drivers/infiniband/ulp/srp/ib_srp.c +++ b/drivers/infiniband/ulp/srp/ib_srp.c @@ -1241,7 +1241,7 @@ static int srp_reset_device(struct scsi_cmnd *scmnd) list_for_each_entry_safe(req, tmp, &target->req_queue, list) if (req->scmnd->device == scmnd->device) { req->scmnd->result = DID_RESET << 16; - scmnd->scsi_done(scmnd); + req->scmnd->scsi_done(req->scmnd); srp_remove_req(target, req); } |