VM for device drivers?
Posted Sep 9, 2005 4:36 UTC (Fri) by
xoddam (subscriber, #2322)
In reply to:
4K stacks for everyone? by mcelrath
Parent article:
4K stacks for everyone?
> gcc/libc can allocate more stack pages for userspace programs
> if needed, but why not the kernel?
A defining characteristic of kernel-space programming is that
you don't get the benefits of implicit memory protection.
Everything has to be done explicitly by the kernel itself.
It's possible in principle to give kernel-space tasks virtual
memory support, but it would open a big can of worms. If
you want deep recursion, do it in userspace.
As things stand the kernel-space page map is never changed
implicitly, and rarely explicitly. The prospect of giving
kernel tasks their own vm maps with holes to fit new pages
which are to be faulted in (from where?) when the stack
overflows is nightmarish! Performance and maintainability
are much, much more important than a growable stack.
If stack usage in kernel space isn't demonstrably finite
then the code is broken. The best solution is explicit
management of the resources (eg. using a queue) so that
the stack size ceases to be an issue.
(
Log in to post comments)