A microkernel API for fine-grained decomposition

  • Authors:
  • Sebastian Reichelt;Jan Stoess;Frank Bellosa

  • Affiliations:
  • University of Karlsruhe, Germany;University of Karlsruhe, Germany;University of Karlsruhe, Germany

  • Venue:
  • Proceedings of the Fifth Workshop on Programming Languages and Operating Systems
  • Year:
  • 2009

Quantified Score

Hi-index 0.00

Visualization

Abstract

Microkernel-based operating systems typically require special attention to issues that otherwise arise only in distributed systems. The resulting extra code degrades performance and increases development effort, severely limiting decomposition granularity. We present a new microkernel design that enables OS developers to decompose systems into very fine-grained servers. We avoid the typical obstacles by defining servers as lightweight, passive objects. We replace complex IPC mechanisms by a simple function-call approach, and our passive, module-like server model obviates the need to create threads in every server. Server code is compiled into small self-contained files, which can be loaded into the same address space (for speed) or different address spaces (for safety). For evaluation, we have developed a kernel according to our design, and a networking-capable multi-server system on top. Each driver is a separate server, and the networking stack is split into individual layers. Benchmarks on IA-32 hardware indicate promising results regarding server granularity and performance.