|
CS533 - Concepts of Operating Systems
Spring 2009 |
|
When: Monday/Wednesday 12:00-13:20 Where: Room 201, Clay Building (CLY) Instructor: Jonathan Walpole Instructor Office Hours - By Appointment |
|
|
Description |
|
This course is an overview of operating systems concepts for graduate students. The course is based on research papers, and will involve a lot of reading and assimilation of ideas. The reading list has been carefully selected from classical and recent research papers in order to introduce and develop the key concepts and developments in operating systems. These concepts include thread-based concurrent programming; classical and modern approaches to synchronization; event-based system design; a comparison between threading and event-based approaches to building operating systems; local and remote message passing; remote procedure call; operating system structuring using a layered approach; micro-kernels and safe extensibility using hardware-based protection; software-based approaches to safe extensibility; virtualization; specialization; operating system support for fine-grain timing; file system designs for performance and reliability; and general advice for system designers. You will be required to read each paper carefully, write a brief summary of it, and submit it before the start of each class. Each student will be assigned one or more papers to present in class. These presentations, your in-class participation and paper summaries will contribute directly to your grade. The goal of this class is not only to help you learn about different systems, but also to learn how to read and evaluate a research paper, how to compose a concise summary of a research paper, and how to synthesize concepts and ideas across several papers. Toward the end of the class each student will write a short position paper describing their views on the current and future directions of operating systems research. |
|
Prerequisites |
|
If you have not taken, and passed with a grade B or better, an introductory course in operating systems this is not the course for you! Take CS333 first. We will hold an exam on the first day of class to evaluate whether you have the necessary background knowledge to embark on this course. |
|
Text Book |
|
There are no required text books for this class. Instead, the class is based on a collection of research papers, listed below in the Schedule & Syllabus section. If you need to catch up on background reading about the basic concepts of Operating Systems I recommend "Modern Operating Systems, 3rd edition," by Andrew S. Tannenbaum. |
|
Grading |
|
Your final grade will be calculated as follows: paper reviews - 20%; in-class paper presentations - 30%; midterm exam - 20%; position paper - 10%; final exam - 20%; |
|
Paper Reviews |
|
Prior to each class, starting with class 2, you must submit a concise review of each of the papers listed for that class. Reviews should briefly explain, for example, (a) what the topic of the paper is, (b) what the contribution is and what problem it solves, (c) how the proposed solution differs from previous work, and in particular how it relates to papers covered so far in this class, (d) how the claims of the paper were validated, i.e., what research methodology was used, (e) whether the paper succeeded in solving an important problem and whether the validation was convincing, (f) what the overall message of the paper was and what aspects of it you found most interesting. Reviews should be written in plain text format and submitted by email to walpole@cs.pdx.edu with subject heading [Paper Review]. Be sure to include your name with your review. |
|
Presentations |
|
Each class session will be structured as several paper presentations made by students, followed by a discussion session, led by me, to integrate and evaluate the key concepts. You will be assigned several papers to present in class during the quarter. Preliminary assignments are listed below each paper. Presentations should be targeted to last 20 minutes and should emphasise the key ideas of the paper. Don't waste your presentation time on mundane details. You must extract the important contributions and present them clearly. Your presentation should be formal, and you should prepare slides as necessary. If you reuse material from the web, be sure to cite the source. You must do whatever additional background reading is necessary to enable you to understand and present your paper well. I advise you to start preparing for your presentation early! |
|
Position Papers |
|
Each student must write a short position paper (1500 words) discussing current trends in operating system design and predicting future research challenges and likely developments. This paper will be due at the start of class 19. |
|
Mailing List |
|
A "MailMan" e-mailing list will be maintained for this class. The list, called cs533@cecs.pdx.edu, is for communicating information relating to the course, and can be used by students as well as the instructor. All students should subscribe to this list. Go to the following web page and follow the instructions: |
|
Schedule & Syllabus |
|
Class 1
03-30-09 |
Course Overview and Entrance Exam
In class written exam to ensure that all students embarking on this course have adequate knowledge of Operating Systems concepts at the undergraduate level. If you do not have adequate knowledge you will be advised to defer taking this class until after you have completed CS333. Reading:
|
||||||||
|
Class 6
04-15-09 |
Scheduler Activations
Kernel support for user-level cooperative threading on shared memory multiprocessors. Reading:
|
||||||||
|
Class 7
04-20-09 |
Remote Procedure Call
Design and implementation issues for remote procedure calls (RPC) Reading:
|
||||||||
|
Class 8
04-22-09 |
RPC Implementation on Shared Memory Multiprocessors
Optimization of RCP for cross-address-space local communication. How to implement RPC efficiently on a shared memory multiprocessor among user-level threads in different address spaces. Reading:
|
||||||||
|
Class 9
04-27-09 |
In Class Midterm Exam | ||||||||
|
Class 10
04-29-09 |
System Structuring Using Layers
The advantages and disadvantages of layering as a kernel structuring approach. Reading:
| ||||||||
|
Class 11
05-04-09 |
Micro-Kernels
Modular operating systems; implementing operating system server modules as user level processes that interact via IPC; micro-kernel based OS architectures and abstractions. Reading:
|
||||||||
|
Class 12
05-06-09 |
Improving Micro-Kernel Performance
Strategies for improving IPC performance in micro-kernel operating systems that utilize hardware-based protection; analysis of potential performance improvements and their impact on higher level performance at the OS and application level. Reading:
|
||||||||
|
Class 13
05-11-09 |
Software-Based Protection for Improving Micro-Kernel Performance
Alternatives to hardware-based protection for structuring operating systems; implementing protection at the assembly language level; supporting operating system extensibility and safety using high-level language support. Virtual machines; supporting multiple operating systems simultaneously on a single hardware platform; running one operating system on top of another. Reducing the software engineering effort of developing operating systems for new hardware architectures. (select two of the following three papers) Reading:
|
||||||||
|
Class 14
05-13-09 |
Virtualization
Virtual machines; supporting multiple operating systems simultaneously on a single hardware platform; running one operating system on top of another. Reducing the software engineering effort of developing operating systems for new hardware architectures. True or pure virualization. Reading:
|
||||||||
|
Class 15
05-18-09 |
Para Virtualization
Para virtualization; optimizing performance of virtualization system; hypervisor call interface. Reading:
|
||||||||
|
Class 16
05-20-09 |
Exo-Kernels
Exo-kernel concept; minimal operating system functionality; separation of mechanism and policy; techniques for implementing application specific handlers; dynamic specialization of packet filters. Reading:
|
||||||||
|
Class 17
05-27-09 |
Synchronization and Scalability on Multiprocessors
A discussion of various forms of lock-based synchronization used in OS kernels. A case study of the locking primitives used in the Linux kernel. Implementation strategies for spin locks, with emphasis on contention issues and design strategies that improve performance and scalability. Reading:
|
||||||||
|
Class 18
06-01-09 |
Local Research on Scalable Synchronization
Analysis of the cost of agreement in multicore architectures. Relativistic Programming, Read-Copy-Update and its use in the Linux kernel. Reading:
|
||||||||
|
Class 19
06-03-09 |
Local Research on Energy-Efficient Systems
Energy-aware workload placement in data centers.
|
|
Back to Jonathan Walpole's home page |