<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/usr.bin/vmstat/vmstat.8, branch stable/10</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=stable%2F10</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=stable%2F10'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2018-02-27T01:28:19Z</updated>
<entry>
<title>MFC 328134: Update various statements in vmstat(8) to match reality.</title>
<updated>2018-02-27T01:28:19Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2018-02-27T01:28:19Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=df2325ebf2e4febf2f1327569aacd63e16b9037b'/>
<id>urn:sha1:df2325ebf2e4febf2f1327569aacd63e16b9037b</id>
<content type='text'>
- The process stats are actually thread counts rather than process
  counts.
- Simplify various descriptions to remove mention of stats that are
  updated every 5 seconds (all VM related stats are now "instant",
  only the load average is updated every 5 seconds).
- Don't make any mention of special treatment for processes that have
  been active in the last 20 seconds.  We don't track that stat.
- Rework the description of active virtual memory.  Call it mapped
  virtual memory and explicitly point out it is not the same as the
  active page queue (which corresponds to "Active" in top(1)), and
  also hint at the possible bogusness of the value (e.g. if a process
  maps a single page out of a multiple GB file, the entire file's size
  is considered mapped).
- Simplify a few descriptions that implied their output was a value
  per interval.  All of the "rate" values are per-second rates scaled
  across the interval.
- Update a few comments for 'struct vmtotal' along similar lines.
</content>
</entry>
<entry>
<title>MFC 283624,283630:</title>
<updated>2015-10-01T17:09:20Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2015-10-01T17:09:20Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=e6a04ed88e9d6e843b3bf828cc17c7fbb3c0fa4e'/>
<id>urn:sha1:e6a04ed88e9d6e843b3bf828cc17c7fbb3c0fa4e</id>
<content type='text'>
Export a list of VM objects in the system via a sysctl.  The list can be
examined via 'vmstat -o'.  It can be used to determine which files are
using physical pages of memory and how much each is using.
</content>
</entry>
<entry>
<title>MFC 269727:</title>
<updated>2015-09-30T00:11:06Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2015-09-30T00:11:06Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=5251e77d5cf053dc312935eaf967502e061c32c8'/>
<id>urn:sha1:5251e77d5cf053dc312935eaf967502e061c32c8</id>
<content type='text'>
Update vmstat usage for last-argument count/wait parameters

Correct the usage in both the manpage and in usage() to indicate
that the wait interval and repetition count may be given either
with the respective -w/-c arguments, or as the final positional
arguments. [0]

The corresponding code to implement the positional arguments has
been conditional on the (always-enabled) BACKWARD_COMPATIBILITY
macro since the original 4.4-lite import.  It's no longer reasonable
to remove the functionality, so remove the macro and conditional
instead.

Note that multiple disks may be given on the command line.

While here, sort arguments and apply minor mdoc fixes.

PR:		184755 [0]
</content>
</entry>
<entry>
<title>Remove the advertising clause from UCB copyrighted files in usr.bin.  This</title>
<updated>2010-12-11T08:32:16Z</updated>
<author>
<name>Joel Dahl</name>
<email>joel@FreeBSD.org</email>
</author>
<published>2010-12-11T08:32:16Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=da52b4caaf187775f6b56a72c6b16e94ad728f7b'/>
<id>urn:sha1:da52b4caaf187775f6b56a72c6b16e94ad728f7b</id>
<content type='text'>
is in accordance with the information provided at
ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change

Also add $FreeBSD$ to a few files to keep svn happy.

Discussed with:	imp, rwatson
</content>
</entry>
<entry>
<title>mdoc: drop redundant .Pp and .LP calls</title>
<updated>2010-10-08T12:40:16Z</updated>
<author>
<name>Ulrich Spörlein</name>
<email>uqs@FreeBSD.org</email>
</author>
<published>2010-10-08T12:40:16Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=0d9deed52c5ed3b24d2da5ec3a0a172fe9092a96'/>
<id>urn:sha1:0d9deed52c5ed3b24d2da5ec3a0a172fe9092a96</id>
<content type='text'>
They have no effect when coming in pairs, or before .Bl/.Bd
</content>
</entry>
<entry>
<title>Allow sub-second interval timings for iostat and vmstat.</title>
<updated>2010-05-21T17:10:52Z</updated>
<author>
<name>Sean Bruno</name>
<email>sbruno@FreeBSD.org</email>
</author>
<published>2010-05-21T17:10:52Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=8b10473d306790f1c5feeff564aa27f59a9a36e4'/>
<id>urn:sha1:8b10473d306790f1c5feeff564aa27f59a9a36e4</id>
<content type='text'>
e.g.
vmstat -w.5
iostat -w.5

Reviewed by:	jhb
Approved by:	scottl (mentor)
Obtained from:	Yahoo Inc.
MFC after:	2 weeks
</content>
</entry>
<entry>
<title>Add the -H, -h and -P flags to vmstat.  -P causes per-cpu output of</title>
<updated>2007-12-13T02:36:11Z</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>2007-12-13T02:36:11Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=4adb5266e80426b35ff75ce0edfb903db9d4f2f4'/>
<id>urn:sha1:4adb5266e80426b35ff75ce0edfb903db9d4f2f4</id>
<content type='text'>
user/system/idle stats.  -h feeds the memory column through
humanize_number() to reduce the amount of column overflowing.  -H turns
this off.  -h is turned on by default if stdout is a tty.
</content>
</entry>
<entry>
<title>Cross-reference libmemstat(3), malloc(9), uma(9).</title>
<updated>2006-11-02T19:53:57Z</updated>
<author>
<name>Robert Watson</name>
<email>rwatson@FreeBSD.org</email>
</author>
<published>2006-11-02T19:53:57Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=29a055ac658a1a4a1c24f0fc7d47bffad6dabcd5'/>
<id>urn:sha1:29a055ac658a1a4a1c24f0fc7d47bffad6dabcd5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>The vm.zone sysctl has gone; zone stats are now supplied by libmemstat(3).</title>
<updated>2006-10-21T10:40:12Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2006-10-21T10:40:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=e75d2f36941a2063c91a25f1304e0f53acdf220b'/>
<id>urn:sha1:e75d2f36941a2063c91a25f1304e0f53acdf220b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Markup fixes.</title>
<updated>2006-09-29T15:20:48Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2006-09-29T15:20:48Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=cb29445a92708496312b59658abe2020d2359ac2'/>
<id>urn:sha1:cb29445a92708496312b59658abe2020d2359ac2</id>
<content type='text'>
</content>
</entry>
</feed>
