Download presentation
Presentation is loading. Please wait.
Published byKateřina Bílková Modified over 5 years ago
1
Review for final Anything’s fair game, but emphasis on more recent stuff
2
Older topics Basic OS structure Processes
Understand the tradeoffs, know the terminology Processes Data structures Scheduling
3
Older topics (2) Threads Basic implementation Writing threaded coded
Writing thread-safe code Know your synchronization primitives Know how to use them Take your time and think!
4
Memory management Understand the alternatives for memory management
Tradeoffs, other issues Understand paging Structure of page tables, VAs, etc. Paging math Other bookkeeping Understand the memory hierarchy
5
Paging/VM TLBs Page eviction Why they work
Understand all the algorithms: FIFO, clock, LRU, LFU Tradeoffs: when they work well, when they don’t
6
Disks General layout of disks Physical performance characteristics
Cylinders, tracks, heads, etc. Physical performance characteristics Seek time, r/w bandwidth, etc. Given disk chars., how long would a read take? Disk scheduling Understand the tradeoffs
7
File systems Basic purpose of a file system Directory structure
The file system hierarchy Operations, file types, access types Directory structure Alternatives for data structures Free space list Indexed files, linked files, etc.
8
Basic UNIX file format inodes Direct blocks, indirect, doubly indirect
Understand the math Boot block, superblock, inode blocks, data blocks
9
File protection Principals, objects, actions Know the security matrix:
Principals on one side Objects on the other Actions are the entries Minimizing a sparse table Principal-based: capabilities Object-based: ACLs
10
Disk layout How to structure file systems on disk FFS/LFS RAID
Understand how they do the layout, understand why What workloads do they work well on? RAID Know your raid levels, and your raid math
11
Distributed FS Adds some wrinkles Naming: how to keep unique
Performance: how to hid the network delay Caching and cache coherency Replication
12
Distributed systems What are they? Types? Basic networking RPC
Ethernet/LL, IP, TCP RPC Why? How? (take all the regular function call steps, and decide how the network affects them)
13
Basic problems Terminology, structure-type problems
What are the advantages and disadvantages of a micro-kernel OS over the traditional monolithic system? Sub-type: algorithm families Scheduling of processes & disk, evictions Arithmetic problems What’s the average time to read a 1MB file on a disk with x cylinders, y rotation speed, z transfer BW?
14
Basic problems (2) Algorithm problems Programming questions
Given a reference to VA x, sketch the data structures and procedures necessary to read the value addressed? Page tables, secondary storage, TLB, etc. Programming questions
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.