Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch remove conflicting declarations of physmem. we want...



details:   https://anonhg.NetBSD.org/src/rev/bc7e8b02d187
branches:  trunk
changeset: 819921:bc7e8b02d187
user:      maya <maya%NetBSD.org@localhost>
date:      Fri Dec 23 08:09:54 2016 +0000

description:
remove conflicting declarations of physmem. we want it to be psize_t

diffstat:

 sys/arch/hp300/hp300/pmap_bootstrap.c     |  6 +++---
 sys/arch/mvme68k/mvme68k/pmap_bootstrap.c |  6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (54 lines):

diff -r d8677c3154e6 -r bc7e8b02d187 sys/arch/hp300/hp300/pmap_bootstrap.c
--- a/sys/arch/hp300/hp300/pmap_bootstrap.c     Fri Dec 23 07:42:32 2016 +0000
+++ b/sys/arch/hp300/hp300/pmap_bootstrap.c     Fri Dec 23 08:09:54 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.58 2013/09/21 06:24:43 tsutsui Exp $      */
+/*     $NetBSD: pmap_bootstrap.c,v 1.59 2016/12/23 08:09:54 maya Exp $ */
 
 /*
  * Copyright (c) 1991, 1993
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.58 2013/09/21 06:24:43 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.59 2016/12/23 08:09:54 maya Exp $");
 
 #include <sys/param.h>
 #include <uvm/uvm_extern.h>
@@ -53,7 +53,7 @@
 extern char *etext;
 extern vaddr_t CLKbase, MMUbase;
 
-extern int maxmem, physmem;
+extern int maxmem;
 extern paddr_t avail_start, avail_end;
 
 /*
diff -r d8677c3154e6 -r bc7e8b02d187 sys/arch/mvme68k/mvme68k/pmap_bootstrap.c
--- a/sys/arch/mvme68k/mvme68k/pmap_bootstrap.c Fri Dec 23 07:42:32 2016 +0000
+++ b/sys/arch/mvme68k/mvme68k/pmap_bootstrap.c Fri Dec 23 08:09:54 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.52 2013/09/19 12:04:36 tsutsui Exp $      */
+/*     $NetBSD: pmap_bootstrap.c,v 1.53 2016/12/23 08:09:54 maya Exp $ */
 
 /* 
  * Copyright (c) 1991, 1993
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.52 2013/09/19 12:04:36 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.53 2016/12/23 08:09:54 maya Exp $");
 
 #include "opt_m68k_arch.h"
 
@@ -54,7 +54,7 @@
 
 extern char *etext;
 
-extern int maxmem, physmem;
+extern int maxmem;
 extern paddr_t avail_start, avail_end;
 extern phys_ram_seg_t mem_clusters[];
 extern int mem_cluster_cnt;



Home | Main Index | Thread Index | Old Index