summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_syscalls.c
AgeCommit message (Expand)Author
2004-12-26Use list and queue macros where applicable to make the code easier to read;Miod Vallat
2004-09-16check for VBAD vnodes on getvnode(). ok andreas@, tedu@ and marius@Pedro Martelletto
2004-08-05don't attempt to put processes back in a directory after unmount.Ted Unangst
2004-07-22remove p arg from fdplockTed Unangst
2004-07-18return EINVAL if ftruncate(2) is passed a negative offsetAnil Madhavapeddy
2004-07-13Change mode_t and nlink_t from 16bit to 32bit. This allows us toTodd C. Miller
2004-07-03if vinvalbuf() fails, unlock the vnode and release it. ok marius@Pedro Martelletto
2004-06-21First step towards more sane time handling in the kernel -- this changesThorsten Lockert
2004-05-14use pool for namei pathbuf. testing ok millert@ tdeval@Ted Unangst
2004-05-10when doing user mounts, inherit the MNT_NOEXEC flag from the coveredPedro Martelletto
2004-04-13useless caddr_t cast removal. same md5s.Ted Unangst
2004-01-06lock filedesc before manipulating. avoids some rare races.Ted Unangst
2003-09-01match syscallargs comments with realityHenning Brauer
2003-08-15change arguments to suser. suser now takes the process, and a flagsTed Unangst
2003-07-18check v_mount for NULL before using. ok art@Ted Unangst
2003-06-02Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
2003-05-06attempt to put a process's cwd back in place after a forced umount.Ted Unangst
2003-05-05fix test for restoring mnt_syncer in dounmount.Ted Unangst
2003-05-01several related changes:Ted Unangst
2003-04-11zombies can't live allproc list. art fixed the real problem a while ago.Ted Unangst
2003-04-10don't try to update directories on zombies. pr2030. ok artTed Unangst
2002-10-02Check for negative values. Inspiration from tedu <grendel@zeitbombe.org>.Thomas Nordin
2002-08-23Cleanup change. Since almost all callers (except one) of getvnode did a FREFArtur Grabowski
2002-07-12Change the locking on the mountpoint slightly. Instead of using mnt_lockArtur Grabowski
2002-03-14First round of __P removal in sysTodd C. Miller
2002-02-22Extended Attribute support from FreeBSD/TrustedBSD ok art@, deraadt@Dale Rahn
2002-02-12More FREF/FRELE protection. This time all users of getvnode.Artur Grabowski
2002-02-08Require a FREFd file in dofilewrite{,v}.Artur Grabowski
2002-02-08require a FREFd fp in dofilereadv. Fix some comments.Artur Grabowski
2002-02-08simplify sys_pread a bit.Artur Grabowski
2002-02-08- Rename FILE_{,UN}USE to FREF and FRELE. USE is a bad verb and we don't haveArtur Grabowski
2002-02-05Add counting of temporary references to a struct file (as opposed to referencesArtur Grabowski
2002-02-04Don't ffree the newly allocated file before calling dupfdopen.Artur Grabowski
2002-01-21Mount points must fit in MNAMELEN, not MAXPATHLEN so use copyinstr()Todd C. Miller
2002-01-18record ctime for the mountpoint, mount time or last mount update; art@ okMichael Shalayeff
2001-12-19UBC was a disaster. It worked very good when it worked, but on someArtur Grabowski
2001-11-27Merge in the unified buffer cache code as found in NetBSD 2001/03/10. TheArtur Grabowski
2001-11-06Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.Miod Vallat
2001-10-26 - every new fd created by falloc() is marked as larval and should not be usedArtur Grabowski
2001-07-26Back out changes to symlink and mknod that were not well tested.Todd C. Miller
2001-07-26change vop_symlink and vop_mknod to return vpp (the created node)assar
2001-06-27remove old vmArtur Grabowski
2001-06-22KNFTheo de Raadt
2001-05-23Indentation.Artur Grabowski
2001-05-16Create COMPAT_25 and move ogetfsstat, ostatfs and ostatfs into it.Todd C. Miller
2001-05-16kill COMPAT_{09,10,11} kernel options. We still need kern_info_09.c and kern...Todd C. Miller
2001-05-14Isn't copy 'n paste a great invention?Artur Grabowski
2001-05-14Remove some unnecessary code + some random cleanup.Artur Grabowski
2001-05-13Add pad argument for p{read,write}v? to the syscall args comment forTodd C. Miller
2001-04-04Add "softdep" option to mount. Update from rw/async to softdepGrigoriy Orlov