Jeff Roberson 228ea9d212 - Don't recycle vnodes anymore. Free them once they are dead. getnewvnode
now always allocates a new vnode.
 - Define a new function, vnlru_free, which frees vnodes from the free list.
   It takes as a parameter the number of vnodes to free, which is
   wantfreevnodes - freevnodes when called from vnlru_proc or 1 when
   called from getnewvnode().  For now, getnewvnode() still tries to reclaim
   a free vnode before creating a new one when we are near the limit.
 - Define a function, vdestroy, which handles the actual release of memory
   and teardown of locks, etc.  This could become a uma_dtor() routine.
 - Get rid of minvnodes.  Now wantfreevnodes is 1/4th the max vnodes.  This
   keeps more unreferenced vnodes around so that files which have only
   been stat'd are less likely to be kicked out of the system before we
   have a chance to read them, etc.  These vnodes may still be freed via
   the normal vnlru_proc() routines which may some day become a real lru.
2005-03-25 05:34:39 +00:00
..
2005-03-01 17:44:34 +00:00
2005-03-17 13:37:28 +00:00
2005-02-10 12:23:29 +00:00
2005-03-14 06:51:29 +00:00
2005-03-01 17:44:34 +00:00
2005-03-09 11:50:55 +00:00
2005-03-19 04:34:23 +00:00
2005-02-27 22:02:03 +00:00
2005-02-27 22:02:03 +00:00
2005-02-10 12:17:48 +00:00