summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_export.c
Commit message (Expand)AuthorAgeFilesLines
* Move vnode-to-file-handle translation from vfs_vptofh to vop_vptofh method.Pawel Jakub Dawidek2007-02-151-1/+1
* When exiting vfs_export(), delete the "export" option fromCraig Rodrigues2007-01-231-11/+31
* In vfs_export(), if we specify MNT_DELEXPORT in the struct export_args,Craig Rodrigues2006-12-161-1/+4
* Convert to ANSI-style function prototypes.Craig Rodrigues2006-12-161-21/+9
* Use vfs_mount_error() to log mount errors in a few places with humanCraig Rodrigues2006-12-071-1/+8
* Use mount interlock to protect all changes to mnt_flag and mnt_kern_flag.Tor Egge2006-09-261-0/+10
* Normalize a significant number of kernel malloc type names:Robert Watson2005-10-311-1/+1
* Use the refcount API to manage the reference count for user credentialsJohn Baldwin2005-09-271-2/+3
* Handle theoretical case of vfs_export being called with both MNT_DELEXPORT andAlexander Kabaev2005-05-111-0/+1
* - Pass LK_EXCLUSIVE to VFS_ROOT() to satisfy the new flags argument. ForJeff Roberson2005-03-241-1/+1
* Make various mountpoint related functions static.Poul-Henning Kamp2005-02-101-4/+3
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-061-1/+1
* Sigh. I really need to get an internet connection which is less thanColin Percival2004-11-291-1/+1
* Check that saddr->sa_family is a sensible value before using it.Colin Percival2004-11-281-0/+4
* Make VFS_ROOT() and vflush() take a thread argument.Alfred Perlstein2004-07-121-1/+1
* Include <sys/mutex.h> and its prerequisite <sys/lock.h> instesd of dependingBruce Evans2004-04-211-5/+8
* Remove advertising clause from University of California Regent's license,Warner Losh2004-04-051-4/+0
* Guard against MLEN growing larger than a uint8_t due to MSIZE grwoing to aScott Long2003-07-261-0/+2
* Use __FBSDID().David E. O'Brien2003-06-111-1/+3
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-3/+3
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-3/+3
* SMP locking for radix nodes.Jeffrey Hsu2002-12-241-4/+10
* Partial backout of 1.318, remove error handling added because it may beAlfred Perlstein2002-06-301-15/+3
* Fix several style bugs:Alfred Perlstein2002-06-291-7/+17
* Unbreak computation of 'smask' that I broke when removing caddr_t.Alfred Perlstein2002-06-291-1/+1
* nuke caddr_t.Alfred Perlstein2002-06-281-10/+9
* Fixed some style bugs in the removal of __P(()). The main ones wereBruce Evans2002-03-241-1/+1
* Remove __P.Alfred Perlstein2002-03-191-4/+4
* Check the version of ex_anon (a `struct xucred') before using it toDima Dorfman2002-03-031-0/+10
* Fix some signed/unsigned integer confusion, and add bounds checking ofKris Kennaway2001-09-101-0/+5
* Since the netexport struct was centralised to 'struct mount',Ian Dowse2001-05-291-1/+1
* vfs_subr.c is getting rather fat. The underlying repocopy and thisPoul-Henning Kamp2001-04-261-2852/+4
* Move the netexport structure from the fs-specific mountstructurePoul-Henning Kamp2001-04-251-5/+61
* Correct #includes to work with fixed sys/mount.h.Greg Lehey2001-04-231-0/+2
* Reclaim directory vnodes held in namecache if few free vnodes areSeigo Tanimura2001-04-181-0/+26
* This patch removes the VOP_BWRITE() vector.Poul-Henning Kamp2001-04-171-1/+1
* Add a NOTE_REVOKE flag for vnodes, which is triggered from within vclean().Jonathan Lemon2001-02-231-0/+5
* Switch to using a struct xucred instead of a struct xucred when notBrian Feldman2001-02-181-2/+10
* Change and clean the mutex lock interface.Bosko Milekic2001-02-091-87/+87
* Mechanical change to use <sys/queue.h> macro API instead ofPoul-Henning Kamp2001-02-041-1/+1
* Properly lock new vnode.Boris Popov2001-01-311-4/+9
* Convert all simplelocks to mutexes and remove the simplelock implementations.Jason Evans2001-01-241-55/+55
* o The move to using VADMIN under vaccess() resulted in some systemRobert Watson2001-01-231-1/+1
* Stick the kthread API in a kthread_* namespace, and the specialized kprocJohn Baldwin2000-12-151-2/+2
* Use proper mutex locking when calling setrunnable from speedup_syncer().Kirk McKusick2000-12-131-3/+2
* Convert more malloc+bzero to malloc+M_ZERO.David Malone2000-12-081-4/+2
* Untangle vfsinit() a bit. Use seperate sysinit functions rather thanPeter Wemm2000-12-061-2/+4
* Correct int/long type mismatch in the proper place this time. freevnodesAndrew Gallatin2000-12-021-3/+3
* Use msleep() instead of mtx_exit()/tsleep() so that we release the lock andJohn Baldwin2000-12-011-13/+7
* Get rid of a bogus mtx_exit (it was attempting to release anKirk McKusick2000-11-301-1/+0