<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>e9ac41698b2f322d55ccf9da50a3596edb2c1800 - Remove residual blank line at start of Makefile</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#e9ac41698b2f322d55ccf9da50a3596edb2c1800</link>
        <description>Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I&apos;ll just run the command on the branches)Sponsored by: Netflix

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Mon, 15 Jul 2024 06:46:32 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>bdcbfde31e8e9b343f113a1956384bdf30d1ed62 - usr.bin: Remove ancient SCCS tags.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#bdcbfde31e8e9b343f113a1956384bdf30d1ed62</link>
        <description>usr.bin: Remove ancient SCCS tags.Remove ancient SCCS tags from the tree, automated scripting, with twominor fixup to keep things compiling. All the common forms in the treewere removed with a perl script.Sponsored by:		Netflix

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Thu, 23 Nov 2023 18:21:37 +0100</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 19:55:03 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>22054f88914b51113f77f6eccc11353a891f9f3e - Report I/O stats from the CAM_IOSCHED_DYNAMIC extension</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#22054f88914b51113f77f6eccc11353a891f9f3e</link>
        <description>Report I/O stats from the CAM_IOSCHED_DYNAMIC extensionReport, on a periodic basis, the I/O latencies the CAM I/O schedulercomputes. These times are only for the hardware portion of the I/O asmeasured from the time the operation is scheduled with the SIM usingxpt_action() until the SIM reports it has completed with xpt_dine(). Anytime the I/O operation spends in a software queue is no included.The P50 (median), P90, P99 and P99.9 statistics about the latency ofeach of the read, write and trim operations that completed during thepolling interval are reported. If there are fewer than 2, 10, 100 or1000 operations during the polling interval, no statistic is reportedand a single dash &apos;-&apos; is displayed.The read, write and trim commands (either on the command line or at runtime) toggle display of these operations. The color command togglescolor (it defaults to on, like gstat). When color is enabled, unknownstatistics are reported in blue, high latency for a statistics isreported in red, medium in magenta and low in green (as with gstat). Themed= and hi= commands can set these latency thresholds.Limitations: The entire sysctl space for all the devices is walked foreach polling period. This should be optimized to remember the OIDs andonly do such polling with the xpt generation changes. There is also noway to filter devices displayed. This command only works on physicaldevies that are connected to SCSI, ATA or NVME sims as those are theonly ones that are instrumented in the CAM I/O scheduler (theCAM_IOSCHED_DYNAMIC option must be in the kernel, and the dynamicscheduler can&apos;t be disabled).MFC After:		1 monthRelnotes:		yesSponsored by:		NetflixReviewed by:		pauamma_gundo.com, chsDifferential Revision:	https://reviews.freebsd.org/D34259

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Mon, 28 Feb 2022 18:17:06 +0100</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6d88f9fed6a2aa1ffd2c856d246209f24b7dbea0 - systat: mostly clean up warns</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#6d88f9fed6a2aa1ffd2c856d246209f24b7dbea0</link>
        <description>systat: mostly clean up warnsSponsored by:	Rubicon Communications, LLC (&quot;Netgate&quot;)

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Mon, 01 Nov 2021 21:45:42 +0100</pubDate>
        <dc:creator>Mateusz Guzik &lt;mjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>57e5da2c98003e5ab77a337e9fbe22ab7e512ba7 - Augment systat(1) -swap to display large swap space processes</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#57e5da2c98003e5ab77a337e9fbe22ab7e512ba7</link>
        <description>Augment systat(1) -swap to display large swap space processesThis change updates the systat(1) -swap display to use libprocstat toobtain and display per-process swap space usage infomation following itsexisting swap devise/file statistics. It also incorporates the disk I/Oinformation from the -vmstat display.The new screen looks like below with &apos;systat -swap&apos;:                    /0   /1   /2   /3   /4   /5   /6   /7   /8   /9 /10     Load Average   |Device/Path       Size  Used |0%  /10  /20  /30  /40  / 60\  70\  80\ 90\ 100|ada0s1b          2048M 2034MXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXzvol/sys/tempora 1024M 1015MXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXzvol/sys/swap    1024M 1014MXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXTotal            4096M 4063MXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXPid    Username   Command     Swap/Total Per-Process    Per-System 24153 hiro       seamonkey   98M /   1G  7%              2% 23677 hiro       xfce4-pane  28M /  81M 34% XXX          0% 23629 hiro       xfce4-sess  25M / 118M 21% XX           0% 23681 hiro       xfdesktop   20M /  58M 34% XXX          0% 23678 hiro       thunar      15M /  43M 36% XXX          0% 23658 hiro       at-spi-bus  14M /  23M 63% XXXXXX       0% 23660 hiro       gvfsd       12M /  21M 56% XXXXX        0%Disks  ada0  ada1  ada2   cd0 pass0 pass1 pass2 pass3KB/t   8.00  0.00  0.00  0.00  0.00  0.00  0.00  0.00tps       0     0     0     0     1     0     0     0MB/s   0.00  0.00  0.00  0.00  0.00  0.00  0.00  0.00%busy     0     0     0     0     0     0     0     0Submitted by:	Yoshihiro OtaMFC after:	1 weekDifferential revision:	https://reviews.freebsd.org/D29754

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Tue, 26 Oct 2021 10:43:08 +0200</pubDate>
        <dc:creator>Konstantin Belousov &lt;kib@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cbc83e378a7ee8f8aea9811906a2786a8f3bdeb3 - ncurses: chase dependency changes in the source tree</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#cbc83e378a7ee8f8aea9811906a2786a8f3bdeb3</link>
        <description>ncurses: chase dependency changes in the source treeDifferential Revision:	https://reviews.freebsd.org/D32098

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Thu, 23 Sep 2021 03:52:46 +0200</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4bde63536c9817a41cc555805532d02ecf7afc92 - Patch systat -zarc to display cumulative rate and round down large numbers by SI units</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#4bde63536c9817a41cc555805532d02ecf7afc92</link>
        <description>Patch systat -zarc to display cumulative rate and round down large numbers by SI unitsPR:		237664Submitted by:	ota@j.email.ne.jpMFC after:	2 weeks

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Mon, 11 May 2020 22:34:52 +0200</pubDate>
        <dc:creator>Michael Reifenberger &lt;mr@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>82725ba9bf1fd59746a4006a06f24d4d61d142f2 - Merge ^/head r325999 through r326131.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#82725ba9bf1fd59746a4006a06f24d4d61d142f2</link>
        <description>Merge ^/head r325999 through r326131.

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Thu, 23 Nov 2017 15:28:14 +0100</pubDate>
        <dc:creator>Hans Petter Selasky &lt;hselasky@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>90dd3e79cc4d721b17c473fdaf3ba3d6d912b138 - systat: use and correctly display 64bit counters.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#90dd3e79cc4d721b17c473fdaf3ba3d6d912b138</link>
        <description>systat: use and correctly display 64bit counters.Following struct vmtotal changes, make systat use and correctlydisplay 64-bit counters.  Switch to humanize_number(3) to overcomehomegrown arithmetics limits in pretty printing large numbers.  Use1024 as a divisor for memory fields to make it consistent with othertools and users expectations.Submitted by:	Pawel Biernacki &lt;pawel.biernacki@gmail.com&gt;Sponsored by:	Mysterious Code Ltd.PR:	2137Differential revision:	https://reviews.freebsd.org/D13105

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Tue, 21 Nov 2017 20:55:32 +0100</pubDate>
        <dc:creator>Konstantin Belousov &lt;kib@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b626f5a73a48f44a31a200291b141e1da408a2ff - MFH r289384-r293170</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#b626f5a73a48f44a31a200291b141e1da408a2ff</link>
        <description>MFH r289384-r293170Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Mon, 04 Jan 2016 20:19:48 +0100</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a5d8944a83ff8a3aad14197b7aa0800ff9bda95e - Catch up with head (r291075).</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#a5d8944a83ff8a3aad14197b7aa0800ff9bda95e</link>
        <description>Catch up with head (r291075).

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Thu, 19 Nov 2015 17:28:42 +0100</pubDate>
        <dc:creator>Navdeep Parhar &lt;np@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3c3feed41a52b5692575275541bce39a83146644 - Merge from head</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#3c3feed41a52b5692575275541bce39a83146644</link>
        <description>Merge from head

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Sun, 01 Nov 2015 22:17:38 +0100</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>11d38a5764295585a2472d5e861fa8abe1a11eb2 - Merge from head</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#11d38a5764295585a2472d5e861fa8abe1a11eb2</link>
        <description>Merge from headSponsored by:	Gandi.net

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Wed, 28 Oct 2015 12:58:18 +0100</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1eaa5682378d16d158d5c9e909ce762c9267c03c - Add support to systat to display SCTP statistics.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#1eaa5682378d16d158d5c9e909ce762c9267c03c</link>
        <description>Add support to systat to display SCTP statistics.MFC after: 1 week

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Sat, 24 Oct 2015 11:34:40 +0200</pubDate>
        <dc:creator>Michael Tuexen &lt;tuexen@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>becbad1f6e18fec7c3bf286778a766ffca4457be - Merge from head</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#becbad1f6e18fec7c3bf286778a766ffca4457be</link>
        <description>Merge from head

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Tue, 13 Oct 2015 21:44:36 +0200</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>65dcb5bcb1993631f47d8acc207904411e135758 - Merge ^/head r288197 through r288456.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#65dcb5bcb1993631f47d8acc207904411e135758</link>
        <description>Merge ^/head r288197 through r288456.

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Thu, 01 Oct 2015 21:02:45 +0200</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5a2b666ce590a56f147e167aa07684af2d6b854a - Merge from head</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#5a2b666ce590a56f147e167aa07684af2d6b854a</link>
        <description>Merge from head

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Thu, 01 Oct 2015 11:36:43 +0200</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0f405ee78f6bdc7dd6274d8fe8b5a21718a3b89e - Sync up with head (up to r288341).</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#0f405ee78f6bdc7dd6274d8fe8b5a21718a3b89e</link>
        <description>Sync up with head (up to r288341).

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Mon, 28 Sep 2015 19:30:07 +0200</pubDate>
        <dc:creator>Navdeep Parhar &lt;np@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>27aa47691e95be44e89282eff7964f1ac1f078d4 - Add support to systat to display zfs arc cache status/info</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/systat/Makefile#27aa47691e95be44e89282eff7964f1ac1f078d4</link>
        <description>Add support to systat to display zfs arc cache status/infoPR:		195460Submitted by:	ota

            List of files:
            /freebsd/usr.bin/systat/Makefile</description>
        <pubDate>Sun, 27 Sep 2015 11:15:54 +0200</pubDate>
        <dc:creator>Michael Reifenberger &lt;mr@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
