Re: svn commit: r281517 - head/usr.bin/ipcs

2015-04-14 Thread Bruce Evans
On Tue, 14 Apr 2015, Eitan Adler wrote: Log: ipcs: fix builds that use gcc gcc gets annoyed by duplicate declarations You mean Fix builds that use a working compiler. Working compilers report redundant declarations when requested to do so by the -Wredundant-decls flag which I

svn commit: r281522 - head/usr.bin

2015-04-14 Thread Andrew Turner
Author: andrew Date: Tue Apr 14 10:15:58 2015 New Revision: 281522 URL: https://svnweb.freebsd.org/changeset/base/281522 Log: Disable truss, gprof, and lint on arm64, they don't build. Sponsored by: The FreeBSD Foundation Modified: head/usr.bin/Makefile Modified: head/usr.bin/Makefile

svn commit: r281525 - head/sys/boot/efi/fdt

2015-04-14 Thread Andrew Turner
Author: andrew Date: Tue Apr 14 10:41:57 2015 New Revision: 281525 URL: https://svnweb.freebsd.org/changeset/base/281525 Log: Fix the arm64 MACHINE_CPUARCH value in the efi fdt glue code. Sponsored by: The FreeBSD Foundation Modified: head/sys/boot/efi/fdt/Makefile Modified:

svn commit: r281524 - in head/sys/boot/efi: boot1 fdt libefi loader

2015-04-14 Thread Andrew Turner
Author: andrew Date: Tue Apr 14 10:40:37 2015 New Revision: 281524 URL: https://svnweb.freebsd.org/changeset/base/281524 Log: Use MACHINE in the efi loader when it is what we mean, it may not be the same as MACHINE_CPUARCH, it just happened to be the case the architectures this code

svn commit: r281529 - head/sys/netpfil/pf

2015-04-14 Thread George V. Neville-Neil
Author: gnn Date: Tue Apr 14 14:43:42 2015 New Revision: 281529 URL: https://svnweb.freebsd.org/changeset/base/281529 Log: I can find no reason to allow packets with both SYN and FIN bits set past this point in the code. The packet should be dropped and not massaged as it is here.

svn commit: r281528 - head/sys/kern

2015-04-14 Thread George V. Neville-Neil
Author: gnn Date: Tue Apr 14 14:22:34 2015 New Revision: 281528 URL: https://svnweb.freebsd.org/changeset/base/281528 Log: When a kernel has DEVICE_POLLING turned on but no drivers have the capability do not try to take the mutex at all. Replaces misbegotten attempt from reverted commit

svn commit: r281531 - head/sys/cam

2015-04-14 Thread Alan Somers
Author: asomers Date: Tue Apr 14 16:33:33 2015 New Revision: 281531 URL: https://svnweb.freebsd.org/changeset/base/281531 Log: Initialize async_arg_ptr in xpt_async when called with async_code AC_ADVINFO_CHANGED. Without this change, newly inserted hard disks won't always have their

svn commit: r281532 - head/usr.sbin/ctld

2015-04-14 Thread Xin LI
Author: delphij Date: Tue Apr 14 18:13:55 2015 New Revision: 281532 URL: https://svnweb.freebsd.org/changeset/base/281532 Log: Eliminate unused headers. Modified: head/usr.sbin/ctld/discovery.c head/usr.sbin/ctld/isns.c head/usr.sbin/ctld/keys.c head/usr.sbin/ctld/login.c

svn commit: r281530 - head/sys/net

2015-04-14 Thread George V. Neville-Neil
Author: gnn Date: Tue Apr 14 15:21:20 2015 New Revision: 281530 URL: https://svnweb.freebsd.org/changeset/base/281530 Log: Document internal interface types which are specific to FreeBSD. Modified: head/sys/net/if_types.h Modified: head/sys/net/if_types.h

svn commit: r281541 - head/sys/netinet

2015-04-14 Thread Adrian Chadd
Author: adrian Date: Wed Apr 15 00:57:21 2015 New Revision: 281541 URL: https://svnweb.freebsd.org/changeset/base/281541 Log: Fix RSS build - netisr input / NETISR_IP_DIRECT is used here. Modified: head/sys/netinet/ip_reass.c Modified: head/sys/netinet/ip_reass.c

