aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_extattr.c
Commit message (Expand)AuthorAgeFilesLines
* More s/file system/filesystem/gTom Rhodes2002-05-161-5/+5
* Disable the shared locking namei() code for now. It breaks several stackingJeff Roberson2002-05-141-1/+1
* Add the lchflags(2) syscall.Maxime Henrion2002-05-051-0/+23
* Move a KASSERT() in open() prior to unlocking the vnode. It's not safe toJeff Roberson2002-05-051-3/+4
* Fix a typo.Maxime Henrion2002-05-041-1/+1
* Slightly restructure extattr_get_vp() so that there's only one entry pointRobert Watson2002-04-231-8/+15
* Improve style consistency of vfs_syscalls.c by converting the style usedRobert Watson2002-04-201-53/+82
* The recent NFS forced unmount improvements introduced a side-effectIan Dowse2002-04-171-2/+9
* Turn #ifdef LOOKUP_SHARED into #ifndef LOOKUP_EXCLUSIVE to enable thisJeff Roberson2002-04-091-1/+1
* The fourth parameter to copystr() is a size_t, not an int.Maxime Henrion2002-04-081-1/+2
* o Change kernel_vmount() interface to be more convenient : pass twoMaxime Henrion2002-04-071-30/+34
* Add two forgotten vfs_unbusy() calls, in vfs_mount() and vfs_nmount().Maxime Henrion2002-04-031-0/+2
* Change the suser() API to take advantage of td_ucred as well as do aJohn Baldwin2002-04-011-25/+25
* - Properly sync vfs_nmount() with changes that have be already doneMaxime Henrion2002-03-281-57/+39
* - Fixup a few style nits:Andrew R. Reiter2002-03-261-6/+5
* As discussed in -arch, add the new nmount(2) system call and theMaxime Henrion2002-03-261-3/+553
* - Recommit the securelevel_gt() calls removed by commits rev. 1.84 ofAndrew R. Reiter2002-03-251-0/+5
* - Back out the commit to make the linker_load_file() securelevel checkAndrew R. Reiter2002-03-221-5/+0
* - Fix a logic error in checking the securelevel that was introduced in theAndrew R. Reiter2002-03-211-1/+1
* - Change a check of securelevel to securelevel_gt() call in order to helpAndrew R. Reiter2002-03-201-0/+5
* Remove references to vm_zone.h and switch over to the new uma API.Jeff Roberson2002-03-201-3/+3
* Remove __P.Alfred Perlstein2002-03-191-12/+12
* Close a race when vfs_syscalls.c:checkdirs() runs.Alfred Perlstein2002-03-191-7/+12
* This patch adds the "LOCKSHARED" option to namei which causes it to only acqu...Jeff Roberson2002-03-121-0/+5
* Three p_ucred -> td_ucred's missed in jhb's earlier pass; all appear toRobert Watson2002-03-051-2/+2
* The change from td->td_proc->p_ucred to td->td_ucred has shortened someRobert Watson2002-03-051-4/+3
* - Change namei() to use td_ucred instead of p_ucred.John Baldwin2002-02-271-3/+3
* Simple p_ucred -> td_ucred changes to start using the per-thread ucredJohn Baldwin2002-02-271-60/+60
* Make sure to hold vnode lock when calling into VOP_GETATTR().Robert Watson2002-02-101-0/+2
* Make sure to grab vnode lock on a vnode before calling VOP_GETATTR()Robert Watson2002-02-101-5/+9
* Remove a stray 'const' that slept into extattr_set_vp(), and couldRobert Watson2002-02-101-1/+1
* Part I: Update extended attribute API and ABI:Robert Watson2002-02-101-81/+60
* o Merge various recent fixes from the MAC branch relating to extattrctl():Robert Watson2002-02-081-6/+10
* Pre-KSE/M3 commit.Julian Elischer2002-02-071-2/+0
* Don't recurse on filedesc lock in chroot_refuse_vdir_fds().Alfred Perlstein2002-02-011-8/+9
* Replace ffind_* with fget calls.Alfred Perlstein2002-01-141-4/+3
* SMP Lock struct file, filedesc and the global file list.Alfred Perlstein2002-01-131-38/+151
* Change dounmount() to return EBUSY in the non-MNT_FORCE case if weIan Dowse2002-01-101-1/+8
* Return EBADF in case some vnode field has been reset to a NULL pointer.Stefan Eßer2002-01-031-0/+2
* Define a new mount flag "MNT_JAILDEVFS"Poul-Henning Kamp2001-11-051-8/+2
* Add mnt_reservedvnlist so we can MFC to 4.x, in order to make all mountMatthew Dillon2001-11-041-0/+1
* o Remove the local temporary variable "struct proc *p" from vfs_mount()Robert Watson2001-11-021-7/+7
* Argh!Poul-Henning Kamp2001-11-021-21/+0
* Add empty shell for nmount syscall (take 2!)Poul-Henning Kamp2001-11-021-0/+21
* Add nmount() stub function and regenerate the syscall-glue which shouldPoul-Henning Kamp2001-11-021-0/+21
* unwind v_writecount in fhopen() if we are unable to allocate theMatthew Dillon2001-10-241-1/+4
* Change the vnode list under the mount point from a LIST to a TAILQMatthew Dillon2001-10-231-1/+2
* o Complete the migration from suser error checking in the following formRobert Watson2001-10-011-22/+43
* o vpaccess() -> vn_access() -- Peter reminds me that there is alreadyRobert Watson2001-09-221-4/+4
* o Introduce eaccess(2), a version of access(2) that uses the effectiveRobert Watson2001-09-211-14/+67