Module Name: src
Committed By: uebayasi
Date: Tue Apr 27 08:40:22 UTC 2010
Modified Files:
src/sys/uvm [uebayasi-xip]: uvm_extern.h
Log Message:
Forgotten to check this in; now uvm_page_physload() and
uvm_page_physload_device() returns struct vm_physseg * (which is not
used yet).
To generate a diff of this commit:
cvs rdiff -u -r1.161.2.1 -r1.161.2.2 src/sys/uvm/uvm_extern.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/uvm/uvm_extern.h
diff -u src/sys/uvm/uvm_extern.h:1.161.2.1 src/sys/uvm/uvm_extern.h:1.161.2.2
--- src/sys/uvm/uvm_extern.h:1.161.2.1 Tue Feb 23 07:44:25 2010
+++ src/sys/uvm/uvm_extern.h Tue Apr 27 08:40:22 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_extern.h,v 1.161.2.1 2010/02/23 07:44:25 uebayasi Exp $ */
+/* $NetBSD: uvm_extern.h,v 1.161.2.2 2010/04/27 08:40:22 uebayasi Exp $ */
/*
*
@@ -721,9 +721,9 @@
void uvm_pagerealloc(struct vm_page *,
struct uvm_object *, voff_t);
/* Actually, uvm_page_physload takes PF#s which need their own type */
-void uvm_page_physload(paddr_t, paddr_t,
+void *uvm_page_physload(paddr_t, paddr_t,
paddr_t, paddr_t, int);
-void uvm_page_physload_device(paddr_t, paddr_t,
+void *uvm_page_physload_device(paddr_t, paddr_t,
paddr_t, paddr_t, int);
void uvm_setpagesize(void);