Module Name: src
Committed By: cherry
Date: Sun Nov 6 15:35:29 UTC 2011
Modified Files:
src/sys/arch/i386/i386: machdep.c
Log Message:
DTRT when initialising pmap_pa_end.
To generate a diff of this commit:
cvs rdiff -u -r1.710 -r1.711 src/sys/arch/i386/i386/machdep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/i386/i386/machdep.c
diff -u src/sys/arch/i386/i386/machdep.c:1.710 src/sys/arch/i386/i386/machdep.c:1.711
--- src/sys/arch/i386/i386/machdep.c:1.710 Sun Nov 6 11:40:46 2011
+++ src/sys/arch/i386/i386/machdep.c Sun Nov 6 15:35:29 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.710 2011/11/06 11:40:46 cherry Exp $ */
+/* $NetBSD: machdep.c,v 1.711 2011/11/06 15:35:29 cherry Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 2000, 2004, 2006, 2008, 2009
@@ -67,7 +67,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.710 2011/11/06 11:40:46 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.711 2011/11/06 15:35:29 cherry Exp $");
#include "opt_beep.h"
#include "opt_compat_ibcs2.h"
@@ -1440,7 +1440,7 @@ init386(paddr_t first_avail)
avail_start = first_avail;
avail_end = ctob(xen_start_info.nr_pages) + XPMAP_OFFSET;
pmap_pa_start = (KERNTEXTOFF - KERNBASE);
- pmap_pa_end = avail_end;
+ pmap_pa_end = pmap_pa_start + ctob(xen_start_info.nr_pages);
mem_clusters[0].start = avail_start;
mem_clusters[0].size = avail_end - avail_start;
mem_cluster_cnt++;