<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/include, branch release/6.4.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F6.4.0_cvs</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F6.4.0_cvs'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2008-11-26T01:09:48Z</updated>
<entry>
<title>Copy releng/6.4 to release/6.4.0 in preparation for 6.4-RELEASE.</title>
<updated>2008-11-26T01:09:48Z</updated>
<author>
<name>Ken Smith</name>
<email>kensmith@FreeBSD.org</email>
</author>
<published>2008-11-26T01:09:48Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=a93332491e10c1a23a9fd2f11ccbdba33d72d850'/>
<id>urn:sha1:a93332491e10c1a23a9fd2f11ccbdba33d72d850</id>
<content type='text'>
Approved by:	re (implicit)

This commit was manufactured to restore the state of the 6.4-RELEASE image.
</content>
</entry>
<entry>
<title>MFC: Add the mpt_user personality to mpt(4).</title>
<updated>2008-06-27T04:46:06Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2008-06-27T04:46:06Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=467b62b6bff4cc75f18513bcb674cbabbb14fc3b'/>
<id>urn:sha1:467b62b6bff4cc75f18513bcb674cbabbb14fc3b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>MFC: Add memrchr(3).</title>
<updated>2008-05-27T20:04:27Z</updated>
<author>
<name>Xin LI</name>
<email>delphij@FreeBSD.org</email>
</author>
<published>2008-05-27T20:04:27Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=ab9da364b75f44ecda0cc08823b704c2186fd6cd'/>
<id>urn:sha1:ab9da364b75f44ecda0cc08823b704c2186fd6cd</id>
<content type='text'>
Obtained from:	OpenBSD
</content>
</entry>
<entry>
<title>MFC of an update to the dump program to save extended attributes</title>
<updated>2008-05-23T18:08:32Z</updated>
<author>
<name>Kirk McKusick</name>
<email>mckusick@FreeBSD.org</email>
</author>
<published>2008-05-23T18:08:32Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=34755ed5d41522821dbc6707bc249a3e44705a77'/>
<id>urn:sha1:34755ed5d41522821dbc6707bc249a3e44705a77</id>
<content type='text'>
and an update to the restore program to restore all dumped extended
attributes. The affected files and the version being MFC'ed:

  Revision  Path
  1.11      src/include/protocols/dumprestore.h
  1.28      src/sbin/dump/dump.h
  1.38      src/sbin/dump/traverse.c
  1.31      src/sbin/restore/dirs.c
  1.11      src/sbin/restore/extern.h
  1.12      src/sbin/restore/restore.h
  1.48      src/sbin/restore/tape.c
  1.16      src/sys/sys/extattr.h
  1.21      src/sys/ufs/ufs/extattr.h
  1.24      src/share/man/man5/fs.5

