Re: svn commit: r265003 - head/secure/usr.sbin/sshd

2014-08-20 Thread Bryan Drewery
;>> .if defined(LOCALBASE) >>>> CFLAGS+= -DXAUTH_PATH=\"${LOCALBASE}/bin/xauth\" >>>> .endif >>> >>> Hello, >>> >>> This change makes the following simple test program fail on the second >>> assert. The problem is that sa_handler == SIG_DFL, and sa_flags == >>> SA_SIGINFO, which according to the sigaction(9) man page is not >>> possible. With this change reverted the test is successful. >> I do not quite follow. >> >> What are the relations between sshd and your test program ? >> Should the test be run somehow specially ? > > No, and frankly that's what I don't understand. I compile this simple > test with `cc -o test test.c`. It fails with this commit applied, and > succeeds without it. > > Roger. > Does it fail if you do not connect with ssh? -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r270283 - head/usr.sbin/bsdconfig/share/packages

2014-08-21 Thread Bryan Drewery
uot; > + f_eval_catch $funcname pkg \ > + 'pkg install -${depended:+A}y "%s"' "$name" > fi > if [ $? -ne $SUCCESS ]; then > $alert "$msg_pkg_install_apparently_did_not_like_the_package" \ > -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r270283 - head/usr.sbin/bsdconfig/share/packages

2014-08-21 Thread Bryan Drewery
On 8/21/2014 12:23 PM, dte...@freebsd.org wrote: > > >> -Original Message- >> From: owner-src-committ...@freebsd.org [mailto:owner-src- >> committ...@freebsd.org] On Behalf Of Bryan Drewery >> Sent: Thursday, August 21, 2014 10:17 AM >> To: Devin Te

Re: svn commit: r269603 - in head: etc/mtree lib/libnv lib/libnv/tests tools/regression/lib/libnv

2014-08-21 Thread Bryan Drewery
>>> >>> Phabric: D538 >>> Approved by: jmmv (mentor) >>> Sponsored by: EMC / Isilon Storage Division >> >> I forgot to mention… >> >> MFC after: 2 weeks > > Didn’t realize that lib/libnv hasn’t been MFCed to stable/10, so this &

Re: svn commit: r270510 - head

2014-08-25 Thread Bryan Drewery
chflags and -f/-L tests. It would be much more manageable if all of the logic moved into a shell script. -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r270444 - in head/sys: kern sys

2014-08-26 Thread Bryan Drewery
{ >>> printf("hello world\n"); >>> (void)getchar(); >>> return (0); >>> } >>> % cc -g hello.c -o hello >>> % ./hello >>> hello world >>> load: 9.81 cmd: hello 42599 [ttyin] 1.67r 0.00u 0.00s 0% 1056k >>> >>> < different window > >>> >>> % ps -O ppid -p `pgrep hello` >>> PID PPID TT STAT TIME COMMAND >>> 42599 5340 16 I+ 0:00.00 ./hello >>> % gdb hello `pgrep hello` >>> GNU gdb 6.1.1 [FreeBSD] >>> ... >>> (gdb) >>> Suspended >>> % ps -O ppid -p `pgrep hello` >>> PID PPID TT STAT TIME COMMAND >>> 42599 45079 16 TX+0:00.00 ./hello >> >> Wow, learn something new every day... >> >> But doesn't that break apps that use getppid to signal their parent >> that forked them? > > Until mjg@'s commit, yes. It's been that way in FreeBSD at least for > as long as I can remember. Certainly back to 4.x. > Fun things can happen (local DoS) when you trace your own parent too. Recently fixed by other commits. Easily thwarted by security.bsd.unprivileged_proc_debug=0. -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r270759 - in head/sys: cddl/compat/opensolaris/kern cddl/compat/opensolaris/sys cddl/contrib/opensolaris/uts/common/fs/zfs vm

2014-08-29 Thread Bryan Drewery
On 8/28/2014 6:22 PM, Peter Wemm wrote: [...] > vm_paging_needed(void) > { > return (vm_cnt.v_free_count + vm_cnt.v_cache_count < > vm_pageout_wakeup_thresh); > } By the way there is a signed to unsigned comparison here. -- Regards, Bryan Drewery signatu

Re: svn commit: r270803 - head/libexec/rtld-elf

2014-08-29 Thread Bryan Drewery
dlopen(3). We have LD_DEBUG environment variable but it only prints if built with -DDEBUG. Is there a concern about performance by enabling this based only on environment? -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r270803 - head/libexec/rtld-elf

2014-08-29 Thread Bryan Drewery
On 8/29/2014 12:23 PM, Konstantin Belousov wrote: > On Fri, Aug 29, 2014 at 09:57:31AM -0500, Bryan Drewery wrote: >> On 8/29/2014 5:44 AM, Konstantin Belousov wrote: >>> Author: kib >>> Date: Fri Aug 29 10:44:58 2014 >>> New Revision: 270803 >>>

svn commit: r275847 - head/lib/libc/sys

2014-12-16 Thread Bryan Drewery
Author: bdrewery Date: Wed Dec 17 01:36:00 2014 New Revision: 275847 URL: https://svnweb.freebsd.org/changeset/base/275847 Log: Bump Dd for r275846 MFC after:3 weeks Modified: head/lib/libc/sys/procctl.2 Modified: head/lib/libc/sys/procctl.2 =

