Oops, let me add an addendum, I didn't answer the original question!

:(Julian wrote...)
:
:Am I also right in assuming that all the registers that the user was
:running when they did the KERNCALL have been saved on the KERNEL stack by
:the time that the above routines are called?
:
:(It's a pitty because if they were saved on the USER stack before teh
:kernel switched to the kernel stack it would have a great simplifying 
:effect on kernel threads support :-) (I know that could lead to traps
:during saving the context but..)

    No, the userland code runs the system call as if it were almost a normal
    subroutine call.   

    Embedded kernels I have written make use of a couple of tricks, but two
    primary ones:  (A) A system call is like a subroutine call so you don't
    have to save/restore scratch-on-call registers, and (B) When making a
    subroutine call from the syscall or interrupt entry code, the procedure
    being called will save/restore certain registers so you don't have to.

    So the system call does not theoretically have to save every register
    and in fact can often get away with saving a minimal set of registers.

    But!  Our current kernel implementation generates a 'common' trap 
    frame for all sorts of things and certain calls modify the return 
    registers, so messing with it would be problematic.

    Julian, you shouldn't worry about userland<->kernel context switch so much.
    The overhead for going into the kernel and coming out again, if all the
    cruft is removed, is *very* tiny -- it's almost like a subroutine call.
    We can optimize out the cruft over time.

                                                -Matt



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to