<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/dev/null, branch stable/10</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>MFC r274366:</title>
<updated>2015-11-23T18:00:55+00:00</updated>
<author>
<name>Steven Hartland</name>
<email>smh@FreeBSD.org</email>
</author>
<published>2015-11-23T18:00:55+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f2fa79c17a16a32f06860b3d81f27cfe5f6189d2'/>
<id>f2fa79c17a16a32f06860b3d81f27cfe5f6189d2</id>
<content type='text'>
Add missing privilege check when setting the dump device.

Approved by:	pjd, secteam (both no objections)
Sponsored by:	Multiplay
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add missing privilege check when setting the dump device.

Approved by:	pjd, secteam (both no objections)
Sponsored by:	Multiplay
</pre>
</div>
</content>
</entry>
<entry>
<title>Provide a device name in the sysctl tree for programs to query the</title>
<updated>2012-11-01T17:01:05+00:00</updated>
<author>
<name>Alfred Perlstein</name>
<email>alfred@FreeBSD.org</email>
</author>
<published>2012-11-01T17:01:05+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=bad7e7f3dd67f666fcef8032b2a6e46d38e06012'/>
<id>bad7e7f3dd67f666fcef8032b2a6e46d38e06012</id>
<content type='text'>
state of crashdump target devices.

This will be used to add a "-l" (ell) flag to dumpon(8) to list the
currently configured dumpdev.

Reviewed by:	phk
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
state of crashdump target devices.

This will be used to add a "-l" (ell) flag to dumpon(8) to list the
currently configured dumpdev.

Reviewed by:	phk
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix for PR 138526.</title>
<updated>2012-01-11T15:00:16+00:00</updated>
<author>
<name>George V. Neville-Neil</name>
<email>gnn@FreeBSD.org</email>
</author>
<published>2012-01-11T15:00:16+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=844d43d94b0e0380a8b6c29982c0783a590f734b'/>
<id>844d43d94b0e0380a8b6c29982c0783a590f734b</id>
<content type='text'>
Add the ability for /dev/null and /dev/zero to accept
being set into non blocking mode via fcntl().  This
brings the code into compliance with IEEE Std 1003.1-2001
as referenced in another PR, 94729.

Reviewed by:	jhb
MFC after:	1 week
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add the ability for /dev/null and /dev/zero to accept
being set into non blocking mode via fcntl().  This
brings the code into compliance with IEEE Std 1003.1-2001
as referenced in another PR, 94729.

Reviewed by:	jhb
MFC after:	1 week
</pre>
</div>
</content>
</entry>
<entry>
<title>Move the ZERO_REGION_SIZE to a machine-dependent file, as on many</title>
<updated>2011-05-13T19:35:01+00:00</updated>
<author>
<name>Matthew D Fleming</name>
<email>mdf@FreeBSD.org</email>
</author>
<published>2011-05-13T19:35:01+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=cfb00e5aa764c1f87067cd819c7ab378f3d11a77'/>
<id>cfb00e5aa764c1f87067cd819c7ab378f3d11a77</id>
<content type='text'>
architectures (i386, for example) the virtual memory space may be
constrained enough that 2MB is a large chunk.  Use 64K for arches
other than amd64 and ia64, with special handling for sparc64 due to
differing hardware.

Also commit the comment changes to kmem_init_zero_region() that I
missed due to not saving the file.  (Darn the unfamiliar development
environment).

Arch maintainers, please feel free to adjust ZERO_REGION_SIZE as you
see fit.

Requested by:	alc
MFC after:	1 week
MFC with:	r221853
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
architectures (i386, for example) the virtual memory space may be
constrained enough that 2MB is a large chunk.  Use 64K for arches
other than amd64 and ia64, with special handling for sparc64 due to
differing hardware.

Also commit the comment changes to kmem_init_zero_region() that I
missed due to not saving the file.  (Darn the unfamiliar development
environment).

Arch maintainers, please feel free to adjust ZERO_REGION_SIZE as you
see fit.

