NetBSD/sys
chs f54a093e81 many improvements:
- use struct vm_page_md for attaching pv entries to struct vm_page
 - change pseg_set()'s return value to indicate whether the spare page
   was used as an L2 or L3 PTP.
 - use a pool for pv entries instead of malloc().
 - put PTPs on a list attached to the pmap so we can free them
   more efficiently (by just walking the list) in pmap_destroy().
 - use the new pmap_remove_all() interface to avoid flushing the cache and TLB
   for each pmap_remove() that's done as we are tearing down an address space.
 - in pmap_enter(), handle replacing an existing mapping more efficiently
   than just calling pmap_remove() on it.  also, skip flushing the
   TSB and TLB if there was no previous mapping, since there can't be
   anything we need to flush.  also, preload the TSB if we're pre-setting
   the mod/ref bits.
 - allocate hardware contexts like the MIPS pmap:
   allocate them all sequentially without reuse, then once we run out
   just invalidate all user TLB entries and flush the entire L1 dcache.
 - fix pmap_extract() for the case where the va is not page-aligned and
   nothing is mapped there.
 - fix calculation of TSB size.  it was comparing physmem (which is
   in units of pages) to constants that only make sense if they are
   in units of bytes.
 - avoid sleeping in pmap_enter(), instead let the caller do it.
 - use pmap_kenter_pa() instead of pmap_enter() where appropriate.
 - remove code to handle impossible cases in various functions.
 - tweak asm code to pipeline a little better.
 - remove many unnecessary spls and membars.
 - lots of code cleanup.
 - no doubt other stuff that I've forgotten.

the result of all this is that a fork+exit microbenchmark is 34% faster
and a fork+exec+exit microbenchmark is 28% faster.
2002-09-22 07:19:43 +00:00
..
adosfs Fix biff in previous change. 2002-09-21 20:26:49 +00:00
altq make this compile. 2002-09-07 11:56:33 +00:00
arch many improvements: 2002-09-22 07:19:43 +00:00
coda MNT_GETARGS support 2002-09-21 18:10:34 +00:00
compat - Introduce a e_fault field in struct proc to provide emulation specific 2002-09-21 21:14:54 +00:00
conf Bump version for the merge of gehenna-devsw. 2002-09-06 14:24:45 +00:00
crypto Modified to avoid compiler warnings. The specific warning related 2002-09-08 07:52:41 +00:00
ddb Another item on the TODO list: 2002-08-26 11:35:22 +00:00
dev RAIDGETBUF and RAIDPUTBUF were #defines that were only used in 2002-09-22 03:56:08 +00:00
filecorefs Fix biff in previous change. 2002-09-21 20:26:49 +00:00
fs MNT_GETARGS support 2002-09-21 18:10:34 +00:00
gdbscripts Build a .gdbinit in the kernel build directory. The new .gdbinit 2002-09-01 23:04:47 +00:00
ipkdb
isofs MNT_GETARGS support 2002-09-21 18:10:34 +00:00
kern Separate the scheduler from the context switching code. 2002-09-22 05:36:48 +00:00
lib add strtoul.c, it's now used in MI code. 2002-09-21 17:45:16 +00:00
lkm make this compile. 2002-09-06 16:56:13 +00:00
miscfs MNT_GETARGS support 2002-09-21 18:08:27 +00:00
msdosfs MNT_GETARGS support 2002-09-21 18:10:34 +00:00
net Fix thinko in the SIOC{G,S}80211CHANNEL and SIOC{G,S}80211BSSID 2002-09-22 01:56:08 +00:00
netatalk
netccitt Rename SB_UPDATE_TAIL() to SB_EMPTY_FIXUP(), per suggestion from 2002-07-03 21:39:40 +00:00
netinet Resync with official IPF 2002-09-19 08:12:43 +00:00
netinet6 remove extra blank line 2002-09-15 01:18:59 +00:00
netisdn Merge the gehenna-devsw branch into the trunk. 2002-09-06 13:18:43 +00:00
netiso avoid swapping endian of ip_len and ip_off on mbuf, to meet with M_LEADINGSPACE 2002-08-14 00:23:27 +00:00
netkey KNF - return is not a function. sync w/kame. 2002-09-11 02:46:42 +00:00
netnatm
netns avoid swapping endian of ip_len and ip_off on mbuf, to meet with M_LEADINGSPACE 2002-08-14 00:23:27 +00:00
netsmb Merge the gehenna-devsw branch into the trunk. 2002-09-06 13:18:43 +00:00
nfs MNT_GETARGS support 2002-09-21 18:08:27 +00:00
ntfs MNT_GETARGS support 2002-09-21 18:10:34 +00:00
stand
sys Separate the scheduler from the context switching code. 2002-09-22 05:36:48 +00:00
ufs MNT_GETARGS support 2002-09-21 18:10:34 +00:00
uvm add pmap_remove_all() hook (empty on most platforms so far). 2002-09-22 07:17:08 +00:00
Makefile