<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sbin/sysctl, branch releng/10.0</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>Use the right format string for line buffer.</title>
<updated>2013-01-13T04:28:44+00:00</updated>
<author>
<name>Xin LI</name>
<email>delphij@FreeBSD.org</email>
</author>
<published>2013-01-13T04:28:44+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=6f36135181a8e98e468a61adf2ef169a2bd5ce86'/>
<id>6f36135181a8e98e468a61adf2ef169a2bd5ce86</id>
<content type='text'>
PR:		bin/174910
Submitted by:	Fabian Keil &lt;fk fabiankeil.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PR:		bin/174910
Submitted by:	Fabian Keil &lt;fk fabiankeil.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Teach sysctl(8) about parsing a file (while I'm there also give it</title>
<updated>2012-12-13T23:32:47+00:00</updated>
<author>
<name>Xin LI</name>
<email>delphij@FreeBSD.org</email>
</author>
<published>2012-12-13T23:32:47+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=da178c777fdcb3903ddbb08c62e79e00e734f256'/>
<id>da178c777fdcb3903ddbb08c62e79e00e734f256</id>
<content type='text'>
capability of parsing both = and : formats).

Submitted by:	hrs (initial version, bugs are mine)
MFC after:	3 months
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
capability of parsing both = and : formats).

Submitted by:	hrs (initial version, bugs are mine)
MFC after:	3 months
</pre>
</div>
</content>
</entry>
<entry>
<title>Make Tflag and Wflag filters work for more sysctl options.</title>
<updated>2012-12-12T02:55:40+00:00</updated>
<author>
<name>Alfred Perlstein</name>
<email>alfred@FreeBSD.org</email>
</author>
<published>2012-12-12T02:55:40+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=403c7f59d5cfb66e9f697e26d4afe93662da9240'/>
<id>403c7f59d5cfb66e9f697e26d4afe93662da9240</id>
<content type='text'>
To do this move the Tflag and Wflag checks earlier in show_var() so
we bail earlier for variables not matching our query.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To do this move the Tflag and Wflag checks earlier in show_var() so
we bail earlier for variables not matching our query.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow sysctl to filter boot and runtime tunables.</title>
<updated>2012-12-11T01:28:06+00:00</updated>
<author>
<name>Alfred Perlstein</name>
<email>alfred@FreeBSD.org</email>
</author>
<published>2012-12-11T01:28:06+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=9ecd2e32cda2f0440c7b8d61d31a6b89d61b5d51'/>
<id>9ecd2e32cda2f0440c7b8d61d31a6b89d61b5d51</id>
<content type='text'>
Add the following flags to sysctl:
 -W  - show only writable sysctls
 -T  - show only tuneable sysctls

This can be used to create a /var/run/sysctl.boot to
compare set tunables versus booted tunables.

Sponsored by: iXsystems
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add the following flags to sysctl:
 -W  - show only writable sysctls
 -T  - show only tuneable sysctls

This can be used to create a /var/run/sysctl.boot to
compare set tunables versus booted tunables.

Sponsored by: iXsystems
</pre>
</div>
</content>
</entry>
<entry>
<title>In parse():</title>
<updated>2012-12-11T01:12:29+00:00</updated>
<author>
<name>Xin LI</name>
<email>delphij@FreeBSD.org</email>
</author>
<published>2012-12-11T01:12:29+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=aae7510122b4c7b0e3bd8f817afb6e4ca2e2c060'/>
<id>aae7510122b4c7b0e3bd8f817afb6e4ca2e2c060</id>
<content type='text'>
 - Only operate on copy, don't operate on source.
 - Eliminate home-rolled strsep().
 - Constify the parameter.

MFC after:	2 weeks
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 - Only operate on copy, don't operate on source.
 - Eliminate home-rolled strsep().
 - Constify the parameter.

