Disk Management and File Systems. Dr. Yingwu Zhu

Size: px
Start display at page:

Download "Disk Management and File Systems. Dr. Yingwu Zhu"

Transcription

1 Disk Management and File Systems Dr. Yingwu Zhu

2 Review: Want Standard Interfaces to Devices Block Devices: e.g. disk drives, tape drives, Cdrom Access blocks of data Commands include open(), read(), write(), seek() Raw I/O or file-system access Memory-mapped file access possible Character Devices: e.g. keyboards, mice, serial ports, some USB devices Single characters at a time Commands include get(), put() Libraries layered on top allow line editing Network Devices: e.g. Ethernet, Wireless, Bluetooth different enough from block/character to have own interface Unix and Windows include socket interface Separates network protocol from network operation Includes select() functionality Usage: pipes, FIFOs, streams, queues, mailboxes

3 Review: How Does User Deal with Timing? Blocking Interface: Wait When request data (e.g. read() system call), put process to sleep until data is ready When write data (e.g. write() system call), put process to sleep until device is ready for data Non-blocking Interface: Don t Wait Returns quickly from read or write request with count of bytes successfully transferred Read may return nothing, write may write nothing Asynchronous Interface: Tell Me Later When request data, take pointer to user s buffer, return immediately; later kernel fills buffer and notifies user When send data, take pointer to user s buffer, return immediately; later kernel takes data and notifies user

4 Review: How does the processor talk to the device? CPU Interrupt Controller Processor Memory Bus Bus Adaptor Other Devices or Buses Interrupt Request CPU interacts with a Controller Contains a set of registers that can be read and written May contain memory for request queues or bit-mapped images Bus Adaptor Address+ Data Regular Memory Device Controller Bus Interface read write control status Registers (port 0x20) Hardware Controller Addressable Memory and/or Queues Memory Mapped Region: 0x8f Regardless of the complexity of the connections and buses, processor accesses registers in two ways: I/O instructions: in/out instructions Example from the Intel architecture: out 0x21,AL Memory mapped I/O: load/store instructions Registers/memory appear in physical address space I/O accomplished with load and store instructions

5 Review: Memory-Mapped Display Controller Example Memory-Mapped: Hardware maps control registers and display memory to physical address space Addresses set by hardware jumpers or programming at boot time Simply writing to display memory (also called the frame buffer ) changes image on screen Addr: 0x8000F000 0x8000FFFF Writing graphics description to commandqueue area Say enter a set of triangles that describe some scene Addr: 0x x8001FFFF Writing to the command register may cause on-board graphics hardware to do something Say render the above scene Addr: 0x0007F004 Can protect with page tables 0x x x8000F000 0x0007F004 0x0007F000 Graphics Command Queue Display Memory Command Status Physical Address Space

6 Our focus Disk Performance Hardware performance parameters Queuing Theory (introduced) File Systems Structure, Naming, Directories, and Caching

7 Transferring Data To/From Controller Programmed I/O: Each byte transferred via processor in/out or load/store Pro: Simple hardware, easy to program Con: Consumes processor cycles proportional to data size Direct Memory Access: Give controller access to memory bus Ask it to transfer data to/from memory directly Sample interaction with DMA controller:

8 A Kernel I/O Structure

9 Device Drivers Device Driver: Device-specific code in the kernel that interacts directly with the device hardware Supports a standard, internal interface Same kernel I/O system can interact easily with different device drivers Special device-specific configuration supported with the ioctl() system call Device Drivers typically divided into two pieces: Top half: accessed in call path from system calls implements a set of standard, cross-device calls like open(), close(), read(), write(), ioctl(), strategy() This is the kernel s interface to the device driver Top half will start I/O to device, may put thread to sleep until finished Bottom half: run as interrupt routine Gets input or transfers next block of output May wake sleeping threads if I/O now complete

10 Life Cycle of An I/O Request User Program Kernel I/O Subsystem Device Driver Top Half Device Driver Bottom Half Device Hardware

11 I/O Device Notifying the OS The OS needs to know when: The I/O device has completed an operation The I/O operation has encountered an error I/O Interrupt: Device generates an interrupt whenever it needs service Handled in bottom half of device driver Often run on special kernel-level stack Pro: handles unpredictable events well Con: interrupts relatively high overhead Polling: OS periodically checks a device-specific status register I/O device puts completion information in status register Could use timer to invoke lower half of drivers occasionally Pro: low overhead Con: may waste many cycles on polling if infrequent or unpredictable I/O operations Actual devices combine both polling and interrupts For instance: High-bandwidth network device: Interrupt for first incoming packet Poll for following packets until hardware empty

12 Hard Disk Drives Read/Write Head Side View Western Digital Drive IBM/Hitachi Microdrive

13 Properties of a Hard Magnetic Disk Platters Sector Track Properties Independently addressable element: sector OS always transfers groups of sectors together blocks A disk can access directly any given block of information it contains (random access). Can access any file either sequentially or randomly. A disk can be rewritten in place: it is possible to read/modify/write a block from the disk Typical numbers (depending on the disk size): 500 to more than 20,000 tracks per surface 32 to 800 sectors per track A sector is the smallest unit that can be read or written Zoned bit recording Constant bit density: more sectors on outer tracks Speed varies with track location

14 Disk I/O Performance User Thread Queue [OS Paths] Controller Response Time = Queue+Disk Service Time Disk Response Time (ms) 0% Throughput (Utilization) (% total BW) Performance of disk drive/file system Metrics: Response Time, Throughput Contributing factors to latency: Software paths (can be loosely modeled by a queue) Hardware controller Physical disk media Queuing behavior: Can lead to big increases of latency as utilization approaches 100% %

15 Magnetic Disk Characteristic Track Sector Cylinder: all the tracks under the head at a given point on all surface Head Read/write data is a three-stage process: Platter Seek time: position the head/arm over the proper track (into proper cylinder) Rotational latency: wait for the desired sector to rotate under the read/write head Transfer time: transfer a block of bits (sector) under the read-write head Disk Latency = Queueing Time + Controller time + Seek Time + Rotation Time + Xfer Time Cylinder Request Software Queue (Device Driver) Hardware Controller Media Time (Seek+Rot+Xfer) Result Highest Bandwidth: transfer large group of blocks sequentially from one track

16 Typical Numbers of a Magnetic Disk Average seek time as reported by the industry: Typically in the range of 8 ms to 12 ms Due to locality of disk reference may only be 25% to 33% of the advertised number Rotational Latency: Most disks rotate at 3,600 to 7200 RPM (Up to 15,000RPM or more) Approximately 16 ms to 8 ms per revolution, respectively An average latency to the desired information is halfway around the disk: 8 ms at 3600 RPM, 4 ms at 7200 RPM Transfer Time is a function of: Transfer size (usually a sector): 1 KB / sector Rotation speed: 3600 RPM to RPM Recording density: bits per inch on a track Diameter: ranges from 1 in to 5.25 in Typical values: 2 to 50 MB per second Controller time? Depends on controller hardware need to examine each case individually

17 Arrivals Introduction to Queuing Theory Queue Queuing System Departures What about queuing time?? Let s apply some queuing theory Queuing Theory applies to long term, steady state behavior Arrival rate = Departure rate Little s Law: Mean # tasks in system = arrival rate x mean response time Observed by many, Little was first to prove Simple interpretation: you should see the same number of tasks in queue when entering as when leaving. Applies to any system in equilibrium, as long as nothing in black box is creating or destroying tasks Typical queuing theory doesn t deal with transient behavior, only steady-state behavior Controller Disk

18 Disk Scheduling Disk can do only one request at a time; What order do you choose to do queued requests? User Requests 2,2 5,2 7,2 3,10 FIFO Order Fair among requesters, but order of arrival may be to random spots on the disk Very long seeks SSTF: Shortest seek time first 2,1 Pick the request that s closest on the disk Although called SSTF, today must include rotational delay in calculation, since rotation can be as long as seek Con: SSTF good at reducing seeks, but may lead to starvation SCAN: Implements an Elevator Algorithm: take the closest request in the direction of travel No starvation, but retains flavor of SSTF S-SCAN: Circular-Scan: only goes in one direction Skips any requests on the way back Fairer than SCAN, not biased towards pages in middle 2,3 Head Disk Head

