]> www.infradead.org Git - nvme.git/commit
block: Fix elevator_get_default() checking for NULL q->tag_set
authorSurajSonawane2415 <surajsonawane0215@gmail.com>
Mon, 7 Oct 2024 11:14:16 +0000 (16:44 +0530)
committerJens Axboe <axboe@kernel.dk>
Mon, 7 Oct 2024 20:24:36 +0000 (14:24 -0600)
commitb402328a24ee7193a8ab84277c0c90ae16768126
treef3e566d987b332c0db4be00a08c69a95d417924c
parent6d6e54fc71ad1ab0a87047fd9c211e75d86084a3
block: Fix elevator_get_default() checking for NULL q->tag_set

elevator_get_default() and elv_support_iosched() both check for whether
or not q->tag_set is non-NULL, however it's not possible for them to be
NULL. This messes up some static checkers, as the checking of tag_set
isn't consistent.

Remove the checks, which both simplifies the logic and avoids checker
errors.

Signed-off-by: SurajSonawane2415 <surajsonawane0215@gmail.com>
Link: https://lore.kernel.org/r/20241007111416.13814-1-surajsonawane0215@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/elevator.c