aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
Commit message (Expand)AuthorAgeFilesLines
* Add a note to the effect that BUS_ADD_CHILD callsWarner Losh2015-10-281-1/+3
* Bring the tags and links entries for amd64 up to date.Kirk McKusick2015-10-271-15/+29
* The aio_waitcomplete(2) syscall should not sleep when the given timeoutPawel Jakub Dawidek2015-10-251-2/+9
* Sysctl: Add common support for U8, U16 typesConrad Meyer2015-10-221-0/+64
* Missing regen after last change to sys/kern/syscalls.master.John Baldwin2015-10-222-2/+2
* Rename remaining linux32 symbols such as linux_sysent[] andJohn Baldwin2015-10-221-0/+4
* Add a way to distinguish between forking and thread creation in schedtail.Ed Schouten2015-10-222-1/+5
* Trim spaces at end of line to record the proper commit message forKonstantin Belousov2015-10-201-1/+1
* Mark struct thread zone as type-stable.Konstantin Belousov2015-10-201-1/+1
* Reviewed by: jhb, phoKonstantin Belousov2015-10-201-1/+12
* No need to dereference struct proc to pids when comparing processesKonstantin Belousov2015-10-201-1/+1
* Switch pl_child_pid from int to pid_t.John Baldwin2015-10-201-1/+1
* Fix printf format to allow for bus_size_t not being u_long on all platforms.Ian Lepore2015-10-201-2/+2
* Replace /dev/acd0 with /dev/cd1Enji Cooper2015-10-171-3/+3
* If falloc_caps() failed, cleanup needs to be performed. This is a bugKonstantin Belousov2015-10-161-1/+1
* Allow PT_INTERP and PT_NOTES segments to be located anywhere in theKonstantin Belousov2015-10-141-40/+100
* Parallelize the buffer cache and rewrite getnewbuf(). This results in aJeff Roberson2015-10-141-575/+711
* There are times when it would be really nice to have a record of the last fewHiren Panchasara2015-10-141-1/+1
* Change the default setting of kern.ipc.shm_allow_removed from 0 to 1.Edward Tomasz Napierala2015-10-101-1/+1
* Provide better debug message on kernel module name clash.Edward Tomasz Napierala2015-10-101-6/+2
* Remove root_mount_wait(). It's not used anywhere.Edward Tomasz Napierala2015-10-091-18/+0
* Enforce the maxproc limitation before allocating struct proc, initialKonstantin Belousov2015-10-082-32/+34
* Fix r283998 that broke mapin events for hwpmc.Fabien Thomas2015-10-081-1/+7
* Fix regression from r248371. We need to copy packet header to newGleb Smirnoff2015-10-071-0/+5
* Fix various edge cases related to system call tracing.John Baldwin2015-10-062-5/+19
* Fix core corruption caused by race in note_procstat_vmmapConrad Meyer2015-10-063-9/+33
* Remove debugging variable from r143761.Gleb Smirnoff2015-10-061-3/+0
* Include additional info in ptrace(2) KTR traces:John Baldwin2015-10-051-18/+23
* Revert r288628 and instead fix a discrepancy between the posix_fadvise(2)Mark Johnston2015-10-031-2/+3
* The return value of posix_fadvise(2) is just an error status, soMark Johnston2015-10-031-3/+2
* Perform a single batched update to the object's paging-in-progress countAlan Cox2015-10-031-4/+2
* Fail the sbuf if vsnprintf(3) fails.Poul-Henning Kamp2015-10-021-0/+4
* Ensure that vop_stdadvise() does not call getblk() on vnodes that have anMark Johnston2015-10-011-10/+9
* Disable suspend when we're shutting down. This solves the "tell FreeBSDColin Percival2015-10-011-0/+4
* As a step towards the elimination of PG_CACHED pages, rework the handlingMark Johnston2015-09-304-102/+80
* save some bytes by using more concise SDT_PROBE<n> instead of SDT_PROBEAndriy Gapon2015-09-2810-85/+76
* - Collapse vfs_vmio_truncate & vfs_vmio_release into a single function.Jeff Roberson2015-09-271-85/+67
* Remove a check for a condition that is always false by a preceding KASSERTMark Johnston2015-09-261-5/+0
* Fix argument ordering in vn_printf().Mark Johnston2015-09-261-2/+2
* sbuf: Process more than one char at a timeConrad Meyer2015-09-251-35/+39
* Use per-cpu values for base and last in tc_cpu_ticks(). The valuesKonstantin Belousov2015-09-251-7/+14
* kqueue: simplify kern_kqueue by not refing/unrefing creds too earlyMateusz Guzik2015-09-231-16/+8
* - Fix a nonsense reordering that somehow slipped into my last diff.Jeff Roberson2015-09-231-2/+2
* Some refactoring of the buf/vm interface.Jeff Roberson2015-09-221-388/+352
* Change vm_page_unwire() such that it (1) accepts PQ_NONE as the specifiedAlan Cox2015-09-221-16/+22
* Revert r287780 until more developers have their say.Hans Petter Selasky2015-09-221-39/+0
* vfs_mountroot_shuffle() never returns non-zero.Bryan Drewery2015-09-221-9/+5
* Ensure that maxproc does not exceed pid_max, at the time of boot.Konstantin Belousov2015-09-211-1/+3
* Add support for weak symbols to the kernel linkers. It means thatKonstantin Belousov2015-09-202-31/+50
* Kernel part of reroot support - a way to change rootfs without reboot.Edward Tomasz Napierala2015-09-182-21/+159