Virtual Memory cont d.; File System Interface. 03/30/2007 CSCI 315 Operating Systems Design 1

Similar documents
Chapter 11: File-System Interface

Chapter 11: File-System Interface. File Concept. File Structure

Chapter 10: File-System Interface

Chapter 10: File-System Interface

CS3600 SYSTEMS AND NETWORKS

UNIT V SECONDARY STORAGE MANAGEMENT

File Systems: Interface and Implementation

Chapter 11: File System Interface Capítulo 10 no livro adotado!

Part Four - Storage Management. Chapter 10: File-System Interface

CS720 - Operating Systems

File Systems: Interface and Implementation

File Systems: Interface and Implementation

Chapter 10: File-System Interface. Operating System Concepts with Java 8 th Edition

Chapter 11: File-System Interface

F 4. Both the directory structure and the files reside on disk Backups of these two structures are kept on tapes

Chapter 10: File System

Operating Systems. No. 9 ศร ณย อ นทโกส ม Sarun Intakosum

Chapter 10: File-System Interface

Chapter 7: File-System

Chapter 10: File-System Interface. File Concept Access Methods Directory Structure File-System Mounting File Sharing Protection

Chapter 10: File-System Interface. Operating System Concepts 8 th Edition

I.-C. Lin, Assistant Professor. Textbook: Operating System Concepts 8ed CHAPTER 10: FILE SYSTEM

Chapter 11: File-System Interface

Chapter 6 Storage Management File-System Interface 11.1

Lecture 10 File Systems - Interface (chapter 10)

Chapter 11: File-System Interface. File Concept. File Structure

Chapter 11: File-System Interface. Long-term Information Storage. File Structure. File Structure. File Concept. File Attributes

CMSC421: Principles of Operating Systems

Chapter 10: File System. Operating System Concepts 9 th Edition

Chapter 11: File-System Interface

File System: Interface and Implmentation

CSE325 Principles of Operating Systems. File Systems. David P. Duggan. March 21, 2013

File-System Interface. File Structure. File Concept. File Concept Access Methods Directory Structure File-System Mounting File Sharing Protection

Chapter 9: File System Interface

Chapter 11: File-System Interface

A file system is a clearly-defined method that the computer's operating system uses to store, catalog, and retrieve files.

EI 338: Computer Systems Engineering (Operating Systems & Computer Architecture)

Chapter 11: File-System Interface. Operating System Concepts 9 th Edition

Virtual Memory. CSCI 315 Operating Systems Design Department of Computer Science

Chapter 11: File-System Interface

Virtual Memory. Virtual Memory. Demand Paging. valid-invalid bit. Virtual Memory Larger than Physical Memory

Principles of Operating Systems

File-System. File Concept. File Types Name, Extension. File Attributes. File Operations. Access Methods. CS307 Operating Systems

ICS Principles of Operating Systems

Chapter 11: File System Interface

File-System Interface

CMSC421: Principles of Operating Systems

There is a general need for long-term and shared data storage: Files meet these requirements The file manager or file system within the OS

Virtual Memory. CSCI 315 Operating Systems Design Department of Computer Science

DATA STRUCTURES USING C

Module 9: Virtual Memory

Modulo V Sistema de Arquivos

Page Replacement. 3/9/07 CSE 30341: Operating Systems Principles

Module 9: Virtual Memory

Chapter 11: File System Implementation. Objectives

instruction is 6 bytes, might span 2 pages 2 pages to handle from 2 pages to handle to Two major allocation schemes

File Management By : Kaushik Vaghani

Optimal Algorithm. Replace page that will not be used for longest period of time Used for measuring how well your algorithm performs

V. File System. SGG9: chapter 11. Files, directories, sharing FS layers, partitions, allocations, free space. TDIU11: Operating Systems

Files and File Systems

Operating Systems. Designed and Presented by Dr. Ayman Elshenawy Elsefy

Background. Virtual Memory (2/2) Demand Paging Example. First-In-First-Out (FIFO) Algorithm. Page Replacement Algorithms. Performance of Demand Paging

File Concept Access Methods Directory and Disk Structure File-System Mounting File Sharing Protection

CS370 Operating Systems

File System Interface: Overview. Objective. File Concept UNIT-IV FILE SYSTEMS

Chapter 10: Virtual Memory. Background

Where are we in the course?

CS6401- Operating System QUESTION BANK UNIT-IV

Operating System: Chap10 File System Interface. National Tsing-Hua University 2016, Fall Semester

TDDB68 Concurrent Programming and Operating Systems. Lecture: File systems

Chapter 10: Virtual Memory. Background. Demand Paging. Valid-Invalid Bit. Virtual Memory That is Larger Than Physical Memory

Background. Demand Paging. valid-invalid bit. Tevfik Koşar. CSC Operating Systems Spring 2007

Fall 2015 COMP Operating Systems. Lab #8

Chapter 9: Virtual-Memory

Chapter 9: Virtual Memory. Chapter 9: Virtual Memory. Objectives. Background. Virtual-address address Space

File Systems. CS170 Fall 2018

Chapter 9: Virtual Memory

