PERFORCE change 65970 for review

Marcel Moolenaar marcel at FreeBSD.org
Sat Nov 27 21:40:10 PST 2004


http://perforce.freebsd.org/chv.cgi?CH=65970

Change 65970 by marcel at marcel_nfs on 2004/11/28 05:39:31

	If we have a page table, pass it on to the kernel.

Affected files ...

.. //depot/projects/ia64/sys/boot/ia64/ski/bootinfo.c#3 edit

Differences ...

==== //depot/projects/ia64/sys/boot/ia64/ski/bootinfo.c#3 (text+ko) ====

@@ -58,6 +58,8 @@
     {NULL,	0}
 };
 
+extern uint64_t *pgtbl;
+
 extern char *ski_fmtdev(void *vdev);
 extern int ski_init_stubs(struct bootinfo *);
 
@@ -315,5 +317,10 @@
     /* all done copying stuff in, save end of loaded object space */
     bi->bi_kernend = addr;
 
+    if (pgtbl != NULL) {
+	bi->bi_pgtbl = (uintptr_t)pgtbl;
+	bi->bi_pgtblsz = 4096;
+    }
+
     return (ski_init_stubs(bi));
 }


More information about the p4-projects mailing list