Download The
Total Page:16
File Type:pdf, Size:1020Kb
Visit : https://hemanthrajhemu.github.io Join Telegram to get Instant Updates: https://bit.ly/VTU_TELEGRAM Contact: MAIL: [email protected] INSTAGRAM: www.instagram.com/hemanthraj_hemu/ INSTAGRAM: www.instagram.com/futurevisionbie/ WHATSAPP SHARE: https://bit.ly/FVBIESHARE Seventh Edition ABRAHAM SILBERSCHATZ Yale University PETER BAER GALVIN Corporate Technologies, Inc. GREG GAGNE Westminster College WILEY JOHN WILEY & SONS. INC https://hemanthrajhemu.github.io Contents Chapter 9 Virtual Memory . 9.1 Background 315 9.8 Allocating Kernel Memory 353 9.2 Demand Paging 319 9.9 Other Considerations 357 9.3 Copy-on-Write 325 9.10 Operating-System Examples 363 9.4 Page Replacement 327 9.11 Summary 365 9.5 Allocation of Frames 340 Exercises 366 9.6 Thrashing 343 Bibliographical Notes 370 9.7 Memory-Mapped Files 348 PART FOUR • STORAGE MANAGEMENT Chapter 10 File-System Interface 10.1 File Concept 373 10.6 Protection 402 10.2 Access Methods 382 10.7 Summary 407 10.3 Directory Structure 385 Exercises 408 10.4 File-System Mounting 395 Bibliographical Notes 409 10.5 File Sharing 397 Chapter 11 File-System Implementation 11.1 File-System Structure 411 11.8 Log-Structured File Systems 437 11.2 File-System Implementation 413 11.9 NFS 438 11.3 Directory Implementation 419 11.10 Example: The WAFL File System 444 11.4 Allocation Methods 421 11.11 Summary 446 11.5 Free-Space Management 429 Exercises 447 11.6 Efficiency and Performance 431 Bibliographical Notes 449 11.7 Recovery 435 Chapter 12 Mass-Storage Structure 12.1 Overview of Mass-Storage 12.7 RAID Structure 468 Structure 451 12.8 Stable-Storage Implementation 477 12.2 Disk Structure 454 12.9 Tertiary-Storage Structure 478 12.3 Disk Attachment 455 12.10 Summary 488 12.4 Disk Scheduling 456 Exercises 489 12.5 Disk Management 462 Bibliographical Notes 493 12.6 Swap-Space Management 466 Chapter 13 I/O Systems 13.1 Overview 495 13.6 STREAMS 520 13.2 I/O Hardware 496 13.7 Performance 522 13.3 Application I/O Interface 505 13.8 Summary 525 13.4 Kernel I/O Subsystem 511 Exercises 526 13.5 Transforming I/O Requests to Bibliographical Notes 527 Hardware Operations 518 https://hemanthrajhemu.github.io Contents Chapter 18 Distributed Coordination 18.1 Event Ordering 663 18.6 Election Algorithms 683 18.2 Mutual Exclusion 666 18.7 Reaching Agreement 686 18.3 Atomicity 669 18.8 Summary 688 18.4 Concurrency Control 672 Exercises 689 18.5 Deadlock Handling 676 Bibliographical Notes 690 PART SEVEN SPECIAL-PURPOSE SYSTEMS Chapter 19 Real-Time Systems 19.1 Overview 695 19.5 Real-Time CPU Scheduling 704 19.2 System Characteristics 696 19.6 VxWorks5.x 710 19.3 Features of Real-Time Kernels 698 19.7 Summary 712 19.4 Implementing Real-Time Operating Exercises 713 Systems 700 Bibliographical Notes 713 Chapter 20 Multimedia Systems 20.1 What Is Multimedia? 15 20.6 Network Management 725 20.2 Compression 718 20.7 An Example: CineBlitz 728 20.3 Requirements of Multimedia 20.8 Summary 730 Kernels 720 Exercises 731 20.4 CPU Scheduling 722 Bibliographical Notes 733 20.5 Disk Scheduling 723 PART EIGHT CASE STUDIES Chapter 21 The Linux System 21.1 Linux History 737 21.8 Input and Output 770 21.2 Design Principles 742 21.9 Interprocess Communication 773 21.3 Kernel Modules 745 21.10 Network Structure 774 21.4 Process Management 748 21.11 Security 777 21.5 Scheduling 751 21.12 Summary 779 21.6 Memory Management 756 Exercises 780 21.7 FileSvstems 764 Bibliographical Notes 781 Chapter 22 Windows XP 22.1 History 783 22.6 Networking 822 22.2 Design Principles 785 22.7 Programmer Interface 829 22.3 System Components 787 22.8 Summary 836 22.4 Environmental Subsystems 811 Exercises 836 22.5 File System 814 Bibliographical Notes 837 https://hemanthrajhemu.github.io The file system can be viewed logically as consisting of three parts. In Chapter 10, we saw the user and programmer interface to the file system. In Chapter 11, we described the internal data structures and algorithms used by the operating system to implement this interface. In this chapter, we discuss the lowest level of the file system: the secondary and tertiary storage structures. We first describe the physical structure of magenetic disks and magnetic tapes. We then describe disk-scheduling algorithms that schedule the order of disk I/Os to improve performance. Next, we discuss disk formatting and management of boot blocks, damaged blocks, and swap space. We then examine secondary storage structure, covering disk reliability and stable-storage implementation. We conclude with a brief description of tertiary storage devices and the problems that arise when an operating system uses tertiary storage. CHAPTER OBJECTIVES » Describe the physical structure of secondary and tertiary storage devices and the resulting effects on the uses of the devices. • Explain the performance characteristics of mass-storage devices. « Discuss operating-system services provided for mass storage, including RAID and HSM. 12.1 Overview of Mass-Storage Structure In this section we present a general overview of the physical structure of secondary and tertiary storage devices. 12.1.1 Magnetic Disks Magnetic disks provide the bulk of secondary storage for modern computer systems. Conceptually, disks are relatively simple (Figure 12.1). Each disk platter has a flat circular shape, like a CD. Common platter diameters range from 1.8 to 5.25 inches. The two surfaces of a platter are covered with a magnetic material. We store information by recording it magnetically on the platters. 451 https://hemanthrajhemu.github.io 452 Chapter 12 Mass-Storage Structure track arm assembly sector s. i cylinder c platter rotation Figure 12.1 Moving-head disk mechanism. A read-write head "flies" just above each surface of every platter. The heads are attached to a disk arm that moves all the heads as a unit. The surface of a platter is logically divided into circular tracks, which are subdivided into sectors. The set of tracks that are at one arm position makes up a cylinder. There may be thousands of concentric cylinders in a disk drive, and each track may contain hundreds of sectors. The storage capacity of common disk drives is measured in gigabytes. When the disk is in use, a drive motor spins it at high speed. Most drives rotate 60 to 200 times per second. Disk speed has two parts. The transfer rate is the rate at which data flow between the drive and the computer. The positioning time, sometimes called the random-access time, consists of the time to move the disk arm to the desired cylinder, called the seek time, and the time for the desired sector to rotate to the disk head, called the rotational latency. Typical disks can transfer several megabytes of data per second, and they have seek times and rotational latencies of several milliseconds. Because the disk head flies on an extremely thin cushion of air (measured in microns), there is a danger that the head will make contact with the disk surface. Although the disk platters are coated with a thin protective layer, sometimes the head will damage the magnetic surface. This accident is called a head crash. A head crash normally cannot be repaired; the entire disk must be replaced. A disk can be removable, allowing different disks to be mounted as needed. Removable magnetic disks generally consist of one platter, held in a plastic case to prevent damage while not in the disk drive. Floppy disks are inexpensive removable magnetic disks that have a soft plastic case containing a flexible platter. The head of a floppy-disk drive generally sits directly on the disk surface, so the drive is designed to rotate more slowly than a hard-disk drive https://hemanthrajhemu.github.io 12.1 Overview of Mass-Storage Structure 453 to reduce the wear on the disk surface. The storage capacity of a floppy disk is typically only 1.44 MB or so. Removable disks are available that work much like normal hard disks and have capacities measured in gigabytes. A disk drive is attached to a computer by a set of wires called an I/O bus. Several kinds of buses are available, including enhanced integrated drive electronics (EIDE), advanced technology attachment (ATA), serial ATA (SATA), universal serial bus (USB), fiber channel (FC), and SCSI buses. The data transfers on a bus are carried out by special electronic processors called controllers. The host controller is the controller at the computer end of the bus. A disk controller is built into each disk drive. To perform a disk I/O operation, the computer places a command into the host controller, typically using memory-mapped I/O ports, as described in Section 9.7.3. The host controller then sends the command via messages to the disk controller, and the disk controller operates the disk-drive hardware to carry out the command. Disk controllers usually have a built-in cache. Data transfer at the disk drive happens between the cache and the disk surface, and data transfer to the host, at fast electronic speeds, occurs betwreen the cache and the host controller. 12.1.2 Magnetic Tapes Magnetic tape was used as an early secondary-storage medium. Although it is relatively permanent and can hold large quantities of data, its access time is slow compared with that of main memory and magnetic disk. In addition, random access to magnetic tape is about a thousand times slower than random access to magnetic disk, so tapes are not very useful for secondary storage.