Question
Describe in details how to implement the new scheduling policy (MLFQ) in the xv6. The existing scheduler in xv6 is a Round-Robin (RR) scheduler. Upon
Describe in details how to implement the new scheduling policy (MLFQ) in the xv6.
"The existing scheduler in xv6 is a Round-Robin (RR) scheduler. Upon each timer interrupt (every 10 ms), the interrupt handler switches to the kernel scheduler, which then selects the next runnable process to run. This scheduler, while simple, is too primitive to do anything interesting. In this project, you will be putting a new scheduler – the revised Multi-Level Feedback Queue (rMLFQ) – into xv6. It has three queues: Qi, i = 1, 2, 3, 4 with time quantum size 10 ms for Q1, 20 ms for Q2, 40 ms for Q3, and 80ms for Q4. The detailed policy is described as follows:
- Any new process will be inserted to the end of Queue Q1
- The scheduler will always choose the front process in the highest-priority non-empty queue in the order of Q1, Q2, Q3, and Q4
- Any chosen process will be scheduled for the queue-corresponding quantum size or the remaining burst size if its remaining burst size is large enough
- If the process has nothing remaining, the process will be removed from the queue after its execution
- If the process is not done within this round, it shall be moved to the next lower-priority queue except for any process in Q4
- Q4 runs a Round-Robin with a time quantum size of 80 ms. If a process is not done within the assigned quantum size, it remains in Q4 competing for more rounds. The scheduler adopts a revised priority boosting in Q4. After three rounds, any unfinished job will be pushed to Q1."
Step by Step Solution
3.46 Rating (153 Votes )
There are 3 Steps involved in it
Step: 1
Lets discuss the MultiLevel Review Feedback rMLFQ queue Lets first understand the concept behind the MultiLevel Response Algorithm If we break down th...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started