1 / 11

Disk Management

Disk Management. Disk Scheduling. The operating system is responsible for using hardware efficiently — for the disk drives, this means having a fast access time and disk bandwidth. Access time has two major components

Download Presentation

Disk Management

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Disk Management

  2. Disk Scheduling • The operating system is responsible for using hardware efficiently — for the disk drives, this means having a fast access time and disk bandwidth. • Access time has two major components • Seek time is the time for the disk arm to move the heads to the cylinder containing the desired sector. • Rotational latency is the additional time waiting for the disk to rotate the desired sector to the disk head. • Minimize seek time • Seek time  seek distance • Disk bandwidth is the total number of bytes transferred, divided by the total time between the first request for service and the completion of the last transfer.

  3. FCFS Scheduling • Illustration shows total head movement of 640 cylinders.

  4. Shortest Seek Time First(SSTF) • Selects the request with the minimum seek time from the current head position. • SSTF scheduling is a form of SJF scheduling; may cause starvation of some requests. • Illustration shows total head movement of 236 cylinders.

  5. SCAN Scheduling • 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.

  6. C SCAN Scheduling • Circular 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.

  7. 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.

  8. Selection of Disk Scheduling Algorithm • SSTF is common as better than FCFS. • SCAN and C-SCAN perform better for systems that place a heavy load on the disk as less likely to cause starvation. • Performance depends on the number and types of requests. • Requests for disk service can be influenced by the file-allocation method. • The disk-scheduling algorithm should be written as a separate module of the operating system, allowing it to be replaced with a different algorithm if necessary. • Either SSTF or LOOK is a reasonable choice for the default algorithm.

  9. Disk Formatting • Before disk used it is divided into sectors that the disk controller can read and write call low level or physical formatting. • Each sector can hold header information, plus data, plus error correction code (ECC) • Usually 512 bytes of data but can be selectable. • Header and trailer contain information like sector number and ECC. • When sector of data is written ECC is calculated using all byte. When data is read ECC is recalculated. If both value mismatch then data area of sector become corrupted and disk sector may be bad. • To use a disk to hold files, the operating system still needs to record its own data structures on the disk • Partition the disk into one or more groups of cylinders, each treated as a logical disk • Logical formatting or “making a file system "To increase efficiency most file systems group blocks into cluster • Disk I/O done in block • File I/O done in clusters

  10. Boot Block • When Computer started or rebooted it must have initial program to run. • Bootstrap program initializes CPU registers, content of main memory, start OS etc. • Bootstrap program finds OS kernel on disk, loads that kernel into memory and jumps to initial address to begin the OS execution. • Bootstrap stored in ROM. • Full Bootstrap program is stored in the boot blocks. At fixed location on disk. • A disk that has boot partition is called boot disk or system disk. • The code in the boot ROM instructs the disk controller to read block in memory and then start executing that code.

  11. Bad Block • Disk have moving parts and small tolerances so prone to failure. • One or more sector can become defective. • Simple disk: MSDOS format command perform formatting and also scans to find bad blocks. • If found it writes a special value into corresponding FAT entryto tell allocation routine that not to use the block. • chkdsk also used. • Sophisticated disks: Controller maintain list of bad block. List is initialized during low level formatting and is updated over the life of disk. • Low level formatting also set aside some spare sector which can be told to replace each bad sector logically with spare sectors. This is called sector sparing or forwarding.

More Related