Module Name:    src
Committed By:   yamt
Date:           Mon Nov 14 14:27:53 UTC 2011

Modified Files:
        src/usr.bin/vmstat [yamt-pagecache]: vmstat.c

Log Message:
might dirty -> possibly dirty
suggested by wiz@


To generate a diff of this commit:
cvs rdiff -u -r1.186.2.1 -r1.186.2.2 src/usr.bin/vmstat/vmstat.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/vmstat/vmstat.c
diff -u src/usr.bin/vmstat/vmstat.c:1.186.2.1 src/usr.bin/vmstat/vmstat.c:1.186.2.2
--- src/usr.bin/vmstat/vmstat.c:1.186.2.1	Sat Nov 12 04:12:52 2011
+++ src/usr.bin/vmstat/vmstat.c	Mon Nov 14 14:27:53 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: vmstat.c,v 1.186.2.1 2011/11/12 04:12:52 yamt Exp $ */
+/* $NetBSD: vmstat.c,v 1.186.2.2 2011/11/14 14:27:53 yamt Exp $ */
 
 /*-
  * Copyright (c) 1998, 2000, 2001, 2007 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 19
 #if 0
 static char sccsid[] = "@(#)vmstat.c	8.2 (Berkeley) 3/1/95";
 #else
-__RCSID("$NetBSD: vmstat.c,v 1.186.2.1 2011/11/12 04:12:52 yamt Exp $");
+__RCSID("$NetBSD: vmstat.c,v 1.186.2.2 2011/11/14 14:27:53 yamt Exp $");
 #endif
 #endif /* not lint */
 
@@ -894,14 +894,14 @@ dosum(void)
 		(void)printf("%9" PRIu64 " pages inactive\n", uvmexp2.inactive);
 		(void)printf("%9" PRIu64 " file pages known clean\n",
 		    uvmexp2.cleanpages);
-		(void)printf("%9" PRIu64 " file pages might dirty\n",
-		    uvmexp2.mightdirtypages);
+		(void)printf("%9" PRIu64 " file pages possibly dirty\n",
+		    uvmexp2.possiblydirtypages);
 		(void)printf("%9" PRIu64 " file pages known dirty\n",
 		    uvmexp2.dirtypages);
 		(void)printf("%9" PRIu64 " anonymous pages known clean\n",
 		    uvmexp2.cleananonpages);
-		(void)printf("%9" PRIu64 " anonymous pages might dirty\n",
-		    uvmexp2.mightdirtyanonpages);
+		(void)printf("%9" PRIu64 " anonymous pages possibly dirty\n",
+		    uvmexp2.possiblydirtyanonpages);
 		(void)printf("%9" PRIu64 " anonymous pages known dirty\n",
 		    uvmexp2.dirtyanonpages);
 	}

Reply via email to