aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/vm_pageq.c
diff options
context:
space:
mode:
authorJake Burkholder <jake@FreeBSD.org>2003-03-25 00:07:06 +0000
committerJake Burkholder <jake@FreeBSD.org>2003-03-25 00:07:06 +0000
commit227f9a1c5853566d8177f487b69a896b1121f84d (patch)
tree553401a4d58eb98b1e208a82c3ba2c32b848a225 /sys/vm/vm_pageq.c
parentd829c3dfeea2cdb6da513864c71dc7547415a6fd (diff)
downloadsrc-227f9a1c5853566d8177f487b69a896b1121f84d.tar.gz
src-227f9a1c5853566d8177f487b69a896b1121f84d.zip
- Add vm_paddr_t, a physical address type. This is required for systems
where physical addresses larger than virtual addresses, such as i386s with PAE. - Use this to represent physical addresses in the MI vm system and in the i386 pmap code. This also changes the paddr parameter to d_mmap_t. - Fix printf formats to handle physical addresses >4G in the i386 memory detection code, and due to kvtop returning vm_paddr_t instead of u_long. Note that this is a name change only; vm_paddr_t is still the same as vm_offset_t on all currently supported platforms. Sponsored by: DARPA, Network Associates Laboratories Discussed with: re, phk (cdevsw change)
Notes
Notes: svn path=/head/; revision=112569
Diffstat (limited to 'sys/vm/vm_pageq.c')
-rw-r--r--sys/vm/vm_pageq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_pageq.c b/sys/vm/vm_pageq.c
index 4ea0115d4acc..332e445425e8 100644
--- a/sys/vm/vm_pageq.c
+++ b/sys/vm/vm_pageq.c
@@ -90,7 +90,7 @@ vm_pageq_enqueue(int queue, vm_page_t m)
* Must be called at splhigh().
*/
vm_page_t
-vm_pageq_add_new_page(vm_offset_t pa)
+vm_pageq_add_new_page(vm_paddr_t pa)
{
vm_page_t m;