aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
Commit message (Expand)AuthorAgeFilesLines
* Factor out mbuf hashing code from LAGG driver so that other networkHans Petter Selasky2015-03-111-0/+181
* Fix SR-IOV passthrough devices to allow ppt to attachRyan Stone2015-03-101-0/+19
* Reimplement support for userland core dump compression using a new interfaceMark Johnston2015-03-093-522/+298
* Make 32-bit PowerPC kernels, like 64-bit PowerPC kernels, position-independentNathan Whitehorn2015-03-071-1/+1
* Add mutex support to the pps_ioctl() API in the kernel.Hans Petter Selasky2015-03-071-3/+4
* Move libnv into the kernel and hook it into the kernel buildRyan Stone2015-03-013-0/+3646
* Correct the use of an unitialized variable in sendfind_getobj()Ryan Stone2015-02-281-0/+1
* Format the line properly (wrap before column 80).Ian Lepore2015-02-281-1/+2
* Export the new osreldate and osrelease jail parms in jail_get(2).Ian Lepore2015-02-281-0/+6
* The umtx_lock mutex is used by top-half of the kernel, but isKonstantin Belousov2015-02-286-33/+42
* Put back Andy's void for gcc happiness.Warner Losh2015-02-271-1/+1
* Make sched_random() return an unsigned number, and use uint32_tWarner Losh2015-02-271-11/+13
* The VNASSERT in vflush() FORCECLOSE case is trying to panic early toKonstantin Belousov2015-02-271-0/+1
* Allow the kern.osrelease and kern.osreldate sysctl values to be set in aIan Lepore2015-02-274-14/+115
* Fix sched_ule on sparc64, gcc complains sched_random is not a correctAndrew Turner2015-02-271-1/+1
* sched_random is only called for SMP, only define it there.Andrew Turner2015-02-271-1/+2
* Create sched_rand() and move the LCG code into that. Call this whenWarner Losh2015-02-271-9/+22
* Remove taskqueue_start_threads_pinned(); there's noa generic cpuset version o...Adrian Chadd2015-02-251-24/+0
* When failing to claim ownership of a umtx_pi, restore the umutex ownerKonstantin Belousov2015-02-251-0/+11
* When unlocking a contested PI pthread mutex, if the queue of waitersKonstantin Belousov2015-02-251-2/+33
* Keep a reference on the coredump vnode for vn_fullpath() call. Do itKonstantin Belousov2015-02-241-8/+6
* soreceive_generic() still has similar KASSERT(), therefore instead ofAndrey V. Elsukov2015-02-231-0/+2
* In some cases soreceive_dgram() can return no data, but has controlAndrey V. Elsukov2015-02-231-5/+5
* Make kernel ELF image parsing not crash for kernels running at locationsNathan Whitehorn2015-02-211-1/+7
* Don't specify a resid parameter if we're just going to ignore it. Instead,Mark Johnston2015-02-201-7/+5
* Remove unnecessary checks for a return value of NULL from M_WAITOKMark Johnston2015-02-191-21/+5
* Free the zlib stream after expanding a compressed CTF section.Mark Johnston2015-02-191-1/+3
* If malloc() sleeps, Giant is dropped. Recheck for another threadKonstantin Belousov2015-02-181-5/+16
* filedesc: obtain a stable copy of credentials in fget_unlockedMateusz Guzik2015-02-181-4/+4
* filedesc: simplify fget_unlocked & friendsMateusz Guzik2015-02-175-47/+79
* Use anonymous unions and structs to organize shared space in mbuf(9),Gleb Smirnoff2015-02-171-2/+2
* Use anonymous unions to add possibility to put mbufs into queue(3)Gleb Smirnoff2015-02-171-0/+12
* Add the mnt_lockref field to the ddb(4) 'show mount' commandEnji Cooper2015-02-171-0/+1
* Implement taskqueue_start_threads_cpuset().Adrian Chadd2015-02-171-12/+25
* Reparenting done by debugger attach can leave reaper without directKonstantin Belousov2015-02-151-3/+5
* Return with the process locked, caller expects p still locked afterKonstantin Belousov2015-02-151-1/+1
* Don't access sockbuf fields directly, use accessor functions instead.Davide Italiano2015-02-141-8/+4
* Include OBJT_PHYS VM objects in ELF core dumps. In particular thisJohn Baldwin2015-02-141-1/+2
* Add two new counters for vnode life cycle events:John Baldwin2015-02-141-1/+13
* Preset the object's color, or alignment, to maximize superpage usage.Alan Cox2015-02-131-1/+2
* This fixes a bug I in-advertantly inserted when I updated the calloutRandall Stewart2015-02-121-15/+21
* Remove check against NULL after M_WAITOK.Rui Paulo2015-02-111-2/+0
* Restore the data array in coredump(), but use a different style toRui Paulo2015-02-111-4/+12
* Remove a printf and an strlen() from the coredump code.Rui Paulo2015-02-101-6/+3
* Mountd iterating over the mount points may race with the parallelKonstantin Belousov2015-02-101-2/+8
* Sanitise the coredump file names sent to devd.Rui Paulo2015-02-101-16/+39
* Notify devd(8) when a process crashed.Rui Paulo2015-02-091-0/+31
* This fixes two conditions that can incur when migrationRandall Stewart2015-02-091-86/+154
* Preset the object's color, or alignment, to maximize superpage usage.Alan Cox2015-02-081-1/+2
* Add a new device control utility for new-bus devices called devctl. ThisJohn Baldwin2015-02-062-0/+291