Module Name: src
Committed By: maya
Date: Mon Sep 19 20:46:55 UTC 2016
Modified Files:
src/sys/arch/i386/include: pmap.h
src/sys/arch/x86/include: pmap.h
Log Message:
move function prototype to x86, so it is available to amd64 too
To generate a diff of this commit:
cvs rdiff -u -r1.117 -r1.118 src/sys/arch/i386/include/pmap.h
cvs rdiff -u -r1.59 -r1.60 src/sys/arch/x86/include/pmap.h
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/include/pmap.h
diff -u src/sys/arch/i386/include/pmap.h:1.117 src/sys/arch/i386/include/pmap.h:1.118
--- src/sys/arch/i386/include/pmap.h:1.117 Mon Apr 21 19:12:11 2014
+++ src/sys/arch/i386/include/pmap.h Mon Sep 19 20:46:55 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.h,v 1.117 2014/04/21 19:12:11 christos Exp $ */
+/* $NetBSD: pmap.h,v 1.118 2016/09/19 20:46:55 maya Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -405,7 +405,6 @@ struct trapframe;
struct pcb;
int pmap_exec_fixup(struct vm_map *, struct trapframe *, struct pcb *);
-void pmap_ldt_cleanup(struct lwp *);
#include <x86/pmap_pv.h>
Index: src/sys/arch/x86/include/pmap.h
diff -u src/sys/arch/x86/include/pmap.h:1.59 src/sys/arch/x86/include/pmap.h:1.60
--- src/sys/arch/x86/include/pmap.h:1.59 Mon Jul 25 12:11:40 2016
+++ src/sys/arch/x86/include/pmap.h Mon Sep 19 20:46:55 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.h,v 1.59 2016/07/25 12:11:40 maxv Exp $ */
+/* $NetBSD: pmap.h,v 1.60 2016/09/19 20:46:55 maya Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -255,6 +255,7 @@ void pmap_write_protect(struct pmap *,
void pmap_load(void);
paddr_t pmap_init_tmp_pgtbl(paddr_t);
void pmap_remove_all(struct pmap *);
+void pmap_ldt_cleanup(struct lwp *);
void pmap_ldt_sync(struct pmap *);
void pmap_kremove_local(vaddr_t, vsize_t);