Benk wrote:a memory manager is a line ball call
This is an international forum. I don't think many people know this expression (including me).
1) The code for most schedulers is less than 500 lines
I seriously doubt whether you have seen the scheduling code of, say, Windows Vista or OS X. I'm pretty sure the scheduler of Linux is more than 500 lines. Of course, a simple scheduler can easily fit in 500 lines (hell, it can fit in one :)), but to claim that something about "most schedulers" is ridiculous.
2) If you put it in user space you still need to put the privileged instructions in the kernel
Yes, the actual iret (with software switching) is in the kernel, but that's in the kernel anyway as the timer IRQ will enter there. There aren't that many any other privilidged instructions a scheduler needs.
instead of 500 lines in the Kernel you will have 300 in the Kernel and 400 in user space and they are very chatty.
I need less than those 300 lines, but even then: it's not about line count.
3) Now if your scheduler crashes your OS is gone so the protection argument is redundant.
If your IRQ driver crashes, your OS is gone as well. If your memory manager crashes, your OS is very likely gone as well (mine is, at least). Still there are good reasons to keep them outside the kernel (as well as good reasons to keep them in, of course).
4) Scheduling needs to be fast.
Not necessarily. On a real time system, scheduling needs to be predictable, not fast. And even on a desktop OS, scheduling needs to be fast
enough. Which in CPU cycles may very well mean "slow".
5) its a critical API and you need to deal with security.
I'm not getting that. You
always need to deal with security, and imho dealing with security is a lot easier if everything is in user processes than if everything resides in the kernel.
JAL