Chapter 9: Virtual Memory

Chapter 9: Virtual Memory

Operating Systems: Lecture 12. File-System Interface and Implementation

Sharing may be done through a protection scheme. Network File System (NFS) is a common distributed file-sharing method

File System & Device Drive Mass Storage. File Attributes (Meta Data) File Operations. Directory Structure. Operations Performed on Directory

Basic Page Replacement

Chapter 8: Virtual Memory. Operating System Concepts

Advanced Operating Systems. File Systems Lecture 9

CS 143A - Principles of Operating Systems

Page Replacement Algorithms

File Systems. CS 4410 Operating Systems

Chapter 9: Virtual Memory

Chapter 9: Virtual Memory

File System (FS) Highlights

Storage, part 1. Michael Brockway. November 3, 2015

Chapter 3: Virtual Memory ว ตถ ประสงค. Background สามารถอธ บายข อด ในการท ระบบใช ว ธ การจ ดการหน วยความจ าแบบเสม อนได

First-In-First-Out (FIFO) Algorithm

Chapter 5. File and Memory Management

Chapter 9: Virtual Memory. Operating System Concepts 9 th Edition

Outlook. File-System Interface Allocation-Methods Free Space Management

e-pg Pathshala Subject: Computer Science Paper: Operating Systems Module 29: Allocation of Frames, Thrashing Module No: CS/OS/29 Quadrant 1 e-text

Basic Memory Management. Basic Memory Management. Address Binding. Running a user program. Operating Systems 10/14/2018 CSC 256/456 1

File System Management

Transcription:

Virtual Memory cont d.; File System Interface 03/30/2007 CSCI 315 Operating Systems Design 1 1

Thrashing If a process does not have enough pages, the page-fault rate is very high. This leads to: Low CPU utilization. Operating system thinks that it needs to increase the degree of multiprogramming. Another process added to the system. Thrashing a process is busy swapping pages in and out. 03/30/2007 CSCI 315 Operating Systems Design 2 2

Thrashing Why does paging work? Locality model Process migrates from one locality to another. Localities may overlap. Why does thrashing occur? Σ size of locality > total memory size 03/30/2007 CSCI 315 Operating Systems Design 3 3

Locality in Memory-Reference Pattern 03/30/2007 CSCI 315 Operating Systems Design 4 4

Working-Set Model working-set window a fixed number of page references. WSS i (working set of Process P i ) = total number of pages referenced in the most recent (varies in time) if too small will not encompass entire locality. if too large will encompass several localities. if = will encompass entire program. D = Σ WSS i total demand frames if D > mthrashing Policy if D > m, then suspend one of the processes. 03/30/2007 CSCI 315 Operating Systems Design 5 5

Working-set model 03/30/2007 CSCI 315 Operating Systems Design 6 6

Keeping Track of the Working Set Approximate with interval timer + a reference bit Example: = 10,000 Timer interrupts after every 5000 time units. Keep in memory 2 bits for each page. Whenever a timer interrupts copy and sets the values of all reference bits to 0. If one of the bits in memory = 1 page in working set. Why is this not completely accurate? Improvement = 10 bits and interrupt every 1000 time units. 03/30/2007 CSCI 315 Operating Systems Design 7 7

Page-Fault Frequency Scheme Establish acceptable page-fault rate. If actual rate too low, process loses frame. If actual rate too high, process gains frame. 03/30/2007 CSCI 315 Operating Systems Design 8 8

Memory-mapped Files Memory mapping a file can be accomplished by mapping a disk block to one or more pages in memory. A page-sized portion of the file is read from the file system into a physical page. Subsequent read() and write() operations are handled as memory (not disk) accesses. Writing to the file in memory is not necessarily synchronous to the file on disk. The file can be committed back to disk when it s closed. 03/30/2007 CSCI 315 Operating Systems Design 9 9

Memory-mapped Files 3 1 2 3 4 5 6 process A virtual memory 6 1 5 4 2 1 2 3 4 5 6 1 2 3 4 5 6 process B virtual memory disk file 03/30/2007 CSCI 315 Operating Systems Design 10 10

Prepaging Prepaging: In order to avoid the initial number of page faults, the system can bring into memory all the pages that will be needed all at once. This can also be applied when a swapped-out process is restarted. The smart thing to do is to remember the working set of the process. One question that arises is whether all the pages brought in will actually be used Is the cost of prepaging less than the cost of servicing each individual page fault? 03/30/2007 CSCI 315 Operating Systems Design 11 11

File System Topics File Concept Access Methods Directory Structure File System Mounting File Sharing Protection 03/30/2007 CSCI 315 Operating Systems Design 12 12

File Concept Contiguous logical address space. File types: Data: numeric. character. binary. Program (executable). 03/30/2007 CSCI 315 Operating Systems Design 13 13

File Structure None: just a sequence of words or bytes. Simple record structure: Lines, Fixed length, Variable length. Complex Structures: Formatted document, Relocatable load file. Can simulate last two with first method by inserting appropriate control characters. Who decides: Operating system, Program. 03/30/2007 CSCI 315 Operating Systems Design 14 14

