]> git.ipfire.org Git - thirdparty/kernel/stable.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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 17 Nov 2024 14:06:24 +0000 (15:06 +0100)
commitf8b7e56b7555328ecd5edec99f4868cef884151a
treee1dd54614a34c08af6e17a8fb84a7eb8d44eb348
parenteb94e4a0db422ef075c1683a8589872f4dd38477
block: Fix elevator_get_default() checking for NULL q->tag_set

[ Upstream commit b402328a24ee7193a8ab84277c0c90ae16768126 ]

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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
block/elevator.c