19 Building a File System File System: Layer of OS that transforms block interface of disks (or other block devices) into Files, Directories, etc. File System Components Disk Management: collecting disk blocks into files Naming: Interface to find files by name, not by blocks Protection: Layers to keep data secure Reliability/Durability: Keeping of files durable despite crashes, media failures, attacks, etc User vs. System View of a File User s view: Durable Data Structures System s view (system call interface): Collection of Bytes (UNIX) Doesn t matter to system what kind of data structures you want to store on disk! System s view (inside OS): Collection of blocks (a block is a logical transfer unit, while a sector is the physical transfer unit) Block size sector size; in UNIX, block size is 4KB

20 Translating from User to System View File System What happens if user says: give me bytes 2 12? Fetch block corresponding to those bytes Return just the correct portion of the block What about: write bytes 2 12? Fetch block Modify portion Write out Block Everything inside File System is in whole size blocks For example, getc(), putc() buffers something like 4096 bytes, even if interface is one byte at a time From now on, file is a collection of blocks

21 Disk Management Policies Basic entities on a disk: File: user-visible group of blocks arranged sequentially in logical space Directory: user-visible index mapping names to files Access disk as linear array of blocks. Two Options: Identify blocks as vectors [cylinder, surface, sector]. Sort in cylinder-major order. Not used much anymore. Logical Block Addressing (LBA). Every block has integer address from zero up to max number of cylinders. Controller translates from address physical position First case: OS/BIOS must deal with bad blocks Second case: hardware shields OS from structure of disk Need way to track free disk blocks Link free blocks together too slow today Use bitmap to represent free space on disk Need way to structure files: File Header Track which blocks belong at which offsets within the logical file structure Optimize placement of files disk blocks to match access and usage patterns

22 Designing the File System: Access Patterns How do users access files? Need to know type of access patterns user is likely to throw at system Sequential Access: bytes read in order ( give me the next X bytes, then give me next, etc ) Almost all file access are of this flavor Random Access: read/write element out of middle of array ( give me bytes i j ) Less frequent, but still important. For example, virtual memory backing file: page of memory stored in file Want this to be fast don t want to have to read all bytes to get to the middle of the file Content-based Access: ( find me 100 bytes starting with ABCD ) Example: employee records once you find the bytes, increase my salary by a factor of 2 Many systems don t provide this; instead, databases are built on top of disk access to index content (requires efficient random access)

23 Designing the File System: Usage Patterns Most files are small (for example,.login,.c files) A few files are big images, videos However, most files are small.class s,.o s,.c s, etc. Large files use up most of the disk space and bandwidth to/from disk May seem contradictory, but a few enormous files are equivalent to an immense # of small files Although we will use these observations, beware usage patterns: Good idea to look at usage patterns: beat competitors by optimizing for frequent patterns Except: changes in performance or cost can alter usage patterns. Maybe UNIX has lots of small files because big files are really inefficient?

24 How to organize files on disk Goals: Maximize sequential performance Easy random access to file Easy management of file (growth, truncation, etc) First Technique: Continuous Allocation Use continuous range of blocks in logical block space Analogous to base+bounds in virtual memory User says in advance how big file will be (disadvantage) Search bit-map for space using best fit/first fit What if not enough contiguous space for new file? File Header Contains: First sector/lba in file File size (# of sectors) Pros: Fast Sequential Access, Easy Random access Cons: External Fragmentation/Hard to grow files Free holes get smaller and smaller Could compact space, but that would be really expensive Continuous Allocation used by IBM 360 Result of allocation and management cost: People would create a big file, put their file in the middle

25 How to organize files on disk Second Technique: Linked List Approach Each block, pointer to next on disk File Header Null Pros: Can grow files dynamically, Free list same as file Cons: Bad Sequential Access (seek between each block), Unreliable (lose block, lose rest of file) Serious Con: Bad random access!!!! Technique originally from Alto (First PC, built at Xerox) No attempt to allocate contiguous blocks

26 Linked Allocation: File-Allocation Table (FAT) MSDOS links pages together to create a file Links not in pages, but in the File Allocation Table (FAT) FAT contains an entry for each block on the disk FAT Entries corresponding to blocks of file linked together Access properies: Sequential access expensive unless FAT cached in memory Random access expensive always, but really expensive if FAT not cached in memory

27 How to Organize Files on Disk Third Technique: Indexed Files System Allocates file header block to hold array of pointers big enough to point to all blocks User pre-declares max file size; Pros: Can easily grow up to space allocated for index Random access is fast Cons: Clumsy to grow file bigger than table size Still lots of seeks: blocks may be spread over disk

28 Multilevel Indexed Files (UNIX 4.1) Multilevel Indexed Files: Like multilevel address translation (from UNIX 4.1 BSD) Key idea: efficient for small files, but still allow big files File header contains 13 pointers Fixed size table, pointers not all equivalent This header is called an inode in UNIX File Header format: First 10 pointers are to data blocks Block 11 points to indirect block containing 256 blocks Block 12 points to doubly indirect block containing 256 indirect blocks for total of 64K blocks Block 13 points to a triply indirect block (16M blocks) Discussion Basic technique places an upper limit on file size that is approximately 16Gbytes Designers thought this was bigger than anything anyone would need. Much bigger than a disk at the time Fallacy: today, EOS producing 2TB of data per day Pointers get filled in dynamically: need to allocate indirect block only when file grows > 10 blocks. On small files, no indirection needed

29 Example of Multilevel Indexed Files Sample file in multilevel indexed format: How many accesses for block #23? (assume file header accessed on open)? Two: One for indirect block, one for data How about block #5? One: One for data Block #340? Three: double indirect block, indirect block, and data UNIX 4.1 Pros and cons Pros: Simple (more or less) Files can easily expand (up to a point) Small files particularly cheap and easy Cons: Lots of seeks Very large files must read many indirect block (four I/Os per block!)

30 Attack of the Rotational Delay Problem: Missing blocks due to rotational delay Issue: Read one block, do processing, and read next block. In meantime, disk has continued turning: missed next block! Need 1 revolution/block! Skip Sector Track Buffer (Holds complete track) Solution1: Skip sector positioning ( interleaving:) Place the blocks from one file on every other block of a track: give time for processing to overlap rotation Solution2: Read ahead: read next block right after first, even if application hasn t asked for it yet. This can be done either by OS (read ahead) By disk itself (track buffers). Many disk controllers have internal RAM that allows them to read a complete track Important Aside: Modern disks+controllers do many complex things under the covers Track buffers, elevator algorithms, bad block filtering

31 How do we actually access files? All information about a file contained in its file header UNIX calls this an inode Inodes are global resources identified by index ( inumber ) Once you load the header structure, all the other blocks of the file are locatable Question: how does the user ask for a particular file? One option: user specifies an inode by a number (index). Imagine: open( ) Better option: specify by textual name Have to map name inumber Another option: Icon This is how Apple made its money. Graphical user interfaces. Point to a file and click. Naming: The process by which a system translates from user-visible names to system resources In the case of files, need to translate from strings (textual names) or icons to inumbers/inodes For global file systems, data may be spread over globe need to translate from strings or icons to some combination of physical server location and inumber

32 Directories Directories Hierarchical name space: Files named by ordered set (e.g.: /programs/p/list) Directories: a special type of relation Just a table of (file name, inumber) pairs Question: how is the relation stored? Directories often stored just like files Can store inumber for directories or files in other directories Question: how is the directory structured? Needs to be quickly searchable!

33 Where are inodes stored? In early UNIX and DOS/Windows FAT file system, headers stored in special array in outermost cylinders Header not stored anywhere near the data blocks. To read a small file, seek to get header, seek back to data. Fixed size, set when disk is formatted. At formatting time, a fixed number of inodes were created (They were each given a unique number, called an inumber ) Later versions of UNIX moved the header information to be closer to the data blocks Often, inode for file stored in same cylinder group as parent directory of the file (makes an ls of that directory run fast). Pros: Reliability: whatever happens to the disk, you can find all of the files (even if directories might be disconnected) UNIX BSD 4.2 puts a portion of the file header array on each cylinder. For small directories, can fit all data, file headers, etc in same cylinder no seeks! File headers much smaller than whole block (a few hundred bytes), so multiple headers fetched from disk at same time

34 Summary I/O Controllers: Hardware that controls actual device Processor Accesses through I/O instructions, load/store to special physical memory Report their results through either interrupts or a status register that processor looks at occasionally (polling) Disk Performance: Queuing time + Controller + Seek + Rotational + Transfer Rotational latency: on average ½ rotation Transfer time: spec of disk depends on rotation speed and bit storage density Queuing Latency: M/M/1 and M/G/1 queues: simplest to analyze As utilization approaches 100%, latency T q = T ser x ½(1+C) x u/(1 u)) File System: Transforms blocks into Files and Directories Optimize for access and usage patterns Maximize sequential access, allow efficient random access