Requested by:	alc
MFC after:	1 week
MFC with:	r221853
</pre>
</div>
</content>
</entry>
<entry>
<title>Usa a globally visible region of zeros for both /dev/zero and the md</title>
<updated>2011-05-13T18:48:00+00:00</updated>
<author>
<name>Matthew D Fleming</name>
<email>mdf@FreeBSD.org</email>
</author>
<published>2011-05-13T18:48:00+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=89cb2a19ec7be4fe31ba6463ecda4c16ea748afe'/>
<id>89cb2a19ec7be4fe31ba6463ecda4c16ea748afe</id>
<content type='text'>
device.  There are likely other kernel uses of "blob of zeros" than can
be converted.

Reviewed by:	alc
MFC after:	1 week
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
device.  There are likely other kernel uses of "blob of zeros" than can
be converted.

Reviewed by:	alc
MFC after:	1 week
</pre>
</div>
</content>
</entry>
<entry>
<title>Mark /dev/zero and /dev/null as eternal.</title>
<updated>2010-08-06T09:47:48+00:00</updated>
<author>
<name>Konstantin Belousov</name>
<email>kib@FreeBSD.org</email>
</author>
<published>2010-08-06T09:47:48+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f53444bc4d7b98bd23d5a8d875419beef401c65e'/>
<id>f53444bc4d7b98bd23d5a8d875419beef401c65e</id>
<content type='text'>
In collaboration with:	pho
MFC after:	1 month
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In collaboration with:	pho
MFC after:	1 month
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unneeded minor numbers from /dev/null and /dev/zero.</title>
<updated>2009-09-06T09:59:02+00:00</updated>
<author>
<name>Ed Schouten</name>
<email>ed@FreeBSD.org</email>
</author>
<published>2009-09-06T09:59:02+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=61c177bf1115dc1fb7e0c7b4c677f30589b398ec'/>
<id>61c177bf1115dc1fb7e0c7b4c677f30589b398ec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Sweep kernel replacing suser(9) calls with priv(9) calls, assigning</title>
<updated>2006-11-06T13:42:10+00:00</updated>
<author>
<name>Robert Watson</name>
<email>rwatson@FreeBSD.org</email>
</author>
<published>2006-11-06T13:42:10+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=acd3428b7d3e94cef0e1881c868cb4b131d4ff41'/>
<id>acd3428b7d3e94cef0e1881c868cb4b131d4ff41</id>
<content type='text'>
specific privilege names to a broad range of privileges.  These may
require some future tweaking.

Sponsored by:           nCircle Network Security, Inc.
Obtained from:          TrustedBSD Project
Discussed on:           arch@
Reviewed (at least in part) by: mlaier, jmg, pjd, bde, ceri,
                        Alex Lyashkov &lt;umka at sevcity dot net&gt;,
                        Skip Ford &lt;skip dot ford at verizon dot net&gt;,
                        Antoine Brodin &lt;antoine dot brodin at laposte dot net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
specific privilege names to a broad range of privileges.  These may
require some future tweaking.

Sponsored by:           nCircle Network Security, Inc.
Obtained from:          TrustedBSD Project
Discussed on:           arch@
Reviewed (at least in part) by: mlaier, jmg, pjd, bde, ceri,
                        Alex Lyashkov &lt;umka at sevcity dot net&gt;,
                        Skip Ford &lt;skip dot ford at verizon dot net&gt;,
                        Antoine Brodin &lt;antoine dot brodin at laposte dot net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Use dynamic major number allocation.</title>
<updated>2005-02-27T22:01:09+00:00</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>2005-02-27T22:01:09+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=3f8bb25bd02467078edff3ded80d91f496a26313'/>
<id>3f8bb25bd02467078edff3ded80d91f496a26313</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Go back to the historical minor numbers. Add a module version while</title>
<updated>2004-08-02T19:59:41+00:00</updated>
<author>
<name>Mark Murray</name>
<email>markm@FreeBSD.org</email>
</author>
<published>2004-08-02T19:59:41+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=4ec450cefda2f2a784fd39e3369693c82c1d12b6'/>
<id>4ec450cefda2f2a784fd39e3369693c82c1d12b6</id>
<content type='text'>
I'm here.

Asked for minor numbers by:	jhb
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I'm here.

Asked for minor numbers by:	jhb
</pre>
</div>
</content>
</entry>
</feed>
