]> Zhao Yanbai Git Server - minix.git/commit
Removal of the system task
authorTomas Hruby <tom@minix3.org>
Tue, 9 Feb 2010 15:20:09 +0000 (15:20 +0000)
committerTomas Hruby <tom@minix3.org>
Tue, 9 Feb 2010 15:20:09 +0000 (15:20 +0000)
commit728f0f0c499b1d01661bb2b59ccde8f6ed19c664
tree846ce25387a5c4a12432c0c50b7609b38db80809
parent5e578184312c48c2c77387cfee95f8acf5571607
Removal of the system task

* Userspace change to use the new kernel calls

- _taskcall(SYSTASK...) changed to _kernel_call(...)

- int 32 reused for the kernel calls

- _do_kernel_call() to make the trap to kernel

- kernel_call() to make the actuall kernel call from C using
  _do_kernel_call()

- unlike ipc call the kernel call always succeeds as kernel is
  always available, however, kernel may return an error

* Kernel side implementation of kernel calls

- the SYSTEm task does not run, only the proc table entry is
  preserved

- every data_copy(SYSTEM is no data_copy(KERNEL

- "locking" is an empty operation now as everything runs in
  kernel

- sys_task() is replaced by kernel_call() which copies the
  message into kernel, dispatches the call to its handler and
  finishes by either copying the results back to userspace (if
  need be) or by suspending the process because of VM

- suspended processes are later made runnable once the memory
  issue is resolved, picked up by the scheduler and only at
  this time the call is resumed (in fact restarted) which does
  not need to copy the message from userspace as the message
  is already saved in the process structure.

- no ned for the vmrestart queue, the scheduler will restart
  the system calls

- no special case in do_vmctl(), all requests remove the
  RTS_VMREQUEST flag
84 files changed:
include/ibm/interrupt.h
include/minix/ipc.h
include/minix/syslib.h
kernel/arch/i386/apic.c
kernel/arch/i386/do_int86.c
kernel/arch/i386/exception.c
kernel/arch/i386/mpx386.S
kernel/arch/i386/protect.c
kernel/const.h
kernel/debug.c
kernel/glo.h
kernel/main.c
kernel/proc.c
kernel/proc.h
kernel/profile.c
kernel/proto.h
kernel/system.c
kernel/system/do_abort.c
kernel/system/do_cprofile.c
kernel/system/do_exec.c
kernel/system/do_getinfo.c
kernel/system/do_newmap.c
kernel/system/do_privctl.c
kernel/system/do_safecopy.c
kernel/system/do_sigreturn.c
kernel/system/do_sigsend.c
kernel/system/do_sprofile.c
kernel/system/do_sysctl.c
kernel/system/do_trace.c
kernel/system/do_vdevio.c
kernel/system/do_vmctl.c
kernel/table.c
lib/i386/rts/_ipc.s
lib/syslib/Makefile.in
lib/syslib/sys_abort.c
lib/syslib/sys_cprof.c
lib/syslib/sys_endsig.c
lib/syslib/sys_eniop.c
lib/syslib/sys_exec.c
lib/syslib/sys_exit.c
lib/syslib/sys_fork.c
lib/syslib/sys_getinfo.c
lib/syslib/sys_getsig.c
lib/syslib/sys_in.c
lib/syslib/sys_int86.c
lib/syslib/sys_irqctl.c
lib/syslib/sys_kill.c
lib/syslib/sys_memset.c
lib/syslib/sys_newmap.c
lib/syslib/sys_nice.c
lib/syslib/sys_out.c
lib/syslib/sys_physcopy.c
lib/syslib/sys_privctl.c
lib/syslib/sys_profbuf.c
lib/syslib/sys_readbios.c
lib/syslib/sys_runctl.c
lib/syslib/sys_safecopy.c
lib/syslib/sys_safemap.c
lib/syslib/sys_sdevio.c
lib/syslib/sys_segctl.c
lib/syslib/sys_setalarm.c
lib/syslib/sys_setgrant.c
lib/syslib/sys_sigreturn.c
lib/syslib/sys_sigsend.c
lib/syslib/sys_sprof.c
lib/syslib/sys_stime.c
lib/syslib/sys_sysctl.c
lib/syslib/sys_times.c
lib/syslib/sys_trace.c
lib/syslib/sys_umap.c
lib/syslib/sys_vinb.c
lib/syslib/sys_vinl.c
lib/syslib/sys_vinw.c
lib/syslib/sys_vircopy.c
lib/syslib/sys_vmctl.c
lib/syslib/sys_voutb.c
lib/syslib/sys_voutl.c
lib/syslib/sys_voutw.c
lib/syslib/sys_vsafecopy.c
lib/syslib/sys_vtimer.c
lib/sysutil/env_get_prm.c
lib/sysutil/getuptime.c
lib/sysutil/getuptime2.c
lib/sysutil/tickdelay.c