CSE 451: Operating Systems Autumn 2009 Module 26 Course Review

Slides:



Advertisements
Similar presentations
Operating Systems ECE344 Midterm review Ding Yuan
Advertisements

More on Processes Chapter 3. Process image _the physical representation of a process in the OS _an address space consisting of code, data and stack segments.
CAS3SH3 Midterm Review. The midterm 50 min, Friday, Feb 27 th Materials through CPU scheduling closed book, closed note Types of questions: True & False,
Operating Systems Review.
Operating Systems ECE344 Ding Yuan Final Review Lecture 13: Final Review.
Review: Chapters 1 – Chapter 1: OS is a layer between user and hardware to make life easier for user and use hardware efficiently Control program.
CMPT 300: Final Review Chapters 8 – Memory Management: Ch. 8, 9 Address spaces Logical (virtual): generated by the CPU Physical: seen by the memory.
CMPT 300: Operating Systems Review THIS REIVEW SHOULD NOT BE USED AS PREDICTORS OF THE ACTUAL QUESTIONS APPEARING ON THE FINAL EXAM.
CMPT 300: Final Review Chapters 8 – Memory Management: Ch. 8, 9 Address spaces Logical (virtual): generated by the CPU Physical: seen by the memory.
Computer Organization and Architecture
CSE 451: Operating Systems Autumn 2013 Module 6 Review of Processes, Kernel Threads, User-Level Threads Ed Lazowska 570 Allen.
Chapter 3 Memory Management: Virtual Memory
Exam Review cs550 Operating Systems. Preliminary Information Exam will focus on new content, but old content is still fair game. Exam format will be the.
Silberschatz and Galvin  Chapters 3 and 5 Possible questions –Tracing a given program involving fork, exec, semaphores, and share memory –Wring.
CS 153 Design of Operating Systems Spring 2015 Final Review.
CS 153 Design of Operating Systems Spring 2015 Midterm Review.
CSE 451: Operating Systems Section 10 Project 3 wrap-up, final exam review.
Chapter 1 Computer System Overview Sections 1.1 to 1.6 Instruction exe cution Interrupt Memory hierarchy Cache memory Locality: spatial and temporal Problem.
CSE 451: Operating Systems Autumn 2013 Module 28 Course Review Ed Lazowska Allen Center 570 © 2013 Gribble, Lazowska, Levy,
Computers Operating System Essentials. Operating Systems PROGRAM HARDWARE OPERATING SYSTEM.
30 October Agenda for Today Introduction and purpose of the course Introduction and purpose of the course Organization of a computer system Organization.
CSE 451: Operating Systems Section 5 Midterm review.
Operating Systems ECE344 Ding Yuan Final Review Lecture 13: Final Review.
1 Rutgers UniversityCS 416: Operating Systems Final exam details December 22, pm-3pm. Venue: SEC 118. Tips: Spend time reading the questions before.
CSE 153 Design of Operating Systems Winter 2015 Midterm Review.
1/31/20161 Final Exam Dec 10. Monday. 4-7pm. Phelp 1160 Similar to midterm The exam is closed book. You can bring 2 page of notes (double sided) Nachos.
IT 344: Operating Systems Winter 2010 Module 23 Course Review Chia-Chi Teng CTB 265.
What is an Operating System? Various systems and their pros and cons –E.g. multi-tasking vs. Batch OS definitions –Resource allocator –Control program.
CSE 451: Operating Systems Winter 2015 Module 25 Virtual Machine Monitors Mark Zbikowski Allen Center 476 © 2013 Gribble, Lazowska,
Week 10 March 10, 2004 Adrienne Noble. Important Dates Project 4 due tomorrow (Friday) Final Exam on Tuesday, March 16, 2:30- 4:20pm.
Operating Systems: Summary INF1060: Introduction to Operating Systems and Data Communication.
CMPT 300: Operating Systems Course Summary THIS SUMMARY SHOULD NOT BE USED AS PREDICTORS OF THE ACTUAL QUESTIONS APPEARING ON THE FINAL EXAM.
Chapters 3 and 5 Possible questions
Section 10: Last section! Final review.
CSE 451: Operating Systems Spring 2012 Module 28 Course Review
CSE 451: Operating Systems
CSE 120 Principles of Operating
Operating System (OS) QUESTIONS AND ANSWERS
Section 10: Last section! Final review.
Chapter 9: Virtual-Memory Management
Page Replacement.
Chapter 15 – Part 1 The Internal Operating System
CSE 451: Operating Systems Winter 2007 Module 24 Course Review
CSE 451: Operating Systems Spring 2012 Module 6 Review of Processes, Kernel Threads, User-Level Threads Ed Lazowska 570 Allen.
Andy Wang Operating Systems COP 4610 / CGS 5675
CSE 451: Operating Systems Winter Module 22 Distributed File Systems
Sarah Diesburg Operating Systems CS 3430
CSE 451: Operating Systems Spring 2005 Module 23 Course Review
Exam Review Mark Stanovich Operating Systems COP
Process Description and Control
CSE 451: Operating Systems Autumn 2010 Module 27 Course Review
Lecture 2 Part 2 Process Synchronization
CSE 451: Operating Systems Spring 2005 Module 23 Course Review
CSE 451: Operating Systems
CSE451 - Section 10.
Operating Systems Lecture 1.
CSE 451: Operating Systems Autumn 2003 Lecture 10 Paging & TLBs
Major Topics in Operating Systems
CSE 451: Operating Systems Autumn 2003 Lecture 2 Architectural Support for Operating Systems Hank Levy 596 Allen Center 1.
February 5, 2004 Adrienne Noble
CSE 451: Operating Systems Autumn Module 24 Virtual Machine Monitors
CSE 451: Operating Systems Winter 2006 Module 24 Course Review
CSE 451: Operating Systems Winter 2007 Module 2 Architectural Support for Operating Systems Brian Bershad 562 Allen Center 1.
Review for final Anything’s fair game, but emphasis on more recent stuff.
Last section! Project 4 + EC due tomorrow Today: Project 4 questions
CSE451 - Section 10.
CSE 153 Design of Operating Systems Winter 2019
CSE 451: Operating Systems Autumn Module 24 Virtual Machine Monitors
Sarah Diesburg Operating Systems COP 4610
CSE 542: Operating Systems
Presentation transcript:

CSE 451: Operating Systems Autumn 2009 Module 26 Course Review Ed Lazowska lazowska@cs.washington.edu Allen Center 570 1

Architectural Support Privileged instructions what are they? how does the CPU know whether to execute them? why do they need to be privileged? what do they manipulate? Protected memory what are the various ways it can be implemented? Events exceptions: what generates them? trap vs. fault? interrupts: what generates them? 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan OS Structure What are the major components of an OS? How are they organized? what is the difference between monolithic, layered, microkernel OS’s? advantages and disadvantages? 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan Processes What is a process? What does it virtualize? differences between program, process, thread? what is contained in process? what does PCB contain? state queues? which states, what transitions are possible? when do transitions happen? Process manipulation what does fork() do? how about exec()? how do shells work? 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan Threads What is a thread? why are they useful? user-level vs. kernel-level threads? performance implications functionality implications How does thread scheduling differ from process scheduling? what operations do threads support? what happens on a thread context switch? what is saved in TCB? preemptive vs. non-preemptive scheduling? 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan Scheduling Long term vs. short term When does scheduling happen? job changes state, interrupts, exceptions, job creation Scheduling goals? maximize CPU utilization maximize job throughput minimize {turnaround time | waiting time | response time} batch vs. interactive: what are their goals? What is starvation? what causes it? FCFS/FIFO, SPT, SRPT, priority, RR, MLFQ… 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan Synchronization Why do we need it? data coordination? execution coordination? what are race conditions? when do they occur? when are resources shared? (variables, heap objects, …) What is mutual exclusion? what is a critical section? what are the requirements of critical sections? mutex, progress, bounded waiting, performance what are mechanisms for programming critical sections? locks, semaphores, monitors, condition variables 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan Locks What does it mean for acquire/release to be atomic? how can locks be implemented? spinlocks? interrupts? OS/thread-scheduler? test-and-set? limitations of locks? 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