svn commit: r281540 - head/usr.bin/gzip

2015-04-14 Thread Xin LI
Author: delphij Date: Wed Apr 15 00:07:21 2015 New Revision: 281540 URL: https://svnweb.freebsd.org/changeset/base/281540 Log: When reading in the original file name from gzip header, we read in PATH_MAX + 1 bytes from the file. In r281500, strrchr() is used to strip possible path portion

svn commit: r281542 - head/usr.sbin/bhyvectl

2015-04-14 Thread Neel Natu
Author: neel Date: Wed Apr 15 05:04:42 2015 New Revision: 281542 URL: https://svnweb.freebsd.org/changeset/base/281542 Log: Initialize 'error' before use. Reported by: Coverity Scan CID: 1249748, 1249747, 1249751, 1249749 MFC after:1 week Modified:

Re: svn commit: r281131 - head/etc

2015-04-14 Thread Jan Beich
Baptiste Daroussin b...@freebsd.org writes: Log: Enforce LC_COLLATE=C until we do support proper UTF-8 collation [...] - :setenv=MAIL=/var/mail/$,BLOCKSIZE=K:\ + :setenv=MAIL=/var/mail/$,BLOCKSIZE=K:LC_COLLATE=C:\ Did you mean to append value to :setenv instead of defining a

svn commit: r281544 - head/sys/dev/sound/pci/hda

2015-04-14 Thread Rui Paulo
Author: rpaulo Date: Wed Apr 15 05:24:39 2015 New Revision: 281544 URL: https://svnweb.freebsd.org/changeset/base/281544 Log: snd_hda: add support for the Lenovo X1 20BS model. This requires a patch to redirect the output to a separate DAC when the headphones are used. While there, add

svn commit: r281526 - in head/sys: arm64/include boot boot/arm64 boot/arm64/libarm64 boot/common boot/efi boot/efi/boot1 boot/efi/include/arm64 boot/efi/loader boot/efi/loader/arch/arm64

2015-04-14 Thread Andrew Turner
Author: andrew Date: Tue Apr 14 13:55:01 2015 New Revision: 281526 URL: https://svnweb.freebsd.org/changeset/base/281526 Log: Add support for arm64 to loader.efi and boot1.efi Reviewed by: emaste Sponsored by: The FreeBSD Foundation Added: head/sys/arm64/include/psl.h (contents,

Re: svn commit: r281526 - in head/sys: arm64/include boot boot/arm64 boot/arm64/libarm64 boot/common boot/efi boot/efi/boot1 boot/efi/include/arm64 boot/efi/loader boot/efi/loader/arch/arm64

2015-04-14 Thread Andrew Turner
On Tue, 14 Apr 2015 13:55:02 + (UTC) Andrew Turner and...@freebsd.org wrote: Author: andrew Date: Tue Apr 14 13:55:01 2015 New Revision: 281526 URL: https://svnweb.freebsd.org/changeset/base/281526 Log: Add support for arm64 to loader.efi and boot1.efi Reviewed by:

svn commit: r281527 - in head/sys/boot: . efi/loader/arch/arm

2015-04-14 Thread Andrew Turner
Author: andrew Date: Tue Apr 14 14:15:14 2015 New Revision: 281527 URL: https://svnweb.freebsd.org/changeset/base/281527 Log: * Remove the wfi when the efi loader returns, it's unneeded and is not available on older designs. * Enable the efi loader on arm Modified:

svn commit: r281536 - head/sys/netpfil/pf

2015-04-14 Thread Kristof Provost
Author: kp Date: Tue Apr 14 19:07:37 2015 New Revision: 281536 URL: https://svnweb.freebsd.org/changeset/base/281536 Log: pf: Fix forwarding detection If the direction is not PF_OUT we can never be forwarding. Some input packets have rcvif != ifp (looped back packets), which lead us to

svn commit: r281537 - head/sys/dev/vt

2015-04-14 Thread Ed Maste
Author: emaste Date: Tue Apr 14 19:18:34 2015 New Revision: 281537 URL: https://svnweb.freebsd.org/changeset/base/281537 Log: Increase vt font limits to allow use of GNU Unifont PR: 199438 Submitted by: Ting-Wei Lan lant...@gmail.com MFC after:1 week Sponsored by: The