diff options
author | Christoph Hellwig <hch@lst.de> | 2017-04-20 16:03:05 +0200 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2017-04-20 08:20:23 -0600 |
commit | 5267c8e3733f227b10d1a99f2b6bbe6c0ba02be4 (patch) | |
tree | 31685b462fcd1645e59198eaa0f3fd9555cf66f5 | |
parent | 11636e770807325e7c7bdb1d86fca04909fbb047 (diff) |
dm mpath: don't check for req->errors
We'll get all proper errors reported through ->end_io and ->errors will
go away soon.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
-rw-r--r-- | drivers/md/dm-mpath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-mpath.c b/drivers/md/dm-mpath.c index ab55955ed704..2950b145443d 100644 --- a/drivers/md/dm-mpath.c +++ b/drivers/md/dm-mpath.c @@ -1492,7 +1492,7 @@ static int do_end_io(struct multipath *m, struct request *clone, */ int r = DM_ENDIO_REQUEUE; - if (!error && !clone->errors) + if (!error) return 0; /* I/O complete */ if (noretry_error(error)) |