Operating System Look and C-Look Scheduling

Introduction to OS Look and C-Look Scheduling

Operating systems use various scheduling algorithms to manage the allocation of resources and ensure efficient execution of processes. Two commonly used disk scheduling algorithms are the OS Look and C-Look scheduling algorithms. These algorithms determine the order in which disk requests are processed, optimizing disk performance and reducing access time.

The OS Look scheduling algorithm is a variant of the SCAN algorithm. It works by moving the disk arm back and forth across the disk, servicing requests as it encounters them. However, unlike the SCAN algorithm, which always moves the arm from one end of the disk to the other, the OS Look algorithm only moves the arm to the last request in the current direction before reversing its direction. This reduces the total seek time and improves the overall efficiency of disk access.

On the other hand, the C-Look scheduling algorithm is an improved version of the LOOK algorithm. It also moves the disk arm back and forth across the disk, but instead of moving all the way to the end of the disk, it only goes as far as the last request in the current direction and then immediately reverses its direction. This eliminates the unnecessary movement to the end of the disk, resulting in faster disk access and reduced seek time.

Both the OS Look and C-Look scheduling algorithms have their advantages and disadvantages. The OS Look algorithm is more fair and ensures that all requests are eventually serviced, as it always scans the entire disk. However, it may not be the most efficient algorithm in terms of seek time, especially if there are a large number of requests concentrated in a specific area of the disk.

On the other hand, the C-Look algorithm is more efficient in terms of seek time, as it only moves the arm to the last request in the current direction. However, it may not be as fair as the OS Look algorithm, as it may skip over some requests if they are located in the opposite direction of the current movement of the arm.

In conclusion, the OS Look and C-Look scheduling algorithms are both effective methods for optimizing disk performance and reducing access time. The choice between the two depends on the specific requirements of the system and the trade-offs between fairness and efficiency. Understanding the principles and characteristics of these algorithms is crucial for system administrators and developers to make informed decisions about disk scheduling in their operating systems.

OS Look Scheduling

The OS Look scheduling algorithm, also known as the Shortest Seek Time First (SSTF) algorithm, selects the next disk request that is closest to the current position of the disk head. It aims to minimize the seek time, which is the time taken for the disk head to move from its current position to the requested track.

Let’s understand the OS Look scheduling algorithm with an example:

Consider a disk with 200 tracks numbered from 0 to 199. The disk head is currently positioned at track 100, and there are five pending disk requests: 50, 120, 70, 30, and 180. The OS Look algorithm would select the next request based on the shortest seek time.

The algorithm would first select the request for track 120, as it is the closest to the current position of the disk head. After serving this request, the disk head would move to track 120. The next request would be for track 180, as it is the closest to track 120. The disk head would move to track 180 and serve the request. The remaining requests would be processed in the order of their closeness to the current position of the disk head.

OS Look scheduling algorithm ensures that the disk head moves efficiently, reducing the average seek time and improving overall disk performance.

One important consideration when using the OS Look scheduling algorithm is the possibility of starvation. Since the algorithm always selects the request that is closest to the current position of the disk head, it may neglect requests that are located far away. This can lead to those requests being continuously delayed or even ignored, causing a potential performance issue.

To mitigate the risk of starvation, some operating systems implement a variation of the OS Look algorithm called the Circular Look (C-LOOK) algorithm. In the C-LOOK algorithm, instead of moving the disk head back to the beginning of the disk after reaching the last track, it immediately moves back to the first track without serving any requests in between. This ensures that all requests are eventually served, preventing any request from being starved.

Another consideration when using the OS Look scheduling algorithm is its dependency on the current position of the disk head. If the disk head is located at one end of the disk and there are no requests in that direction, the algorithm may have to traverse the entire disk to find the next request. This can result in a significant increase in seek time and overall disk latency.

Overall, the OS Look scheduling algorithm is a commonly used disk scheduling algorithm that aims to minimize the seek time and improve disk performance. However, it is important to consider the potential issues of starvation and the dependency on the current position of the disk head when implementing this algorithm in an operating system.

Scroll to Top