aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_export.c
Commit message (Expand)AuthorAgeFilesLines
* Add an option "EXTRA_VNODES" to cause an extra number of vnode structuresPeter Wemm1996-05-311-2/+2
* Put the "free vnode isn't" check back in the right place.John Dyson1996-03-091-3/+3
* Eliminated many redundant vm_map_lookup operations for vm_mmap.John Dyson1996-01-191-5/+14
* Convert DDB to new-style option.Garrett Wollman1996-01-041-1/+2
* Moved the #ifdef DIAGNOSTIC in vrele() so that the check for negativeDavid Greenman1996-01-021-3/+3
* Staticize.Poul-Henning Kamp1995-12-171-2/+2
* Changes to support 1Tb filesizes. Pages are now named by anJohn Dyson1995-12-111-6/+4
* Untangled the vm.h include file spaghetti.David Greenman1995-12-071-1/+4
* A couple of minor tweaks to the sysctl stuff.Poul-Henning Kamp1995-12-061-3/+3
* Completed function declarations and/or added prototypes.Bruce Evans1995-12-021-2/+12
* A test was backwards.Poul-Henning Kamp1995-11-291-2/+3
* Mega commit for sysctl.Poul-Henning Kamp1995-11-201-39/+21
* Fixed support for DIAGNOSTIC option. SYSCTL_INT() depends on kernel.h.Bruce Evans1995-11-161-1/+2
* Change some of the debug sysctl vars. The semantics of these will change.Poul-Henning Kamp1995-11-141-3/+2
* Fixed type of vfs_free_netcred().Bruce Evans1995-11-111-4/+2
* Introduced a type `vop_t' for vnode operation functions and usedBruce Evans1995-11-091-3/+3
* This is a modification missed by me in the msync fixes a few days ago.John Dyson1995-11-071-2/+2
* Call vfs_unbusy() before error returns from sysctl_vnode(). This fixesBruce Evans1995-10-281-3/+7
* Don't compile the diagnostic functions vhold() and holdrele() unlessBruce Evans1995-08-251-1/+3
* Converted mountlist to a CIRCLEQ.David Greenman1995-08-111-10/+12
* NOTE: libkvm, w, ps, 'top', and any other utility which depends on structDavid Greenman1995-07-131-8/+2
* Improve negative usecount diagnostic a little.David Greenman1995-07-081-4/+4
* 1) Converted v_vmdata to v_object.David Greenman1995-06-281-6/+5
* Pass the correct nonblocking flag to VOP_CLOSE() in vclean().Bruce Evans1995-06-271-2/+3
* Changes to fix the following bugs:David Greenman1995-05-211-1/+29
* Increased ratio of allowed vnodes on freelist to 1/4th of the total. ThisDavid Greenman1995-05-121-3/+3
* Changed #ifdef around printlockedvnodes() from DEBUG to DDB.David Greenman1995-04-161-2/+2
* Changes from John Dyson and myself:David Greenman1995-04-091-2/+2
* Fixed vinvalbuf() to work like NFS wants it to. The previous code wouldn'tDavid Greenman1995-03-211-10/+8
* Don't gain/lose a reference to the object when yanking its pages inDavid Greenman1995-03-201-12/+5
* Don't attempt to sync pages in the V_SAVE case of vinvalbuf; doing so canDavid Greenman1995-03-201-14/+17
* Add and move declarations to fix all of the warnings from `gcc -Wimplicit'Bruce Evans1995-03-161-3/+1
* Added a comment.David Greenman1995-03-111-1/+5
* Reorganized an if() expression for efficiency.David Greenman1995-03-101-3/+3
* Clean up and improve the namecache.Poul-Henning Kamp1995-03-091-11/+24
* Put VAGE vnodes at the head of the free list.David Greenman1995-03-071-5/+8
* Backed out previous change. I forgot (for about the fourth time) thatDavid Greenman1995-02-271-3/+2
* Initialize v_rdev in getnewvnode() - it appears that some filesystemsDavid Greenman1995-02-271-2/+3
* vfs_cluster.c:David Greenman1995-02-221-2/+2
* Fixed some formatting weirdness that I overlooked in the previous commit.David Greenman1995-01-101-5/+5
* These changes embody the support of the fully coherent merged VM buffer cache,David Greenman1995-01-091-158/+209
* Protect vnode buffer chain manipulation with splbio to prevent listDavid Greenman1994-12-231-1/+8
* Use tsleep() rather than sleep so that 'ps' is more informative aboutDavid Greenman1994-10-061-6/+6
* Stuff object into v_vmdata rather than pager. Not important which atDavid Greenman1994-10-051-2/+5
* All of this is cosmetic. prototypes, #includes, printfs and so on. MakesPoul-Henning Kamp1994-10-021-1/+4
* While in the real world, I had a bad case of being swapped out for a lot ofPoul-Henning Kamp1994-09-251-13/+12
* "bogus" fixes from 1.1.5 to work around some cache coherency problems.David Greenman1994-08-291-3/+19
* Initialized v_writecount.David Greenman1994-08-241-2/+3
* print "BUSY" instead of error number if filesystem was busy duringDavid Greenman1994-08-221-5/+13
* Implemented filesystem clean bit via:David Greenman1994-08-201-1/+65