summaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorMartin K. Petersen <martin.petersen@oracle.com>2016-02-04 00:52:12 -0500
committerMartin K. Petersen <martin.petersen@oracle.com>2016-02-04 22:42:58 -0500
commit0fb5b1fb30fba3671dd5b1489d78e93e08d62e4e (patch)
tree090ebf83b190bff02e29a43f8611503d066e33c5 /block
parent82c43310508eb19eb41fe7862e89afeb74030b84 (diff)
block/sd: Return -EREMOTEIO when WRITE SAME and DISCARD are disabled
When a storage device rejects a WRITE SAME command we will disable write same functionality for the device and return -EREMOTEIO to the block layer. -EREMOTEIO will in turn prevent DM from retrying the I/O and/or failing the path. Yiwen Jiang discovered a small race where WRITE SAME requests issued simultaneously would cause -EIO to be returned. This happened because any requests being prepared after WRITE SAME had been disabled for the device caused us to return BLKPREP_KILL. The latter caused the block layer to return -EIO upon completion. To overcome this we introduce BLKPREP_INVALID which indicates that this is an invalid request for the device. blk_peek_request() is modified to return -EREMOTEIO in that case. Reported-by: Yiwen Jiang <jiangyiwen@huawei.com> Suggested-by: Mike Snitzer <snitzer@redhat.com> Reviewed-by: Hannes Reinicke <hare@suse.de> Reviewed-by: Ewan Milne <emilne@redhat.com> Reviewed-by: Yiwen Jiang <jiangyiwen@huawei.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'block')
-rw-r--r--block/blk-core.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/block/blk-core.c b/block/blk-core.c
index 476244d59309..35607dd0223b 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -2447,14 +2447,16 @@ struct request *blk_peek_request(struct request_queue *q)
2447 2447
2448 rq = NULL; 2448 rq = NULL;
2449 break; 2449 break;
2450 } else if (ret == BLKPREP_KILL) { 2450 } else if (ret == BLKPREP_KILL || ret == BLKPREP_INVALID) {
2451 int err = (ret == BLKPREP_INVALID) ? -EREMOTEIO : -EIO;
2452
2451 rq->cmd_flags |= REQ_QUIET; 2453 rq->cmd_flags |= REQ_QUIET;
2452 /* 2454 /*
2453 * Mark this request as started so we don't trigger 2455 * Mark this request as started so we don't trigger
2454 * any debug logic in the end I/O path. 2456 * any debug logic in the end I/O path.
2455 */ 2457 */
2456 blk_start_request(rq); 2458 blk_start_request(rq);
2457 __blk_end_request_all(rq, -EIO); 2459 __blk_end_request_all(rq, err);
2458 } else { 2460 } else {
2459 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret); 2461 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
2460 break; 2462 break;