Section 10: Last section! Final review.

Slides:



Advertisements
Similar presentations
Virtual Memory: Page Replacement
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.
Operating Systems ECE344 Ding Yuan Final Review Lecture 13: Final Review.
OS Fall’02 Virtual Memory Operating Systems Fall 2002.
1 Virtual Memory Management B.Ramamurthy. 2 Demand Paging Main memory LAS 0 LAS 1 LAS 2 (Physical Address Space -PAS) LAS - Logical Address.
CMPT 300: Final Review Chapters 8 – Memory Management: Ch. 8, 9 Address spaces Logical (virtual): generated by the CPU Physical: seen by the memory.
Chapter 101 Virtual Memory Chapter 10 Sections and plus (Skip:10.3.2, 10.7, rest of 10.8)
Memory Management (II)
Virtual Memory Chapter 8. Hardware and Control Structures Memory references are dynamically translated into physical addresses at run time –A process.
1 Virtual Memory vs. Physical Memory So far, all of a job’s virtual address space must be in physical memory However, many parts of programs are never.
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.
Virtual Memory Chapter 8.
OPERATING SYSTEMS Introduction
1 Virtual Memory Management B.Ramamurthy Chapter 10.
OS Spring’04 Virtual Memory: Page Replacement Operating Systems Spring 2004.
1 CSE451 - Section Last section! Project 4 due tomorrow Today: Some practice for the exam “Big picture” review tomorrow Evaluations Project 3 +
Basics of Operating Systems March 4, 2001 Adapted from Operating Systems Lecture Notes, Copyright 1997 Martin C. Rinard.
Slide 12-1 Copyright © 2004 Pearson Education, Inc. Operating Systems: A Modern Perspective, Chapter Virtual Memory.
Memory Management ◦ Operating Systems ◦ CS550. Paging and Segmentation  Non-contiguous memory allocation  Fragmentation is a serious problem with contiguous.
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.
Computer Architecture Lecture 28 Fasih ur Rehman.
Problems discussed in the review session for the final COSC 4330/6310 Summer 2012.
CSE 451: Operating Systems Section 10 Project 3 wrap-up, final exam review.
COS 598: Advanced Operating System. Operating System Review What are the two purposes of an OS? What are the two modes of execution? Why do we have two.
30 October Agenda for Today Introduction and purpose of the course Introduction and purpose of the course Organization of a computer system Organization.
Virtual Memory Chapter 8. Hardware and Control Structures Memory references are dynamically translated into physical addresses at run time –A process.
Chapter 4 Memory Management Virtual Memory.
Virtual Memory Chapter 8. Hardware and Control Structures Memory references are dynamically translated into physical addresses at run time –A process.
Introduction: Memory Management 2 Ideally programmers want memory that is large fast non volatile Memory hierarchy small amount of fast, expensive memory.
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 451: Operating Systems Section 9: Storage; networks.
Week 10 March 10, 2004 Adrienne Noble. Important Dates Project 4 due tomorrow (Friday) Final Exam on Tuesday, March 16, 2:30- 4:20pm.
Virtual Memory What if program is bigger than available memory?
Virtual Memory Chapter 8.
Chapters 3 and 5 Possible questions
CSE 451: Operating Systems
Demand Paging Reference Reference on UNIX memory management
Section 10: Last section! Final review.
Review.
Demand Paging Reference Reference on UNIX memory management
Chapter 9: Virtual-Memory Management
CSE 451: Operating Systems Winter 2007 Module 24 Course Review
Sarah Diesburg Operating Systems CS 3430
CSE 451: Operating Systems Spring 2005 Module 23 Course Review
CSE 451: Operating Systems Spring 2005 Module 23 Course Review
CSE451 - Section 10.
Translation Buffers (TLB’s)
Operating Systems Lecture 1.
Andy Wang Operating Systems COP 4610 / CGS 5675
CSE 451: Operating Systems Autumn 2003 Lecture 10 Paging & TLBs
CSE451 Virtual Memory Paging Autumn 2002
CSE 451: Operating Systems Winter 2006 Module 24 Course Review
Translation Buffers (TLB’s)
CSE 451: Operating Systems Autumn 2003 Lecture 10 Paging & TLBs
Reminders Project 4 due tomorrow, 4:00pm Review lecture tomorrow
Computer Architecture
Review for final Anything’s fair game, but emphasis on more recent stuff.
Last section! Project 4 + EC due tomorrow Today: Project 4 questions
CSE 471 Autumn 1998 Virtual memory
CSE451 - Section 10.
Lecture 9: Caching and Demand-Paged Virtual Memory
CSE 542: Operating Systems
Translation Buffers (TLBs)
Sarah Diesburg Operating Systems COP 4610
Review What are the advantages/disadvantages of pages versus segments?
Andy Wang Operating Systems COP 4610 / CGS 5675
CSE 542: Operating Systems
Presentation transcript:

Section 10: Last section! Final review

Review: file systems Two improvements BSD Fast File System implemented? What workload is LFS was based on? Calculate max UNIX file size for 1K blocks The sequence of actions that occurs when a user executes the following, in terms of inodes and directory entries: touch file && ln file file2 && rm file && rm file2

Review: file systems Two improvements BSD Fast File System implemented? Cylinder groups (localize metadata and file data in the same or close cylinder groups) Blocksize 1->4K, disk params What workloads/technical advances is LFS was based on? Frequent writes of lots of small files; large main memories Max UNIX file size for 1K blocks? Direct, single indirect, double indirect, triple indirect (12+256+256^2+256^3)*1K = around 16 GB The sequence of actions that occurs in terms of inodes and directory entries: touch file && ln file file2 && rm file && rm file2 … What about ln –s?

Unix File System Source: wikipedia

File protection Compare ACLs and capabilities

File protection Compare ACLs and capabilities ACLs: Capabilities: Object-based protection matrix Support auditing Provide tight access control Capabilities: Principal-based protection matrix Ease sharing Support the least privilege principle better

Distributed File Systems What are some difficult issues in distributed FSs? Compare NFS, AFS and Sprite

Distributed File Systems What are some difficult issues in distributed FSs? Naming: how to ensure uniqueness Performance: how to hide network delay Caching: how to make caches coherent Replication: how to maintain replicas consistent Compare NFS, AFS and Sprite NFS: for LANs; small in-mem caches; flush on close AFS: for WANs; large, disk-based caches; single namespace; flush on close; refresh on open Sprite: for diskless, large-memory clients; use cache invalidation protocol

Review: Consider a modern desktop computer on which the hard disk is spinning. The more significant delay in reading from a 4K byte file that has not been accessed in a long time is: context switch to enter the operating system time spent in the OS to determine what disk blocks to fetch latency awaiting disk rotation and arm movement transfer time

Review: Disks Consider a modern desktop computer on which the hard disk is spinning. The more significant delay in reading from a 4K byte file that has not been accessed in a long time is: context switch to enter the operating system time spent in the OS to determine what disk blocks to fetch latency awaiting disk rotation and arm movement transfer time

Four out of the five of these instantiate a single basic principle Four out of the five of these instantiate a single basic principle. But the fifth one is essentially unrelated. Which is the unrelated one? processor (L2) cache disk buffer pool page table translation lookaside buffer DNS cache

Review: virtual memory Segmentation doesn’t have this problem of wasted space. How does copy-on-write work? What is it used for? What is Belady's anomaly? What is Belady’s algorithm?

Review: virtual memory Segmentation doesn’t have this problem of wasted space. Internal fragmentation How does copy-on-write work? What is it used for? … What is Belady's anomaly? Bad property of FIFO – fault rate can increase with more allocated frames What is Belady’s (OPT) algorithm? Optimal page replacement – evict page the won’t be needed longest into the future

People do not program the Belady’s page replacement algorithm today because: it is too expensive to build the hardware support it is impossible to do so page replacement costs are not sufficiently high for optimality to be a significant concern there exist better-performing page replacement algorithms This policy are only applicable in computers that support page reference bits within the PTE. Not all processors do so. (next few questions adapted from cornell systems q-exam)

Review: Security T / F A microkernel is a category of operating systems designed for sensors or other forms of micro-processors. T / F A priority inversion is said to occur if a higher priority task is waiting for a lower-priority task to perform some action. Why does Windows require ctrl+alt+del before you type your username/password? Very briefly, how would you implement a buffer overflow attack? F T Last login time, etc. Protect again login spoofers

Review: Misc Which of the following abstractions are implemented entirely in the kernel of an OS like Linux: remote object invocation and remote procedure call the process abstraction dynamically linked libraries (DLLs) the window manager public key encryption/decryption

Review: Misc Which of the following are not typically saved when a process issues a system call that blocks, causing a context switch to some other process: contents of registers program counter value interrupt vector table name of the process that was executing elapsed time since process last started executing

Review: Misc The best reason to use semaphores rather than busy-waiting in a user-level program is: decreases the chance of deadlock decreases the chance of livelock allows more different types of synchronization to be coded avoids wasted processor cycles avoids expensive context switches

Review: Misc True/false: good style dictates that a thread performing a P on a semaphore should always be the thread performing the corresponding V on that semaphore When monitors are used for synchronization and access to shared data: True/False: deadlock becomes impossible True/False: race conditions on access to that data become impossible

Last slide Good luck on the exam! Congratulations on making it through a tough class 