opnsense-src/sys
John Dyson 8f9110f6a1 This mega-commit is meant to fix numerous interrelated problems. There
has been some bitrot and incorrect assumptions in the vfs_bio code.  These
problems have manifest themselves worse on NFS type filesystems, but can
still affect local filesystems under certain circumstances.  Most of
the problems have involved mmap consistancy, and as a side-effect broke
the vfs.ioopt code.  This code might have been committed seperately, but
almost everything is interrelated.

1)	Allow (pmap_object_init_pt) prefaulting of buffer-busy pages that
	are fully valid.
2)	Rather than deactivating erroneously read initial (header) pages in
	kern_exec, we now free them.
3)	Fix the rundown of non-VMIO buffers that are in an inconsistent
	(missing vp) state.
4)	Fix the disassociation of pages from buffers in brelse.  The previous
	code had rotted and was faulty in a couple of important circumstances.
5)	Remove a gratuitious buffer wakeup in vfs_vmio_release.
6)	Remove a crufty and currently unused cluster mechanism for VBLK
	files in vfs_bio_awrite.  When the code is functional, I'll add back
	a cleaner version.
7)	The page busy count wakeups assocated with the buffer cache usage were
	incorrectly cleaned up in a previous commit by me.  Revert to the
	original, correct version, but with a cleaner implementation.
8)	The cluster read code now tries to keep data associated with buffers
	more aggressively (without breaking the heuristics) when it is presumed
	that the read data (buffers) will be soon needed.
9)	Change to filesystem lockmgr locks so that they use LK_NOPAUSE.  The
	delay loop waiting is not useful for filesystem locks, due to the
	length of the time intervals.
10)	Correct and clean-up spec_getpages.
11)	Implement a fully functional nfs_getpages, nfs_putpages.
12)	Fix nfs_write so that modifications are coherent with the NFS data on
	the server disk (at least as well as NFS seems to allow.)
13)	Properly support MS_INVALIDATE on NFS.
14)	Properly pass down MS_INVALIDATE to lower levels of the VM code from
	vm_map_clean.
15)	Better support the notion of pages being busy but valid, so that
	fewer in-transit waits occur.  (use p->busy more for pageouts instead
	of PG_BUSY.)  Since the page is fully valid, it is still usable for
	reads.
16)	It is possible (in error) for cached pages to be busy.  Make the
	page allocation code handle that case correctly.  (It should probably
	be a printf or panic, but I want the system to handle coding errors
	robustly.  I'll probably add a printf.)
17)	Correct the design and usage of vm_page_sleep.  It didn't handle
	consistancy problems very well, so make the design a little less
	lofty.  After vm_page_sleep, if it ever blocked, it is still important
	to relookup the page (if the object generation count changed), and
	verify it's status (always.)
18)	In vm_pageout.c, vm_pageout_clean had rotted, so clean that up.
19)	Push the page busy for writes and VM_PROT_READ into vm_pageout_flush.
20)	Fix vm_pager_put_pages and it's descendents to support an int flag
	instead of a boolean, so that we can pass down the invalidate bit.
1998-03-07 21:37:31 +00:00
..
alpha Staticized. 1998-02-13 07:34:52 +00:00
amd64 This mega-commit is meant to fix numerous interrelated problems. There 1998-03-07 21:37:31 +00:00
compat Removed redundant test against MAXDSIZ (the rlimit test is stronger). 1998-02-25 05:33:06 +00:00
compile Stop cvs up -P from removing empty compile directories. 1994-08-25 16:20:16 +00:00
conf Removed support for now-unused FreeBSD misfeature DPSRCS. 1998-03-06 07:28:01 +00:00
ddb Ensure that the linker sets for commands exist by putting a standard 1998-02-13 02:19:29 +00:00
dev Correct minor typo 1998-03-05 10:53:26 +00:00
fs This mega-commit is meant to fix numerous interrelated problems. There 1998-03-07 21:37:31 +00:00
geom Properly bzero() structures after they're returned from getccdbuf(). 1998-02-22 10:01:23 +00:00
gnu The intent is to get rid of WILLRELE in vnode_if.src by making 1998-03-01 22:46:53 +00:00
i386 This mega-commit is meant to fix numerous interrelated problems. There 1998-03-07 21:37:31 +00:00
isa Remove special handling for resuming clock interrupt when using APIC_IO. 1998-03-05 21:45:53 +00:00
isofs/cd9660 Trivial filesystem getpages/putpages implementations, set the second. 1998-03-06 09:46:52 +00:00
kern This mega-commit is meant to fix numerous interrelated problems. There 1998-03-07 21:37:31 +00:00
libkern Make our v_usecount vnode reference count work identically to the 1998-01-06 05:26:17 +00:00
miscfs This mega-commit is meant to fix numerous interrelated problems. There 1998-03-07 21:37:31 +00:00
modules Don't add files handled by bsd.kmod.mk to CLEANFILES. Don't add never- 1998-02-25 01:40:55 +00:00
msdosfs Trivial filesystem getpages/putpages implementations, set the second. 1998-03-06 09:46:52 +00:00
net Fixed syntax error in previous commit. 1998-03-01 06:01:33 +00:00
netatalk Removed unused #includes. 1998-02-25 13:08:07 +00:00
netinet Make sure that you can only bind a more specific address when it is 1998-03-01 19:39:29 +00:00
netipx Staticize. 1998-02-09 06:11:36 +00:00
netkey polish the code. 1998-02-27 11:10:18 +00:00
netnatm Staticize. 1998-02-09 06:11:36 +00:00
netns Make INET a proper option. 1998-01-08 23:42:31 +00:00
nfs This mega-commit is meant to fix numerous interrelated problems. There 1998-03-07 21:37:31 +00:00
nfsclient This mega-commit is meant to fix numerous interrelated problems. There 1998-03-07 21:37:31 +00:00
nfsserver Staticize. 1998-02-09 06:11:36 +00:00
pc98 Sync with following changes: 1998-03-07 15:48:29 +00:00
pccard Removed unused #includes. 1998-02-25 05:58:50 +00:00
pci Correct minor typo 1998-03-05 10:53:26 +00:00
posix4 Reviewed by: msmith, bde long ago 1998-03-04 10:27:00 +00:00
powerpc/include Back out part 1 of the MCFH that changed $Id$ to $FreeBSD$. We are not 1997-02-22 09:48:43 +00:00
rpc Resolve conflicts. 1997-05-28 04:45:15 +00:00
scsi Don't depend on "implicit int". 1998-02-20 13:37:40 +00:00
sys This mega-commit is meant to fix numerous interrelated problems. There 1998-03-07 21:37:31 +00:00
tools Use __inline instead of inline to prevent pedantic compiler warnings. 1997-12-19 23:25:16 +00:00
ufs This mega-commit is meant to fix numerous interrelated problems. There 1998-03-07 21:37:31 +00:00
vm This mega-commit is meant to fix numerous interrelated problems. There 1998-03-07 21:37:31 +00:00
Makefile Test for the existance of ${MACHINE}/boot before trying to build it. 1998-02-20 07:37:08 +00:00