Source-Changes-HG archive

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

[src/trunk]: src/sys/arch Fix comments for ref-count of PT pages.



details:   https://anonhg.NetBSD.org/src/rev/573439074c25
branches:  trunk
changeset: 519363:573439074c25
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Sun Dec 16 03:53:21 2001 +0000

description:
Fix comments for ref-count of PT pages.

diffstat:

 sys/arch/amiga/amiga/pmap.c     |  4 ++--
 sys/arch/atari/atari/pmap.c     |  2 +-
 sys/arch/cesfic/cesfic/pmap.c   |  4 ++--
 sys/arch/hp300/hp300/pmap.c     |  4 ++--
 sys/arch/luna68k/luna68k/pmap.c |  4 ++--
 sys/arch/mac68k/mac68k/pmap.c   |  4 ++--
 sys/arch/mvme68k/mvme68k/pmap.c |  4 ++--
 sys/arch/news68k/news68k/pmap.c |  4 ++--
 sys/arch/next68k/next68k/pmap.c |  4 ++--
 sys/arch/x68k/x68k/pmap.c       |  4 ++--
 10 files changed, 19 insertions(+), 19 deletions(-)

diffs (174 lines):

diff -r c521290d386a -r 573439074c25 sys/arch/amiga/amiga/pmap.c
--- a/sys/arch/amiga/amiga/pmap.c       Sun Dec 16 03:41:57 2001 +0000
+++ b/sys/arch/amiga/amiga/pmap.c       Sun Dec 16 03:53:21 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.95 2001/12/13 04:39:50 chs Exp $    */
+/*     $NetBSD: pmap.c,v 1.96 2001/12/16 03:53:21 tsutsui Exp $        */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -2083,7 +2083,7 @@
                        pmap_check_wiring("remove", ptpva);
 #endif
                /*
-                * If reference count drops to 1, and we're not instructed
+                * If reference count drops to 0, and we're not instructed
                 * to keep it around, free the PT page.
                 */
                if (refs == 0 && (flags & PRM_KEEPPTPAGE) == 0) {
diff -r c521290d386a -r 573439074c25 sys/arch/atari/atari/pmap.c
--- a/sys/arch/atari/atari/pmap.c       Sun Dec 16 03:41:57 2001 +0000
+++ b/sys/arch/atari/atari/pmap.c       Sun Dec 16 03:53:21 2001 +0000
@@ -2036,7 +2036,7 @@
                        pmap_check_wiring("remove", ptpva);
 #endif
                /*
-                * If reference count drops to 1, and we're not instructed
+                * If reference count drops to 0, and we're not instructed
                 * to keep it around, free the PT page.
                 */
                if (refs == 0 && (flags & PRM_KEEPPTPAGE) == 0) {
diff -r c521290d386a -r 573439074c25 sys/arch/cesfic/cesfic/pmap.c
--- a/sys/arch/cesfic/cesfic/pmap.c     Sun Dec 16 03:41:57 2001 +0000
+++ b/sys/arch/cesfic/cesfic/pmap.c     Sun Dec 16 03:53:21 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.9 2001/12/13 04:39:51 chs Exp $     */
+/*     $NetBSD: pmap.c,v 1.10 2001/12/16 03:53:23 tsutsui Exp $        */
 
 /* 
  * Copyright (c) 1991, 1993
@@ -2116,7 +2116,7 @@
                        pmap_check_wiring("remove", ptpva);
 #endif
                /*
-                * If reference count drops to 1, and we're not instructed
+                * If reference count drops to 0, and we're not instructed
                 * to keep it around, free the PT page.
                 */
                if (refs == 0 && (flags & PRM_KEEPPTPAGE) == 0) {
diff -r c521290d386a -r 573439074c25 sys/arch/hp300/hp300/pmap.c
--- a/sys/arch/hp300/hp300/pmap.c       Sun Dec 16 03:41:57 2001 +0000
+++ b/sys/arch/hp300/hp300/pmap.c       Sun Dec 16 03:53:21 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.101 2001/12/13 04:39:51 chs Exp $   */
+/*     $NetBSD: pmap.c,v 1.102 2001/12/16 03:53:23 tsutsui Exp $       */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -2239,7 +2239,7 @@
 #endif
 
                /*
-                * If reference count drops to 1, and we're not instructed
+                * If reference count drops to 0, and we're not instructed
                 * to keep it around, free the PT page.
                 */
 
diff -r c521290d386a -r 573439074c25 sys/arch/luna68k/luna68k/pmap.c
--- a/sys/arch/luna68k/luna68k/pmap.c   Sun Dec 16 03:41:57 2001 +0000
+++ b/sys/arch/luna68k/luna68k/pmap.c   Sun Dec 16 03:53:21 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.20 2001/12/13 04:39:51 chs Exp $ */
+/* $NetBSD: pmap.c,v 1.21 2001/12/16 03:53:23 tsutsui Exp $ */
 
 /*-
  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
@@ -1939,7 +1939,7 @@
                        pmap_check_wiring("remove", ptpva);
 #endif
                /*
-                * If reference count drops to 1, and we're not instructed
+                * If reference count drops to 0, and we're not instructed
                 * to keep it around, free the PT page.
                 */
                if (refs == 0 && (flags & PRM_KEEPPTPAGE) == 0) {
diff -r c521290d386a -r 573439074c25 sys/arch/mac68k/mac68k/pmap.c
--- a/sys/arch/mac68k/mac68k/pmap.c     Sun Dec 16 03:41:57 2001 +0000
+++ b/sys/arch/mac68k/mac68k/pmap.c     Sun Dec 16 03:53:21 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.83 2001/12/13 04:39:52 chs Exp $    */
+/*     $NetBSD: pmap.c,v 1.84 2001/12/16 03:53:24 tsutsui Exp $        */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -1967,7 +1967,7 @@
                        pmap_check_wiring("remove", ptpva);
 #endif
                /*
-                * If reference count drops to 1, and we're not instructed
+                * If reference count drops to 0, and we're not instructed
                 * to keep it around, free the PT page.
                 */
                if (refs == 0 && (flags & PRM_KEEPPTPAGE) == 0) {
diff -r c521290d386a -r 573439074c25 sys/arch/mvme68k/mvme68k/pmap.c
--- a/sys/arch/mvme68k/mvme68k/pmap.c   Sun Dec 16 03:41:57 2001 +0000
+++ b/sys/arch/mvme68k/mvme68k/pmap.c   Sun Dec 16 03:53:21 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.74 2001/12/13 04:39:52 chs Exp $        */
+/*     $NetBSD: pmap.c,v 1.75 2001/12/16 03:53:24 tsutsui Exp $        */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -2077,7 +2077,7 @@
                        pmap_check_wiring("remove", ptpva);
 #endif
                /*
-                * If reference count drops to 1, and we're not instructed
+                * If reference count drops to 0, and we're not instructed
                 * to keep it around, free the PT page.
                 */
                if (refs == 0 && (flags & PRM_KEEPPTPAGE) == 0) {
diff -r c521290d386a -r 573439074c25 sys/arch/news68k/news68k/pmap.c
--- a/sys/arch/news68k/news68k/pmap.c   Sun Dec 16 03:41:57 2001 +0000
+++ b/sys/arch/news68k/news68k/pmap.c   Sun Dec 16 03:53:21 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.26 2001/12/16 03:41:57 tsutsui Exp $        */
+/*     $NetBSD: pmap.c,v 1.27 2001/12/16 03:53:24 tsutsui Exp $        */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -2252,7 +2252,7 @@
                        pmap_check_wiring("remove", ptpva);
 #endif
                /*
-                * If reference count drops to 1, and we're not instructed
+                * If reference count drops to 0, and we're not instructed
                 * to keep it around, free the PT page.
                 */
                if (refs == 0 && (flags & PRM_KEEPPTPAGE) == 0) {
diff -r c521290d386a -r 573439074c25 sys/arch/next68k/next68k/pmap.c
--- a/sys/arch/next68k/next68k/pmap.c   Sun Dec 16 03:41:57 2001 +0000
+++ b/sys/arch/next68k/next68k/pmap.c   Sun Dec 16 03:53:21 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.40 2001/12/13 04:39:52 chs Exp $        */
+/*     $NetBSD: pmap.c,v 1.41 2001/12/16 03:53:24 tsutsui Exp $        */
 
 /*
  * This file was taken from mvme68k/mvme68k/pmap.c
@@ -2260,7 +2260,7 @@
                        pmap_check_wiring("remove", ptpva);
 #endif
                /*
-                * If reference count drops to 1, and we're not instructed
+                * If reference count drops to 0, and we're not instructed
                 * to keep it around, free the PT page.
                 */
                if (refs == 0 && (flags & PRM_KEEPPTPAGE) == 0) {
diff -r c521290d386a -r 573439074c25 sys/arch/x68k/x68k/pmap.c
--- a/sys/arch/x68k/x68k/pmap.c Sun Dec 16 03:41:57 2001 +0000
+++ b/sys/arch/x68k/x68k/pmap.c Sun Dec 16 03:53:21 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.73 2001/12/13 04:39:53 chs Exp $    */
+/*     $NetBSD: pmap.c,v 1.74 2001/12/16 03:53:25 tsutsui Exp $        */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -2107,7 +2107,7 @@
                        pmap_check_wiring("remove", ptpva);
 #endif
                /*
-                * If reference count drops to 1, and we're not instructed
+                * If reference count drops to 0, and we're not instructed
                 * to keep it around, free the PT page.
                 */
                if (refs == 0 && (flags & PRM_KEEPPTPAGE) == 0) {



Home | Main Index | Thread Index | Old Index