| Commit message (Expand) | Author | Age | Files | Lines |
* | Fill in a few sysctl descriptions. | trhodes | 2008-08-03 | 1 | -2/+2 |
* | - Make SCHED_STATS more generic by adding a wrapper to create the | jeff | 2008-04-17 | 1 | -1/+1 |
* | In keeping with style(9)'s recommendations on macros, use a ';' | rwatson | 2008-03-16 | 1 | -1/+1 |
* | Rename the kthread_xxx (e.g. kthread_create()) calls | julian | 2007-10-20 | 1 | -1/+1 |
* | Eliminate dead code, specifically, an unused sysctl: "vm.idlezero_maxrun". | alc | 2007-07-14 | 1 | -4/+0 |
* | Enable the new physical memory allocator. | alc | 2007-06-16 | 1 | -18/+3 |
* | Commit 14/14 of sched_lock decomposition. | jeff | 2007-06-05 | 1 | -4/+4 |
* | Revert VMCNT_* operations introduction. | attilio | 2007-05-31 | 1 | -4/+3 |
* | - define and use VMCNT_{GET,SET,ADD,SUB,PTR} macros for manipulating | jeff | 2007-05-18 | 1 | -3/+4 |
* | Use the free page queue mutex instead of the page queue mutex to | alc | 2007-02-11 | 1 | -6/+5 |
* | Change the free page queue lock from a spin mutex to a default (blocking) | alc | 2007-02-05 | 1 | -4/+4 |
* | - Remove setrunqueue and replace it with direct calls to sched_add(). | jeff | 2007-01-23 | 1 | -1/+1 |
* | Threading cleanup.. part 2 of several. | julian | 2006-12-06 | 1 | -4/+0 |
* | Make KSE a kernel option, turned on by default in all GENERIC | jb | 2006-10-26 | 1 | -0/+4 |
* | Add _vm_stats and _vm_stats_misc to the sysctl declarations in sysctl.h and | alc | 2006-08-21 | 1 | -2/+0 |
* | vm_page_zero_idle()'s return value serves no purpose. Eliminate it. | alc | 2006-08-21 | 1 | -2/+1 |
* | Change msleep() and tsleep() to not alter the calling thread's priority | jhb | 2006-04-17 | 1 | -3/+1 |
* | MI changes: | netchild | 2005-12-31 | 1 | -1/+1 |
* | Trim a couple of unneeded includes. | jhb | 2005-09-29 | 1 | -1/+0 |
* | Set the scheduling class of the zeroidle thread to PRI_IDLE. | ssouhlal | 2005-02-04 | 1 | -2/+5 |
* | Remove dangling variable | phk | 2004-11-06 | 1 | -1/+0 |
* | - Set the priority of the page zeroing thread using sched_prio() when the | jhb | 2004-11-05 | 1 | -14/+5 |
* | Introduce a Boolean variable wakeup_needed to avoid repeated, unnecessary | alc | 2004-10-31 | 1 | -2/+9 |
* | Eliminate an unused but initialized variable. | alc | 2004-10-30 | 1 | -2/+0 |
* | Turn PREEMPTION into a kernel option. Make sure that it's defined if | scottl | 2004-09-02 | 1 | -0/+2 |
* | Give setrunqueue() and sched_add() more of a clue as to | julian | 2004-09-01 | 1 | -1/+1 |
* | Prevent vm_page_zero_idle_wakeup() from attempting to wake up the | iedowse | 2004-08-29 | 1 | -2/+5 |
* | Implement preemption of kernel threads natively in the scheduler rather | jhb | 2004-07-02 | 1 | -0/+2 |
* | - Change mi_switch() and sched_switch() to accept an optional thread to | jhb | 2004-07-02 | 1 | -1/+1 |
* | Record exactly where this file was copied from. It wasn't repo-copied so | bde | 2004-03-04 | 1 | -12/+12 |
* | - Use a seperate startup function for the zeroidle kthread. Use this to | jeff | 2004-02-02 | 1 | -10/+23 |
* | - Add a flags parameter to mi_switch. The value of flags may be SW_VOL or | jeff | 2004-01-25 | 1 | -2/+1 |
* | Expand inline the relevant parts of src/COPYRIGHT for Matt Dillon's | imp | 2003-08-12 | 1 | -2/+24 |
* | Use __FBSDID(). | obrien | 2003-06-11 | 1 | -1/+3 |
* | Rename a static variable to avoid future conflicts. | des | 2003-04-04 | 1 | -2/+2 |
* | - Create a new scheduler api that is defined in sys/sched.h | jeff | 2002-10-12 | 1 | -1/+2 |
* | Set P_NOLOAD on the pagezero kthread so that it doesn't artificially skew | peter | 2002-07-19 | 1 | -1/+7 |
* | o Remove the acquisition and release of Giant from the idle priority thread | alc | 2002-07-18 | 1 | -5/+1 |
* | o Use vm_pageq_remove_nowakeup() and vm_pageq_enqueue() in | alc | 2002-07-16 | 1 | -7/+2 |
* | Re-enable the idle page-zeroing code. Remove all IPIs from the idle | dillon | 2002-07-12 | 1 | -4/+0 |
* | vm_page_queue_free_mtx is a spin mutex, not a normal sleep mutex. | peter | 2002-07-08 | 1 | -4/+4 |
* | Turn the zeroidle process off for SMP systems, there is still a possible | peter | 2002-07-08 | 1 | -0/+4 |
* | Add a special page zero entry point intended to be called via the single | peter | 2002-07-08 | 1 | -7/+9 |
* | o Lock accesses to the free queue(s) in vm_page_zero_idle(). | alc | 2002-07-07 | 1 | -0/+4 |
* | Part 1 of KSE-III | julian | 2002-06-29 | 1 | -1/+0 |
* | Pass vm_page_t instead of physical addresses to pmap_zero_page[_area]() | peter | 2002-04-15 | 1 | -1/+1 |
* | In a threaded world, differnt priorirites become properties of | julian | 2002-02-11 | 1 | -1/+1 |
* | KSE Milestone 2 | julian | 2001-09-12 | 1 | -4/+4 |
* | Process priority is locked by the sched_lock, not the proc lock. | jhb | 2001-09-01 | 1 | -2/+2 |
* | Implement idle zeroing of pages. I've been tinkering with this | peter | 2001-08-25 | 1 | -72/+98 |