mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-07-05 13:25:20 +02:00
block: Fix elevator_get_default() checking for NULL q->tag_set
[ Upstream commit b402328a24
]
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>
This commit is contained in:
parent
975cb1d212
commit
f49a9d86c4
|
@ -558,7 +558,7 @@ EXPORT_SYMBOL_GPL(elv_unregister);
|
||||||
static inline bool elv_support_iosched(struct request_queue *q)
|
static inline bool elv_support_iosched(struct request_queue *q)
|
||||||
{
|
{
|
||||||
if (!queue_is_mq(q) ||
|
if (!queue_is_mq(q) ||
|
||||||
(q->tag_set && (q->tag_set->flags & BLK_MQ_F_NO_SCHED)))
|
(q->tag_set->flags & BLK_MQ_F_NO_SCHED))
|
||||||
return false;
|
return false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -569,7 +569,7 @@ static inline bool elv_support_iosched(struct request_queue *q)
|
||||||
*/
|
*/
|
||||||
static struct elevator_type *elevator_get_default(struct request_queue *q)
|
static struct elevator_type *elevator_get_default(struct request_queue *q)
|
||||||
{
|
{
|
||||||
if (q->tag_set && q->tag_set->flags & BLK_MQ_F_NO_SCHED_BY_DEFAULT)
|
if (q->tag_set->flags & BLK_MQ_F_NO_SCHED_BY_DEFAULT)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (q->nr_hw_queues != 1 &&
|
if (q->nr_hw_queues != 1 &&
|
||||||
|
|
Loading…
Reference in New Issue
Block a user