summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_extattr.c
Commit message (Expand)AuthorAgeFilesLines
* - Release the references acquired by VOP_GETWRITEMOUNT and vfs_getvfs().jeff2006-03-311-13/+12
* Change vn_open() to honor the MPSAFE flag in the passed in nameidata objectjhb2006-03-281-1/+1
* - Remove explicit calls to lock and unlock Giant and replace them withjeff2006-03-211-83/+66
* use strlcpy in cvtstatfs and copy_statfs instead of bcopy to ensureps2006-03-041-4/+4
* Don't truncate f_mntfromname & f_mntonname to 16 characters whenps2006-03-031-2/+2
* - Use vfs_ref/rel to protect a mountpoint from going away while VFS_STATFSjeff2006-02-231-10/+29
* Add pathname and/or vnode argument auditing for the following system calls:wsalamon2006-02-221-50/+129
* - Revert r1.406 until a solution can be found that doesn't break nfs. Thejeff2006-02-221-28/+21
* - Hold the vnode used in the statfs related functions until we're done withjeff2006-02-221-21/+28
* Add a kern_eaccess() function and use it to implement xenix_eaccess()jhb2006-02-061-3/+9
* - Don't check v_mount for NULL to determine if a vnode has been recycled.jeff2006-02-061-2/+4
* In fchdir(), Giant must be separately acquired and dropped if the oldrwatson2006-02-031-0/+2
* - chroot and chdir need to lock giant as appropriate for the outgoing vpjeff2006-02-011-0/+5
* - Reorder calls to vrele() after calls to vput() when the vrele is ajeff2006-02-011-11/+11
* Tweak previous vfs_lookup.c commit to return an EINVAL error fromtruckman2006-01-221-1/+1
* Fix style bug.dds2006-01-041-2/+2
* Replace tv_usec normalization with the return of EINVAL.dds2006-01-041-24/+6
* Normalize the tv_usec part of the utimes(2) arguments to ensuredds2006-01-031-3/+24
* Reduce Giant scope a bit, as fdrop() is believed to be MPSAFE.pjd2005-12-201-9/+7
* Implement new world order in VFS locking for extended attributes. This willcsjp2005-09-241-29/+62
* Improve the MP safeness associated with the creation of symboliccsjp2005-09-151-1/+1
* In case of mac_check_vnode_rename_from() or vn_start_write() failure,pjd2005-09-011-1/+2
* Actually only protect mount-point if security.jail.enforce_statfs is set to 2.pjd2005-06-231-10/+0
* - Remove vnode lock asserts at the end of vfs syscalls. These asserts werejeff2005-06-141-18/+0
* Do not allocate memory while holding a mutex.pjd2005-06-121-2/+4
* Do not allocate memory based on not-checked argument from userland.pjd2005-06-111-13/+28
* Rename sysctl security.jail.getfsstatroot_only to security.jail.enforce_statfspjd2005-06-091-5/+25
* Avoid code duplication in serval places by introducing universalpjd2005-06-091-77/+46
* Initialize uio_iovcnt to 1 in extattr_list_vp() and extattr_get_vp()rodrigc2005-06-081-0/+2
* Acquire Giant explicitly in quotactl() so that the syscalls.masterrwatson2005-05-281-2/+10
* Acquire Giant explicitly in fhopen(), fhstat(), and kern_fhstatfs(),rwatson2005-05-281-10/+36
* Remove (now) unused argument 'td' from cvtstatfs().pjd2005-05-271-7/+6
* Sync locking in freebsd4_getfsstat() with getfsstat().pjd2005-05-271-0/+3
* Use consistent style in functions I want to modify in the near future.pjd2005-05-271-9/+15
* Protect fsid in freebsd4_getfsstat() in simlar way as it is done inpjd2005-05-221-3/+6
* If we need to hide fsid, kern_statfs()/kern_fstatfs() will do it for us,pjd2005-05-221-5/+3
* - vput(tvp) before vrele(tdvp) in kern_rename() to avoid lock order issues.jeff2005-04-111-2/+2
* - Remove the namei NOOBJ flag. It is meaningless now.jeff2005-04-091-13/+10
* - Pass LK_EXCLUSIVE to VFS_ROOT() to satisfy the new flags argument. Forjeff2005-03-241-1/+1
* - Remove the #ifdef LOOKUP_SHARED from some calls to NDINIT. Thejeff2005-03-241-7/+1
* - Don't VOP_UNLOCK prior to VOP_REVOKE. The lock is required now.jeff2005-03-131-10/+5
* Drag another softupdates tentacle back into FFS: Now that FFS'sphk2005-02-081-4/+0
* Implement a kern_pathconf() wrapper for pathconf() which can take thejhb2005-02-071-6/+12
* - Tweak kern_msgctl() to return a copy of the requested message queue idjhb2005-02-071-122/+96
* - Correct a typo in kern_rename. tvfslocked should be initialized fromjeff2005-02-021-1/+1
* - Or MPSAFE with the correct set of flags in stat(). This affected onlyjeff2005-02-011-1/+1
* Don't use VOP_GETVOBJECT, use vp->v_object directly.phk2005-01-251-5/+4
* Don't call VOP_CREATEVOBJECT(), it's the responsibility of thephk2005-01-241-13/+1
* - Change all vfs syscalls to use VFS_LOCK_GIANT(), and MPSAFE nds.jeff2005-01-241-100/+266
* Ditch vfs_object_create() and make the callers call VOP_CREATEVOBJECT()phk2005-01-131-2/+2
OpenPOWER on IntegriCloud