aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2017-04-26 09:34:20 +0200
committerJens Axboe <axboe@fb.com>2017-04-26 07:53:29 -0600
commitd188b90c48e418e102a1f42872b13dfe386ab6a7 (patch)
treeaa8ca3a45864182b8d6426289c22461a0472e82e /drivers
parentlightnvm: fix possible memory leak in pblk_bb_discovery() (diff)
downloadlinux-dev-d188b90c48e418e102a1f42872b13dfe386ab6a7.tar.xz
linux-dev-d188b90c48e418e102a1f42872b13dfe386ab6a7.zip
scsi_transport_sas: always pass 0 error to blk_end_request_all
The SAS transport queues are only used by bsg, and bsg always looks at the scsi_request results and never add the error passed in the end_io callback. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to '')
-rw-r--r--drivers/scsi/scsi_transport_sas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/scsi_transport_sas.c b/drivers/scsi/scsi_transport_sas.c
index a2b279737a4b..9fdbd50c31b4 100644
--- a/drivers/scsi/scsi_transport_sas.c
+++ b/drivers/scsi/scsi_transport_sas.c
@@ -186,7 +186,7 @@ static void sas_smp_request(struct request_queue *q, struct Scsi_Host *shost,
ret = handler(shost, rphy, req);
scsi_req(req)->result = ret;
- blk_end_request_all(req, ret);
+ blk_end_request_all(req, 0);
spin_lock_irq(q->queue_lock);
}