Re: svn commit: r272886 - in head/sys: netinet netinet6

2015-01-06 Thread Bryan Drewery
> > > > > Phabricator: https://reviews.freebsd.org/D383 > > Reviewed by: gnn > > > > Modified: > > head/sys/netinet/sctputil.c > > head/sys/netinet/udp_usrreq.c > > head/sys/netinet/udp_var.h > > head

Re: svn commit: r277693 - head/sys/boot/forth

2015-01-28 Thread Bryan Drewery
MFC after: 1 week Same, thanks. -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r277652 - in head/usr.sbin/pw: . tests

2015-01-28 Thread Bryan Drewery
egards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r280327 - in head/sys: kern vm

2015-04-15 Thread Bryan Drewery
this > issue is resolved. I have not observed any problems building packages > for FreeBSD 10 and 11. > I've committed a change to openjdk7/8 to disable PCH for GCC. filezilla and aegisub apparently use PCH as well. I still need to test and fix them. -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

svn commit: r281582 - head/usr.bin/lockf

2015-04-15 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 16 02:24:40 2015 New Revision: 281582 URL: https://svnweb.freebsd.org/changeset/base/281582 Log: Remove extra flags from r250462. MFC after:1 week Modified: head/usr.bin/lockf/lockf.c Modified: head/usr.bin/lockf/lockf.c ===

svn commit: r281617 - head/usr.bin/wc

2015-04-16 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 16 21:44:35 2015 New Revision: 281617 URL: https://svnweb.freebsd.org/changeset/base/281617 Log: Fix SIGINFO race causing final results to be lost to stderr. If a SIGINFO comes in after the file is read then the 'siginfo' flag is set to 1 and the next call t

svn commit: r281718 - in head/bin/sh: . tests/builtins

2015-04-18 Thread Bryan Drewery
Author: bdrewery Date: Sat Apr 18 23:49:57 2015 New Revision: 281718 URL: https://svnweb.freebsd.org/changeset/base/281718 Log: sh: Fix the trap builtin to be POSIX-compliant for 'trap exit SIG' and 'trap n n...'. The parser considered 'trap exit INT' to reset the default for both EXIT and

svn commit: r281790 - head/tools/build

2015-04-20 Thread Bryan Drewery
Author: bdrewery Date: Mon Apr 20 20:45:10 2015 New Revision: 281790 URL: https://svnweb.freebsd.org/changeset/base/281790 Log: Fix indentation to use tabs Modified: head/tools/build/check-links.sh Modified: head/tools/build/check-links.sh

svn commit: r281791 - head/tools/build

2015-04-20 Thread Bryan Drewery
Author: bdrewery Date: Mon Apr 20 20:51:19 2015 New Revision: 281791 URL: https://svnweb.freebsd.org/changeset/base/281791 Log: - Speedup significantly by not using subshells for data already fetched. Ran against /usr/local/sbin/pkg: Before: 25.12 real12.41 user33.14 sy

svn commit: r281805 - head/tools/build

2015-04-20 Thread Bryan Drewery
Author: bdrewery Date: Tue Apr 21 01:37:14 2015 New Revision: 281805 URL: https://svnweb.freebsd.org/changeset/base/281805 Log: Support demangling C++ symbols with -D flag. Sponsored by: EMC / Isilon Storage Division Modified: head/tools/build/check-links.sh Modified: head/tools/build/c

svn commit: r281808 - head/tools/build

2015-04-20 Thread Bryan Drewery
Author: bdrewery Date: Tue Apr 21 02:02:25 2015 New Revision: 281808 URL: https://svnweb.freebsd.org/changeset/base/281808 Log: Pass full path to ldd(1) so it works on files in cwd. Modified: head/tools/build/check-links.sh Modified: head/tools/build/check-links.sh ==

svn commit: r281810 - head/tools/build

2015-04-20 Thread Bryan Drewery
Author: bdrewery Date: Tue Apr 21 03:06:58 2015 New Revision: 281810 URL: https://svnweb.freebsd.org/changeset/base/281810 Log: Revert r281805 for now as it breaks due to spaces in output Modified: head/tools/build/check-links.sh Modified: head/tools/build/check-links.sh

svn commit: r281811 - head/tools/build

2015-04-20 Thread Bryan Drewery
Author: bdrewery Date: Tue Apr 21 03:29:03 2015 New Revision: 281811 URL: https://svnweb.freebsd.org/changeset/base/281811 Log: - For executables search for matching (B) global uninitialized BSS symbols from linked libraries. Only do this for BSS symbols that have a size which avoids __

svn commit: r281813 - head/tools/build

2015-04-20 Thread Bryan Drewery
Author: bdrewery Date: Tue Apr 21 05:10:18 2015 New Revision: 281813 URL: https://svnweb.freebsd.org/changeset/base/281813 Log: Support libraries linked by path. Sponsored by: EMC / Isilon Storage Division Modified: head/tools/build/check-links.sh Modified: head/tools/build/check-links.

svn commit: r281814 - head/tools/build

