| Commit message (Expand) | Author | Age | Files | Lines |
* | Background: | mckusick | 2010-01-11 | 1 | -5/+11 |
* | Don't add VAPPEND if the file is not being opened for writing. Note that this | trasz | 2009-12-08 | 1 | -1/+1 |
* | In fhopen, vfs_ref() the mount point while vnode is unlocked, to prevent | kib | 2009-09-06 | 1 | -1/+3 |
* | Honor the vfs.timestamp_precision sysctl settings for utimes(path, NULL) | kib | 2009-08-26 | 1 | -2/+1 |
* | Fix some LORs between vnode locks and filedescriptor table locks. | jhb | 2009-07-31 | 1 | -8/+0 |
* | Rework vnode argument auditing to follow the same structure, in order | rwatson | 2009-07-28 | 1 | -8/+8 |
* | There is an optimization in chmod(1), that makes it not to call chmod(2) | trasz | 2009-07-08 | 1 | -4/+23 |
* | For access(2) and eaccess(2), audit the requested access mode. | rwatson | 2009-07-01 | 1 | -0/+1 |
* | Audit the file descriptor number passed to lseek(2). | rwatson | 2009-07-01 | 1 | -0/+1 |
* | Fix link(2) auditing: use the second audit record path for the new object | rwatson | 2009-07-01 | 1 | -1/+1 |
* | Replace AUDIT_ARG() with variable argument macros with a set more more | rwatson | 2009-06-27 | 1 | -32/+32 |
* | Remove the static from int hardlink_check_uid. | bz | 2009-06-13 | 1 | -1/+1 |
* | Simply shared vnode locking and extend it to also include fsync. | ps | 2009-06-08 | 1 | -2/+8 |
* | Move "options MAC" from opt_mac.h to opt_global.h, as it's now in GENERIC | rwatson | 2009-06-05 | 1 | -1/+0 |
* | Add hierarchical jails. A jail may further virtualize its environment | jamie | 2009-05-27 | 1 | -7/+1 |
* | - Implement a lockless file descriptor lookup algorithm in | jeff | 2009-05-14 | 1 | -14/+5 |
* | Prevent overflow of uio_resid. | kib | 2009-05-11 | 1 | -0/+3 |
* | Remove the thread argument from the FSD (File-System Dependent) parts of | attilio | 2009-05-11 | 1 | -7/+7 |
* | Remove VOP_LEASE and supporting functions. This hasn't been used since | rwatson | 2009-04-10 | 1 | -24/+0 |
* | Don't make Linux stat() open character devices to resolve its name. | ed | 2009-02-20 | 1 | -4/+11 |
* | Use shared vnode locks when invoking VOP_READDIR(). | jhb | 2009-02-13 | 1 | -3/+2 |
* | In some situations, mnt_lockref could go negative due to vfs_unbusy() being | trasz | 2009-02-05 | 1 | -3/+5 |
* | Use shared vnode locks for fchdir(). | jhb | 2009-01-23 | 1 | -2/+2 |
* | Prevent overflow of uio_resid. | pho | 2008-12-27 | 1 | -0/+2 |
* | The quotactl, statfs and fstatfs syscall implementations may dereference | kib | 2008-12-18 | 1 | -6/+18 |
* | In the nfsrv_fhtovp(), after the vfs_getvfs() function found the pointer | kib | 2008-11-29 | 1 | -9/+9 |
* | Merge latest DTrace changes from Perforce. | rodrigc | 2008-11-05 | 1 | -0/+15 |
* | Use shared vnode locks for auditing vnode arguments as auditing only | jhb | 2008-11-04 | 1 | -4/+4 |
* | Use shared vnode locks instead of exclusive vnode locks for the access(), | jhb | 2008-11-03 | 1 | -14/+14 |
* | Improve VFS locking: | attilio | 2008-11-02 | 1 | -4/+4 |
* | Introduce accmode_t. This is required for NFSv4 ACLs - it will be neccessary | trasz | 2008-10-28 | 1 | -16/+18 |
* | Whitespace fix. | jhb | 2008-10-23 | 1 | -1/+2 |
* | Retire the MALLOC and FREE macros. They are an abomination unto style(9). | des | 2008-10-23 | 1 | -2/+2 |
* | Split the copyout of *base at the end of getdirentries() out leaving the | jhb | 2008-10-22 | 1 | -10/+23 |
* | When setting error to EINVAL in 'fvp == tdvp' case, jump to out label, | pjd | 2008-09-01 | 1 | -1/+3 |
* | Decontextualize vfs_busy(), vfs_unbusy() and vfs_mount_alloc() functions. | attilio | 2008-08-31 | 1 | -10/+10 |
* | Decontextualize the couplet VOP_GETATTR / VOP_SETATTR as the passed thread | attilio | 2008-08-28 | 1 | -13/+13 |
* | If S_IFIFO is passed to mknod(2), invoke kern_mkfifoat(9) to create a | rwatson | 2008-06-22 | 1 | -0/+4 |
* | vfs_syscalls.c 1.452 mistakenly swapped the behavior of chown() and lchown(). | truckman | 2008-04-07 | 1 | -1/+1 |
* | Implement the | kib | 2008-03-31 | 1 | -125/+452 |
* | Add the support for the O_EXEC open(2) mode, as specified by the | kib | 2008-03-31 | 1 | -2/+12 |
* | This patch adds a new ktrace(2) record type, KTR_STRUCT, whose payload | des | 2008-02-23 | 1 | -0/+12 |
* | Change readlink(2)'s return type and type of the last argument | ru | 2008-02-12 | 1 | -3/+3 |
* | VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used in | attilio | 2008-01-13 | 1 | -27/+27 |
* | vn_lock() is currently only used with the 'curthread' passed as argument. | attilio | 2008-01-10 | 1 | -20/+20 |
* | Make ftruncate a 'struct file' operation rather than a vnode operation. | jhb | 2008-01-07 | 1 | -90/+0 |
* | Remove explicit locking of struct file. | jeff | 2007-12-30 | 1 | -19/+15 |
* | Merge first in a series of TrustedBSD MAC Framework KPI changes | rwatson | 2007-10-24 | 1 | -31/+31 |
* | Rename mac_check_vnode_delete() MAC Framework and MAC Policy entry | rwatson | 2007-09-10 | 1 | -2/+2 |
* | Rework the routines to convert a 5.x+ statfs structure (with fixed-size | jhb | 2007-08-28 | 1 | -4/+46 |