Subject: Re: VM/pmap question - how to throw away mappings?
To: None <mycroft@gnu.ai.mit.edu>
From: Charles M. Hannum <mycroft@gnu.ai.mit.edu>
List: tech-kern
Date: 12/04/1994 07:56:34
Actually, this:

	m = &vm_page_array[pmap_page_index(addr) - first_page];

should probably be written as:

	m = &vm_page_array[PHYS_TO_VM_PAGE(addr)];

But this reminds me of somethign else.  In the MACHINE_NONCONTIG case,
should we assume that pmap_page_index() already adjusts for
first_page, so we can avoid the extra arithmetic on machines that
don't need it?