s390/dasd: Fix typo in comment

Fix typo in comment:
requeust->request,
Removve->Remove,
notthing->nothing.

Signed-off-by: Yu Jiaoliang <yujiaoliang@vivo.com>
Signed-off-by: Stefan Haberland <sth@linux.ibm.com>
Link: https://lore.kernel.org/r/20241108133913.3068782-3-sth@linux.ibm.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
Yu Jiaoliang 2024-11-08 14:39:13 +01:00 committed by Jens Axboe
parent 7f5435b2a5
commit b2113edaa9
3 changed files with 3 additions and 3 deletions

View File

@ -2117,7 +2117,7 @@ int dasd_flush_device_queue(struct dasd_device *device)
case DASD_CQR_IN_IO: case DASD_CQR_IN_IO:
rc = device->discipline->term_IO(cqr); rc = device->discipline->term_IO(cqr);
if (rc) { if (rc) {
/* unable to terminate requeust */ /* unable to terminate request */
dev_err(&device->cdev->dev, dev_err(&device->cdev->dev,
"Flushing the DASD request queue failed\n"); "Flushing the DASD request queue failed\n");
/* stop flush processing */ /* stop flush processing */

View File

@ -855,7 +855,7 @@ dasd_delete_device(struct dasd_device *device)
dev_set_drvdata(&device->cdev->dev, NULL); dev_set_drvdata(&device->cdev->dev, NULL);
spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags); spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
/* Removve copy relation */ /* Remove copy relation */
dasd_devmap_delete_copy_relation_device(device); dasd_devmap_delete_copy_relation_device(device);
/* /*
* Drop ref_count by 3, one for the devmap reference, one for * Drop ref_count by 3, one for the devmap reference, one for

View File

@ -2405,7 +2405,7 @@ static int dasd_eckd_end_analysis(struct dasd_block *block)
} }
if (count_area != NULL && count_area->kl == 0) { if (count_area != NULL && count_area->kl == 0) {
/* we found notthing violating our disk layout */ /* we found nothing violating our disk layout */
if (dasd_check_blocksize(count_area->dl) == 0) if (dasd_check_blocksize(count_area->dl) == 0)
block->bp_block = count_area->dl; block->bp_block = count_area->dl;
} }