Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: None <source@NetBSD.ORG>
List: source-changes
Date: 05/14/1997 21:30:02
thorpej
Wed May 14 14:23:07 PDT 1997
Update of /cvsroot/src/sys/vm
In directory netbsd1:/var/slash-tmp/cvs-serv17684

Modified Files:
      Tag: thorpej-bus-dma
	vm_page.c 
Log Message:
Two fixes to vm_page_alloc_memory():
- If alignment is less than the page size, make it the page size, since
  we're allocating a 1 page minimum.  (From Wolfgang Solfrank.)
- Don't require that the pmap provides contiguous regions in ascending
  order (although the pages within a region are assumed to be provided
  in ascending order).  Implementation suggested by Wolfgang Solfrank,
  modified slightly by me.  Also, per earlier discussion with Chuck Cranor.


thorpej
Wed May 14 14:25:02 PDT 1997
Update of /cvsroot/src/sys/vm
In directory netbsd1:/var/slash-tmp/cvs-serv18503

Modified Files:
      Tag: thorpej-bus-dma
	vm_page.h 
Log Message:
IS_VM_PHYSADDR() was way-off in the MACHINE_NONCONTIG case; fix it.