Note that this code will not compile until these header
files have been updated: &lt;protocols/dumprestore.h&gt; and
&lt;sys/extattr.h&gt;. This should happen in the course of doing
a normal `buildworld'.

This resolves PR 93085 which will be closed.

PR:             bin/93085
MFC request by: Robert Watson
</content>
</entry>
<entry>
<title>MFC:</title>
<updated>2008-05-16T01:22:20Z</updated>
<author>
<name>Sean Farley</name>
<email>scf@FreeBSD.org</email>
</author>
<published>2008-05-16T01:22:20Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=141d89d8c47de8d4411c7900b015360f0fafb190'/>
<id>urn:sha1:141d89d8c47de8d4411c7900b015360f0fafb190</id>
<content type='text'>
Define the size_t type since readpassphrase(3) requires it in its
definition and sys/types.h is not listed within the synopsis of the man
page.

    src/include/readpassphrase.h: rev 1.2 -&gt; 1.3
</content>
</entry>
<entry>
<title>- Back out previous ctype(3) fix for UTF-8 locale due to forward ABI</title>
<updated>2007-11-21T01:31:49Z</updated>
<author>
<name>Rong-En Fan</name>
<email>rafan@FreeBSD.org</email>
</author>
<published>2007-11-21T01:31:49Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=b718b356e1ebf1d830c22801948eee442d131385'/>
<id>urn:sha1:b718b356e1ebf1d830c22801948eee442d131385</id>
<content type='text'>
  compatibility is still broken as we add new symbols to libc. Those
  symboles are __sbmaskrune, __sbistype, __sbtoupper and __sbtolower.
  The latter three are directly referred by binaries use ctype(3) family
  functions (see include/ctype.h for details). This means if a binary
  built on 6.3, it uses these symbols that are not available on older
  system.
- As this has been in 6 for a month, I intentionally leave these symbols
  in libc but map them to original version. So binary built after 602113
  will not be broken after this commit.
- Bump __FreeBSD_version for this back-out

PR:		116363
Discussed with:	kris, kensmith
Approved by:	re (kensmith)
</content>
</entry>
<entry>
<title>Restore ctype(3) ABI forward compatibility in 6.x world. This was broken</title>
<updated>2007-10-30T01:30:42Z</updated>
<author>
<name>Rong-En Fan</name>
<email>rafan@FreeBSD.org</email>
</author>
<published>2007-10-30T01:30:42Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=531cdd3ca25c800b84b25b7b23ebe0dba5817acf'/>
<id>urn:sha1:531cdd3ca25c800b84b25b7b23ebe0dba5817acf</id>
<content type='text'>
with last ctype(3) single-byte and multi-byte separation for fixing
operating on UTF-8 locale. To be specific, we introduced a new symbol in
libc. And this symbol is referred via inline functions here. So, you can
not run a binary built with this version of libc on an older system. To
restore the compatibility, make these functions built as non-inlined
form (see lib/libc/nomarco.c) and MFC rev 1.32 which drops the usage of
that symbol in question for __isctype(). As this may impact performance,
I only intend to fix in 6.x, but not 7 (not yet released) and 8 (it's HEAD).

Discussed on:	cvs-src
Requested by:	scottl
Reviewed by:	ache, delphij
Approved by:	re (kensmith)
</content>
</entry>
<entry>
<title>MFC ctype(3) fix for UTF-8 locale. See original commit log for details.</title>
<updated>2007-10-24T14:32:33Z</updated>
<author>
<name>Rong-En Fan</name>
<email>rafan@FreeBSD.org</email>
</author>
<published>2007-10-24T14:32:33Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=0bb276dd2b10f18120607ebde097f6bebfe28577'/>
<id>urn:sha1:0bb276dd2b10f18120607ebde097f6bebfe28577</id>
<content type='text'>
PR:		116363
Reported by:	Petr Hroudny &lt;petr.hroudny at gmail.com&gt;
Patched by:	ache
Reviewed by:	i18n@
Approved by:	re (kensmith)
OK-ed by:	portmgr
</content>
</entry>
<entry>
<title>MFC: rev 1.6</title>
<updated>2007-10-11T17:32:20Z</updated>
<author>
<name>Bernd Walter</name>
<email>ticso@FreeBSD.org</email>
</author>
<published>2007-10-11T17:32:20Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=47a521cb9795d1b902f733429ac39f29b4aeb555'/>
<id>urn:sha1:47a521cb9795d1b902f733429ac39f29b4aeb555</id>
<content type='text'>
declare struct tftphdr and embedded union as beeing packed, which is
required for arm.
</content>
</entry>
<entry>
<title>MFC rev. 1.3 from HEAD,</title>
<updated>2007-02-09T14:24:48Z</updated>
<author>
<name>Jens Schweikhardt</name>
<email>schweikh@FreeBSD.org</email>
</author>
<published>2007-02-09T14:24:48Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=063d8dd354a9a0a72c6211283819cca09037ff4f'/>
<id>urn:sha1:063d8dd354a9a0a72c6211283819cca09037ff4f</id>
<content type='text'>
  Comment the token after #endif, like we do everywhere else.
  Static analyzers like FlexeLint complain about it.
</content>
</entry>
</feed>
