svn commit: r234134 - head/sbin/sysctl

Eitan Adler eadler at FreeBSD.org
Wed Apr 11 14:18:18 UTC 2012


Author: eadler
Date: Wed Apr 11 14:18:18 2012
New Revision: 234134
URL: http://svn.freebsd.org/changeset/base/234134

Log:
  s/Free Memory Pages/Free Memory/ to avoid confusion, since we're
  reporting a number of bytes rather than a number of pages
  
  PR:		misc/165208
  Submitted by:	Arnaud Lacombe <lacombar at gmail.com>
  Approved by:	cperciva
  MFC after:	3 days

Modified:
  head/sbin/sysctl/sysctl.c

Modified: head/sbin/sysctl/sysctl.c
==============================================================================
--- head/sbin/sysctl/sysctl.c	Wed Apr 11 14:13:22 2012	(r234133)
+++ head/sbin/sysctl/sysctl.c	Wed Apr 11 14:18:18 2012	(r234134)
@@ -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-head mailing list