floppy: use blk_cleanup_disk()
Use the blk_cleanup_queue() followed by put_disk() can be replaced with blk_cleanup_disk(). No need for two separate loops. Signed-off-by: Luis Chamberlain <mcgrof@kernel.org> Link: https://lore.kernel.org/r/20210927220302.1073499-4-mcgrof@kernel.org Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
Родитель
2598a2bb35
Коммит
3776339ae7
|
@ -4951,13 +4951,9 @@ static void __exit floppy_module_exit(void)
|
||||||
}
|
}
|
||||||
for (i = 0; i < ARRAY_SIZE(floppy_type); i++) {
|
for (i = 0; i < ARRAY_SIZE(floppy_type); i++) {
|
||||||
if (disks[drive][i])
|
if (disks[drive][i])
|
||||||
blk_cleanup_queue(disks[drive][i]->queue);
|
blk_cleanup_disk(disks[drive][i]);
|
||||||
}
|
}
|
||||||
blk_mq_free_tag_set(&tag_sets[drive]);
|
blk_mq_free_tag_set(&tag_sets[drive]);
|
||||||
for (i = 0; i < ARRAY_SIZE(floppy_type); i++) {
|
|
||||||
if (disks[drive][i])
|
|
||||||
put_disk(disks[drive][i]);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
cancel_delayed_work_sync(&fd_timeout);
|
cancel_delayed_work_sync(&fd_timeout);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче