Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1851caf8 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "block: Enable BFQ io scheduler as default"

parents edac9794 71edb4e7
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -630,7 +630,10 @@ static struct elevator_type *elevator_get_default(struct request_queue *q)
{
	if (q->nr_hw_queues != 1)
		return NULL;

#if defined(CONFIG_SDC_QTI) || defined(CONFIG_SCSI_UFSHCD_QTI)
	if (IS_ENABLED(CONFIG_IOSCHED_BFQ))
		return elevator_get(q, "bfq", false);
#endif
	return elevator_get(q, "mq-deadline", false);
}