First page Back Continue Last page Summary Graphics

Performance


Notes:

Performance needs to be improved. The tracing thread is a peformance bottleneck since every system call results in four context switches. Eliminating it would be very good for performance.
The block device is currently another problem. It can only have one outstanding request at a time. As a result, the performance of IO-bound processes suffers. Rik van Riel has suggested doing IO through mmap rather than through read/write, which is an interesting idea.
Some work may also be done to make the native kernel a better host for UML. Eliminating the tracing thread will require a new mechanism for intercepting system calls, like delivering a special signal to the process.