35 Directories Directory: a relation used for naming Just a table of (file name, inumber) pairs How are directories constructed? Directories often stored in files Reuse of existing mechanism Directory named by inode/inumber like other files Needs to be quickly searchable Options: Simple list or Hashtable Can be cached into memory in easier form to search How are directories modified? System calls for manipulation: mkdir, rmdir Ties to file creation/destruction On creating a file by name, new inode grabbed and associated with new file in particular directory Directory Hierarchy Directories organized into a hierarchical structure Seems standard, but in early 70s it wasn t Permits much easier organization of data structures Entries in directory can be either files or directories Files named by ordered set (e.g.: /programs/p/list)

36 Directory Structure Directory Structure Not really a hierarchy! Many systems allow directory structure to be organized as an acyclic graph or even a (potentially) cyclic graph Hard Links: different names for the same file Multiple directory entries point at the same file Soft Links: shortcut pointers to other files Implemented by storing the logical name of actual file Name Resolution: The process of converting a logical name into a physical resource (like a file) Traverse succession of directories until reach target file Global file system: May be spread across the network

37 Directory Structure (Con t) How many disk accesses to resolve /avi/book/count? Read in file header for root (fixed spot on disk) Read in first data bock for root Table of file name/index pairs. Search linearly ok since directories typically very small Read in file header for avi Read in first data block for avi ; search for book Read in file header for book Read in first data block for book ; search for count Read in file header for count Current working directory: Per-address-space pointer to a directory (inode) used for resolving file names Allows user to specify relative filename instead of absolute path (say CWD= /avi/book can resolve count )

38 Where are inodes stored? In early UNIX and DOS/Windows FAT file system, headers stored in special array in outermost cylinders Header not stored near the data blocks. To read a small file, seek to get header, seek back to data. Fixed size, set when disk is formatted. At formatting time, a fixed number of inodes were created (They were each given a unique number, called an inumber ) Later versions of UNIX moved the header information to be closer to the data blocks Often, inode for file stored in same cylinder group as parent directory of the file (makes an ls of that directory run fast). Pros: UNIX BSD 4.2 puts a portion of the file header array on each cylinder. For small directories, can fit all data, file headers, etc in same cylinder no seeks! File headers much smaller than whole block (a few hundred bytes), so multiple headers fetched from disk at same time Reliability: whatever happens to the disk, you can find many of the files (even if directories disconnected)

39 In-Memory File System Structures Open system call: Resolves file name, finds file control block (inode) Makes entries in per-process and system-wide tables Returns index (called file handle ) in open-file table Read/write system calls: Use file handle to locate inode Perform appropriate reads or writes

40 File System Caching Key Idea: Exploit locality by caching data in memory Name translations: Mapping from paths inodes Disk blocks: Mapping from block address disk content Buffer Cache: Memory used to cache kernel resources, including disk blocks and name translations Can contain dirty blocks (blocks yet on disk) Replacement policy? LRU Can afford overhead of timestamps for each disk block Advantages: Works very well for name translation Works well in general as long as memory is big enough to accommodate a host s working set of files. Disadvantages: Fails when some application scans through file system, thereby flushing the cache with data used only once Example: find. exec grep foo {} \; Other Replacement Policies? Some systems allow applications to request other policies Example, Use Once : File system can discard blocks as soon as they are used

41 File System Caching (con t) Cache Size: How much memory should the OS allocate to the buffer cache vs virtual memory? Too much memory to the file system cache won t be able to run many applications at once Too little memory to file system cache many applications may run slowly (disk caching not effective) Solution: adjust boundary dynamically so that the disk access rates for paging and file access are balanced Read Ahead Prefetching: fetch sequential blocks early Key Idea: exploit fact that most common file access is sequential by prefetching subsequent disk blocks ahead of current read request (if they are not already in memory) Elevator algorithm can efficiently interleave groups of prefetches from concurrent applications How much to prefetch? Too many imposes delays on requests by other applications Too few causes many seeks (and rotational delays) among concurrent file requests

42 File System Caching (con t) Delayed Writes: Writes to files not immediately sent out to disk Instead, write() copies data from user space buffer to kernel buffer (in cache) Enabled by presence of buffer cache: can leave written file blocks in cache for a while If some other application tries to read data before written to disk, file system will read from cache Flushed to disk periodically (e.g. in UNIX, every 30 sec) Advantages: Disk scheduler can efficiently order lots of requests Disk allocation algorithm can be run with correct size value for a file Some files need never get written to disk! (e..g temporary scratch files written /tmp often don t exist for 30 sec) Disadvantages What if system crashes before file has been written out? Worse yet, what if system crashes before a directory file has been written out? (lose pointer to inode!)

43 Important ilities Availability: the probability that the system can accept and process requests Often measured in nines of probability. So, a 99.9% probability is considered 3-nines of availability Key idea here is independence of failures Durability: the ability of a system to recover data despite faults This idea is fault tolerance applied to data Doesn t necessarily imply availability: information on pyramids was very durable, but could not be accessed until discovery of Rosetta Stone Reliability: the ability of a system or component to perform its required functions under stated conditions for a specified period of time (IEEE definition) Usually stronger than simply availability: means that the system is not only up, but also working correctly Includes availability, security, fault tolerance/durability Must make sure data survives system crashes, disk crashes, other problems

44 How to make file system durable? Disk blocks contain Reed-Solomon error correcting codes (ECC) to deal with small defects in disk drive Can allow recovery of data from small media defects Make sure writes survive in short term Either abandon delayed writes or use special, battery-backed RAM (called non-volatile RAM or NVRAM) for dirty blocks in buffer cache. Make sure that data survives in long term Need to replicate! More than one copy of data! Important element: independence of failure Could put copies on one disk, but if disk head fails Could put copies on different disks, but if server fails Could put copies on different servers, but if building is struck by lightning. Could put copies on servers in different continents RAID: Redundant Arrays of Inexpensive Disks Data stored on multiple disks (redundancy) Either in software or hardware In hardware case, done by disk controller; file system may not even know that there is more than one disk in use

45 Hardware RAID: Subsystem Organization CPU host adapter array controller single board disk controller manages interface to host, DMA control, buffering, parity logic physical device control Some systems duplicate all hardware, namely controllers, busses, etc. single board disk controller single board disk controller single board disk controller often piggy-backed in small format devices

46 RAID 1: Disk Mirroring/Shadowing recovery group Each disk is fully duplicated onto its "shadow For high I/O rate, high availability environments Most expensive solution: 100% capacity overhead Bandwidth sacrificed on write: Logical write = two physical writes Highest bandwidth when disk heads and rotation fully synchronized (hard to do exactly) Reads may be optimized Can have two independent reads to same data Recovery: Disk failure replace disk and copy data to new disk Hot Spare: idle disk already attached to system to be used for immediate replacement

47 RAID 5+: High I/O Rate Parity Data stripped across multiple disks Successive blocks stored on successive (non-parity) disks Increased bandwidth over single disk Parity block (in green) constructed by XORing data bocks in stripe P0=D0 D1 D2 D3 Can destroy any one disk and still reconstruct data Suppose D3 fails, then can reconstruct: D3=D0 D1 D2 P0 D0 D1 D2 D3 P0 D4 D5 D6 P1 D7 D8 D9 P2 D10 D11 D12 P3 D13 D14 D15 P4 D16 D17 D18 D19 D20 D21 D22 D23 P5 Disk 1 Disk 2 Disk 3 Disk 4 Disk 5 Stripe Unit Increasing Logical Disk Addresses

