| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove the now invalid (and possibly unused) debug.mpsafevfs | Attilio Rao | 2009-05-30 | 1 | -9/+0 |
| * | Add VOP_ACCESSX, which can be used to query for newly added V* | Edward Tomasz Napierala | 2009-05-30 | 3 | -0/+74 |
| * | Place hostnames and similar information fully under the prison system. | Jamie Gritton | 2009-05-29 | 4 | -105/+246 |
| * | Modify vm_hold_load_pages() to allocate pages using VM_ALLOC_NOOBJ rather | Alan Cox | 2009-05-29 | 1 | -13/+5 |
| * | Minor style tweak. | Robert Watson | 2009-05-29 | 1 | -1/+2 |
| * | Since sched_pin() and sched_unpin() are already inlined, don't manually | Robert Watson | 2009-05-29 | 1 | -2/+2 |
| * | Remove extra cpu_spinwait() invocations. This should really only be used | John Baldwin | 2009-05-29 | 2 | -11/+0 |
| * | Tweak a few comments on adaptive spinning. | John Baldwin | 2009-05-29 | 2 | -6/+15 |
| * | Make the rmlock(9) interface a bit more like the rwlock(9) interface: | Robert Watson | 2009-05-29 | 2 | -7/+27 |
| * | Let vfs_lookup() return ENOTDIR if the path has a trailing slash and | Dag-Erling Smørgrav | 2009-05-29 | 1 | -8/+12 |
| * | Fix misleading comment. | Dag-Erling Smørgrav | 2009-05-29 | 1 | -1/+1 |
| * | The patch for r193011 was partially rejected when applied, complete it. | Attilio Rao | 2009-05-29 | 1 | -2/+4 |
| * | Last minute TTY API change: remove mutex argument from tty_alloc(). | Ed Schouten | 2009-05-29 | 2 | -3/+10 |
| * | Reverse the logic for ADAPTIVE_SX option and enable it by default. | Attilio Rao | 2009-05-29 | 1 | -21/+50 |
| * | fail(9) support: | Zachary Loafman | 2009-05-27 | 2 | -3/+588 |
| * | Add hierarchical jails. A jail may further virtualize its environment | Jamie Gritton | 2009-05-27 | 17 | -701/+1782 |
| * | Add the ksyms(4) pseudo driver. The ksyms driver allows a process to | Stacey Son | 2009-05-26 | 3 | -0/+78 |
| * | Add the OpenSolaris dtrace lockstat provider. The lockstat provider | Stacey Son | 2009-05-26 | 6 | -29/+339 |
| * | Get rid of M_TEMP. | Ed Schouten | 2009-05-26 | 1 | -2/+2 |
| * | Add missing socket options. | Pawel Jakub Dawidek | 2009-05-26 | 1 | -0/+8 |
| * | The advisory lock may be activated or activated and removed during the | Konstantin Belousov | 2009-05-24 | 1 | -2/+15 |
| * | In lf_purgelocks(), assert that state->ls_pending is empty after we | Konstantin Belousov | 2009-05-24 | 1 | -1/+3 |
| * | In lf_advlockasync(), recheck for doomed vnode after the state->ls_lock | Konstantin Belousov | 2009-05-24 | 1 | -2/+17 |
| * | Block when initially opening a TTY multiple times. | Ed Schouten | 2009-05-24 | 1 | -5/+11 |
| * | Replace the while statement with the if for clarity. The loop body | Konstantin Belousov | 2009-05-24 | 1 | -1/+1 |
| * | V_irtualize the if_clone framework, thus allowing for clonable ifnets | Marko Zec | 2009-05-23 | 1 | -0/+5 |
| * | Delay an error message until the variable it uses gets initialized. | Jamie Gritton | 2009-05-23 | 1 | -8/+6 |
| * | Introduce the if_vmove() function, which will be used in the future | Marko Zec | 2009-05-22 | 1 | -1/+1 |
| * | Make 'struct acl' larger, as required to support NFSv4 ACLs. Provide | Edward Tomasz Napierala | 2009-05-22 | 2 | -7/+142 |
| * | Enable secure TTY input buffer flushing by default. | Ed Schouten | 2009-05-21 | 1 | -1/+1 |
| * | Add a new sysctl: kern.tty_inq_flush_secure. | Ed Schouten | 2009-05-21 | 1 | -14/+8 |
| * | Only use the ABI compat shim for vfs.bufspace if the old buffer is smaller | John Baldwin | 2009-05-21 | 1 | -1/+1 |
| * | Move the M_WAITOK flag in notify() into an M_NOWAIT one in order to match | Attilio Rao | 2009-05-21 | 1 | -1/+3 |
| * | Set the umask in a new file descriptor table earlier in fdcopy() to remove | John Baldwin | 2009-05-20 | 1 | -4/+2 |
| * | Remove an obsolete assertion. We always wake up all waiters when unlocking | John Baldwin | 2009-05-20 | 1 | -2/+0 |
| * | Fix a typo. | John Baldwin | 2009-05-20 | 1 | -1/+1 |
| * | We no longer need to use d_thread_t for portability here, switch to | Warner Losh | 2009-05-20 | 1 | -4/+4 |
| * | Add minimal ZFS lock hierarchy | Kip Macy | 2009-05-20 | 1 | -0/+7 |
| * | With SMPng, DEVICE_POLLING uses its own idle threads, rather than the | Robert Watson | 2009-05-19 | 1 | -2/+1 |
| * | sysctl_rman: report shared resources to devinfo | Andriy Gapon | 2009-05-19 | 1 | -24/+34 |
| * | Binding interrupts to a CPU consists of two parts: setting up CPU | Robert Watson | 2009-05-18 | 1 | -1/+13 |
| * | Mark the clock sysctls as MPSAFE. | Ed Schouten | 2009-05-18 | 1 | -3/+4 |
| * | Several changes to vfs_bio_clrbuf(): | Alan Cox | 2009-05-17 | 1 | -13/+11 |
| * | Introduce vfs_bio_set_valid() and use it from ffs_realloccg(). This | Alan Cox | 2009-05-17 | 1 | -0/+38 |
| * | Print an extra newline when not at the first column already. | Ed Schouten | 2009-05-17 | 1 | -1/+2 |
| * | Several cleanups to tty_info(), better known as Ctrl-T. | Ed Schouten | 2009-05-17 | 1 | -25/+25 |
| * | Remove do-nothing code that was required to dirty the old buffer on Alpha. | Dag-Erling Smørgrav | 2009-05-15 | 1 | -12/+1 |
| * | Revert r192094. The revision caused problems for sysctl(3) consumers | Konstantin Belousov | 2009-05-15 | 2 | -7/+18 |
| * | - Use a separate sx lock to try to limit the number of concurrent userland | John Baldwin | 2009-05-14 | 1 | -7/+16 |
| * | Do not advance req->oldidx when sysctl_old_user returning an | Konstantin Belousov | 2009-05-14 | 1 | -3/+5 |