freebsd-dev/sys/miscfs
John Dyson 2d8acc0f4a VM level code cleanups.
1)	Start using TSM.
	Struct procs continue to point to upages structure, after being freed.
	Struct vmspace continues to point to pte object and kva space for kstack.
	u_map is now superfluous.
2)	vm_map's don't need to be reference counted.  They always exist either
	in the kernel or in a vmspace.  The vmspaces are managed by reference
	counts.
3)	Remove the "wired" vm_map nonsense.
4)	No need to keep a cache of kernel stack kva's.
5)	Get rid of strange looking ++var, and change to var++.
6)	Change more data structures to use our "zone" allocator.  Added
	struct proc, struct vmspace and struct vnode.  This saves a significant
	amount of kva space and physical memory.  Additionally, this enables
	TSM for the zone managed memory.
7)	Keep ioopt disabled for now.
8)	Remove the now bogus "single use" map concept.
9)	Use generation counts or id's for data structures residing in TSM, where
	it allows us to avoid unneeded restart overhead during traversals, where
	blocking might occur.
10)	Account better for memory deficits, so the pageout daemon will be able
	to make enough memory available (experimental.)
11)	Fix some vnode locking problems. (From Tor, I think.)
12)	Add a check in ufs_lookup, to avoid lots of unneeded calls to bcmp.
	(experimental.)
13)	Significantly shrink, cleanup, and make slightly faster the vm_fault.c
	code.  Use generation counts, get rid of unneded collpase operations,
	and clean up the cluster code.
14)	Make vm_zone more suitable for TSM.

This commit is partially as a result of discussions and contributions from
other people, including DG, Tor Egge, PHK, and probably others that I
have forgotten to attribute (so let me know, if I forgot.)

This is not the infamous, final cleanup of the vnode stuff, but a necessary
step.  Vnode mgmt should be correct, but things might still change, and
there is still some missing stuff (like ioopt, and physical backing of
non-merged cache files, debugging of layering concepts.)
1998-01-22 17:30:44 +00:00
..
deadfs Add support for poll(2) on files. vop_nopoll() now returns POLLNVAL 1997-12-15 03:09:59 +00:00
devfs add copyrights 1998-01-02 07:31:07 +00:00
fdesc Removed unused #includes. The need for most of them went away with 1997-10-27 13:33:47 +00:00
fifofs Set the sender's low watermark to match the maximum size for atomic 1997-12-19 18:58:14 +00:00
kernfs Removed unused #includes. The need for most of them went away with 1997-10-27 13:33:47 +00:00
nullfs Fixed missing initialization of mp->mnt_stat. At least vm depends on 1998-01-01 08:28:26 +00:00
portal Fixed missing initialization of mp->mnt_stat. At least vm depends on 1998-01-01 08:28:26 +00:00
procfs VM level code cleanups. 1998-01-22 17:30:44 +00:00
specfs Make our v_usecount vnode reference count work identically to the 1998-01-06 05:26:17 +00:00
umapfs Fixed missing initialization of mp->mnt_stat. At least vm depends on 1998-01-01 08:28:26 +00:00
union Delete unused code in union_fsync(). 1998-01-22 02:14:59 +00:00