2015-04-20 Thread Bryan Drewery
Author: bdrewery Date: Tue Apr 21 05:41:56 2015 New Revision: 281814 URL: https://svnweb.freebsd.org/changeset/base/281814 Log: Tweak BSS symbol handling from r281811 to not consider them unresolved Modified: head/tools/build/check-links.sh Modified: head/tools/build/check-links.sh =

svn commit: r281891 - stable/10/tools/build/options

2015-04-23 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 23 15:15:45 2015 New Revision: 281891 URL: https://svnweb.freebsd.org/changeset/base/281891 Log: MFC r281053: Remove specific reference to g++(1) for WITH_CXX as it may be clang. Modified: stable/10/tools/build/options/WITHOUT_CXX Directory Properties:

svn commit: r281892 - stable/10/share/man/man5

2015-04-23 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 23 15:18:43 2015 New Revision: 281892 URL: https://svnweb.freebsd.org/changeset/base/281892 Log: Regen for r281891 Modified: stable/10/share/man/man5/src.conf.5 Modified: stable/10/share/man/man5/src.conf.5 ==

svn commit: r281893 - stable/10/crypto/openssh

2015-04-23 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 23 15:19:56 2015 New Revision: 281893 URL: https://svnweb.freebsd.org/changeset/base/281893 Log: MFC r280999: Use proper CHAN_TCP_PACKET_DEFAULT for agent forwarding when HPN disabled. Modified: stable/10/crypto/openssh/clientloop.c Directory Properties:

svn commit: r281894 - stable/9/crypto/openssh

2015-04-23 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 23 15:20:57 2015 New Revision: 281894 URL: https://svnweb.freebsd.org/changeset/base/281894 Log: MFC r280999: Use proper CHAN_TCP_PACKET_DEFAULT for agent forwarding when HPN disabled. Modified: stable/9/crypto/openssh/clientloop.c Directory Properties:

svn commit: r281895 - stable/8/crypto/openssh

2015-04-23 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 23 15:21:47 2015 New Revision: 281895 URL: https://svnweb.freebsd.org/changeset/base/281895 Log: MFC r280999: Use proper CHAN_TCP_PACKET_DEFAULT for agent forwarding when HPN disabled. Modified: stable/8/crypto/openssh/clientloop.c Directory Properties:

svn commit: r281896 - stable/10/usr.bin/lockf

2015-04-23 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 23 15:24:33 2015 New Revision: 281896 URL: https://svnweb.freebsd.org/changeset/base/281896 Log: MFC r281582: Remove extra flags from r250462. Modified: stable/10/usr.bin/lockf/lockf.c Directory Properties: stable/10/ (props changed) Modified: stable

svn commit: r281897 - stable/9/usr.bin/lockf

2015-04-23 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 23 15:25:22 2015 New Revision: 281897 URL: https://svnweb.freebsd.org/changeset/base/281897 Log: MFC r281582: Remove extra flags from r250462. Modified: stable/9/usr.bin/lockf/lockf.c Directory Properties: stable/9/usr.bin/lockf/ (props changed) Modi

svn commit: r281898 - stable/8/usr.bin/lockf

2015-04-23 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 23 15:26:07 2015 New Revision: 281898 URL: https://svnweb.freebsd.org/changeset/base/281898 Log: MFC r281582: Remove extra flags from r250462. Modified: stable/8/usr.bin/lockf/lockf.c Directory Properties: stable/8/usr.bin/lockf/ (props changed) Modi

Re: svn commit: r281942 - head/sys/vm

2015-04-24 Thread Bryan Drewery
On 4/24/2015 12:03 PM, Scott Long wrote: > Author: scottl > Date: Fri Apr 24 17:03:53 2015 > New Revision: 281942 > URL: https://svnweb.freebsd.org/changeset/base/281942 > > Log: > Revert r281451. It causes a panic/hang early in boot for a number of The diff confused me at first. It is more pr

Re: svn commit: r282265 - head

2015-04-29 Thread Bryan Drewery
seperately. Move the PATH setting to the NXBMAKE variable so its picked up to find the one-off gperf build for the native-xtools target. Pointed Out by: ngie Thanks. This does fix the cross-build native-xtools build for me for gperf. -- Regards, Bryan Drewery

svn commit: r282278 - stable/10/usr.bin/wc

2015-04-30 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 30 18:07:48 2015 New Revision: 282278 URL: https://svnweb.freebsd.org/changeset/base/282278 Log: MFC r281617: wc: Fix SIGINFO race causing final results to be lost to stderr. Relnotes: yes Modified: stable/10/usr.bin/wc/wc.c Directory Properties:

svn commit: r282279 - stable/9/usr.bin/wc

2015-04-30 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 30 18:11:43 2015 New Revision: 282279 URL: https://svnweb.freebsd.org/changeset/base/282279 Log: MFC r281617: wc: Fix SIGINFO race causing final results to be lost to stderr. Relnotes: yes Modified: stable/9/usr.bin/wc/wc.c Directory Properties:

Re: svn commit: r282257 - in head: lib/libnv sys/kern sys/sys

2015-04-30 Thread Bryan Drewery
Bumping the SHLIB_MAJOR or moving to PRIVATELIB will require adding the libnv.so.0 to the ObsoleteFiles.inc OLD_FILES list. -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r282275 - in stable/10: . bin/csh contrib/smbfs/include/netsmb contrib/smbfs/lib/smb include lib/libarchive lib/libc/iconv lib/libc/locale lib/libiconv_modules/BIG5 lib/libiconv_module

