svn commit: r234260 - stable/9/sbin/sysctl

Eitan Adler eadler at FreeBSD.org
Sat Apr 14 02:06:54 UTC 2012


Author: eadler
Date: Sat Apr 14 02:06:53 2012
New Revision: 234260
URL: http://svn.freebsd.org/changeset/base/234260

Log:
  MFC r234134:
  	s/Free Memory Pages/Free Memory/ to avoid confusion, since we're
  	reporting a number of bytes rather than a number of pages
  
  Approved by:	cperciva (implicit)

Modified:
  stable/9/sbin/sysctl/sysctl.c
Directory Properties:
  stable/9/sbin/sysctl/   (props changed)

Modified: stable/9/sbin/sysctl/sysctl.c
==============================================================================
--- stable/9/sbin/sysctl/sysctl.c	Sat Apr 14 00:40:32 2012	(r234259)
+++ stable/9/sbin/sysctl/sysctl.c	Sat Apr 14 02:06:53 2012	(r234260)
@@ -419,7 +419,7 @@ S_vmtotal(int l2, void *p)
 	    v->t_vmshr * pageKilo, v->t_avmshr * pageKilo);
 	printf("Shared Real Memory:\t(Total: %dK Active: %dK)\n",
 	    v->t_rmshr * pageKilo, v->t_armshr * pageKilo);
-	printf("Free Memory Pages:\t%dK\n", v->t_free * pageKilo);
+	printf("Free Memory:\t%dK\n", v->t_free * pageKilo);
 
 	return (0);
 }


More information about the svn-src-stable mailing list