Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Yu Jiaoliang and committed by
Jens Axboe
b2113eda 7f5435b2

+3 -3
+1 -1
drivers/s390/block/dasd.c
··· 2117 2117 case DASD_CQR_IN_IO: 2118 2118 rc = device->discipline->term_IO(cqr); 2119 2119 if (rc) { 2120 - /* unable to terminate requeust */ 2120 + /* unable to terminate request */ 2121 2121 dev_err(&device->cdev->dev, 2122 2122 "Flushing the DASD request queue failed\n"); 2123 2123 /* stop flush processing */
+1 -1
drivers/s390/block/dasd_devmap.c
··· 855 855 dev_set_drvdata(&device->cdev->dev, NULL); 856 856 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags); 857 857 858 - /* Removve copy relation */ 858 + /* Remove copy relation */ 859 859 dasd_devmap_delete_copy_relation_device(device); 860 860 /* 861 861 * Drop ref_count by 3, one for the devmap reference, one for
+1 -1
drivers/s390/block/dasd_eckd.c
··· 2405 2405 } 2406 2406 2407 2407 if (count_area != NULL && count_area->kl == 0) { 2408 - /* we found notthing violating our disk layout */ 2408 + /* we found nothing violating our disk layout */ 2409 2409 if (dasd_check_blocksize(count_area->dl) == 0) 2410 2410 block->bp_block = count_area->dl; 2411 2411 }