2015-04-30 Thread Bryan Drewery
gile. > > +20150430: > + The const qualifier has been removed from iconv(3) to comply with > + POSIX. The ports tree is aware of this from r384038 onwards. > + Being an ABI change this seems wrong to MFC. Binaries are not only built from Ports. For a binary built on 10.1 will this change cause any issues? -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r282275 - in stable/10: . bin/csh contrib/smbfs/include/netsmb contrib/smbfs/lib/smb include lib/libarchive lib/libc/iconv lib/libc/locale lib/libiconv_modules/BIG5 lib/libiconv_module

2015-04-30 Thread Bryan Drewery
On 4/30/2015 2:39 PM, Tijl Coosemans wrote: > On Thu, 30 Apr 2015 13:44:18 -0500 Bryan Drewery wrote: >> On 4/30/2015 11:08 AM, Tijl Coosemans wrote: >>> Author: tijl >>> Date: Thu Apr 30 16:08:47 2015 >>> New Revision: 282275 >>> URL: https://svnweb.

Re: svn commit: r282257 - in head: lib/libnv sys/kern sys/sys

2015-04-30 Thread Bryan Drewery
On 4/30/2015 2:52 PM, Mariusz Zaborski wrote: > On 30 April 2015 at 20:28, Bryan Drewery <mailto:bdrew...@freebsd.org>> wrote: > > You should either bump the SHLIB_MAJOR or consider making this a > PRIVATELIB so it is not in the public /lib but in the private >

svn commit: r282294 - head/tools/build

2015-04-30 Thread Bryan Drewery
Author: bdrewery Date: Fri May 1 04:35:42 2015 New Revision: 282294 URL: https://svnweb.freebsd.org/changeset/base/282294 Log: Fix a comment Modified: head/tools/build/check-links.sh Modified: head/tools/build/check-links.sh ==

svn commit: r282295 - head/tools/build

2015-04-30 Thread Bryan Drewery
Author: bdrewery Date: Fri May 1 05:01:56 2015 New Revision: 282295 URL: https://svnweb.freebsd.org/changeset/base/282295 Log: Add a -v to tell where each symbol is resolved from. Sponsored by: EMC / Isilon Storage Division Modified: head/tools/build/check-links.sh Modified: head/tools

Re: svn commit: r282318 - in head: . gnu/usr.bin/groff/src/preproc tools/build/mk usr.bin usr.bin/soelim usr.bin/soeliminate

2015-05-04 Thread Bryan Drewery
lObsoleteFiles.inc > head/usr.bin/Makefile > head/usr.bin/soelim/Makefile > Can you point me to some ports that failed due to this? It is relevant for my arch@ idea about checksumming jails for rebuild. I had not planned to add soelim(1) and related tools but may need to now. -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r282420 - in head: . etc/mtree lib/libevent lib/libucl share/mk

2015-05-04 Thread Bryan Drewery
u}?=${DESTDIR}${LIBDIR}/libprivate${_l}.a Style-wise I see bugs here. Let's stick to () or {}. -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r282421 - in head: . etc

2015-05-04 Thread Bryan Drewery
any context should be added here. A user may have their own libmap32.conf that this would remove. Mergemaster/etcupdate might handle this case fine without delete-old. There are several other bugs with libmap32.conf: There's no manpage. There's no default /usr/local/etc/libma

Re: svn commit: r282423 - head

2015-05-04 Thread Bryan Drewery
so.11 > Thanks. If only we had @sample type behavior here ;) -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

svn commit: r282574 - in head: . share/man/man9

2015-05-06 Thread Bryan Drewery
Author: bdrewery Date: Thu May 7 01:55:39 2015 New Revision: 282574 URL: https://svnweb.freebsd.org/changeset/base/282574 Log: Remove references to Giant in namei(9). This was removed in r241896. MFC after:1 week Sponsored by: EMC / Isilon Storage Division Modified: head/Obsolete

Re: svn commit: r282572 - vendor/OpenBSD/dist/usr.bin/rcs

2015-05-07 Thread Bryan Drewery
d distinfo and we are checking Makefile's ident, but it is still very useful to give an idea of the range of commits). Can we please consider at least importing ident(1) and disassociating it from WITHOUT_RCS? -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

svn commit: r282649 - head/share/mk

2015-05-08 Thread Bryan Drewery
Author: bdrewery Date: Fri May 8 16:43:01 2015 New Revision: 282649 URL: https://svnweb.freebsd.org/changeset/base/282649 Log: Fix spelling of INTERNALLIBS Modified: head/share/mk/src.libnames.mk Modified: head/share/mk/src.libnames.mk ===

Re: svn commit: r282736 - in head: . lib/libmd