48 Remote File Systems: Virtual File System (VFS) VFS: Virtual abstraction similar to local file system Instead of inodes has vnodes Compatible with a variety of local and remote file systems provides object-oriented way of implementing file systems VFS allows the same system call interface (the API) to be used for different types of file systems The API is to the VFS interface, rather than any specific type of file system

49 Network File System (NFS) Three Layers for NFS system UNIX file-system interface: open, read, write, close calls + file descriptors VFS layer: distinguishes local from remote files Calls the NFS protocol procedures for remote requests NFS service layer: bottom layer of the architecture Implements the NFS protocol NFS Protocol: remote procedure calls (RPC) for file operations on server Reading/searching a directory manipulating links and directories accessing file attributes/reading and writing files NFS servers are stateless; each request provides all arguments require for execution Modified data must be committed to the server s disk before results are returned to the client lose some of the advantages of caching Can lead to weird results: write file on one client, read on other, get old data

50 Schematic View of NFS Architecture

51 Summary Multilevel index files Inode contains pointers to actual blocks, indirect blocks, double indirect blocks, etc Optimizations for sequential access: start new files in open ranges of free blocks Rotational Optimization Naming: act of translating from user-visible names to actual system resources Directories used for naming for local file systems Important system properties Availability: how often is the resource available? Durability: how well is data preserved against faults? Reliability: how often is resource performing correctly? RAID: Redundant Arrays of Inexpensive Disks RAID1: mirroring, RAID5: Parity block VFS: Virtual File System layer NFS: An example use of the VFS layer

CS162 Operating Systems and Systems Programming Lecture 17. Disk Management and File Systems. Review: Want Standard Interfaces to Devices

CS162 Operating Systems and Systems Programming Lecture 17. Disk Management and File Systems. Review: Want Standard Interfaces to Devices Review: Want Standard Interfaces to Devices CS162 Operating Systems and Systems Programming Lecture 17 Disk Management and File Systems March 22, 2006 Prof. Anthony D. Joseph http://inst.eecs.berkeley.edu/~cs162

More information

Operating Systems (1DT020 & 1TT802) Lecture 11. File system Interface (cont d), Disk Management, File System Implementation.

Operating Systems (1DT020 & 1TT802) Lecture 11. File system Interface (cont d), Disk Management, File System Implementation. Operating Systems (1DT020 & 1TT802) Lecture 11 File system Interface (cont d), Disk Management, File System Implementation May 12, 2008 Léon Mugwaneza http://www.it.uu.se/edu/course/homepage/os/vt08 Review

More information

Page 1. Recap: File System Goals" Recap: Linked Allocation"

Page 1. Recap: File System Goals Recap: Linked Allocation Recap: File System Goals" CS162 Operating Systems and Systems Programming Lecture 14 File Systems (cont d), Key Value Storage Systems" Maximize sequential performance Efiicient random access to file Easy

More information

CS162 Operating Systems and Systems Programming Lecture 17. Disk Management and File Systems. Page 1

CS162 Operating Systems and Systems Programming Lecture 17. Disk Management and File Systems. Page 1 CS162 Operating Systems and Systems Programming Lecture 17 Disk Management and File Systems April 2, 2008 Prof. Anthony D. Joseph http://inst.eecs.berkeley.edu/~cs162 Review: Want Standard Interfaces to

More information

Operating Systems (1DT020 & 1TT802) Lecture 12. File System Implementation (continued) I/O systems. Léon Mugwaneza

Operating Systems (1DT020 & 1TT802) Lecture 12. File System Implementation (continued) I/O systems. Léon Mugwaneza Operating Systems (1DT020 & 1TT802) Lecture 12 File System Implementation (continued) I/O systems May 12, 2008 Léon Mugwaneza http://www.it.uu.se/edu/course/homepage/os/vt08 Review: Disk Management Policies

More information

CS162 Operating Systems and Systems Programming Lecture 19. File Systems continued Distributed Systems. Review: A Little Queuing Theory: Some Results

CS162 Operating Systems and Systems Programming Lecture 19. File Systems continued Distributed Systems. Review: A Little Queuing Theory: Some Results CS162 Operating Systems and Systems Programming Lecture 19 File Systems continued Distributed Systems November 5, 2007 Prof. John Kubiatowicz http://inst.eecs.berkeley.edu/~cs162 Review: A Little Queuing

More information

CS162 Operating Systems and Systems Programming Lecture 17. Disk Management and File Systems

CS162 Operating Systems and Systems Programming Lecture 17. Disk Management and File Systems CS162 Operating Systems and Systems Programming Lecture 17 Disk Management and File Systems March 18, 2010 Ion Stoica http://inst.eecs.berkeley.edu/~cs162 Review: Want Standard Interfaces to Devices Block

More information

CS162 Operating Systems and Systems Programming Lecture 14 File Systems (Part 2)"

CS162 Operating Systems and Systems Programming Lecture 14 File Systems (Part 2) CS162 Operating Systems and Systems Programming Lecture 14 File Systems (Part 2)" March 17, 2014! Anthony D. Joseph! http://inst.eecs.berkeley.edu/~cs162! Review: Storage Performance" Hard (Magnetic) Disk

More information

Page 1. Review: Storage Performance" SSD Firmware Challenges" SSD Issues" CS162 Operating Systems and Systems Programming Lecture 14

Page 1. Review: Storage Performance SSD Firmware Challenges SSD Issues CS162 Operating Systems and Systems Programming Lecture 14 Review: Storage Performance" Hard (Magnetic) Disk Performance: CS162 Operating Systems and Systems Programming Lecture 14 Latency = Queuing time + Controller + Seek + Rotational + Transfer Rotational latency:

More information

Page 1. CS194-3/CS16x Introduction to Systems. Lecture 15. Filesystems

Page 1. CS194-3/CS16x Introduction to Systems. Lecture 15. Filesystems CS194-3/CS16x Introduction to Systems Lecture 15 Filesystems October 17, 2007 Prof. Anthony D. Joseph http://www.cs.berkeley.edu/~adj/cs16x Review: Magnetic Disk Characteristic Cylinder: all the tracks

More information

CS162 Operating Systems and Systems Programming Lecture 17. Disk Management and File Systems

CS162 Operating Systems and Systems Programming Lecture 17. Disk Management and File Systems CS162 Operating Systems and Systems Programming Lecture 17 Disk Management and File Systems October 29, 2007 Prof. John Kubiatowicz http://inst.eecs.berkeley.edu/~cs162 Review: Want Standard Interfaces

More information

CS162 Operating Systems and Systems Programming Lecture 18. File Systems, Naming, and Directories

CS162 Operating Systems and Systems Programming Lecture 18. File Systems, Naming, and Directories CS162 Operating Systems and Systems Programming Lecture 18 File Systems, Naming, and Directories November 3 rd, 2008 Prof. John Kubiatowicz http://inst.eecs.berkeley.edu/~cs162 Review: Device Drivers Device

More information

CS162 Operating Systems and Systems Programming Lecture 18. File Systems, Naming, and Directories

CS162 Operating Systems and Systems Programming Lecture 18. File Systems, Naming, and Directories CS162 Operating Systems and Systems Programming Lecture 18 File Systems, Naming, and Directories October 31, 2007 Prof. John Kubiatowicz http://inst.eecs.berkeley.edu/~cs162 Review: Device Drivers Device

More information

CS162 Operating Systems and Systems Programming Lecture 20. Reliability and Access Control / Distributed Systems

CS162 Operating Systems and Systems Programming Lecture 20. Reliability and Access Control / Distributed Systems CS162 Operating Systems and Systems Programming Lecture 20 Reliability and Access Control / Distributed Systems November 10, 2008 Prof. John Kubiatowicz http://inst.eecs.berkeley.edu/~cs162 Review: Example

More information

Page 1. CS162 Operating Systems and Systems Programming Lecture 20. Reliability and Access Control / Distributed Systems.

Page 1. CS162 Operating Systems and Systems Programming Lecture 20. Reliability and Access Control / Distributed Systems. Goals for Today CS162 Operating Systems and Systems Programming Lecture 20 File Caching Durability Authorization Distributed Systems Reliability and Access Control / Distributed Systems April 6, 2010 Ion

More information

Page 1. CS194-3/CS16x Introduction to Systems. Lecture 14. I/O, Disks, Filesystems. Goals for Today. I/O Systems Hardware Access Device Drivers

