Bài giảng Operating System Concepts - Module 11: File-System Implementation

Tài liệu Bài giảng Operating System Concepts - Module 11: File-System Implementation: File-System ImplementationFile-System Structure Allocation MethodsFree-Space Management Directory ImplementationEfficiency and PerformanceRecoveryOperating System ConceptsFile-System StructureFile structureLogical storage unitCollection of related informationFile system resides on secondary storage (disks).File system organized into layers.File control block – storage structure consisting of information about a file.Operating System ConceptsContiguous AllocationEach file occupies a set of contiguous blocks on the disk.Simple – only starting location (block #) and length (number of blocks) are required.Random access.Wasteful of space (dynamic storage-allocation problem).Files cannot grow.Mapping from logical to physical.LA/512QRBlock to be accessed = ! + starting addressDisplacement into block = ROperating System ConceptsLinked AllocationEach file is a linked list of disk blocks: blocks may be scattered anywhere on the disk.pointerblock =Operating System ConceptsAllocate as needed, link...

ppt20 trang | Chia sẻ: honghanh66 | Lượt xem: 981 | Lượt tải: 0download
Bạn đang xem nội dung tài liệu Bài giảng Operating System Concepts - Module 11: File-System Implementation, để tải tài liệu về máy bạn click vào nút DOWNLOAD ở trên
File-System ImplementationFile-System Structure Allocation MethodsFree-Space Management Directory ImplementationEfficiency and PerformanceRecoveryOperating System ConceptsFile-System StructureFile structureLogical storage unitCollection of related informationFile system resides on secondary storage (disks).File system organized into layers.File control block – storage structure consisting of information about a file.Operating System ConceptsContiguous AllocationEach file occupies a set of contiguous blocks on the disk.Simple – only starting location (block #) and length (number of blocks) are required.Random access.Wasteful of space (dynamic storage-allocation problem).Files cannot grow.Mapping from logical to physical.LA/512QRBlock to be accessed = ! + starting addressDisplacement into block = ROperating System ConceptsLinked AllocationEach file is a linked list of disk blocks: blocks may be scattered anywhere on the disk.pointerblock =Operating System ConceptsAllocate as needed, link together; e.g., file starts at block 9Operating System ConceptsLinked Allocation (Cont.)Simple – need only starting addressFree-space management system – no waste of space No random accessMappingBlock to be accessed is the Qth block in the linked chain of blocks representing the file.Displacement into block = R + 1File-allocation table (FAT) – disk-space allocation used by MS-DOS and OS/2.LA/511QROperating System ConceptsIndexed AllocationBrings all pointers together into the index block.Logical view.index tableOperating System ConceptsExample of Indexed AllocationOperating System ConceptsIndexed Allocation (Cont.)Need index tableRandom accessDynamic access without external fragmentation, but have overhead of index block.Mapping from logical to physical in a file of maximum size of 256K words and block size of 512 words. We need only 1 block for index table.LA/512QRQ = displacement into index tableR = displacement into blockOperating System ConceptsIndexed Allocation – Mapping (Cont.)Mapping from logical to physical in a file of unbounded length (block size of 512 words).Linked scheme – Link blocks of index table (no limit on size).LA / (512 x 511)Q1R1Q1 = block of index tableR1 is used as follows:R1 / 512Q2R2Q2 = displacement into block of index tableR2 displacement into block of file:Operating System ConceptsIndexed Allocation – Mapping (Cont.)Two-level index (maximum file size is 5123)LA / (512 x 512)Q1R1Q1 = displacement into outer-indexR1 is used as follows:R1 / 512Q2R2Q2 = displacement into block of index tableR2 displacement into block of file:Operating System ConceptsIndexed Allocation – Mapping (Cont.)outer-indexindex tablefileOperating System ConceptsCombined Scheme: UNIX (4K bytes per block)Operating System ConceptsFree-Space ManagementBit vector (n blocks)012n-1bit[i] =0  block[i] free1  block[i] occupiedBlock number calculation(number of bits per word) *(number of 0-value words) +offset of first 1 bitOperating System ConceptsFree-Space Management (Cont.)Bit map requires extra space. Example: block size = 212 bytes disk size = 230 bytes (1 gigabyte) n = 230/212 = 218 bits (or 32K bytes)Easy to get contiguous files Linked list (free list)Cannot get contiguous space easilyNo waste of spaceGrouping CountingOperating System ConceptsFree-Space Management (Cont.)Need to protect:Pointer to free listBit mapMust be kept on diskCopy in memory and disk may differ.Cannot allow for block[i] to have a situation where bit[i] = 1 in memory and bit[i] = 0 on disk.Solution:Set bit[i] = 1 in disk.Allocate block[i]Set bit[i] = 1 in memoryOperating System ConceptsDirectory ImplementationLinear list of file names with pointer to the data blocks.simple to programtime-consuming to executeHash Table – linear list with hash data structure.decreases directory search timecollisions – situations where two file names hash to the same locationfixed sizeOperating System ConceptsEfficiency and PerformanceEfficiency dependent on:disk allocation and directory algorithmstypes of data kept in file’s directory entryPerformancedisk cache – separate section of main memory for frequently sued blocksfree-behind and read-ahead – techniques to optimize sequential accessimprove PC performance by dedicating section of memroy as virtual disk, or RAM disk.Operating System ConceptsVarious Disk-Caching LocationsOperating System ConceptsRecoveryConsistency checker – compares data in directory structure with data blocks on disk, and tries to fix inconsistencies.Use system programs to back up data from disk to another storage device (floppy disk, magnetic tape).Recover lost file or disk by restoring data from backup.Operating System Concepts

Các file đính kèm theo tài liệu này:

  • pptch11_6047.ppt
Tài liệu liên quan