2015-05-11 Thread Bryan Drewery
16 +41,34 @@ __BEGIN_DECLS > > /* Ensure libmd symbols do not clash with libcrypto */ > > +#ifndef SHA512_Init > #define SHA512_Init _libmd_SHA512_Init > +#endif > +#ifndef SHA512_Update > #define SHA512_Update_libmd_SHA512_Update > +#endif > +#ifndef SHA512_Final > #define SHA512_Final _libmd_SHA512_Final > +#endif > +#ifndef SHA512_End > #define SHA512_End _libmd_SHA512_End > +#endif > +#ifndef SHA512_File > #define SHA512_File _libmd_SHA512_File > +#endif > +#ifndef SHA512_FileChunk > #define SHA512_FileChunk _libmd_SHA512_FileChunk > +#endif > +#ifndef SHA512_Data > #define SHA512_Data _libmd_SHA512_Data > +#endif > > +#ifndef SHA512_Transform > #define SHA512_Transform _libmd_SHA512_Transform > +#endif > +#ifndef SHA512_version > #define SHA512_version _libmd_SHA512_version > +#endif > > void SHA512_Init(SHA512_CTX *); > void SHA512_Update(SHA512_CTX *, const void *, size_t); > -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r282736 - in head: . lib/libmd

2015-05-11 Thread Bryan Drewery
On 5/11/2015 7:53 PM, Xin Li wrote: > On 05/11/15 17:23, Bryan Drewery wrote: >> The libmd changes break pkg - so all packages. > >> http://beefy6.nyi.freebsd.org/data/head-amd64-default/p386108_s282785/ > logs/pkg-1.5.2.log > > > >>> CCLD pkg

Re: svn commit: r282808 - head/lib/liblzma

2015-05-12 Thread Bryan Drewery
pkg and we would like to do an exp-build. > > Requested by: bdrewery > > Modified: > head/lib/liblzma/Makefile > head/lib/liblzma/Symbol.map > head/lib/liblzma/config.h > Thank you. -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r282948 - head/lib/libthr/thread

2015-05-16 Thread Bryan Drewery
Xu actually did do most of the work to change this but abandoned it (it's all in SVN still). Using pthreads from a malloc wrapper is really painful to get right. -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: kasan (was Re: svn commit: r282948 - head/lib/libthr/thread)

2015-05-16 Thread Bryan Drewery
On 5/16/2015 12:31 PM, Pedro Giffuni wrote: > FWIW, and somewhat off-topic ... > > On 05/16/15 11:40, Bryan Drewery wrote: >> ... >> Modified: >>head/lib/libthr/thread/thr_spec.c >> >> Thank you for this! >> >> I have a lot of patches at I

Re: svn commit: r283132 - head/lib/libproc

2015-05-20 Thread Bryan Drewery
still errors too due to other bugs in it. -- Regards, Bryan Drewery ___ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

svn commit: r283251 - in stable/10: . share/man/man9

2015-05-21 Thread Bryan Drewery
Author: bdrewery Date: Thu May 21 16:44:31 2015 New Revision: 283251 URL: https://svnweb.freebsd.org/changeset/base/283251 Log: MFC r282574: Remove references to Giant in namei(9). This was removed in r241896. Modified: stable/10/ObsoleteFiles.inc stable/10/share/man/man9/Makefile

Re: svn commit: r283304 - head/bin/ps

2015-05-22 Thread Bryan Drewery
bxo option Can you please document how this flag actually works for the utilities it has been added to? The linked references are libraries yet I just want to get a tool to spit something out with xo. I have no idea what to do based on the manpages. -- Regards, Bryan Drewery signature.asc Descript

svn commit: r280177 - head/share/mk

2015-03-17 Thread Bryan Drewery
Author: bdrewery Date: Tue Mar 17 15:11:45 2015 New Revision: 280177 URL: https://svnweb.freebsd.org/changeset/base/280177 Log: Remove unneeded handling of undefined NM. Pointed out by: imp Discussed at: https://reviews.freebsd.org/D2039 MFC after:2 weeks Modified: head/sha

svn commit: r280178 - head/share/mk

2015-03-17 Thread Bryan Drewery
Author: bdrewery Date: Tue Mar 17 15:12:52 2015 New Revision: 280178 URL: https://svnweb.freebsd.org/changeset/base/280178 Log: Unhide linker line for libraries. The compilation lines are not hidden and there is not much reason to hide the linker line. It is useful to see. Discussed

svn commit: r280179 - in head: . lib/atf/libatf-c++ share/mk

2015-03-17 Thread Bryan Drewery
Author: bdrewery Date: Tue Mar 17 15:16:36 2015 New Revision: 280179 URL: https://svnweb.freebsd.org/changeset/base/280179 Log: Add LIB_CXX so that C++ libraries will use CXX to link. This fixes C++ libraries not implicitly linking in libc++. This is generally not an issue because the fi

svn commit: r280180 - head/share/mk

2015-03-17 Thread Bryan Drewery
Author: bdrewery Date: Tue Mar 17 15:21:01 2015 New Revision: 280180 URL: https://svnweb.freebsd.org/changeset/base/280180 Log: Document LIB and LIB_CXX. MFC after:2 weeks X-MFC-With: r280179 Modified: head/share/mk/bsd.README Modified: head/share/mk/bsd.README =

svn commit: r280265 - svnadmin/hooks/scripts

2015-03-19 Thread Bryan Drewery
Author: bdrewery Date: Thu Mar 19 16:14:27 2015 New Revision: 280265 URL: https://svnweb.freebsd.org/changeset/base/280265 Log: Fix dfilter script to support PR lines with commas. PR: 190866 Modified: svnadmin/hooks/scripts/notify_bz.sh Modified: svnadmin/hooks/scripts/notify_

svn commit: r280360 - head/crypto/openssh

2015-03-22 Thread Bryan Drewery
Author: bdrewery Date: Mon Mar 23 02:45:12 2015 New Revision: 280360 URL: https://svnweb.freebsd.org/changeset/base/280360 Log: Document "none" for VersionAddendum. PR: 193127 MFC after:2 weeks Modified: head/crypto/openssh/ssh_config.5 head/crypto/openssh/sshd_config.5

Re: svn commit: r280306 - in head: secure/lib/libcrypto secure/lib/libssl sys/sys

2015-03-23 Thread Bryan Drewery
pto/opensslconf-x86.h > head/secure/lib/libssl/Makefile > head/sys/sys/param.h > Can this be backed out until a ports exp-run is done and ports are fixed? This is causing a lot of fallout. -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r280306 - in head: secure/lib/libcrypto secure/lib/libssl sys/sys

2015-03-23 Thread Bryan Drewery
On 3/23/2015 2:08 PM, Bryan Drewery wrote: > On 3/20/2015 6:48 PM, Jung-uk Kim wrote: >> Author: jkim >> Date: Fri Mar 20 23:48:11 2015 >> New Revision: 280306 >> URL: https://svnweb.freebsd.org/changeset/base/280306 >> >> Log: >> Disable

Re: svn commit: r280306 - in head: secure/lib/libcrypto secure/lib/libssl sys/sys

2015-03-23 Thread Bryan Drewery
On 3/23/2015 2:13 PM, Bryan Drewery wrote: > On 3/23/2015 2:08 PM, Bryan Drewery wrote: >> On 3/20/2015 6:48 PM, Jung-uk Kim wrote: >>> Author: jkim >>> Date: Fri Mar 20 23:48:11 2015 >>> New Revision: 280306 >>> URL: https://svnweb.freebsd.org/cha

Re: svn commit: r280410 - head/sys/kern

2015-03-23 Thread Bryan Drewery
tl, CTLFLAG_RW, &coredump_devctl, 0, "Generate a devctl notification when processes coredump"); If there is a security concern about this feature I think more needs to be done than just flipping the default. It could easily be forgotten about and make a release.

Re: svn commit: r280410 - head/sys/kern

2015-03-23 Thread Bryan Drewery
On 3/23/15 9:35 PM, Rui Paulo wrote: On Mar 23, 2015, at 19:25, Bryan Drewery wrote: On 3/23/15 9:17 PM, Rui Paulo wrote: Author: rpaulo Date: Tue Mar 24 02:17:17 2015 New Revision: 280410 URL: https://svnweb.freebsd.org/changeset/base/280410 Log: Disable coredump_devctl because it could

Re: svn commit: r279361 - in head: sys/kern sys/sys usr.sbin/jail

2015-03-24 Thread Bryan Drewery
kern.smp.cpus as well. Bonus points for allowing these to be changed on-demand. We may setup a jail and want to change how much memory or CPUs it is allowed depending on what is going to be built next. I had been planning to look at this eventually but if someone beats me to it that would be great

Re: svn commit: r280327 - in head/sys: kern vm

2015-03-28 Thread Bryan Drewery
change was quite recent. > > This old gcc bug report: > <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=14940> led me to suspect > mmap(). > > The old gcc source file /usr/src/contrib/gcc/ggc-common.c does a couple > of mmap() calls. Tne first is in mmap_gt_pch_get_address() where a > NULL first argument is used. The address that gets returned is stashed > away and the region is unmapped. Then a later call in > mmap_gt_pch_use_address() passes this saved address to mmap() as a > hint. It expects the mapped region to get mapped to the same base > address. If this does not happen, the above error is the result. I don't know what I'm talking about but that doesn't sound like a very safe assumption for the gcc code to make. > > If I go back to kernel source r280326, which immediately preceeds the > above commit, I am able to successfully build openjdk7. > > I recommend that any machines in the ports cluster being used to build > packages for FreeBSD 8 and 9 avoid upgrading past r280326 until this > issue is resolved. I have not observed any problems building packages > for FreeBSD 10 and 11. > Is it 100% for you before and after? I've seen this error come up randomly where a rebuild will succeed. or fail. -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r280327 - in head/sys: kern vm

2015-03-28 Thread Bryan Drewery
On 3/28/2015 12:56 PM, Alan Cox wrote: > On 03/28/2015 12:29, Bryan Drewery wrote: >> On 3/27/2015 9:41 PM, Don Lewis wrote: >>> On 21 Mar, Alan Cox wrote: >>>> Author: alc >>>> Date: Sat Mar 21 17:56:55 2015 >>>> New Revision: 280327 >

Re: svn commit: r280327 - in head/sys: kern vm

2015-03-30 Thread Bryan Drewery
15,7 +218,11 @@ +@@ -215,7 +218,7 @@ # Flags for generating make dependency flags. ifneq ("${CC_VER_MAJOR}", "2") -DEPFLAGS = -fpch-deps -MMD -MP -MF $(DEP_DIR)/$(@:%=%.d) -+DEPFLAGS = -+ifeq (,$(findstring clang,$(shell $(CC) -v 2>&1))) -+DEPFLAGS += -fpch-dep

