Download slides

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

RSTS/E wikipedia , lookup

Unix security wikipedia , lookup

Security-focused operating system wikipedia , lookup

Master boot record wikipedia , lookup

Spring (operating system) wikipedia , lookup

System 7 wikipedia , lookup

Distributed operating system wikipedia , lookup

VS/9 wikipedia , lookup

CP/M wikipedia , lookup

Transcript
Mass Storage Structure
Notice: The slides for this lecture have been largely based on those accompanying the textbook
Operating Systems Concepts with Java, by Silberschatz, Galvin, and Gagne (2003). Many, if not all, of
the illustrations contained in this presentation come from this source.
04/19/2004
CSCI 315 Operating Systems Design
1
Last Time: Performance
I/O a major factor in system performance:
– Demands CPU to execute device driver,
kernel I/O code.
– Context switches due to interrupts.
– Data copying.
– Network traffic especially stressful.
04/19/2004
CSCI 315 Operating Systems Design
2
Intercomputer Communications
04/19/2004
CSCI 315 Operating Systems Design
3
Improving Performance
• Reduce number of context switches.
• Reduce data copying.
• Reduce interrupts by using large transfers,
smart controllers, polling.
• Use DMA.
• Balance CPU, memory, bus, and I/O
performance for highest throughput.
04/19/2004
CSCI 315 Operating Systems Design
4
Device-Functionality
Progression
04/19/2004
CSCI 315 Operating Systems Design
5
Disk Structure
Points to consider:
Sector sizes (number of bits
per sector) should be fixed.
The density of the magnetic
material is constant on the
surface of the disk.
sector
direction of rotation
read/write head
direction of movement
Size of the sector gets
smaller as the radius of the
track gets smaller.
The disk rotates at a
constant speed. To find a
block, the head is moved to
the appropriate track, and
then the correct sector is
found as the disk rotates.
04/19/2004
arm
track
Organization of a disk surface
CSCI 315 Operating Systems Design
6
Disk Structure
The disk rotation is given in
rotations per minute (RPM).
The time to find a track is
proportional to the distance
the head must travel.
sector
read/write head
The average time to find a
sector within a track is
roughly half the time for a
full rotation.
direction of movement
Question: If the time to
move from track i to track
(i+1) is given by d,
assuming that the disk head
is at track 0 (all the way
out), could you calculate the
time to get to sector 4 in
track 5?
04/19/2004
direction of rotation
arm
track
Organization of a disk surface
CSCI 315 Operating Systems Design
7
Disk Structure
Multi-surface disk
A cylinder is the collection of all
the same tracks across all the
multiple disk surfaces.
There is a time associated with
turning heads on and off so that a
different surface can be accessed.
We call this overhead the headswitching time.
direction of rotation
read/write heads
cylinder
arm
direction of movement
04/19/2004
The time to move the arm to read
another cylinder is due to the
mechanics of the arm. It is
certainly much large than the
head-switching time, which is due
to electronics only.
Question: How should one
organize data across multiple
surfaces to minimize access
overhead?
CSCI 315 Operating Systems Design
8
Disk Scheduling
04/19/2004
CSCI 315 Operating Systems Design
9