Skip to content

Commit

Permalink
6.12: base: Fixup following b402328a24ee7193a8ab84277c0c90ae16768126
Browse files Browse the repository at this point in the history
  • Loading branch information
Tk-Glitch committed Oct 28, 2024
1 parent 8016959 commit 9ba7f28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions linux-tkg-patches/6.12/0003-glitched-base.patch
Original file line number Diff line number Diff line change
Expand Up @@ -391,15 +391,15 @@ index 4eab3d70e880..79669aa39d79 100644
*/
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;

if (q->nr_hw_queues != 1 &&
!blk_mq_is_shared_tags(q->tag_set->flags))
return NULL;

- return elevator_find_get(q, "mq-deadline");
+ return elevator_find_get(q, "bfq");
- return elevator_find_get("mq-deadline");
+ return elevator_find_get("bfq");
}

/*
Expand Down

0 comments on commit 9ba7f28

Please sign in to comment.