Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/powerpc move common tlb stuff to uvm
details: https://anonhg.NetBSD.org/src/rev/af3fba14eec4
branches: trunk
changeset: 781818:af3fba14eec4
user: christos <christos%NetBSD.org@localhost>
date: Tue Oct 02 23:51:39 2012 +0000
description:
move common tlb stuff to uvm
diffstat:
sys/arch/powerpc/conf/files.powerpc | 8 ++++----
sys/arch/powerpc/include/booke/cpuvar.h | 4 ++--
sys/arch/powerpc/include/booke/pmap.h | 6 +++---
sys/arch/powerpc/include/booke/vmparam.h | 4 ++--
4 files changed, 11 insertions(+), 11 deletions(-)
diffs (83 lines):
diff -r ec8e3b3e40eb -r af3fba14eec4 sys/arch/powerpc/conf/files.powerpc
--- a/sys/arch/powerpc/conf/files.powerpc Tue Oct 02 23:49:19 2012 +0000
+++ b/sys/arch/powerpc/conf/files.powerpc Tue Oct 02 23:51:39 2012 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: files.powerpc,v 1.83 2012/03/29 15:42:59 matt Exp $
+# $NetBSD: files.powerpc,v 1.84 2012/10/02 23:51:39 christos Exp $
defflag opt_altivec.h ALTIVEC K_ALTIVEC PPC_HAVE_SPE
defflag opt_openpic.h OPENPIC OPENPIC_SERIAL_MODE OPENPIC_DISTRIBUTE
@@ -67,9 +67,9 @@
file arch/powerpc/booke/kcopy.c ppc_booke
file arch/powerpc/booke/spe.c ppc_booke
file arch/powerpc/booke/trap.c ppc_booke
-file common/pmap/tlb/pmap.c ppc_booke
-file common/pmap/tlb/pmap_segtab.c ppc_booke
-file common/pmap/tlb/pmap_tlb.c ppc_booke
+file uvm/pmap/pmap.c ppc_booke
+file uvm/pmap/pmap_segtab.c ppc_booke
+file uvm/pmap/pmap_tlb.c ppc_booke
# Binary compatibility with previous NetBSD releases (COMPAT_XX)
file arch/powerpc/powerpc/compat_13_machdep.c compat_13
diff -r ec8e3b3e40eb -r af3fba14eec4 sys/arch/powerpc/include/booke/cpuvar.h
--- a/sys/arch/powerpc/include/booke/cpuvar.h Tue Oct 02 23:49:19 2012 +0000
+++ b/sys/arch/powerpc/include/booke/cpuvar.h Tue Oct 02 23:51:39 2012 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cpuvar.h,v 1.16 2012/08/01 21:30:24 matt Exp $ */
+/* $NetBSD: cpuvar.h,v 1.17 2012/10/02 23:51:39 christos Exp $ */
/*-
* Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -109,7 +109,7 @@
typedef __BSD_PT_ENTRY_T pt_entry_t;
#endif
-#include <common/pmap/tlb/tlb.h>
+#include <uvm/pmap/tlb.h>
struct tlb_md_io_ops {
/*
diff -r ec8e3b3e40eb -r af3fba14eec4 sys/arch/powerpc/include/booke/pmap.h
--- a/sys/arch/powerpc/include/booke/pmap.h Tue Oct 02 23:49:19 2012 +0000
+++ b/sys/arch/powerpc/include/booke/pmap.h Tue Oct 02 23:51:39 2012 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.h,v 1.10 2012/07/09 17:48:31 matt Exp $ */
+/* $NetBSD: pmap.h,v 1.11 2012/10/02 23:51:39 christos Exp $ */
/*-
* Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -58,7 +58,7 @@
#define PMAP_NEED_PROCWR
-#include <common/pmap/tlb/vmpagemd.h>
+#include <uvm/pmap/vmpagemd.h>
#include <powerpc/booke/pte.h>
@@ -144,6 +144,6 @@
#define POOL_VTOPHYS(va) ((paddr_t)(vaddr_t)(va))
#define POOL_PHYSTOV(pa) ((vaddr_t)(paddr_t)(pa))
-#include <common/pmap/tlb/pmap.h>
+#include <uvm/pmap/pmap.h>
#endif /* !_POWERPC_BOOKE_PMAP_H_ */
diff -r ec8e3b3e40eb -r af3fba14eec4 sys/arch/powerpc/include/booke/vmparam.h
--- a/sys/arch/powerpc/include/booke/vmparam.h Tue Oct 02 23:49:19 2012 +0000
+++ b/sys/arch/powerpc/include/booke/vmparam.h Tue Oct 02 23:51:39 2012 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vmparam.h,v 1.6 2012/07/09 17:55:15 matt Exp $ */
+/* $NetBSD: vmparam.h,v 1.7 2012/10/02 23:51:39 christos Exp $ */
/*-
* Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -106,6 +106,6 @@
#define VM_PHYS_SIZE (USRIOSIZE * PAGE_SIZE)
#endif
-#include <common/pmap/tlb/vmpagemd.h>
+#include <uvm/pmap/vmpagemd.h>
#endif /* _POWERPC_BOOKE_VMPARAM_H_ */
Home |
Main Index |
Thread Index |
Old Index