cvs commit: src/sys/vm vm_zeroidle.c

John Baldwin jhb at FreeBSD.org
Fri Nov 5 19:14:02 GMT 2004


jhb         2004-11-05 19:14:02 UTC

  FreeBSD src repository

  Modified files:
    sys/vm               vm_zeroidle.c 
  Log:
  - Set the priority of the page zeroing thread using sched_prio() when the
    thread is created rather than adjusting the priority in the main
    function.  (kthread_create() should probably take the initial priority
    as an argument.)
  - Only yield the CPU in the !PREEMPTION case if there are any other
    runnable threads.  Yielding when there isn't anything else better to do
    just wastes time in pointless context switches (albeit while the system
    is idle.)
  
  Revision  Changes    Path
  1.32      +5 -14     src/sys/vm/vm_zeroidle.c


More information about the cvs-src mailing list