Page 1. CS194-3/CS16x Introduction to Systems. Lecture 14. I/O, Disks, Filesystems. Goals for Today. I/O Systems Hardware Access Device Drivers Goals for Today CS194-3/CS16x Introduction to Systems Lecture 14 I/O, Disks, Filesystems October 15, 2007 Prof. Anthony D. Joseph http://www.cs.berkeley.edu/~adj/cs16x I/O Systems Hardware Access Device

More information

CS 162 Operating Systems and Systems Programming Professor: Anthony D. Joseph Spring Lecture 18: Naming, Directories, and File Caching

CS 162 Operating Systems and Systems Programming Professor: Anthony D. Joseph Spring Lecture 18: Naming, Directories, and File Caching CS 162 Operating Systems and Systems Programming Professor: Anthony D. Joseph Spring 2004 Lecture 18: Naming, Directories, and File Caching 18.0 Main Points How do users name files? What is a name? Lookup:

More information

CS 162 Operating Systems and Systems Programming Professor: Anthony D. Joseph Spring Lecture 18: Naming, Directories, and File Caching

CS 162 Operating Systems and Systems Programming Professor: Anthony D. Joseph Spring Lecture 18: Naming, Directories, and File Caching CS 162 Operating Systems and Systems Programming Professor: Anthony D. Joseph Spring 2002 Lecture 18: Naming, Directories, and File Caching 18.0 Main Points How do users name files? What is a name? Lookup:

More information

CS162 Operating Systems and Systems Programming Lecture 16. I/O Systems. Page 1

CS162 Operating Systems and Systems Programming Lecture 16. I/O Systems. Page 1 CS162 Operating Systems and Systems Programming Lecture 16 I/O Systems March 31, 2008 Prof. Anthony D. Joseph http://inst.eecs.berkeley.edu/~cs162 Review: Hierarchy of a Modern Computer System Take advantage

More information

Page 1. CS162 Operating Systems and Systems Programming Lecture 16. File Systems, Naming, Directories, and Caching"

Page 1. CS162 Operating Systems and Systems Programming Lecture 16. File Systems, Naming, Directories, and Caching CS162 Operating Systems and Systems Programming Lecture 16 File Systems, Naming, Directories, and Caching" October 24, 2011! Anthony D. Joseph and Ion Stoica! http://inst.eecs.berkeley.edu/~cs162! Review:

More information

Page 1. Quiz 13.1: Synchronization" Quiz 13.1: Synchronization" CS162 Operating Systems and Systems Programming Lecture 13. Disk/SSDs, File Systems"

Page 1. Quiz 13.1: Synchronization Quiz 13.1: Synchronization CS162 Operating Systems and Systems Programming Lecture 13. Disk/SSDs, File Systems CS162 Operating Systems and Systems Programming Lecture 13 Disk/SSDs, File Systems" October 10, 2012 Ion Stoica http://inst.eecs.berkeley.edu/~cs162 Q1: True _ False _ During a critical section, a thread

More information

Lecture S3: File system data layout, naming

Lecture S3: File system data layout, naming Lecture S3: File system data layout, naming Review -- 1 min Intro to I/O Performance model: Log Disk physical characteristics/desired abstractions Physical reality Desired abstraction disks are slow fast

More information

Page 1. CS162 Operating Systems and Systems Programming Lecture 13. File Systems, Naming, Directories, and Caching"

Page 1. CS162 Operating Systems and Systems Programming Lecture 13. File Systems, Naming, Directories, and Caching CS162 Operating Systems and Systems Programming Lecture 13 File Systems, Naming, Directories, and Caching" March 5, 2012! Anthony D. Joseph and Ion Stoica! http://inst.eecs.berkeley.edu/~cs162! Review:

More information

Disk Scheduling COMPSCI 386

Disk Scheduling COMPSCI 386 Disk Scheduling COMPSCI 386 Topics Disk Structure (9.1 9.2) Disk Scheduling (9.4) Allocation Methods (11.4) Free Space Management (11.5) Hard Disk Platter diameter ranges from 1.8 to 3.5 inches. Both sides

More information

I/O Performance" CS162 C o Operating Systems and Response" 300" Time (ms)" User" I/O" Systems Programming Thread" lle device" 200" Lecture 13 Queue"

I/O Performance CS162 C o Operating Systems and Response 300 Time (ms) User I/O Systems Programming Thread lle device 200 Lecture 13 Queue CS162 Operating Systems and Systems Programming Lecture 13 Disk/SSDs, File Systems (Part 1)" March 10, 2014 Anthony D. Joseph http://inst.eecs.berkeley.edu/~cs162 User" Thread" I/O Performance" Controller"

More information

we are here Page 1 Recall: How do we Hide I/O Latency? I/O & Storage Layers Recall: C Low level I/O

we are here Page 1 Recall: How do we Hide I/O Latency? I/O & Storage Layers Recall: C Low level I/O CS162 Operating Systems and Systems Programming Lecture 18 Systems October 30 th, 2017 Prof. Anthony D. Joseph http://cs162.eecs.berkeley.edu Recall: How do we Hide I/O Latency? Blocking Interface: Wait

More information

Chapter 11: File System Implementation. Objectives

Chapter 11: File System Implementation. Objectives Chapter 11: File System Implementation Objectives To describe the details of implementing local file systems and directory structures To describe the implementation of remote file systems To discuss block

More information

Operating Systems. Operating Systems Professor Sina Meraji U of T

Operating Systems. Operating Systems Professor Sina Meraji U of T Operating Systems Operating Systems Professor Sina Meraji U of T How are file systems implemented? File system implementation Files and directories live on secondary storage Anything outside of primary

More information

File Systems. CS170 Fall 2018

File Systems. CS170 Fall 2018 File Systems CS170 Fall 2018 Table of Content File interface review File-System Structure File-System Implementation Directory Implementation Allocation Methods of Disk Space Free-Space Management Contiguous

More information

u Covered: l Management of CPU & concurrency l Management of main memory & virtual memory u Currently --- Management of I/O devices

u Covered: l Management of CPU & concurrency l Management of main memory & virtual memory u Currently --- Management of I/O devices Where Are We? COS 318: Operating Systems Storage Devices Jaswinder Pal Singh Computer Science Department Princeton University (http://www.cs.princeton.edu/courses/cos318/) u Covered: l Management of CPU

More information

Introduction Disks RAID Tertiary storage. Mass Storage. CMSC 420, York College. November 21, 2006

Introduction Disks RAID Tertiary storage. Mass Storage. CMSC 420, York College. November 21, 2006 November 21, 2006 The memory hierarchy Red = Level Access time Capacity Features Registers nanoseconds 100s of bytes fixed Cache nanoseconds 1-2 MB fixed RAM nanoseconds MBs to GBs expandable Disk milliseconds

More information

Chapter-6. SUBJECT:- Operating System TOPICS:- I/O Management. Created by : - Sanjay Patel

Chapter-6. SUBJECT:- Operating System TOPICS:- I/O Management. Created by : - Sanjay Patel Chapter-6 SUBJECT:- Operating System TOPICS:- I/O Management Created by : - Sanjay Patel Disk Scheduling Algorithm 1) First-In-First-Out (FIFO) 2) Shortest Service Time First (SSTF) 3) SCAN 4) Circular-SCAN

More information

Ref: Chap 12. Secondary Storage and I/O Systems. Applied Operating System Concepts 12.1

Ref: Chap 12. Secondary Storage and I/O Systems. Applied Operating System Concepts 12.1 Ref: Chap 12 Secondary Storage and I/O Systems Applied Operating System Concepts 12.1 Part 1 - Secondary Storage Secondary storage typically: is anything that is outside of primary memory does not permit

More information

I/O, Disks, and RAID Yi Shi Fall Xi an Jiaotong University

I/O, Disks, and RAID Yi Shi Fall Xi an Jiaotong University I/O, Disks, and RAID Yi Shi Fall 2017 Xi an Jiaotong University Goals for Today Disks How does a computer system permanently store data? RAID How to make storage both efficient and reliable? 2 What does

More information

CS162 Operating Systems and Systems Programming Lecture 16. Page Allocation and Replacement (con t) I/O Systems