Semaphores and Monitors basic operations: wait vs. signal? difference between semaphore and lock? when and how do threads block on semaphores? when do they wake? bounded buffers problem producer/consumer readers/writers problem how is all of this implemented Moving descriptors on and off queues Monitors the operations and their implementation 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan Deadlock static prevention, dynamic avoidance, detection/recovery tradeoffs among these graph reducibility approaches Hold and wait Resource ordering Banker’s algorithm Detect and eliminate 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan Memory Management Mechanisms for implementing memory management physical vs. virtual addressing base/limit registers partitioning, paging, segmentation Internal and external fragmentation 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan Paged Virtual Memory Virtual memory Page faults Demand paging don’t try to anticipate Page replacement local, global, hybrid Locality temporal, spatial Working set Thrashing What is the complete set of steps for handling a page fault – start to finish? 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

Page replacement algorithms Belady’s – optimal, but unrealizable FIFO – replace page loaded furthest in the past LRU – replace page referenced furthest in the past approximate using PTE reference bit LRU Clock – replace page that is “old enough” Working Set – keep the working set in memory Page Fault Frequency – grow/shrink number of frames as a function of fault rate 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

Multi-level page tables, TLBs How to reduce overhead of paging? how do multi-level page tables work? what problem does TLB solve? why do they work? how are they managed? software vs. hardware managed Page faults what is one? how is it used to implement demand paging? what is complete sequence of steps for translating a virtual address to a PA? all the way from TLB access to paging in from disk MM tricks shared memory? Mapped files? copy-on-write? 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan Disks Memory hierarchy and locality Physical disk structure platters, surfaces, tracks, sectors, cylinders, arms, heads Disk interface how does OS make requests to the disk? Disk performance access time = seek + rotation + transfer Disk scheduling how does it improve performance? FCFS, SSTF, SCAN, C-SCAN? Implications of solid state drives 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan Files and Directories What is a file what operations are supported? what characteristics do they have? what are file access methods? What is a directory what are they used for? how are they implemented? what is a directory entry? How does path name translation work? ACLs vs. capabilities matrix advantages and disadvantages of each 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

File system data structures General strategies? contiguous, linked, indexed? tradeoffs? What is a Unix inode? how are they different than directories? how are inodes and directories used to do path resolution, and find files? Everything about the Unix File System (UFS) 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan FS buffer cache What is a buffer cache? why do OS’s use them? What are differences between caching reads and writes? write-through, write-back, write-behind? read-ahead? 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan FFS, JFS, LFS What is FFS, how specifically does it improve over original Unix FS? How about JFS, what is the key problem that it solves, what are the basic ideas? How about LFS, what are the basic ideas, when does it yield an improvement, when does it not? 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan RAID Basic concepts of RAID stripe files across multiple disks to improve throughput compensate for decreased reliability with parity/ECC Sources of improvement as you go from RAID-0 to RAID-5 RAID vs. backup (they are different!) 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan Networking ISO 7-layer model Ethernet protocol IP and routing TCP principles (sending a long message via postcards) Protocol encapsulation 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan RPC Basic idea – what does it buy you over message passing? Subtopics: interface description language, stubs, stub generation, parameter marshaling, binding, runtime/transport, error handling, performance, thread pools Transparency: when is distribution transparent, when is it not? 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

Distributed file systems Issues: Basic abstraction, naming, caching, sharing/coherency, replication, performance Examples – compare and contrast various aspects of: NFS AFS Sprite GFS 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan Distributed systems Loosely-coupled, closely-coupled, tightly-coupled Grapevine as an example, in some detail Google web search as an example, in some detail For Grapevine and Google, focus on reliability, scalability – how do they achieve these properties? 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

Virtual Machine Monitors Basic concepts of VMM’s Modern examples: OS-X and Windows on the same laptop Server consolidation Amazon Web Services In some detail, what is the relationship between an application, the guest OS on which it runs, the VMM, and the hardware? How does control transfer appropriately? How do reconcile the fact that both the apps and the guest OS’s are running in user mode? 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan

© 2009 Gribble, Lazowska, Levy, Zahorjan Security Principals, objects, rights Authentication, authorization, auditing “Gotchas” with simple password protection The distributed world Privacy Integrity Achieving them using symmetric (shared key) and asymmetric (public/private key) systems Certificate authorities Spyware Confinement 2/23/2019 © 2009 Gribble, Lazowska, Levy, Zahorjan