<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test/sys/compat, branch stable/7</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test/atom?h=stable%2F7</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test/atom?h=stable%2F7'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/'/>
<updated>2012-11-22T23:15:38Z</updated>
<entry>
<title>Fix multiple Denial of Service vulnerabilities with named(8).</title>
<updated>2012-11-22T23:15:38Z</updated>
<author>
<name>Simon L. B. Nielsen</name>
<email>simon@FreeBSD.org</email>
</author>
<published>2012-11-22T23:15:38Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=0bc54cefa036bdc3edf559305c53a568f6811fa9'/>
<id>urn:sha1:0bc54cefa036bdc3edf559305c53a568f6811fa9</id>
<content type='text'>
Fix insufficient message length validation for EAP-TLS messages.

Fix Linux compatibility layer input validation error.

This commit includes stable/7 which was missed in r243417.

Security:	FreeBSD-SA-12:06.bind
Security:	FreeBSD-SA-12:07.hostapd
Security:	FreeBSD-SA-12:08.linux
Security:	CVE-2012-4244, CVE-2012-5166, CVE-2012-4445, CVE-2012-4576
Approved by:	re
Approved by:	security-officer
</content>
</entry>
<entry>
<title>Fix a bug in UNIX socket handling in the linux emulator which was</title>
<updated>2011-10-04T19:07:38Z</updated>
<author>
<name>Colin Percival</name>
<email>cperciva@FreeBSD.org</email>
</author>
<published>2011-10-04T19:07:38Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=ae9bcae7430daab98522ff222b9338660615b524'/>
<id>urn:sha1:ae9bcae7430daab98522ff222b9338660615b524</id>
<content type='text'>
exposed by the security fix in FreeBSD-SA-11:05.unix.

Approved by:	so (cperciva)
Approved by:	re (kib)
Security:	Related to FreeBSD-SA-11:05.unix, but not actually
		a security fix.
</content>
</entry>
<entry>
<title>MFC r224140:</title>
<updated>2011-07-31T08:53:59Z</updated>
<author>
<name>Dmitry Morozovsky</name>
<email>marck@FreeBSD.org</email>
</author>
<published>2011-07-31T08:53:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=977339dd617d4c41041aa468e48eb267f071d3b3'/>
<id>urn:sha1:977339dd617d4c41041aa468e48eb267f071d3b3</id>
<content type='text'>
  Correct small typo in a do{}while(0)

Approved by:    kib
</content>
</entry>
<entry>
<title>MFC r220031: linux compat: improve and fix sendmsg/recvmsg compatibility</title>
<updated>2011-04-09T09:33:36Z</updated>
<author>
<name>Andriy Gapon</name>
<email>avg@FreeBSD.org</email>
</author>
<published>2011-04-09T09:33:36Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=75e4d278518f4c8b859fa078bcb85755679c29d7'/>
<id>urn:sha1:75e4d278518f4c8b859fa078bcb85755679c29d7</id>
<content type='text'>
PR:		kern/149168
</content>
</entry>
<entry>
<title>MFC 219460: Remove now-obsolete comment.</title>
<updated>2011-03-18T17:20:45Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2011-03-18T17:20:45Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=9d076ef3a5c7422f10e96c0a2a6d5008ace6a9e6'/>
<id>urn:sha1:9d076ef3a5c7422f10e96c0a2a6d5008ace6a9e6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>MFC 218970,219240:</title>
<updated>2011-03-07T17:14:18Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2011-03-07T17:14:18Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=b7a822b95bd86bd616e21e513b3f5ad28591ff29'/>
<id>urn:sha1:b7a822b95bd86bd616e21e513b3f5ad28591ff29</id>
<content type='text'>
Use umtx_key objects to uniquely identify futexes.  Private futexes in
different processes that happen to use the same user address in the
separate processes will now be treated as distinct futexes rather than the
same futex.  We can now honor shared futexes properly by mapping them to a
AUTO_SHARED umtx_key.  Private futexes use THREAD_SHARED umtx_key objects.
</content>
</entry>
<entry>
<title>MFC r218985:</title>
<updated>2011-02-26T11:52:34Z</updated>
<author>
<name>Rebecca Cran</name>
<email>brucec@FreeBSD.org</email>
</author>
<published>2011-02-26T11:52:34Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=66f0d191ac8d9b17d7233f31aca3f3bcad29e5f1'/>
<id>urn:sha1:66f0d191ac8d9b17d7233f31aca3f3bcad29e5f1</id>
<content type='text'>
Use the cprd_mem field when setting the start and length for a memory
resource - the layout of cprd_port is identical but using cprd_mem
makes the code easier to understand.

PR:           kern/118493
Submitted by: Weongyo Jeong &lt;weongyo.jeong at gmail.com&gt;
</content>
</entry>
<entry>
<title>MFC r218909:</title>
<updated>2011-02-24T10:45:41Z</updated>
<author>
<name>Rebecca Cran</name>
<email>brucec@FreeBSD.org</email>
</author>
<published>2011-02-24T10:45:41Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=5d332418b021134c72a96d0a0f89e5bf0afec5ff'/>
<id>urn:sha1:5d332418b021134c72a96d0a0f89e5bf0afec5ff</id>
<content type='text'>
Fix typos - remove duplicate "the".

PR:		bin/154928
Submitted by:	Eitan Adler &lt;lists at eitanadler.com&gt;
</content>
</entry>
<entry>
<title>MFC r218114:</title>
<updated>2011-02-15T09:30:31Z</updated>
<author>
<name>Bjoern A. Zeeb</name>
<email>bz@FreeBSD.org</email>
</author>
<published>2011-02-15T09:30:31Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=4318543f7ebefe06a7ef356c939edacdb5ac2707'/>
<id>urn:sha1:4318543f7ebefe06a7ef356c939edacdb5ac2707</id>
<content type='text'>
  Update interface stats counters to match the current format in linux and
  try to export as much information as we can match.

  Requested on: Debian GNU/kFreeBSD list (debian-bsd lists.debian.org) 2010-12
  Tested by:    Mats Erik Andersson (mats.andersson gisladisker.se)
</content>
</entry>
<entry>
<title>Merge r183385 from head (by cognet)</title>
<updated>2010-03-14T13:32:40Z</updated>
<author>
<name>Gavin Atkinson</name>
<email>gavin@FreeBSD.org</email>
</author>
<published>2010-03-14T13:32:40Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=33878b41be7ec000aae6b589d8a4aec88887ba1a'/>
<id>urn:sha1:33878b41be7ec000aae6b589d8a4aec88887ba1a</id>
<content type='text'>
  Advertise bit 26 as sse2.

PR:		kern/130724
Approved by:	cognet
</content>
</entry>
</feed>
