aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
Commit message (Expand)AuthorAgeFilesLines
* detect idle kse correctly.David Xu2002-10-221-1/+1
* This update removes a race between unmount and lookup. The lookupKirk McKusick2002-10-221-4/+1
* This checkin reimplements the io-request priority hack in a wayKirk McKusick2002-10-221-29/+0
* GEOM does not (and shall not) propagate flags like D_MEMDISK, so we willPoul-Henning Kamp2002-10-211-11/+11
* Reduce the overhead of the mutex statistics gathering code, try to produceDag-Erling Smørgrav2002-10-212-38/+56
* One #include <sys/sysctl.h> should be enough.Olivier Houchard2002-10-211-1/+0
* Use if_printf(ifp, "blah") instead ofBrooks Davis2002-10-211-2/+1
* Fix the calculations of the length of the unread message bufferThomas Moestl2002-10-201-2/+2
* We have memset() and memcpy() in the kernel now, so we don't need toPoul-Henning Kamp2002-10-201-5/+0
* Add an actual implementation of kse_wakeup()Julian Elischer2002-10-201-1/+41
* Add kernel dump support, based on the ia64 version (which was committedThomas Moestl2002-10-201-1/+1
* #unifdef the code for checking blessed lock collisions until we need it.Poul-Henning Kamp2002-10-201-0/+13
* If MAC_MAX_POLICIES isn't defined, don't try to define it, just let theRobert Watson2002-10-201-3/+1
* Stake a claim on 418 (__xstat), 419 (__xfstat), 420 (__xlstat)Peter Wemm2002-10-191-0/+3
* Grab 416/417 real estate before I get burned while testing again.Peter Wemm2002-10-191-0/+2
* Add a new 'NOMACCHECK' flag to namei() NDINIT flags, which permits theRobert Watson2002-10-191-6/+11
* Regen from addition of execve_mac placeholder.Robert Watson2002-10-192-2/+2
* Add a placeholder for the execve_mac() system call, similar to SELinux'sRobert Watson2002-10-191-0/+1
* Drop in the MAC check for file creation as part of open().Robert Watson2002-10-191-3/+11
* Make sure to clear the 'registered' flag for MAC policies when theyRobert Watson2002-10-191-0/+1
* Hook up most of the MAC entry points relating to file/directory/nodeRobert Watson2002-10-192-4/+136
* Add two hooks to signal module load and module unload to MD code.Marcel Moolenaar2002-10-192-0/+18
* Reduce code duplication by moving the common actions inMarcel Moolenaar2002-10-192-116/+112
* Non-functional change in preparation of the next commit:Marcel Moolenaar2002-10-192-82/+72
* In link_elf_load_file(), when SPARSE_MAPPING is defined and weMarcel Moolenaar2002-10-192-2/+0
* Don't leak memory in semop(2). (Fix a bug I introduced in rev 1.55.)Alfred Perlstein2002-10-191-1/+2
* Do not lock the process when calling fdfree() (this would have recursed onJohn Baldwin2002-10-181-4/+0
* fdfree() clears p_fd for us, no need to do it again.John Baldwin2002-10-181-1/+0
* Don't lock the proc lock to clear p_fd. p_fd isn't protected by the procJohn Baldwin2002-10-181-2/+0
* Have lockinit() initialize the debugging fields of a lockKirk McKusick2002-10-181-0/+9
* When the number of dirty buffers rises too high, the buf_daemon runsKirk McKusick2002-10-181-3/+17
* Separate fiels reported by disk_err() with spaces, so that output doesn'tMaxim Sobolev2002-10-171-7/+7
* Instead of (sizeof(source_buffer) - 1) bytes, copy at mostRobert Drehmel2002-10-171-1/+1
* Use strlcpy() instead of strncpy() to copy NUL terminated stringsRobert Drehmel2002-10-1711-28/+27
* fix kldload error return when a module is rejected because it's staticallySam Leffler2002-10-171-4/+12
* - Allocate only enough space for a temporary buffer to holdRobert Drehmel2002-10-171-5/+6
* Fix a fairly subtle bug in mbuf_init() where the reference counterBosko Milekic2002-10-161-1/+1
* Add a missing PROC_UNLOCK in ptrace() for the PT_IO case.John Baldwin2002-10-161-0/+1
* Many style and whitespace fixes.John Baldwin2002-10-161-84/+83
* Sort includes a bit.John Baldwin2002-10-161-3/+3
* Be consistent about funtions being static.Poul-Henning Kamp2002-10-161-11/+11
* Replace aux mbufs with packet tags:Sam Leffler2002-10-163-90/+135
* Plug a memory-leak.Poul-Henning Kamp2002-10-151-0/+1
* Use ; not , as statement separator in PDEBUG() macro.Poul-Henning Kamp2002-10-151-5/+4
* Argh. Put back setting of P_ADVLOCK for the F_WRLCK case that wasJohn Baldwin2002-10-151-0/+3
* Fix kernel module loading on ia64. Cross-module function callsMarcel Moolenaar2002-10-152-0/+24
* Restore pointer that was removed in 1.128. This wasn't a merge-o.Peter Wemm2002-10-151-0/+4
* - Add a new global mutex 'ppeers_lock' to protect the p_peers list ofJohn Baldwin2002-10-153-44/+58
* Remove the leaderp variable and just access p_leader directly. TheJohn Baldwin2002-10-151-12/+3
* Remove a KASSERT I added in 1.73 to catch uninitialized pipes.Alfred Perlstein2002-10-141-2/+0