| Commit message (Expand) | Author | Age | Files | Lines |
* | Add two new fcntls to enable/disable read-ahead: | delphij | 2009-09-28 | 1 | -0/+44 |
* | Replace AUDIT_ARG() with variable argument macros with a set more more | rwatson | 2009-06-27 | 1 | -3/+3 |
* | - Similar to the previous commit, but for CURRENT: Fix a bug where a FIFO vnode | lulf | 2009-06-24 | 1 | -1/+0 |
* | - Fix a bug where a FIFO vnode use count was increased twice, but only | lulf | 2009-06-24 | 1 | -1/+0 |
* | Add a new 'void closefrom(int lowfd)' system call. When called, it closes | jhb | 2009-06-15 | 1 | -0/+36 |
* | - Use an acquire barrier to increment f_count in fget_unlocked and | jeff | 2009-06-02 | 1 | -2/+6 |
* | Add hierarchical jails. A jail may further virtualize its environment | jamie | 2009-05-27 | 1 | -6/+30 |
* | Set the umask in a new file descriptor table earlier in fdcopy() to remove | jhb | 2009-05-20 | 1 | -4/+2 |
* | Revert r192094. The revision caused problems for sysctl(3) consumers | kib | 2009-05-15 | 1 | -2/+15 |
* | - Implement a lockless file descriptor lookup algorithm in | jeff | 2009-05-14 | 1 | -33/+88 |
* | Update comment above _fget() for earlier change to FWRITE failures return | jhb | 2009-04-15 | 1 | -4/+2 |
* | Remove the printf's when the vnode to be exported for procstat is not a VDIR. | marcus | 2009-02-14 | 1 | -4/+0 |
* | Change two KASSERTS to printfs and simple returns. Stress testing has | marcus | 2009-02-14 | 1 | -2/+12 |
* | Modify fdcopy() so that, during fork(2), it won't copy file descriptors | rwatson | 2009-02-11 | 1 | -1/+2 |
* | Clear the pointers to the file in the struct filedesc before file is closed | kib | 2008-12-30 | 1 | -6/+8 |
* | Prune some whining. | peter | 2008-12-02 | 1 | -10/+0 |
* | Duplicate another few hundred lines of code in order to be compatible | peter | 2008-12-01 | 1 | -0/+2 |
* | Properly wrap this giant block of duplicate code inside COMPAT_FREEBSD7 | peter | 2008-11-30 | 1 | -2/+2 |
* | Implement copyout packing more along the lines of what I had in mind. | peter | 2008-11-30 | 1 | -4/+268 |
* | WIP kinfo_file/kinfo_vmmentry tweaks. The idea: | peter | 2008-11-29 | 1 | -0/+4 |
* | Remove unnecessary locking around vn_fullpath(). The vnode lock for the | jhb | 2008-11-04 | 1 | -6/+4 |
* | Use shared vnode locks instead of exclusive vnode locks for the access(), | jhb | 2008-11-03 | 1 | -1/+1 |
* | Fix a number of style issues in the MALLOC / FREE commit. I've tried to | des | 2008-10-23 | 1 | -1/+1 |
* | Retire the MALLOC and FREE macros. They are an abomination unto style(9). | des | 2008-10-23 | 1 | -12/+11 |
* | Downgrade XXX to a Note for fgetsock() and fputsock(). | rwatson | 2008-10-12 | 1 | -2/+2 |
* | Integrate the new MPSAFE TTY layer to the FreeBSD operating system. | ed | 2008-08-20 | 1 | -0/+12 |
* | Remove unneeded D_NEEDGIANT from /dev/fd/{0,1,2}. | ed | 2008-08-09 | 1 | -1/+0 |
* | Rework the lifetime management of the kernel implementation of POSIX | jhb | 2008-06-27 | 1 | -0/+6 |
* | Remove redundant checks from fcntl()'s F_DUPFD. | ed | 2008-05-28 | 1 | -31/+16 |
* | Replace direct atomic operation for the file refcount witht the | attilio | 2008-05-25 | 1 | -2/+2 |
* | Implement the per-open file data for the cdev. | kib | 2008-05-21 | 1 | -0/+6 |
* | * Correct a mis-merge that leaked the PROC_LOCK [1] | kris | 2008-04-26 | 1 | -2/+2 |
* | fdhold can return NULL, so add the one remaining missing check for this | kris | 2008-04-24 | 1 | -0/+2 |
* | Add the new kernel-mode NFS Lock Manager. To use it instead of the | dfr | 2008-03-26 | 1 | -7/+66 |
* | Revert previous change - it appears that the limit I was hitting was a | sobomax | 2008-03-19 | 1 | -36/+3 |
* | In keeping with style(9)'s recommendations on macros, use a ';' | rwatson | 2008-03-16 | 1 | -2/+2 |
* | Properly set size of the file_zone to match kern.maxfiles parameter. | sobomax | 2008-03-16 | 1 | -3/+36 |
* | Introduce a new F_DUP2FD command to fcntl(2), for compatibility with | antoine | 2008-03-08 | 1 | -1/+6 |
* | This patch adds a new ktrace(2) record type, KTR_STRUCT, whose payload | des | 2008-02-23 | 1 | -0/+8 |
* | Fix sendfile(2) write-only file permission bypass. | simon | 2008-02-14 | 1 | -1/+1 |
* | Add support for displaying a process' current working directory, root | marcus | 2008-02-09 | 1 | -0/+50 |
* | Export a type for POSIX SHM file descriptors via kern.proc.filedesc as | rwatson | 2008-01-20 | 1 | -0/+4 |
* | VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used in | attilio | 2008-01-13 | 1 | -1/+1 |
* | vn_lock() is currently only used with the 'curthread' passed as argument. | attilio | 2008-01-10 | 1 | -2/+2 |
* | Add a new file descriptor type for IPC shared memory objects and use it to | jhb | 2008-01-08 | 1 | -0/+2 |
* | Make ftruncate a 'struct file' operation rather than a vnode operation. | jhb | 2008-01-07 | 1 | -0/+8 |
* | - In sysctl_kern_file skip fdps with negative lastfiles. This can | jeff | 2008-01-03 | 1 | -1/+2 |
* | Remove explicit locking of struct file. | jeff | 2007-12-30 | 1 | -105/+67 |
* | Add two new sysctls in support of the forthcoming procstat(1) to support | rwatson | 2007-12-02 | 1 | -1/+180 |
* | Remove the now-unused NET_{LOCK,UNLOCK,ASSERT}_GIANT() macros, which | rwatson | 2007-08-06 | 1 | -3/+0 |