Skip to content

Instantly share code, notes, and snippets.

@jroesch
Last active December 10, 2015 20:29
Show Gist options
  • Save jroesch/ced4290b7c4469440088 to your computer and use it in GitHub Desktop.
Save jroesch/ced4290b7c4469440088 to your computer and use it in GitHub Desktop.
Final Review Sheet

Class Topics

Guest Lectures

JOS Labs

Lab 1

  • How are stack frames layed out?
  • How can we use that knowledge to write a backtrace command?

Lab 2

  • Physical Pages vs. Virtual Pages
  • What are the differences between virtual, linear, and physical addresses?
  • Why do we use virtual memory? which problems does it solve?
  • How are permissions used?

Lab 3

  • What is an environment?
  • How does it relate to threads and processes in more traditional OSes?
  • What state must each environment maintain?
  • How do we handle an interrupt, what are the necessary steps?
  • What is the Task State Segment used for?
  • Why do we need system calls?
  • How do we perform a system call?
  • What setup do user space environments require?
  • What pieces are shared, which are unique?

Lab 4

  • What is the difference between multiprocess and multiprocessor?
  • What changes are needed to our kernel to support SMP?
  • Why do we need locking? can we make our version of JOS more concurrent?
  • What is the difference between preemptive and cooperative scheduling?
  • What is do we need to implement preemptive scheduling?
  • How does IPC work in JOS, what is the control flow when a message is sent, and received?
  • Why implement COW fork?
  • What syscalls are needed to implement it in userspace?
  • What happens if you don't copy pages when implementing COW?
  • Why do we need a page fault handler to implement COW fork?

Lab 5

  • What is a super block?
  • Why do we need indirect blocks? why not use only direct blocks?
  • Why is spawn more efficent then fork, followed by exec?

XV6 Excercises

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment