<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/libexec/rtld-elf, branch release/11.0.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F11.0.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F11.0.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2016-08-19T08:44:37Z</updated>
<entry>
<title>MFC r304011:</title>
<updated>2016-08-19T08:44:37Z</updated>
<author>
<name>Konstantin Belousov</name>
<email>kib@FreeBSD.org</email>
</author>
<published>2016-08-19T08:44:37Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=34608b523e6f30d3befa451f14817de49bca646f'/>
<id>urn:sha1:34608b523e6f30d3befa451f14817de49bca646f</id>
<content type='text'>
Remove all remaining uses of TAILQ_FOREACH_FROM() from rtld-elf.

MFC r304012:
Fill phdr and phsize for rtld object.

Approved by:	re (gjb)
</content>
</entry>
<entry>
<title>MFC r302908:</title>
<updated>2016-07-22T17:24:36Z</updated>
<author>
<name>Bryan Drewery</name>
<email>bdrewery@FreeBSD.org</email>
</author>
<published>2016-07-22T17:24:36Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=90216203de47790b3ab1e42ee81511ebed99146e'/>
<id>urn:sha1:90216203de47790b3ab1e42ee81511ebed99146e</id>
<content type='text'>
  Fix dlsym(RTLD_NEXT) handling to only return the next library in last library
  cases.

Approved by:	re (gjb)
</content>
</entry>
<entry>
<title>Fix race for incrementally rebuilding VERSION_MAP.</title>
<updated>2016-07-03T17:28:39Z</updated>
<author>
<name>Bryan Drewery</name>
<email>bdrewery@FreeBSD.org</email>
</author>
<published>2016-07-03T17:28:39Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=e7debdcb152407d9e11ffc4bb7e8c7343564de1e'/>
<id>urn:sha1:e7debdcb152407d9e11ffc4bb7e8c7343564de1e</id>
<content type='text'>
The dependency is needed in PROG_FULL since only the build of PROG_FULL
is using the LDFLAGS and depending on VERSION_MAP.  This was not a problem
with MK_DEBUG_FILES==no since it only builds PROG.

This should probably be using bsd.lib.mk instead [1]

Reported by:	swills, gjb
Reviewed by:	emaste
Noted by:	rgrimes [1]
Sponsored by:	EMC / Isilon Storage Division
Approved by:	re (kib)
</content>
</entry>
<entry>
<title>Fix issues found by Coverity in the rtld-elf.c:gethints().</title>
<updated>2016-05-25T18:10:44Z</updated>
<author>
<name>Konstantin Belousov</name>
<email>kib@FreeBSD.org</email>
</author>
<published>2016-05-25T18:10:44Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=360ba6bc13d1d194f1b3a345d4afc150aba0c6ae'/>
<id>urn:sha1:360ba6bc13d1d194f1b3a345d4afc150aba0c6ae</id>
<content type='text'>
Check that the dirlist path string specification does not cause
overflow and is fully contained in the hints file.
Check that the dirlist string is nul-terminated.
Make 'hdr' static variable, so that hdr.dirlistlen is available when
hints cached value is used on next function calls.  Reset hdr.dirlistlen
to zero if error was detected, so that allocations use reasonable size.
Use 'hints', and not 'p' in the body, since p is only initialized on the
first call.

Reported and reviewed by:	truckman (previous version)
Sponsored by:	The FreeBSD Foundation
CIDs:	1006503, 1006504, 1006676, 1008488, 1007263
MFC after:	2 weeks
</content>
</entry>
<entry>
<title>Merge ^/user/ngie/release-pkg-fix-tests to unbreak how test files are installed</title>
<updated>2016-05-04T23:20:53Z</updated>
<author>
<name>Enji Cooper</name>
<email>ngie@FreeBSD.org</email>
</author>
<published>2016-05-04T23:20:53Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=430f7286a566b1407c7b32ce13585caf5aa59b92'/>
<id>urn:sha1:430f7286a566b1407c7b32ce13585caf5aa59b92</id>
<content type='text'>
after r298107

Summary of changes:

- Replace all instances of FILES/TESTS with ${PACKAGE}FILES. This ensures that
  namespacing is kept with FILES appropriately, and that this shouldn't need
  to be repeated if the namespace changes -- only the definition of PACKAGE
  needs to be changed
- Allow PACKAGE to be overridden by callers instead of forcing it to always be
  `tests`. In the event we get to the point where things can be split up
  enough in the base system, it would make more sense to group the tests
  with the blocks they're a part of, e.g. byacc with byacc-tests, etc
- Remove PACKAGE definitions where possible, i.e. where FILES wasn't used
  previously.
- Remove unnecessary TESTSPACKAGE definitions; this has been elided into
  bsd.tests.mk
- Remove unnecessary BINDIRs used previously with ${PACKAGE}FILES;
  ${PACKAGE}FILESDIR is now automatically defined in bsd.test.mk.
- Fix installation of files under data/ subdirectories in lib/libc/tests/hash
  and lib/libc/tests/net/getaddrinfo
- Remove unnecessary .include &lt;bsd.own.mk&gt;s (some opportunistic cleanup)

Document the proposed changes in share/examples/tests/tests/... via examples
so it's clear that ${PACKAGES}FILES is the suggested way forward in terms of
replacing FILES. share/mk/bsd.README didn't seem like the appropriate method
of communicating that info.

MFC after: never probably
X-MFC with: r298107
PR: 209114
Relnotes: yes
Tested with: buildworld, installworld, checkworld; buildworld, packageworld
Sponsored by: EMC / Isilon Storage Division
</content>
</entry>
<entry>
<title>libexec: minor spelling fixes in comments.</title>
<updated>2016-05-01T19:39:23Z</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2016-05-01T19:39:23Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=ec489d64bb4c1bca1a6bdfdf7e37900a85f886bc'/>
<id>urn:sha1:ec489d64bb4c1bca1a6bdfdf7e37900a85f886bc</id>
<content type='text'>
No functional change.
</content>
</entry>
<entry>
<title>rtld-elf: use our roundup2() macro when param.h is available.</title>
<updated>2016-04-19T20:12:46Z</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2016-04-19T20:12:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=260111ffced479701f0c2f988b60c9e8997da711'/>
<id>urn:sha1:260111ffced479701f0c2f988b60c9e8997da711</id>
<content type='text'>
</content>
</entry>
<entry>
<title>rtld-elf: use NULL instead of zero for pointers.</title>
<updated>2016-04-19T19:03:55Z</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2016-04-19T19:03:55Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=a5d5e8dd7c76ce71022cde628b7f4ff5e1314223'/>
<id>urn:sha1:a5d5e8dd7c76ce71022cde628b7f4ff5e1314223</id>
<content type='text'>
</content>
</entry>
<entry>
<title>MFH</title>
<updated>2016-04-04T23:55:32Z</updated>
<author>
<name>Glen Barber</name>
<email>gjb@FreeBSD.org</email>
</author>
<published>2016-04-04T23:55:32Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=d60840138f6292c1ceeb177ebe797eca0b2749da'/>
<id>urn:sha1:d60840138f6292c1ceeb177ebe797eca0b2749da</id>
<content type='text'>
Sponsored by:	The FreeBSD Foundation
</content>
</entry>
<entry>
<title>WITHOUT_TOOLCHAIN: Fix build of rtld.</title>
<updated>2016-03-31T17:27:01Z</updated>
<author>
<name>Bryan Drewery</name>
<email>bdrewery@FreeBSD.org</email>
</author>
<published>2016-03-31T17:27:01Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=c0f5aeb0329d71e6b02379133c0c9c0145c9afea'/>
<id>urn:sha1:c0f5aeb0329d71e6b02379133c0c9c0145c9afea</id>
<content type='text'>
MK_TOOLCHAIN==no disables building and installing of pic archives.
c_pic.a is still needed for rtld though so force it to build in lib/libc
and link directly to the objdir version of it for rtld.

Somehow this has been broken since r148725.

Sponsored by:	EMC / Isilon Storage Division
</content>
</entry>
</feed>
