summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_extattr.c
Commit message (Expand)AuthorAgeFilesLines
* o In struct prison, add an allprison linked list of prisons (protectedMike Barcroft2003-04-091-44/+65
* Move the initialization of the vattr flags field in setfflags() toRobert Watson2003-03-051-6/+3
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-2/+2
* Remove extraneous FILEDESC_LOCK around atomic read.Jeffrey Hsu2003-02-161-2/+0
* Correct handling of locking for chroot() and chdir() cases: ratherRobert Watson2003-01-311-7/+8
* Clean up vnode handling on return from chroot() in certain errorRobert Watson2003-01-311-2/+4
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-2/+2
* Bow to the whining masses and change a union back into void *. RetainMatthew Dillon2003-01-131-21/+21
* Change struct file f_data to un_data, a union of the correct structMatthew Dillon2003-01-121-21/+21
* Correct file descriptor leaks in lseek and do_dup.Jacques Vidrine2003-01-061-8/+15
* unwrap lines made short enough by SCARGS removalAlfred Perlstein2002-12-141-8/+4
* remove syscallarg().Alfred Perlstein2002-12-141-177/+177
* SCARGS removal take II.Alfred Perlstein2002-12-141-85/+85
* Backout removal SCARGS, the code freeze is only "selectively" over.Alfred Perlstein2002-12-131-85/+85
* Remove SCARGS.Alfred Perlstein2002-12-131-85/+85
* Fix a case in kern_rename() where a vn_finished_write() call wasIan Dowse2002-10-271-2/+2
* Change the way support for asynchronous I/O is indicated to applicationsGarrett Wollman2002-10-271-1/+14
* Hook up most of the MAC entry points relating to file/directory/nodeRobert Watson2002-10-191-2/+68
* Incremental style improvements: more consistently avoid assignmentsRobert Watson2002-10-101-18/+31
* Explore new heights in alphabetization for _file and _fd variations onRobert Watson2002-10-101-60/+60
* Implement extattr_{delete,get,set}_link() system calls: extended attributeRobert Watson2002-10-091-0/+90
* Add back a fdrop() call at the end of kern_open() that got lost inIan Dowse2002-10-071-0/+1
* Merge support for mac_check_vnode_link(), a MAC framework/policy entryRobert Watson2002-10-051-1/+6
* Fix mis-indentation.Poul-Henning Kamp2002-10-021-1/+1
* - Properly lock v_vflags in getdirents().Jeff Roberson2002-09-251-4/+14
* VOP_FSYNC() requires that it's vnode argument be locked, which nfs_link()Don Lewis2002-09-191-1/+3
* vfs_syscalls.c:Bruce Evans2002-09-101-7/+3
* Split out a number of mostly VFS and signal related syscalls intoIan Dowse2002-09-011-82/+214
* - Hold the vnode lock across unlink() so that the v_vflag check is safe.Jeff Roberson2002-08-211-15/+20
* Pass active_cred and file_cred into the MAC framework explicitlyRobert Watson2002-08-191-4/+11
* Break out mac_check_vnode_op() into three seperate checks:Robert Watson2002-08-191-8/+4
* Make similar changes to fo_stat() and fo_poll() as made earlier toRobert Watson2002-08-161-7/+7
* - Replace v_flag with v_iflag and v_vflagJeff Roberson2002-08-041-4/+7
* Introduce support for Mandatory Access Control and extensibleRobert Watson2002-08-011-1/+14
* Include file cleanup; mac.h and malloc.h at one point had orderingRobert Watson2002-08-011-1/+1
* Introduce support for Mandatory Access Control and extensibleRobert Watson2002-08-011-10/+95
* Introduce support for Mandatory Access Control and extensibleRobert Watson2002-08-011-0/+12
* Improve formatting and variable use consistency in extattr systemRobert Watson2002-08-011-3/+2
* Simplify the logic to enter VFS_EXTATTRCTL().Robert Watson2002-08-011-7/+2
* Introduce support for Mandatory Access Control and extensibleRobert Watson2002-07-311-0/+23
* When referencing nd_cnp after namei(), always pass SAVENAME intoRobert Watson2002-07-301-5/+9
* Set VAPPEND in open mode when O_APPEND is specified as an argument toRobert Watson2002-07-221-0/+2
* Change utimes to set the file creation time (for filesystems thatKirk McKusick2002-07-171-6/+15
* Change the name of st_createtime to st_birthtime. This change isKirk McKusick2002-07-161-1/+1
* - Change chroot_refuse_vdir_fds() to require that the passed in structJohn Baldwin2002-07-131-16/+18
* Move every code related to mount(2) in a new file, vfs_mount.c.Maxime Henrion2002-07-021-1042/+0
* Use indirect function pointer hooks instead of #ifdef SOFTUPDATESIan Dowse2002-07-011-5/+4
* Remove unneeded casts to caddr_t.Alfred Perlstein2002-06-281-31/+31
* In vn_mkdir(), use vrele() instead of vput() on the parent directoryIan Dowse2002-06-281-1/+9
* Use proper size in bzero of stat structure.Kirk McKusick2002-06-241-1/+1