FreeBSD_HEAD_i386 - Build #4695 - Fixed

2017-01-19 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4695 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4695/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4695/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4695/console

Change summaries:

312428 by kib:
Refcount tmpfs nodes and mount structures.

On dotdot lookup and fhtovp operations, it is possible for the file
represented by tmpfs node to be removed after the thread calculated
the pointer.  In this case, tmpfs_alloc_vp() accesses freed memory.

Introduce the reference count on the nodes.  The allnodes list from
tmpfs mount owns 1 reference, and threads performing unlocked
operations on the node, add one transient reference.  Similarly, since
struct tmpfs_mount maintains the list where nodes are enlisted,
refcount it by one reference from struct mount and one reference from
each node on the list.  Both nodes and tmpfs_mounts are removed when
refcount goes to zero.

Note that this means that nodes and tmpfs_mounts might survive some
time after the node is deleted or tmpfs_unmount() finished.  The
tmpfs_alloc_vp() in these cases returns error either due to node
removal (tn_nlinks == 0) or because of insmntque1(9) error.

Tested by:  pho (as part of larger patch)
Sponsored by:   The FreeBSD Foundation
MFC after:  2 weeks

312427 by erj:
e1000: Add support for Kaby Lake generation i219 (4) and i219 (5) devices

MFC after:  1 week
Sponsored by:   Intel Corporation

312426 by avg:
fix a thread preemption regression in schedulers introduced in r270423

Commit r270423 fixed a regression in sched_yield() that was introduced
in earlier changes.  Unfortunately, at the same time it introduced an
new regression.  The problem is that SWT_RELINQUISH (6), like all other
SWT_* constants and unlike SW_* flags, is not a bit flag.  So, (flags &
SWT_RELINQUISH) is true in cases where that was not really indended,
for example, with SWT_OWEPREEMPT (2) and SWT_REMOTEPREEMPT (11).

A straight forward fix would be to use (flags & SW_TYPE_MASK) ==
SWT_RELINQUISH, but my impression is that the switch types are designed
mostly for gathering statistics, not for influencing scheduling
decisions.

So, I decided that it would be better to check for SW_PREEMPT flag
instead.  That's also the same flag that was checked before r239157.
I double-checked how that flag is used and I am confident that the flag
is set only in the places where we really have the preemption:
- critical_exit + td_owepreempt
- sched_preempt in the ULE scheduler
- sched_preempt in the 4BSD scheduler

Reviewed by:kib, mav
MFC after:  4 days
Sponsored by:   Panzura
Differential Revision: https://reviews.freebsd.org/D9230

312425 by kib:
Make tmpfs directory cursor available outside tmpfs_subr.c.

Tested by:  pho
Sponsored by:   The FreeBSD Foundation
MFC after:  1 week

312424 by hselasky:
Fix problem with suspend and resume when using Skylake chipsets. Make
sure the XHCI controller is reset after halting it. The problem is
clearly a BIOS bug as the suspend and resume is failing without
loading the XHCI driver. The same happens when using Linux and the
XHCI driver is not loaded.

Submitted by:   Yanko Yankulov 
PR: 216261
MFC after:  1 week

312423 by kib:
Refresh tmpfs(5) man page.

Provide more useful explanation of features and quirks.

Reviewed by:emaste, vangyzen
Sponsored by:   The FreeBSD Foundation
MFC after:  1 week
Differential revision:  https://reviews.freebsd.org/D9211

312422 by ngie:
Only conditionally add in hyperv support if we're building amd64

This unbreaks the build because the assembly is written for x64.

MFC after:  3 weeks
X-MFC with: r312418
Pointyhat to:   ngie
Reported by:Jenkins (i386 job)
Sponsored by:   Dell EMC Isilon

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4694 - Failure

2017-01-19 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4694 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4694/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4694/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4694/console

Change summaries:

312419 by ngie:
Add manpage for mlx4ib(4)

This manpage isn't differentiated from mlx4en except where necessary,
replacing eth/ETH with ib/IB.

Eventually the manpages will be split and the common bits be placed
in a manpage named "mlx4.4".

MFC after:  3 weeks
Reviewed by:hselasky
Sponsored by:   Dell EMC Isilon
Differential Revision:  https://reviews.freebsd.org/D9241

312418 by ngie:
Conditionalize hyperv support in gettimeofday(2) based on MK_HYPERV

The effect at runtime is negligible as the hyperv timer isn't available
except when hyperv is loaded.

This is a prerequisite for conditionalizing the header build/install out
of the build

MFC after:  3 weeks
Reviewed by:sephe
Sponsored by:   Dell EMC Isilon
Differential Revision:  https://reviews.freebsd.org/D9242

312417 by asomers:
Fix build of devd with GCC 4.2

Reported by:olivier
Pointy-hat-to:  asomers
MFC after:  27 days
X-MFC-with: 312395
Sponsored by:   Spectra Logic Corp

312416 by cem:
ffs_vnops: Simplify extattr access

As suggested in r167010, use the structure type and macros to access and
modify UFS2 extended attributes.  Add assertions that pointers are
aligned in places where we now access the data through a structure
pointer, instead of character-by-character.

PR: 216127
Reported by:dewayne at heuristicsystems.com.au
Reviewed by:kib@
Sponsored by:   Dell EMC Isilon
Differential Revision:  https://reviews.freebsd.org/D9225

312414 by kib:
Rename tmpfs_mount member allnode_lock to include namespace prefix.

Sponsored by:   The FreeBSD Foundation
MFC after:  1 week



The end of the build log:

[...truncated 30778 lines...]
--- _sigtimedwait.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -O2 -pipe   -I/usr/src/lib/libc/include 
-I/usr/src/lib/libc/../../include -I/usr/src/lib/libc/i386 -DNLS  
-D__DBINTERFACE_PRIVATE -I/usr/src/lib/libc/../../contrib/gdtoa 
-I/usr/src/lib/libc/../../contrib/libc-vis -DINET6 -I/usr/obj/usr/src/lib/libc 
-I/usr/src/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE 
-I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../contrib/jemalloc/include 
-I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/usr/src/lib/libc/stdtime 
-I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN 
-I/usr/src/lib/libc/rpc -DWANT_HYPERV -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD 
 -MF.depend._sigtimedwait.o -MT_sigtimedwait.o -std=gnu99 
-fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k 
-Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value 
-Wno-parentheses-
 equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef 
-Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter  -Qunused-arguments  
-I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I/usr/src/lib/msun/x86 
-I/usr/src/lib/msun/src   -c _sigtimedwait.S -o _sigtimedwait.o
--- _sigwait.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -O2 -pipe   -I/usr/src/lib/libc/include 
-I/usr/src/lib/libc/../../include -I/usr/src/lib/libc/i386 -DNLS  
-D__DBINTERFACE_PRIVATE -I/usr/src/lib/libc/../../contrib/gdtoa 
-I/usr/src/lib/libc/../../contrib/libc-vis -DINET6 -I/usr/obj/usr/src/lib/libc 
-I/usr/src/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE 
-I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../contrib/jemalloc/include 
-I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/usr/src/lib/libc/stdtime 
-I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN 
-I/usr/src/lib/libc/rpc -DWANT_HYPERV -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD 
 -MF.depend._sigwait.o -MT_sigwait.o -std=gnu99 -fstack-protector-strong 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized 
-Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value 
-Wno-parentheses-equality -
 Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch 
-Wno-switch-enum -Wno-knr-promoted-parameter  -Qunused-arguments  
-I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I/usr/src/lib/msun/x86 
-I/usr/src/lib/msun/src   -c _sigwait.S -o _sigwait.o
--- _sigwaitinfo.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -O2 -pipe   -I/usr/src/lib/libc/include 
-I/usr/src/lib/libc/../../include -I/usr/src/lib/libc/i386 -DNLS  
-D__DBINTERFACE_PRIVATE -I/usr/src/lib/libc/../../contrib/gdtoa 
-I/usr/src/lib/libc/../../contrib/libc-vis -DINET6 -I/usr/obj/usr/src/lib/libc 
-I/usr/src/lib/l

FreeBSD_HEAD_i386 - Build #4654 - Fixed

2017-01-13 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4654 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4654/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4654/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4654/console

Change summaries:

312107 by cem:
Follow-up to r312103:

Revert r310995 as well.

312105 by ngie:
Conditionalize libwrap support into inetd based on MK_TCP_WRAPPERS

This will allow inetd to stand by itself without libwrap.

MFC after:  2 weeks
Relnotes:   yes
Reviewed by:hrs (earlier version)
Sponsored by:   Dell EMC Isilon
Differential Revision:  https://reviews.freebsd.org/D9056

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4653 - Failure

2017-01-13 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4653 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4653/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4653/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4653/console

Change summaries:

312104 by cem:
Fix broken fstyp exfat testcase

Introduced in r312010.

It helps to read the documentation before trying to test something.

312103 by cem:
Revert r310994

Don't implement some terrible hack on a test by test basis.  The
framework fix is straightforward and can be chased up in the original
bug.

Reviewed by:ngie ("be my guest")

312102 by ngie:
Note that sys/types.h is required on FreeBSD for kqueue(2), unlike NetBSD

MFC after:  12 days
X-MFC with: r305358
Sponsored by:   Dell EMC Isilon



The end of the build log:

[...truncated 122248 lines...]
--- all_subdir_tests/sys/sys ---
===> tests/sys/sys (all)
--- all_subdir_usr.bin ---
--- tuklib_exit.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -DHAVE_CONFIG_H  
-I/usr/src/usr.bin/xz/../../lib/liblzma  
-I/usr/src/usr.bin/xz/../../contrib/xz/src/common   -g -MD  
-MF.depend.tuklib_exit.o -MTtuklib_exit.o -std=gnu99 -fstack-protector-strong 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value 
-Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion 
-Wno-unused-local-typedef  -Qunused-arguments  -c 
/usr/src/usr.bin/xz/../../contrib/xz/src/common/tuklib_exit.c -o tuklib_exit.o
--- all_subdir_tests ---
--- bitstring_test ---
(cd /usr/src/tests/sys/sys &&  DEPENDFILE=.depend.bitstring_test  NO_SUBDIR=1 
/usr/obj/usr/src/make.i386/bmake -f /usr/src/tests/sys/sys/Makefile 
_RECURSING_PROGS=t  PROG=bitstring_test )
--- all_subdir_usr.sbin ---
--- apmd.full ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -O2 -pipe -I/usr/src/usr.sbin/apmd -g -std=gnu99 
-fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value 
-Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion 
-Wno-unused-local-typedef -Qunused-arguments  -o apmd.full apmd.o apmdlex.o 
apmdparse.o   -ll
--- all_subdir_tests ---
--- .depend.bitstring_test ---
echo bitstring_test.full: /usr/obj/usr/src/tmp/usr/lib/libc.a 
/usr/obj/usr/src/tmp/usr/lib/libprivateatf-c.a >> .depend.bitstring_test
--- bitstring_test.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe   -g -MD  
-MF.depend.bitstring_test.bitstring_test.o -MTbitstring_test.o -std=gnu99 
-fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter 
-Wcast-align -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable  -Qunused-arguments  -c 
/usr/src/tests/sys/sys/bitstring_test.c -o bitstring_test.o
--- all_subdir_usr.sbin ---
--- apmd.8.gz ---
gzip -cn /usr/src/usr.sbin/apmd/apmd.8 > apmd.8.gz
--- all_subdir_usr.bin ---
--- tuklib_cpucores.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -DHAVE_CONFIG_H  
-I/usr/src/usr.bin/xz/../../lib/liblzma  
-I/usr/src/usr.bin/xz/../../contrib/xz/src/common   -g -MD  
-MF.depend.tuklib_cpucores.o -MTtuklib_cpucores.o -std=gnu99 
-fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value 
-Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion 
-Wno-unused-local-typedef  -Qunused-arguments  -c 
/usr/src/usr.bin/xz/../../contrib/xz/src/common/tuklib_cpucores.c -o 
tuklib_cpucores.o
--- all_subdir_usr.sbin ---
--- apmd.debug ---
objcopy --only-keep-debug apmd.full apmd.debug
--- apmd ---
objcopy --strip-debug --add-gnu-debuglink=apmd.debug  apmd.full apmd
--- all_subdir_usr.sbin/arp ---
===> usr.sbin/arp (all)
--- .depend ---
echo arp.full: /usr/obj/usr/src/tmp/usr/lib/libc.a  >> .depend
--- arp.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe   -g -MD  -MF.depend.arp.o -MTarp.o 
-std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall 

FreeBSD_HEAD_amd64_gcc - Build #1761 - Fixed

2017-01-12 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1761 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1761/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1761/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1761/console

Change summaries:

311974 by sobomax:
Fix slight type mismatch between so_options defined in sys/socketvar.h
and tw_so_options defined here which is supposed to be a copy of the
former (short vs u_short respectively).

Switch tw_so_options to be "signed short" to match the type of the field
it's inherited from.

311972 by ngie:
Add __BIT and __BITS macros from NetBSD to help support new testcases

MFC after:  1 week

311971 by mav:
Report random flash storage as non-rotating to GEOM_DISK.

While doing it, introduce respective constants in geom_disk.h.

MFC after:  1 week

311969 by ngie:
Remove __HAVE_LONG_DOUBLE #define from t_strtod.c and place it in Makefile

This is to enable support in other testcases

Inspired by lib/msun/tests/Makefile .

MFC after:  1 week

311968 by ngie:
Fix lib/libc/sys/access_test after r311925

sys/param.h needs to be #included in order for __FreeBSD_version to be checked

MFC after:  13 days

311964 by cem:
g_raid: Prevent tasters from attempting excessively large reads

Some g_raid tasters attempt metadata reads in multiples of the provider
sectorsize.  Reads larger than MAXPHYS are invalid, so detect and abort
in such situations.

Spiritually similar to r217305 / PR 147851.

PR: 214721
Sponsored by:   Dell EMC Isilon

311963 by rpokala:
Remove writability requirement for single-mbuf, contiguous-range
m_pulldown()

m_pulldown() only needs to determine if a mbuf is writable if it is going to
copy data into the data region of an existing mbuf. It does this to create a
contiguous data region in a single mbuf from multiple mbufs in the chain. If
the requested memory region is already contiguous and nothing needs to
change, the mbuf does not need to be writeable.

Submitted by:   Brian Mueller 
Reviewed by:bz
MFC after:  1 week
Sponsored by:   Panasas
Differential Revision:  https://reviews.freebsd.org/D9053

311962 by arybchik:
sfxge(4): stats refresh in SW should depend on HW update period

The period should be taken into account by the function which
refreshes driver stats.

Reviewed by:philip
Sponsored by:   Solarflare Communications, Inc.
MFC after:  2 days
Differential Revision:  https://reviews.freebsd.org/D9130

311961 by arybchik:
sfxge(4): do not ignore requested MAC stats update period

Firmware version which takes PERIOD_MS parameter into account is
required.

Reviewed by:philip
Sponsored by:   Solarflare Communications, Inc.
MFC after:  2 days
Differential Revision:  https://reviews.freebsd.org/D9129

311958 by scottl:
Print out the number of queues/MSIx vectors.

Sponsored by:   Netflix

311954 by ian:
Rework tty_drain() to poll the hardware for completion, and restore
drain timeout handling to historical freebsd behavior.

The primary reason for these changes is the need to have tty_drain() call
ttydevsw_busy() at some reasonable sub-second rate, to poll hardware that
doesn't signal an interrupt when the transmit shift register becomes empty
(which includes virtually all USB serial hardware).  Such hardware hangs
in a ttyout wait, because it never gets an opportunity to trigger a wakeup
from the sleep in tty_drain() by calling ttydisc_getc() again, after
handing the last of the buffered data to the hardware.

While researching the history of changes to tty_drain() I stumbled across
some email describing the historical BSD behavior of tcdrain() and close()
on serial ports, and the ability of comcontrol(1) to control timeout
behavior.  Using that and some advice from Bruce Evans as a guide, I've
put together these changes to implement the hardware polling and restore
the historical timeout behaviors...

 - tty_drain() now calls ttydevsw_busy() in a loop at 10 Hz to accomodate
   hardware that requires polling for busy state.

 - The "new historical" behavior for draining during close(2) is retained:
   the drain timeout is "1 second without making any progress".  When the
   1-second timeout expires, if the count of bytes remaining in the tty
   layer buffer is smaller than last time, the timeout is extended for
   another second.  Unfortunately, the same logic cannot be extended all
   the way down to the hardware, because the interface to that layer is a
   simple busy/not-busy indication.

 - Due to the previous point, an application that needs a guarantee that
   all data has been transmitted must use TIOCDRAIN/tcdrain(3) before
   calling close(2).

 - The historical behavior of honoring the drainwait setting for TIOCDRAIN
   (used by tcdrain(3)) is restored.

 - The historical kern.drainwait sysctl to control the global default
   drainwait time is restored, but is now named kern.tty_drainwait.

 - The historical def

FreeBSD_HEAD_i386 - Build #4628 - Fixed

2017-01-11 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4628 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4628/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4628/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4628/console

Change summaries:

311925 by ngie:
Import testcase updates with code contributed back to NetBSD

This also (inadvertently) contains an update to
contrib/netbsd-tests/lib/libc/sys/t_wait.c (new testcases).

MFC after:  2 weeks
In collaboration with:  chris...@netbsd.org

311924 by ngie:
Fix whitespace in comment

MFC after:  3 days

311923 by ngie:
Add acpi_if.h and opt_acpi.h to Makefile to unbreak "make depend" with
sys/modules/sdhci_acpi

MFC after:  6 days
X-MFC with: r311911
Reported by:Jenkins

311919 by ngie:
Partially revert r311236

There's no sense in trying to close a file descriptor from the negative cases
with unlink_test; it's best to ignore these cases.

The mkfifo case does make sense to keep though.

MFC after:  3 days

311918 by hrs:
Add more #ifdef INET and INET6.

311917 by ngie:
Fix up r311227

Check for creat returning a value != -1, not a non-zero value

MFC after:  3 days
Pointyhat to:   ngie
Reported by:Coverity
CID:1368366

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4627 - Failure

2017-01-11 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4627 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4627/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4627/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4627/console

Change summaries:

311914 by delphij:
MFV r311913:

Fix multiple OpenSSH vulnerabilities.

Submitted by:   des
Approved by:so



The end of the build log:

[...truncated 189446 lines...]
--- all_subdir_scc ---
--- scc_if.c ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/scc/scc_if.m -c
--- bus_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h
--- device_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h
--- ofw_bus_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/ofw/ofw_bus_if.m -h
--- all_subdir_rtwn ---
--- r88e_rom.o ---
ctfconvert -L VERSION -g r88e_rom.o
--- all_subdir_scc ---
--- serdev_if.c ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/serdev_if.m -c
--- linker_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/linker_if.m -h
--- modules-all ---
--- scc_if.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror 
-D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include 
/usr/obj/usr/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g 
-I/usr/obj/usr/src/sys/GENERIC  -MD  -MF.depend.scc_if.o -MTscc_if.o -mno-mmx 
-mno-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall 
-Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes 
-Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign 
-D__printf__=__freebsd_kprintf__ -Wmissing-include-dirs 
-fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare 
-Wno-error-empty-body -Wno-error-parentheses-equality 
-Wno-error-unused-function -Wno-error-pointer-sign 
-Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=iso9899:1999 -c 
scc_if.c -o scc_if.o
--- all_subdir_rtwn ---
--- r88e_rx.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror 
-D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include 
/usr/obj/usr/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g 
-I/usr/obj/usr/src/sys/GENERIC  -MD  -MF.depend.r88e_rx.o -MTr88e_rx.o -mno-mmx 
-mno-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall 
-Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes 
-Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign 
-D__printf__=__freebsd_kprintf__ -Wmissing-include-dirs 
-fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare 
-Wno-error-empty-body -Wno-error-parentheses-equality 
-Wno-error-unused-function -Wno-error-pointer-sign 
-Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=iso9899:1999 -c 
/usr/src/sys/modules/rtwn/../../dev/rtwn/rtl8188e/r88e_rx.c -o r88e_rx.o
--- all_subdir_scsi_low ---
===> scsi_low (all)
--- machine ---
machine -> /usr/src/sys/i386/include
--- x86 ---
x86 -> /usr/src/sys/x86/include
--- opt_ddb.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_ddb.h opt_ddb.h
--- opt_scsi.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_scsi.h opt_scsi.h
--- opt_cam.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_cam.h opt_cam.h
--- bus_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h
--- device_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h
--- all_subdir_rtwn_usb ---
--- rtwn_usb_attach.o ---
ctfconvert -L VERSION -g rtwn_usb_attach.o
--- all_subdir_scsi_low ---
--- scsi_low.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror 
-D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include 
/usr/obj/usr/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g 
-I/usr/obj/usr/src/sys/GENERIC  -MD  -MF.depend.scsi_low.o -MTscsi_low.o 
-mno-mmx -mno-sse -msoft-float -ffreestanding -fwrapv -fstack-protector 
-gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef 
-Wno-pointer-sign -D__printf__=__freebsd_kprintf__ -Wmissing-include-dirs 
-fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare 
-Wno-error-empty-body -Wno-error-parentheses-equality 
-Wno-error-unused-function -Wno-error-pointer-sign 
-Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=iso9899:1999 -c 
/usr/src/sys/modules/scsi_low/../../cam/scsi/scsi_low.c -o scsi_low.o
--- all_subdir_scc ---
ctfconvert -L VERSION -g scc_if.o
--- scc_dev_sab82532.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/sr

FreeBSD_HEAD_i386 - Build #4602 - Fixed

2017-01-08 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4602 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4602/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4602/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4602/console

Change summaries:

311678 by adrian:
[net80211] add roaming parameters for 11ac.

These are mostly placeholders for now.

311677 by adrian:
[net80211] use the correct freq2 field when populating VHT operation element.

Whilst here, leave a TODO comment so I revisit this routine in the context
of hostap operation probe requests for IBSS/mesh.

311675 by cem:
iso_rrip.h: Hide kernel definitions from makefs(8)

Reported by:O. Hartmann 

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4601 - Still Failing

2017-01-08 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4601 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4601/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4601/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4601/console

Change summaries:

311671 by cem:
libprocstat: Include cd9660 headers in the same order as the kernel

Fix userspace build after r311665.



The end of the build log:

[...truncated 124749 lines...]
--- all_subdir_usr.bin ---
--- test_option_nodump.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe 
-DPLATFORM_CONFIG_H=\"/usr/src/lib/libarchive/config_freebsd.h\" 
-I/usr/src/lib/libarchive -I/usr/obj/usr/src/usr.bin/tar/tests 
-I/usr/src/contrib/libarchive/tar -I/usr/src/contrib/libarchive/test_utils   -g 
-MD  -MF.depend.bsdtar_test.test_option_nodump.o -MTtest_option_nodump.o 
-std=gnu99 -fstack-protector-strong-Qunused-arguments  -c 
/usr/src/contrib/libarchive/tar/test/test_option_nodump.c -o 
test_option_nodump.o
--- all_subdir_lib ---
--- parse.po ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -pg  -O2 -pipe   -MD  -MF.depend.parse.po 
-MTparse.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign 
-Wmissing-variable-declarations -Wthread-safety -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c 
/usr/src/lib/libusbhid/parse.c -o parse.po
--- all_subdir_usr.bin ---
--- test_option_older_than.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe 
-DPLATFORM_CONFIG_H=\"/usr/src/lib/libarchive/config_freebsd.h\" 
-I/usr/src/lib/libarchive -I/usr/obj/usr/src/usr.bin/tar/tests 
-I/usr/src/contrib/libarchive/tar -I/usr/src/contrib/libarchive/test_utils   -g 
-MD  -MF.depend.bsdtar_test.test_option_older_than.o 
-MTtest_option_older_than.o -std=gnu99 -fstack-protector-strong
-Qunused-arguments  -c 
/usr/src/contrib/libarchive/tar/test/test_option_older_than.c -o 
test_option_older_than.o
--- all_subdir_usr.sbin ---
--- ef_obj.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe   -g -MD  -MF.depend.ef_obj.o 
-MTef_obj.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare 
-Wno-unused-value -Wno-parentheses-equality -Wno-unused-function 
-Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum 
-Wno-knr-promoted-parameter  -Qunused-arguments  -c 
/usr/src/usr.sbin/kldxref/ef_obj.c -o ef_obj.o
--- all_subdir_usr.bin ---
--- test_option_passphrase.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe 
-DPLATFORM_CONFIG_H=\"/usr/src/lib/libarchive/config_freebsd.h\" 
-I/usr/src/lib/libarchive -I/usr/obj/usr/src/usr.bin/tar/tests 
-I/usr/src/contrib/libarchive/tar -I/usr/src/contrib/libarchive/test_utils   -g 
-MD  -MF.depend.bsdtar_test.test_option_passphrase.o 
-MTtest_option_passphrase.o -std=gnu99 -fstack-protector-strong
-Qunused-arguments  -c 
/usr/src/contrib/libarchive/tar/test/test_option_passphrase.c -o 
test_option_passphrase.o
--- test_option_q.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe 
-DPLATFORM_CONFIG_H=\"/usr/src/lib/libarchive/config_freebsd.h\" 
-I/usr/src/lib/libarchive -I/usr/obj/usr/src/usr.bin/tar/tests 
-I/usr/src/contrib/libarchive/tar -I/usr/src/contrib/libarchive/test_utils   -g 
-MD  -MF.depend.bsdtar_test.test_option_q.o -MTtest_option_q.o -std=gnu99 
-fstack-protector-strong-Qunused-arguments  -c 
/usr/src/contrib/libarchive/tar/test/test_option_q.c -o test_option_q.o
--- all_subdir_lib ---
--- usage.po ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -pg  -O2 -pipe   -MD  -MF.depend.usage.po 
-MTusage.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign 
-Wmissing-variable-declarations -Wthread-safety -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c 
/usr/src/lib/libusbhid/usage.c -o usage.po

FreeBSD_HEAD_i386 - Build #4600 - Failure

2017-01-07 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4600 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4600/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4600/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4600/console

Change summaries:

311669 by cem:
chown/chgrp: Add SIGINFO handler

PR: 191884
Submitted by:   Dan McGregor 
Reviewed by:mjg@ (earlier version)

311668 by cem:
chmod: Add SIGINFO handler

PR: 191884
Submitted by:   Dan McGregor 
Reviewed by:mjg@ (earlier version)

311667 by cem:
Add some additional ACPI methods for DRM

Add AcpiGetDataFull and AcpiGetTableWithSize.

Submitted by:   Matt Macy

311666 by cem:
Do not truncate inode calculation from ISO9660 block offset

PR: 190655
Reported by:Thomas Schmitt 
Obtained from:  NetBSD sys/fs/cd9660/cd9660_node.c,r1.31

311665 by cem:
cd9660: Expand internal inum size to 64 bits

Inums in cd9660 refer to byte offsets on the media.  DVD and BD media
can have entries above 4GB, especially with multi-session images.

PR: 190655
Reported by:Thomas Schmitt 

311664 by cem:
mmc: Accept even lower voltage for Cherryview

And HP x2 210, per DragonFlyBSD 240bd9cd58f8259c12c14a8006837e698.

Submitted by:   Johannes Lundberg 
No objection:   gonzo@
Obtained from:  DragonFlyBSD



The end of the build log:

[...truncated 44913 lines...]
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe   
-I/usr/src/secure/lib/libcrypto/../../../crypto/openssl -DTERMIOS -DANSI_SOURCE 
-DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 
-DAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_PART_WORDS -DOPENSSL_BN_ASM_MONT 
-DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DRMD160_ASM -DSHA1_ASM 
-DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM 
-I/usr/obj/usr/src/secure/lib/libcrypto 
-I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto 
-I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1 
-I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp 
-I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes -MD  
-MF.depend.bio_ndef.pico -MTbio_ndef.pico -std=gnu89 -fstack-protector-strong 
-Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value 
-Wno-parentheses-eq
 uality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef 
-Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses  
-Qunused-arguments  -c 
/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1/bio_ndef.c -o 
bio_ndef.pico
--- kerberos5/lib/libwind__L ---
--- normalize_table.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe 
-I/usr/src/kerberos5/lib/libwind/../../../crypto/heimdal/lib/roken -I.   
-DHAVE_CONFIG_H -I/usr/src/kerberos5/lib/libwind/../../include -MD  
-MF.depend.normalize_table.o -MTnormalize_table.o -std=gnu99 
-fstack-protector-strong-Qunused-arguments  -c 
/usr/src/kerberos5/lib/libwind/../../../crypto/heimdal/lib/wind/normalize_table.c
 -o normalize_table.o
--- secure/lib/libcrypto__L ---
--- d2i_pr.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe   
-I/usr/src/secure/lib/libcrypto/../../../crypto/openssl -DTERMIOS -DANSI_SOURCE 
-DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 
-DAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_PART_WORDS -DOPENSSL_BN_ASM_MONT 
-DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DRMD160_ASM -DSHA1_ASM 
-DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM 
-I/usr/obj/usr/src/secure/lib/libcrypto 
-I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto 
-I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1 
-I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp 
-I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes -MD  
-MF.depend.d2i_pr.pico -MTd2i_pr.pico -std=gnu89 -fstack-protector-strong 
-Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value 
-Wno-parentheses-equali
 ty -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef 
-Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses  
-Qunused-arguments  -c 
/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1/d2i_pr.c -o 
d2i_pr.pico
--- d2i_pu.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe   
-I/usr/src/secure/lib/libcrypto/../../../crypto/openssl -DTERMIOS -DANSI_SOURCE 
-DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 
-DAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_PART_WORDS -DOPENSSL_BN_ASM_MONT 
-DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DR

FreeBSD_HEAD_i386 - Build #4589 - Fixed

2017-01-07 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4589 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4589/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4589/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4589/console

Change summaries:

311601 by ngie:
Move the mibII module up so uncommenting the bridge module works

Add a note about how module ordering and dependent modules

MFC after:  1 week

311585 by ngie:
Conditionalize building libwrap support into sshd

Only build libwrap support into sshd if MK_TCP_WRAPPERS != no

This will unbreak the build if libwrap has been removed from the system

MFC after:  2 weeks
PR: 210141
Submitted by:   kp...@protonmail.com
Differential Revision:  D9049

311584 by ngie:
Unbreak lib/libsysdecode after r311568 by decoding MSG_MORETOCOME flag
in msgflags

MFC after:  1 month
X-MFC with: r311568
Pointyhat to:   jhb
Reported by:cy
Submitted by:   Michael Butler 
Sponsored by:   Dell EMC Isilon

311583 by adrian:
[net80211] add syncflags methods for the VHT flags configuration.

I missed this in my last commit.  Pointy hat to me.

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4588 - Still Failing

2017-01-06 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4588 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4588/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4588/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4588/console

Change summaries:

311581 by allanjude:
Capsicum: add capability mode to users binary

Submitted by:   Tyler Littlefield 
Reviewed by:cem, oshogbo
Differential Revision:  https://reviews.freebsd.org/D9046



The end of the build log:

[...truncated 55598 lines...]
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I. -I/usr/src/lib/libthread_db   -MD 
 -MF.depend.libpthread_md.o -MTlibpthread_md.o -std=gnu99 
-fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter 
-Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls 
-Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations 
-Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable 
 -Qunused-arguments  -c /usr/src/lib/libthread_db/arch/i386/libpthread_md.c -o 
libpthread_md.o
--- all_subdir_lib/libstand ---
--- closeall.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/lib/libstand 
-DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY 
-I/usr/src/lib/libstand/../../contrib/zlib -ffreestanding -Wformat -mno-mmx 
-mno-sse -mno-avx -D_STANDALONE -msoft-float -MD  -MF.depend.closeall.o 
-MTcloseall.o -std=gnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value 
-Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion 
-Wno-unused-local-typedef -Wno-switch -Wno-switch-enum 
-Wno-knr-promoted-parameter -Wno-parentheses  -Qunused-arguments  -c 
/usr/src/lib/libstand/closeall.c -o closeall.o
--- all_subdir_lib/libthread_db ---
--- libpthread_db.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I. -I/usr/src/lib/libthread_db   -MD 
 -MF.depend.libpthread_db.o -MTlibpthread_db.o -std=gnu99 
-fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter 
-Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls 
-Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations 
-Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable 
 -Qunused-arguments  -c /usr/src/lib/libthread_db/libpthread_db.c -o 
libpthread_db.o
--- all_subdir_lib/libucl ---
===> lib/libucl (all)
--- .depend ---
echo libprivateucl.so.1.full: /usr/obj/usr/src/tmp/usr/lib/libm.a >> .depend
--- ucl_emitter_streamline.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/libucl/include  
-I/usr/src/contrib/libucl/src  -I/usr/src/contrib/libucl/uthash  
-I/usr/src/contrib/libucl/klib   -MD  -MF.depend.ucl_emitter_streamline.o 
-MTucl_emitter_streamline.o -std=gnu99 -fstack-protector-strong 
-Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value 
-Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion 
-Wno-unused-local-typedef -Wno-switch -Wno-switch-enum 
-Wno-knr-promoted-parameter -Wno-parentheses  -Qunused-arguments  -c 
/usr/src/contrib/libucl/src/ucl_emitter_streamline.c -o ucl_emitter_streamline.o
--- all_subdir_lib/libstand ---
--- dev.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/lib/libstand 
-DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY 
-I/usr/src/lib/libstand/../../contrib/zlib -ffreestanding -Wformat -mno-mmx 
-mno-sse -mno-avx -D_STANDALONE -msoft-float -MD  -MF.depend.dev.o -MTdev.o 
-std=gnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value 
-Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion 
-Wno-unused-local-typedef -Wno-switch -Wno-switch-enum 
-Wno-knr-promoted-parameter -Wno-parentheses  -Qunused-arguments  -c 
/usr/src/lib/libstand/dev.c -o dev.o
--- ioctl.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/lib/libstand 
-DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY 
-I/usr/src/lib/libstand/../../contrib/zlib -ffreestanding -Wformat -mno-mmx 
-mno-sse -mno-avx -D_STANDALONE -msoft-float -MD  -MF.depend.ioctl.o -MTioctl.o 
-std=gnu99 -Wno-pointer-sign -

FreeBSD_HEAD_i386 - Build #4587 - Still Failing

2017-01-06 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4587 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4587/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4587/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4587/console

Change summaries:

311580 by adrian:
[net80211] add some more bits.

311579 by adrian:
[ifconfig] add initial VHT (802.11ac) configuration and channel support to 
ifconfig.

This is very preliminary and mostly enough for me (with other patches)
to work on VHT support.

It adds:

* VHT20, VHT40 and VHT80 regulatory/band awareness
* VHT20, VHT40 and VHT80 channel configuration / population
* Parses vht channel specifications (eg ifconfig wlan0 create wlandev athp0 
wlanmode monitor channel 36:vht/80)
* Configuration of VHT, VHT40, VHT80, VHT80+80, VHT160 channel
  width (IEEE80211_FVHT_VHT* flags in net80211)

TODO:

* No VHT80+80 or VHT160 channels yet - I don't yet have hardware, and I'm
  not yet sure how to support/populate VHT80+80 channels.
* No, I won't update the manpage until this is "more done", lest someone
  tries using vht and gets upset with me.
* No, I won't commit the regulatory database I'm testing with, so you'll
  just end up with no VHT channels ever populated.  Which is good, as there
  isn't an 11ac driver in-tree yet to try it with.

311578 by adrian:
[net80211] add VHT ioctl parameters and driver capabilities

* Add the VHT capability element to the driver capabilities so ifconfig
  can see if VHT is available
* Add ioctl plumbing for enabling/disabling VHT and each of the VHT
  widths.

Note: this DOES change the ABI (the driver caps ioctl struct size, sigh)
so this will require a recompile of at least ifconfig.

311577 by adrian:
[lib80211] add VHT bands and channel flags.

This is preparation work for 11ac support.  The regulatory database
needs to know about VHT channel flags and 80MHz (and later 160MHz)
available channel bands.

Whilst here, add the 2GHz VHT band (which is a terrible, terrible vendor
extension that almost all vendors do) just in preparation, even though
I don't (yet) plan on supporting it.

311576 by adrian:
[net80211] add VHT IEs to scan elements.

In preparation for VHT station support, we need to store VHT IEs when
scanning so we can choose to upgrade to VHT.

This doesn't change the ABI - it just steals spare[] entries.



The end of the build log:

[...truncated 55668 lines...]
 ^
/usr/src/lib/libpcap/../../contrib/libpcap/bpf/net/bpf_filter.c:65:24: warning: 
macro expansion producing 'defined' has undefined behavior 
[-Wexpansion-to-defined]
/usr/src/lib/libpcap/../../contrib/libpcap/bpf/net/bpf_filter.c:64:35: note: 
expanded from macro 'SOLARIS'
#define SOLARIS (defined(sun) && (defined(__SVR4) || defined(__svr4__)))
  ^
/usr/src/lib/libpcap/../../contrib/libpcap/bpf/net/bpf_filter.c:65:24: warning: 
macro expansion producing 'defined' has undefined behavior 
[-Wexpansion-to-defined]
/usr/src/lib/libpcap/../../contrib/libpcap/bpf/net/bpf_filter.c:64:54: note: 
expanded from macro 'SOLARIS'
#define SOLARIS (defined(sun) && (defined(__SVR4) || defined(__svr4__)))
 ^
3 warnings generated.
--- bpf_image.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe   -DHAVE_CONFIG_H 
-Dyylval=pcapyylval -I/usr/src/lib/libpcap -I. -D_U_="__attribute__((unused))" 
-DHAVE_SNPRINTF -DHAVE_VSNPRINTF -DINET6 -DHAVE_NET_PFVAR_H 
-I/usr/src/lib/libpcap/../../contrib/libpcap -MD  -MF.depend.bpf_image.pico 
-MTbpf_image.pico -std=gnu99 -fstack-protector-strong -Wno-pointer-sign 
-Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable 
-Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality 
-Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch 
-Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses  
-Qunused-arguments  -c /usr/src/lib/libpcap/../../contrib/libpcap/bpf_image.c 
-o bpf_image.pico
--- all_subdir_lib/libstand ---
--- _infback.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/lib/libstand 
-DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY 
-I/usr/src/lib/libstand/../../contrib/zlib -ffreestanding -Wformat -mno-mmx 
-mno-sse -mno-avx -D_STANDALONE -msoft-float -MD  -MF.depend._infback.o 
-MT_infback.o -std=gnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value 
-Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion 
-Wno-unused-local-typedef -Wno-switch -Wno-switch-enum 
-Wno-knr-promoted-parameter -Wno-parentheses  -Qunused-arguments  -c _infback.c 
-o _infback.o
--- all_subdir_lib/libpcap ---
--- bpf_dump.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/

FreeBSD_HEAD_i386 - Build #4586 - Failure

2017-01-06 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4586 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4586/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4586/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4586/console

Change summaries:

311575 by adrian:
[net80211] add VHT node flag; parsed chanwidth.

The VHT operational element (VHTOPMODE) isn't a uint32_t - it's
the MCS sets, freq1/freq2 parameters and channel width.
So, store the channel width too in lieu of just storing the
IE struct.

This changes the VHT parameter layout in ieee80211_node but it
doesn't change ABI at all.

311574 by adrian:
[net80211] add FVHT flags for channel widths.

The 11n code uses these bits for both configuration /and/ controlling
the channel width on softmac chips - it uses it to find the widest
width for all VAPs (eg a HT20 vap and a HT40 vap) to know what to
configure the ic_curchan.

For fullmac devices it isn't /as/ important, as each virtual device
exposed by the firmware will likely have its own configuration and the
firmware figures out what to do to enable it.

311573 by adrian:
[net80211] Remove duplicate VHTOPMODE configuration bits.

These came from Linux mac80211 headers and are configuration bits, not
VHTOPMODE field parameters.

