Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'block-5.18-2022-05-18' of git://git.kernel.dk/linux-block

Pull block fix from Jens Axboe:
"Just a small fix for a missing fifo time assigment for the head
insertion case in mq-deadline"

* tag 'block-5.18-2022-05-18' of git://git.kernel.dk/linux-block:
block/mq-deadline: Set the fifo_time member also if inserting at head

+1
+1
block/mq-deadline.c
··· 742 742 743 743 if (at_head) { 744 744 list_add(&rq->queuelist, &per_prio->dispatch); 745 + rq->fifo_time = jiffies; 745 746 } else { 746 747 deadline_add_rq_rb(per_prio, rq); 747 748