Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Nov 2010 07:24:17 +0000 (UTC)
From:      Bruce Cran <brucec@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r215380 - stable/8/usr.bin/top
Message-ID:  <201011160724.oAG7OHuF043508@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brucec
Date: Tue Nov 16 07:24:17 2010
New Revision: 215380
URL: http://svn.freebsd.org/changeset/base/215380

Log:
  MFC r215239:
  
  Memory stats are reported in bytes, not pages.
  
  PR:	docs/151283
  Submitted by:	Bas Smeelen <b.smeelen at ose.nl>

Modified:
  stable/8/usr.bin/top/top.local.1
Directory Properties:
  stable/8/usr.bin/top/   (props changed)

Modified: stable/8/usr.bin/top/top.local.1
==============================================================================
--- stable/8/usr.bin/top/top.local.1	Tue Nov 16 07:19:05 2010	(r215379)
+++ stable/8/usr.bin/top/top.local.1	Tue Nov 16 07:24:17 2010	(r215380)
@@ -6,8 +6,8 @@ The '-H' option will toggle the display 
 At runtime the 'H' key will toggle this mode. The default is OFF.
 
 .SH DESCRIPTION OF MEMORY 
-Mem: 9220K Active, 1032K Inact, 3284K Wired, 1MB Cache, 2M Buf, 1320K Free
-Swap:   91M Total, 79M Free, 13% Inuse, 80K In, 104 K Out
+Mem: 9220K Active, 1032K Inact, 3284K Wired, 1M Cache, 2M Buf, 1320K Free
+Swap: 91M Total, 79M Free, 13% Inuse, 80K In, 104K Out
 
 .B K:
 Kilobyte
@@ -19,23 +19,23 @@ Megabyte
 1/100
 .TP
 .B Active:
-number of pages active
+number of bytes active
 .TP
 .B Inact:
-number of pages inactive
+number of bytes inactive
 .TP
 .B Wired:
-number of pages wired down, including cached file data pages
+number of bytes wired down, including cached file data pages
 .TP
 .B Cache:
-number of clean pages caching data that are available for
+number of clean bytes caching data that are available for
 immediate reallocation
 .TP
 .B Buf:
-number of pages used for BIO-level disk caching
+number of bytes used for BIO-level disk caching
 .TP
 .B Free: 
-number of pages free
+number of bytes free
 .TP
 .B Total: 
 total available swap usage
@@ -47,7 +47,7 @@ total free swap usage
 swap usage
 .TP 
 .B In: 
-pages paged in from swap devices (last interval)
+bytes paged in from swap devices (last interval)
 .TP
 .B Out: 
-pages paged out to swap devices (last interval)
+bytes paged out to swap devices (last interval)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011160724.oAG7OHuF043508>