Whilst here, add the field names for the VHTCAP bits.

Tested:

* ath10k, 11ac STA mode

311572 by asomers:
Fix file descriptor leaks in cmp(1)

Also, add a few test cases

Reported by:Coverity
CID:271624 275338
Reviewed by:ngie
MFC after:  4 weeks
Sponsored by:   Spectra Logic Corp
Differential Revision:  https://reviews.freebsd.org/D9074

311570 by dim:
In tcpdump's print-tcp.c, avoid increasing alignment when taking the
addresses of members of struct ip, which is packed.  Since the pointers
are only used for memcmp'ing, they can be pointing to void instead.

Note that upstream has removed the src and dst variables, in the mean
time.

MFC after:  3 days

311569 by np:
Fix comment in t4_tom.  No functional change.

MFC after:  3 days

311568 by jhb:
Set MORETOCOME for AIO write requests on a socket.

Add a MSG_MOREOTOCOME message flag. When this flag is set, sosend*
set PRUS_MOREOTOCOME when invoking the protocol send method. The aio
worker tasks for sending on a socket set this flag when there are
additional write jobs waiting on the socket buffer.

Reviewed by:adrian
MFC after:  1 month
Sponsored by:   Chelsio Communications
Differential Revision:  https://reviews.freebsd.org/D8955

311567 by jhb:
Enable /usr/lib32 for o32 binaries on mips64.

Build and install an o32 set of libraries on mips64 suitable for
running o32 binaries via COMPAT_FREEBSD32. Enable COMPAT_FREEBSD32 in
MALTA64.

Reviewed by:jmallett, imp
Sponsored by:   DARPA / AFRL
Differential Revision:  https://reviews.freebsd.org/D9032

311566 by jhb:
Set -m32 in MD LIB32CPUCFLAGS rather than MI LIB32CFLAGS.

Both amd64 and powerpc64 use -m32 to compile 32-bit binaries, but not
all platforms follow this convention.  Move the -m32 compile flag into
the per-architecture flags to accomodate other architectures.

Sponsored by:   DARPA / AFRL

311565 by dim:
Link llvm-ar to llvm-ranlib, if WITH_CLANG_EXTRAS is enabled.  When
invoked as llvm-ranlib, it can create an archive symbol table for
archives of objects compiled for LTO by an LLVM compiler.

Submitted by:   Dan McGregor 
MFC after:  3 days



The end of the build log:

[...truncated 55879 lines...]
--- _setjmp.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -O2 -pipe   -I/usr/src/lib/libstand 
-DBZ_NO_STDIO -DBZ_NO_COMPRESS -DHAVE_MEMCPY 
-I/usr/src/lib/libstand/../../contrib/zlib -ffreestanding -Wformat -mno-mmx 
-mno-sse -mno-avx -D_STANDALONE -msoft-float -MD  -MF.depend._setjmp.o 
-MT_setjmp.o -std=gnu99 -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value 
-Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion 
-Wno-unused-local-typedef -Wno-switch -Wno-switch-enum 
-Wno-knr-promoted-parameter -Wno-parentheses  -Qunused-arguments-c 
/usr/src/lib/libstand/i386/_setjmp.S -o _setjmp.o
--- all_subdir_lib/libstdthreads ---
--- tss.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe   -MD  
-MF.depend.tss.pico -MTtss.pico -std=gnu99 -fstack-protector-strong 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type 
-Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align 
-Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls 
-Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations 
-Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable 
 -Qunused-arguments  -c /usr/src/lib/libstdthread

FreeBSD_HEAD_i386 - Build #4532 - Fixed

2016-12-31 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4532 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4532/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4532/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4532/console

Change summaries:

310972 by jmcneill:
Fix a typo in the third address of the reg property for the usbphy node.

MFC after:  1 week

310963 by bapt:
Bump copyright year.

Happy New Year 2017!

310961 by avos:
sysctl(8): fix typename for uint32_t.

MFC after:  5 days.

310960 by ngie:
Similar to r310954, set .len to 0 on malloc failure and to `len` only
on success

MFC after:  1 week

310958 by ngie:
Initialize ret to SNMPD_INPUT_OK at the top of snmp_input_start(..) to
avoid returning an uninitialized value

There are some really complicated, snakey if-statements combined with
switch statements that could result in an invalid value being returned
as `ret`

MFC after:  1 week
Reported by:Coverity
CID:1006551

310957 by ngie:
Use strlcpy when copying `com` to pdu->community to avoid potential
buffer overruns

MFC after:  1 week
Reported by:Coverity
CID:1006823, 1006824

310954 by ngie:
Set value->v.octetstring.len to a correct value on malloc success/failure

The previous code always set value->v.octetstring.len to len, regardless
of the result from the malloc call. This misleads the caller on malloc
failure. Set .len to len on success and 0 on failure.

MFC after:  1 week
Reported by:Coverity
CID:1007590

310952 by ngie:
MIB-II: use strlcpy instead of strcpy when copying {descr,name}

This is of course to avoid buffer overruns

The remaining strcpy instance in the module needs to be audited for
correctness

MFC after:  1 week
Reported by:Coverity
CID:1006827, 1006828

310950 by ngie:
MIB-II: use strlcpy when copying interface names to .ifr_name

.ifra_name is assumed to be NUL terminated; using strlcpy(3)
ensures that it's indeed NUL terminated whereas strncpy does
not.

Tested and verified as follows with a combination of ifconfig,
snmpget, and snmpset:

  % ifconfig create lo1 127.0.0.2/8
  % SNMPARGS="-v 3 -n '' -u bsnmp -A bsnmptest -l authPriv -a sha -x des -X 
bsnmptest localhost"
  % snmpget $SNMPARGS IF-MIB::ifAdminStatus.4
  IF-MIB::ifAdminStatus.4 = INTEGER: up(1)
  % snmpset $SNMPARGS IF-MIB::ifAdminStatus.4 i 2
  IF-MIB::ifAdminStatus.4 = INTEGER: down(2)
  % snmpget $SNMPARGS IF-MIB::ifAdminStatus.4
  IF-MIB::ifAdminStatus.4 = INTEGER: down(2)
  % snmpset $SNMPARGS IF-MIB::ifAdminStatus.4 i 1
  IF-MIB::ifAdminStatus.4 = INTEGER: up(1)
  % snmpget $SNMPARGS IF-MIB::ifAdminStatus.4
  IF-MIB::ifAdminStatus.4 = INTEGER: up(1)

MFC after:  2 weeks
Reported by:Coverity
CID:1009652-1009656, 1349850

310942 by ngie:
Unbreak the build by passing the string to strdup, not its length

MFC after:  1 week
X-MFC with: r310931
Pointyhat to:   ngie

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4531 - Failure

2016-12-31 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4531 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4531/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4531/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4531/console

Change summaries:

310931 by ngie:
Use strdup in snmp_parse_server(..) when possible instead of malloc+strcpy

This simplifies the code and mutes a Coverity warning about sc->cport being
improperly allocated

Reported by:Coverity
CID:1018247
MFC after:  1 week

310925 by kib:
Remove unused declaration.

The setconf() implementation was removed by r52778 Nov 1 1999.

Sponsored by:   The FreeBSD Foundation
MFC after:  1 week

310921 by hrs:
- Add static for symbols which need not to be exported.
- Clean up warnings to the WARNS=6 level.

310907 by mjg:
Use vrefact in vnode_pager_alloc.

310894 by ngie:
snmp_pdu_free the right object at the right time in snmptool_walk

r310892 was on the right track, but unfortunately it was resolving
the problem incorrectly and accidentally leaking memory in the
process.

- Call snmp_pdu_free on req before calling snmp_pdu_create on it
  at the bottom of the outer while loop
- Call snmp_pdu_free on resp after calling snmpwalk_nextpdu_create
  in the inner loop

MFC after:  12 days
X-MFC with: r310729, r310892
Reported by:valgrind

310893 by hrs:
Remove extra NULL-check before free(3).

310892 by ngie:
Don't call snmp_pdu_free(..) until finished with the pdu and when ready to
allocate a new one via snmp_pdu_create(..)

This fixes bsnmpwalk, so it no longer crashes after r310729

X-MFC with: r310729
MFC after:  12 days



The end of the build log:

[...truncated 57406 lines...]
--- bl.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe 
-I/usr/src/contrib/blacklist/include -I/usr/src/contrib/blacklist/port  
-D_REENTRANT -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GETTIME 
-DHAVE_FGETLN -DHAVE_GETPROGNAME  -DHAVE_STRLCAT -DHAVE_STRLCPY 
-DHAVE_STRUCT_SOCKADDR_SA_LEN   -MD  -MF.depend.bl.pico -MTbl.pico -std=gnu99 
-fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter 
-Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls 
-Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations 
-Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable 
 -Wno-thread-safety-analysis -Qunused-arguments  -c 
/usr/src/contrib/blacklist/lib/bl.c -o bl.pico
--- all_subdir_lib/ncurses ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe 
-D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDEC -I. 
-I/usr/obj/usr/src/lib/ncurses/formw/../ncursesw 
-I/usr/src/lib/ncurses/formw/../ncursesw 
-I/usr/src/lib/ncurses/formw/../ncurses 
-I/usr/src/lib/ncurses/formw/../../../contrib/ncurses/include 
-I/usr/src/lib/ncurses/formw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG 
-DHAVE_CONFIG_H -I/usr/src/lib/ncurses/formw/../../../contrib/ncurses/form 
-I/usr/src/lib/ncurses/formw/../../../contrib/ncurses/menu   -MD  
-MF.depend.fty_num.pico -MTfty_num.pico -std=gnu99 -fstack-protector-strong 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized 
-Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value 
-Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wn
 o-unused-local-typedef  -Qunused-arguments  -c 
/usr/src/lib/ncurses/formw/../../../contrib/ncurses/form/fty_num.c -o 
fty_num.pico
--- all_subdir_lib/libblacklist ---
--- blacklist.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe 
-I/usr/src/contrib/blacklist/include -I/usr/src/contrib/blacklist/port  
-D_REENTRANT -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GETTIME 
-DHAVE_FGETLN -DHAVE_GETPROGNAME  -DHAVE_STRLCAT -DHAVE_STRLCPY 
-DHAVE_STRUCT_SOCKADDR_SA_LEN   -MD  -MF.depend.blacklist.pico 
-MTblacklist.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror 
-Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign 
-Wmissing-variable-declarations -Wthread-safety -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable  -Wno-thread-safety-analysis 
-Qunused-arguments  -c /usr/src/contrib/blacklist/lib/blacklist.c -o

FreeBSD_HEAD_i386 - Build #4516 - Fixed

2016-12-29 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4516 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4516/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4516/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4516/console

Change summaries:

310793 by avos:
rtwn: silence compiler warning (-Wmaybe-uninitialized).

Reported by:adrian

310792 by dim:
Revert r310775 for now, until we can figure out why it does not seem to
work properly when cross-building.  Sorry for the breakage.

310791 by gonzo:
[qemu] Fix VERSATILEPB kernel boot in QEMU broken by r300968

QEMU does not implement hardware debug registers so when
dbg_monitor_is_enabled is called kernel receives "invalid instruction"
exception. QEMU implements only DIDR register and on read returns all
zeroes to indicate that it doesn't support other registers. Real
hardware has Version bits set.

MFC after:  1 week

310790 by kan:
Use TARGET_ARCH instead of MACHINE_ARCH for MIPS kernel

MACHINE_ARCH is overwritten by config file and will not
contain -hf suffix, so uname -p reported by kernel will
be wrong.

310789 by kan:
Use compiler driver to build relocatable object

This works better with external toolchains where LD
will not necessarily defailt to emulation we want.
Compiler driver knows better.

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4515 - Still Failing

2016-12-29 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4515 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4515/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4515/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4515/console

Change summaries:

310786 by asomers:
Reduce the runtime of the GELI tests

There is no reduction in test coverage.  On my system runtime is reduced
from 38m32s to 6m24s.

tests/sys/geom/class/eli/conf.sh
tests/sys/geom/class/eli/init_a_test.sh
tests/sys/geom/class/eli/init_test.sh
tests/sys/geom/class/eli/integrity_copy_test.sh
tests/sys/geom/class/eli/integrity_data_test.sh
tests/sys/geom/class/eli/integrity_hmac_test.sh
tests/sys/geom/class/eli/onetime_a_test.sh
tests/sys/geom/class/eli/onetime_test.sh
Move the looping code into common functions in conf.sh, and remove
alias ciphers from the list.

tests/sys/geom/class/eli/init_a_test.sh
tests/sys/geom/class/eli/init_test.sh
tests/sys/geom/class/eli/integrity_copy_test.sh
tests/sys/geom/class/eli/integrity_data_test.sh
tests/sys/geom/class/eli/integrity_hmac_test.sh
tests/sys/geom/class/eli/onetime_a_test.sh
Move a few commands that don't need to be in the inner loop out.

tests/sys/geom/class/eli/init_test.sh
tests/sys/geom/class/eli/onetime_a_test.sh
Reduce the sector count

tests/sys/geom/class/eli/Makefile
tests/sys/geom/class/eli/init_alias_test.sh
Add a test for initializing a GELI device using one of the cipher
aliases, and check that the alias is correctly interpreted.

MFC after:  4 weeks
Sponsored by:   Spectra Logic Corp
Differential Revision:  https://reviews.freebsd.org/D8814

310785 by ae:
Convert ipv4_flags and ipv4_offset fields into host byte order.
Also save only high bits in the ipv4_flags, because it is defined
as uint8_t. So now it will show DF and MF flags as 0x40 and 0x20.

Reviewed by:markj@
MFC after:  1 week

310784 by kan:
Use mips_dcache_wbinv_range instead of mips_dcache_wb_range on CPU_XBURST

Ingenic CPUs treat plain cache writeback as local-only operation and do
nothing if that is a remote CPU that holds the dirty cache line. They
do broadcast invalidate and write-and-invalidate to other cores though,
so take advantage of that and use wbinv in place of wb as this still gives
us required busdma semantics. Otherwise we'd have to do IPI to remote CPU
ourselves.

310783 by ae:
When we are sending IP fragments, update ip pointers in IP_PROBE() for
each fragment.

MFC after:  1 week



The end of the build log:

[...truncated 131301 lines...]
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DSNMPTREE_TYPES -I.   
-MD  -MF.depend.wlan_snmp.pico -MTwlan_snmp.pico -std=gnu99 
-fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter 
-Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls 
-Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c 
/usr/src/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_snmp.c -o wlan_snmp.pico
--- all_subdir_lib ---
--- test_read_format_cpio_odc.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive 
-I/usr/obj/usr/src/lib/libarchive/tests 
-I/usr/src/contrib/libarchive/libarchive 
-I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g 
-MD  -MF.depend.libarchive_test.test_read_format_cpio_odc.o 
-MTtest_read_format_cpio_odc.o -std=gnu99 -fstack-protector-strong
-Qunused-arguments  -c 
/usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio_odc.c -o 
test_read_format_cpio_odc.o
--- test_read_format_cpio_svr4_gzip.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive 
-I/usr/obj/usr/src/lib/libarchive/tests 
-I/usr/src/contrib/libarchive/libarchive 
-I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g 
-MD  -MF.depend.libarchive_test.test_read_format_cpio_svr4_gzip.o 
-MTtest_read_format_cpio_svr4_gzip.o -std=gnu99 -fstack-protector-strong
-Qunused-arguments  -c 
/usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_gzip.c 
-o test_read_format_cpio_svr4_gzip.o
--- test_read_format_cpio_svr4c_Z.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive 
-I/usr/obj/usr/src/lib/libarchive/tests 
-I/usr/src/contrib/libarchive/libarchive 
-I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g 
-MD  -MF.depend.libarchive_test.test_read_format_cpio_svr4c_Z.o 

FreeBSD_HEAD_i386 - Build #4514 - Still Failing

2016-12-29 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4514 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4514/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4514/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4514/console

Change summaries:

310782 by mav:
Fix build with enabled debug after r310778.

MFC after:  2 weeks

310781 by adrian:
[ar71xx] add EARLY_PRINTF support for the AR933x (Hornet) UART.

Tested:

* Carambola 2

310780 by adrian:
[ar71xx] put in an implicit read-after-write to flush things out.

Note: I may need to revisit this for mips74k.



The end of the build log:

[...truncated 129485 lines...]
--- readdir.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  
-I/usr/src/contrib/amd/include  
-I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include/rpcsvc -I. 
-I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../include 
-I/usr/obj/usr/src/usr.sbin/amd/amd/../include 
-I/usr/src/usr.sbin/amd/amd/../../../contrib/amd/include 
-I/usr/src/usr.sbin/amd/amd/../../../contrib/amd -DHAVE_CONFIG_H 
-DHOST_CPU=\"i386\" -DHOST_ARCH=\"i386\" -g -MD  -MF.depend.readdir.o 
-MTreaddir.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror 
-Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int 
-Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value 
-Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion 
-Wno-unused-local-typedef -Wno-switch -Wno-switch-enum 
-Wno-knr-promoted-parameter -Wno-parentheses  -Qunused-arguments  -c 
/usr/src/contrib/amd/amd/readdir.c -o readdir.o
--- all_subdir_lib ---
--- test_read_filter_program_signature.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive 
-I/usr/obj/usr/src/lib/libarchive/tests 
-I/usr/src/contrib/libarchive/libarchive 
-I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g 
-MD  -MF.depend.libarchive_test.test_read_filter_program_signature.o 
-MTtest_read_filter_program_signature.o -std=gnu99 -fstack-protector-strong
-Qunused-arguments  -c 
/usr/src/contrib/libarchive/libarchive/test/test_read_filter_program_signature.c
 -o test_read_filter_program_signature.o
--- test_read_filter_uudecode.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive 
-I/usr/obj/usr/src/lib/libarchive/tests 
-I/usr/src/contrib/libarchive/libarchive 
-I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g 
-MD  -MF.depend.libarchive_test.test_read_filter_uudecode.o 
-MTtest_read_filter_uudecode.o -std=gnu99 -fstack-protector-strong
-Qunused-arguments  -c 
/usr/src/contrib/libarchive/libarchive/test/test_read_filter_uudecode.c -o 
test_read_filter_uudecode.o
--- all_subdir_usr.bin ---
--- CodeGenMapTable.o ---
c++  -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/obj/usr/src/lib/clang/libllvm 
-I/usr/src/lib/clang/include -I/usr/src/contrib/llvm/include -DLLVM_ON_UNIX 
-DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS 
-DLLVM_DEFAULT_TARGET_TRIPLE=\"i386-unknown-freebsd12.0\" 
-DLLVM_HOST_TRIPLE=\"i386-unknown-freebsd12.0\" -DDEFAULT_SYSROOT=\"\" -g -MD 
-MF.depend.CodeGenMapTable.o -MTCodeGenMapTable.o -fstack-protector-strong 
-Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable 
-Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality 
-Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch 
-Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses 
-Qunused-arguments -std=c++11 -fno-exceptions -fno-rtti  -stdlib=libc++ 
-Wno-c++11-extensions  -c 
/usr/src/contrib/llvm/utils/TableGen/CodeGenMapTable.cpp -o CodeGenMapTable.o
--- all_subdir_lib ---
--- test_read_format_7zip.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive 
-I/usr/obj/usr/src/lib/libarchive/tests 
-I/usr/src/contrib/libarchive/libarchive 
-I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g 
-MD  -MF.depend.libarchive_test.test_read_format_7zip.o 
-MTtest_read_format_7zip.o -std=gnu99 -fstack-protector-strong
-Qunused-arguments  -c 
/usr/src/contrib/libarchive/libarchive/test/test_read_format_7zip.c -o 
test_read_format_7zip.o
--- all_subdir_usr.sbin ---
--- restart.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  
-I/usr/src/contrib/amd/include  
-I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include/rpcsvc -I. 
-I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../include 
-I/usr/obj/usr/src/usr.sbin/amd/amd/../include 
-I/usr/src/usr.sbin

FreeBSD_HEAD_i386 - Build #4513 - Still Failing

2016-12-29 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4513 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4513/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4513/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4513/console

Change summaries:

310779 by mjg:
cache: sprinkle __predict_false



The end of the build log:

[...truncated 130035 lines...]
--- support.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include 
-I/usr/src/contrib/blacklist/port  
-D_PATH_BLCONTROL=\"/usr/libexec/blacklistd-helper\"  -DHAVE_CONFIG_H 
-DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GETTIME -DHAVE_FGETLN 
-DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHAVE_STRLCPY  
-DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.support.o -MTsupport.o 
-std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign 
-Wmissing-variable-declarations -Wthread-safety -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c 
/usr/src/contrib/blacklist/bin/support.c -o s
 upport.o
--- all_subdir_lib ---
--- test_write_format_mtree_no_separator.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive 
-I/usr/obj/usr/src/lib/libarchive/tests 
-I/usr/src/contrib/libarchive/libarchive 
-I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g 
-MD  -MF.depend.libarchive_test.test_write_format_mtree_no_separator.o 
-MTtest_write_format_mtree_no_separator.o -std=gnu99 -fstack-protector-strong   
 -Qunused-arguments  -c 
/usr/src/contrib/libarchive/libarchive/test/test_write_format_mtree_no_separator.c
 -o test_write_format_mtree_no_separator.o
--- all_subdir_usr.sbin ---
--- internal.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include 
-I/usr/src/contrib/blacklist/port  
-D_PATH_BLCONTROL=\"/usr/libexec/blacklistd-helper\"  -DHAVE_CONFIG_H 
-DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GETTIME -DHAVE_FGETLN 
-DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHAVE_STRLCPY  
-DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.internal.o -MTinternal.o 
-std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign 
-Wmissing-variable-declarations -Wthread-safety -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c 
/usr/src/contrib/blacklist/bin/internal.c -
 o internal.o
--- sockaddr_snprintf.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include 
-I/usr/src/contrib/blacklist/port  
-D_PATH_BLCONTROL=\"/usr/libexec/blacklistd-helper\"  -DHAVE_CONFIG_H 
-DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GETTIME -DHAVE_FGETLN 
-DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHAVE_STRLCPY  
-DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.sockaddr_snprintf.o 
-MTsockaddr_snprintf.o -std=gnu99 -fstack-protector-strong -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign 
-Wmissing-variable-declarations -Wthread-safety -Wno-empty-body 
-Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c 
/usr/src/contrib/blacklis
 t/port/sockaddr_snprintf.c -o sockaddr_snprintf.o
--- all_subdir_lib ---
--- test_write_format_mtree_quoted_filename.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive 
-I/usr/obj/usr/src/lib/libarchive/tests 
-I/usr/src/contrib/libarchive/libarchive 
-I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g 
-MD  -MF.depend.libarchive_test.test_write_format_mtree_quoted_filename.o 
-MTtest_write_format_mtree_quoted_filename.o -std=gnu99 
-fstack-protector-strong-Qunused-arguments  -c 
/usr/src/contrib/libarchive/libarchive/test/test_write_format_mtree_quoted_filename.c
 -o test_write_format_mtree_quoted_filename.o
--- test_write_fo

FreeBSD_HEAD_i386 - Build #4512 - Failure

2016-12-29 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4512 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4512/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4512/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4512/console

Change summaries:

310778 by mav:
Improve use of I/O's private area.

 - Since I/Os are allocates from per-port pools, make allocations store
pointer to CTL softc there, and use it where needed instead of global.
 - Created bunch of helper macros to access LUN, port and CTL softc.

MFC after:   2 weeks

310777 by jmcneill:
Add support for audio on I2S based DesignWare HDMI controllers.

Relnotes:   yes

310776 by jmcneill:
The JZ4780 I2S can feed either the internal audio codec or the HDMI
transmitter, but not both at the same time. This patch:

 - Adds a dev.pcm.0.internal_codec sysctl node for selecting between
   internal and external codec
 - Changes playback sample rate from 96 kHz to 48 kHz for HDMI compatibility
 - Enables i2s clock on codec access

Reviewed by:br
Differential Revision:  https://reviews.freebsd.org/D8960

310775 by dim:
Move llvm-objdump from CLANG_EXTRAS to installed by default

We currently install three tools from binutils 2.17.50: as, ld, and
objdump. Work is underway to migrate to a permissively-licensed
tool-chain, with one goal being the retirement of binutils 2.17.50.

LLVM's llvm-objdump is intended to be compatible with GNU objdump
although it is currently missing some options and may have formatting
differences. Enable it by default for testing and further investigation.
It may later be changed to install as /usr/bin/objdump, it becomes a
fully viable replacement.

Reviewed by:emaste
Differential Revision:  https://reviews.freebsd.org/D8879



The end of the build log:

[...truncated 129456 lines...]
--- test_read_format_cpio_filename.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive 
-I/usr/obj/usr/src/lib/libarchive/tests 
-I/usr/src/contrib/libarchive/libarchive 
-I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g 
-MD  -MF.depend.libarchive_test.test_read_format_cpio_filename.o 
-MTtest_read_format_cpio_filename.o -std=gnu99 -fstack-protector-strong
-Qunused-arguments  -c 
/usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio_filename.c -o 
test_read_format_cpio_filename.o
--- test_read_format_cpio_odc.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive 
-I/usr/obj/usr/src/lib/libarchive/tests 
-I/usr/src/contrib/libarchive/libarchive 
-I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g 
-MD  -MF.depend.libarchive_test.test_read_format_cpio_odc.o 
-MTtest_read_format_cpio_odc.o -std=gnu99 -fstack-protector-strong
-Qunused-arguments  -c 
/usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio_odc.c -o 
test_read_format_cpio_odc.o
--- all_subdir_usr.sbin ---
--- mntfs.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  
-I/usr/src/contrib/amd/include  
-I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include/rpcsvc -I. 
-I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../include 
-I/usr/obj/usr/src/usr.sbin/amd/amd/../include 
-I/usr/src/usr.sbin/amd/amd/../../../contrib/amd/include 
-I/usr/src/usr.sbin/amd/amd/../../../contrib/amd -DHAVE_CONFIG_H 
-DHOST_CPU=\"i386\" -DHOST_ARCH=\"i386\" -g -MD  -MF.depend.mntfs.o -MTmntfs.o 
-std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wno-pointer-sign 
-Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable 
-Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality 
-Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch 
-Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses  
-Qunused-arguments  -c /usr/src/contrib/amd/amd/mntfs.c -o mntfs.o
--- all_subdir_lib ---
--- test_read_format_cpio_svr4_gzip.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive 
-I/usr/obj/usr/src/lib/libarchive/tests 
-I/usr/src/contrib/libarchive/libarchive 
-I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g 
-MD  -MF.depend.libarchive_test.test_read_format_cpio_svr4_gzip.o 
-MTtest_read_format_cpio_svr4_gzip.o -std=gnu99 -fstack-protector-strong
-Qunused-arguments  -c 
/usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_gzip.c 
-o test_read_format_cpio_svr4_gzip.o
--- test_read_format_cpio_svr4c_Z.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive 
-I/usr/obj/usr/src/lib/libarchive/tests 
-I/usr/src/contrib/l

FreeBSD_HEAD_amd64_gcc - Build #1747 - Still Failing

2016-12-29 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1747 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1747/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1747/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1747/console

Change summaries:

310770 by arybchik:
sfxge(4): cleanup: clarify/unify variable name used for put-list length

get_count is used for get-list.

Sponsored by:   Solarflare Communications, Inc.
MFC after:  2 days

310767 by mjg:
cache: depessimize hashing macros/inlines

All hash sizes are power-of-2, but the compiler does not know that for sure
and 'foo % size' forces doing a division.

Store the size - 1 and use 'foo & hash' instead which allows mere shift.

310766 by mjg:
cache: drop the NULL check from VP2VNODELOCK

Now that negative entries are annotated with a dedicated flag, NULL vnodes
are no longer passed.

310765 by arybchik:
sfxge(4): add support for firmware-verified NVRAM updates to the common code

Submitted by:   Andy Moreton 
Reviewed by:gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:  1 week
Differential Revision:  https://reviews.freebsd.org/D8942

310764 by arybchik:
sfxge(4): sync up tlv_layout.h (from firmwaresrc 82cd8a5715e9)

Submitted by:   Matthew Slattery 
Sponsored by:   Solarflare Communications, Inc.
MFC after:  2 days

310763 by ngie:
Use uint32_t instead of u_int32_t for or_last_change and services in "struct 
systemg"

This is being done to match "struct systemg" in snmpmod(3)

No functional change

MFC after:  3 days

310762 by arybchik:
sfxge(4): regenerate MCDI headers from firmwaresrc .yml

Sponsored by:   Solarflare Communications, Inc.
MFC after:  2 days

310760 by arybchik:
sfxge(4): fix typo in pseudo header accessor function names

Sponsored by:   Solarflare Communications, Inc.
MFC after:  2 days

310758 by arybchik:
sfxge(4): delete hunt_phy.c

Submitted by:   Mark Spender 
Sponsored by:   Solarflare Communications, Inc.
MFC after:  2 days

310756 by arybchik:
sfxge(4): do not use enum type when values are bitmask

ICC complains that enumerated type mixed with another type.

Found by DPDK upstream build sanity check.

Reviewed by:gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:  2 days
Differential Revision:  https://reviews.freebsd.org/D8954

310755 by arybchik:
sfxge(4): do not use enum for filter flags

It is not 100% correct to assign non-enum values to enum type
variables.

Found by ICC build (DPDK PMD upstreaming).

Reviewed by:gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:  2 days
Differential Revision:  https://reviews.freebsd.org/D8953

310754 by arybchik:
sfxge(4): don't use Tx descriptor push with TSO option descriptors

It is not safe to push TSO option descriptors if pacer bypass is
enabled, so to make sure that doesn't happen never push TSO option
descriptors.

Submitted by:   Mark Spender 
Reviewed by:gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:  2 days
Differential Revision:  https://reviews.freebsd.org/D8952

310753 by arybchik:
sfxge(4): split EFX_FILTER_MATCH_LOC_MAC_IG back into separate flags

The flag EFX_FILTER_MATCH_LOC_MAC_IG to represent filtering on the
individual/group bit of the MAC address (with the two cases being
distingusished by the MAC address in the filter specification) was
introduced to mirror the Linux driver filtering code, but the
implementations are different enough anyway that it isn't of much value.

Having separate flags for unknown unicast and multicast simplifies
the code and allows the set of flags to match those used by MCDI.

It will also makes it easier to report whether these filters are
supported.

In the MCDI definitions, the unknown multicast and unicast flags have
the values 0x4000 and 0x8000 respectively, and so using the
same values for simplicity requires 32 bits in the filter specification
to store the flags. This means the structure is now a little bigger
than 64 bytes, but filters are not often used on critical paths so this
shouldn't have much impact - on Linux they are also bigger than they
used to be.

Submitted by:   Mark Spender 
Reviewed by:gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:  1 week
Differential Revision:  https://reviews.freebsd.org/D8951

310752 by arybchik:
sfxge(4): allow to have no NIC handle on Rx datapath in DPDK PMD

It is required to minimize RxQ context in the driver or avoid chaising
for the NIC handle in adapter (global per-interface) structure.

Reviewed by:gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:  2 days
Differential Revision:  https://reviews.freebsd.org/D8950

310750 by arybchik:
sfxge(4): add missing barrier in common code MCDI response handling

The semantics of the MCDI interfacve require reading the first
dword of the header before any other data in the buffer. Add
a barrier to the common

FreeBSD_HEAD_i386 - Build #4499 - Fixed

2016-12-28 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4499 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4499/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4499/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4499/console

Change summaries:

310675 by ngie:
Fix the build by moving the initializers for len/nswapdev down below the
declarations

MFC after:  3 days
Pointyhat to:   ngie

310674 by mmel:
Limit number of stripes supported by HDA codec to maximum number
announced by HDA controller.
Incorrectly implermented HDA codec may report support for more stripes
that HDA controller already have. Due to this, always limit number of
enabled stripes by global controller maximum.

Reviewed by:mav
MFC after:  1 month
Differential Revision: https://reviews.freebsd.org/D8922

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4498 - Failure

2016-12-28 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4498 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4498/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4498/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4498/console

Change summaries:

310669 by ngie:
style(9): clean up whitespace

MFC after:  3 days

310668 by ngie:
style(9) fixes: clean up leading whitespace

MFC after:  3 days

310667 by ngie:
style(9) fixes: clean up leading whitespace

MFC after:  3 days

310666 by ngie:
style(9) fixes

- Clean up trailing whitespace
- Fix variable type alignment in storage_OS_get_swap(..)

MFC after:  3 days

310665 by ngie:
Only build/install usr.sbin/bsnmpd/modules/snmp_hast if MK_HAST != no

MFC after:  1 week

310664 by ngie:
Only build/install usr.sbin/bsnmpd/modules/snmp_wlan if MK_WIRELESS != no

MFC after:  1 week



The end of the build log:

[...truncated 131742 lines...]
--- all_subdir_usr.sbin ---
--- all_subdir_usr.sbin/bsdconfig/networking ---
===> usr.sbin/bsdconfig/networking (all)
--- all_subdir_usr.sbin/bsdconfig/networking/include ---
===> usr.sbin/bsdconfig/networking/include (all)
--- all_subdir_usr.sbin/bsdconfig/networking/share ---
===> usr.sbin/bsdconfig/networking/share (all)
--- all_subdir_usr.sbin/bsdconfig/packages ---
===> usr.sbin/bsdconfig/packages (all)
--- all_subdir_usr.sbin/bsdconfig/packages/include ---
===> usr.sbin/bsdconfig/packages/include (all)
--- all_subdir_usr.sbin/bsdconfig/password ---
===> usr.sbin/bsdconfig/password (all)
--- all_subdir_usr.sbin/bsdconfig/password/include ---
===> usr.sbin/bsdconfig/password/include (all)
--- all_subdir_usr.sbin/bsdconfig/password/share ---
===> usr.sbin/bsdconfig/password/share (all)
--- all_subdir_usr.sbin/bsdconfig/security ---
===> usr.sbin/bsdconfig/security (all)
--- all_subdir_usr.sbin/bsnmpd ---
--- snmp_bridge.so.6.full ---
building shared library snmp_bridge.so.6
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -fstack-protector-strong -shared -Wl,-x 
-Wl,--fatal-warnings -Wl,--warn-shared-textrel  -o snmp_bridge.so.6.full 
-Wl,-soname,snmp_bridge.so.6  `NM='nm' NMFLAGS='' lorder bridge_snmp.pico 
bridge_if.pico bridge_port.pico bridge_addrs.pico bridge_pf.pico 
bridge_sys.pico bridge_tree.pico |  tsort -q` 
--- all_subdir_usr.sbin/bsdconfig ---
--- all_subdir_usr.sbin/bsdconfig/security/include ---
===> usr.sbin/bsdconfig/security/include (all)
--- all_subdir_usr.sbin/bsdconfig/share ---
===> usr.sbin/bsdconfig/share (all)
--- all_subdir_usr.sbin/bsdconfig/share/media ---
===> usr.sbin/bsdconfig/share/media (all)
--- all_subdir_usr.sbin/bsnmpd ---
--- snmp_bridge.3.gz ---
sed -e 's%@MODPATH@%/usr/lib/%g' -e 
's%@DEFPATH@%/usr/share/snmp/defs/%g'-e 
's%@MIBSPATH@%/usr/share/snmp/mibs/%g' < 
/usr/src/usr.sbin/bsnmpd/modules/snmp_bridge/snmp_bridge.3 | gzip -cn > 
snmp_bridge.3.gz
--- snmp_bridge.so.6.debug ---
objcopy --only-keep-debug snmp_bridge.so.6.full snmp_bridge.so.6.debug
--- snmp_bridge.so.6 ---
objcopy --strip-debug --add-gnu-debuglink=snmp_bridge.so.6.debug  
snmp_bridge.so.6.full snmp_bridge.so.6
--- all_subdir_usr.sbin/bsnmpd/modules/snmp_hostres ---
===> usr.sbin/bsnmpd/modules/snmp_hostres (all)
--- all_subdir_usr.sbin/bsdconfig ---
--- all_subdir_usr.sbin/bsdconfig/share/packages ---
===> usr.sbin/bsdconfig/share/packages (all)
--- all_subdir_usr.sbin/bsdconfig/startup ---
===> usr.sbin/bsdconfig/startup (all)
--- all_subdir_usr.sbin/bsnmpd ---
--- hostres_tree.c ---
cat /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_tree.def | 
gensnmptree -p hostres_
--- hostres_oid.h ---
cat /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_tree.def | 
gensnmptree -e host hrStorageOther hrStorageRam hrStorageVirtualMemory  
hrStorageFixedDisk hrStorageRemovableDisk hrStorageFloppyDisk  
hrStorageCompactDisc hrStorageRamDisk hrStorageFlashMemory  
hrStorageNetworkDisk hrDeviceOther hrDeviceUnknown  hrDeviceProcessor 
hrDeviceNetwork hrDevicePrinter  hrDeviceDiskStorage hrDeviceVideo 
hrDeviceAudio  hrDeviceCoprocessor hrDeviceKeyboard hrDeviceModem  
hrDeviceParallelPort hrDevicePointing  hrDeviceSerialPort hrDeviceTape 
hrDeviceClock  hrDeviceVolatileMemory hrDeviceNonVolatileMemory  hrFSOther 
hrFSUnknown hrFSBerkeleyFFS hrFSSys5FS hrFSFat hrFSHPFS hrFSHFS hrFSMFS 
hrFSNTFS hrFSVNode hrFSJournaled  hrFSiso9660 hrFSRockRidge hrFSNFS hrFSNetware 
hrFSAFS hrFSDFS  hrFSAppleshare hrFSRFS hrFSDGCFS hrFSBFS hrFSFAT32 
hrFSLinuxExt2 > hostres_oid.h
--- .depend ---
echo snmp_hostres.so.6.full: /usr/obj/usr/src/tmp/usr/lib/libkvm.a 
/usr/obj/usr/src/tmp/usr/lib/libdevinfo.a /usr/obj/usr/src/tmp/usr/lib/libm.a 
/usr/obj/usr/src/tmp/usr/lib/libgeom.a 
/usr/obj/usr/src/tmp/usr/lib/libmemstat.a >> .depend
--- hostres_begemot.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DND

FreeBSD_HEAD_i386 - Build #4494 - Fixed

2016-12-27 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4494 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4494/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4494/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4494/console

Change summaries:

310646 by mav:
Do not update "saved" mode page on every MODE SELECT.

We do not have non-volatile memory to really save those values, so we
neither report nor support this capability.  Also saved mode pages are
not replicated between HA peers now.

MFC after:  2 weeks

310645 by gonzo:
[intelspi] Add SPI driver for Intel BayTrail SoC

Add SPI mode (PIO-only) support for Intel Synchronous Serial Port that
can be found in several Intel's products starting from PXA family.
Most of implementations have slight differences in behavior and in
addresses for registers subset. This driver covers only BayTrail SoC
implementation for it's the only hardware I have to test it on.

Driver attaches to ACPI bus only and does not have PCI or FDT support
for now due to lack of hardware to test it on.

"intelspi" is the best name I've managed to come up with. Linux driver
name (spi-pxa2xx) does not make sense because current implementation
does not support actual PXA2xx SoCs. And as far as I know there is no
codename assigned to Intel SSP chip.

Reviewed by:br, manu
MFC after:  1 month
Differential Revision:  https://reviews.freebsd.org/D8896

310644 by mav:
Fix/synchronize field types in struct ctl_modepage_header.

MFC after:  2 weeks

310643 by mav:
Missed piece of r310640.

MFC after:  2 weeks

310642 by tuexen:
Consistent handling of errors reported from the lower layer.

MFC after:  3 days

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4493 - Failure

2016-12-27 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4493 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4493/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4493/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4493/console

Change summaries:

310640 by mav:
Add support for revert to defaults (RTD) bit in MODE SELECT.

MFC after:  2 weeks

310639 by jhb:
Regen after r310638.

Differential Revision:  https://reviews.freebsd.org/D8854

310638 by jhb:
Rename the 'flags' argument to getfsstat() to 'mode' and validate it.

This argument is not a bitmask of flags, but only accepts a single value.
Fail with EINVAL if an invalid value is passed to 'flag'.  Rename the
'flags' argument to getmntinfo(3) to 'mode' as well to match.

This is a followup to r308088.

Reviewed by:kib
MFC after:  1 month



The end of the build log:

[...truncated 168073 lines...]
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror 
-D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include 
/usr/obj/usr/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g 
-I/usr/obj/usr/src/sys/GENERIC  -MD  -MF.depend.ctl_frontend.o 
-MTctl_frontend.o -mno-mmx -mno-sse -msoft-float -ffreestanding -fwrapv 
-fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual 
-Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ 
-Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas 
-Wno-error-tautological-compare -Wno-error-empty-body 
-Wno-error-parentheses-equality -Wno-error-unused-function 
-Wno-error-pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  
-std=iso9899:1999 -c /usr/src/sys/modules/ctl/../../cam/ctl/ctl_frontend.c -o 
ctl_frontend.o
--- all_subdir_crypto ---
--- des_setkey.o ---
ctfconvert -L VERSION -g des_setkey.o
--- all_subdir_cxgbe ---
===> cxgbe (all)
--- all_subdir_cxgbe/if_cxgbe ---
===> cxgbe/if_cxgbe (all)
--- machine ---
machine -> /usr/src/sys/i386/include
--- x86 ---
x86 -> /usr/src/sys/x86/include
--- opt_ddb.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_ddb.h opt_ddb.h
--- opt_inet.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_inet.h opt_inet.h
--- opt_inet6.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_inet6.h opt_inet6.h
--- opt_ofed.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_ofed.h opt_ofed.h
--- opt_rss.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_rss.h opt_rss.h
--- t4_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/cxgbe/t4_if.m -h
--- bus_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h
--- all_subdir_crypto ---
--- sha1.o ---
ctfconvert -L VERSION -g sha1.o
--- sha256c.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror 
-D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include 
/usr/obj/usr/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g 
-I/usr/obj/usr/src/sys/GENERIC  -MD  -MF.depend.sha256c.o -MTsha256c.o -mno-mmx 
-mno-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall 
-Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes 
-Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign 
-D__printf__=__freebsd_kprintf__ -Wmissing-include-dirs 
-fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare 
-Wno-error-empty-body -Wno-error-parentheses-equality 
-Wno-error-unused-function -Wno-error-pointer-sign 
-Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=iso9899:1999 -c 
/usr/src/sys/modules/crypto/../../crypto/sha2/sha256c.c -o sha256c.o
--- all_subdir_cxgbe ---
--- device_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h
--- pci_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h
--- pci_iov_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_iov_if.m -h
--- t4_if.c ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/cxgbe/t4_if.m -c
--- t4_hw.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror 
-D_KERNEL -DKLD_MODULE -nostdinc  
-I/usr/src/sys/modules/cxgbe/if_cxgbe/../../../dev/cxgbe 
-DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_global.h 
-I. -I/usr/src/sys -fno-common -g -I/usr/obj/usr/src/sys/GENERIC  -MD  
-MF.depend.t4_hw.o -MTt4_hw.o -mno-mmx -mno-sse -msoft-float -ffreestanding 
-fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual 
-Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ 
-Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pr

FreeBSD_HEAD_amd64_gcc - Build #1743 - Still Failing

2016-12-25 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1743 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1743/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1743/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1743/console

Change summaries:

310534 by mav:
Improve third-party copy error reporting.

For EXTENDED COPY:
 - improve parameters checking to report some errors before copy start;
 - forward sense data from copy target as descriptor in case of error;
 - report which CSCD reported error in sense key specific information.
For WRITE USING TOKEN:
 - pass through real sense data from copy target instead of reporting
our copy error, since for initiator its a "simple" write, not a copy.

MFC after:  2 weeks

310530 by jamie:
Improve IP address list representation in libxo output.

Extract decision-making about special-case printing of certain
jail parameters into a function.

Refactor emitting of IPv4 and IPv6 address lists into a function.

Resulting user-facing changes:

XO_VERSION is bumped to 2.

In verbose mode (-v), IPv4 and IPv6-Addresses are now properly emitted
as separate lists.
This only affects the output in encoding styles, i.e. xml and json.

{{
  "__version": "1","__version": "2",
  "jail-information": {"jail-information": {
"jail": ["jail": [
  {{
"jid": 166,  "jid": 166,
"hostname": "foo.com",   "hostname": "foo.com",
"path": "/var/jail/foo", "path": "/var/jail/foo",
"name": "foo",   "name": "foo",
"state": "ACTIVE",   "state": "ACTIVE",
"cpusetid": 2,   "cpusetid": 2,
"ipv4_addrs": [  "ipv4_addrs": [
  "10.1.1.1",  "10.1.1.1",
  "10.1.1.2",  "10.1.1.2",
  "10.1.1.3",  |   "10.1.1.3"
   > ],
   > "ipv6_addrs": [
  "fe80::1000:1",  "fe80::1000:1",
  "fe80::1000:2"   "fe80::1000:2"
]]
  }}
]]
  }}
}}

In -n mode, ip4.addr and ip6.addr are formatted in the encoding styles'
native list types, e.g. instead of comma-separated lists, JSON arrays
are printed.

jls -n all --libxo json
 ...
 "ip4.addr": [
"10.1.1.1",
"10.1.1.2",
"10.1.1.3"
  ],
  "ip4.saddrsel": true,
  "ip6.addr": [
"fe80::1000:1",
"fe80::1000:2"
  ],
  ...

jls -n all --libxo xml
  ...
  10.1.1.1
  10.1.1.2
  10.1.1.3
  true
  fe80::1000:1
  fe80::1000:2
  ...

PR: 215008
Submitted by:   Christian Schwarz 
Differential Revision:  https://reviews.freebsd.org/D8766

310529 by avos:
net80211: fix 'pending CAC -> RUN transition lost' bug.

Ensure that CAC -> RUN state transition will be requested
for every vap only once.

310528 by hrs:
- Fix -N flag (NoBind) for AF_LOCAL sockets.
- Do setsockopt(SO_RCVBUF) for AF_LOCAL sockets regardless of -s flag.

310527 by hrs:
Fix gcc build.

Spotted by: lidl

310524 by mav:
Improve length handling when writing sense data.

 - Allow maximal sense size limitation via Control Extension mode page.
 - When sense size limited, include descriptors atomically: whole or none.
 - Set new SDAT_OVFL bit if some descriptors don't fit the limit.
 - Report real written sense length instead of static maximal 252 bytes.

MFC after:  2 weeks

310504 by ngie:
Unbreak syslogd after r310494

Don't close all file descriptors greater than STDERR_FILENO (2) in
waitdaemon(..) -- only close fd (file descriptor for /dev/null used in
subsequent calls to dup2) if it's greater than STDERR_FILENO.

Reported by:sub...@gmail.com, da...@cs.huji.ac.il
Pointyhat to:   hrs
X-MFC with: r310494

310503 by ngie:
style(9): delete stray trailing whitespace after break statement

MFC after:  3 days

310501 by ngie:
Be more strict about IpAddress type in snmp_value_parse(..)

- Use inet_pton with AF_INET instead of doing longhand with sscanf.
- Use gethostbyname2 with AF_INET to ensure that the hostname isn't
  accidentally parsed with another address family, e.g. AF_INET6.

NB: IpAddress per RFC-2578 is IPv4 only. Work is in progress to add
the InetAddress type and friends documented in RFC-4001 and
elsewhere (which supports IPv4, IPv6, and more).

MFC after:  2 weeks

310500 by ngie:
Minor style(9) fixes

- Trailing whitespace cleanup
- Sort variables in snmp_dialog(..) by alignment

No functional change

MFC after:  1 week

310499 by ngie:
Sort #in

FreeBSD_HEAD_amd64_gcc - Build #1736 - Still Failing

2016-12-18 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1736 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1736/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1736/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1736/console

Change summaries:

310205 by kib:
Fix typo.  Remove spurious blank line.

MFC after:  3 days

310204 by jchandra:
Initialize GIC[DR]_IGROUPRn registers for GICv3

In case where GICD_CTLR.DS is 1, the IGROUPR registers are RW in
non-secure state and has to be initialized to 1 for the
corresponding interrupts to be delivered as Group 1 interrupts.

Update gic_v3_dist_init() and gic_v3_redist_init() to initialize
GICD_IGROUPRn and GICR_IGROUPRn respectively to address this. The
registers can be set unconditionally since the writes are ignored
in non-secure state when GICD_CTLR.DS is 0.

This fixes the hang on boot seen when running qemu-system-aarch64
with machine virt,gic-version=3

310203 by ngie:
Clean up parse_ip(..)

- Clean up trailing whitespace
- Fix variable alignment

MFC after:  1 week

310202 by ngie:
Clean up trailing and leading whitespace

Fix variable type alignment in snmp_dialog(..)

MFC after:  1 week

310201 by bapt:
Update locales cldr to v30.0.3 and unicode to 9.0.0

MFC after:  1 month
Relnotes:   yes

310200 by bapt:
In order to prepare cldr v30.0.3 and unicode 9.0.0,
more locales are removed from automatic mapping from unicode as their
encoding does not supports new characters available in unicode

310199 by bapt:
Better handle posix names for locales

310198 by bapt:
Simplify extraction of static collation definition

310197 by bapt:
Prepare import of CLDR v30.3 and unicode 9.0.0

Upstream kk_Cyrl_KZ has been renamed kk_KZ
Upstream mn_Cyrl_MN has been renamed mn_MN

For ru_RU: the default currency for unicode is now ₽ which is not mapped to
other encoding, add charmaps entries to be able to generate them

310196 by ngie:
Fix some minor typos with begemotBridgeTpLearnedEntryDiscards and
begemotBridgeTpMaxAddresses

Bump LAST-UPDATED for the MIB, per the change

MFC after:  1 week

310194 by dim:
Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
3.9.1 release.

Please note that from 3.5.0 onwards, clang, llvm and lldb require C++11
support to build; see UPDATING for more information.

Release notes for llvm, clang and lld will be available here:




Relnotes:   yes
MFC after:  2 weeks
X-MFC-with: r309124

310193 by tuexen:
Fix the handling of buffered messages in stream reset deferred handling.

Thanks to Eugen-Andrei Gavriloaie for reporting the issue and providing
substantial help in nailing down the issue.

MFC after:  1 week

310190 by jchandra:
Simplify interrupt mask programming in pl011 uart

Remove unused fields from uart_pl011_softc. Add an interrupt mask
field to the softc and use it to set the interrupt mask register.

There should be no functional change introduced here except in the
grab and ungrab functions. In these functions, we now disable and
enable all interrupts rather than just the receive interrupt.

310189 by skra:
Fix sscanf() format string to match an argument. This also fixes kernel
build after r310171.

MFC after:  1 weeks



The end of the build log:

[...truncated 102526 lines...]
--- format_string_test ---
echo '#! /usr/libexec/atf-sh' > format_string_test.tmp
cat /builds/FreeBSD_HEAD_amd64_gcc/bin/date/tests/format_string_test.sh 
>>format_string_test.tmp
chmod +x format_string_test.tmp
mv format_string_test.tmp format_string_test
--- Kyuafile ---
--- date.full ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include
 -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib 
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp 
-B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -g -std=gnu99 
-fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W 
-Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter 
-Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls 
-Wold-style-definition -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error=attributes -Wno-error=bool-compare 
-Wno-error=cast-align -Wno-error=clobbered -Wno-error=enum-compare 
-Wno-error=extra -Wno-error=inline -Wno-error=logical-not-parentheses 
-Wno-error=strict-aliasing -Wno-error=uninitialized 
-Wno-error=unused-but-set-variable -Wno-error=unused-function 
-Wno-error=unused-value -Wno-error=s

FreeBSD_HEAD_amd64_gcc - Build #1735 - Still Failing

2016-12-17 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1735 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1735/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1735/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1735/console

Change summaries:

310187 by ngie:
Remove lib/libelf's manpages if MK_TOOLCHAIN == no

Add a comment to help figure out which set is lib/libelf's and which set
is lib/libelftc's

MFC after:  1 week

310186 by ngie:
Install the lib/libelftc manpages

Some other manpages, e.g. c++filt reference these

MFC after:  1 week

310185 by mm:
MFV r310115,310184:

Sync libarchive with vendor.

Vendor bugfixes (relevant to FreeBSD):
PR 830, 831, 833: Spelling fixes
OSS-Fuzz 227, 230, 239: Fix possible memory leak in archive_read_free()
OSS-Fuzz 237: Fix heap buffer overflow when reading invalid ar archives

MFC after:  1 week

310182 by kib:
In swp_pager_meta_free_all(), fix type of the index variable.  Style.

Noted and reviewed by:  alc (previous version)
Sponsored by:   The FreeBSD Foundation
MFC after:  1 week

310181 by matthew:
Revert r309339, thus re-instating r309314

The original problem with conflicting definitions of ${PKG_CMD} was
solved by r427523 in ports (see https://reviews.freebsd.org/D8677), so
this should be safe now.

Reviewed by:gjb
Approved by:gjb
Differential Revision:  https://reviews.freebsd.org/D8120

310180 by asomers:
Fix panic during lagg destruction with simultaneous status check

If you run "ifconfig lagg0 destroy" and "ifconfig lagg0" at the same time a
page fault may result. The first process will destroy ifp->if_lagg in
lagg_clone_destroy (called by if_clone_destroy). Then the second process
will observe that ifp->if_lagg is NULL at the top of lagg_port_ioctl and
goto fallback: where it will promptly dereference ifp->if_lagg anyway.

The solution is to repeat the NULL check for ifp->if_lagg

MFC after:  4 weeks
Sponsored by:   Spectra Logic Corp
Differential Revision:  https://reviews.freebsd.org/D8512

310179 by cperciva:
Avoid division by zero in the rare case that portsnap needs to fetch
zero patches.  (This avoids two "dc: divide by zero" warnings.)

MFC after:  3 days

310178 by manu:
Honor the CLK_SET_DRYRUN for the *set_freq function for allwinner clocks.

Reviewed by:jmcneill
MFC after:  1 month
Differential Revision:  https://reviews.freebsd.org/D8821

310177 by jhb:
Enable EARLY_AP_STARTUP on amd64 and i386 kernels by default.

PR: 199321, 203682
MFC after:  2 months
Sponsored by:   Netflix

310175 by gnn:
Remove extra DOF_SEC_XLIMPORT from the DOF_SEC_ISLOADABLE macro

MFC after:  2 weeks
Sponsored by:   DARPA, AFRL

310172 by jmcneill:
Add support for Ingenic JZ4780 SMBus controller.

Reviewed by:kan
Relnotes:   yes
Differential Revision:  https://reviews.freebsd.org/D8793

310171 by dim:
Add __scanflike attributes to the kernel's sscanf() and vsscanf()
declarations.  This should help to catch future mismatches between
format strings and arguments.

MFC after:  1 week

310170 by gonzo:
[spigen] Make "data" part of spigen_transfer optional

Make st_data part of spigen_transfer optional by letting pass zero length
and NULL pointer. SPI controller drivers handle this case fine.

MFC after:  1 week

310160 by lifanov:
retain cc.4.gz man page for Chelsio T6 NICs

This man page was removed in r225583 when cc.4 was renamed to mod_cc.4
With reintroduction of cc.4 "make installworld; make delete-old" was
no longer convergent.

Reported by:Trond Endrestøl
Reviewed by:np, matthew
Approved by:np, matthew (mentor)
Differential Revision:  https://reviews.freebsd.org/D8816

310159 by kib:
Switch from stdatomic.h to atomic.h for kernel.

Apparently stdatomic.h implementation for gcc 4.2 on sparc64 does not
work properly.  This effectively reverts r251803.

Reported and tested by: lidl
Discussed with: ed
Sponsored by:   The FreeBSD Foundation
MFC after:  1 week

310155 by kib:
Fix typo.

MFC after:  3 days



The end of the build log:

[...truncated 53 lines...]
U sys/vm/swap_pager.c
U sys/net/if_lagg.c
U sys/arm/allwinner/clk/aw_debeclk.c
U sys/arm/allwinner/clk/aw_hdmiclk.c
U sys/arm/allwinner/clk/aw_lcdclk.c
U sys/arm/allwinner/clk/aw_mmcclk.c
U sys/arm/allwinner/clk/aw_modclk.c
U sys/arm/allwinner/clk/aw_pll.c
U sys/arm/allwinner/clk/aw_thsclk.c
U sys/amd64/conf/GENERIC
U sys/amd64/conf/MINIMAL
U sys/i386/conf/GENERIC
U sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h
U sys/mips/conf/JZ4780
U sys/mips/ingenic/files.jz4780
AUsys/mips/ingenic/jz4780_smb.c
AUsys/mips/ingenic/jz4780_smb.h
U sys/sys/systm.h
U sys/dev/spibus/spigen.c
U sys/kern/kern_event.c
U Makefile.inc1
U release/scripts/make-pkg-pack

FreeBSD_HEAD_i386 - Build #4384 - Fixed

2016-12-14 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4384 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4384/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4384/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4384/console

Change summaries:

310061 by manu:
Add new compatible string "allwinner,sun7i-a20-mmc".

New upstream DTS is using this now for A20 SoC.

MFC after:  3 days

310058 by hselasky:
Fix initialisation of mlx4_pci_table's .driver_data fields.

MFC after:  1 week
Differential Revision:  https://reviews.freebsd.org/D8791
Sponsored by:   Mellanox Technologies
Submitted by:   Dexuan Cui 

310057 by ed:
Revert accidental change made in r310056.

Because I had to cherry-pick some of my changes in r310051, I
accidentally made a typo when manually applying the rest in r310056.

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4383 - Failure

2016-12-14 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4383 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4383/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4383/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4383/console

Change summaries:

310056 by ed:
Let all FEATURE()s use the same Prometheus metric.

Without this change, every individual FEATURE() declaration would have
an individual metric in Prometheus. Though this wouldn't be harmful, it
would look very cluttered.

By letting it use a single metric with the name of the feature attached
as a label, it also becomes easier to search, as you can apply regex
matching, etc.

Reviewed by:cem
Differential Revision:  https://reviews.freebsd.org/D8775

310055 by ed:
Add a "device_index" label to all sysctls under dev.$driver.$index.

This way it becomes possible to graph a property for all instances of a
single driver. For example, graphing the number of packets across all
USB controllers, the amount of dropped packets on all NICs, etc.

Reviewed by:cem
Differential Revision:  https://reviews.freebsd.org/D8775

310054 by ed:
Attach a "thermal_zone" label to the ACPI thermal zone sysctls.

In order to make Prometheus do graphing/alerting on thermal sensors in a
generic fashion, we should attach the name of the thermal zone device as
a label. That way there is only a single metric for the temperature of a
thermal zone, with its name attached as a label.

Reviewed by:cem
Differential Revision:  https://reviews.freebsd.org/D8775

310053 by ed:
Add labels to sysctls related to clocks.

Sysctls like kern.eventtimer.et.*.quality currently embed the name of
the clock device. This is problematic for the Prometheus metrics
exporter for two reasons:

- Some of those clocks have dashes in their names, which Prometheus
  doesn't allow to be used in metric names.
- It doesn't allow for extracting the same property of all clocks on the
  system from within a single query.

Attach these nodes to have a label, so that the Prometheus metrics
exporter gives these metric a uniform name with the name of the clock
attached as a label.

Reviewed by:cem
Differential Revision:  https://reviews.freebsd.org/D8775

310052 by ed:
Add label annotations to CAM sysctls.

Under kern.cam we have certain sysctls that are per-device, such as the
ones under kern.cam.ada.[0-9]+.*. Add a "device_index" label annotation
to such sysctls, so that the Prometheus metrics exporter will give all
of those metrics the same name. The device number will be added to the
metric name as the "device_index" label.

Reviewed by:cem
Differential Revision:  https://reviews.freebsd.org/D8775

310051 by ed:
Add support for attaching aggregation labels to sysctl objects.

I'm currently working on writing a metrics exporter for the Prometheus
monitoring system to provide access to sysctl metrics. Prometheus and
sysctl have some structural differences:

- sysctl is a tree of string component names.
- Prometheus uses a flat namespace for its metrics, but allows you to
  attach labels with values to them, so that you can do aggregation.

An initial version of my exporter simply translated

hw.acpi.thermal.tz1.temperature

to

sysctl_hw_acpi_thermal_tz1_temperature_celcius

while we should ideally have

sysctl_hw_acpi_thermal_temperature_celcius{thermal_zone="tz1"}

allowing you to graph all thermal zones on a system in one go.

The change presented in this commit adds support for accomplishing this,
by providing the ability to attach labels to nodes. In the example I
gave above, the label "thermal_zone" would be attached to "tz1". As this
is a feature that will only be used very rarely, I decided to not change
the KPI too aggressively.

Discussed on:   hackers@
Reviewed by:cem
Differential Revision:  https://reviews.freebsd.org/D8775

310050 by kib:
Provide non-final but valid PCB pointer for thread0 for duration of
hammer_time().  This makes assembler exception handlers not fault
itself when setting PCB flags, and allow normal kernel trap handler to
get control.  The pointer is reset after FPU parameters are obtained.

Set thread0.td_critnest to 1 for duration of hammer_time() as well.
In particular, page faults at that early stage panic immediately
instead of trying to call not yet operational VM to resolve it.

As result, faults during second half of the hammer_time() execution
have a chance to be reported instead of silent machine reboot or hang.

Sponsored by:   The FreeBSD Foundation
MFC after:  2 weeks



The end of the build log:

[...truncated 149114 lines...]
--- all_subdir_apm ---
ctfconvert -L VERSION -g apm.o
--- apm.kld ---
ld -d -warn-common -r -d -o apm.kld apm.o
ctfmerge -L VERSION -g -o apm.kld apm.o
echo apm_display apm_softc > export_syms
awk -f /usr/src/sys/conf/kmod_syms.awk apm.kld  export_syms | xargs -J% objcopy 
% apm.kld
--- all_subdir_arcmsr ---
--- machine ---
machine -> /usr/src/sys/i386/i

FreeBSD_HEAD_amd64_gcc - Build #1732 - Still Failing

2016-12-14 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1732 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1732/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1732/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1732/console

Change summaries:

310049 by np:
cxgbe(4): Fix the tid range shown for T6 cards in misc.tids.

MFC after:  3 days

310048 by sephe:
hyperv: Implement "enlightened" time counter, which is rdtsc based.

Reviewed by:kib
MFC after:  1 week
Sponsored by:   Microsoft
Differential Revision:  https://reviews.freebsd.org/D8763

310047 by gjb:
- Resize FreeBSD to the size of the OpenStack flavor (growfs).
- Speeds up the boot process by disabling sendmail.
- Allows an user to ssh as root with a public key.
- Make ssh(1) respond faster by disabling DNS lookups.
- Enable DHCP on the vtnet(4) interface.

Note: The CLOUDWARE list has not yet been changed to include the
OpenStack target by default yet.

Submitted by:   Diego Casati
PR: 215258
MFC after:  1 week
Sponsored by:   The FreeBSD Foundation

310046 by jhb:
Add 'const' to fn_name's return type to remove a cast.

310045 by jhb:
Use casts to force an unsigned comparison in db_search_symbol().

On all of our platforms, db_expr_t is a signed integer while
db_addr_t is an unsigned integer value.  db_search_symbol used variables
of type db_expr_t to hold the current offset of the requested address from
the "best" symbol found so far.  This value was initialized to '~0'.
When a new symbol is found from a symbol table, the associated diff for the
new symbol is compared against the existing value as 'if (newdiff < diff)'
to determine if the new symbol had a smaller diff and was thus a closer
match.

On 64-bit MIPS, the '~0' was treated as a negative value (-1).  A lookup
that found a perfect match of an address against a symbol returned a diff
of 0.  However, in signed comparisons, 0 is not less than -1.  As a result,
DDB on 64-bit MIPS never resolved any addresses to symbols.  Workaround
this by using casts to force an unsigned comparison.

Probably the diff returned from db_search_symbol() and X_db_search_symbol()
should be changed to a db_addr_t instead of a db_expr_t as it is an
unsigned value (and is an offset of an address, so should fit in the same
size as an address).

Sponsored by:   DARPA / AFRL

310038 by dteske:
Revert r309918 -- modern POSIX has deprecated -<#>/+<#> syntax

Special thanks to:  jilles

310037 by jhb:
Fix stack traces in DDB for the debugger thread.

When the kernel debugger is entered, makectx() is called to store
appropriate state from the trapframe for the debugger into a global
kdb_pcb used as the thread context of the thread entering the
debugger.  Stack unwinders for DDB called via db_trace_thread() are
supposed to then use this saved context so that the stack trace for
the current thread starts at the location of the event that triggered
debugger entry.

MIPS was instead starting the stack trace of the current thread from
the context of db_trace_thread itself and unwinding back out through
the debugger to the original frame.  Fix a couple of things to bring
MIPS inline with other platforms:
- Fix makectx() to store the PC, SP, and RA in the right portion of
  the PCB used by db_trace_thread().
- Fix db_trace_thread() to always use kdb_thr_ctx() (and thus kdb_pcb
  for the debugger thread).
- Move the logic for tracing curthread from within the current
  function into db_trace_self() to match other architectures.

Sponsored by:   DARPA / AFRL

310036 by jkim:
MFV:r309561

Merge byacc 20161202.

310035 by hrs:
Remove an extra "break" which could incorrectly terminate an
STAILQ_FOREACH() loop when an AF_INET6 rule matched.

Spotted by: cem

310033 by np:
cxgbe(4): Retire t4_bus_space_read_8 and t4_bus_space_write_8.

MFC after:  3 days
Sponsored by:   Chelsio Communications

310032 by glebius:
Zero return value when counter_rate() switches over to next second and
value is positive, but below the limit.

310031 by cem:
linuxkpi: Fix not-found case of linux_pci_find_irq_dev

Linux list_for_each_entry() does not neccessarily end with the iterator
NULL (it may be an offset from NULL if the list member is not the first
element of the member struct).

Reported by:Coverity
CID:1366940
Reviewed by:hselasky@
Sponsored by:   Dell EMC Isilon
Differential Revision:  https://reviews.freebsd.org/D8780

310030 by jhb:
Use register_t instead of uintptr_t for register values in backtraces.

This fixes backtraces from DDB in n32 kernels as uintptr_t is only a
uint32_t.  In particular, the upper 32-bits of each register value were
treated as the register's value breaking both the output of register
values, but also the values of 'ra' and 'sp' required to walk up to the
previous frame.

Sponsored by:   DARPA / AFRL

310029 by jhb:
Fix remove_userlocal_code() for n32.

n32 kernels use a 64-bit sto

FreeBSD_HEAD_amd64_gcc - Build #1731 - Still Failing

2016-12-13 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1731 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1731/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1731/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1731/console

Change summaries:

310018 by mizhka:
[gpiospi] add clock delay to avoid smashing of bits

Submitted by:   Hiroki Mori 
Reviewed by:loos, ray, mizhka
MFC after:  2 weeks
Differential Revision:  https://reviews.freebsd.org/D8749

310017 by mizhka:
[spi] reformat message and ar5315_spi minor fix

This commit corrects print of nomatch (newline was too early) and fix
unit number for new child in ar5315_spi (was 0, now is -1 to calculate it
according to actual system state)

Submitted by:   Hiroki Mori 
Reviewed by:ray, loos, mizhka
MFC after:  2 weeks
Differential Revision:  https://reviews.freebsd.org/D8749

310014 by ed:
Remove the only user of sysctl_add_oid().

My plan is to change this function's prototype at some point in the
future to add a new label argument, which can be used to export all of
sysctl as metrics that can be scraped by Prometheus. Switch over this
caller to use the macro wrapper counterpart.

310013 by cperciva:
Check that blkfront devices have a non-zero number of sectors and a
non-zero sector size.  Such a device would be a virtual disk of zero
bytes; clearly not useful, and not something we should try to attach.

As a fortuitous side effect, checking that these values are non-zero
here results in them not *becoming* zero later on the function.  This
odd behaviour began with r309124 (clang 3.9.0) but is challenging to
debug; making any changes to this function whatsoever seems to affect
the llvm optimizer behaviour enough to make the unexpected zeroing of
the sector_size variable cease.

PR: 215209
Security:   The potential for variables to unexpectedly become zero
has worrying consequences for security in general, but
not so much in this particular context.

310012 by gonzo:
[iMX6] Add compatibility string for GPT timer on i.MX6 Dual

Up until r295436 GPT timer in i.MX6 Dual dts used the same compatiblity
string as i.MX6 Quad. After the sync up with Linux in r295436, GPT timer
stopped getting attached on the i.MX6 Dual

MFC after:  3 days

31 by loos:
Remove a too strict test and instead, just filter the passed flags with the
supported capabilities.

Spotted by: yamori...@yahoo.co.jp (Hiroki Mori)
MFC after:  2 weeks

30 by gonzo:
[iMX6] Fix platform compatibility string for i.MX6 Dual

i.MX6 Dual boot was broken since r308533 because ofw_bus_node_is_compatible
is more strict than fdt_is_compatible and does not accept partial matches

309998 by dteske:
It's completely pointless to replace newlines with space
(this is done automatically for you upon shell expansion)

309997 by dteske:
The flags of a WLAN need to be quoted (they contain things like brackets)

309996 by dteske:
Simplify single-line if statements

309995 by dteske:
Simplify loop by moving predicate to clause

309994 by dteske:
Wordsmithing

309993 by dteske:
Why test $? when you can test the command

309992 by dteske:
Restore previous comment

309991 by dteske:
Both simplify bringup of interface after changes and catch errors in debug

309990 by dteske:
Calculate proper size of menu list dialog

309989 by dteske:
There's an API function for catching errors and displaying them or
logging them to debug output

309988 by dteske:
There's an API function for displaying pauses

309987 by dteske:
There's an API function for displaying yes/no dialogs

309986 by dteske:
There's an API function for displaying errors

309985 by dteske:
Comment

309984 by dteske:
Whitespace alignment

309983 by dteske:
Relying on dialog auto-sizing (width/height/rows = 0) is a mistake
Use the provided API for calculating the appropriate size of menus

309982 by dteske:
Remove unnecessary quotes

309981 by dteske:
Add missing quotes

309980 by dteske:
In awk, if you're going to append a newline to your printf
AND you're going to print only the argument, just use print

309979 by dteske:
This statement has too many backslashes

309978 by dteske:
Neither printf (and as is commonly known) nor print need parens in awk

309977 by dteske:
Whitespace and alignment

309976 by dteske:
You don't need parentheses for awk's printf

309975 by dteske:
Continued resolution of conveluted statement
We shouldn't be coding things like "x || (x && x) || x || x || x ..."

309974 by dteske:
These two error messages have always been backwards since inception

309973 by dteske:
Why use $? when you can use the command itself

309972 by dteske:
If the first ping succeeded, why on Earth should we ping it again?

309971 by dteske:
Start deconstructing a conveluted hunk of code

309970 by dteske:
Remove completely unnecesary parentheses

309969 by dteske:
Why repeat yourself when you can send stde

FreeBSD_HEAD_i386 - Build #4365 - Fixed

2016-12-12 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4365 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4365/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4365/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4365/console

Change summaries:

309945 by dteske:
1 is the default descriptor for redirects without an fd prefix

309944 by dteske:
Fix invalid parameter expansion (change $@ to "$@")

Without quotes, $@ loses its special meanining (see below)

% sh -c 'echo $@' /bin/sh "   1   " "   2   "
1 2
% sh -c 'echo "$@"' /bin/sh "   1   " "   2   "
   1   2

The quotes are required to get ARGV to be unperterped

309942 by dteske:
Allow the script path to contain whitespace and special characters

309941 by dteske:
Use provided API to centralize dialog title strings

309940 by dteske:
Reorder dialog parameters based on commonality for readability

309939 by dteske:
Fix incorrect use of provided API
The result of which was incorrectly sized menu dialogs

309938 by dteske:
Use provided API (change "dialog" to "$DIALOG")

309937 by dteske:
Whitespace (dialog options separated to minimize diffs)

309936 by pfg:
ed(1): Simplify some checks.

The return type for both fread(3) and fwrite(3) cannot be negative, this
renders some checks invalid and variable 'ct' unnecessary.
Also bump 'len' to size_t to avoid signed/unsigned comparison warnings.

309935 by manu:
Use the spibus accessor when applicable.

MFC after:  3 days

309934 by dteske:
Consolidate redirects into here documents, with proper code indentation

309933 by hrs:
- Refactor listening socket list.  All of the listening sockets are
  now maintained in a single linked-list in a transport-independent manner.
- Use queue.h for linked-list structure.
- Use linked-list for AllowedPeers.
- Use getaddrinfo(8) even for Unix Domain sockets.
- Use macros to type-casting from/to struct sockaddr{,_in,_in6}.
- Define fu_* macro for union f_un to shorten the member names.
- Remove an extra #include .
- Add "static" to non-exported symbols.
- !INET support is still incomplete but will be fixed later.

There is no functional change except for some minor debug messages.

309932 by dteske:
Remove an unnecessary "return $?" at end of function

309931 by hrs:
Temporarily backout the previous commit because it was totally broken due to
unresolved merge conflicts.

Pointy hat to:  hrs

309930 by dteske:
Use ternary operator

309929 by mjg:
vfs: use vrefact in getcwd and fchdir

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4350 - Fixed

2016-12-10 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4350 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4350/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4350/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4350/console

Change summaries:

309821 by avos:
rsu: increase Rx buffer size from 8k to 30k.

This is required for USB Rx aggregation
(and fixes 'could not allocate RX mbuf' / few other failures).

While here, reduce the number of Rx buffers from 100 to 1 -
the driver never uses more than one Rx buffer.

Tested with Asus USB-N10.

309818 by def:
Add support for encrypted kernel crash dumps.

Changes include modifications in kernel crash dump routines, dumpon(8) and
savecore(8). A new tool called decryptcore(8) was added.

A new DIOCSKERNELDUMP I/O control was added to send a kernel crash dump
configuration in the diocskerneldump_arg structure to the kernel.
The old DIOCSKERNELDUMP I/O control was renamed to DIOCSKERNELDUMP_FREEBSD11 for
backward ABI compatibility.

dumpon(8) generates an one-time random symmetric key and encrypts it using
an RSA public key in capability mode. Currently only AES-256-CBC is supported
but EKCD was designed to implement support for other algorithms in the future.
The public key is chosen using the -k flag. The dumpon rc(8) script can do this
automatically during startup using the dumppubkey rc.conf(5) variable.  Once the
keys are calculated dumpon sends them to the kernel via DIOCSKERNELDUMP I/O
control.

When the kernel receives the DIOCSKERNELDUMP I/O control it generates a random
IV and sets up the key schedule for the specified algorithm. Each time the
kernel tries to write a crash dump to the dump device, the IV is replaced by
a SHA-256 hash of the previous value. This is intended to make a possible
differential cryptanalysis harder since it is possible to write multiple crash
dumps without reboot by repeating the following commands:
# sysctl debug.kdb.enter=1
db> call doadump(0)
db> continue
# savecore

A kernel dump key consists of an algorithm identifier, an IV and an encrypted
symmetric key. The kernel dump key size is included in a kernel dump header.
The size is an unsigned 32-bit integer and it is aligned to a block size.
The header structure has 512 bytes to match the block size so it was required to
make a panic string 4 bytes shorter to add a new field to the header structure.
If the kernel dump key size in the header is nonzero it is assumed that the
kernel dump key is placed after the first header on the dump device and the core
dump is encrypted.

Separate functions were implemented to write the kernel dump header and the
kernel dump key as they need to be unencrypted. The dump_write function encrypts
data if the kernel was compiled with the EKCD option. Encrypted kernel textdumps
are not supported due to the way they are constructed which makes it impossible
to use the CBC mode for encryption. It should be also noted that textdumps don't
contain sensitive data by design as a user decides what information should be
dumped.

savecore(8) writes the kernel dump key to a key.# file if its size in the header
is nonzero. # is the number of the current core dump.

decryptcore(8) decrypts the core dump using a private RSA key and the kernel
dump key. This is performed by a child process in capability mode.
If the decryption was not successful the parent process removes a partially
decrypted core dump.

Description on how to encrypt crash dumps was added to the decryptcore(8),
dumpon(8), rc.conf(5) and savecore(8) manual pages.

EKCD was tested on amd64 using bhyve and i386, mipsel and sparc64 using QEMU.
The feature still has to be tested on arm and arm64 as it wasn't possible to run
FreeBSD due to the problems with QEMU emulation and lack of hardware.

Designed by:def, pjd
Reviewed by:cem, oshogbo, pjd
Partial review: delphij, emaste, jhb, kib
Approved by:pjd (mentor)
Differential Revision:  https://reviews.freebsd.org/D4712

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4349 - Still Failing

2016-12-10 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4349 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4349/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4349/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4349/console

Change summaries:

309807 by bapt:
Regen after 309805

309806 by avos:
rsu: add TSF field into Rx radiotap.

Tested with Asus USB-N10.

309805 by bapt:
Make WITHOUT_CAPSICUM implying WITHOUT_CASPER

PR: 214562
Reported by:dewa...@heuristicsystems.com.au
MFC after:  2 days



The end of the build log:

Started by an SCM change
Building remotely on kyua1.nyi.freebsd.org (jailer) in workspace 
/jenkins/workspace/FreeBSD_HEAD_i386
Updating svn://svnmir.freebsd.org/base/head at revision 
'2016-12-10T15:14:59.256 +'
U share/man/man5/src.conf.5
U share/mk/src.opts.mk
U sys/dev/usb/wlan/if_rsu.c
U sys/dev/usb/wlan/if_rsureg.h
At revision 309815

No emails were triggered.
[FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson6009483784029193297.sh
+ export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin'
+ export 'jname=FreeBSD_HEAD_i386'
+ echo 'clean up jail FreeBSD_HEAD_i386'
clean up jail FreeBSD_HEAD_i386
+ sudo jail -r FreeBSD_HEAD_i386
+ true
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::101:1 -alias
+ true
+ sudo umount FreeBSD_HEAD_i386/usr/src
+ true
+ sudo umount FreeBSD_HEAD_i386/dev
+ true
+ sudo rm -fr FreeBSD_HEAD_i386
+ sudo chflags -R noschg FreeBSD_HEAD_i386
+ true
+ sudo rm -fr FreeBSD_HEAD_i386
[FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson1800875927140283757.sh
+ export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin'
+ export 'jname=FreeBSD_HEAD_i386'
+ echo env:
env:
+ /usr/bin/env
BUILD_NUMBER=4349
HUDSON_SERVER_COOKIE=0657dbe3541f1b1a
JOB_NAME=FreeBSD_HEAD_i386
LOGNAME=jenkins
JAVA_HOME=/usr/local/openjdk8
SVN_URL=svn://svnmir.freebsd.org/base/head
BUILDER_JAIL_IP=2610:1c1:1:607c::101:1
jname=FreeBSD_HEAD_i386
JENKINS_URL=https://jenkins.FreeBSD.org/
JENKINS_HOME=/usr/local/jenkins
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin
JOB_BASE_NAME=FreeBSD_HEAD_i386
HUDSON_HOME=/usr/local/jenkins
OLDPWD=/
BUILD_ID=4349
BUILDER_NETIF=igb0
JENKINS_SERVER_COOKIE=0657dbe3541f1b1a
PWD=/jenkins/workspace/FreeBSD_HEAD_i386
BUILD_TAG=jenkins-FreeBSD_HEAD_i386-4349
NODE_LABELS=jailer kyua1.nyi.freebsd.org
BUILD_DISPLAY_NAME=#4349
HOME=/jenkins
USER=jenkins
BUILD_URL=https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4349/
SVN_URL_1=svn://svnmir.freebsd.org/base/head
SVN_REVISION=309807
SVN_REVISION_1=309807
BUILDER_JAIL_IP6=2610:1c1:1:607c::101:1
JOB_URL=https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/
SHELL=/bin/sh
HUDSON_URL=https://jenkins.FreeBSD.org/
HUDSON_COOKIE=db6435d5-4748-4b2f-8562-fbad27270463
BUILDER_RESOLV_CONF=nameserver 2610:1c1:1:6002::100\nnameserver 
2610:1c1:1:6002::200\n
WORKSPACE=/jenkins/workspace/FreeBSD_HEAD_i386
NODE_NAME=kyua1.nyi.freebsd.org
EXECUTOR_NUMBER=0
+ echo 'setup jail FreeBSD_HEAD_i386'
setup jail FreeBSD_HEAD_i386
+ fetch -m 
http://ftp.freebsd.org/pub/FreeBSD/releases/i386/i386/10.3-RELEASE/base.txz
+ mkdir FreeBSD_HEAD_i386
+ cd FreeBSD_HEAD_i386
+ sudo tar Jxf ../base.txz
+ cd -
+ sudo mount -t devfs devfs FreeBSD_HEAD_i386/dev
+ sudo devfs -m FreeBSD_HEAD_i386/dev rule -s 4 applyset
+ sudo mount -t nullfs src FreeBSD_HEAD_i386/usr/src
+ printf 'nameserver 2610:1c1:1:6002::100\nnameserver 2610:1c1:1:6002::200\n'
+ sudo tee FreeBSD_HEAD_i386/etc/resolv.conf
nameserver 2610:1c1:1:6002::100
nameserver 2610:1c1:1:6002::200
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::101:1 alias
ifconfig: ioctl (SIOCAIFADDR): File exists
Build step 'Execute shell' marked build as failure
[PostBuildScript] - Execution post build scripts.
[FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson2432644609799819840.sh
+ export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin'
+ export 'jname=FreeBSD_HEAD_i386'
+ echo 'clean up jail FreeBSD_HEAD_i386'
clean up jail FreeBSD_HEAD_i386
+ sudo jail -r FreeBSD_HEAD_i386
jail: "FreeBSD_HEAD_i386" not found
+ true
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::101:1 -alias
ifconfig: ioctl (SIOCDIFADDR): Can't assign requested address
+ true
+ sudo umount FreeBSD_HEAD_i386/usr/src
+ sudo umount FreeBSD_HEAD_i386/dev
+ sudo rm -fr FreeBSD_HEAD_i386
+ true
+ sudo chflags -R noschg FreeBSD_HEAD_i386
+ sudo rm -fr FreeBSD_HEAD_i386
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4348 - Failure

2016-12-10 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4348 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4348/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4348/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4348/console

Change summaries:

309803 by bapt:
Fix pkg groupshow 

PR: 204676
Submitted by:   longw...@incore.de
MFC after:  2 days

309802 by bapt:
Respect WITHOUT_FINGER in src.conf when running make delete-old

PR: 213719
Submitted by:   philippe.mich...@sfr.fr
MFC after:  2 days

309801 by bapt:
Respect WITHOUT_BOOTPD in src.conf when running make delete-old

PR: 213720
Submitted by:   philippe.mich...@sfr.fr
MFC after:  2 days

309800 by bapt:
Respect WITHOUT_BOOTPARAMD in src.conf when running make delete-old

PR: 213721
Submitted by:   philippe.mich...@sfr.fr
MFC after:  2 days

309799 by bapt:
Respect WITHOUT_RBOOTD in src.conf when running make delete-old

PR: 213722
Submitted by:   philippe.mich...@sfr.fr
MFC after:  2 days

309798 by bapt:
Also remove auditdistd files if src.conf has WITHOUT_AUDIT

PR: 213723
Submitted by:   philippe.mich...@sfr.fr
MFC after:  2 days

309797 by bapt:
Add entries to remove timed files with make delete-old if WITHOUT_TIMED is set

PR: 213724
Submitted by:   philippe.mich...@sfr.fr
MFC after:  2 days

309796 by bapt:
Perl is not available in base fix scripts depending on it to use
the version from ports

PR: 215159
Reported by:Anatoly Kamchatnov 
MFC after:  2 days

309795 by bapt:
Update pci ids database to 2016.11.21

MFC after:  2 days



The end of the build log:

Started by an SCM change
Building remotely on kyua1.nyi.freebsd.org (jailer) in workspace 
/jenkins/workspace/FreeBSD_HEAD_i386
Updating svn://svnmir.freebsd.org/base/head at revision 
'2016-12-10T13:15:08.007 +'
U usr.sbin/pw/pw_group.c
U tools/build/mk/OptionalObsoleteFiles.inc
U contrib/groff/contrib/mm/mmroff.pl
U contrib/groff/src/utils/afmtodit/afmtodit.pl
U share/misc/pci_vendors
AUsys/arm64/conf/GENERIC-NODEBUG
U sys/dev/usb/usbdevs
At revision 309803

No emails were triggered.
[FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson3994599091899812800.sh
+ export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin'
+ export 'jname=FreeBSD_HEAD_i386'
+ echo 'clean up jail FreeBSD_HEAD_i386'
clean up jail FreeBSD_HEAD_i386
+ sudo jail -r FreeBSD_HEAD_i386
+ true
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::101:1 -alias
+ true
+ sudo umount FreeBSD_HEAD_i386/usr/src
+ true
+ sudo umount FreeBSD_HEAD_i386/dev
+ true
+ sudo rm -fr FreeBSD_HEAD_i386
+ sudo chflags -R noschg FreeBSD_HEAD_i386
+ true
+ sudo rm -fr FreeBSD_HEAD_i386
[FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson3486433329939738826.sh
+ export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin'
+ export 'jname=FreeBSD_HEAD_i386'
+ echo env:
env:
+ /usr/bin/env
BUILD_NUMBER=4348
HUDSON_SERVER_COOKIE=0657dbe3541f1b1a
JOB_NAME=FreeBSD_HEAD_i386
LOGNAME=jenkins
JAVA_HOME=/usr/local/openjdk8
SVN_URL=svn://svnmir.freebsd.org/base/head
BUILDER_JAIL_IP=2610:1c1:1:607c::101:1
jname=FreeBSD_HEAD_i386
JENKINS_URL=https://jenkins.FreeBSD.org/
JENKINS_HOME=/usr/local/jenkins
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin
JOB_BASE_NAME=FreeBSD_HEAD_i386
HUDSON_HOME=/usr/local/jenkins
OLDPWD=/
BUILD_ID=4348
BUILDER_NETIF=igb0
JENKINS_SERVER_COOKIE=0657dbe3541f1b1a
PWD=/jenkins/workspace/FreeBSD_HEAD_i386
BUILD_TAG=jenkins-FreeBSD_HEAD_i386-4348
NODE_LABELS=jailer kyua1.nyi.freebsd.org
BUILD_DISPLAY_NAME=#4348
HOME=/jenkins
USER=jenkins
BUILD_URL=https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4348/
SVN_URL_1=svn://svnmir.freebsd.org/base/head
SVN_REVISION=309803
SVN_REVISION_1=309803
BUILDER_JAIL_IP6=2610:1c1:1:607c::101:1
JOB_URL=https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/
SHELL=/bin/sh
HUDSON_URL=https://jenkins.FreeBSD.org/
HUDSON_COOKIE=b468931c-06e9-4abf-b3df-cc8f7687f223
BUILDER_RESOLV_CONF=nameserver 2610:1c1:1:6002::100\nnameserver 
2610:1c1:1:6002::200\n
WORKSPACE=/jenkins/workspace/FreeBSD_HEAD_i386
NODE_NAME=kyua1.nyi.freebsd.org
EXECUTOR_NUMBER=0
+ echo 'setup jail FreeBSD_HEAD_i386'
setup jail FreeBSD_HEAD_i386
+ fetch -m 
http://ftp.freebsd.org/pub/FreeBSD/releases/i386/i386/10.3-RELEASE/base.txz
+ mkdir FreeBSD_HEAD_i386
+ cd FreeBSD_HEAD_i386
+ sudo tar Jxf ../base.txz
+ cd -
+ sudo mount -t devfs devfs FreeBSD_HEAD_i386/dev
+ sudo devfs -m FreeBSD_HEAD_i386/dev rule -s 4 applyset
+ sudo mount -t nullfs src FreeBSD_HEAD_i386/usr/src
+ printf 'nameserver 2610:1c1:1:6002::100\nnameserver 2610:1c1:1:6002::200\n'
+ sudo tee FreeBSD_HEAD_i386/etc/resolv.conf
nameserver 2610:1c1:1:6002::100
nameserver 2610:1c1:1:6002::200
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::101:1 alias
ifconfig: ioctl (SIOCAIFADDR): File exists
Build step 'Execute sh

FreeBSD_HEAD_i386 - Build #4342 - Fixed

2016-12-09 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4342 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4342/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4342/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4342/console

Change summaries:

309766 by glebius:
Fix build for 32-bit machines.

Submitted by:   tuexen

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4341 - Failure

2016-12-09 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4341 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4341/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4341/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4341/console

Change summaries:

309752 by emaste:
src.conf.5: regen after r309142 (WITH_LLD_AS_LD knob)

Reported by:Nikolai Lifanov
Sponsored by:   The FreeBSD Foundation

309751 by glebius:
Use acquire write to cr_lock to complement with release write at end
of locked region.

Submitted by:   kib

309750 by markj:
Conditionalize PG_CACHE sysctls on COMPAT_FREEBSD11.

Reviewed by:glebius, imp, jhb
Differential Revision:  https://reviews.freebsd.org/D8736

309749 by markj:
Add a COMPAT_FREEBSD11 kernel option.

Use it wherever COMPAT_FREEBSD10 is currently specified.

Reviewed by:glebius, imp, jhb
Differential Revision:  https://reviews.freebsd.org/D8736

309748 by glebius:
Treat R_X86_64_PLT32 relocs as R_X86_64_PC32.

If we load a binary that is designed to be a library, it produces
relocatable code via assembler directives in the assembly itself
(rather than compiler options).  This emits R_X86_64_PLT32 relocations,
which are not handled by the kernel linker.

Submitted by:   gallatin
Reviewed by:kib

309747 by glebius:
Backout accidentially leaked in r309746 not yet reviewed patch :(

309746 by glebius:
Use counter_ratecheck() in the ICMP rate limiting.

Together with:  rrs, jtl

309745 by glebius:
Provide counter_ratecheck(), a MP-friendly substitution to ppsratecheck().
When rated event happens at a very quick rate, the ppsratecheck() is not
only racy, but also becomes a performance bottleneck.

Together with:  rrs, jtl

309744 by tuexen:
Don't bundle a SACK chunk with a SHUTDOWN chunk if it is not required.

MFC after:  1 week

309743 by tuexen:
Don't send multiple SHUTDOWN chunks in a single packet.

Thanks to Felix Weinrank for making me aware of this issue.

MFC after:  1 week

309739 by br:
Add registers for jz4780 audio and PDMA controllers.

Sponsored by:   DARPA, AFRL



The end of the build log:

[...truncated 219759 lines...]
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -c -O -pipe  -g -nostdinc  -I. -I/usr/src/sys 
-I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include 
opt_global.h  -MD  -MF.depend.ieee80211_ageq.o -MTieee80211_ageq.o -mno-mmx 
-mno-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall 
-Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes 
-Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign 
-D__printf__=__freebsd_kprintf__ -Wmissing-include-dirs 
-fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare 
-Wno-error-empty-body -Wno-error-parentheses-equality 
-Wno-error-unused-function -Wno-error-pointer-sign 
-Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=iso9899:1999 -Werror  
/usr/src/sys/net80211/ieee80211_ageq.c
--- ieee80211_action.o ---
ctfconvert -L VERSION -g ieee80211_action.o
--- ieee80211.o ---
ctfconvert -L VERSION -g ieee80211.o
--- ieee80211_ageq.o ---
ctfconvert -L VERSION -g ieee80211_ageq.o
--- ieee80211_adhoc.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -c -O -pipe  -g -nostdinc  -I. -I/usr/src/sys 
-I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include 
opt_global.h  -MD  -MF.depend.ieee80211_adhoc.o -MTieee80211_adhoc.o -mno-mmx 
-mno-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall 
-Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes 
-Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign 
-D__printf__=__freebsd_kprintf__ -Wmissing-include-dirs 
-fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare 
-Wno-error-empty-body -Wno-error-parentheses-equality 
-Wno-error-unused-function -Wno-error-pointer-sign 
-Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=iso9899:1999 -Werror  
/usr/src/sys/net80211/ieee80211_adhoc.c -Wno-unused-function
--- ieee80211_amrr.o ---
--- ieee80211_crypto.o ---
--- ieee80211_amrr.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -c -O -pipe  -g -nostdinc  -I. -I/usr/src/sys 
-I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include 
opt_global.h  -MD  -MF.depend.ieee80211_amrr.o -MTieee80211_amrr.o -mno-mmx 
-mno-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall 
-Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes 
-Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign 
-D__printf__=__freebsd_kprintf__ -Wmissing-include-dirs 
-fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare 
-Wno-error-empty-body -Wno-error-parentheses-equality 
-Wno-error-unused-function

FreeBSD_HEAD_i386 - Build #4330 - Fixed

2016-12-08 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4330 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4330/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4330/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4330/console

Change summaries:

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4320 - Fixed

2016-12-07 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4320 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4320/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4320/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4320/console

Change summaries:

309667 by delphij:
Fix typo.

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4319 - Failure

2016-12-06 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4319 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4319/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4319/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4319/console

Change summaries:

309666 by np:
cxgbe(4): unsigned short isn't large enough to store link speed (which
is in Mbps) for 100Gbps links.

MFC after:  3 days

309665 by adrian:
[net80211] flesh out more RX phy information.

I'm teaching my ath10k port to communicate up the per-rate / channel width
information I get from the firmware.

The HT40 flag field should just be retired and instead moved to use the
PHY bandwidth field.

309664 by adrian:
[net80211] start refactoring out the "am I a wep / group key!" code.

This is a bunch of pointer arithmetic that is copypasta'ed everywhere.
Let's undo that copypasta.



The end of the build log:

[...truncated 197469 lines...]
ctfmerge -L VERSION -g -o umcs.kld umcs.o
:> export_syms
awk -f /usr/src/sys/conf/kmod_syms.awk umcs.kld  export_syms | xargs -J% 
objcopy % umcs.kld
--- umcs.ko.full ---
ld -Bshareable -d -warn-common -o umcs.ko.full umcs.kld
--- umcs.ko.debug ---
objcopy --only-keep-debug umcs.ko.full umcs.ko.debug
--- umcs.ko ---
objcopy --strip-debug --add-gnu-debuglink=umcs.ko.debug  umcs.ko.full umcs.ko
--- adwlib.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin -c -O -pipe  -g -nostdinc  -I. -I/usr/src/sys 
-I/usr/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include 
opt_global.h  -MD  -MF.depend.adwlib.o -MTadwlib.o -mno-mmx -mno-sse 
-msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall 
-Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes 
-Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign 
-D__printf__=__freebsd_kprintf__ -Wmissing-include-dirs 
-fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare 
-Wno-error-empty-body -Wno-error-parentheses-equality 
-Wno-error-unused-function -Wno-error-pointer-sign 
-Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=iso9899:1999 -Werror  
/usr/src/sys/dev/advansys/adwlib.c
--- modules-all ---
--- all_subdir_usb/umodem ---
ctfconvert -L VERSION -g umodem.o
--- umodem.kld ---
ld -d -warn-common -r -d -o umodem.kld umodem.o
ctfmerge -L VERSION -g -o umodem.kld umodem.o
:> export_syms
awk -f /usr/src/sys/conf/kmod_syms.awk umodem.kld  export_syms | xargs -J% 
objcopy % umodem.kld
--- umodem.ko.full ---
ld -Bshareable -d -warn-common -o umodem.ko.full umodem.kld
--- umodem.ko.debug ---
objcopy --only-keep-debug umodem.ko.full umodem.ko.debug
--- umodem.ko ---
objcopy --strip-debug --add-gnu-debuglink=umodem.ko.debug  umodem.ko.full 
umodem.ko
--- all_subdir_usb/umoscom ---
===> usb/umoscom (all)
--- machine ---
machine -> /usr/src/sys/i386/include
--- x86 ---
x86 -> /usr/src/sys/x86/include
--- opt_bus.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_bus.h opt_bus.h
--- opt_usb.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_usb.h opt_usb.h
--- device_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h
--- bus_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h
--- usb_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/usb/usb_if.m -h
--- usbdevs.h ---
awk -f /usr/src/sys/tools/usbdevs2h.awk /usr/src/sys/dev/usb/usbdevs -h
--- adwlib.o ---
ctfconvert -L VERSION -g adwlib.o
--- modules-all ---
--- all_subdir_vxge ---
--- vxgehal-srpcim.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -DVXGE_HAL_RX_MULTI_POST 
-DVXGE_HAL_TX_MULTI_POST  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE 
-nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include 
/usr/obj/usr/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g 
-I/usr/obj/usr/src/sys/GENERIC  -MD  -MF.depend.vxgehal-srpcim.o 
-MTvxgehal-srpcim.o -mno-mmx -mno-sse -msoft-float -ffreestanding -fwrapv 
-fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual 
-Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ 
-Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas 
-Wno-error-tautological-compare -Wno-error-empty-body 
-Wno-error-parentheses-equality -Wno-error-unused-function 
-Wno-error-pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  
-std=iso9899:1999 -c /usr/src/sys/modules/vxge/../../dev
 /vxge/vxgehal/vxgehal-srpcim.c -o vxgehal-srpcim.o
--- all_subdir_usb ---
--- umoscom.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp 
-B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror 
-D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include 
/usr/obj/usr/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g 
-I/usr

FreeBSD_HEAD_i386 - Build #4293 - Fixed

2016-12-03 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4293 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4293/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4293/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4293/console

Change summaries:

309513 by adrian:
[camcontrol] init ts=0 to quieten gcc.

It "looks" like ts is set to something on success, and not modified on
error.

Checked on IRC with: cem

309504 by dteske:
Fix bug preventing limits(1) from being applied

PR: misc/212493
Differential Revision:  https://reviews.freebsd.org/D8232
Submitted by:   girgen
Reviewed by:adrian
MFC after:  3 days
X-MFC-to:   stable/11

309491 by rpokala:
Build smbios.ko as a module for amd64 and i386

For whatever reason, smapi, smbios, vpd are all under the "bios" directory.
smapi is only for i386, so the entire "bios" directory is only built for
i386. Break smapi out, and make only it i386-specific. Then, build the
"bios" directory for both amd64 and i386.

Reviewed by:imp
MFC after:  1 week
Sponsored by:   Panasas
Differential Revision:  https://reviews.freebsd.org/D8609

309490 by pfg:
Revert r253678, r253661:
Fix a segfault in ctfmerge(1) due to a bug in GCC.

The change was correct and the bug real, but upstream didn't adopt it
and we want to remain in sync. When/if upstream does something about it
we can bring their version.

The bug in question was fixed in GCC 4.9 which is now the default in
FreeBSD's ports. Our native gcc-4.2, which is still in use in some Tier-2
platforms also has a workaround so no end-user should be harmed by the
revert.

309486 by avos:
rtwn: fix bitmap size calculation.

Tested with RTL8188CE, STA mode.

309481 by avos:
rsu: fix frame processing in the Rx path (similar to r292207).

- Fill in Rx radiotap header correctly (for every packet in a chain;
not once per chain).
- Fix rate / flags fields in Rx radiotap.
- Add debug messages for discarded frames.
- Pass received control (< sizeof(struct ieee80211_frame)) frames
to net80211 (if allowed by device filter; cannot happen yet).

Tested with Asus USB-N10.

Differential Revision:  https://reviews.freebsd.org/D5723

309480 by kevlo:
Fix logic error so the R92C_TDECTRL register value is updated correctly.

Reviewed by:avos

309479 by avos:
rsu: remove unused structures / variables.

309478 by bdrewery:
DIRDEPS_BUILD: Fix '/' in group names creating a bad cookie.

This is reworking the change in r296585 but to still properly install
the files.  This limits the change to only the DIRDEPS_BUILD logic
for what it considers the name of the staging set, which is what the
cookie name is based off of.

Sponsored by:   Dell EMC Isilon
MFC after:  1 week

309477 by bdrewery:
Revert r296585.

This broke installing dtrace test files.  It was poorly tested.

Reported by:markj
Pointyhat to:   bdrewery
MFC after:  1 week

309476 by bdrewery:
Create the /usr/lib/include symlink as relative.

This ugly code is done to avoid assuming LIBDIR is 2 components
deep.

Reported by:jhb

309474 by ngie:
Don't build :strvis_locale if VIS_NOLOCALE is undefined

The copy of contrib/libc-vis on ^/stable/10 doesn't contain all of the features
in the ^/stable/11 // ^/head version, including VIS_NOLOCALE. The risk is lower
in conditionally running the test instead of backporting the newer version of
libc-vis

MFC after:  now

309472 by ngie:
Restore pathing for factor(1), which unnecessarily diverged in r278616

factor lives in /usr/games/, not /usr/bin, in NetBSD.

The correct way to handle this is do on-the-fly manipulation of the test
script via ATF_TESTS_SH_SED_, not by modify the pathing directly in
the test script.

This is being done to resolve an unnecessary conflict made when pulling
back ^/head@r309469 (contrib/netbsd-tests update) to ^/stable/10.

No functional change

MFC after:  now

309467 by adrian:
[ath] use the correct AMPDU frame limit for the given node, rather than the 
global config.

This is important in hostap, ibss, (11s at some magical future date, etc)
where different nodes may have smaller limits.

Oops!

MFC after:  1 week
Relnotes:   Yes

309465 by adrian:
[net80211] prepare for 11ac aware NICs that want to know per-vdev channel and 
centre frequencies.

* ic_freq is the centre of the primary channel, not the centre of the
  HT40/HT80/etc channel.  Add a method to access that.
* Add a method to access the centre of the primary channel, including
  knowing the centre of the 5/10/20/40/80, versus the primary channel.
  Ie, it's the centre of the 40, 80, 160MHz channel.
* Add a method to access the centre frequency of the secondary 80MHz
  channel - we don't support VHT yet, but when we do.
* Add methods to access the current channel and the per-dev desired
  channel.  Ideally drivers that do full offload with a per-vap channel
  configuration should use the vap channel, NOT ic_curchan.
  Non-offload drivers that require net802

FreeBSD_HEAD_i386 - Build #4292 - Still Failing

2016-11-18 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4292 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4292/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4292/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4292/console

Change summaries:

308819 by cognet:
Don't assume we're running on a pandaboard if the pandaboard-specific
code is compiled in, use FDT to detect it instead.

308818 by cognet:
Guess the TI chip based on the PLATFORM infos, instead of relying on the
kernel config file.



The end of the build log:

[...truncated 2008 lines...]
objcopy --only-keep-debug soelim.full soelim.debug
--- soelim ---
objcopy --strip-debug --add-gnu-debuglink=soelim.debug  soelim.full soelim
--- _bootstrap-tools-usr.bin/compile_et ---
--- compile_et.debug ---
objcopy --only-keep-debug compile_et.full compile_et.debug
--- compile_et ---
objcopy --strip-debug --add-gnu-debuglink=compile_et.debug  compile_et.full 
compile_et
--- _bootstrap-tools-usr.bin/soelim ---
--- _proginstall ---
sh /usr/src/tools/install.sh  -s -o root -g wheel -m 555   soelim 
/usr/obj/usr/src/tmp/legacy/usr/bin/soelim
sh /usr/src/tools/install.sh  -o root -g wheel -m 444  soelim.debug 
/usr/obj/usr/src/tmp/legacy/usr/lib/debug/usr/bin/soelim.debug
--- _bootstrap-tools-gnu/usr.bin/groff ---
--- lookbib.debug ---
objcopy --only-keep-debug lookbib.full lookbib.debug
--- all_subdir_gnu/usr.bin/groff/src/utils/pfbtops ---
===> gnu/usr.bin/groff/src/utils/pfbtops (all)
--- all_subdir_gnu/usr.bin/groff/src/utils/lookbib ---
--- lookbib ---
objcopy --strip-debug --add-gnu-debuglink=lookbib.debug  lookbib.full lookbib
--- _bootstrap-tools-lib/clang/libllvmsupport ---
--- Path.o ---
c++  -O2 -pipe 
-I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/include 
-I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/tools/clang/include 
-I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support -I. 
-I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/../../lib/clang/include
 -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS 
-D__STDC_CONSTANT_MACROS -fno-strict-aliasing 
-DLLVM_DEFAULT_TARGET_TRIPLE=\"i386-unknown-freebsd12.0\" 
-DLLVM_HOST_TRIPLE=\"i386-unknown-freebsd12.0\" 
-DDEFAULT_SYSROOT=\"/usr/obj/usr/src/tmp\" -MD -MF.depend.Path.o -MTPath.o 
-Qunused-arguments -I/usr/obj/usr/src/tmp/legacy/usr/include  -std=c++11 
-fno-exceptions -fno-rtti -stdlib=libc++ -Wno-c++11-extensions  -c 
/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support/Path.cpp -o 
Path.o
--- _bootstrap-tools-usr.bin/compile_et ---
--- _proginstall ---
sh /usr/src/tools/install.sh  -s -o root -g wheel -m 555   compile_et 
/usr/obj/usr/src/tmp/legacy/usr/bin/compile_et
sh /usr/src/tools/install.sh  -o root -g wheel -m 444  compile_et.debug 
/usr/obj/usr/src/tmp/legacy/usr/lib/debug/usr/bin/compile_et.debug
--- _bootstrap-tools-gnu/usr.bin/groff ---
--- all_subdir_gnu/usr.bin/groff/src/utils/tfmtodit ---
===> gnu/usr.bin/groff/src/utils/tfmtodit (all)
--- all_subdir_gnu/usr.bin/groff/src/utils/pfbtops ---
--- .depend ---
echo pfbtops.full: /usr/lib/libc.a 
/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/groff/src/utils/pfbtops/../../../src/libs/libgroff/libgroff.a
 /usr/obj/usr/src/tmp/legacy/usr/lib/libegacy.a >> .depend
--- pfbtops.o ---
cc  -O2 -pipe  -DHAVE_CONFIG_H 
-I/usr/src/gnu/usr.bin/groff/src/utils/pfbtops/../../../../../../contrib/groff/src/include
 -I/usr/src/gnu/usr.bin/groff/src/utils/pfbtops/../../../src/include -g -MD  
-MF.depend.pfbtops.o -MTpfbtops.o -std=gnu99  -Qunused-arguments  
-I/usr/obj/usr/src/tmp/legacy/usr/include -c 
/usr/src/gnu/usr.bin/groff/src/utils/pfbtops/../../../../../../contrib/groff/src/utils/pfbtops/pfbtops.c
 -o pfbtops.o
--- all_subdir_gnu/usr.bin/groff/src/utils/tfmtodit ---
--- .depend ---
echo tfmtodit.full: /usr/lib/libc.a 
/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/groff/src/utils/tfmtodit/../../../src/libs/libgroff/libgroff.a
 /usr/lib/libm.a /usr/obj/usr/src/tmp/legacy/usr/lib/libegacy.a >> .depend
echo tfmtodit.full: /usr/lib/libc++.a >> .depend
--- tfmtodit.o ---
c++  -O2 -pipe -DHAVE_CONFIG_H 
-I/usr/src/gnu/usr.bin/groff/src/utils/tfmtodit/../../../../../../contrib/groff/src/include
 -I/usr/src/gnu/usr.bin/groff/src/utils/tfmtodit/../../../src/include -g -MD 
-MF.depend.tfmtodit.o -MTtfmtodit.o -Qunused-arguments 
-I/usr/obj/usr/src/tmp/legacy/usr/include  -fno-rtti -fno-exceptions 
-Wno-c++11-extensions  -c 
/usr/src/gnu/usr.bin/groff/src/utils/tfmtodit/../../../../../../contrib/groff/src/utils/tfmtodit/tfmtodit.cpp
 -o tfmtodit.o
--- all_subdir_gnu/usr.bin/groff/src/utils/pfbtops ---
--- pfbtops.full ---
cc -O2 -pipe -DHAVE_CONFIG_H 
-I/usr/src/gnu/usr.bin/groff/src/utils/pfbtops/../../../../../../contrib/groff/src/include
 -I/usr/src/gnu/usr.bin/groff/src/utils/pfbtops/../../../src/include -g 
-std=gnu99 -Qunused-arguments -I/usr/obj/usr/src/tmp/legacy/usr/include  
-static -L/usr/obj/usr/src/tmp/legacy/usr/lib -o pfbtops.full pfb

Build failed in Jenkins: FreeBSD_HEAD #912

2016-11-18 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/912/--
[...truncated 1807 lines...]
objcopy --only-keep-debug slc.full slc.debug
--- slc ---
objcopy --strip-debug --add-gnu-debuglink=slc.debug  slc.full slc
--- _proginstall ---
sh /builds/workspace/FreeBSD_HEAD/src/tools/install.sh  -s -o root -g wheel -m 
555   slc 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/legacy/usr/bin/slc
sh /builds/workspace/FreeBSD_HEAD/src/tools/install.sh  -o root -g wheel -m 444 
 slc.debug 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/legacy/usr/lib/debug/usr/bin/slc.debug
--- _bootstrap-tools-lib/clang/libllvmsupport ---
--- Hashing.o ---
c++  -O2 -pipe 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/tools/clang/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support
 -I. 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/../../lib/clang/include
 -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS 
-D__STDC_CONSTANT_MACROS -fno-strict-aliasing 
-DLLVM_DEFAULT_TARGET_TRIPLE=\"x86_64-unknown-freebsd12.0\" 
-DLLVM_HOST_TRIPLE=\"x86_64-unknown-freebsd12.0\" 
-DDEFAULT_SYSROOT=\"/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp\"
 -MD -MF.depend.Hashing.o -MTHashing.o -Qunused-arguments 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/legacy/usr/include
  -std=c++11 -fno-exceptions -fno-rtti -stdlib=libc++ -Wno-c++11-extensions  -c 
/builds/workspace/FreeBSD_HEAD/src/lib/clan
 g/libllvmsupport/../../../contrib/llvm/lib/Support/Hashing.cpp -o Hashing.o
--- _bootstrap-tools-gnu/usr.bin/groff ---
--- tbl.full ---
c++ -O2 -pipe -DHAVE_CONFIG_H 
-I/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/tbl/../../../../../../contrib/groff/src/include
 
-I/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/tbl/../../../src/include
 -g -Qunused-arguments 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/legacy/usr/include
 -fno-rtti -fno-exceptions -Wno-c++11-extensions  -static 
-L/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/legacy/usr/lib
 -o tbl.full  main.o table.o 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/tbl/../../../src/libs/libgroff/libgroff.a
  -lm -legacy
--- _bootstrap-tools-lib/clang/libllvmsupport ---
--- Host.o ---
c++  -O2 -pipe 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/tools/clang/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support
 -I. 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/../../lib/clang/include
 -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS 
-D__STDC_CONSTANT_MACROS -fno-strict-aliasing 
-DLLVM_DEFAULT_TARGET_TRIPLE=\"x86_64-unknown-freebsd12.0\" 
-DLLVM_HOST_TRIPLE=\"x86_64-unknown-freebsd12.0\" 
-DDEFAULT_SYSROOT=\"/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp\"
 -MD -MF.depend.Host.o -MTHost.o -Qunused-arguments 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/legacy/usr/include
  -std=c++11 -fno-exceptions -fno-rtti -stdlib=libc++ -Wno-c++11-extensions  -c 
/builds/workspace/FreeBSD_HEAD/src/lib/clang/libl
 lvmsupport/../../../contrib/llvm/lib/Support/Host.cpp -o Host.o
--- _bootstrap-tools-gnu/usr.bin/groff ---
--- tbl.debug ---
objcopy --only-keep-debug tbl.full tbl.debug
--- tbl ---
objcopy --strip-debug --add-gnu-debuglink=tbl.debug  tbl.full tbl
--- _bootstrap-tools-usr.bin/compile_et ---
===> usr.bin/compile_et (obj,all,install)
--- obj ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/builds/workspace/FreeBSD_HEAD/src/usr.bin/compile_et
 created for /builds/workspace/FreeBSD_HEAD/src/usr.bin/compile_et
--- parse.c ---
yacc -d -o parse.c 
/builds/workspace/FreeBSD_HEAD/src/usr.bin/compile_et/../../contrib/com_err/parse.y
--- lex.c ---
lex  -olex.c 
/builds/workspace/FreeBSD_HEAD/src/usr.bin/compile_et/../../contrib/com_err/lex.l
--- .depend ---
echo compile_et.full: /usr/lib/libc.a /usr/lib/libroken.a /usr/lib/libcrypt.a 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/builds/workspace/FreeBSD_HEAD/src/kerberos5/lib/libvers/libvers.a
 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/legacy/usr/lib/libegacy.a
 >> .depend
--- compile_et.o ---
cc  -O2 -pipe -I. 
-I/builds/workspace/FreeBSD_HEAD/src/usr.bin/compile_et/../../contrib/com_err  
-g -MD  -MF.depend.compile_et.o -MTcompile_et.o -std=gnu99  -Qunused-arguments 

FreeBSD_HEAD_i386 - Build #4291 - Still Failing

2016-11-18 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4291 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4291/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4291/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4291/console

Change summaries:

308817 by jhibbits:
Fix buildworld

Change the pv_tracked flag to an int, just in case userspace decides to include
this file and defines BOOKE.

Guard this block from unintentional inclusion with ifdef BOOKE.

Reported by:emaste

308816 by cognet:
Convert the omap4 code to use PLATFORM_SMP.

308813 by shurd:
Check link status after init

Because link state change events aren't enabled until the end of init(),
the initial link up event could be missed.  Check the current media status
immediately after enabling the default completion ring interrupt.

Approved by:sbruno
MFC after:  12 days
Sponsored by:   Broadcom Limited



The end of the build log:

[...truncated 2418 lines...]
--- realinstall_subdir_gnu/usr.bin/groff/src/devices/grotty ---
===> gnu/usr.bin/groff/src/devices/grotty (install)
--- _bootstrap-tools-gnu/usr.bin/dtc ---
--- dtc-parser.tab.c ---
yacc -odtc-parser.tab.c -d 
/usr/src/gnu/usr.bin/dtc/../../../contrib/dtc/dtc-parser.y
--- dtc-lexer.lex.c ---
lex -odtc-lexer.lex.c /usr/src/gnu/usr.bin/dtc/../../../contrib/dtc/dtc-lexer.l
--- _bootstrap-tools-gnu/usr.bin/groff ---
--- _proginstall ---
sh /usr/src/tools/install.sh  -s -o root -g wheel -m 555   grotty 
/usr/obj/usr/src/tmp/legacy/usr/bin/grotty
sh /usr/src/tools/install.sh  -o root -g wheel -m 444  grotty.debug 
/usr/obj/usr/src/tmp/legacy/usr/lib/debug/usr/bin/grotty.debug
--- realinstall_subdir_gnu/usr.bin/groff/src/preproc ---
===> gnu/usr.bin/groff/src/preproc (install)
--- realinstall_subdir_gnu/usr.bin/groff/src/preproc/eqn ---
===> gnu/usr.bin/groff/src/preproc/eqn (install)
--- _bootstrap-tools-gnu/usr.bin/dtc ---
--- dtc-parser.tab.o ---
cc  -O2 -pipe  -I. -I/usr/src/gnu/usr.bin/dtc 
-I/usr/src/gnu/usr.bin/dtc/../../../contrib/dtc 
-I/usr/src/gnu/usr.bin/dtc/../../../sys/contrib/libfdt -g  -std=gnu99  
-Qunused-arguments  -I/usr/obj/usr/src/tmp/legacy/usr/include -c 
dtc-parser.tab.c -o dtc-parser.tab.o
--- _bootstrap-tools-gnu/usr.bin/groff ---
--- _proginstall ---
sh /usr/src/tools/install.sh  -s -o root -g wheel -m 555   eqn 
/usr/obj/usr/src/tmp/legacy/usr/bin/eqn
sh /usr/src/tools/install.sh  -o root -g wheel -m 444  eqn.debug 
/usr/obj/usr/src/tmp/legacy/usr/lib/debug/usr/bin/eqn.debug
--- _SCRIPTSINS_neqn ---
sh /usr/src/tools/install.sh  -o root  -g wheel -m 555  neqn  
/usr/obj/usr/src/tmp/legacy/usr/bin/neqn
--- realinstall_subdir_gnu/usr.bin/groff/src/preproc/grn ---
===> gnu/usr.bin/groff/src/preproc/grn (install)
--- _proginstall ---
sh /usr/src/tools/install.sh  -s -o root -g wheel -m 555   grn 
/usr/obj/usr/src/tmp/legacy/usr/bin/grn
sh /usr/src/tools/install.sh  -o root -g wheel -m 444  grn.debug 
/usr/obj/usr/src/tmp/legacy/usr/lib/debug/usr/bin/grn.debug
--- realinstall_subdir_gnu/usr.bin/groff/src/preproc/html ---
===> gnu/usr.bin/groff/src/preproc/html (install)
--- _proginstall ---
sh /usr/src/tools/install.sh  -s -o root -g wheel -m 555   pre-grohtml 
/usr/obj/usr/src/tmp/legacy/usr/bin/pre-grohtml
sh /usr/src/tools/install.sh  -o root -g wheel -m 444  pre-grohtml.debug 
/usr/obj/usr/src/tmp/legacy/usr/lib/debug/usr/bin/pre-grohtml.debug
--- realinstall_subdir_gnu/usr.bin/groff/src/preproc/pic ---
===> gnu/usr.bin/groff/src/preproc/pic (install)
--- _proginstall ---
sh /usr/src/tools/install.sh  -s -o root -g wheel -m 555   pic 
/usr/obj/usr/src/tmp/legacy/usr/bin/pic
sh /usr/src/tools/install.sh  -o root -g wheel -m 444  pic.debug 
/usr/obj/usr/src/tmp/legacy/usr/lib/debug/usr/bin/pic.debug
--- _bootstrap-tools-gnu/usr.bin/dtc ---
--- dtc-lexer.lex.o ---
cc  -O2 -pipe  -I. -I/usr/src/gnu/usr.bin/dtc 
-I/usr/src/gnu/usr.bin/dtc/../../../contrib/dtc 
-I/usr/src/gnu/usr.bin/dtc/../../../sys/contrib/libfdt -g  -std=gnu99  
-Qunused-arguments  -I/usr/obj/usr/src/tmp/legacy/usr/include -c 
dtc-lexer.lex.c -o dtc-lexer.lex.o
--- _bootstrap-tools-gnu/usr.bin/groff ---
--- realinstall_subdir_gnu/usr.bin/groff/src/preproc/refer ---
===> gnu/usr.bin/groff/src/preproc/refer (install)
--- _proginstall ---
sh /usr/src/tools/install.sh  -s -o root -g wheel -m 555   refer 
/usr/obj/usr/src/tmp/legacy/usr/bin/refer
sh /usr/src/tools/install.sh  -o root -g wheel -m 444  refer.debug 
/usr/obj/usr/src/tmp/legacy/usr/lib/debug/usr/bin/refer.debug
--- realinstall_subdir_gnu/usr.bin/groff/src/preproc/tbl ---
===> gnu/usr.bin/groff/src/preproc/tbl (install)
--- _proginstall ---
sh /usr/src/tools/install.sh  -s -o root -g wheel -m 555   tbl 
/usr/obj/usr/src/tmp/legacy/usr/bin/tbl
sh /usr/src/tools/install.sh  -o root -g wheel -m 444  tbl.debug 
/usr/obj/usr/src/tmp/legacy/usr/lib/debug/usr/bin/tbl.debug
--- realinstall_subdir_gnu/usr.bin/groff/src/roff ---
===> gnu/usr.bin/groff/src/roff (install)
--- realinstall_subdi

Build failed in Jenkins: FreeBSD_HEAD #911

2016-11-18 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/911/--
[...truncated 1765 lines...]
echo refer.full: /usr/lib/libc.a 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/refer/../../../src/libs/libbib/libbib.a
 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/refer/../../../src/libs/libgroff/libgroff.a
 /usr/lib/libm.a 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/legacy/usr/lib/libegacy.a
 >> .depend
echo refer.full: /usr/lib/libc++.a >> .depend
--- command.o ---
c++  -O2 -pipe 
-I/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/refer/../../../../../../contrib/groff/src/preproc/refer
 -DHAVE_CONFIG_H 
-I/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/refer/../../../../../../contrib/groff/src/include
 
-I/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/refer/../../../src/include
 -g -MD -MF.depend.command.o -MTcommand.o -Qunused-arguments 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/legacy/usr/include
  -fno-rtti -fno-exceptions -Wno-c++11-extensions  -c 
/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/refer/../../../../../../contrib/groff/src/preproc/refer/command.cpp
 -o command.o
--- all_subdir_gnu/usr.bin/groff/src/preproc/pic ---
--- pic.full ---
c++ -O2 -pipe 
-I/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/pic/../../../../../../contrib/groff/src/preproc/pic
 -I. -DHAVE_CONFIG_H 
-I/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/pic/../../../../../../contrib/groff/src/include
 
-I/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/pic/../../../src/include
 -g -Qunused-arguments 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/legacy/usr/include
 -fno-rtti -fno-exceptions -Wno-c++11-extensions  -static 
-L/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/legacy/usr/lib
 -o pic.full  lex.o main.o object.o pic.o common.o troff.o tex.o 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/pic/../../../src/libs/libgroff/libgroff.a
  -lm -legacy
--- _bootstrap-tools-lib/clang/libllvmsupport ---
--- FoldingSet.o ---
c++  -O2 -pipe 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/tools/clang/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support
 -I. 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/../../lib/clang/include
 -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS 
-D__STDC_CONSTANT_MACROS -fno-strict-aliasing 
-DLLVM_DEFAULT_TARGET_TRIPLE=\"x86_64-unknown-freebsd12.0\" 
-DLLVM_HOST_TRIPLE=\"x86_64-unknown-freebsd12.0\" 
-DDEFAULT_SYSROOT=\"/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp\"
 -MD -MF.depend.FoldingSet.o -MTFoldingSet.o -Qunused-arguments 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/legacy/usr/include
  -std=c++11 -fno-exceptions -fno-rtti -stdlib=libc++ -Wno-c++11-extensions  -c 
/builds/workspace/FreeBSD_HEAD/src/li
 b/clang/libllvmsupport/../../../contrib/llvm/lib/Support/FoldingSet.cpp -o 
FoldingSet.o
--- _bootstrap-tools-gnu/usr.bin/groff ---
--- pic.debug ---
objcopy --only-keep-debug pic.full pic.debug
--- pic ---
objcopy --strip-debug --add-gnu-debuglink=pic.debug  pic.full pic
--- all_subdir_gnu/usr.bin/groff/src/preproc/refer ---
--- label.o ---
c++  -O2 -pipe 
-I/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/refer/../../../../../../contrib/groff/src/preproc/refer
 -DHAVE_CONFIG_H 
-I/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/refer/../../../../../../contrib/groff/src/include
 
-I/builds/workspace/FreeBSD_HEAD/src/gnu/usr.bin/groff/src/preproc/refer/../../../src/include
 -g -MD -MF.depend.label.o -MTlabel.o -Qunused-arguments 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/legacy/usr/include
  -fno-rtti -fno-exceptions -Wno-c++11-extensions  -c label.cpp -o label.o
--- _bootstrap-tools-lib/clang/libllvmsupport ---
--- FormattedStream.o ---
c++  -O2 -pipe 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/tools/clang/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support
 -I. 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libllvmsupport/../../../contrib/llvm/../../lib/clang/include
 -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS 
-D__STDC_CONSTA

FreeBSD_HEAD_i386 - Build #4290 - Failure

2016-11-18 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4290 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4290/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4290/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4290/console

Change summaries:

308812 by adrian:
[ifconfig] remove now duplicate IEEE80211_C_BITS definition; it's now in 
_ieee80211.h .

Reviewed by:avos
Differential Revision:  https://reviews.freebsd.org/D8553

308811 by adrian:
[net80211] shuffle IEEE80211_C and HTC bits over to _ieee80211.h so userland 
can use this.

Reviewed by:avos
Differential Revision:  https://reviews.freebsd.org/D8553

308810 by robak:
Capsicum support for dd(1)

Adds Capsicum sandboxing to dd utility.

Submitted by:   Pawel Biernacki 
Reviewed by:allanjude, emaste, oshogbo
Approved by:oshogbo
Sponsored by:   Mysterious Code Ltd.
Differential Revision:  https://reviews.freebsd.org/D8543



The end of the build log:

[...truncated 1705 lines...]
--- other.o ---
c++  -O2 -pipe 
-I/usr/src/gnu/usr.bin/groff/src/preproc/eqn/../../../../../../contrib/groff/src/preproc/eqn
 -I. -DHAVE_CONFIG_H 
-I/usr/src/gnu/usr.bin/groff/src/preproc/eqn/../../../../../../contrib/groff/src/include
 -I/usr/src/gnu/usr.bin/groff/src/preproc/eqn/../../../src/include -g -MD 
-MF.depend.other.o -MTother.o -Qunused-arguments 
-I/usr/obj/usr/src/tmp/legacy/usr/include  -fno-rtti -fno-exceptions 
-Wno-c++11-extensions  -c 
/usr/src/gnu/usr.bin/groff/src/preproc/eqn/../../../../../../contrib/groff/src/preproc/eqn/other.cpp
 -o other.o
--- all_subdir_gnu/usr.bin/groff/src/preproc/grn ---
--- main.o ---
c++  -O2 -pipe -DHAVE_CONFIG_H 
-I/usr/src/gnu/usr.bin/groff/src/preproc/grn/../../../../../../contrib/groff/src/include
 -I/usr/src/gnu/usr.bin/groff/src/preproc/grn/../../../src/include -g -MD 
-MF.depend.main.o -MTmain.o -Qunused-arguments 
-I/usr/obj/usr/src/tmp/legacy/usr/include  -fno-rtti -fno-exceptions 
-Wno-c++11-extensions  -c 
/usr/src/gnu/usr.bin/groff/src/preproc/grn/../../../../../../contrib/groff/src/preproc/grn/main.cpp
 -o main.o
--- _bootstrap-tools-lib/clang/libllvmsupport ---
--- IntrusiveRefCntPtr.o ---
c++  -O2 -pipe 
-I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/include 
-I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/tools/clang/include 
-I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support -I. 
-I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/../../lib/clang/include
 -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS 
-D__STDC_CONSTANT_MACROS -fno-strict-aliasing 
-DLLVM_DEFAULT_TARGET_TRIPLE=\"i386-unknown-freebsd12.0\" 
-DLLVM_HOST_TRIPLE=\"i386-unknown-freebsd12.0\" 
-DDEFAULT_SYSROOT=\"/usr/obj/usr/src/tmp\" -MD -MF.depend.IntrusiveRefCntPtr.o 
-MTIntrusiveRefCntPtr.o -Qunused-arguments 
-I/usr/obj/usr/src/tmp/legacy/usr/include  -std=c++11 -fno-exceptions -fno-rtti 
-stdlib=libc++ -Wno-c++11-extensions  -c 
/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support/IntrusiveRefCntPtr.cpp
 -o IntrusiveRefCntPtr.o
--- _bootstrap-tools-gnu/usr.bin/groff ---
--- all_subdir_gnu/usr.bin/groff/src/preproc/eqn ---
--- delim.o ---
c++  -O2 -pipe 
-I/usr/src/gnu/usr.bin/groff/src/preproc/eqn/../../../../../../contrib/groff/src/preproc/eqn
 -I. -DHAVE_CONFIG_H 
-I/usr/src/gnu/usr.bin/groff/src/preproc/eqn/../../../../../../contrib/groff/src/include
 -I/usr/src/gnu/usr.bin/groff/src/preproc/eqn/../../../src/include -g -MD 
-MF.depend.delim.o -MTdelim.o -Qunused-arguments 
-I/usr/obj/usr/src/tmp/legacy/usr/include  -fno-rtti -fno-exceptions 
-Wno-c++11-extensions  -c 
/usr/src/gnu/usr.bin/groff/src/preproc/eqn/../../../../../../contrib/groff/src/preproc/eqn/delim.cpp
 -o delim.o
--- all_subdir_gnu/usr.bin/groff/src/preproc/grn ---
--- grn.full ---
c++ -O2 -pipe -DHAVE_CONFIG_H 
-I/usr/src/gnu/usr.bin/groff/src/preproc/grn/../../../../../../contrib/groff/src/include
 -I/usr/src/gnu/usr.bin/groff/src/preproc/grn/../../../src/include -g 
-Qunused-arguments -I/usr/obj/usr/src/tmp/legacy/usr/include -fno-rtti 
-fno-exceptions -Wno-c++11-extensions  -static 
-L/usr/obj/usr/src/tmp/legacy/usr/lib -o grn.full  hdb.o hpoint.o hgraph.o 
main.o 
/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/groff/src/preproc/grn/../../../src/libs/libgroff/libgroff.a
  -lm -legacy
--- _bootstrap-tools-lib/clang/libllvmsupport ---
--- JamCRC.o ---
c++  -O2 -pipe 
-I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/include 
-I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/tools/clang/include 
-I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/lib/Support -I. 
-I/usr/src/lib/clang/libllvmsupport/../../../contrib/llvm/../../lib/clang/include
 -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS 
-D__STDC_CONSTANT_MACROS -fno-strict-aliasing 
-DLLVM_DEFAULT_TARGET_TRIPLE=\"i386-unknown-freebsd12.0\" 
-DLLVM_HOST_TRIPLE=\"i386-unknown-freebsd12.0\" 
-DDEFAULT_SYSROOT=\"/usr/obj/usr/src/tmp\" -MD -MF.depend.JamCRC.o -MTJam

Jenkins build is back to normal : FreeBSD_HEAD_sparc64 #416

2016-11-18 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_sparc64/416/
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_amd64_gcc - Build #1718 - Fixed

2016-11-18 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1718 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1718/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1718/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1718/console

Change summaries:

308799 by dexuan:
fix share/man/man4/Makefile for hv_ata_pci_disengage.4

We need to remove the line since we removed the related manual just now.

Reviewed by:sephe
Approved by:sephe (mentor)
MFC after:  1 week
Sponsored by:   Microsoft

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_amd64_gcc - Build #1716 - Failure

2016-11-18 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1716 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1716/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1716/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1716/console

Change summaries:

308792 by sbruno:
iflib updates and fixes:
-reset gen on down
-initialize admin task statically
-drain mp_ring on down
-don't drop context lock on stop
-reset error stats on down
-fix typo in min_latency sysctl
-return ENOBUFS from if_transmit if the driver isn't running or the link is 
down

Submitted by:   mm...@nextbsd.org
Reviewed by:shurd
MFC after:  2 days
Sponsored by:   Isilon and Limelight Networks
Differential Revision:  https://reviews.freebsd.org/D8558

308791 by markj:
Support fetching RFLAGS in fasttrap_getreg().

MFC after:  1 week

308790 by rstone:
Add a dtrace script for collecting schedgraph data

308789 by glebius:
If FreeBSD source tree is a subproject of a bigger project, then .git or
.hg may reside above FreeBSD sources root.  Provide function findvcs()
that will climb up and seek for presence of a VCS directory.

Reviewed by:imp (earlier version of the patch)

308788 by bdrewery:
Cleanup some leftovers from '-s' removal in r302792.

MFC after:  2 weeks
Sponsored by:   Dell EMC Isilon

308787 by shurd:
Add missing newline in error mesage

Approved by:davidch
MFC after:  13 days
Sponsored by:   Broadcom Corporation

308786 by jilles:
rc.subr: Swap checks so we only fork sysctl if *_oomprotect is set.

308785 by ivadasz:
[net80211] Don't check bgscanidle setting in net80211 for full-offload scan.

If full-offload scan is used, the NIC driver (or rather the firmware of
the NIC) should take care of interrupting and continuing the background
scan. So net80211 should ignore the vap->iv_bgscanidle setting then, instead
the NIC driver might look at this setting and pass it on to the firmware
in some way if possible.

Since full-offload scans won't be explicitly interrupted by net80211, it
also doesn't really make sense to check the vap->iv_bgscanidle condition
in that case, before starting a background scan. If the NIC driver
advertises background scan support and full-offload scanning, the firmware
should be able to execute that scan without interfering too much with our
data traffic.

Reviewed by:adrian, avos
Approved by:adrian (mentor)
Differential Revision:  https://reviews.freebsd.org/D8539

308784 by glebius:
Add flag SF_USER_READAHEAD to sendfile(2).  When specified, the syscall won't
do any speculations about readahead, and use exactly the amount of readahead
specified by user.  E.g. setting SF_FLAGS(0, SF_USER_READAHEAD) will guarantee
that no readahead at all will be performed.

308783 by glebius:
Use bogus_page to properly reduce number of I/Os in sendfile(2).  The new
sendfile_swapin() loop works this way:

- Find first invalid page in the request.
- Do vm_pager_has_page() and get count of pages, that can be taken in
  single I/O.
- Trim valid pages from the end of the request.
- Cycle through the request and substitute to bogus_page all valid
  pages that are in the middle of the request.
- After I/O launched (pager copies array of pages into buf(9), it
  is important to restore proper page pointers with help vm_page_lookup().

Count bogus pages used and report them in sendfile stats.

308782 by mav:
After some ZIL changes 6 years ago zil_slog_limit got partially broken
due to zl_itx_list_sz not updated when async itx'es upgraded to sync.
Actually because of other changes about that time zl_itx_list_sz is not
really required to implement the functionality, so this patch removes
some unneeded broken code and variables.

Original idea of zil_slog_limit was to reduce chance of SLOG abuse by
single heavy logger, that increased latency for other (more latency critical)
loggers, by pushing heavy log out into the main pool instead of SLOG. Beside
huge latency increase for heavy writers, this implementation caused double
write of all data, since the log records were explicitly prepared for SLOG.
Since we now have I/O scheduler, I've found it can be much more efficient
to reduce priority of heavy logger SLOG writes from ZIO_PRIORITY_SYNC_WRITE
to ZIO_PRIORITY_ASYNC_WRITE, while still leave them on SLOG.

Existing ZIL implementation had problem with space efficiency when it
has to write large chunks of data into log blocks of limited size. In some
cases efficiency stopped to almost as low as 50%. In case of ZIL stored on
spinning rust, that also reduced log write speed in half, since head had to
uselessly fly over allocated but not written areas. This change improves
the situation by offloading problematic operations from z*_log_write() to
zil_lwb_commit(), which knows real situation of log blocks allocation and
can split large requests into pieces much more efficiently. Also as side
effect it removes one of two

Build failed in Jenkins: FreeBSD_HEAD_sparc64 #415

2016-11-18 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_sparc64/415/--
[...truncated 124123 lines...]
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_cond_init.3 > 
pthread_cond_init.3.gz
--- pthread_cond_signal.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_cond_signal.3 
> pthread_cond_signal.3.gz
--- all_subdir_lib ---
--- all_subdir_lib/libbluetooth ---
===> lib/libbluetooth (all)
--- all_subdir_share ---
--- pthread_cond_timedwait.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_cond_timedwait.3
 > pthread_cond_timedwait.3.gz
--- pthread_cond_wait.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_cond_wait.3 > 
pthread_cond_wait.3.gz
--- pthread_create.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_create.3 > 
pthread_create.3.gz
--- pthread_detach.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_detach.3 > 
pthread_detach.3.gz
--- pthread_equal.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_equal.3 > 
pthread_equal.3.gz
--- pthread_exit.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_exit.3 > 
pthread_exit.3.gz
--- all_subdir_lib ---
--- bluetooth.po ---
--- all_subdir_share ---
--- pthread_getconcurrency.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_getconcurrency.3
 > pthread_getconcurrency.3.gz
--- all_subdir_lib ---
cc -isystem 
/builds/workspace/FreeBSD_HEAD_sparc64/obj/sparc64.sparc64/builds/workspace/FreeBSD_HEAD_sparc64/src/tmp/usr/include
 
-L/builds/workspace/FreeBSD_HEAD_sparc64/obj/sparc64.sparc64/builds/workspace/FreeBSD_HEAD_sparc64/src/tmp/usr/lib
 
-B/builds/workspace/FreeBSD_HEAD_sparc64/obj/sparc64.sparc64/builds/workspace/FreeBSD_HEAD_sparc64/src/tmp/usr/lib
 
--sysroot=/builds/workspace/FreeBSD_HEAD_sparc64/obj/sparc64.sparc64/builds/workspace/FreeBSD_HEAD_sparc64/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD_sparc64/obj/sparc64.sparc64/builds/workspace/FreeBSD_HEAD_sparc64/src/tmp/usr/bin
 -pg  -O2 -pipe -I/builds/workspace/FreeBSD_HEAD_sparc64/src/lib/libbluetooth 
-I/builds/workspace/FreeBSD_HEAD_sparc64/src/lib/libbluetooth/../../sys   -MD  
-MF.depend.bluetooth.po -MTbluetooth.po -std=gnu99 -fstack-protector-strong 
-Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized 
-Wno-pointer-sign -c 
/builds/workspace/FreeBSD_HEAD_sparc64/src/lib/libbluetooth/bluetooth.c -o 
bluetooth.p
 o
--- all_subdir_share ---
--- pthread_getcpuclockid.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_getcpuclockid.3
 > pthread_getcpuclockid.3.gz
--- pthread_getspecific.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_getspecific.3 
> pthread_getspecific.3.gz
--- pthread_getthreadid_np.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_getthreadid_np.3
 > pthread_getthreadid_np.3.gz
--- pthread_join.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_join.3 > 
pthread_join.3.gz
--- pthread_key_create.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_key_create.3 
> pthread_key_create.3.gz
--- pthread_key_delete.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_key_delete.3 
> pthread_key_delete.3.gz
--- pthread_kill.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_kill.3 > 
pthread_kill.3.gz
--- pthread_main_np.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_main_np.3 > 
pthread_main_np.3.gz
--- pthread_multi_np.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_multi_np.3 > 
pthread_multi_np.3.gz
--- pthread_mutexattr.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_mutexattr.3 > 
pthread_mutexattr.3.gz
--- pthread_mutexattr_getkind_np.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_mutexattr_getkind_np.3
 > pthread_mutexattr_getkind_np.3.gz
--- pthread_mutex_consistent.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_mutex_consistent.3
 > pthread_mutex_consistent.3.gz
--- pthread_mutex_destroy.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_mutex_destroy.3
 > pthread_mutex_destroy.3.gz
--- pthread_mutex_init.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_mutex_init.3 
> pthread_mutex_init.3.gz
--- pthread_mutex_lock.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthread_mutex_lock.3 
> pthread_mutex_lock.3.gz
--- pthread_mutex_timedlock.3.gz ---
gzip -cn 
/builds/workspace/FreeBSD_HEAD_sparc64/src/share/man/man3/pthr

FreeBSD_HEAD_amd64_gcc - Build #1717 - Still Failing

2016-11-18 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1717 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1717/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1717/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1717/console

Change summaries:

308798 by dexuan:
remove the hv_ata_pci_disengage(4) manual

A few months ago, we removed the driver, which was not necessary any longer.

Reviewed by:sephe
Approved by:sephe (mentor)
MFC after:  1 week
Sponsored by:   Microsoft

308797 by dexuan:
update the hv_vmbus(4) manual by adding a dependency on pci

We enhanced the vmbus driver to support PCIe pass-through recently.

Reviewed by:sephe
Approved by:sephe (mentor)
MFC after:  1 week
Sponsored by:   Microsoft

308795 by dexuan:
hyperv/pcib: change the file name: pcib.c -> vmbus_pcib.c

This makes the file name and the variable naming in the file consistent.

Reviewed by:sephe
Approved by:sephe (mentor)
MFC after:  1 week
Sponsored by:   Microsoft

308794 by dexuan:
hyperv/vmbus,pcib: Add MODULE_DEPEND on pci

We'd better add this dependency explicitly, though usually the pci
driver is built into the kernel by default.

Reviewed by:sephe
Approved by:sephe (mentor)
MFC after:  1 week
Sponsored by:   Microsoft

308793 by dexuan:
hyperv/pcib: Fix the build for some kernel configs

Add the dependency on pci explicitly for the pcib and vmbus drivers.
The related Makefiles are updated accordingly too.

Reviewed by:sephe
Approved by:sephe (mentor)
MFC after:  1 week
Sponsored by:   Microsoft



The end of the build log:

[...truncated 146250 lines...]
--- pthread_attr_get_np.3.gz ---
gzip -cn /builds/FreeBSD_HEAD_amd64_gcc/share/man/man3/pthread_attr_get_np.3 > 
pthread_attr_get_np.3.gz
--- pthread_attr_setcreatesuspend_np.3.gz ---
gzip -cn 
/builds/FreeBSD_HEAD_amd64_gcc/share/man/man3/pthread_attr_setcreatesuspend_np.3
 > pthread_attr_setcreatesuspend_np.3.gz
--- pthread_barrierattr.3.gz ---
gzip -cn /builds/FreeBSD_HEAD_amd64_gcc/share/man/man3/pthread_barrierattr.3 > 
pthread_barrierattr.3.gz
--- pthread_barrier_destroy.3.gz ---
gzip -cn 
/builds/FreeBSD_HEAD_amd64_gcc/share/man/man3/pthread_barrier_destroy.3 > 
pthread_barrier_destroy.3.gz
--- all_subdir_sbin ---
--- ipf_l.o ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include
 -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib 
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp 
-B/usr/local/x86_64-freebsd/bin/  -O2 -pipe -I. -DIPFILTER_BPF -DHAS_SYS_MD5_H  
 -I/builds/FreeBSD_HEAD_amd64_gcc/sbin/ipf/ipf/../../../contrib/ipfilter 
-I/builds/FreeBSD_HEAD_amd64_gcc/sbin/ipf/ipf/../../../contrib/ipfilter/tools 
-I/builds/FreeBSD_HEAD_amd64_gcc/sbin/ipf/ipf/../../../sys 
-I/builds/FreeBSD_HEAD_amd64_gcc/sbin/ipf/ipf/../../../sys/contrib/ipfilter 
-DSTATETOP -D__UIO_EXPOSE -DUSE_INET6 -g -MD  -MF.depend.ipf_l.o -MTipf_l.o 
-std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k 
-Wno-uninitialized -Wno-pointer-sign -Wno-format -Wno-error=address 
-Wno-error=array-bounds -Wno-error=attri
 butes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c ipf_l.c -o ipf_l.o
--- all_subdir_share ---
--- pthread_cancel.3.gz ---
gzip -cn /builds/FreeBSD_HEAD_amd64_gcc/share/man/man3/pthread_cancel.3 > 
pthread_cancel.3.gz
--- pthread_cleanup_pop.3.gz ---
gzip -cn /builds/FreeBSD_HEAD_amd64_gcc/share/man/man3/pthread_cleanup_pop.3 > 
pthread_cleanup_pop.3.gz
--- pthread_cleanup_push.3.gz ---
gzip -cn /builds/FreeBSD_HEAD_amd64_gcc/share/man/man3/pthread_cleanup_push.3 > 
pthread_cleanup_push.3.gz
--- pthread_condattr.3.gz ---
gzip -cn /builds/FreeBSD_HEAD_amd64_gcc/share/man/man3/pthread_condattr.3 > 
pthread_condattr.3.gz
--- pthread_cond_broadcast.3.gz ---
gzip -cn /builds/FreeBSD_HEAD_amd64_gcc/share/man/man3/pthread_cond_broadcast.3 
> pthread_cond_broadcast.3.gz
--- pthread_cond_destroy.3.gz ---
gzip -cn /builds/FreeBSD_HEAD_amd64_gcc/share/man/man3/pthread_cond_destroy.3 > 
pthread_cond_destroy.3.gz
--- pthread_cond_init.3.gz ---
gzip -cn /builds/FreeBSD_HEAD_amd64_gcc/share/man/man3/pthread_cond_init.3 > 
pthread_cond_init.3.gz
--- pthread_cond_signal.3.gz ---
gzip -cn /builds/FreeBSD_HEAD_amd64_gcc/share/man/man3/pthread_cond_signal.3 > 
pthread_cond_signal.3.gz
--- pthread_cond_timedwait.3.gz ---
gzip -cn /builds/FreeBSD_HEAD_amd64_gcc/share/man/man3/pthread_cond_timedwait.3 
> pthread_cond_timedwait.3.gz
--- pthread_

Jenkins build is back to normal : FreeBSD_HEAD #906

2016-11-17 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/906/
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Build failed in Jenkins: FreeBSD_HEAD #905

2016-11-17 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/905/--
[...truncated 276586 lines...]
--- bus_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/kern/bus_if.m -h
--- hwpmc_logging.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -fno-common -g 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
  -MD  -MF.depend.hwpmc_logging.o -MThwpmc_logging.o -mcmodel=kernel 
-mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables 
-ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls 
-Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ 
-Wmissing-inclu
 de-dirs -fdiagnostics-show-option -Wno-unknown-pragmas 
-Wno-error-tautological-compare -Wno-error-empty-body 
-Wno-error-parentheses-equality -Wno-error-unused-function 
-Wno-error-pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  
-std=iso9899:1999 -c 
/builds/workspace/FreeBSD_HEAD/src/sys/modules/hwpmc/../../dev/hwpmc/hwpmc_logging.c
 -o hwpmc_logging.o
--- all_subdir_geom ---
--- all_subdir_geom/geom_raid3 ---
ctfconvert -L VERSION -g g_raid3.o
--- geom_raid3.ko.full ---
ld -d -warn-common -r -d -o geom_raid3.ko.full g_raid3.o g_raid3_ctl.o
ctfmerge -L VERSION -g -o geom_raid3.ko.full g_raid3.o g_raid3_ctl.o
:> export_syms
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/conf/kmod_syms.awk 
geom_raid3.ko.full  export_syms | xargs -J% objcopy % geom_raid3.ko.full
--- geom_raid3.ko.debug ---
objcopy --only-keep-debug geom_raid3.ko.full geom_raid3.ko.debug
--- geom_raid3.ko ---
objcopy --strip-debug --add-gnu-debuglink=geom_raid3.ko.debug  
geom_raid3.ko.full geom_raid3.ko
--- all_subdir_hyperv ---
===> hyperv (all)
--- all_subdir_hyperv/vmbus ---
===> hyperv/vmbus (all)
--- machine ---
machine -> /builds/workspace/FreeBSD_HEAD/src/sys/amd64/include
--- x86 ---
x86 -> /builds/workspace/FreeBSD_HEAD/src/sys/x86/include
--- opt_acpi.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_acpi.h
 opt_acpi.h
--- vmbus_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/dev/hyperv/vmbus/vmbus_if.m -h
--- opt_kstack_pages.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_kstack_pages.h
 opt_kstack_pages.h
--- opt_nfs.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_nfs.h
 opt_nfs.h
--- opt_hwpmc_hooks.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_hwpmc_hooks.h
 opt_hwpmc_hooks.h
--- opt_compat.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_compat.h
 opt_compat.h
--- vmbus_if.c ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/dev/hyperv/vmbus/vmbus_if.m -c
--- acpi_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/dev/acpica/acpi_if.m -h
--- bus_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/kern/bus_if.m -h
--- device_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/kern/device_if.m -h
--- genassym.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
 -c -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc 
-I/builds/workspace/FreeBSD_HEAD/src/sys/modules/hyperv/vmbus/../../../dev/hyperv/include
 
-I/builds/workspace/FreeBSD_HEAD/src/sys/modules/hyperv/vmbus/../../../dev/hyperv/vmbus
 -DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -g -fno-omit-frame-pointer 
-mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
 -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float 
-fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector 
-gdwarf-2 -Wall -Wredundant-decls -Wnested-extern

Build failed in Jenkins: FreeBSD_HEAD #904

2016-11-17 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/904/--
[...truncated 276138 lines...]
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -fno-common -g 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
  -MD  -MF.depend.g_part_pc98.o -MTg_part_pc98.o -mcmodel=kernel -mno-red-zone 
-mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding 
-fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual 
-Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ -Wmissing-include-d
 irs -fdiagnostics-show-option -Wno-unknown-pragmas 
-Wno-error-tautological-compare -Wno-error-empty-body 
-Wno-error-parentheses-equality -Wno-error-unused-function 
-Wno-error-pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  
-std=iso9899:1999 -c 
/builds/workspace/FreeBSD_HEAD/src/sys/modules/geom/geom_part/geom_part_pc98/../../../../geom/part/g_part_pc98.c
 -o g_part_pc98.o
--- all_subdir_drm2 ---
--- radeonkms.ko.full ---
ld -d -warn-common -r -d -o radeonkms.ko.full radeon_acpi.o radeon_agp.o 
radeon_asic.o radeon_atombios.o radeon_benchmark.o radeon_bios.o 
radeon_clocks.o radeon_combios.o radeon_connectors.o radeon_cp.o radeon_cs.o 
radeon_cursor.o radeon_device.o radeon_display.o radeon_drv.o radeon_encoders.o 
radeon_fb.o radeon_fence.o radeon_gart.o radeon_gem.o radeon_i2c.o 
radeon_ioc32.o radeon_irq.o radeon_irq_kms.o radeon_kms.o radeon_legacy_crtc.o 
radeon_legacy_encoders.o radeon_legacy_tv.o radeon_mem.o radeon_object.o 
radeon_pm.o radeon_ring.o radeon_sa.o radeon_semaphore.o radeon_state.o 
radeon_test.o radeon_ttm.o atom.o atombios_crtc.o atombios_dp.o 
atombios_encoders.o atombios_i2c.o r100.o r200.o r300.o r300_cmdbuf.o r420.o 
rs400.o rs600.o rs690.o rv515.o r520.o r600.o r600_audio.o r600_blit.o 
r600_blit_kms.o r600_blit_shaders.o r600_cp.o r600_cs.o r600_hdmi.o rv770.o 
evergreen.o evergreen_blit_kms.o evergreen_blit_shaders.o evergreen_cs.o 
evergreen_hdmi.o cayman_blit_shaders.o ni.o si.o si
 _blit_shaders.o
--- all_subdir_geom ---
--- all_subdir_geom/geom_raid ---
ctfconvert -L VERSION -g g_raid_md_if.o
--- all_subdir_drm2 ---
ctfmerge -L VERSION -g -o radeonkms.ko.full radeon_acpi.o radeon_agp.o 
radeon_asic.o radeon_atombios.o radeon_benchmark.o radeon_bios.o 
radeon_clocks.o radeon_combios.o radeon_connectors.o radeon_cp.o radeon_cs.o 
radeon_cursor.o radeon_device.o radeon_display.o radeon_drv.o radeon_encoders.o 
radeon_fb.o radeon_fence.o radeon_gart.o radeon_gem.o radeon_i2c.o 
radeon_ioc32.o radeon_irq.o radeon_irq_kms.o radeon_kms.o radeon_legacy_crtc.o 
radeon_legacy_encoders.o radeon_legacy_tv.o radeon_mem.o radeon_object.o 
radeon_pm.o radeon_ring.o radeon_sa.o radeon_semaphore.o radeon_state.o 
radeon_test.o radeon_ttm.o atom.o atombios_crtc.o atombios_dp.o 
atombios_encoders.o atombios_i2c.o r100.o r200.o r300.o r300_cmdbuf.o r420.o 
rs400.o rs600.o rs690.o rv515.o r520.o r600.o r600_audio.o r600_blit.o 
r600_blit_kms.o r600_blit_shaders.o r600_cp.o r600_cs.o r600_hdmi.o rv770.o 
evergreen.o evergreen_blit_kms.o evergreen_blit_shaders.o evergreen_cs.o 
evergreen_hdmi.o cayman_blit_shaders.o ni.o si.o si_b
 lit_shaders.o
--- all_subdir_geom ---
--- g_raid_tr_if.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -fno-common -g 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
  -MD  -MF.depend.g_raid_tr_if.o -MTg_raid_tr_if.o -mcmodel=kernel 
-mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables 
-ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls 
-Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ 
-Wmissing-include
 -dirs -fdiagnostics-show-option -Wno-unknown-pragmas 
-Wno-error-tautological-compare -Wno-error-empty-body 
-Wno-error-parentheses-equality -Wno-error-unused-function 
-Wno-e

Build failed in Jenkins: FreeBSD_HEAD #903

2016-11-17 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/903/--
[...truncated 276010 lines...]
--- all_subdir_hptrr ---
--- hptrr_config.o ---
ctfconvert -L VERSION -g hptrr_config.o
--- all_subdir_hyperv ---
--- machine ---
--- all_subdir_hptrr ---
--- hptrr.ko.full ---
--- all_subdir_hyperv ---
machine -> /builds/workspace/FreeBSD_HEAD/src/sys/amd64/include
--- all_subdir_hptrr ---
ld -d -warn-common -r -d -o hptrr.ko.full hptrr_lib.o hptrr_os_bsd.o 
hptrr_osm_bsd.o hptrr_config.o
--- all_subdir_hyperv ---
--- x86 ---
x86 -> /builds/workspace/FreeBSD_HEAD/src/sys/x86/include
--- opt_acpi.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_acpi.h
 opt_acpi.h
--- all_subdir_hptrr ---
ctfmerge -L VERSION -g -o hptrr.ko.full hptrr_lib.o hptrr_os_bsd.o 
hptrr_osm_bsd.o hptrr_config.o
--- all_subdir_hyperv ---
--- vmbus_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/dev/hyperv/vmbus/vmbus_if.m -h
--- opt_kstack_pages.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_kstack_pages.h
 opt_kstack_pages.h
--- opt_nfs.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_nfs.h
 opt_nfs.h
--- opt_hwpmc_hooks.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_hwpmc_hooks.h
 opt_hwpmc_hooks.h
--- opt_compat.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_compat.h
 opt_compat.h
--- all_subdir_hptrr ---
:> export_syms
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/conf/kmod_syms.awk hptrr.ko.full  
export_syms | xargs -J% objcopy % hptrr.ko.full
--- all_subdir_hyperv ---
--- vmbus_if.c ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/dev/hyperv/vmbus/vmbus_if.m -c
--- acpi_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/dev/acpica/acpi_if.m -h
--- all_subdir_hptrr ---
--- hptrr.ko.debug ---
objcopy --only-keep-debug hptrr.ko.full hptrr.ko.debug
--- all_subdir_hyperv ---
--- bus_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/kern/bus_if.m -h
--- all_subdir_hptrr ---
--- hptrr.ko ---
objcopy --strip-debug --add-gnu-debuglink=hptrr.ko.debug  hptrr.ko.full hptrr.ko
--- all_subdir_hwpmc ---
--- hwpmc_soft.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -fno-common -g 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
  -MD  -MF.depend.hwpmc_soft.o -MThwpmc_soft.o -mcmodel=kernel -mno-red-zone 
-mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding 
-fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual 
-Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ -Wmissing-include-dir
 s -fdiagnostics-show-option -Wno-unknown-pragmas 
-Wno-error-tautological-compare -Wno-error-empty-body 
-Wno-error-parentheses-equality -Wno-error-unused-function 
-Wno-error-pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  
-std=iso9899:1999 -c 
/builds/workspace/FreeBSD_HEAD/src/sys/modules/hwpmc/../../dev/hwpmc/hwpmc_soft.c
 -o hwpmc_soft.o
--- all_subdir_hyperv ---
--- device_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/kern/device_if.m -h
--- genassym.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
 -c -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc 
-I/builds/workspace/FreeBSD_HEAD/src/sys/modules/hyperv/vmbus/../../../dev/hyperv/include
 
-I/builds/workspace/FreeBSD_HEAD/src/sys/modules/hyperv/vmbus/../../../dev/hyperv/vmbus
 -DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -g -fno-omit-frame-pointer 
-mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
 -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float 
-fno-asynchronous-un

Build failed in Jenkins: FreeBSD_HEAD #902

2016-11-17 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/902/--
[...truncated 276953 lines...]
machine -> /builds/workspace/FreeBSD_HEAD/src/sys/amd64/include
--- x86 ---
x86 -> /builds/workspace/FreeBSD_HEAD/src/sys/x86/include
--- g_sched.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -fno-common -g 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
  -MD  -MF.depend.g_sched.o -MTg_sched.o -mcmodel=kernel -mno-red-zone -mno-mmx 
-mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding -fwrapv 
-fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual 
-Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ 
-Wmissing-include-dirs -fdi
 agnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare 
-Wno-error-empty-body -Wno-error-parentheses-equality 
-Wno-error-unused-function -Wno-error-pointer-sign 
-Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=iso9899:1999 -c 
/builds/workspace/FreeBSD_HEAD/src/sys/modules/geom/geom_sched/gs_sched/../../../../geom/sched/g_sched.c
 -o g_sched.o
--- all_subdir_geom/geom_raid ---
--- md_ddf.o ---
ctfconvert -L VERSION -g md_ddf.o
--- all_subdir_geom/geom_sched ---
--- all_subdir_geom/geom_sched/gsched_rr ---
===> geom/geom_sched/gsched_rr (all)
--- machine ---
machine -> /builds/workspace/FreeBSD_HEAD/src/sys/amd64/include
--- x86 ---
x86 -> /builds/workspace/FreeBSD_HEAD/src/sys/x86/include
--- gs_rr.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -fno-common -g 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
  -MD  -MF.depend.gs_rr.o -MTgs_rr.o -mcmodel=kernel -mno-red-zone -mno-mmx 
-mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding -fwrapv 
-fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual 
-Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ 
-Wmissing-include-dirs -fdiagno
 stics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare 
-Wno-error-empty-body -Wno-error-parentheses-equality 
-Wno-error-unused-function -Wno-error-pointer-sign 
-Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=iso9899:1999 -c 
/builds/workspace/FreeBSD_HEAD/src/sys/modules/geom/geom_sched/gsched_rr/../../../../geom/sched/gs_rr.c
 -o gs_rr.o
ctfconvert -L VERSION -g gs_rr.o
--- gsched_rr.ko.full ---
ld -d -warn-common -r -d -o gsched_rr.ko.full gs_rr.o
ctfmerge -L VERSION -g -o gsched_rr.ko.full gs_rr.o
:> export_syms
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/conf/kmod_syms.awk 
gsched_rr.ko.full  export_syms | xargs -J% objcopy % gsched_rr.ko.full
--- gsched_rr.ko.debug ---
objcopy --only-keep-debug gsched_rr.ko.full gsched_rr.ko.debug
--- gsched_rr.ko ---
objcopy --strip-debug --add-gnu-debuglink=gsched_rr.ko.debug  gsched_rr.ko.full 
gsched_rr.ko
--- all_subdir_hyperv ---
===> hyperv (all)
--- all_subdir_hyperv/vmbus ---
===> hyperv/vmbus (all)
--- machine ---
machine -> /builds/workspace/FreeBSD_HEAD/src/sys/amd64/include
--- x86 ---
x86 -> /builds/workspace/FreeBSD_HEAD/src/sys/x86/include
--- opt_acpi.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_acpi.h
 opt_acpi.h
--- vmbus_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/dev/hyperv/vmbus/vmbus_if.m -h
--- opt_kstack_pages.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_kstack_pages.h
 opt_kstack_pages.h
--- opt_nfs.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_nfs.h
 opt_nfs.h
--- opt_hwpmc_hooks.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_hwpmc_hooks.h
 opt_hwpmc_hooks.h
--- opt_compat.h ---
ln -sf 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeB

Build failed in Jenkins: FreeBSD_HEAD #901

2016-11-17 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/901/--
[...truncated 275819 lines...]
--- machine ---
machine -> /builds/workspace/FreeBSD_HEAD/src/sys/amd64/include
--- x86 ---
x86 -> /builds/workspace/FreeBSD_HEAD/src/sys/x86/include
--- bus_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/kern/bus_if.m -h
--- device_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/kern/device_if.m -h
--- g_part_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/geom/part/g_part_if.m -h
--- g_part_vtoc8.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -fno-common -g 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
  -MD  -MF.depend.g_part_vtoc8.o -MTg_part_vtoc8.o -mcmodel=kernel 
-mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables 
-ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls 
-Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ 
-Wmissing-include
 -dirs -fdiagnostics-show-option -Wno-unknown-pragmas 
-Wno-error-tautological-compare -Wno-error-empty-body 
-Wno-error-parentheses-equality -Wno-error-unused-function 
-Wno-error-pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  
-std=iso9899:1999 -c 
/builds/workspace/FreeBSD_HEAD/src/sys/modules/geom/geom_part/geom_part_vtoc8/../../../../geom/part/g_part_vtoc8.c
 -o g_part_vtoc8.o
ctfconvert -L VERSION -g g_part_vtoc8.o
--- geom_part_vtoc8.ko.full ---
ld -d -warn-common -r -d -o geom_part_vtoc8.ko.full g_part_vtoc8.o
ctfmerge -L VERSION -g -o geom_part_vtoc8.ko.full g_part_vtoc8.o
:> export_syms
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/conf/kmod_syms.awk 
geom_part_vtoc8.ko.full  export_syms | xargs -J% objcopy % 
geom_part_vtoc8.ko.full
--- geom_part_vtoc8.ko.debug ---
objcopy --only-keep-debug geom_part_vtoc8.ko.full geom_part_vtoc8.ko.debug
--- geom_part_vtoc8.ko ---
objcopy --strip-debug --add-gnu-debuglink=geom_part_vtoc8.ko.debug  
geom_part_vtoc8.ko.full geom_part_vtoc8.ko
--- all_subdir_drm2 ---
--- evergreen_hdmi.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -fno-common -g 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
  -MD  -MF.depend.evergreen_hdmi.o -MTevergreen_hdmi.o -mcmodel=kernel 
-mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables 
-ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls 
-Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ 
-Wmissing-inc
 lude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas 
-Wno-error-tautological-compare -Wno-error-empty-body 
-Wno-error-parentheses-equality -Wno-error-unused-function 
-Wno-error-pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  
-std=iso9899:1999 
-I/builds/workspace/FreeBSD_HEAD/src/sys/modules/drm2/radeonkms/../../../dev/drm2/radeon
 -c 
/builds/workspace/FreeBSD_HEAD/src/sys/modules/drm2/radeonkms/../../../dev/drm2/radeon/evergreen_hdmi.c
 -o evergreen_hdmi.o
ctfconvert -L VERSION -g evergreen_hdmi.o
--- all_subdir_geom ---
--- all_subdir_geom/geom_raid ---
ctfconvert -L VERSION -g md_ddf.o
--- md_intel.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -fno-common -g 
-fno-omit-frame-pointer -mno-omit-leaf-frame-

Build failed in Jenkins: FreeBSD_HEAD #900

2016-11-17 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/900/--
[...truncated 275194 lines...]
--- all_subdir_geom ---
--- all_subdir_geom/geom_raid ---
ctfconvert -L VERSION -g md_jmicron.o
--- md_nvidia.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -fno-common -g 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
  -MD  -MF.depend.md_nvidia.o -MTmd_nvidia.o -mcmodel=kernel -mno-red-zone 
-mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding 
-fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual 
-Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ 
-Wmissing-include-dirs 
 -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare 
-Wno-error-empty-body -Wno-error-parentheses-equality 
-Wno-error-unused-function -Wno-error-pointer-sign 
-Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=iso9899:1999 -c 
/builds/workspace/FreeBSD_HEAD/src/sys/modules/geom/geom_raid/../../../geom/raid/md_nvidia.c
 -o md_nvidia.o
--- all_subdir_geom/geom_sched ---
ctfconvert -L VERSION -g gs_rr.o
--- gsched_rr.ko.full ---
ld -d -warn-common -r -d -o gsched_rr.ko.full gs_rr.o
ctfmerge -L VERSION -g -o gsched_rr.ko.full gs_rr.o
:> export_syms
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/conf/kmod_syms.awk 
gsched_rr.ko.full  export_syms | xargs -J% objcopy % gsched_rr.ko.full
--- gsched_rr.ko.debug ---
objcopy --only-keep-debug gsched_rr.ko.full gsched_rr.ko.debug
--- gsched_rr.ko ---
objcopy --strip-debug --add-gnu-debuglink=gsched_rr.ko.debug  gsched_rr.ko.full 
gsched_rr.ko
--- all_subdir_geom/geom_sched/gsched_delay ---
===> geom/geom_sched/gsched_delay (all)
--- machine ---
machine -> /builds/workspace/FreeBSD_HEAD/src/sys/amd64/include
--- all_subdir_hwpmc ---
ctfconvert -L VERSION -g hwpmc_soft.o
--- all_subdir_geom ---
--- x86 ---
x86 -> /builds/workspace/FreeBSD_HEAD/src/sys/x86/include
--- gs_delay.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -fno-common -g 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
  -MD  -MF.depend.gs_delay.o -MTgs_delay.o -mcmodel=kernel -mno-red-zone 
-mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding 
-fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual 
-Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ 
-Wmissing-include-dirs -f
 diagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare 
-Wno-error-empty-body -Wno-error-parentheses-equality 
-Wno-error-unused-function -Wno-error-pointer-sign 
-Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=iso9899:1999 -c 
/builds/workspace/FreeBSD_HEAD/src/sys/modules/geom/geom_sched/gsched_delay/../../../../geom/sched/gs_delay.c
 -o gs_delay.o
--- all_subdir_hwpmc ---
WARNING: hwpmc_soft.c: enum pmc_event has too many values: 2588 > 1023
--- hwpmc_amd.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -fno-common -g 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
  -MD  -MF.depend.hwpmc_amd.o -MThwpmc_amd.o -mcmodel=kernel -mno-red-zone 
-mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding 
-fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual 
-Wundef -Wno-pointer-sign -D_

Jenkins build is back to normal : FreeBSD_HEAD #895

2016-11-16 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/895/
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Build failed in Jenkins: FreeBSD_HEAD #894

2016-11-16 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/894/--
[...truncated 277129 lines...]
--- vnode_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/vnode_if.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/kern/vnode_if.src -h
--- all_subdir_geom ---
--- geom_part_vtoc8.ko.debug ---
objcopy --only-keep-debug geom_part_vtoc8.ko.full geom_part_vtoc8.ko.debug
--- geom_part_vtoc8.ko ---
objcopy --strip-debug --add-gnu-debuglink=geom_part_vtoc8.ko.debug  
geom_part_vtoc8.ko.full geom_part_vtoc8.ko
--- all_subdir_hwpmc ---
--- device_if.h ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/kern/device_if.m -h
--- all_subdir_hptrr ---
--- hptrr_lib.o ---
--- all_subdir_hwpmc ---
--- bus_if.h ---
--- all_subdir_hptrr ---
uudecode -p < 
/builds/workspace/FreeBSD_HEAD/src/sys/modules/hptrr/../../dev/hptrr/amd64-elf.hptrr_lib.o.uu
 > hptrr_lib.o
--- all_subdir_hwpmc ---
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/tools/makeobjops.awk 
/builds/workspace/FreeBSD_HEAD/src/sys/kern/bus_if.m -h
--- all_subdir_geom ---
--- all_subdir_geom/geom_raid ---
--- md_nvidia.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -fno-common -g 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
  -MD  -MF.depend.md_nvidia.o -MTmd_nvidia.o -mcmodel=kernel -mno-red-zone 
-mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding 
-fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs 
-Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual 
-Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ 
-Wmissing-include-dirs 
 -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare 
-Wno-error-empty-body -Wno-error-parentheses-equality 
-Wno-error-unused-function -Wno-error-pointer-sign 
-Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=iso9899:1999 -c 
/builds/workspace/FreeBSD_HEAD/src/sys/modules/geom/geom_raid/../../../geom/raid/md_nvidia.c
 -o md_nvidia.o
--- all_subdir_hwpmc ---
--- hwpmc_logging.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC/opt_global.h
 -I. -I/builds/workspace/FreeBSD_HEAD/src/sys -fno-common -g 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-I/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/sys/GENERIC
  -MD  -MF.depend.hwpmc_logging.o -MThwpmc_logging.o -mcmodel=kernel 
-mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables 
-ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls 
-Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 
-Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ 
-Wmissing-inclu
 de-dirs -fdiagnostics-show-option -Wno-unknown-pragmas 
-Wno-error-tautological-compare -Wno-error-empty-body 
-Wno-error-parentheses-equality -Wno-error-unused-function 
-Wno-error-pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  
-std=iso9899:1999 -c 
/builds/workspace/FreeBSD_HEAD/src/sys/modules/hwpmc/../../dev/hwpmc/hwpmc_logging.c
 -o hwpmc_logging.o
--- all_subdir_hptrr ---
--- hptrr_osm_bsd.o ---
ctfconvert -L VERSION -g hptrr_osm_bsd.o
--- hptrr.ko.full ---
ld -d -warn-common -r -d -o hptrr.ko.full hptrr_lib.o hptrr_os_bsd.o 
hptrr_osm_bsd.o hptrr_config.o
ctfmerge -L VERSION -g -o hptrr.ko.full hptrr_lib.o hptrr_os_bsd.o 
hptrr_osm_bsd.o hptrr_config.o
:> export_syms
awk -f /builds/workspace/FreeBSD_HEAD/src/sys/conf/kmod_syms.awk hptrr.ko.full  
export_syms | xargs -J% objcopy % hptrr.ko.full
--- hptrr.ko.debug ---
objcopy --only-keep-debug hptrr.ko.full hptrr.ko.debug
--- hptrr.ko ---
objcopy --strip-debug --add-gnu-debuglink=hptrr.ko.debug  hptrr.ko.full hptrr.ko
--- all_subdir_geom ---
--- md_promise.o ---
cc -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc   
-DHAVE_KERNEL_OPTION_HEADERS -include 

FreeBSD_HEAD_amd64_gcc - Build #1704 - Fixed

2016-11-15 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1704 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1704/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1704/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1704/console

Change summaries:

308695 by mizhka:
[BHND] correct spelling error in macro name

This commit is part of D6920 review. One of macro had wrong prefix:
 BMCA => BCMA

Reviewed by:landonf, adrian (mentor)
Approved by:adrian (mentor)
Differential Revision:  https://reviews.freebsd.org/D6920

308694 by markj:
Plug a lock leak in sysctl_ifmalist().

Fix style in the local variable declarations.

PR: 214542
MFC after:  1 week

308693 by loos:
Change the TI aintc driver name to "ti_aintc" to avoid the conflict with
the aintc driver for Allwinner A10.

This fixes the boot of the GENERIC ARM kernel on TI/AM335x SoCs.

Sponsored by:   Rubicon Communications, LLC (Netgate)

308692 by loos:
Fix ti_gpio_detach() to avoid crashing if something goes wrong.

Sponsored by:   Rubicon Communication, LLC (Netgate)

308691 by alc:
Remove most of the code for implementing PG_CACHED pages.  (This change does
not remove user-space visible fields from vm_cnt or all of the references to
cached pages from comments.  Those changes will come later.)

Reviewed by:kib, markj
Tested by:  pho
Sponsored by:   Dell EMC Isilon
Differential Revision:  https://reviews.freebsd.org/D8497

308690 by jhb:
Sync instruction cache's after writing user breakpoints on MIPS.

Add an implementation for pmaps_sync_icache() on MIPS that sync's the
instruction cache on all CPUs via smp_rendezvous() after a debugger
inserts a breakpoint via ptrace(PT_IO).

Tested by:  kan (on Creator CI20 running Ingenic JZ4780 SOC)
MFC after:  2 weeks
Sponsored by:   DARPA / AFRL

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_amd64_gcc - Build #1703 - Still Failing

2016-11-15 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1703 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1703/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1703/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1703/console

Change summaries:



The end of the build log:

Started by upstream project "FreeBSD_HEAD" build number 888
originally caused by:
 Started by an SCM change
Building remotely on jenkins10a.freebsd.org (FreeBSD-10) in workspace 
/builds/FreeBSD_HEAD_amd64_gcc
Updating svn://svn.freebsd.org/base/head at revision '2016-11-15T14:08:33.257 
+'
At revision 308689

No changes for svn://svn.freebsd.org/base/head since the previous build
No emails were triggered.
[FreeBSD_HEAD_amd64_gcc] $ /bin/sh -xe /tmp/hudson7310824568853857641.sh
+ cat
+ svn revert Makefile.inc1
+ svn revert sys/boot/i386/Makefile
Reverted 'sys/boot/i386/Makefile'
+ patch -f
Hmm...  Looks like a unified diff to me...
The text leading up to this was:
--
|Index: sys/boot/i386/Makefile
|===
|--- sys/boot/i386/Makefile (revision 280912)
|+++ sys/boot/i386/Makefile (working copy)
--
Patching file sys/boot/i386/Makefile using Plan A...
Hunk #1 succeeded at 16 (offset 4 lines).
Hmm...  Ignoring the trailing garbage.
done
+ /vm/freebsd-ci/scripts/build/cross-build.sh
+ [ -z /builds/FreeBSD_HEAD_amd64_gcc ]
+ [ -z amd64 ]
+ export MAKEOBJDIRPREFIX=/builds/FreeBSD_HEAD_amd64_gcc/obj
+ mkdir -p /builds/FreeBSD_HEAD_amd64_gcc/obj
+ echo -e 'NO_WERROR=yes
WERROR=
WITH_FAST_DEPEND=yes'
+ cat
+ set +x
--
>>> /builds/FreeBSD_HEAD_amd64_gcc/make.conf contains:
+ cat /builds/FreeBSD_HEAD_amd64_gcc/make.conf
# Put make.conf entries here
NO_WERROR=yes
WERROR=
WITH_FAST_DEPEND=yes
+ set +x
--
+ sudo pkg install -y devel/amd64-xtoolchain-gcc
Updating FreeBSD repository catalogue...
pkg: http://pkg.FreeBSD.org/FreeBSD:10:amd64/latest/meta.txz: Not Found
repository FreeBSD has no meta file, using default settings
pkg: http://pkg.FreeBSD.org/FreeBSD:10:amd64/latest/packagesite.txz: Not Found
Unable to update repository FreeBSD
All repositories are up-to-date.
pkg: Repository FreeBSD cannot be opened. 'pkg update' required
pkg: No packages available to install matching 'devel/amd64-xtoolchain-gcc' 
have been found in the repositories
Build step 'Execute shell' marked build as failure
[WARNINGS] Skipping publisher since build result is FAILURE
IRC notifier plugin: Sending notification to: #freebsd-commits
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_amd64_gcc - Build #1702 - Failure

2016-11-15 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1702 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1702/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1702/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1702/console

Change summaries:



The end of the build log:

Started by upstream project "FreeBSD_HEAD" build number 887
originally caused by:
 Started by an SCM change
Building remotely on jenkins10a.freebsd.org (FreeBSD-10) in workspace 
/builds/FreeBSD_HEAD_amd64_gcc
Updating svn://svn.freebsd.org/base/head at revision '2016-11-15T12:47:51.331 
+'
At revision 308689

No changes for svn://svn.freebsd.org/base/head since the previous build
No emails were triggered.
[FreeBSD_HEAD_amd64_gcc] $ /bin/sh -xe /tmp/hudson2476895850218832180.sh
+ cat
+ svn revert Makefile.inc1
+ svn revert sys/boot/i386/Makefile
Reverted 'sys/boot/i386/Makefile'
+ patch -f
Hmm...  Looks like a unified diff to me...
The text leading up to this was:
--
|Index: sys/boot/i386/Makefile
|===
|--- sys/boot/i386/Makefile (revision 280912)
|+++ sys/boot/i386/Makefile (working copy)
--
Patching file sys/boot/i386/Makefile using Plan A...
Hunk #1 succeeded at 16 (offset 4 lines).
Hmm...  Ignoring the trailing garbage.
done
+ /vm/freebsd-ci/scripts/build/cross-build.sh
+ [ -z /builds/FreeBSD_HEAD_amd64_gcc ]
+ [ -z amd64 ]
+ export MAKEOBJDIRPREFIX=/builds/FreeBSD_HEAD_amd64_gcc/obj
+ mkdir -p /builds/FreeBSD_HEAD_amd64_gcc/obj
+ echo -e 'NO_WERROR=yes
WERROR=
WITH_FAST_DEPEND=yes'
+ cat
+ set +x
--
>>> /builds/FreeBSD_HEAD_amd64_gcc/make.conf contains:
+ cat /builds/FreeBSD_HEAD_amd64_gcc/make.conf
# Put make.conf entries here
NO_WERROR=yes
WERROR=
WITH_FAST_DEPEND=yes
+ set +x
--
+ sudo pkg install -y devel/amd64-xtoolchain-gcc
Updating FreeBSD repository catalogue...
pkg: http://pkg.FreeBSD.org/FreeBSD:10:amd64/latest/meta.txz: Not Found
repository FreeBSD has no meta file, using default settings
pkg: http://pkg.FreeBSD.org/FreeBSD:10:amd64/latest/packagesite.txz: Not Found
Unable to update repository FreeBSD
All repositories are up-to-date.
pkg: Repository FreeBSD cannot be opened. 'pkg update' required
pkg: No packages available to install matching 'devel/amd64-xtoolchain-gcc' 
have been found in the repositories
Build step 'Execute shell' marked build as failure
[WARNINGS] Skipping publisher since build result is FAILURE
IRC notifier plugin: Sending notification to: #freebsd-commits
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_amd64_gcc - Build #1677 - Fixed

2016-11-11 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1677 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1677/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1677/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1677/console

Change summaries:

308563 by emaste:
libcc_{s,eh}: build without SSP

As in the gnu/lib/libgcc Makefile:
libgcc is linked in last and thus cannot depend on ssp
symbols coming from earlier libraries. Disable stack protection
for this library.

Reviewed by:dim
Sponsored by:   The FreeBSD Foundation

308562 by rstone:
Fix git tools when run against a worktree

In a git worktree, the gitdir is in an entirely different location.
In arcgit, use git rev-parse --git-dir to get the correct path to it
always.

When running git from outside of the work tree, as in importgit,
the path provided by git rev-parse --git-dir can be either a
relative or absolute path depending on the work tree.  Rather
than trying to deal with that, just use git -C.

Differential Revision:  https://reviews.freebsd.org/D8501
Reviewed by: markj

308561 by gavin:
Correct spelling in syslog: getttimeofday -> gettimeofday

308560 by jhibbits:
Replace another fdt_is_compatible() call.

308559 by dim:
Pull in r263169 from upstream llvm trunk (by Tim Northover):

  AArch64: only try to use scaled fcvt ops on legal vector types.

  Before we ended up calling getSimpleVectorType on a <3 x float>, which
  asserted.

This fixes an assertion when building the print/ghostscript9-agpl-base
port for AArch64.

PR: 213865
MFC after:  3 days

308558 by cem:
queue.3: Document existing QMD_* macros

Feedback from:  bapt, bdrewery, emaste
Sponsored by:   Dell EMC Isilon
Differential Revision:  https://reviews.freebsd.org/D3983

308553 by cem:
ioat(4): Fix race between process_events and reset_hw

In the case where a hardware error is detected during
ioat_process_events, hardware may advance (by one descriptor, probably)
and a subsequent ioat_process_events may race the intended ioat_reset_hw
followup.  In that case, the second process_events would observe a
completion update that does not match the software "last_seen" status,
and attempt to successfully complete already-failed descriptors.

Guard against this race with the resetting_cleanup flag.

Reviewed by:bdrewery, markj
Sponsored by:   Dell EMC Isilon

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_amd64_gcc - Build #1676 - Still Failing

2016-11-11 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1676 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1676/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1676/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1676/console

Change summaries:

308538 by kib:
Increase the max allowed size of the microcode update blob for x86.

Newer CPUs (SkyLakes) have updates of 100K size, which is bigger than
current limit 32K. Increase it to 4M but leave the check around to
prevent kernel memory allocator abuse.  Some time ago, the memory for
update was allocated by contigmalloc(9), and it was reasonable to be
conservative as much as possible.  Since all uses of contigmalloc(9)
appear to be either misunderstanding or too cautious, and were
removed, provide more slack than strictly neccessary.

Submitted by:   Oliver Pinter
MFC after:  1 week
Differential revision:  https://reviews.freebsd.org/D8486

308537 by gjb:
Spell 'PACKAGE' correctly.

Submitted by:   Kyle Evans, emaste
MFC after:  3 days
Sponsored by:   The FreeBSD Foundation

308536 by jhibbits:
Use ofw_bus_node_is_compatible() instead of fdt_is_compatible()

No need to have two functions that do the same thing, let's let fdt_* go away,
and use ofw_bus_* equivalents instead.

Requested by:   andrew

308535 by stevek:
Add support for LOADER_RC setting in the pkgfs manifest (defaults to
/loader.rc) to specify a Forth file to read from the pkgfs tarball and
process by Ficl.

This allows for the tarball to do runtime things like load a
platform-specific FDT blob, among other things.

Reviewed by:imp
Approved by:sjg (mentor)
MFC after:  2 weeks
Sponsored by:   Juniper Networks, Inc.
Differential Revision:  https://reviews.freebsd.org/D8494



The end of the build log:

[...truncated 197933 lines...]
--- negdf2.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.negdf2.pico 
-MTnegdf2.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error=a
 ttributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/negdf2.c 
-o negdf2.pico
--- negdi2.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.negdi2.pico 
-MTnegdi2.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error=a
 ttributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/negdi2.c 
-o negdi2.pico
--- multc3.pico ---
/builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/multc3.c:21:1: 
warning: conflicting types for built-in function '__multc3'
 __multc3(long doubl

FreeBSD_HEAD_amd64_gcc - Build #1675 - Still Failing

2016-11-11 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1675 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1675/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1675/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1675/console

Change summaries:

308534 by stevek:
The file_loadraw function grew an argument, update install function
accordingly.

Reviewed by:imp
Approved by:sjg (mentor)
MFC after:  2 weeks
Sponsored by:   Juniper Networks, Inc.
Differential Revision:  https://reviews.freebsd.org/D8494

308533 by andrew:
Use ofw_bus_node_is_compatible in more drivers used on arm.

Sponsored by:   ABT Systems Ltd

308532 by avg:
update SMB_BWRITE documentation, clarify SMB_BREAD

After removal of SMB_TRANS some information in the description of
SMB_BWRITE has become stale.  E.g., the maximum block size has been
restored to 32.

Also, the descriptions of SMB_BREAD and SMB_BWRITE had some
incorrect information on the SMBus protocol details.

MFC after:  1 week
X-MFC with: r308242
Differential Revision: https://reviews.freebsd.org/D8431

308531 by andrew:
Use the modern spelling of ofw_bus_node_is_compatible in sys/arm.

Sponsored by:   ABT Systems Ltd

308530 by avg:
iicsmb: SMB_MAXBLOCKSIZE can be used again

The constant was set to the correct value in r308242.
While there, fix iicsmb_bread() to not use a value of an out parameter
'count'.

MFC after:  3 weeks
X-MFC after:r308242

308529 by avg:
intpm: clean up intsmb_bread and intsmb_pcall

The hardware does not implement SMBus Process Call command, so remove
ifdef-ed out code from intsmb_pcall.  The code used exactly the same
start sequence as for Write Word command.

intsmb_bread code used to access an in value of the count parameter,
but that parameter is supposed to be an out only parameter.
For example, smb(4) does not initialize it before calling smbus_bread.

MFC after:  3 weeks

308528 by avg:
smbmsg: use a more convenient way of accessing data read from a slave

Developers writing code for accessing /dev/smb may use this base utility
as an example.  Now that SMB_READB, SMB_READW, SMB_PCALL behave as
documented, wwe can use them in a more convenient way than before.

MFC after:  4 weeks
X-MFC after:r308527

308527 by avg:
smb: fix SMB_READB, SMB_READW, SMB_PCALL to work as documented

Previously, those ioctls were defined as 'in' only, so rdata.byte and
rdata.word were never updated in the userland.  The read data went only
to rbuf if it was provided.  Thus, consumers were forced to always use it.

Now the ioctls are marked as in-out.
Compatibility handlers are provided for old ioctls.

PR: 213481
Reported by:Lewis Donzis 
MFC after:  2 weeks
Relnotes:   maybe
Differential Revision: https://reviews.freebsd.org/D8430

308526 by andrew:
Fix ata_at91_alloc_resource to use rman_res_t.

Sponsored by:   ABT Systems Ltd

308525 by andrew:
Remove more unneeded users of the fdt_pic_decode_t table.

Sponsored by:   ABT Systems Ltd

308524 by andrew:
Replace OF_getprop ... fdt32_to_cpu with OF_getencprop. The latter
correctly adjusts for the endian.

MFC after:  1 week
Sponsored by:   ABT Systems Ltd



The end of the build log:

[...truncated 209771 lines...]
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulsc3.pico 
-MTmulsc3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error=a
 ttributes -Wno-error=bool mulvdi3.pico ---
--- mulvsi3.pico ---
--- multi3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/b

FreeBSD_HEAD_amd64_gcc - Build #1674 - Still Failing

2016-11-10 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1674 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1674/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1674/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1674/console

Change summaries:

308493 by cy:
MFV r305100: Update amd from am-utils 6.1.5 to 6.2.

Used extensively on my network over the past month.

Reviewed by:pfg, brooks
Suggested by:   pfg
Obtained from:  ftp://ftp.am-utils.org/pub/am-utils/
MFC after:  6 weeks
Relnotes:   yes
Differential Revision:  D8405



The end of the build log:

[...truncated 209510 lines...]
compare -Wno-error=cast-align -Wno-error=clobbered -Wno-error=enum-compare 
-Wno-error=extra -Wno-error=inline -Wno-error=logical-not-parentheses 
-Wno-error=strict-aliasing -Wno-error=uninitialized 
-Wno-error=unused-but-set-variable -Wno-error=unused-function 
-Wno-error=unused-value -Wno-error=strict-overflow -c 
/builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulsc3.c -o 
mulsc3.pico
--- multi3.pico ---
compare -Wno-error=cast-align -Wno-error=clobbered -Wno-error=enum-compare 
-Wno-error=extra -Wno-error=inline -Wno-error=logical-not-parentheses 
-Wno-error=strict-aliasing -Wno-error=uninitialized 
-Wno-error=unused-but-set-variable -Wno-error=unused-function 
-Wno-error=unused-value -Wno-error=strict-overflow -c 
/builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/multi3.c -o 
multi3.pico
--- mulvsi3.pico ---
--- mulvdi3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulvdi3.pico 
-MTmulvdi3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error
 =attributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulvdi3.c 
-o mulvdi3.pico
--- mulvsi3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulvsi3.pico 
-MTmulvsi3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error
 =attributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulvsi3.c 
-o mulvsi3.pico
--- mulvti3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/inc

FreeBSD_HEAD_amd64_gcc - Build #1673 - Still Failing

2016-11-10 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1673 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1673/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1673/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1673/console

Change summaries:

308490 by syrinx:
Reply to a snmpEngineID discovery PDU with a Report PDU as per the
requirements of RFC 3414 section 4.

PR: 174974
Submitted by:   pgu...@kallisys.net
Reported by:several people
Reviewed by:bz@



The end of the build log:

[...truncated 210030 lines...]
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.multi3.pico 
-MTmulti3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error=a
 ttributes -Wno-error=bool mulvdi3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulvdi3.pico 
-MTmulvdi3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error
 =attributes -Wno-error=boo--- mulsc3.pico ---
compare -Wno-error=cast-align -Wno-error=clobbered -Wno-error=enum-compare 
-Wno-error=extra -Wno-error=inline -Wno-error=logical-not-parentheses 
-Wno-error=strict-aliasing -Wno-error=uninitialized 
-Wno-error=unused-but-set-variable -Wno-error=unused-function 
-Wno-error=unused-value -Wno-error=strict-overflow -c 
/builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulsc3.c -o 
mulsc3.pico
--- multi3.pico ---
compare -Wno-error=cast-align -Wno-error=clobbered -Wno-error=enum-compare 
-Wno-error=extra -Wno-error=inline -Wno-error=logical-not-parentheses 
-Wno-error=strict-aliasing -Wno-error=uninitialized 
-Wno-error=unused-but-set-variable -Wno-error=unused-function 
-Wno-error=unused-value -Wno-error=strict-overflow -c 
/builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/multi3.c -o 
multi3.pico
--- mulvdi3.pico ---
l-compare -Wno-error=cast-align -Wno-error=clobbered -Wno-error=enum-compare 
-Wno-error=extra -Wno-error=inline -Wno-error=logical-not-parentheses 
-Wno-error=strict-aliasing -Wno-error=uninitialized 
-Wno-error=unused-but-set-variable -Wno-error=unused-function 
-Wno-error=unused-value -Wno-error=strict-overflow -c 
/builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulvdi3.c -o 
mulvdi3.pico
--- mulvsi3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulvsi3.pico 
-MTmulvsi3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -

FreeBSD_HEAD_amd64_gcc - Build #1672 - Still Failing

2016-11-10 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1672 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1672/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1672/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1672/console

Change summaries:

308489 by markj:
Add the laundry page count to the displays of systat, top, and vmstat.

Reviewed by:alc, kib
Differential Revision:  https://reviews.freebsd.org/D8467

308487 by dim:
Pull in r263301 from upstream llvm trunk (by Ahmed Bougacha):

  [AArch64] Don't blindly lower f16/f128 FCCMPs.

  Instead, extend f16 (like we do when lowering a standalone SETCC),
  and let f128 be legalized to the RT calls.

  Fixes PR26803.

This fixes a fatal "Cannot select" backend error when building the
net/freerdp port for AArch64.

PR: 214380
MFC after:  3 days

308486 by kp:
pfctl: fix nested inline anchors

Import the OpenBSD fix for nested inline anchors.

PR: 196314
Submitted by:   kri...@cflinux.hu
Obtained from:  OpenBSD

308485 by adrian:
[net80211] implement "first RX defines the BAW" hack.

Unfortunately (sigh) some firmware doesn't provide the RX BA starting point,
so we need to cope and set a "close enough" sequence number so we (hopefully!)
don't discard frames as duplicates.

Tested:

* QCA9880v2, athp driver (under development), STA mode



The end of the build log:

[...truncated 202305 lines...]
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulsc3.pico 
-MTmulsc3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error=a
 ttributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulsc3.c 
-o mulsc3.pico
--- multi3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.multi3.pico 
-MTmulti3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error=a
 ttributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/multi3.c 
-o multi3.pico
--- mulvdi3.pico ---
--- mulvsi3.pico ---
--- mulvdi3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_a

FreeBSD_HEAD_amd64_gcc - Build #1671 - Still Failing

2016-11-10 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1671 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1671/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1671/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1671/console

Change summaries:

308484 by antoine:
Add limits(1) to native-xtools so that it can be used in qemu user-mode jails



The end of the build log:

[...truncated 201413 lines...]
--- mulsc3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulsc3.pico 
-MTmulsc3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error=a
 ttributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulsc3.c 
-o mulsc3.pico
--- multi3.pico ---
--- mulvdi3.pico ---
--- mulvsi3.pico ---
--- multi3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.multi3.pico 
-MTmulti3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error=a
 ttributes -Wno-error=bool mulvdi3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulvdi3.pico 
-MTmulvdi3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error
 =attributes -Wno-error=boo--- multi3.pico ---
compare -Wno-error=cast-align -Wno-error=clobbered -Wno-error=enum-compare 
-Wno-error=extra -Wno-error=inline -Wno-error=logical-not-parentheses 
-Wno-error=strict-aliasing -Wno-error=uninitialized 
-Wno-error=unused-but-set-variable -Wno-error=unused-function 
-Wno-error=unused-value -Wno-error=strict-overflow -c 
/builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/multi3.c -o 
multi3.pico
--- mulvdi3.pico ---
l-compare -Wno-error=cast-align -Wno-error=clobbered -Wno-error=enum-compare 
-Wno-error=extra -Wno-error=inline -Wno-error=logical-not-parentheses 
-Wno-error=strict-aliasing -Wno-error=uninitialized 
-Wno-error=unused-but-set-variable -Wno-error=unused-function 
-Wno-error=unused-value -Wno-error=strict-overflow -c 
/builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulvdi3.c -o

FreeBSD_HEAD_amd64_gcc - Build #1670 - Still Failing

2016-11-10 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1670 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1670/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1670/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1670/console

Change summaries:

308483 by br:
Implement riscv jumpto() so world can be compiled.

Sponsored by:   DARPA, AFRL
Sponsored by:   HEIF5



The end of the build log:

[...truncated 209196 lines...]
--- mulvsi3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulvsi3.pico 
-MTmulvsi3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error
 =attributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulvsi3.c 
-o mulvsi3.pico
--- mulvti3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulvti3.pico 
-MTmulvti3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error
 =attributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulvti3.c 
-o mulvti3.pico
--- multc3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.multc3.pico 
-MTmultc3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error=a
 ttributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/multc3.c 
-o multc3.pico
--- mulxc3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gc

FreeBSD_HEAD_amd64_gcc - Build #1669 - Still Failing

2016-11-10 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1669 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1669/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1669/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1669/console

Change summaries:

308480 by avg:
pmc_process_csw_out: ignore deleted counters

I see the fllowing panic on AMD when exiting pmcstat:

panic: [pmc,1473] pp_pmcval outside of expected range cpu=2 ri=17
pp_pmcval=fa529f5b pm_reloadcount=1

It seems that at least on AMD a performance counter keeps counting after
overflowing.  When pmcstat exits it sets counters that it used to
PMC_STATE_DELETED and waits until their use count goes to zero.
amd_intr() wouldn't reload a counter in that state and, thus, a counter
would be allowed to overflow.  That means that the counter's value would
be allowed to go outside the expected range.

MFC after:  2 weeks



The end of the build log:

[...truncated 210154 lines...]
--- mulvti3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulvti3.pico 
-MTmulvti3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error
 =attributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulvti3.c 
-o mulvti3.pico
--- multc3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.multc3.pico 
-MTmultc3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error=a
 ttributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/multc3.c 
-o multc3.pico
--- mulxc3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulxc3.pico 
-MTmulxc3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=

FreeBSD_HEAD_amd64_gcc - Build #1668 - Still Failing

2016-11-10 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1668 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1668/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1668/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1668/console

Change summaries:

308479 by avg:
fix a watchdogd regression introduced in r308040

The code assumed that 'timeout' and 'timeout_sec' are in sync
which they weren't if no '-t' option was passed to watchdogd.

Reported by:Olivier Smedts ,
Alex Deiter 
Tested by:  Olivier Smedts ,
Alex Deiter 
MFC after:  5 days
X-MFC with: r308040



The end of the build log:

[...truncated 210066 lines...]
--- mulvsi3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulvsi3.pico 
-MTmulvsi3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error
 =attributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulvsi3.c 
-o mulvsi3.pico
--- mulvti3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulvti3.pico 
-MTmulvti3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error
 =attributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulvti3.c 
-o mulvti3.pico
--- multc3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.multc3.pico 
-MTmultc3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error=a
 ttributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-vari

FreeBSD_HEAD_amd64_gcc - Build #1667 - Still Failing

2016-11-10 Thread jenkins-admin
FreeBSD_HEAD_amd64_gcc - Build #1667 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1667/
Full change log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1667/changes
Full build log: 
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1667/console

Change summaries:

308478 by araujo:
We can't use protect(1) inside a jail(8)!
To avoid have warning for services that are using oomprotect, oomprotect
will only be applied on services that won't run inside jails.

Reported by:allanjude
MFC after:  2 weeks.



The end of the build log:

[...truncated 209830 lines...]
compare -Wno-error=cast-align -Wno-error=clobbered -Wno-error=enum-compare 
-Wno-error=extra -Wno-error=inline -Wno-error=logical-not-parentheses 
-Wno-error=strict-aliasing -Wno-error=uninitialized 
-Wno-error=unused-but-set-variable -Wno-error=unused-function 
-Wno-error=unused-value -Wno-error=strict-overflow -c 
/builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulsc3.c -o 
mulsc3.pico
--- multi3.pico ---
compare -Wno-error=cast-align -Wno-error=clobbered -Wno-error=enum-compare 
-Wno-error=extra -Wno-error=inline -Wno-error=logical-not-parentheses 
-Wno-error=strict-aliasing -Wno-error=uninitialized 
-Wno-error=unused-but-set-variable -Wno-error=unused-function 
-Wno-error=unused-value -Wno-error=strict-overflow -c 
/builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/multi3.c -o 
multi3.pico
--- mulvdi3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulvdi3.pico 
-MTmulvdi3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error
 =attributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulvdi3.c 
-o mulvdi3.pico
--- mulvsi3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/contrib/llvm/projects/libunwind/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libgcc_s -D_LIBUNWIND_IS_NATIVE_ONLY 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/i386 
-I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src  -MD  -MF.depend.mulvsi3.pico 
-MTmulvsi3.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=address 
-Wno-error=array-bounds -Wno-error
 =attributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered 
-Wno-error=enum-compare -Wno-error=extra -Wno-error=inline 
-Wno-error=logical-not-parentheses -Wno-error=strict-aliasing 
-Wno-error=uninitialized -Wno-error=unused-but-set-variable 
-Wno-error=unused-function -Wno-error=unused-value -Wno-error=strict-overflow   
  -c /builds/FreeBSD_HEAD_amd64_gcc/contrib/compiler-rt/lib/builtins/mulvsi3.c 
-o mulvsi3.pico
--- mulvti3.pico ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=i686 
-mmmx -msse -msse2  
-L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
  
--sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32
  -B/usr/local/x86_64-freebsd/bin/ 
-B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32
 -isystem 
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include
 -fpic -DPIC -g -O2 -pipe 
-I/builds/FreeBSD_HEAD_amd64_gcc/cont

Jenkins build is back to normal : FreeBSD_HEAD #856

2016-11-09 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/856/
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Build failed in Jenkins: FreeBSD_HEAD #855

2016-11-09 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/855/--
[...truncated 49018 lines...]
--- obj_subdir_usr.sbin/wpa/wpa_passphrase ---
===> usr.sbin/wpa/wpa_passphrase (obj)
--- obj_subdir_usr.bin ---
--- obj_subdir_usr.bin/svn/lib/libserf ---
--- obj ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libserf
 created for /builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libserf
--- obj_subdir_usr.bin/svn/lib/libsvn_diff ---
===> usr.bin/svn/lib/libsvn_diff (obj)
--- obj_subdir_usr.bin/svn/lib/libsvn_client ---
--- obj ---
--- obj_subdir_usr.bin/svn/lib/libsvn_delta ---
--- obj ---
--- obj_subdir_usr.bin/svn/lib/libsvn_client ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_client
 created for /builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_client
--- obj_subdir_usr.bin/svn/lib/libsvn_delta ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_delta
 created for /builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_delta
--- obj_subdir_usr.bin/svn/lib/libsvn_fs ---
===> usr.bin/svn/lib/libsvn_fs (obj)
--- obj_subdir_usr.bin/svn/lib/libsvn_fs_fs ---
===> usr.bin/svn/lib/libsvn_fs_fs (obj)
--- obj_subdir_usr.sbin ---
--- obj ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/usr.sbin/wpa/wpa_passphrase
 created for /builds/workspace/FreeBSD_HEAD/src/usr.sbin/wpa/wpa_passphrase
--- obj_subdir_usr.sbin/wpa/hostapd ---
===> usr.sbin/wpa/hostapd (obj)
--- obj_subdir_usr.bin ---
--- obj_subdir_usr.bin/svn/lib/libsvn_diff ---
--- obj ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_diff
 created for /builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_diff
--- obj_subdir_usr.bin/svn/lib/libsvn_fs_util ---
===> usr.bin/svn/lib/libsvn_fs_util (obj)
--- obj_subdir_usr.bin/svn/lib/libsvn_fs ---
--- obj ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_fs
 created for /builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_fs
--- obj_subdir_usr.bin/svn/lib/libsvn_fs_fs ---
--- obj ---
--- obj_subdir_usr.bin/svn/lib/libsvn_fs_x ---
===> usr.bin/svn/lib/libsvn_fs_x (obj)
--- obj_subdir_usr.bin/svn/lib/libsvn_fs_fs ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_fs_fs
 created for /builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_fs_fs
--- obj_subdir_usr.bin/svn/lib/libsvn_ra ---
===> usr.bin/svn/lib/libsvn_ra (obj)
--- obj_subdir_usr.bin/svn/lib/libsvn_fs_util ---
--- obj ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_fs_util
 created for /builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_fs_util
--- obj_subdir_usr.sbin ---
--- obj ---
--- obj_subdir_usr.bin ---
--- obj_subdir_usr.bin/svn/lib/libsvn_ra_local ---
===> usr.bin/svn/lib/libsvn_ra_local (obj)
--- obj_subdir_usr.sbin ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/usr.sbin/wpa/hostapd
 created for /builds/workspace/FreeBSD_HEAD/src/usr.sbin/wpa/hostapd
--- obj_subdir_usr.sbin/wpa/hostapd_cli ---
===> usr.sbin/wpa/hostapd_cli (obj)
--- obj_subdir_usr.bin ---
--- obj_subdir_usr.bin/svn/lib/libsvn_fs_x ---
--- obj ---
--- obj_subdir_usr.bin/svn/lib/libsvn_ra ---
--- obj ---
--- obj_subdir_usr.bin/svn/lib/libsvn_fs_x ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_fs_x
 created for /builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_fs_x
--- obj_subdir_usr.bin/svn/lib/libsvn_ra ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_ra
 created for /builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_ra
--- obj_subdir_usr.bin/svn/svnbench ---
===> usr.bin/svn/svnbench (obj)
--- obj_subdir_usr.bin/svn/svndumpfilter ---
===> usr.bin/svn/svndumpfilter (obj)
--- obj_subdir_usr.bin/svn/lib ---
--- obj_subdir_usr.bin/svn/lib/libsvn_ra_local ---
--- obj ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_ra_local
 created for /builds/workspace/FreeBSD_HEAD/src/usr.bin/svn/lib/libsvn_ra_local
--- obj_subdir_usr.sbin ---
--- obj ---
--- obj_subdir_usr.bin ---
--- obj_subdir_usr.bin/svn/lib/libsvn_ra_serf ---
===> usr.bin/svn/lib/libsvn_ra_serf (obj)
--- obj_subdir_usr.sbin ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/usr.sbin/wpa/hostapd_cli
 created for /builds/workspace/FreeBSD_HEAD/src/usr.sbin/wpa/hostapd_cli
--- obj_subdir_usr.bin ---
--- obj_subdir_usr.bin/svn/svnbench ---
--- obj ---
--- obj_subdir_usr.sbin ---
--- obj_subdir_usr.sbin/wpa/ndis_events ---
===> usr.sbin/wpa/ndis_events (obj)
--- obj_subdir_usr.bin ---
--- obj_subdir_usr.bin/svn/svndumpfilter ---
--- obj ---
--- obj_subdir_usr.bin/svn/svnbench ---
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_H

Jenkins build is back to normal : FreeBSD_HEAD #837

2016-10-25 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/837/
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4160 - Fixed

2016-10-25 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4160 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4160/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4160/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4160/console

Change summaries:

307951 by imp:
Fix two backwards tests.

CID: 1365227, 1365228

307950 by imp:
Add it to the right place

307949 by imp:
Add missing file

307948 by jhb:
Use binary and (&) instead of logical to extract the mask of a capability.

CID:1365227
Submitted by:   cem

307947 by br:
Change fs image name so it will not be regenerated (we
have both big and little-endian images in tree).
Also we don't known the endianness of the platform the
image was generated on.

Sponsored by:   DARPA, AFRL
Sponsored by:   HEIF5

307946 by cem:
uhso(4): Fix a null pointer dereference

The directly following m_defrag() call can wait, so there is no reason this
call can't as well.

Reported by:Coverity
CID:1353551
Sponsored by:   Dell EMC Isilon

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Build failed in Jenkins: FreeBSD_HEAD #836

2016-10-25 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/836/--
[...truncated 10327 lines...]
--- cleanobj ---
--- h_strncpy.cleandir ---
(cd /builds/workspace/FreeBSD_HEAD/src/lib/libc/tests/ssp &&  
DEPENDFILE=.depend.h_strncpy  NO_SUBDIR=1 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/make.amd64/bmake
 -f Makefile _RECURSING_PROGS=t  PROG=h_strncpy  cleandir)
--- cleandir_subdir_sbin ---
--- cleanobj ---
--- cleandir_subdir_share ---
--- cleandepend ---
rm -f .depend .depend.*
--- cleandir_subdir_lib ---
--- cleandir_subdir_lib/libc/tests/locale ---
--- clean ---
rm -f  mbrtowc_test mbrtowc_test.full mbrtowc_test.debug t_mbrtowc.o
--- cleandir_subdir_share ---
--- cleanobj ---
--- cleandir_subdir_lib ---
--- cleandepend ---
rm -f .depend.mbrtowc_test .depend.mbrtowc_test.* GPATH GRTAGS GSYMS GTAGS
--- cleandir_subdir_lib/libbsdstat ---
===> lib/libbsdstat (cleandir)
--- cleandir_subdir_lib/libc ---
--- cleanobj ---
--- cleandir_subdir_share ---
--- cleandir_subdir_share/doc/pjdfstest ---
===> share/doc/pjdfstest (cleandir)
--- cleandir_subdir_lib ---
--- mbstowcs_test.cleandir ---
(cd /builds/workspace/FreeBSD_HEAD/src/lib/libc/tests/locale &&  
DEPENDFILE=.depend.mbstowcs_test  NO_SUBDIR=1 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/make.amd64/bmake
 -f Makefile _RECURSING_PROGS=t  PROG=mbstowcs_test  cleandir)
--- cleandir_subdir_lib/libc/tests/ssp ---
--- clean ---
rm -f  h_strncpy h_strncpy.full h_strncpy.debug h_strncpy.o
--- cleandepend ---
rm -f .depend.h_strncpy .depend.h_strncpy.* GPATH GRTAGS GSYMS GTAGS
--- cleanobj ---
--- h_vsnprintf.cleandir ---
(cd /builds/workspace/FreeBSD_HEAD/src/lib/libc/tests/ssp &&  
DEPENDFILE=.depend.h_vsnprintf  NO_SUBDIR=1 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/make.amd64/bmake
 -f Makefile _RECURSING_PROGS=t  PROG=h_vsnprintf  cleandir)
--- cleandir_subdir_lib/libbsdstat ---
--- cleanobj ---
--- cleandir_subdir_share ---
--- cleanobj ---
--- cleandir_subdir_lib ---
--- cleandir_subdir_lib/libc ---
--- h_vsprintf.cleandir ---
(cd /builds/workspace/FreeBSD_HEAD/src/lib/libc/tests/ssp &&  
DEPENDFILE=.depend.h_vsprintf  NO_SUBDIR=1 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/make.amd64/bmake
 -f Makefile _RECURSING_PROGS=t  PROG=h_vsprintf  cleandir)
--- cleandir_subdir_lib/libc/tests/locale ---
--- clean ---
--- cleandir_subdir_share ---
--- cleandir_subdir_share/doc/papers ---
===> share/doc/papers (cleandir)
--- cleandir_subdir_lib ---
rm -f  mbstowcs_test mbstowcs_test.full mbstowcs_test.debug t_mbstowcs.o
--- cleandepend ---
rm -f .depend.mbstowcs_test .depend.mbstowcs_test.* GPATH GRTAGS GSYMS GTAGS
--- cleanobj ---
--- mbsnrtowcs_test.cleandir ---
(cd /builds/workspace/FreeBSD_HEAD/src/lib/libc/tests/locale &&  
DEPENDFILE=.depend.mbsnrtowcs_test  NO_SUBDIR=1 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/make.amd64/bmake
 -f Makefile _RECURSING_PROGS=t  PROG=mbsnrtowcs_test  cleandir)
--- cleandir_subdir_lib/libc/tests/ssp ---
--- h_vsnprintf.cleandir ---
--- clean ---
rm -f  h_vsnprintf h_vsnprintf.full h_vsnprintf.debug h_vsnprintf.o
--- cleandepend ---
rm -f .depend.h_vsnprintf .depend.h_vsnprintf.* GPATH GRTAGS GSYMS GTAGS
--- cleanobj ---
--- cleandir_subdir_share ---
--- cleandir_subdir_share/doc/papers/beyond4.3 ---
===> share/doc/papers/beyond4.3 (cleandir)
--- cleandir_subdir_lib ---
--- h_vsprintf.cleandir ---
--- clean ---
rm -f  h_vsprintf h_vsprintf.full h_vsprintf.debug h_vsprintf.o
--- cleandir_subdir_share ---
--- cleandir_subdir_share/dtrace ---
===> share/dtrace (cleandir)
--- cleandir_subdir_lib ---
--- cleandepend ---
rm -f .depend.h_vsprintf .depend.h_vsprintf.* GPATH GRTAGS GSYMS GTAGS
--- cleandir_subdir_share ---
--- cleandir_subdir_share/doc ---
--- cleanobj ---
--- cleandir_subdir_lib ---
--- cleanobj ---
--- cleanobj ---
--- cleandir_subdir_share ---
--- cleandir_subdir_share/doc/papers/bufbio ---
===> share/doc/papers/bufbio (cleandir)
--- cleandir_subdir_lib ---
--- cleandir_subdir_lib/libc/tests/locale ---
--- clean ---
--- cleandir_subdir_sys ---
===> sys (cleandir)
--- cleandir_subdir_lib ---
rm -f  mbsnrtowcs_test mbsnrtowcs_test.full mbsnrtowcs_test.debug t_mbsnrtowcs.o
--- cleandepend ---
rm -f .depend.mbsnrtowcs_test .depend.mbsnrtowcs_test.* GPATH GRTAGS GSYMS GTAGS
--- cleandir_subdir_share ---
--- cleanobj ---
--- cleandir_subdir_lib ---
--- cleanobj ---
--- cleandir_subdir_share ---
--- cleandir_subdir_share/dtrace ---
--- cleanobj ---
--- cleandir_subdir_lib ---
--- mbtowc_test.cleandir ---
(cd /builds/workspace/FreeBSD_HEAD/src/lib/libc/tests/locale &&  
DEPENDFILE=.depend.mbtowc_test  NO_SUBDIR=1 
/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/make.amd64/bmake
 -f Makefile _RECURSING_PROGS=t  PROG=mbtowc_test  cleandir)
--- cleandir_subdir_share ---
--- cleandir_subdir_share/doc ---
--- cleandir_subdir_share/doc/papers/contents ---
===> 

FreeBSD_HEAD_i386 - Build #4159 - Failure

2016-10-25 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4159 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4159/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4159/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4159/console

Change summaries:

307944 by andrew:
Add MULTIDELAY support to the am335x dmtimer. This will be useful for
testing Cortex-A8 support in GENERIC.

Sponsored by:   ABT Systems Ltd

307943 by andrew:
Remove the need for the delay to be zero when MULTIDELAY is undefined,
it may be useful to only enable this in some configs.

Sponsored by:   ABT Systems Ltd

307942 by imp:
Really make WITHOUT_FORTH (MK_FORTH==no) work. The recent inclusion of
FICL definitions not in ficl/ficl32 files broke this generally. This
makes that stuff conditional on BOOT_FORTH. Also, move definitions
related to the architecture (FICL_CPUARCH and friends) into
Makefile.ficl that all parts of the tree that include files with ficl
need to include (but only if MK_FORTH == yes). In addition, had to fix
library ordering issue with LIBSTAND to keep it last. Without boot
forth, there's no references to memset to bring in memset.o from
libstand.a to satisfy libgeliboot.a's use of it. Listing libstand last
solves this issue (and it's the proper place for libstand to boot).

307937 by glebius:
Fix unchecked array reference in the VGA device emulation code.

Submitted by:   Ilja Van Sprundel 
Patch by:   tychon
Security:   SA-16:32

307936 by glebius:
The argument validation in r296956 was not enough to close all possible
overflows in sysarch(2).

Submitted by:   Kun Yang 
Patch by:   kib
Security:   SA-16:15

307928 by andrew:
Remove armadaxp_idcache_wbinv_all, it's a static function in the ELF
trampoline and not used outside this.

Sponsored by:   ABT Systems Ltd

307927 by marcel:
Be more precise when including headers so that we're less likely to
depend on namespace pollution and as such become more portable. This
means including headers like  or , but also
making sure we include system/host headers before local headers.

While here: define ENOATTR as ENOMSG in mtree.c. There is no ENOATTR
on Linux.

With this, makefs is ready for compilation on macOS and Linux.

307926 by glebius:
Check m_getcl() return value.

CID:611376

307925 by andrew:
Remove arm11x6_setttb and armv7_setttb as they are unused. While here
remove unneeded code from the ARMv7 cpu assembly code.

Sponsored by:   ABT Systems Ltd

307923 by marcel:
Allow building makefs(8) from another Makefile (such as one in
a seperate directory hierarchy used to build tools). This boils
down to replacing the use of ${.CURDIR} with either ${SRCDIR}
or ${SRCTOP}. SRCDIR is defined as the directory in which the
Makefile lives that bmake(1) is currently reading. Use SRCTOP
when reaching outside of makefs's directory.



The end of the build log:

[...truncated 7618 lines...]
/usr/obj/usr/src/rescue/rescue/usr/src/usr.sbin/chown created for 
/usr/src/usr.sbin/chown
--- obj_subdir_sbin ---
--- obj_subdir_sbin/ipf/ipresend ---
===> sbin/ipf/ipresend (obj)
--- obj_subdir_rescue ---
--- obj_crunchdir_iscsid ---
cd /usr/src/rescue/rescue/../../usr.sbin/iscsid &&  MK_AUTO_OBJ=no MK_TESTS=no  
UPDATE_DEPENDFILE=no  _RECURSING_CRUNCH=1 
MAKEOBJDIRPREFIX=/usr/obj/usr/src/rescue/rescue 
/usr/obj/usr/src/make.i386/bmake  DIRPRFX=rescue/rescue/iscsid/ -DRESCUE 
CRUNCH_CFLAGS=-DRESCUE MK_AUTO_OBJ=no obj
--- obj_subdir_share ---
--- obj ---
/usr/obj/usr/src/share/doc/psd/05.sysman created for 
/usr/src/share/doc/psd/05.sysman
--- obj_subdir_share/doc/psd/06.Clang ---
===> share/doc/psd/06.Clang (obj)
--- obj ---
/usr/obj/usr/src/share/doc/psd/06.Clang created for 
/usr/src/share/doc/psd/06.Clang
--- obj_subdir_share/doc/psd/12.make ---
===> share/doc/psd/12.make (obj)
--- obj_subdir_lib ---
--- obj ---
/usr/obj/usr/src/lib/libpam/modules/pam_unix created for 
/usr/src/lib/libpam/modules/pam_unix
--- obj_subdir_share ---
--- obj ---
--- obj_subdir_lib ---
--- obj_subdir_lib/libpam/static_libpam ---
===> lib/libpam/static_libpam (obj)
--- obj_subdir_share ---
/usr/obj/usr/src/share/doc/psd/12.make created for 
/usr/src/share/doc/psd/12.make
--- obj_subdir_rescue ---
--- obj ---
--- obj_subdir_share ---
--- obj_subdir_share/doc/psd/15.yacc ---
===> share/doc/psd/15.yacc (obj)
--- obj_subdir_rescue ---
/usr/obj/usr/src/rescue/rescue/usr/src/usr.sbin/iscsid created for 
/usr/src/usr.sbin/iscsid
--- obj_subdir_share ---
--- obj_subdir_share/doc/psd/16.lex ---
===> share/doc/psd/16.lex (obj)
--- obj_subdir_sbin ---
--- obj ---
/usr/obj/usr/src/sbin/ipf/ipresend created for /usr/src/sbin/ipf/ipresend
--- obj_subdir_sbin/ipfw ---
===> sbin/ipfw (obj)
--- obj_subdir_share ---
--- obj_subdir_share/doc/psd/15.yacc ---
--- obj ---
/usr/obj/usr/src/share/doc/psd/15.yacc created for 
/usr/src/share/doc/psd/15.yacc
--- obj_subdir_share/doc/psd/16.lex ---
--- obj ---
--- obj_subdir_sys ---
===> sys (obj)
--- obj_subdir_share ---
/us

Jenkins build is back to normal : FreeBSD_HEAD #809

2016-10-21 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/809/
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Jenkins build is back to normal : FreeBSD_HEAD #804

2016-10-21 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/804/
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #4122 - Fixed

2016-10-20 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4122 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4122/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4122/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4122/console

Change summaries:

307700 by ngie:
Only build lib/libc/tests/iconv if MK_ICONV != no

MFC after:  1 week
Reported by:dam...@damianek.be
Sponsored by:   Dell EMC Isilon

307699 by ngie:
Revert r307689

The proposed change ("Fix building of llvm's unwind if gcc has been
also built") breaks the build with clang/llvm.

Tested with...

(
export SRCCONF=/dev/null WITH_CLANG=
cd gnu/lib/libgcc; make obj; make depend; make all
)

MFC after:  3 days
X-MFC with: r307689
Pointyhat to:   bapt
Reported by:Jenkins, O. Hartmann 
Sponsored by:   Dell EMC Isilon

307698 by lwhsu:
- Add required header for fixing `make` in sys/modules/gpio

Reviewed by:imp, loos
Differential Revision:  https://reviews.freebsd.org/D7815

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Build failed in Jenkins: FreeBSD_HEAD #803

2016-10-20 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/803/--
[...truncated 71671 lines...]
--- ja_JP.eucJP.cat ---
--- ko_KR.UTF-8.cat ---
--- ko_KR.eucKR.cat ---
--- ja_JP.eucJP.cat ---
gencat ja_JP.eucJP.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/ja_JP.eucJP.msg
--- ko_KR.UTF-8.cat ---
gencat ko_KR.UTF-8.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/ko_KR.UTF-8.msg
--- ko_KR.eucKR.cat ---
gencat ko_KR.eucKR.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/ko_KR.eucKR.msg
--- mn_MN.UTF-8.cat ---
--- nl_NL.ISO8859-1.cat ---
--- no_NO.ISO8859-1.cat ---
--- mn_MN.UTF-8.cat ---
gencat mn_MN.UTF-8.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/mn_MN.UTF-8.msg
--- nl_NL.ISO8859-1.cat ---
gencat nl_NL.ISO8859-1.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/nl_NL.ISO8859-1.msg
--- no_NO.ISO8859-1.cat ---
gencat no_NO.ISO8859-1.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/no_NO.ISO8859-1.msg
--- pl_PL.ISO8859-2.cat ---
--- pt_BR.ISO8859-1.cat ---
--- ru_RU.KOI8-R.cat ---
--- pl_PL.ISO8859-2.cat ---
gencat pl_PL.ISO8859-2.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/pl_PL.ISO8859-2.msg
--- pt_BR.ISO8859-1.cat ---
gencat pt_BR.ISO8859-1.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/pt_BR.ISO8859-1.msg
--- ru_RU.KOI8-R.cat ---
gencat ru_RU.KOI8-R.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/ru_RU.KOI8-R.msg
--- sk_SK.ISO8859-2.cat ---
--- sv_SE.ISO8859-1.cat ---
--- uk_UA.UTF-8.cat ---
--- sk_SK.ISO8859-2.cat ---
gencat sk_SK.ISO8859-2.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/sk_SK.ISO8859-2.msg
--- sv_SE.ISO8859-1.cat ---
gencat sv_SE.ISO8859-1.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/sv_SE.ISO8859-1.msg
--- uk_UA.UTF-8.cat ---
gencat uk_UA.UTF-8.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/uk_UA.UTF-8.msg
--- zh_CN.GB18030.cat ---
--- zh_CN.GB2312.cat ---
--- zh_CN.GB18030.cat ---
gencat zh_CN.GB18030.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/zh_CN.GB18030.msg
--- zh_CN.UTF-8.cat ---
--- zh_CN.GB2312.cat ---
gencat zh_CN.GB2312.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/zh_CN.GB2312.msg
--- zh_CN.UTF-8.cat ---
gencat zh_CN.UTF-8.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/zh_CN.UTF-8.msg
--- libc_pic.a ---
--- libc.a ---
building special pic c library
--- libc_pic.a ---
ar -crD libc_pic.a bt_close.pico bt_conv.pico bt_debug.pico bt_delete.pico 
bt_get.pico bt_open.pico bt_overflow.pico bt_page.pico bt_put.pico 
bt_search.pico bt_seq.pico bt_split.pico bt_utils.pico db.pico hash.pico 
hash_bigkey.pico hash_buf.pico hash_func.pico hash_log2.pico hash_page.pico 
ndbm.pico mpool.pico mpool-compat.pico rec_close.pico rec_delete.pico 
rec_get.pico rec_open.pico rec_put.pico rec_search.pico rec_seq.pico 
rec_utils.pico creat.pico gethostid.pico getwd.pico killpg.pico sethostid.pico 
setpgrp.pico setrgid.pico setruid.pico sigcompat.pico __getosreldate.pico 
__pthread_mutex_init_calloc_cb_stub.pico __xuname.pico _once_stub.pico 
_pthread_stubs.pico _rand48.pico _spinlock_stub.pico _thread_init.pico 
alarm.pico arc4random.pico assert.pico auxv.pico basename.pico 
cap_sandboxed.pico check_utility_compat.pico clock.pico 
clock_getcpuclockid.pico closedir.pico confstr.pico crypt.pico ctermid.pico 
daemon.pico devname.pico dirfd.pico dirname.pico dirname_compat.pico disklabel
 .pico dlfcn.pico drand48.pico dup3.pico elf_utils.pico erand48.pico err.pico 
errlst.pico errno.pico exec.pico fdevname.pico feature_present.pico 
fmtcheck.pico fmtmsg.pico fnmatch.pico fpclassify.pico frexp.pico fstab.pico 
ftok.pico fts.pico ftw.pico getbootfile.pico getbsize.pico getcap.pico 
getcwd.pico getdomainname.pico getgrent.pico getgrouplist.pico gethostname.pico 
getloadavg.pico getlogin.pico getmntinfo.pico getnetgrent.pico 
getosreldate.pico getpagesize.pico getpagesizes.pico getpeereid.pico 
getprogname.pico getpwent.pico getttyent.pico getusershell.pico getutxent.pico 
getvfsbyname.pico glob.pico initgroups.pico isatty.pico isinf.pico isnan.pico 
jrand48.pico lcong48.pico libc_dlopen.pico lockf.pico lrand48.pico mrand48.pico 
nftw.pico nice.pico nlist.pico nrand48.pico opendir.pico pause.pico 
pmadvise.pico popen.pico posix_spawn.pico psignal.pico pututxline.pico 
pw_scan.pico raise.pico readdir.pico readpassphrase.pico recvmmsg.pico 
rewinddir.pico scandir.pico seed48.pico seekd
 ir.pico semctl.pico sendmmsg.pico setdomainname.pico sethostname.pico 
setjmperr.pico setmode.pico setproctitle.pico setprogname.pico 
siginterrupt.pico siglist.pico signal.pico sigsetops.pico sleep.pico 
srand48.pico statvfs.pico stringlist.pico strtofflags.pico sysconf.pico 
sysctl.pico sysctlbyname.pico sysctlnametomib.pico syslog.pico telldir.pico 
termios.pico time.pico times.pico timezone.pico tls.pico ttyname.pico 
ttyslot.pico ualarm.pico ulimit.pico uname.pico usleep.pico utime.pico 
utxdb.pico valloc.pico wait.pico wait3.pico waitpid.pico waitid.pico 
wordexp.pico fts-compat.pico unvis-compat.pico p

FreeBSD_HEAD_i386 - Build #4121 - Still Failing

2016-10-20 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4121 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4121/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4121/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4121/console

Change summaries:

307696 by jhibbits:
Remove a hack requiring dtsec0 to always be enabled for mdio.

Instead replace it with a different hack, that turns fman into a simplebus
subclass, and maps its children within its address space.

Since all PHY communication is done through dtsec0's mdio space, the FDT
contains a reference to the dtsec0 mdio handle in all nodes that need it.
Instead of using Freescale's implementation for MII access, use our own (copied
loosely from the eTSEC driver, and could possibly be merged eventually).  This
lets us access the registers directly rather than needing a full dtsec interface
just to access the registers.

Future directions will include turning fman into more of a simplebus, and not
mapping the region and playing games.  This will require changes to the dtsec
driver to make it a child of fman, and possibly other drivers as well.

307695 by jhibbits:
Remove an unnecessary debug printf.



The end of the build log:

[...truncated 36716 lines...]
--- ko_KR.eucKR.cat ---
--- ko_KR.UTF-8.cat ---
gencat ko_KR.UTF-8.cat /usr/src/lib/libc/nls/ko_KR.UTF-8.msg
--- ko_KR.eucKR.cat ---
gencat ko_KR.eucKR.cat /usr/src/lib/libc/nls/ko_KR.eucKR.msg
--- mn_MN.UTF-8.cat ---
--- nl_NL.ISO8859-1.cat ---
--- mn_MN.UTF-8.cat ---
gencat mn_MN.UTF-8.cat /usr/src/lib/libc/nls/mn_MN.UTF-8.msg
--- nl_NL.ISO8859-1.cat ---
gencat nl_NL.ISO8859-1.cat /usr/src/lib/libc/nls/nl_NL.ISO8859-1.msg
--- no_NO.ISO8859-1.cat ---
--- pl_PL.ISO8859-2.cat ---
--- pt_BR.ISO8859-1.cat ---
--- pl_PL.ISO8859-2.cat ---
gencat pl_PL.ISO8859-2.cat /usr/src/lib/libc/nls/pl_PL.ISO8859-2.msg
--- no_NO.ISO8859-1.cat ---
gencat no_NO.ISO8859-1.cat /usr/src/lib/libc/nls/no_NO.ISO8859-1.msg
--- pt_BR.ISO8859-1.cat ---
gencat pt_BR.ISO8859-1.cat /usr/src/lib/libc/nls/pt_BR.ISO8859-1.msg
--- ru_RU.KOI8-R.cat ---
--- sk_SK.ISO8859-2.cat ---
--- sv_SE.ISO8859-1.cat ---
--- ru_RU.KOI8-R.cat ---
gencat ru_RU.KOI8-R.cat /usr/src/lib/libc/nls/ru_RU.KOI8-R.msg
--- sk_SK.ISO8859-2.cat ---
gencat sk_SK.ISO8859-2.cat /usr/src/lib/libc/nls/sk_SK.ISO8859-2.msg
--- sv_SE.ISO8859-1.cat ---
gencat sv_SE.ISO8859-1.cat /usr/src/lib/libc/nls/sv_SE.ISO8859-1.msg
--- uk_UA.UTF-8.cat ---
--- zh_CN.GB18030.cat ---
--- zh_CN.GB2312.cat ---
--- uk_UA.UTF-8.cat ---
gencat uk_UA.UTF-8.cat /usr/src/lib/libc/nls/uk_UA.UTF-8.msg
--- zh_CN.GB18030.cat ---
gencat zh_CN.GB18030.cat /usr/src/lib/libc/nls/zh_CN.GB18030.msg
--- zh_CN.GB2312.cat ---
gencat zh_CN.GB2312.cat /usr/src/lib/libc/nls/zh_CN.GB2312.msg
--- zh_CN.UTF-8.cat ---
--- libc_pic.a ---
--- zh_CN.UTF-8.cat ---
gencat zh_CN.UTF-8.cat /usr/src/lib/libc/nls/zh_CN.UTF-8.msg
--- libc.a ---
building special pic c library
--- libc_pic.a ---
ar -crD libc_pic.a bt_close.pico bt_conv.pico bt_debug.pico bt_delete.pico 
bt_get.pico bt_open.pico bt_overflow.pico bt_page.pico bt_put.pico 
bt_search.pico bt_seq.pico bt_split.pico bt_utils.pico db.pico hash.pico 
hash_bigkey.pico hash_buf.pico hash_func.pico hash_log2.pico hash_page.pico 
ndbm.pico mpool.pico mpool-compat.pico rec_close.pico rec_delete.pico 
rec_get.pico rec_open.pico rec_put.pico rec_search.pico rec_seq.pico 
rec_utils.pico creat.pico gethostid.pico getwd.pico killpg.pico sethostid.pico 
setpgrp.pico setrgid.pico setruid.pico sigcompat.pico __getosreldate.pico 
__pthread_mutex_init_calloc_cb_stub.pico __xuname.pico _once_stub.pico 
_pthread_stubs.pico _rand48.pico _spinlock_stub.pico _thread_init.pico 
alarm.pico arc4random.pico assert.pico auxv.pico basename.pico 
cap_sandboxed.pico check_utility_compat.pico clock.pico 
clock_getcpuclockid.pico closedir.pico confstr.pico crypt.pico ctermid.pico 
daemon.pico devname.pico dirfd.pico dirname.pico dirname_compat.pico disklabel
 .pico dlfcn.pico drand48.pico dup3.pico elf_utils.pico erand48.pico err.pico 
errlst.pico errno.pico exec.pico fdevname.pico feature_present.pico 
fmtcheck.pico fmtmsg.pico fnmatch.pico fpclassify.pico frexp.pico fstab.pico 
ftok.pico fts.pico ftw.pico getbootfile.pico getbsize.pico getcap.pico 
getcwd.pico getdomainname.pico getgrent.pico getgrouplist.pico gethostname.pico 
getloadavg.pico getlogin.pico getmntinfo.pico getnetgrent.pico 
getosreldate.pico getpagesize.pico getpagesizes.pico getpeereid.pico 
getprogname.pico getpwent.pico getttyent.pico getusershell.pico getutxent.pico 
getvfsbyname.pico glob.pico initgroups.pico isatty.pico isinf.pico isnan.pico 
jrand48.pico lcong48.pico libc_dlopen.pico lockf.pico lrand48.pico mrand48.pico 
nftw.pico nice.pico nlist.pico nrand48.pico opendir.pico pause.pico 
pmadvise.pico popen.pico posix_spawn.pico psignal.pico pututxline.pico 
pw_scan.pico raise.pico readdir.pico readpassphrase.pico recvmmsg.pico 
rewinddir.pico scandir.pico seed48.pico 

FreeBSD_HEAD_i386 - Build #4120 - Still Failing

2016-10-20 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4120 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4120/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4120/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4120/console

Change summaries:

307694 by rmacklem:
A problem w.r.t. interoperation between the FreeBSD NFSv4.1 server with
delegations enabled and the Linux NFSv4.1 client was reported in
reviews.freebsd.org/D7891.
I believe that the FreeBSD server behaviour conforms to the RFC and that
the Linux client has a bug. Therefore, I do not think the proposed patch
is appropriate. When nfsrv_writedelegifpos is non-zero, the FreeBSD
server will issue a write delegation for a read open if possible.
The Linux client then erroneously assumes that the credentials used for
the read open can write the file.
This patch reverses the default value for nfsrv_writedelegifpos to 0 so
that the default behaviour is Linux compatible and adds a sysctl that can
be used to set nfsrv_writedelegifpos.

This change should only affect users that are mounting a FreeBSD server
with delegations enabled (they are not enabled by default) with a Linux
NFSv4.1 client mount.

Reported by:fatih.a...@gandi.net
Tested by:  fatih.a...@gandi.net
MFC after:  2 weeks
Differential Revision:  https://reviews.freebsd.org/D7891



The end of the build log:

[...truncated 36384 lines...]
--- ja_JP.eucJP.cat ---
--- ko_KR.UTF-8.cat ---
--- ja_JP.UTF-8.cat ---
gencat ja_JP.UTF-8.cat /usr/src/lib/libc/nls/ja_JP.UTF-8.msg
--- ja_JP.eucJP.cat ---
gencat ja_JP.eucJP.cat /usr/src/lib/libc/nls/ja_JP.eucJP.msg
--- ko_KR.UTF-8.cat ---
gencat ko_KR.UTF-8.cat /usr/src/lib/libc/nls/ko_KR.UTF-8.msg
--- ko_KR.eucKR.cat ---
gencat ko_KR.eucKR.cat /usr/src/lib/libc/nls/ko_KR.eucKR.msg
--- mn_MN.UTF-8.cat ---
--- nl_NL.ISO8859-1.cat ---
--- mn_MN.UTF-8.cat ---
gencat mn_MN.UTF-8.cat /usr/src/lib/libc/nls/mn_MN.UTF-8.msg
--- nl_NL.ISO8859-1.cat ---
gencat nl_NL.ISO8859-1.cat /usr/src/lib/libc/nls/nl_NL.ISO8859-1.msg
--- no_NO.ISO8859-1.cat ---
--- pl_PL.ISO8859-2.cat ---
--- no_NO.ISO8859-1.cat ---
gencat no_NO.ISO8859-1.cat /usr/src/lib/libc/nls/no_NO.ISO8859-1.msg
--- pl_PL.ISO8859-2.cat ---
gencat pl_PL.ISO8859-2.cat /usr/src/lib/libc/nls/pl_PL.ISO8859-2.msg
--- pt_BR.ISO8859-1.cat ---
--- ru_RU.KOI8-R.cat ---
--- pt_BR.ISO8859-1.cat ---
gencat pt_BR.ISO8859-1.cat /usr/src/lib/libc/nls/pt_BR.ISO8859-1.msg
--- sk_SK.ISO8859-2.cat ---
--- ru_RU.KOI8-R.cat ---
gencat ru_RU.KOI8-R.cat /usr/src/lib/libc/nls/ru_RU.KOI8-R.msg
--- sv_SE.ISO8859-1.cat ---
--- sk_SK.ISO8859-2.cat ---
gencat sk_SK.ISO8859-2.cat /usr/src/lib/libc/nls/sk_SK.ISO8859-2.msg
--- sv_SE.ISO8859-1.cat ---
gencat sv_SE.ISO8859-1.cat /usr/src/lib/libc/nls/sv_SE.ISO8859-1.msg
--- uk_UA.UTF-8.cat ---
--- zh_CN.GB18030.cat ---
--- uk_UA.UTF-8.cat ---
gencat uk_UA.UTF-8.cat /usr/src/lib/libc/nls/uk_UA.UTF-8.msg
--- zh_CN.GB2312.cat ---
--- zh_CN.GB18030.cat ---
gencat zh_CN.GB18030.cat /usr/src/lib/libc/nls/zh_CN.GB18030.msg
--- zh_CN.UTF-8.cat ---
--- zh_CN.GB2312.cat ---
gencat zh_CN.GB2312.cat /usr/src/lib/libc/nls/zh_CN.GB2312.msg
--- zh_CN.UTF-8.cat ---
gencat zh_CN.UTF-8.cat /usr/src/lib/libc/nls/zh_CN.UTF-8.msg
--- libc_pic.a ---
--- libc.a ---
building special pic c library
--- libc_pic.a ---
ar -crD libc_pic.a bt_close.pico bt_conv.pico bt_debug.pico bt_delete.pico 
bt_get.pico bt_open.pico bt_overflow.pico bt_page.pico bt_put.pico 
bt_search.pico bt_seq.pico bt_split.pico bt_utils.pico db.pico hash.pico 
hash_bigkey.pico hash_buf.pico hash_func.pico hash_log2.pico hash_page.pico 
ndbm.pico mpool.pico mpool-compat.pico rec_close.pico rec_delete.pico 
rec_get.pico rec_open.pico rec_put.pico rec_search.pico rec_seq.pico 
rec_utils.pico creat.pico gethostid.pico getwd.pico killpg.pico sethostid.pico 
setpgrp.pico setrgid.pico setruid.pico sigcompat.pico __getosreldate.pico 
__pthread_mutex_init_calloc_cb_stub.pico __xuname.pico _once_stub.pico 
_pthread_stubs.pico _rand48.pico _spinlock_stub.pico _thread_init.pico 
alarm.pico arc4random.pico assert.pico auxv.pico basename.pico 
cap_sandboxed.pico check_utility_compat.pico clock.pico 
clock_getcpuclockid.pico closedir.pico confstr.pico crypt.pico ctermid.pico 
daemon.pico devname.pico dirfd.pico dirname.pico dirname_compat.pico disklabel
 .pico dlfcn.pico drand48.pico dup3.pico elf_utils.pico erand48.pico err.pico 
errlst.pico errno.pico exec.pico fdevname.pico feature_present.pico 
fmtcheck.pico fmtmsg.pico fnmatch.pico fpclassify.pico frexp.pico fstab.pico 
ftok.pico fts.pico ftw.pico getbootfile.pico getbsize.pico getcap.pico 
getcwd.pico getdomainname.pico getgrent.pico getgrouplist.pico gethostname.pico 
getloadavg.pico getlogin.pico getmntinfo.pico getnetgrent.pico 
getosreldate.pico getpagesize.pico getpagesizes.pico getpeereid.pico 
getprogname.pico getpwent.pico getttyent.pico getusershell.pico getutxent.pico 
getvfsbyname.pico glob.pico initgroups.pico isatty.pico isin

Build failed in Jenkins: FreeBSD_HEAD #802

2016-10-20 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/802/--
[...truncated 71899 lines...]
--- ko_KR.UTF-8.cat ---
--- ja_JP.eucJP.cat ---
gencat ja_JP.eucJP.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/ja_JP.eucJP.msg
--- ko_KR.eucKR.cat ---
--- ko_KR.UTF-8.cat ---
gencat ko_KR.UTF-8.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/ko_KR.UTF-8.msg
--- mn_MN.UTF-8.cat ---
--- ko_KR.eucKR.cat ---
gencat ko_KR.eucKR.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/ko_KR.eucKR.msg
--- mn_MN.UTF-8.cat ---
gencat mn_MN.UTF-8.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/mn_MN.UTF-8.msg
--- nl_NL.ISO8859-1.cat ---
--- no_NO.ISO8859-1.cat ---
--- nl_NL.ISO8859-1.cat ---
gencat nl_NL.ISO8859-1.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/nl_NL.ISO8859-1.msg
--- pl_PL.ISO8859-2.cat ---
--- no_NO.ISO8859-1.cat ---
gencat no_NO.ISO8859-1.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/no_NO.ISO8859-1.msg
--- pl_PL.ISO8859-2.cat ---
gencat pl_PL.ISO8859-2.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/pl_PL.ISO8859-2.msg
--- pt_BR.ISO8859-1.cat ---
--- ru_RU.KOI8-R.cat ---
--- pt_BR.ISO8859-1.cat ---
gencat pt_BR.ISO8859-1.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/pt_BR.ISO8859-1.msg
--- sk_SK.ISO8859-2.cat ---
--- ru_RU.KOI8-R.cat ---
gencat ru_RU.KOI8-R.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/ru_RU.KOI8-R.msg
--- sv_SE.ISO8859-1.cat ---
--- sk_SK.ISO8859-2.cat ---
gencat sk_SK.ISO8859-2.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/sk_SK.ISO8859-2.msg
--- uk_UA.UTF-8.cat ---
--- sv_SE.ISO8859-1.cat ---
gencat sv_SE.ISO8859-1.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/sv_SE.ISO8859-1.msg
--- zh_CN.GB18030.cat ---
--- uk_UA.UTF-8.cat ---
gencat uk_UA.UTF-8.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/uk_UA.UTF-8.msg
--- zh_CN.GB2312.cat ---
--- zh_CN.GB18030.cat ---
gencat zh_CN.GB18030.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/zh_CN.GB18030.msg
--- zh_CN.UTF-8.cat ---
--- zh_CN.GB2312.cat ---
gencat zh_CN.GB2312.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/zh_CN.GB2312.msg
--- libc_pic.a ---
--- zh_CN.UTF-8.cat ---
gencat zh_CN.UTF-8.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/zh_CN.UTF-8.msg
--- libc.a ---
building special pic c library
--- libc_pic.a ---
ar -crD libc_pic.a bt_close.pico bt_conv.pico bt_debug.pico bt_delete.pico 
bt_get.pico bt_open.pico bt_overflow.pico bt_page.pico bt_put.pico 
bt_search.pico bt_seq.pico bt_split.pico bt_utils.pico db.pico hash.pico 
hash_bigkey.pico hash_buf.pico hash_func.pico hash_log2.pico hash_page.pico 
ndbm.pico mpool.pico mpool-compat.pico rec_close.pico rec_delete.pico 
rec_get.pico rec_open.pico rec_put.pico rec_search.pico rec_seq.pico 
rec_utils.pico creat.pico gethostid.pico getwd.pico killpg.pico sethostid.pico 
setpgrp.pico setrgid.pico setruid.pico sigcompat.pico __getosreldate.pico 
__pthread_mutex_init_calloc_cb_stub.pico __xuname.pico _once_stub.pico 
_pthread_stubs.pico _rand48.pico _spinlock_stub.pico _thread_init.pico 
alarm.pico arc4random.pico assert.pico auxv.pico basename.pico 
cap_sandboxed.pico check_utility_compat.pico clock.pico 
clock_getcpuclockid.pico closedir.pico confstr.pico crypt.pico ctermid.pico 
daemon.pico devname.pico dirfd.pico dirname.pico dirname_compat.pico disklabel
 .pico dlfcn.pico drand48.pico dup3.pico elf_utils.pico erand48.pico err.pico 
errlst.pico errno.pico exec.pico fdevname.pico feature_present.pico 
fmtcheck.pico fmtmsg.pico fnmatch.pico fpclassify.pico frexp.pico fstab.pico 
ftok.pico fts.pico ftw.pico getbootfile.pico getbsize.pico getcap.pico 
getcwd.pico getdomainname.pico getgrent.pico getgrouplist.pico gethostname.pico 
getloadavg.pico getlogin.pico getmntinfo.pico getnetgrent.pico 
getosreldate.pico getpagesize.pico getpagesizes.pico getpeereid.pico 
getprogname.pico getpwent.pico getttyent.pico getusershell.pico getutxent.pico 
getvfsbyname.pico glob.pico initgroups.pico isatty.pico isinf.pico isnan.pico 
jrand48.pico lcong48.pico libc_dlopen.pico lockf.pico lrand48.pico mrand48.pico 
nftw.pico nice.pico nlist.pico nrand48.pico opendir.pico pause.pico 
pmadvise.pico popen.pico posix_spawn.pico psignal.pico pututxline.pico 
pw_scan.pico raise.pico readdir.pico readpassphrase.pico recvmmsg.pico 
rewinddir.pico scandir.pico seed48.pico seekd
 ir.pico semctl.pico sendmmsg.pico setdomainname.pico sethostname.pico 
setjmperr.pico setmode.pico setproctitle.pico setprogname.pico 
siginterrupt.pico siglist.pico signal.pico sigsetops.pico sleep.pico 
srand48.pico statvfs.pico stringlist.pico strtofflags.pico sysconf.pico 
sysctl.pico sysctlbyname.pico sysctlnametomib.pico syslog.pico telldir.pico 
termios.pico time.pico times.pico timezone.pico tls.pico ttyname.pico 
ttyslot.pico ualarm.pico ulimit.pico uname.pico usleep.pico utime.pico 
utxdb.pico valloc.pico wait.pico wait3.pico waitpid.pico waitid.pico 
wordexp.pico fts-compat.pico unvis-compat.pico pwcache.pico unvis.pico v

FreeBSD_HEAD_i386 - Build #4119 - Still Failing

2016-10-20 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4119 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4119/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4119/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4119/console

Change summaries:

307693 by markj:
Simplify keg_drain() a bit by using LIST_FOREACH_SAFE.

MFC after:  1 week

307692 by markj:
gmirror: Add a subroutine to free synchronization BIOs.

This addresses a memory leak that occurs upon an I/O error during a mirror
synchronization.

MFC after:  2 weeks
Sponsored by:   Dell EMC Isilon

307691 by markj:
gmirror: Release pending regular requests when synchronization stops.

Normally gmirror allows colliding requests to proceed whenever a
synchronization request completes and advances to the next offset. However
if an I/O request collides with one of the final g_mirror_syncreqs, nothing
releases it once synchronization completes, resulting in an apparent I/O
hang. The same problem can occur if synchronization is aborted by an
I/O error. Therefore, be sure to requeue pending requests when
mirror synchronization is stopped for any reason.

While here, remove some dead code from g_mirror_regular_release().

MFC after:  2 weeks
Sponsored by:   Dell EMC Isilon

307690 by emaste:
Don't build libssp as a prereq lib if WITHOUT_SSP is set

Reviewed by:brooks
Differential Revision:  https://reviews.freebsd.org/D8301



The end of the build log:

[...truncated 36493 lines...]
--- ko_KR.UTF-8.cat ---
--- ko_KR.eucKR.cat ---
--- ja_JP.eucJP.cat ---
gencat ja_JP.eucJP.cat /usr/src/lib/libc/nls/ja_JP.eucJP.msg
--- ko_KR.UTF-8.cat ---
gencat ko_KR.UTF-8.cat /usr/src/lib/libc/nls/ko_KR.UTF-8.msg
--- ko_KR.eucKR.cat ---
gencat ko_KR.eucKR.cat /usr/src/lib/libc/nls/ko_KR.eucKR.msg
--- mn_MN.UTF-8.cat ---
--- nl_NL.ISO8859-1.cat ---
--- mn_MN.UTF-8.cat ---
gencat mn_MN.UTF-8.cat /usr/src/lib/libc/nls/mn_MN.UTF-8.msg
--- nl_NL.ISO8859-1.cat ---
gencat nl_NL.ISO8859-1.cat /usr/src/lib/libc/nls/nl_NL.ISO8859-1.msg
--- no_NO.ISO8859-1.cat ---
gencat no_NO.ISO8859-1.cat /usr/src/lib/libc/nls/no_NO.ISO8859-1.msg
--- pl_PL.ISO8859-2.cat ---
--- pt_BR.ISO8859-1.cat ---
--- pl_PL.ISO8859-2.cat ---
gencat pl_PL.ISO8859-2.cat /usr/src/lib/libc/nls/pl_PL.ISO8859-2.msg
--- pt_BR.ISO8859-1.cat ---
gencat pt_BR.ISO8859-1.cat /usr/src/lib/libc/nls/pt_BR.ISO8859-1.msg
--- ru_RU.KOI8-R.cat ---
gencat ru_RU.KOI8-R.cat /usr/src/lib/libc/nls/ru_RU.KOI8-R.msg
--- sk_SK.ISO8859-2.cat ---
gencat sk_SK.ISO8859-2.cat /usr/src/lib/libc/nls/sk_SK.ISO8859-2.msg
--- sv_SE.ISO8859-1.cat ---
--- uk_UA.UTF-8.cat ---
--- sv_SE.ISO8859-1.cat ---
gencat sv_SE.ISO8859-1.cat /usr/src/lib/libc/nls/sv_SE.ISO8859-1.msg
--- uk_UA.UTF-8.cat ---
gencat uk_UA.UTF-8.cat /usr/src/lib/libc/nls/uk_UA.UTF-8.msg
--- zh_CN.GB18030.cat ---
--- zh_CN.GB2312.cat ---
--- zh_CN.GB18030.cat ---
gencat zh_CN.GB18030.cat /usr/src/lib/libc/nls/zh_CN.GB18030.msg
--- zh_CN.GB2312.cat ---
gencat zh_CN.GB2312.cat /usr/src/lib/libc/nls/zh_CN.GB2312.msg
--- zh_CN.UTF-8.cat ---
gencat zh_CN.UTF-8.cat /usr/src/lib/libc/nls/zh_CN.UTF-8.msg
--- libc_pic.a ---
building special pic c library
ar -crD libc_pic.a bt_close.pico bt_conv.pico bt_debug.pico bt_delete.pico 
bt_get.pico bt_open.pico bt_overflow.pico bt_page.pico bt_put.pico 
bt_search.pico bt_seq.pico bt_split.pico bt_utils.pico db.pico hash.pico 
hash_bigkey.pico hash_buf.pico hash_func.pico hash_log2.pico hash_page.pico 
ndbm.pico mpool.pico mpool-compat.pico rec_close.pico rec_delete.pico 
rec_get.pico rec_open.pico rec_put.pico rec_search.pico rec_seq.pico 
rec_utils.pico creat.pico gethostid.pico getwd.pico killpg.pico sethostid.pico 
setpgrp.pico setrgid.pico setruid.pico sigcompat.pico __getosreldate.pico 
__pthread_mutex_init_calloc_cb_stub.pico __xuname.pico _once_stub.pico 
_pthread_stubs.pico _rand48.pico _spinlock_stub.pico _thread_init.pico 
alarm.pico arc4random.pico assert.pico auxv.pico basename.pico 
cap_sandboxed.pico check_utility_compat.pico clock.pico 
clock_getcpuclockid.pico closedir.pico confstr.pico crypt.pico ctermid.pico 
daemon.pico devname.pico dirfd.pico dirname.pico dirname_compat.pico disklabel
 .pico dlfcn.pico drand48.pico dup3.pico elf_utils.pico erand48.pico err.pico 
errlst.pico errno.pico exec.pico fdevname.pico feature_present.pico 
fmtcheck.pico fmtmsg.pico fnmatch.pico fpclassify.pico frexp.pico fstab.pico 
ftok.pico fts.pico ftw.pico getbootfile.pico getbsize.pico getcap.pico 
getcwd.pico getdomainname.pico getgrent.pico getgrouplist.pico gethostname.pico 
getloadavg.pico getlogin.pico getmntinfo.pico getnetgrent.pico 
getosreldate.pico getpagesize.pico getpagesizes.pico getpeereid.pico 
getprogname.pico getpwent.pico getttyent.pico getusershell.pico getutxent.pico 
getvfsbyname.pico glob.pico initgroups.pico isatty.pico isinf.pico isnan.pico 
jrand48.pico lcong48.pico libc_dlopen.pico lockf.pico lrand48.pico mrand48.pico 
nftw.pico nice.pico nlist.pico nrand48.

Build failed in Jenkins: FreeBSD_HEAD #801

2016-10-20 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/801/--
[...truncated 70026 lines...]
gencat sk_SK.ISO8859-2.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/sk_SK.ISO8859-2.msg
--- uk_UA.UTF-8.cat ---
--- sv_SE.ISO8859-1.cat ---
gencat sv_SE.ISO8859-1.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/sv_SE.ISO8859-1.msg
--- uk_UA.UTF-8.cat ---
gencat uk_UA.UTF-8.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/uk_UA.UTF-8.msg
--- zh_CN.GB18030.cat ---
--- zh_CN.GB2312.cat ---
--- zh_CN.GB18030.cat ---
gencat zh_CN.GB18030.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/zh_CN.GB18030.msg
--- zh_CN.UTF-8.cat ---
--- libc_pic.a ---
--- zh_CN.GB2312.cat ---
gencat zh_CN.GB2312.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/zh_CN.GB2312.msg
--- zh_CN.UTF-8.cat ---
gencat zh_CN.UTF-8.cat 
/builds/workspace/FreeBSD_HEAD/src/lib/libc/nls/zh_CN.UTF-8.msg
--- libc.a ---
building special pic c library
--- libc.so.7.full ---
building static c library
--- libc_pic.a ---
ar -crD libc_pic.a bt_close.pico bt_conv.pico bt_debug.pico bt_delete.pico 
bt_get.pico bt_open.pico bt_overflow.pico bt_page.pico bt_put.pico 
bt_search.pico bt_seq.pico bt_split.pico bt_utils.pico db.pico hash.pico 
hash_bigkey.pico hash_buf.pico hash_func.pico hash_log2.pico hash_page.pico 
ndbm.pico mpool.pico mpool-compat.pico rec_close.pico rec_delete.pico 
rec_get.pico rec_open.pico rec_put.pico rec_search.pico rec_seq.pico 
rec_utils.pico creat.pico gethostid.pico getwd.pico killpg.pico sethostid.pico 
setpgrp.pico setrgid.pico setruid.pico sigcompat.pico __getosreldate.pico 
__pthread_mutex_init_calloc_cb_stub.pico __xuname.pico _once_stub.pico 
_pthread_stubs.pico _rand48.pico _spinlock_stub.pico _thread_init.pico 
alarm.pico arc4random.pico assert.pico auxv.pico basename.pico 
cap_sandboxed.pico check_utility_compat.pico clock.pico 
clock_getcpuclockid.pico closedir.pico confstr.pico crypt.pico ctermid.pico 
daemon.pico devname.pico dirfd.pico dirname.pico dirname_compat.pico disklabel
 .pico dlfcn.pico drand48.p--- libc.a ---
ar -crD libc.a `NM='nm' NMFLAGS=''  lorder bt_close.o bt_conv.o bt_debug.o 
bt_delete.o bt_get.o bt_open.o bt_overflow.o bt_page.o bt_put.o bt_search.o 
bt_seq.o bt_split.o bt_utils.o db.o hash.o hash_bigkey.o hash_buf.o hash_func.o 
hash_log2.o hash_page.o ndbm.o mpool.o mpool-compat.o rec_close.o rec_delete.o 
rec_get.o rec_open.o rec_put.o rec_search.o rec_seq.o rec_utils.o creat.o 
gethostid.o getwd.o killpg.o sethostid.o setpgrp.o setrgid.o setruid.o 
sigcompat.o __getosreldate.o __pthread_mutex_init_calloc_cb_stub.o __xuname.o 
_once_stub.o _pthread_stubs.o _rand48.o _spinlock_stub.o _thread_init.o alarm.o 
arc4random.o assert.o auxv.o basename.o cap_sandboxed.o check_utility_compat.o 
clock.o clock_getcpuclockid.o closedir.o confstr.o crypt.o ctermid.o daemon.o 
devname.o dirfd.o dirname.o dirname_compat.o disklabel.o dlfcn.o drand48.o 
dup3.o elf_utils.o erand48.o err.o errlst.o errno.o exec.o fdevname.o 
feature_present.o fmtcheck.o fmtmsg.o fnmatch.o fpclassify.o frexp.o fstab.o 
ftok.o
  fts.o ftw.o getbootfile.o--- libc_pic.a ---
ico dup3.pico elf_utils.pico erand48.pico err.pico errlst.pico errno.pico 
exec.pico fdevname.pico feature_present.pico fmtcheck.pico fmtmsg.pico 
fnmatch.pico fpclassify.pico frexp.pico fstab.pico ftok.pico fts.pico ftw.pico 
getbootfile.pico getbsize.pico getcap.pico getcwd.pico getdomainname.pico 
getgrent.pico getgrouplist.pico gethostname.pico getloadavg.pico getlogin.pico 
getmntinfo.pico getnetgrent.pico getosreldate.pico getpagesize.pico 
getpagesizes.pico getpeereid.pico getprogname.pico getpwent.pico getttyent.pico 
getusershell.pico getutxent.pico getvfsbyname.pico glob.pico initgroups.pico 
isatty.pico isinf.pico isnan.pico jrand48.pico lcong48.pico libc_dlopen.pico 
lockf.pico lrand48.pico mrand48.pico nftw.pico nice.pico nlist.pico 
nrand48.pico opendir.pico pause.pico pmadvise.pico popen.pico posix_spawn.pico 
psignal.pico pututxline.pico pw_scan.pico raise.pico readdir.pico 
readpassphrase.pico recvmmsg.pico rewinddir.pico scandir.pico seed48.pico 
seekdir.pico semctl.pico sendmms
 g.pico setdomainname.pico --- libc.a ---
 getbsize.o getcap.o getcwd.o getdomainname.o getgrent.o getgrouplist.o 
gethostname.o getloadavg.o getlogin.o getmntinfo.o getnetgrent.o getosreldate.o 
getpagesize.o getpagesizes.o getpeereid.o getprogname.o getpwent.o getttyent.o 
getusershell.o getutxent.o getvfsbyname.o glob.o initgroups.o isatty.o isinf.o 
isnan.o jrand48.o lcong48.o libc_dlopen.o lockf.o lrand48.o mrand48.o nftw.o 
nice.o nlist.o nrand48.o opendir.o pause.o pmadvise.o popen.o posix_spawn.o 
psignal.o pututxline.o pw_scan.o raise.o readdir.o readpassphrase.o recvmmsg.o 
rewinddir.o scandir.o seed48.o seekdir.o semctl.o sendmmsg.o setdomainname.o 
sethostname.o setjmperr.o setmode.o setproctitle.o setprogname.o siginterrupt.o 
siglist.o signal.o sigsetops.o sleep.o srand48.o statvfs.o stringlist.o 
strtofflags.o sysconf

FreeBSD_HEAD_i386 - Build #4118 - Failure

2016-10-20 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #4118 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4118/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4118/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4118/console

Change summaries:

307689 by bapt:
Fix building of llvm's unwind if gcc has been also built

when building gcc an unwind.h header is generate in the cc_tool directory
which is included in the CFLAGS before the path where the llvm's unwind.h file
lives

Reviewed by:emaste
MFC after:  3 days
Differential Revision:  https://reviews.freebsd.org/D7357

307688 by emaste:
Tidy up ia32_sysvec sv_flags setting

Use the same approach as sys/arm/arm/elf_machdep.c to avoid an odd-
looking , on a separate line.

307687 by emaste:
arch.7: correct typo in predefined macro example

The example incorrectly used -Dm, which defines macro m with value 1.
It is supposed to be -dM, which lists macros.

307686 by imp:
Use MACHINE_ARCH rather than TARGET_ARCH which has no meaning outside
of Makefile.inc1

307685 by mjg:
cache: fix up a corner case in r307650

If no negative entry is found on the last list, the ncp pointer will be
left uninitialized and a non-null value will make the function assume an
entry was found.

Fix the problem by initializing to NULL on entry.

Reported by:glebius

307684 by ken:
For CCBs allocated on the stack, we need to clear the entire CCB, not just
the header.  Otherwise stack garbage can lead to random flags getting set.

This showed up as 'camcontrol rescan all' failing with EINVAL because the
address type wasn't CAM_DATA_VADDR.

sbin/camcontrol/camcontrol.c:
In rescan_or_reset_bus(), bzero the stack-allocated CCBs before
use instead of clearing the body.

MFC after:  3 days
Sponsored by:   Spectra Logic



The end of the build log:

[...truncated 36610 lines...]
gencat ja_JP.eucJP.cat /usr/src/lib/libc/nls/ja_JP.eucJP.msg
--- ko_KR.UTF-8.cat ---
gencat ko_KR.UTF-8.cat /usr/src/lib/libc/nls/ko_KR.UTF-8.msg
--- ko_KR.eucKR.cat ---
gencat ko_KR.eucKR.cat /usr/src/lib/libc/nls/ko_KR.eucKR.msg
--- mn_MN.UTF-8.cat ---
--- nl_NL.ISO8859-1.cat ---
--- mn_MN.UTF-8.cat ---
gencat mn_MN.UTF-8.cat /usr/src/lib/libc/nls/mn_MN.UTF-8.msg
--- no_NO.ISO8859-1.cat ---
--- pl_PL.ISO8859-2.cat ---
--- nl_NL.ISO8859-1.cat ---
gencat nl_NL.ISO8859-1.cat /usr/src/lib/libc/nls/nl_NL.ISO8859-1.msg
--- no_NO.ISO8859-1.cat ---
gencat no_NO.ISO8859-1.cat /usr/src/lib/libc/nls/no_NO.ISO8859-1.msg
--- pl_PL.ISO8859-2.cat ---
gencat pl_PL.ISO8859-2.cat /usr/src/lib/libc/nls/pl_PL.ISO8859-2.msg
--- pt_BR.ISO8859-1.cat ---
--- ru_RU.KOI8-R.cat ---
--- pt_BR.ISO8859-1.cat ---
gencat pt_BR.ISO8859-1.cat /usr/src/lib/libc/nls/pt_BR.ISO8859-1.msg
--- ru_RU.KOI8-R.cat ---
gencat ru_RU.KOI8-R.cat /usr/src/lib/libc/nls/ru_RU.KOI8-R.msg
--- sk_SK.ISO8859-2.cat ---
gencat sk_SK.ISO8859-2.cat /usr/src/lib/libc/nls/sk_SK.ISO8859-2.msg
--- sv_SE.ISO8859-1.cat ---
gencat sv_SE.ISO8859-1.cat /usr/src/lib/libc/nls/sv_SE.ISO8859-1.msg
--- uk_UA.UTF-8.cat ---
--- zh_CN.GB18030.cat ---
--- uk_UA.UTF-8.cat ---
gencat uk_UA.UTF-8.cat /usr/src/lib/libc/nls/uk_UA.UTF-8.msg
--- zh_CN.GB2312.cat ---
--- zh_CN.GB18030.cat ---
gencat zh_CN.GB18030.cat /usr/src/lib/libc/nls/zh_CN.GB18030.msg
--- zh_CN.GB2312.cat ---
gencat zh_CN.GB2312.cat /usr/src/lib/libc/nls/zh_CN.GB2312.msg
--- zh_CN.UTF-8.cat ---
gencat zh_CN.UTF-8.cat /usr/src/lib/libc/nls/zh_CN.UTF-8.msg
--- libc_pic.a ---
--- libc.a ---
building special pic c library
--- libc_pic.a ---
ar -crD libc_pic.a bt_close.pico bt_conv.pico bt_debug.pico bt_delete.pico 
bt_get.pico bt_open.pico bt_overflow.pico bt_page.pico bt_put.pico 
bt_search.pico bt_seq.pico bt_split.pico bt_utils.pico db.pico hash.pico 
hash_bigkey.pico hash_buf.pico hash_func.pico hash_log2.pico hash_page.pico 
ndbm.pico mpool.pico mpool-compat.pico rec_close.pico rec_delete.pico 
rec_get.pico rec_open.pico rec_put.pico rec_search.pico rec_seq.pico 
rec_utils.pico creat.pico gethostid.pico getwd.pico killpg.pico sethostid.pico 
setpgrp.pico setrgid.pico setruid.pico sigcompat.pico __getosreldate.pico 
__pthread_mutex_init_calloc_cb_stub.pico __xuname.pico _once_stub.pico 
_pthread_stubs.pico _rand48.pico _spinlock_stub.pico _thread_init.pico 
alarm.pico arc4random.pico assert.pico auxv.pico basename.pico 
cap_sandboxed.pico check_utility_compat.pico clock.pico 
clock_getcpuclockid.pico closedir.pico confstr.pico crypt.pico ctermid.pico 
daemon.pico devname.pico dirfd.pico dirname.pico dirname_compat.pico disklabel
 .pico dlfcn.pico drand48.pico dup3.pico elf_utils.pico erand48.pico err.pico 
errlst.pico errno.pico exec.pico fdevname.pico feature_present.pico 
fmtcheck.pico fmtmsg.pico fnmatch.pico fpclassify.pico frexp.pico fstab.pico 
ftok.pico fts.pico ftw.pico getbootfile.pico getbsize.pico getcap.pico 
getcwd.pico getdomainname.pico getgrent.pico getgrouplist.pico gethostname.pico 
getloadavg.pico getlogin.pico getmntinfo.pic

Jenkins build is back to normal : FreeBSD_HEAD #730

2016-09-29 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/730/
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Jenkins build is back to normal : FreeBSD_HEAD #729

2016-09-29 Thread jenkins-admin
https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/729/
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Build failed in Jenkins: FreeBSD_HEAD #727

2016-09-29 Thread jenkins-admin
See 

--
[...truncated 97466 lines...]
--- DeclTemplate.o ---
c++  -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangast/../../../contrib/llvm/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangast/../../../contrib/llvm/tools/clang/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangast/../../../contrib/llvm/tools/clang/lib/AST
 -I. 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangast/../../../contrib/llvm/../../lib/clang/include
 -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS 
-D__STDC_CONSTANT_MACROS -DCLANG_ENABLE_ARCMT -DCLANG_ENABLE_STATIC_ANALYZER 
-fno-strict-aliasing 
-DLLVM_DEFAULT_TARGET_TRIPLE=\"x86_64-unknown-freebsd12.0\" 
-DLLVM_HOST_TRIPLE=\"x86_64-unknown-freebsd12.0\" -DDEFAULT_SYSROOT=\"\" -MD 
-MF.depend.DeclTemplate.o -MTDeclTemplate.o -fstack-protector-strong 
-Qunused-arguments  -s
 td=c++11 -fno-exceptions -fno-rtti -stdlib=libc++ -Wno-c++11-extensions  -c 
/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangast/../../../contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp
 -o DeclTemplate.o
--- all_subdir_lib/clang/libclangarcmigrate ---
--- TransGCCalls.o ---
c++  -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangarcmigrate/../../../contrib/llvm/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangarcmigrate/../../../contrib/llvm/tools/clang/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangarcmigrate/../../../contrib/llvm/tools/clang/lib/ARCMigrate
 -I. 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangarcmigrate/../../../contrib/llvm/../../lib/clang/include
 -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS 
-D__STDC_CONSTANT_MACROS -DCLANG_ENABLE_ARCMT -DCLANG_ENABLE_STATIC_ANALYZER 
-fno-strict-aliasing 
-DLLVM_DEFAULT_TARGET_TRIPLE=\"x86_64-unknown-freebsd12.0\" 
-DLLVM_HOST_TRIPLE=\"x86_64-unknown-freebsd12.0\" -DDEFAULT_SYSROOT=\"\" -MD 
-MF.depend.TransGCCalls.o -MTTransGCCalls.o -fstack-prot
 ector-strong -Qunused-arguments  -std=c++11 -fno-exceptions -fno-rtti 
-stdlib=libc++ -Wno-c++11-extensions  -c 
/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangarcmigrate/../../../contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp
 -o TransGCCalls.o
--- all_subdir_lib/clang/libclangcodegen ---
--- CGCall.o ---
c++  -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangcodegen/../../../contrib/llvm/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangcodegen/../../../contrib/llvm/tools/clang/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangcodegen/../../../contrib/llvm/tools/clang/lib/CodeGen
 -I. 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangcodegen/../../../contrib/llvm/../../lib/clang/include
 -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS 
-D__STDC_CONSTANT_MACROS -DCLANG_ENABLE_ARCMT -DCLANG_ENABLE_STATIC_ANALYZER 
-fno-strict-aliasing 
-DLLVM_DEFAULT_TARGET_TRIPLE=\"x86_64-unknown-freebsd12.0\" 
-DLLVM_HOST_TRIPLE=\"x86_64-unknown-freebsd12.0\" -DDEFAULT_SYSROOT=\"\" -MD 
-MF.depend.CGCall.o -MTCGCall.o -fstack-protector-strong -Qunused-argum
 ents  -std=c++11 -fno-exceptions -fno-rtti -stdlib=libc++ 
-Wno-c++11-extensions  -c 
/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangcodegen/../../../contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp
 -o CGCall.o
--- all_subdir_lib/clang/libclangast ---
--- DeclarationName.o ---
c++  -target x86_64-unknown-freebsd12.0 
--sysroot=/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp
 
-B/builds/workspace/FreeBSD_HEAD/obj/builds/workspace/FreeBSD_HEAD/src/tmp/usr/bin
  -O2 -pipe 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangast/../../../contrib/llvm/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangast/../../../contrib/llvm/tools/clang/include
 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangast/../../../contrib/llvm/tools/clang/lib/AST
 -I. 
-I/builds/workspace/FreeBSD_HEAD/src/lib/clang/libclangast/../../../contrib/llvm/../../lib/clang/include
 -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS 
-D__STDC_CONSTANT_MACROS -DCLANG_ENABLE_ARCMT -DCLANG_ENABLE_STATIC_ANALYZER 
-fno-strict-aliasing 
-DLLVM_DEFAULT_TARGET_TRIPLE=\"x86_64-unknown-freebsd12.0\" 
-DLLVM_HOST_TRIPLE=\"x86_64-unknown-freebsd12.0\" -DDEFAU

Jenkins build is back to normal : FreeBSD_HEAD #710

2016-09-26 Thread jenkins-admin
See 

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Build failed in Jenkins: FreeBSD_HEAD #709

2016-09-26 Thread jenkins-admin
See 

--
[...truncated 352043 lines...]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_read_format_zip_malformed  ->  passed  
[0.097s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_format_zip_msdos  
->  passed  [0.095s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_format_zip_nested  
->  passed  [0.090s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_read_format_zip_nofiletype  ->  passed  
[0.094s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_format_zip_padded1 
 ->  passed  [0.088s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_format_zip_padded2 
 ->  passed  [0.093s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_format_zip_padded3 
 ->  passed  [0.092s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_format_zip_sfx  -> 
 passed  [0.091s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_read_format_zip_traditional_encryption_data 
 ->  passed  [0.094s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_read_format_zip_winzip_aes128  ->  passed  
[0.116s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_read_format_zip_winzip_aes256  ->  passed  
[0.132s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_read_format_zip_winzip_aes256_large  ->  
passed  [0.160s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_read_format_zip_winzip_aes256_stored  ->  
passed  [0.141s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_format_zip_zip64a  
->  passed  [0.103s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_format_zip_zip64b  
->  passed  [0.092s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_large  ->  passed  
[0.511s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_pax_truncated  ->  
passed  [0.803s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_position  ->  
passed  [0.084s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_set_format  ->  
passed  [0.087s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_set_wrong_format  
->  passed  [0.085s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_too_many_filters  
->  passed  [0.091s]
[192.168.10.2] out: lib/libarchive/functional_test:test_read_truncated  ->  
passed  [0.146s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_read_truncated_filter_bzip2  ->  passed  
[0.662s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_read_truncated_filter_compress  ->  passed  
[0.273s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_read_truncated_filter_gzip  ->  passed  
[0.320s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_read_truncated_filter_lzip  ->  passed  
[0.918s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_read_truncated_filter_lzma  ->  passed  
[0.913s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_read_truncated_filter_lzop  ->  passed  
[0.100s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_read_truncated_filter_xz  ->  passed  
[0.977s]
[192.168.10.2] out: lib/libarchive/functional_test:test_sparse_basic  ->  
passed  [0.143s]
[192.168.10.2] out: lib/libarchive/functional_test:test_tar_filenames  ->  
passed  [0.232s]
[192.168.10.2] out: lib/libarchive/functional_test:test_tar_large  ->  passed  
[0.162s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_ustar_filename_encoding_CP1251_UTF8  ->  
passed  [0.098s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_ustar_filename_encoding_CP932_UTF8  ->  
passed  [0.095s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_ustar_filename_encoding_EUCJP_CP932  ->  
passed  [0.100s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_ustar_filename_encoding_EUCJP_UTF8  ->  
passed  [0.096s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_ustar_filename_encoding_KOI8R_CP866  ->  
passed  [0.100s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_ustar_filename_encoding_KOI8R_UTF8  ->  
passed  [0.093s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_ustar_filename_encoding_Russian_Russia  ->  
passed  [0.098s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_ustar_filename_encoding_UTF8_CP866  ->  
passed  [0.086s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_ustar_filename_encoding_ru_RU_CP1251  ->  
passed  [0.088s]
[192.168.10.2] out: lib/libarchive/functional_test:test_ustar_filenames  ->  
passed  [0.105s]
[192.168.10.2] out: 
lib/libarchive/functional_test:test_warn_missing_hardlink_target  ->  passed  
[0.086s]
[192.168.10.2] out: lib/libarchive/functional_test:test_write_disk  ->  passed  
[0.107s]
[192.168.10.2] out: lib/libarchive/functional_test:test_write_disk_appledouble  
->  passed  [0.085s]
[192.168.10.2] out: lib/libarchive/functional_test:test_write_disk_failures  -> 
 passed  [0.092s]
[192.168.10.2] out: lib/li

Jenkins build is back to normal : FreeBSD_HEAD #704

2016-09-25 Thread jenkins-admin
See 

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Build failed in Jenkins: FreeBSD_HEAD #703

2016-09-25 Thread jenkins-admin
See 

--
[...truncated 355770 lines...]
[192.168.10.2] out: bin/sh/set-e/functional_test:elif1  ->  passed  [0.047s]
[192.168.10.2] out: bin/sh/set-e/functional_test:elif2  ->  passed  [0.046s]
[192.168.10.2] out: bin/sh/set-e/functional_test:eval1  ->  passed  [0.047s]
[192.168.10.2] out: bin/sh/set-e/functional_test:eval2  ->  passed  [0.048s]
[192.168.10.2] out: bin/sh/set-e/functional_test:for1  ->  passed  [0.043s]
[192.168.10.2] out: bin/sh/set-e/functional_test:func1  ->  passed  [0.048s]
[192.168.10.2] out: bin/sh/set-e/functional_test:func2  ->  passed  [0.046s]
[192.168.10.2] out: bin/sh/set-e/functional_test:if1  ->  passed  [0.047s]
[192.168.10.2] out: bin/sh/set-e/functional_test:if2  ->  passed  [0.045s]
[192.168.10.2] out: bin/sh/set-e/functional_test:if3  ->  passed  [0.043s]
[192.168.10.2] out: bin/sh/set-e/functional_test:not1  ->  passed  [0.044s]
[192.168.10.2] out: bin/sh/set-e/functional_test:not2  ->  passed  [0.045s]
[192.168.10.2] out: bin/sh/set-e/functional_test:or1  ->  passed  [0.045s]
[192.168.10.2] out: bin/sh/set-e/functional_test:or2  ->  passed  [0.048s]
[192.168.10.2] out: bin/sh/set-e/functional_test:or3  ->  passed  [0.042s]
[192.168.10.2] out: bin/sh/set-e/functional_test:pipe1  ->  passed  [0.416s]
[192.168.10.2] out: bin/sh/set-e/functional_test:pipe2  ->  passed  [0.234s]
[192.168.10.2] out: bin/sh/set-e/functional_test:return1  ->  passed  [0.047s]
[192.168.10.2] out: bin/sh/set-e/functional_test:semi1  ->  passed  [0.042s]
[192.168.10.2] out: bin/sh/set-e/functional_test:semi2  ->  passed  [0.041s]
[192.168.10.2] out: bin/sh/set-e/functional_test:subshell1  ->  passed  [0.046s]
[192.168.10.2] out: bin/sh/set-e/functional_test:subshell2  ->  passed  [0.045s]
[192.168.10.2] out: bin/sh/set-e/functional_test:until1  ->  passed  [0.046s]
[192.168.10.2] out: bin/sh/set-e/functional_test:until2  ->  passed  [0.045s]
[192.168.10.2] out: bin/sh/set-e/functional_test:until3  ->  passed  [0.047s]
[192.168.10.2] out: bin/sh/set-e/functional_test:while1  ->  passed  [0.046s]
[192.168.10.2] out: bin/sh/set-e/functional_test:while2  ->  passed  [0.045s]
[192.168.10.2] out: bin/sh/set-e/functional_test:while3  ->  passed  [0.042s]
[192.168.10.2] out: bin/date/format_string_test:A_test  ->  passed  [0.094s]
[192.168.10.2] out: bin/date/format_string_test:B_test  ->  passed  [0.049s]
[192.168.10.2] out: bin/date/format_string_test:C_test  ->  passed  [0.047s]
[192.168.10.2] out: bin/date/format_string_test:D_test  ->  passed  [0.052s]
[192.168.10.2] out: bin/date/format_string_test:F_test  ->  passed  [0.052s]
[192.168.10.2] out: bin/date/format_string_test:G_test  ->  passed  [0.051s]
[192.168.10.2] out: bin/date/format_string_test:H_test  ->  passed  [0.055s]
[192.168.10.2] out: bin/date/format_string_test:I_test  ->  passed  [0.054s]
[192.168.10.2] out: bin/date/format_string_test:M_test  ->  passed  [0.055s]
[192.168.10.2] out: bin/date/format_string_test:R_test  ->  passed  [0.053s]
[192.168.10.2] out: bin/date/format_string_test:S_test  ->  passed  [0.050s]
[192.168.10.2] out: bin/date/format_string_test:U_test  ->  passed  [0.049s]
[192.168.10.2] out: bin/date/format_string_test:V_test  ->  passed  [0.047s]
[192.168.10.2] out: bin/date/format_string_test:W_test  ->  passed  [0.052s]
[192.168.10.2] out: bin/date/format_string_test:X_test  ->  passed  [0.050s]
[192.168.10.2] out: bin/date/format_string_test:Y_test  ->  passed  [0.050s]
[192.168.10.2] out: bin/date/format_string_test:Z_test  ->  passed  [0.050s]
[192.168.10.2] out: bin/date/format_string_test:a_test  ->  passed  [0.050s]
[192.168.10.2] out: bin/date/format_string_test:b_test  ->  passed  [0.050s]
[192.168.10.2] out: bin/date/format_string_test:c_test  ->  passed  [0.049s]
[192.168.10.2] out: bin/date/format_string_test:d_test  ->  passed  [0.047s]
[192.168.10.2] out: bin/date/format_string_test:e_test  ->  passed  [0.050s]
[192.168.10.2] out: bin/date/format_string_test:g_test  ->  passed  [0.049s]
[192.168.10.2] out: bin/date/format_string_test:h_test  ->  passed  [0.049s]
[192.168.10.2] out: bin/date/format_string_test:j_test  ->  passed  [0.052s]
[192.168.10.2] out: bin/date/format_string_test:k_test  ->  passed  [0.053s]
[192.168.10.2] out: bin/date/format_string_test:l_test  ->  passed  [0.047s]
[192.168.10.2] out: bin/date/format_string_test:m_test  ->  passed  [0.051s]
[192.168.10.2] out: bin/date/format_string_test:p_test  ->  passed  [0.051s]
[192.168.10.2] out: bin/date/format_string_test:percent_test  ->  passed  
[0.051s]
[192.168.10.2] out: bin/date/format_string_test:plus_test  ->  passed  [0.050s]
[192.168.10.2] out: bin/date/format_string_test:r_test  ->  passed  [0.049s]
[192.168.10.2] out: bin/date/format_string_test:s_test  ->  passed  [0.051s]
[192.168.10.2] out: bin/date/format_string_test:u_test  ->  passed  [0.050s]
[192.168.10.2] out: bin/date/format_string_test:v_test  ->  passed  [0.049s]
[192.1

Jenkins build is back to normal : FreeBSD_HEAD #700

2016-09-25 Thread jenkins-admin
See 

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


  1   2   3   4   5   6   7   8   9   10   >