File Attributes Name only information kept in human-readable form. Type needed for systems that support different types. Location pointer to file location on device. Size current file size. Protection controls who can do reading, writing, executing. Time, date, and user identification data for protection, security, and usage monitoring. Information about files is kept in the directory structure, which is maintained on the disk. 03/30/2007 CSCI 315 Operating Systems Design 15 15

File Operations Create. Write. Read. Seek. Delete. Truncate (reset size to 0, keep current attributes). Open(F i ) search the directory structure on disk for entry F i, and move the content of entry to memory. Close (F i ) move the content of entry F i in memory to directory structure on disk. 03/30/2007 CSCI 315 Operating Systems Design 16 16

File Types: Name and Extension 03/30/2007 CSCI 315 Operating Systems Design 17 17

Access Methods Sequential Access read next write next reset no read after last write (rewrite) Direct Access read n write n position to n read next write next rewrite n n = relative block number 03/30/2007 CSCI 315 Operating Systems Design 18 18

Sequential-access File 03/30/2007 CSCI 315 Operating Systems Design 19 19

Simulation of Sequential Access on a Direct-access File 03/30/2007 CSCI 315 Operating Systems Design 20 20

Example of Index and Relative Files 03/30/2007 CSCI 315 Operating Systems Design 21 21

Directory Structure Directory: a symbol table that translates file names into directory entries. ping emacs ifconfig mount fdisk find Both the directory structure and the files reside on disk. Backups of these two structures are kept on tapes. 03/30/2007 CSCI 315 Operating Systems Design 22 22

Partitions and Directories (File system organization) 03/30/2007 CSCI 315 Operating Systems Design 23 23

Operations on Directories Search for a file. Create a file. Delete a file. List a directory. Rename a file. Traverse the file system. 03/30/2007 CSCI 315 Operating Systems Design 24 24

Goals of Directory Logical Organization Efficiency locating a file quickly. Naming convenient to users. Two users can have same name for different files. The same file can have several different names. Grouping logical grouping of files by properties, (e.g., all Java programs, all games, ) 03/30/2007 CSCI 315 Operating Systems Design 25 25

Single-Level Directory A single directory for all users. Drawbacks: Naming problem Grouping problem 03/30/2007 CSCI 315 Operating Systems Design 26 26

Two-Level Directory A separate directory for each user. Path name. Can have the same file name for different user. Efficient searching. No grouping capability. 03/30/2007 CSCI 315 Operating Systems Design 27 27

Tree-Structured Directories 03/30/2007 CSCI 315 Operating Systems Design 28 28

Tree-Structured Directories (Cont.) Efficient searching. Grouping Capability. Current directory (working directory): cd /spell/mail/prog, type list. 03/30/2007 CSCI 315 Operating Systems Design 29 29

Tree-Structured Directories (Cont.) Absolute or relative path name. Creating a new file is done in current directory by default. Delete a file rm <file-name> Creating a new subdirectory is done in current directory. mkdir <dir-name> Example: if in current directory /mail mkdir count mail prog copy prt exp count Deleting mail deleting the entire subtree rooted by mail. 03/30/2007 CSCI 315 Operating Systems Design 30 30

Acyclic-Graph Directories Have shared subdirectories and files. 03/30/2007 CSCI 315 Operating Systems Design 31 31

Acyclic-Graph Directories (Cont.) Two different names (aliasing). If dict deletes listdangling pointer. Solutions: Backpointers, so we can delete all pointers. Variable size records a problem. Backpointers using a daisy chain organization. Entry-hold-count solution. 03/30/2007 CSCI 315 Operating Systems Design 32 32

General Graph Directory 03/30/2007 CSCI 315 Operating Systems Design 33 33

General Graph Directory (Cont.) How do we guarantee no cycles? Allow only links to file not subdirectories. Garbage collection. Every time a new link is added use a cycle detection algorithm to determine whether it is OK. 03/30/2007 CSCI 315 Operating Systems Design 34 34

File System Mounting A file system (partition) must be mounted before it can be accessed. A unmounted file system needs to be attached to a mount point before it can be accessed. existing unmounted 03/30/2007 CSCI 315 Operating Systems Design 35 35

File Sharing Sharing of files on multi-user systems is desirable. Sharing may be done through a protection scheme. On distributed systems, files may be shared across a network. Network File System (NFS) is a common distributed filesharing method. 03/30/2007 CSCI 315 Operating Systems Design 36 36

Protection File owner/creator should be able to control: what can be done, by whom. Types of access: Read, Write, Execute, Append, Delete, List. 03/30/2007 CSCI 315 Operating Systems Design 37 37

Access Lists and Groups Mode of access: read, write, execute Three classes of users RWX a) owner access 7 1 1 1 RWX b) group access 6 1 1 0 RWX c) public access 1 0 0 1 Ask manager to create a group (unique name), say G, and add some users to the group. For a particular file (say game) or subdirectory, define an appropriate access. owner group public chmod 761 game Associate a group with a file: chgrp G game 03/30/2007 CSCI 315 Operating Systems Design 38 38