CS162 Operating Systems and Systems Programming Lecture 16. Page Allocation and Replacement (con t) I/O Systems CS162 Operating Systems and Systems Programming Lecture 16 Page Allocation and Replacement (con t) I/O Systems October 24, 2007 Prof. John Kubiatowicz http://inst.eecs.berkeley.edu/~cs162 Review: Page

More information

CS162 Operating Systems and Systems Programming Lecture 20. Reliability and Access Control / Distributed Systems

CS162 Operating Systems and Systems Programming Lecture 20. Reliability and Access Control / Distributed Systems CS162 Operating Systems and Systems Programming Lecture 20 Reliability and Access Control / Distributed Systems November 7, 2007 Prof. John Kubiatowicz http://inst.eecs.berkeley.edu/~cs162 Review: Example

More information

CSE380 - Operating Systems. Communicating with Devices

CSE380 - Operating Systems. Communicating with Devices CSE380 - Operating Systems Notes for Lecture 15-11/4/04 Matt Blaze (some examples by Insup Lee) Communicating with Devices Modern architectures support convenient communication with devices memory mapped

More information

November 9 th, 2015 Prof. John Kubiatowicz

November 9 th, 2015 Prof. John Kubiatowicz CS162 Operating Systems and Systems Programming Lecture 20 Reliability, Transactions Distributed Systems November 9 th, 2015 Prof. John Kubiatowicz http://cs162.eecs.berkeley.edu Acknowledgments: Lecture

More information

we are here I/O & Storage Layers Recall: C Low level I/O Recall: C Low Level Operations CS162 Operating Systems and Systems Programming Lecture 18

we are here I/O & Storage Layers Recall: C Low level I/O Recall: C Low Level Operations CS162 Operating Systems and Systems Programming Lecture 18 I/O & Storage Layers CS162 Operating Systems and Systems Programming Lecture 18 Systems April 2 nd, 2018 Profs. Anthony D. Joseph & Jonathan Ragan-Kelley http://cs162.eecs.berkeley.edu Application / Service

More information

I/O CANNOT BE IGNORED

I/O CANNOT BE IGNORED LECTURE 13 I/O I/O CANNOT BE IGNORED Assume a program requires 100 seconds, 90 seconds for main memory, 10 seconds for I/O. Assume main memory access improves by ~10% per year and I/O remains the same.

More information

CSE 380 Computer Operating Systems

CSE 380 Computer Operating Systems CSE 380 Computer Operating Systems Instructor: Insup Lee University of Pennsylvania Fall 2003 Lecture Note on Disk I/O 1 I/O Devices Storage devices Floppy, Magnetic disk, Magnetic tape, CD-ROM, DVD User

More information

File Layout and Directories

