summaryrefslogtreecommitdiff
path: root/sys/kern
Commit message (Expand)AuthorAgeFilesLines
...
* - Revision 1.469 of vfs_subr.c resulted in the buf's b_object field beingAlan Cox2003-11-111-14/+7
* Whitespace sync to MAC branch, expand comment at the head of the file.Robert Watson2003-11-111-3/+9
* Fix a bug where the taskqueue kproc was being parented by initAlfred Perlstein2003-11-101-1/+1
* When there are no free sem_undo structs available in semu_alloc(), onlyTim J. Robbins2003-11-101-3/+4
* Change the clear_ret argument of get_mcontext() to be a flags argument.Marcel Moolenaar2003-11-091-2/+2
* Quick fix for scaling of statclock ticks in the SMP case. As explainedBruce Evans2003-11-091-0/+4
* - Implement selwakeuppri() which allows raising the priority of aSeigo Tanimura2003-11-0911-17/+45
* o add a flags parameter to netisr_register that is used to specifySam Leffler2003-11-081-2/+2
* Return a reasonable number for top or ps to display for M:N thread,David Xu2003-11-081-0/+2
* Regen.John Baldwin2003-11-072-7/+7
* Mark ptrace(), ktrace(), utrace(), sysarch(), and issetugid() as MP safe.John Baldwin2003-11-071-5/+5
* Slight whitespace consistency improvement:Robert Watson2003-11-073-4/+4
* - Somehow I botched my last commit. Add an extra ( to fix things up. I'mJeff Roberson2003-11-061-1/+1
* - Delay the allocation of memory for the pipe mutex until we need it.Alan Cox2003-11-061-5/+1
* - Simplify pipespace() by eliminating the explicit creation of vm objects.Alan Cox2003-11-061-10/+2
* Remove the flags argument from mac_externalize_*_label(), as it's notRobert Watson2003-11-061-6/+6
* - Remove the local definition of sched_pin and unpin. They are provided inJeff Roberson2003-11-061-17/+3
* o make debug_mpsafenet globally visibleSam Leffler2003-11-051-10/+0
* Minor style(9) nitWarner Losh2003-11-051-8/+8
* - It's ok if sched_runnable() has races in it, we don't need the sched_lockJeff Roberson2003-11-051-3/+4
* Remove mntvnode_mtx and replace it with per-mountpoint mutex.Alexander Kabaev2003-11-053-33/+35
* Back out the following revisions:Max Khon2003-11-051-18/+21
* Get rid of DIAGNOSTIC that gives false positives on slow CPUs.Kirk McKusick2003-11-041-28/+0
* - Add initial support for pinning and binding.Jeff Roberson2003-11-041-2/+53
* Allow the bufdaemon and update daemon processes to skip theKirk McKusick2003-11-041-4/+8
* disable MPSAFE network drivers; we aren't ready yet`Sam Leffler2003-11-041-1/+1
* I believe kbyanc@ really meant this in rev 1.58.Olivier Houchard2003-11-041-2/+2
* Do not attempt to report proc event if NOTE_EXIT has already been received.Olivier Houchard2003-11-041-0/+7
* Don't require INTR_FAST handlers to be exclusive in the MI layer. Instead,John Baldwin2003-11-031-7/+11
* Update spin lock order list for new i386 interrupt and SMP code.John Baldwin2003-11-031-3/+2
* Unlock pipe mutex when failing MAC pipe ioctl access control check.Robert Watson2003-11-031-1/+3
* - Remove kseq_find(), we no longer scan other cpu's run queues when we goJeff Roberson2003-11-031-66/+17
* - Remove the ksq_loads[] array. We are only interested in three counts,Jeff Roberson2003-11-021-33/+50
* Take care not to call vput if thread used in corresponding vgetAlexander Kabaev2003-11-021-1/+2
* - In sched_prio() only force us onto the current queue if our priority isJeff Roberson2003-11-021-1/+2
* - Rename SCHED_PRI_NTHRESH to SCHED_SLICE_NTHRESH since it is only used inJeff Roberson2003-11-021-10/+11
* - Remove uses of PRIO_TOTAL and replace them with SCHED_PRI_NRESVJeff Roberson2003-11-021-5/+5
* - Change sched_interact_update() to only accept slp+runtime values betweenJeff Roberson2003-11-021-27/+56
* Temporarily undo parts of the stuct mount locking commit by jeff.Alexander Kabaev2003-11-011-5/+1
* - Add static to local functions and data where it was missing.Jeff Roberson2003-10-311-78/+222
* Ensure that mp_ncpus is set to 1 if mp_cpu_probe() fails.John Baldwin2003-10-301-1/+3
* Relock mntvnode_mtx if vget fails in vfs_stdsync. The loop isAlexander Kabaev2003-10-301-0/+1
* Try to fetch thread mailbox address in page fault trap, so when threadDavid Xu2003-10-301-1/+2
* Add a temporary mechanism to disble INTR_MPSAFE from network interfaceSam Leffler2003-10-291-0/+13
* Removed mostly-dead code for setting switchtime after the idle loopBruce Evans2003-10-292-11/+2
* Removed sched_nest variable in sched_switch(). Context switches alwaysBruce Evans2003-10-293-7/+1
* Introduce the notion of "persistent mbuf tags"; these are tags that staySam Leffler2003-10-291-0/+17
* speedup stream socket recv handling by tracking the tail ofSam Leffler2003-10-283-41/+338
* - Only change the run queue in sched_prio() if the kse is non null. threadsJeff Roberson2003-10-281-10/+2
* - Don't set td_priority directly here, use sched_prio().Jeff Roberson2003-10-271-1/+1