Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/xen/x86 Never cut-paste code from email!
details: https://anonhg.NetBSD.org/src/rev/76c559afe784
branches: trunk
changeset: 772353:76c559afe784
user: cherry <cherry%NetBSD.org@localhost>
date: Fri Dec 30 19:18:35 2011 +0000
description:
Never cut-paste code from email!
Use the right count (0 -> 2) of l3 unshared userland entries for per-cpu initialisation.
diffstat:
sys/arch/xen/x86/cpu.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 6890a7550934 -r 76c559afe784 sys/arch/xen/x86/cpu.c
--- a/sys/arch/xen/x86/cpu.c Fri Dec 30 19:01:07 2011 +0000
+++ b/sys/arch/xen/x86/cpu.c Fri Dec 30 19:18:35 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu.c,v 1.73 2011/12/30 18:01:20 cherry Exp $ */
+/* $NetBSD: cpu.c,v 1.74 2011/12/30 19:18:35 cherry Exp $ */
/* NetBSD: cpu.c,v 1.18 2004/02/20 17:35:01 yamt Exp */
/*-
@@ -66,7 +66,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.73 2011/12/30 18:01:20 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.74 2011/12/30 19:18:35 cherry Exp $");
#include "opt_ddb.h"
#include "opt_multiprocessor.h"
@@ -1276,7 +1276,7 @@
/* Initialise L2 entries 0 - 2: Point them to pmap_kernel() */
int i;
- for (i = 0; i < PTP_LEVELS - 1; i++ ) {
+ for (i = 0; i < 3; i++ ) {
ci->ci_pae_l3_pdir[i] =
xpmap_ptom_masked(pmap_kernel()->pm_pdirpa[i]) | PG_V;
}
Home |
Main Index |
Thread Index |
Old Index