File Layout and Directories COS 318: Operating Systems File Layout and Directories Jaswinder Pal Singh Computer Science Department Princeton University (http://www.cs.princeton.edu/courses/cos318/) Topics File system structure Disk

More information

Quiz 12.1: I/O" Quiz 13.1: Synchronization" Quiz 12.1: I/O" Page 1. CS162 Operating Systems and Systems Programming Lecture 13

Quiz 12.1: I/O Quiz 13.1: Synchronization Quiz 12.1: I/O Page 1. CS162 Operating Systems and Systems Programming Lecture 13 CS162 Operating Systems and Systems Programming Lecture 13 Disk/SSDs, File Systems (Part 1)" October 16, 2013 Anthony D. Joseph and John Canny http://inst.eecs.berkeley.edu/~cs162 Quiz 12.1: I/O" Q1: True

More information

Chapter 10: Mass-Storage Systems. Operating System Concepts 9 th Edition

Chapter 10: Mass-Storage Systems. Operating System Concepts 9 th Edition Chapter 10: Mass-Storage Systems Silberschatz, Galvin and Gagne 2013 Chapter 10: Mass-Storage Systems Overview of Mass Storage Structure Disk Structure Disk Attachment Disk Scheduling Disk Management Swap-Space

More information

Chapter 10: Mass-Storage Systems

Chapter 10: Mass-Storage Systems Chapter 10: Mass-Storage Systems Silberschatz, Galvin and Gagne 2013 Chapter 10: Mass-Storage Systems Overview of Mass Storage Structure Disk Structure Disk Attachment Disk Scheduling Disk Management Swap-Space

More information

Input/Output. Today. Next. Principles of I/O hardware & software I/O software layers Disks. Protection & Security

Input/Output. Today. Next. Principles of I/O hardware & software I/O software layers Disks. Protection & Security Input/Output Today Principles of I/O hardware & software I/O software layers Disks Next Protection & Security Operating Systems and I/O Two key operating system goals Control I/O devices Provide a simple,

More information

Chapter 11. I/O Management and Disk Scheduling

Chapter 11. I/O Management and Disk Scheduling Operating System Chapter 11. I/O Management and Disk Scheduling Lynn Choi School of Electrical Engineering Categories of I/O Devices I/O devices can be grouped into 3 categories Human readable devices

More information

File. File System Implementation. File Metadata. File System Implementation. Direct Memory Access Cont. Hardware background: Direct Memory Access

File. File System Implementation. File Metadata. File System Implementation. Direct Memory Access Cont. Hardware background: Direct Memory Access File File System Implementation Operating Systems Hebrew University Spring 2009 Sequence of bytes, with no structure as far as the operating system is concerned. The only operations are to read and write

More information

Da-Wei Chang CSIE.NCKU. Professor Hao-Ren Ke, National Chiao Tung University Professor Hsung-Pin Chang, National Chung Hsing University

Da-Wei Chang CSIE.NCKU. Professor Hao-Ren Ke, National Chiao Tung University Professor Hsung-Pin Chang, National Chung Hsing University Chapter 11 Implementing File System Da-Wei Chang CSIE.NCKU Source: Professor Hao-Ren Ke, National Chiao Tung University Professor Hsung-Pin Chang, National Chung Hsing University Outline File-System Structure

More information

CS 537 Fall 2017 Review Session

CS 537 Fall 2017 Review Session CS 537 Fall 2017 Review Session Deadlock Conditions for deadlock: Hold and wait No preemption Circular wait Mutual exclusion QUESTION: Fix code List_insert(struct list * head, struc node * node List_move(struct

More information

V. Mass Storage Systems

V. Mass Storage Systems TDIU25: Operating Systems V. Mass Storage Systems SGG9: chapter 12 o Mass storage: Hard disks, structure, scheduling, RAID Copyright Notice: The lecture notes are mainly based on modifications of the slides

More information

CSE 120. Overview. July 27, Day 8 Input/Output. Instructor: Neil Rhodes. Hardware. Hardware. Hardware

CSE 120. Overview. July 27, Day 8 Input/Output. Instructor: Neil Rhodes. Hardware. Hardware. Hardware CSE 120 July 27, 2006 Day 8 Input/Output Instructor: Neil Rhodes How hardware works Operating Systems Layer What the kernel does API What the programmer does Overview 2 Kinds Block devices: read/write

More information

COS 318: Operating Systems. Storage Devices. Vivek Pai Computer Science Department Princeton University

COS 318: Operating Systems. Storage Devices. Vivek Pai Computer Science Department Princeton University COS 318: Operating Systems Storage Devices Vivek Pai Computer Science Department Princeton University http://www.cs.princeton.edu/courses/archive/fall11/cos318/ Today s Topics Magnetic disks Magnetic disk

More information

CS3600 SYSTEMS AND NETWORKS

CS3600 SYSTEMS AND NETWORKS CS3600 SYSTEMS AND NETWORKS NORTHEASTERN UNIVERSITY Lecture 9: Mass Storage Structure Prof. Alan Mislove (amislove@ccs.neu.edu) Moving-head Disk Mechanism 2 Overview of Mass Storage Structure Magnetic

More information

CS5460: Operating Systems Lecture 20: File System Reliability

CS5460: Operating Systems Lecture 20: File System Reliability CS5460: Operating Systems Lecture 20: File System Reliability File System Optimizations Modern Historic Technique Disk buffer cache Aggregated disk I/O Prefetching Disk head scheduling Disk interleaving

More information

COMP 3361: Operating Systems 1 Final Exam Winter 2009

COMP 3361: Operating Systems 1 Final Exam Winter 2009 COMP 3361: Operating Systems 1 Final Exam Winter 2009 Name: Instructions This is an open book exam. The exam is worth 100 points, and each question indicates how many points it is worth. Read the exam

More information

File. File System Implementation. Operations. Permissions and Data Layout. Storing and Accessing File Data. Opening a File

File. File System Implementation. Operations. Permissions and Data Layout. Storing and Accessing File Data. Opening a File File File System Implementation Operating Systems Hebrew University Spring 2007 Sequence of bytes, with no structure as far as the operating system is concerned. The only operations are to read and write

More information

Mass-Storage Structure

Mass-Storage Structure CS 4410 Operating Systems Mass-Storage Structure Summer 2011 Cornell University 1 Today How is data saved in the hard disk? Magnetic disk Disk speed parameters Disk Scheduling RAID Structure 2 Secondary

More information

Chapter 12 File-System Implementation

Chapter 12 File-System Implementation Chapter 12 File-System Implementation 1 Outline File-System Structure File-System Implementation Directory Implementation Allocation Methods Free-Space Management Efficiency and Performance Recovery Log-Structured

More information

Secondary storage. CS 537 Lecture 11 Secondary Storage. Disk trends. Another trip down memory lane

Secondary storage. CS 537 Lecture 11 Secondary Storage. Disk trends. Another trip down memory lane Secondary storage CS 537 Lecture 11 Secondary Storage Michael Swift Secondary storage typically: is anything that is outside of primary memory does not permit direct execution of instructions or data retrieval

More information

CSCI-GA Operating Systems. I/O : Disk Scheduling and RAID. Hubertus Franke

CSCI-GA Operating Systems. I/O : Disk Scheduling and RAID. Hubertus Franke CSCI-GA.2250-001 Operating Systems I/O : Disk Scheduling and RAID Hubertus Franke frankeh@cs.nyu.edu Disks Scheduling Abstracted by OS as files A Conventional Hard Disk (Magnetic) Structure Hard Disk

More information

COS 318: Operating Systems. Storage Devices. Kai Li Computer Science Department Princeton University

COS 318: Operating Systems. Storage Devices. Kai Li Computer Science Department Princeton University COS 318: Operating Systems Storage Devices Kai Li Computer Science Department Princeton University http://www.cs.princeton.edu/courses/archive/fall11/cos318/ Today s Topics Magnetic disks Magnetic disk

More information

Filesystem. Disclaimer: some slides are adopted from book authors slides with permission 1

Filesystem. Disclaimer: some slides are adopted from book authors slides with permission 1 Filesystem Disclaimer: some slides are adopted from book authors slides with permission 1 Storage Subsystem in Linux OS Inode cache User Applications System call Interface Virtual File System (VFS) Filesystem

More information

I/O Handling. ECE 650 Systems Programming & Engineering Duke University, Spring Based on Operating Systems Concepts, Silberschatz Chapter 13

I/O Handling. ECE 650 Systems Programming & Engineering Duke University, Spring Based on Operating Systems Concepts, Silberschatz Chapter 13 I/O Handling ECE 650 Systems Programming & Engineering Duke University, Spring 2018 Based on Operating Systems Concepts, Silberschatz Chapter 13 Input/Output (I/O) Typical application flow consists of

More information

Disk scheduling Disk reliability Tertiary storage Swap space management Linux swap space management

Disk scheduling Disk reliability Tertiary storage Swap space management Linux swap space management Lecture Overview Mass storage devices Disk scheduling Disk reliability Tertiary storage Swap space management Linux swap space management Operating Systems - June 28, 2001 Disk Structure Disk drives are

More information

Chapter 11: Implementing File-Systems

Chapter 11: Implementing File-Systems Chapter 11: Implementing File-Systems Chapter 11 File-System Implementation 11.1 File-System Structure 11.2 File-System Implementation 11.3 Directory Implementation 11.4 Allocation Methods 11.5 Free-Space

More information

Virtual Memory. Reading. Sections 5.4, 5.5, 5.6, 5.8, 5.10 (2) Lecture notes from MKP and S. Yalamanchili

Virtual Memory. Reading. Sections 5.4, 5.5, 5.6, 5.8, 5.10 (2) Lecture notes from MKP and S. Yalamanchili Virtual Memory Lecture notes from MKP and S. Yalamanchili Sections 5.4, 5.5, 5.6, 5.8, 5.10 Reading (2) 1 The Memory Hierarchy ALU registers Cache Memory Memory Memory Managed by the compiler Memory Managed

More information

I/O CANNOT BE IGNORED

I/O CANNOT BE IGNORED LECTURE 13 I/O I/O CANNOT BE IGNORED Assume a program requires 100 seconds, 90 seconds for main memory, 10 seconds for I/O. Assume main memory access improves by ~10% per year and I/O remains the same.

More information

COS 318: Operating Systems. Storage Devices. Jaswinder Pal Singh Computer Science Department Princeton University

COS 318: Operating Systems. Storage Devices. Jaswinder Pal Singh Computer Science Department Princeton University COS 318: Operating Systems Storage Devices Jaswinder Pal Singh Computer Science Department Princeton University http://www.cs.princeton.edu/courses/archive/fall13/cos318/ Today s Topics Magnetic disks

More information

Mass-Storage Structure

Mass-Storage Structure Operating Systems (Fall/Winter 2018) Mass-Storage Structure Yajin Zhou (http://yajin.org) Zhejiang University Acknowledgement: some pages are based on the slides from Zhi Wang(fsu). Review On-disk structure

More information

Ricardo Rocha. Department of Computer Science Faculty of Sciences University of Porto

Ricardo Rocha. Department of Computer Science Faculty of Sciences University of Porto Ricardo Rocha Department of Computer Science Faculty of Sciences University of Porto Slides based on the book Operating System Concepts, 9th Edition, Abraham Silberschatz, Peter B. Galvin and Greg Gagne,

More information

Storage Systems. Storage Systems

Storage Systems. Storage Systems Storage Systems Storage Systems We already know about four levels of storage: Registers Cache Memory Disk But we've been a little vague on how these devices are interconnected In this unit, we study Input/output

More information

COMP 530: Operating Systems File Systems: Fundamentals

COMP 530: Operating Systems File Systems: Fundamentals File Systems: Fundamentals Don Porter Portions courtesy Emmett Witchel 1 Files What is a file? A named collection of related information recorded on secondary storage (e.g., disks) File attributes Name,

More information

Tape pictures. CSE 30341: Operating Systems Principles

Tape pictures. CSE 30341: Operating Systems Principles Tape pictures 4/11/07 CSE 30341: Operating Systems Principles page 1 Tape Drives The basic operations for a tape drive differ from those of a disk drive. locate positions the tape to a specific logical

More information

Chapter 12: Mass-Storage

Chapter 12: Mass-Storage Chapter 12: Mass-Storage Systems Chapter 12: Mass-Storage Systems Revised 2010. Tao Yang Overview of Mass Storage Structure Disk Structure Disk Attachment Disk Scheduling Disk Management Swap-Space Management

More information

I/O and file systems. Dealing with device heterogeneity

I/O and file systems. Dealing with device heterogeneity I/O and file systems Abstractions provided by operating system for storage devices Heterogeneous -> uniform One/few storage objects (disks) -> many storage objects (files) Simple naming -> rich naming

More information

Operating Systems 2010/2011

Operating Systems 2010/2011 Operating Systems 2010/2011 Input/Output Systems part 2 (ch13, ch12) Shudong Chen 1 Recap Discuss the principles of I/O hardware and its complexity Explore the structure of an operating system s I/O subsystem

More information

Some material adapted from Mohamed Younis, UMBC CMSC 611 Spr 2003 course slides Some material adapted from Hennessy & Patterson / 2003 Elsevier

Some material adapted from Mohamed Younis, UMBC CMSC 611 Spr 2003 course slides Some material adapted from Hennessy & Patterson / 2003 Elsevier Some material adapted from Mohamed Younis, UMBC CMSC 6 Spr 23 course slides Some material adapted from Hennessy & Patterson / 23 Elsevier Science Characteristics IBM 39 IBM UltraStar Integral 82 Disk diameter

More information

Operating Systems. Week 9 Recitation: Exam 2 Preview Review of Exam 2, Spring Paul Krzyzanowski. Rutgers University.

Operating Systems. Week 9 Recitation: Exam 2 Preview Review of Exam 2, Spring Paul Krzyzanowski. Rutgers University. Operating Systems Week 9 Recitation: Exam 2 Preview Review of Exam 2, Spring 2014 Paul Krzyzanowski Rutgers University Spring 2015 March 27, 2015 2015 Paul Krzyzanowski 1 Exam 2 2012 Question 2a One of

More information

CSE380 - Operating Systems

CSE380 - Operating Systems CSE380 - Operating Systems Notes for Lecture 17-11/10/05 Matt Blaze, Micah Sherr (some examples by Insup Lee) Implementing File Systems We ve looked at the user view of file systems names, directory structure,

More information

Administrivia. CMSC 411 Computer Systems Architecture Lecture 19 Storage Systems, cont. Disks (cont.) Disks - review

Administrivia. CMSC 411 Computer Systems Architecture Lecture 19 Storage Systems, cont. Disks (cont.) Disks - review Administrivia CMSC 411 Computer Systems Architecture Lecture 19 Storage Systems, cont. Homework #4 due Thursday answers posted soon after Exam #2 on Thursday, April 24 on memory hierarchy (Unit 4) and

More information

Chapter 14: Mass-Storage Systems

Chapter 14: Mass-Storage Systems Chapter 14: Mass-Storage Systems Disk Structure Disk Scheduling Disk Management Swap-Space Management RAID Structure Disk Attachment Stable-Storage Implementation Tertiary Storage Devices Operating System

More information

Disks and I/O Hakan Uraz - File Organization 1

Disks and I/O Hakan Uraz - File Organization 1 Disks and I/O 2006 Hakan Uraz - File Organization 1 Disk Drive 2006 Hakan Uraz - File Organization 2 Tracks and Sectors on Disk Surface 2006 Hakan Uraz - File Organization 3 A Set of Cylinders on Disk

More information

CPS104 Computer Organization and Programming Lecture 18: Input-Output. Outline of Today s Lecture. The Big Picture: Where are We Now?

CPS104 Computer Organization and Programming Lecture 18: Input-Output. Outline of Today s Lecture. The Big Picture: Where are We Now? CPS104 Computer Organization and Programming Lecture 18: Input-Output Robert Wagner cps 104.1 RW Fall 2000 Outline of Today s Lecture The system Magnetic Disk Tape es DMA cps 104.2 RW Fall 2000 The Big

More information

Silberschatz, et al. Topics based on Chapter 13

Silberschatz, et al. Topics based on Chapter 13 Silberschatz, et al. Topics based on Chapter 13 Mass Storage Structure CPSC 410--Richard Furuta 3/23/00 1 Mass Storage Topics Secondary storage structure Disk Structure Disk Scheduling Disk Management

More information

Chapter 11: Implementing File Systems

Chapter 11: Implementing File Systems Silberschatz 1 Chapter 11: Implementing File Systems Thursday, November 08, 2007 9:55 PM File system = a system stores files on secondary storage. A disk may have more than one file system. Disk are divided

More information

I/O Management and Disk Scheduling. Chapter 11

I/O Management and Disk Scheduling. Chapter 11 I/O Management and Disk Scheduling Chapter 11 Categories of I/O Devices Human readable used to communicate with the user video display terminals keyboard mouse printer Categories of I/O Devices Machine

More information

Chapter 11: Implementing File Systems

Chapter 11: Implementing File Systems Chapter 11: Implementing File Systems Chapter 11: File System Implementation File-System Structure File-System Implementation Directory Implementation Allocation Methods Free-Space Management Efficiency

More information

Introduction. Secondary Storage. File concept. File attributes

Introduction. Secondary Storage. File concept. File attributes Introduction Secondary storage is the non-volatile repository for (both user and system) data and programs As (integral or separate) part of an operating system, the file system manages this information

More information

Final Exam Preparation Questions

Final Exam Preparation Questions EECS 678 Spring 2013 Final Exam Preparation Questions 1 Chapter 6 1. What is a critical section? What are the three conditions to be ensured by any solution to the critical section problem? 2. The following

More information

Database Systems. November 2, 2011 Lecture #7. topobo (mit)

Database Systems. November 2, 2011 Lecture #7. topobo (mit) Database Systems November 2, 2011 Lecture #7 1 topobo (mit) 1 Announcement Assignment #2 due today Assignment #3 out today & due on 11/16. Midterm exam in class next week. Cover Chapters 1, 2,

More information

Chapter 11: Implementing File Systems

Chapter 11: Implementing File Systems Chapter 11: Implementing File Systems Operating System Concepts 99h Edition DM510-14 Chapter 11: Implementing File Systems File-System Structure File-System Implementation Directory Implementation Allocation

More information

Module 13: Secondary-Storage

Module 13: Secondary-Storage Module 13: Secondary-Storage Disk Structure Disk Scheduling Disk Management Swap-Space Management Disk Reliability Stable-Storage Implementation Tertiary Storage Devices Operating System Issues Performance

More information

I/O Device Controllers. I/O Systems. I/O Ports & Memory-Mapped I/O. Direct Memory Access (DMA) Operating Systems 10/20/2010. CSC 256/456 Fall

I/O Device Controllers. I/O Systems. I/O Ports & Memory-Mapped I/O. Direct Memory Access (DMA) Operating Systems 10/20/2010. CSC 256/456 Fall I/O Device Controllers I/O Systems CS 256/456 Dept. of Computer Science, University of Rochester 10/20/2010 CSC 2/456 1 I/O devices have both mechanical component & electronic component The electronic

More information

I/O Systems and Storage Devices

I/O Systems and Storage Devices CSC 256/456: Operating Systems I/O Systems and Storage Devices John Criswell! University of Rochester 1 I/O Device Controllers I/O devices have both mechanical component & electronic component! The electronic

More information

I/O & Storage. Jin-Soo Kim ( Computer Systems Laboratory Sungkyunkwan University

I/O & Storage. Jin-Soo Kim ( Computer Systems Laboratory Sungkyunkwan University I/O & Storage Jin-Soo Kim ( jinsookim@skku.edu) Computer Systems Laboratory Sungkyunkwan University http://csl.skku.edu Today s Topics I/O systems Device characteristics: block vs. character I/O systems

More information

CSE325 Principles of Operating Systems. Mass-Storage Systems. David P. Duggan. April 19, 2011

CSE325 Principles of Operating Systems. Mass-Storage Systems. David P. Duggan. April 19, 2011 CSE325 Principles of Operating Systems Mass-Storage Systems David P. Duggan dduggan@sandia.gov April 19, 2011 Outline Storage Devices Disk Scheduling FCFS SSTF SCAN, C-SCAN LOOK, C-LOOK Redundant Arrays

More information

Storage systems. Computer Systems Architecture CMSC 411 Unit 6 Storage Systems. (Hard) Disks. Disk and Tape Technologies. Disks (cont.

Storage systems. Computer Systems Architecture CMSC 411 Unit 6 Storage Systems. (Hard) Disks. Disk and Tape Technologies. Disks (cont. Computer Systems Architecture CMSC 4 Unit 6 Storage Systems Alan Sussman November 23, 2004 Storage systems We already know about four levels of storage: registers cache memory disk but we've been a little

More information

Disks and RAID. CS 4410 Operating Systems. [R. Agarwal, L. Alvisi, A. Bracy, E. Sirer, R. Van Renesse]

Disks and RAID. CS 4410 Operating Systems. [R. Agarwal, L. Alvisi, A. Bracy, E. Sirer, R. Van Renesse] Disks and RAID CS 4410 Operating Systems [R. Agarwal, L. Alvisi, A. Bracy, E. Sirer, R. Van Renesse] Storage Devices Magnetic disks Storage that rarely becomes corrupted Large capacity at low cost Block

More information

Chapter 12: Mass-Storage Systems. Operating System Concepts 8 th Edition,

Chapter 12: Mass-Storage Systems. Operating System Concepts 8 th Edition, Chapter 12: Mass-Storage Systems, Silberschatz, Galvin and Gagne 2009 Chapter 12: Mass-Storage Systems Overview of Mass Storage Structure Disk Structure Disk Attachment Disk Scheduling Disk Management

More information