svn commit: r280870 - head/contrib/libarchive/libarchive

2015-03-30 Thread Bryan Drewery
Author: bdrewery Date: Tue Mar 31 00:00:47 2015 New Revision: 280870 URL: https://svnweb.freebsd.org/changeset/base/280870 Log: Fix --one-file-system to include the directory encountered rather than excluding it. This was broken in 3.0.4 (r238856). Obtained from:https://github.co

Re: svn commit: r280955 - in head/sys: modules/notrandom dev/notrandom

2015-04-01 Thread Bryan Drewery
This is a nice tradeoff. No longer do I have to decide if I want to use /dev/zero or slower /dev/random. -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

svn commit: r280999 - head/crypto/openssh

2015-04-02 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 2 18:43:25 2015 New Revision: 280999 URL: https://svnweb.freebsd.org/changeset/base/280999 Log: Use proper CHAN_TCP_PACKET_DEFAULT for agent forwarding when HPN disabled. The use of CHAN_TCP_WINDOW_DEFAULT here was fixed in upstream OpenSSH in CVS 1.4810, g

svn commit: r281030 - stable/10/lib/libc/sys

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 17:12:24 2015 New Revision: 281030 URL: https://svnweb.freebsd.org/changeset/base/281030 Log: MFC r272291: Document [EPERM] for UNIX sockets. Modified: stable/10/lib/libc/sys/connect.2 Directory Properties: stable/10/ (props changed) Modified: sta

svn commit: r281031 - stable/9/lib/libc/sys

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 17:13:20 2015 New Revision: 281031 URL: https://svnweb.freebsd.org/changeset/base/281031 Log: MFC r272291: Document [EPERM] for UNIX sockets. Modified: stable/9/lib/libc/sys/connect.2 Directory Properties: stable/9/lib/libc/ (props changed) stabl

svn commit: r281032 - stable/8/lib/libc/sys

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 17:14:19 2015 New Revision: 281032 URL: https://svnweb.freebsd.org/changeset/base/281032 Log: MFC r272291: Document [EPERM] for UNIX sockets. Modified: stable/8/lib/libc/sys/connect.2 Directory Properties: stable/8/lib/libc/ (props changed) stabl

svn commit: r281034 - stable/9/lib/libc/nls

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 17:17:17 2015 New Revision: 281034 URL: https://svnweb.freebsd.org/changeset/base/281034 Log: MFC r278530: When catopen(3) returns an error, it caches the result of that error from r202992. The refcount on the cache entry is not initialized, so any at

svn commit: r281033 - stable/10/lib/libc/nls

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 17:16:05 2015 New Revision: 281033 URL: https://svnweb.freebsd.org/changeset/base/281033 Log: MFC r278530: When catopen(3) returns an error, it caches the result of that error from r202992. The refcount on the cache entry is not initialized, so any at

svn commit: r281035 - stable/8/lib/libc/nls

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 17:18:05 2015 New Revision: 281035 URL: https://svnweb.freebsd.org/changeset/base/281035 Log: MFC r278530: When catopen(3) returns an error, it caches the result of that error from r202992. The refcount on the cache entry is not initialized, so any at

svn commit: r281036 - stable/10/include

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 17:19:29 2015 New Revision: 281036 URL: https://svnweb.freebsd.org/changeset/base/281036 Log: MFC r278600: Correct and clarify comment for __SMBF. Modified: stable/10/include/stdio.h Directory Properties: stable/10/ (props changed) Modified: stabl

svn commit: r281037 - stable/10/share/mk

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 17:21:30 2015 New Revision: 281037 URL: https://svnweb.freebsd.org/changeset/base/281037 Log: MFC r280177: Remove unneeded handling of undefined NM. Modified: stable/10/share/mk/bsd.lib.mk Directory Properties: stable/10/ (props changed) Modified:

svn commit: r281038 - stable/9/share/mk

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 17:25:41 2015 New Revision: 281038 URL: https://svnweb.freebsd.org/changeset/base/281038 Log: MFC r280177: Remove unneeded handling of undefined NM. Modified: stable/9/share/mk/bsd.lib.mk Directory Properties: stable/9/share/mk/ (props changed) Mo

svn commit: r281040 - stable/8/share/mk

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 17:49:15 2015 New Revision: 281040 URL: https://svnweb.freebsd.org/changeset/base/281040 Log: MFC r280177: Remove unneeded handling of undefined NM. Modified: stable/8/share/mk/bsd.lib.mk Directory Properties: stable/8/share/mk/ (props changed) Mo

svn commit: r281041 - stable/10/share/mk

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 17:51:37 2015 New Revision: 281041 URL: https://svnweb.freebsd.org/changeset/base/281041 Log: MFC r280178: Unhide linker line for libraries. Modified: stable/10/share/mk/bsd.lib.mk Directory Properties: stable/10/ (props changed) Modified: stable/

svn commit: r281042 - stable/9/share/mk

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 17:52:57 2015 New Revision: 281042 URL: https://svnweb.freebsd.org/changeset/base/281042 Log: MFC r280178: Unhide linker line for libraries. Modified: stable/9/share/mk/bsd.lib.mk Directory Properties: stable/9/share/mk/ (props changed) Modified:

