summaryrefslogtreecommitdiffstats
path: root/drivers/message
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2018-05-29 09:52:29 -0400
committerJens Axboe <axboe@kernel.dk>2018-05-29 10:59:21 -0400
commit6600593cbd9340b3d4fcde8e58d17653732620c4 (patch)
tree988e41b87c617a6f8b9d0408f8bc16127e7a8bbf /drivers/message
parent12f5b93145450c750f315657ef239a314811aeeb (diff)
block: rename BLK_EH_NOT_HANDLED to BLK_EH_DONE
The BLK_EH_NOT_HANDLED implies nothing happen, but very often that is not what is happening - instead the driver already completed the command. Fix the symbolic name to reflect that a little better. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Hannes Reinecke <hare@suse.com> Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/message')
-rw-r--r--drivers/message/fusion/mptsas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/message/fusion/mptsas.c b/drivers/message/fusion/mptsas.c
index 86503f60468f..19a5aa70ecda 100644
--- a/drivers/message/fusion/mptsas.c
+++ b/drivers/message/fusion/mptsas.c
@@ -1929,7 +1929,7 @@ static enum blk_eh_timer_return mptsas_eh_timed_out(struct scsi_cmnd *sc)
1929 MPT_SCSI_HOST *hd; 1929 MPT_SCSI_HOST *hd;
1930 MPT_ADAPTER *ioc; 1930 MPT_ADAPTER *ioc;
1931 VirtDevice *vdevice; 1931 VirtDevice *vdevice;
1932 enum blk_eh_timer_return rc = BLK_EH_NOT_HANDLED; 1932 enum blk_eh_timer_return rc = BLK_EH_DONE;
1933 1933
1934 hd = shost_priv(sc->device->host); 1934 hd = shost_priv(sc->device->host);
1935 if (hd == NULL) { 1935 if (hd == NULL) {