MFC after:	2 weeks
</pre>
</div>
</content>
</entry>
<entry>
<title>s/Free Memory Pages/Free Memory/ to avoid confusion, since we're</title>
<updated>2012-04-11T14:18:18+00:00</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2012-04-11T14:18:18+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=ad0e6cda928f97bab9e576f9e2b435a167e6343e'/>
<id>ad0e6cda928f97bab9e576f9e2b435a167e6343e</id>
<content type='text'>
reporting a number of bytes rather than a number of pages

PR:		misc/165208
Submitted by:	Arnaud Lacombe &lt;lacombar@gmail.com&gt;
Approved by:	cperciva
MFC after:	3 days
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
reporting a number of bytes rather than a number of pages

PR:		misc/165208
Submitted by:	Arnaud Lacombe &lt;lacombar@gmail.com&gt;
Approved by:	cperciva
MFC after:	3 days
</pre>
</div>
</content>
</entry>
<entry>
<title>mdoc: terminate quoted strings.</title>
<updated>2012-03-26T15:18:14+00:00</updated>
<author>
<name>Joel Dahl</name>
<email>joel@FreeBSD.org</email>
</author>
<published>2012-03-26T15:18:14+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=c2965cd1854b75e6a13cb4bd6759b71adc8d2a87'/>
<id>c2965cd1854b75e6a13cb4bd6759b71adc8d2a87</id>
<content type='text'>
Reviewed by:	brueffer
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed by:	brueffer
</pre>
</div>
</content>
</entry>
<entry>
<title>If the -d flag is specified, ignore any new values specified and only</title>
<updated>2011-12-01T15:01:23+00:00</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2011-12-01T15:01:23+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=0b6230f135e8db3d35c6009ffaa6ed71b2437fa7'/>
<id>0b6230f135e8db3d35c6009ffaa6ed71b2437fa7</id>
<content type='text'>
display the descriptions of specified nodes.

Reported by:	Jason Hellenthal  jhell of dataix net
MFC after:	2 weeks
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
display the descriptions of specified nodes.

Reported by:	Jason Hellenthal  jhell of dataix net
MFC after:	2 weeks
</pre>
</div>
</content>
</entry>
<entry>
<title>Introduce signed and unsigned version of CTLTYPE_QUAD, renaming</title>
<updated>2011-01-19T23:00:25+00:00</updated>
<author>
<name>Matthew D Fleming</name>
<email>mdf@FreeBSD.org</email>
</author>
<published>2011-01-19T23:00:25+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=cbc134ad031141038704bc18476f02541e972cc4'/>
<id>cbc134ad031141038704bc18476f02541e972cc4</id>
<content type='text'>
existing uses.  Rename sysctl_handle_quad() to sysctl_handle_64().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
existing uses.  Rename sysctl_handle_quad() to sysctl_handle_64().
</pre>
</div>
</content>
</entry>
<entry>
<title>sysctl(8) should use the CTLTYPE to determine the type of data when</title>
<updated>2011-01-19T17:04:07+00:00</updated>
<author>
<name>Matthew D Fleming</name>
<email>mdf@FreeBSD.org</email>
</author>
<published>2011-01-19T17:04:07+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f8e4b4ef49d1e146c54e7711f954d63d729fbb8e'/>
<id>f8e4b4ef49d1e146c54e7711f954d63d729fbb8e</id>
<content type='text'>
reading.  (This was already done for writing to a sysctl).  This
requires all SYSCTL setups to specify a type.  Most of them are now
checked at compile-time.

Remove SYSCTL_*X* sysctl additions as the print being in hex should be
controlled by the -x flag to sysctl(8).

Succested by:	bde
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
reading.  (This was already done for writing to a sysctl).  This
requires all SYSCTL setups to specify a type.  Most of them are now
checked at compile-time.

Remove SYSCTL_*X* sysctl additions as the print being in hex should be
controlled by the -x flag to sysctl(8).

Succested by:	bde
</pre>
</div>
</content>
</entry>
</feed>