svn commit: r281043 - stable/8/share/mk

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 17:54:48 2015 New Revision: 281043 URL: https://svnweb.freebsd.org/changeset/base/281043 Log: MFC r280178: Unhide linker line for libraries. Modified: stable/8/share/mk/bsd.lib.mk Directory Properties: stable/8/share/mk/ (props changed) Modified:

svn commit: r281044 - stable/10/contrib/libarchive/libarchive

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 18:01:51 2015 New Revision: 281044 URL: https://svnweb.freebsd.org/changeset/base/281044 Log: MFC r280870: Fix --one-file-system to include the directory encountered rather than excluding it. This was broken in 3.0.4 (r238856). Relnotes: yes

svn commit: r281053 - head/tools/build/options

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 23:55:04 2015 New Revision: 281053 URL: https://svnweb.freebsd.org/changeset/base/281053 Log: Remove specific reference to g++(1) for WITH_CXX as it may be clang. MFC after:1 week Modified: head/tools/build/options/WITHOUT_CXX Modified: head/tools/b

svn commit: r281054 - head/share/man/man5

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Fri Apr 3 23:58:40 2015 New Revision: 281054 URL: https://svnweb.freebsd.org/changeset/base/281054 Log: Regen for r281053 Modified: head/share/man/man5/src.conf.5 Modified: head/share/man/man5/src.conf.5

svn commit: r281056 - in stable/10: . lib/atf/libatf-c++ share/mk

2015-04-03 Thread Bryan Drewery
Author: bdrewery Date: Sat Apr 4 00:42:09 2015 New Revision: 281056 URL: https://svnweb.freebsd.org/changeset/base/281056 Log: MFC r280179,r280180: r280179: Add LIB_CXX so that C++ libraries will use CXX to link. This adds some extra dependencies directly to Makefile.inc1

svn commit: r281185 - stable/10/crypto/openssh

2015-04-06 Thread Bryan Drewery
Author: bdrewery Date: Tue Apr 7 02:53:14 2015 New Revision: 281185 URL: https://svnweb.freebsd.org/changeset/base/281185 Log: MFC r280360: Document "none" for VersionAddendum. Modified: stable/10/crypto/openssh/ssh_config.5 stable/10/crypto/openssh/sshd_config.5 Directory Propertie

svn commit: r281186 - stable/9/crypto/openssh

2015-04-06 Thread Bryan Drewery
Author: bdrewery Date: Tue Apr 7 02:55:22 2015 New Revision: 281186 URL: https://svnweb.freebsd.org/changeset/base/281186 Log: MFC r280360: Document "none" for VersionAddendum. Modified: stable/9/crypto/openssh/ssh_config.5 stable/9/crypto/openssh/sshd_config.5 Directory Properties:

Re: lost change 272451 - CAP_EVENT for tcpdump (Re: svn commit: r276788 - in head: contrib/tcpdump contrib/tcpdump/lbl contrib/tcpdump/missing usr.sbin/tcpdump/tcpdump

2015-02-05 Thread Bryan Drewery
ing. The code would be overly complex to support both and I gave up on that. Even getting it to work on FreeBSD required the _KERNEL define hack for UID_MAX, which our pf uses to note 'no uid value'. I was considering committing this, but was not sure on the proper way to note our changes. #if __FreeBSD__ was my guess. -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r278521 - head/sys/fs/autofs

2015-02-10 Thread Bryan Drewery
uture use. > + */ > + int add_spare[7]; > }; > > #define AUTOFSREQUEST _IOR('I', 0x01, struct autofs_daemon_request) > -#define AUTOFSDONE _IOW('I', 0x02, struct autofs_daemon_done) > +#define AUTOFSDONE101 _IOW('I', 0x02, struct autofs_daemon_done_101) > +#define AUTOFSDONE _IOW('I', 0x03, struct autofs_daemon_done) > > #endif /* !AUTOFS_IOCTL_H */ > -- Regards, Bryan Drewery signature.asc Description: OpenPGP digital signature

Re: svn commit: r278521 - head/sys/fs/autofs

2015-02-10 Thread Bryan Drewery
On 2/10/2015 10:56 AM, Edward Tomasz Napierala wrote: > On 0210T1034, Bryan Drewery wrote: >> On 2/10/2015 10:17 AM, Edward Tomasz Napierala wrote: >>> Author: trasz >>> Date: Tue Feb 10 16:17:16 2015 >>> New Revision: 278521 >>> URL: https://svnweb.

svn commit: r278530 - head/lib/libc/nls

2015-02-10 Thread Bryan Drewery
Author: bdrewery Date: Tue Feb 10 20:45:40 2015 New Revision: 278530 URL: https://svnweb.freebsd.org/changeset/base/278530 Log: When catopen(3) returns an error, it caches the result of that error from r202992. The refcount on the cache entry is not initialized, so any attempt to clean the c

svn commit: r278600 - head/include

2015-02-11 Thread Bryan Drewery
Author: bdrewery Date: Wed Feb 11 22:39:13 2015 New Revision: 278600 URL: https://svnweb.freebsd.org/changeset/base/278600 Log: Correct and clarify comment for __SMBF. MFC after:2 weeks Sponsored by: EMC / Isilon Storage Division Modified: head/include/stdio.h Modified: head/inclu

<    1   2   3   4   5   6   7   8   9   10   >