NetBSD/sys/arch/luna68k/luna68k
thorpej a180cee23b Pool deals fairly well with physical memory shortage, but it doesn't
deal with shortages of the VM maps where the backing pages are mapped
(usually kmem_map).  Try to deal with this:

* Group all information about the backend allocator for a pool in a
  separate structure.  The pool references this structure, rather than
  the individual fields.
* Change the pool_init() API accordingly, and adjust all callers.
* Link all pools using the same backend allocator on a list.
* The backend allocator is responsible for waiting for physical memory
  to become available, but will still fail if it cannot callocate KVA
  space for the pages.  If this happens, carefully drain all pools using
  the same backend allocator, so that some KVA space can be freed.
* Change pool_reclaim() to indicate if it actually succeeded in freeing
  some pages, and use that information to make draining easier and more
  efficient.
* Get rid of PR_URGENT.  There was only one use of it, and it could be
  dealt with by the caller.

From art@openbsd.org.
2002-03-08 20:48:27 +00:00
..
autoconf.c Kludge to detect booted_device detection. Needs helpful 2nd stage boot 2000-01-15 02:06:31 +00:00
clock.c Nuke unnecessary external variable declaration. 2000-01-11 10:29:35 +00:00
clockvar.h
conf.c Added clockctl 2002-01-12 13:22:23 +00:00
db_memrw.c remove include of <vm/vm.h>. <vm/vm.h> -> <uvm/uvm_extern.h> 2000-06-29 08:10:45 +00:00
disksubr.c strategy should have an 'r'. Inspired by similar change in OpenBSD. 2002-02-19 17:09:40 +00:00
genassym.cf Define proper macros for FP frame offsets rather than magic numbers. 2000-11-21 13:54:13 +00:00
isr.c Add a patchwork prototype declaration for netintr(). 2000-07-09 08:08:20 +00:00
isr.h
locore.s add register prefixes. no change in generated .o file. 2001-08-25 21:08:02 +00:00
machdep.c Change type of dumpmag to u_int32_t since it is actually 2002-03-06 13:10:18 +00:00
mainbus.c
mem.c - Use DEV_ constants, instead of documenting the numbers! 2002-02-27 01:20:51 +00:00
pmap.c Pool deals fairly well with physical memory shortage, but it doesn't 2002-03-08 20:48:27 +00:00
pmap_bootstrap.c This file is a replicant of hp300. The following is peculair to 2000-12-12 04:06:08 +00:00
procfs_machdep.c No-op commit to force update to a non-"-kk" revision. 2001-01-18 17:47:58 +00:00
sys_machdep.c g/c obsolete vtrace(2) stuff 2000-12-13 18:13:05 +00:00
trap.c allow writing to write-only mappings. fixes PR 3493. 2002-02-14 07:08:02 +00:00
vectors.s
vm_machdep.c Don't need to declare phys_map - it is declared in <uvm/uvm_extern.h>. 2002-03-04 02:43:22 +00:00