Check out the new USENIX Web site. [Next] [Up] [Previous]
Next: Memory Management Up: Isolation Kernel Implementation Previous: Isolation Kernel Implementation

CPU Virtualization

Denali uses standard multiprogramming techniques to multiplex the CPU across VMs. The isolation kernel maintains a per-VM thread structure, which contains a kernel stack, space for the register file, and the thread status. The policy for multiplexing the CPU is split into two components: a gatekeeper policy enforces admission control by choosing a subset of active machines to admit into the system; the rest are swapped to disk, as we will describe later. The scheduler policy controls context switching among the set of admitted machines.

The gatekeeper admits machines in FIFO order as long as there are a minimum number of physical backing pages available. The scheduler uses round-robin scheduling among the set of admitted machines. These policies were chosen because they are simple and starvation-free. When a VM issues an idle-with-timeout instruction, it is removed from scheduler consideration until its timer fires, or a virtual interrupt arrives. As compensation for idling, a VM receives higher scheduler priority for its next quantum.

Virtual registers are stored in a page at the beginning of a VM's (virtual) physical address space. This page is shared between the VM and the isolation kernel, avoiding the overhead of kernel traps for register modifications. In other respects, the virtual registers behave like normal memory (for example, they can be paged out to disk).

Because Denali's ISA is based on x86, we can use existing x86 compilers and linkers when authoring OS or application code to run in a Denali VM. In particular, we have been primarily using the gcc C compiler and the ld linker on Linux, although we did need to change the link map used by ld to take Denali's memory architecture into account.


[Next] [Up] [Previous]
Next: Memory Management Up: Isolation Kernel Implementation Previous: Isolation Kernel Implementation
Andrew Whitaker 2002-10-07