svn commit: r295356 - in head/sys/boot: common efi/boot1

2016-02-06 Thread Steven Hartland
Author: smh Date: Sat Feb 6 22:01:25 2016 New Revision: 295356 URL: https://svnweb.freebsd.org/changeset/base/295356 Log: Fix EFI platform build failures With warnings now enabled some plaforms where failing due to warnings. * Fix st_size printed as a size_t when its actually an off_t.

Re: svn commit: r294981 - in stable/10/sys/boot: common efi efi/boot1 efi/include efi/libefi efi/loader efi/loader/arch/amd64 fdt i386/libi386

2016-02-06 Thread Steven Hartland
After waiting 6 1/2 hours for a tinderbox build the fix for this is in r295356. I'm now kicking off a stable/10 tinderbox with this + ia64 (stable/10) fix. I'll know by tomorrow morning, apologies for the breakage. Regards Steve On 05/02/2016 21:22, NGie Cooper wrote: On Jan 28,

svn commit: r295355 - head/sys/fs/msdosfs

2016-02-06 Thread Pedro F. Giffuni
Author: pfg Date: Sat Feb 6 21:54:02 2016 New Revision: 295355 URL: https://svnweb.freebsd.org/changeset/base/295355 Log: msdosfs_rename: Unused value Assigned value to pmp, is immediatedly overwritten before it can be used. CID: 1304892 Modified:

svn commit: r295357 - head/sys/boot/zfs

2016-02-06 Thread Allan Jude
Author: allanjude Date: Sun Feb 7 00:49:15 2016 New Revision: 295357 URL: https://svnweb.freebsd.org/changeset/base/295357 Log: Do not set vfs.root.mountfrom unnecessarily This causes boot from external media (installer USB image) to mount / from the default ZFS BE, rather than the USB

Re: svn commit: r295357 - head/sys/boot/zfs

2016-02-06 Thread Warner Losh
On Sat, Feb 6, 2016 at 5:49 PM, Allan Jude wrote: > Author: allanjude > Date: Sun Feb 7 00:49:15 2016 > New Revision: 295357 > URL: https://svnweb.freebsd.org/changeset/base/295357 > > Log: > Do not set vfs.root.mountfrom unnecessarily > > This causes boot from

svn commit: r295348 - head/sys/cddl/dev/fbt/arm

2016-02-06 Thread Michal Meloun
Author: mmel Date: Sat Feb 6 11:16:15 2016 New Revision: 295348 URL: https://svnweb.freebsd.org/changeset/base/295348 Log: ARM: Rename remaining ARMv4 specific function in DTrace code. I missed it in r295319. Pointed by: tuexen Modified: head/sys/cddl/dev/fbt/arm/fbt_isa.c Modified:

svn commit: r295352 - head/sys/dev/hwpmc

2016-02-06 Thread Konstantin Belousov
Author: kib Date: Sat Feb 6 15:39:04 2016 New Revision: 295352 URL: https://svnweb.freebsd.org/changeset/base/295352 Log: Do not call vn_fullpath(9) (through the pmc_getfilename() wrapper) when its result is immediately ignored, i.e. for kernel processes forked from the user process. Do

svn commit: r295354 - stable/9/sys/fs/ext2fs

2016-02-06 Thread Pedro F. Giffuni
Author: pfg Date: Sat Feb 6 17:10:46 2016 New Revision: 295354 URL: https://svnweb.freebsd.org/changeset/base/295354 Log: MFC r295209; Revert r294695; passthrough any extra timestamps to the dinode struct. The original ext2fs change worked fine on disks formated with default values,

svn commit: r295353 - stable/10/sys/fs/ext2fs

2016-02-06 Thread Pedro F. Giffuni
Author: pfg Date: Sat Feb 6 16:58:56 2016 New Revision: 295353 URL: https://svnweb.freebsd.org/changeset/base/295353 Log: MFC r295209; Revert r294695; passthrough any extra timestamps to the dinode struct. The original ext2fs change worked fine on disks formated with default values,

svn commit: r295359 - head/sys/fs/fdescfs

2016-02-06 Thread Pedro F. Giffuni
Author: pfg Date: Sun Feb 7 01:09:38 2016 New Revision: 295359 URL: https://svnweb.freebsd.org/changeset/base/295359 Log: fdesc_setattr: unitialized pointer read CID: 1018688 Modified: head/sys/fs/fdescfs/fdesc_vnops.c Modified: head/sys/fs/fdescfs/fdesc_vnops.c

Re: svn commit: r295359 - head/sys/fs/fdescfs

2016-02-06 Thread Bruce Evans
On Sun, 7 Feb 2016, Pedro F. Giffuni wrote: Log: fdesc_setattr: unitialized pointer read CID: 1018688 Bug in Coverity. Modified: head/sys/fs/fdescfs/fdesc_vnops.c == --- head/sys/fs/fdescfs/fdesc_vnops.c Sun

svn commit: r295361 - in vendor/NetBSD/libedit/2016-01-16: . readline

2016-02-06 Thread Pedro F. Giffuni
Author: pfg Date: Sun Feb 7 01:45:24 2016 New Revision: 295361 URL: https://svnweb.freebsd.org/changeset/base/295361 Log: Tag import of libedit 2016-01-16. Added: vendor/NetBSD/libedit/2016-01-16/ - copied from r295359, vendor/NetBSD/libedit/dist/ Replaced:

svn commit: r295363 - in head/tools/tools/ath: athaggrstats athdebug athradar athratestats athspectral athstats

2016-02-06 Thread Adrian Chadd
Author: adrian Date: Sun Feb 7 04:28:03 2016 New Revision: 295363 URL: https://svnweb.freebsd.org/changeset/base/295363 Log: Remove the hard-coded 'ath0' strings and use ATH_DEFAULT. Remove the duplicate ATH_DEFAULT fields. The build bits should be including ../Makefile.inc as

Re: svn commit: r295362 - head/sys/fs/cd9660

2016-02-06 Thread Bruce Evans
On Sun, 7 Feb 2016, Pedro F. Giffuni wrote: Log: cd9660: Drop an unnecessary check for NULL. This was unnecessary and also confused Coverity. Confirmed on: NetBSD CID: 978558 This leaves many similar bugs unfixed nearby. One is a null pointer panic, not just an unnecessary

svn commit: r295358 - head/sys/kern

2016-02-06 Thread Kirk McKusick
Author: mckusick Date: Sun Feb 7 01:04:47 2016 New Revision: 295358 URL: https://svnweb.freebsd.org/changeset/base/295358 Log: Clarify a comment in kern_openat() about the use of falloc_noinstall(). Suggested by: Steve Jacobson Modified: head/sys/kern/vfs_syscalls.c Modified:

Re: svn commit: r295357 - head/sys/boot/zfs

2016-02-06 Thread Allan Jude
On 2016-02-06 19:55, Warner Losh wrote: > > > On Sat, Feb 6, 2016 at 5:49 PM, Allan Jude > wrote: > > Author: allanjude > Date: Sun Feb 7 00:49:15 2016 > New Revision: 295357 > URL:

svn commit: r295360 - in vendor/NetBSD/libedit/dist: . readline

2016-02-06 Thread Pedro F. Giffuni
Author: pfg Date: Sun Feb 7 01:38:50 2016 New Revision: 295360 URL: https://svnweb.freebsd.org/changeset/base/295360 Log: Import libedit 2016-01-16 Obtained from:NetBSD Modified: vendor/NetBSD/libedit/dist/Makefile vendor/NetBSD/libedit/dist/chartype.c

svn commit: r295362 - head/sys/fs/cd9660

2016-02-06 Thread Pedro F. Giffuni
Author: pfg Date: Sun Feb 7 03:48:40 2016 New Revision: 295362 URL: https://svnweb.freebsd.org/changeset/base/295362 Log: cd9660: Drop an unnecessary check for NULL. This was unnecessary and also confused Coverity. Confirmed on: NetBSD CID: 978558 Modified:

svn commit: r295347 - head/sys/kern

2016-02-06 Thread Mateusz Guzik
Author: mjg Date: Sat Feb 6 09:01:03 2016 New Revision: 295347 URL: https://svnweb.freebsd.org/changeset/base/295347 Log: fork: ansify sys_pdfork No functional changes. Modified: head/sys/kern/kern_fork.c Modified: head/sys/kern/kern_fork.c

Re: svn commit: r294560 - head/etc/rc.d

2016-02-06 Thread Dag-Erling Smørgrav
Bryan Drewery writes: > I think perhaps you should also remove these as having default paths in > the .c as well and require they be enabled in the config. Otherwise a > warning is given: > > Feb 4 15:25:22 VM sshd[874]: error: Could not load host key: >

svn commit: r295346 - stable/10/sys/conf

2016-02-06 Thread Hans Petter Selasky
Author: hselasky Date: Sat Feb 6 08:58:10 2016 New Revision: 295346 URL: https://svnweb.freebsd.org/changeset/base/295346 Log: MFC r294915: Fix generation of dependency rules for the LinuxKPI, the MLX5 driver and all of OFED except MLX4[EN/IB]. Sponsored by: Mellanox Technologies

svn commit: r295350 - stable/10/lib/libc/string

2016-02-06 Thread Warren Block
Author: wblock (doc committer) Date: Sat Feb 6 14:03:31 2016 New Revision: 295350 URL: https://svnweb.freebsd.org/changeset/base/295350 Log: MFC r294597: Add a standards compliance note for strtok_r Approved by: re (marius@) Modified: stable/10/lib/libc/string/strtok.3 Directory