Disk Scheduling Algorithms: - Operating System Computer Mansi Mandaviya Mansi Karia 4 (
Disk Scheduling Algorithms: - Operating System Computer Mansi Mandaviya Mansi Karia 4 (
Disk Scheduling Algorithms: - Operating System Computer Mansi Mandaviya Mansi Karia 4 (
Head pointer 53
4
FCFS
6
SSTF (Cont.)
7
SCAN
The disk arm starts at one end of the disk,
and moves toward the other end, servicing
requests until it gets to the other end of the
disk, where the head movement is
reversed and servicing continues.
Sometimes called the elevator algorithm.
Illustration shows total head movement of
208 cylinders.
8
SCAN (Elevator)
9
C-SCAN
Provides a more uniform wait time than SCAN.
The head moves from one end of the disk to the
other. servicing requests as it goes. When it
reaches the other end, however, it immediately
returns to the beginning of the disk, without
servicing any requests on the return trip.
Treats the cylinders as a circular list that wraps
around from the last cylinder to the first one.
10
C-SCAN (Cont.)
11
C-LOOK
Version of C-SCAN
Arm only goes as far as the last request in
each direction, then reverses direction
immediately, without first going all the way
to the end of the disk.
12
C-LOOK (Cont.)
13
Selecting a Disk-Scheduling Algorithm