| Commit message (Expand) | Author | Age | Files | Lines |
* | Add EVFILT_VNODE open, read and close notifications. | kib | 2016-05-03 | 2 | -0/+43 |
* | kern: Add phashinit_flags(), which allows malloc(M_NOWAIT) | sephe | 2016-05-03 | 1 | -4/+25 |
* | Revert bus_get_cpus() for now. | jhb | 2016-05-03 | 2 | -72/+0 |
* | Add a new bus method to fetch device-specific CPU sets. | jhb | 2016-05-02 | 2 | -0/+72 |
* | Issue NOTE_EXTEND when a directory entry is added to or removed from | kib | 2016-05-02 | 1 | -0/+1 |
* | Fix reporting of NOTE_LINK when directory link count changes due to | kib | 2016-05-02 | 1 | -2/+18 |
* | sys/kern: spelling fixes in comments. | pfg | 2016-04-29 | 44 | -74/+74 |
* | sys/kern: spelling fixes. | pfg | 2016-04-29 | 2 | -14/+14 |
* | Automate the subr_unit test. | asomers | 2016-04-29 | 1 | -22/+67 |
* | Expose soaio_enqueue(). | jhb | 2016-04-29 | 1 | -1/+1 |
* | Introduce a new protocol hook pru_aio_queue. | jhb | 2016-04-29 | 3 | -0/+13 |
* | bufs: make B_DIRTY and B_PERSISTENT flags available | pfg | 2016-04-29 | 1 | -2/+1 |
* | INTRNG: Define 'INTR_IRQ_INVALID' constant and use it consistently | mmel | 2016-04-28 | 1 | -8/+6 |
* | GPIO: Add support for gpio pin interrupts. | mmel | 2016-04-28 | 1 | -0/+21 |
* | Add a bus_null_rescan() method that always fails with an error. | jhb | 2016-04-27 | 1 | -0/+13 |
* | Add 'devctl delete' that calls device_delete_child(). | jhb | 2016-04-27 | 1 | -0/+19 |
* | Add a new rescan method to the bus interface. | jhb | 2016-04-27 | 2 | -0/+21 |
* | Delay revmoing the last jail reference in prison_proc_free, and instead | jamie | 2016-04-27 | 1 | -10/+34 |
* | posix4_mib: Don't overrun facility_initialized array | cem | 2016-04-27 | 1 | -3/+3 |
* | subr_mbpool: Don't free bogus pointer in error paths | cem | 2016-04-26 | 1 | -4/+1 |
* | Use crcopysafe in jail_attach. | jamie | 2016-04-26 | 1 | -7/+5 |
* | osd(9): Change array pointer to array pointer type from void* | cem | 2016-04-26 | 4 | -7/+7 |
* | Redo the changes to the SYSV IPC sysctl functions from r298585, so they | jamie | 2016-04-26 | 3 | -83/+50 |
* | sys: extend use of the howmany() macro when available. | pfg | 2016-04-26 | 9 | -13/+12 |
* | Add support for RISC-V. | br | 2016-04-26 | 1 | -3/+3 |
* | Move arm's devmap to some generic place, so it can be used | br | 2016-04-26 | 1 | -0/+322 |
* | Fix the logic in r298585: shm_prison_cansee returns an errno, so is | jamie | 2016-04-25 | 1 | -1/+1 |
* | Encapsulate SYSV IPC objects in jails. Define per-module parameters | jamie | 2016-04-25 | 3 | -113/+1014 |
* | Use the new PR_METHOD_REMOVE to clean up jail handling in POSIX | jamie | 2016-04-25 | 1 | -72/+12 |
* | Pass the current/new jail to PR_METHOD_CHECK, which pushes the call | jamie | 2016-04-25 | 1 | -47/+58 |
* | Add a new jail OSD method, PR_METHOD_REMOVE. It's called when a jail is | jamie | 2016-04-25 | 1 | -8/+41 |
* | Remove the PR_REMOVE flag, which was meant as a temporary marker for | jamie | 2016-04-25 | 1 | -3/+1 |
* | sys: use our roundup2/rounddown2() macros when param.h is available. | pfg | 2016-04-21 | 6 | -7/+7 |
* | Get rid of rctl_lock; use racct_lock where appropriate. The fast paths | trasz | 2016-04-21 | 2 | -95/+89 |
* | Remove slightly used const values that can be replaced with nitems(). | pfg | 2016-04-21 | 1 | -2/+1 |
* | Arm and arm64 both have fueword() implemented for some time. Correct | kib | 2016-04-20 | 1 | -2/+2 |
* | Indentation issues. | pfg | 2016-04-20 | 2 | -4/+2 |
* | kern_rctl: Fix resource leak in error path | cem | 2016-04-20 | 1 | -0/+1 |
* | kernel: use our nitems() macro when it is available through param.h. | pfg | 2016-04-19 | 9 | -34/+21 |
* | Fix debugging printf. | trasz | 2016-04-19 | 1 | -2/+3 |
* | Fix umtx lock/trylock for compat32. | kib | 2016-04-19 | 1 | -2/+2 |
* | Use a loop instead of a goto in sysctl_kern_proc_kstack(). | markj | 2016-04-17 | 1 | -6/+3 |
* | The struct thread td_estcpu member is only used by the 4BSD scheduler. | kib | 2016-04-17 | 4 | -51/+52 |
* | Add 4Kn kernel dump support | cem | 2016-04-15 | 2 | -19/+47 |
* | kern: for pointers replace 0 with NULL. | pfg | 2016-04-15 | 13 | -20/+20 |
* | Allocate RACCT/RCTL zones without UMA_ZONE_NOFREE; no idea why it was there | trasz | 2016-04-15 | 2 | -3/+3 |
* | Sort variable declarations. | trasz | 2016-04-15 | 2 | -42/+35 |
* | Create wrappers for uint64_t and int64_t for the tunables. While not | imp | 2016-04-15 | 1 | -0/+46 |
* | Clean up some style(9) violations. | jamie | 2016-04-14 | 3 | -13/+13 |
* | Separate POSIX mqueue objects in jails; actually, separate them by the | jamie | 2016-04-13 | 1 | -6/+119 |