Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Nov 2004 05:40:09 GMT
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 65970 for review
Message-ID:  <200411280540.iAS5e915081515@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=65970

Change 65970 by marcel@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));
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200411280540.iAS5e915081515>