FreeBSD_HEAD_amd64_gcc - Build #1453 - Failure

From: <jenkins-admin_at_FreeBSD.org>
Date: Thu, 28 Jul 2016 12:10:49 +0000 (GMT)
FreeBSD_HEAD_amd64_gcc - Build #1453 - Failure:

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

Change summaries:

303429 by mav:
Once more refactor KPI between NTB hardware and consumers.

New design allows hardware resources to be split between several consumers.
For example, one BAR can be dedicated for remote memory access, while other
resources can be used for packet transport for virtual Ethernet interface.
And even without resource split, this code allows to specify which consumer
driver should attach the hardware.

>From some points this makes the code even closer to Linux one, even though
Linux does not provide the described flexibility.

303428 by ed:
Add NI_NUMERICSCOPE.

POSIX also declares NI_NUMERICSCOPE, which makes getnameinfo() return a
numerical scope identifier. The interesting thing is that support for
this is already present in code, but #ifdef disabled. Expose this
functionality by placing a definition for it in <netdb.h>.

While there, remove references to NI_WITHSCOPEID, as that got removed 11
years ago.

303427 by ed:
Change type of MB_CUR_MAX and MB_CUR_MAX_L() to size_t.

POSIX requires that MB_CUR_MAX expands to an expression of type size_t.
It currently expands to an int. As these are already macros, don't
change the underlying type of these functions. There is no ned to touch
those.

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

303426 by kib:
Rewrite subr_sleepqueue.c use of callouts to not depend on the
specifics of callout KPI.  Esp., do not depend on the exact interface
of callout_stop(9) return values.

The main change is that instead of requiring precise callouts, code
maintains absolute time to wake up.  Callouts now should ensure that a
wake occurs at the requested moment, but we can tolerate both run-away
callout, and callout_stop(9) lying about running callout either way.

As consequence, it removes the constant source of the bugs where
sleepq_check_timeout() causes uninterruptible thread state where the
thread is detached from CPU, see e.g. r234952 and r296320.

Patch also removes dual meaning of the TDF_TIMEOUT flag, making code
(IMO much) simpler to reason about.

Tested by:	pho
Reviewed by:	jhb
Sponsored by:	The FreeBSD Foundation
MFC after:	1 month
Differential revision:	https://reviews.freebsd.org/D7137

303425 by kib:
Extract the calculation of the callout fire time into the new function
callout_when(9).  See the man page update for the description of the
intended use.

Tested by:	pho
Reviewed by:	jhb, bjk (man page updates)
Sponsored by:	The FreeBSD Foundation
MFC after:	1 month
X-Differential revision:	https://reviews.freebsd.org/D7137

303424 by kib:
Fix typo in comment.

MFC after:  3 days

303423 by kib:
When a debugger attaches to the process, SIGSTOP is sent to the
target.  Due to a way issignal() selects the next signal to deliver
and report, if the simultaneous or already pending another signal
exists, that signal might be reported by the next waitpid(2) call.
This causes minor annoyance for debuggers, which must be prepared to
take any signal as the first event, then filter SIGSTOP later.

More importantly, for tools like gcore(1), which attach and then
detach without processing events, SIGSTOP might leak to be delivered
after PT_DETACH.  This results in the process being unintentionally
stopped after detach, which is fatal for automatic tools.

The solution is to force SIGSTOP to be the first signal reported after
the attach.  Attach code is modified to set P2_PTRACE_FSTP to indicate
that the attaching ritual was not yet finished, and issignal() prefers
SIGSTOP in that condition.  Also, the thread which handles
P2_PTRACE_FSTP is made to guarantee to own p_xthread during the first
waitpid(2).  All that ensures that SIGSTOP is consumed first.

Additionally, if P2_PTRACE_FSTP is still set on detach, which means
that waitpid(2) was not called at all, SIGSTOP is removed from the
queue, ensuring that the process is resumed on detach.

In issignal(), when acting on STOPing signals, remove the signal from
queue before suspending.  Otherwise parallel attach could result in
ptracestop() acting on that STOP as if it was the STOP signal from the
attach.  Then SIGSTOP from attach leaks again.

As a minor refactoring, some bits of the common attach code is moved
to new helper proc_set_traced().

Reported by:	markj
Reviewed by:	jhb, markj
Tested by:	pho
Sponsored by:	The FreeBSD Foundation
MFC after:	2 weeks
Differential revision:	https://reviews.freebsd.org/D7256

303422 by sephe:
hyperv/vmbus: Inclusion cleanup

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

303421 by sephe:
hyperv/vmbus: Avoid unnecessary mb()

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

303420 by loos:
Enable the build of micphy as part of generic miibus build, but only for
FDT enabled systems.

Sponsored by:	Rubicon Communications (Netgate)

303419 by bdrewery:
Fix non-amd64 build from r292043 after reconnecting in r303410.

MFC after:	3 days
X-MFC-With:	r303410
Sponsored by:	EMC / Isilon Storage Division

303418 by ivadasz:
[iwm] When stopping TX DMA, wait for all channels at once.

    * Makes the TX DMA stopping more similar to Linux code, and potentially
      a bit faster. Also, output an error message when TX DMA idling fails.

    Taken-From: Linux iwlwifi

Tested:

* AC3165, STA mode

Approved by:	adrian (mentor)
Obtained from:	DragonFlyBSD git 2ee486ddff973ac552ff787c17e8d83e8ae0f24c
Differential Revision:	https://reviews.freebsd.org/D7325

303417 by bdrewery:
opt_bdg.h was removed in r150636.

MFC after:	3 days
Sponsored by:	EMC / Isilon Storage Division

303416 by ivadasz:
[iwm] Set different pm_timeout for action frames.

    When building a Tx Command for management frames, we are lacking
    a check for action frames, for which we should set a different
    pm_timeout.  This cause the fw to stay awake for 100TU after each
    such frame is transmitted, resulting an excessive power consumption.

    Taken-From: Linux iwlwifi (git b084a35663c3f1f7)

Approved by:	adrian (mentor)
Obtained from:	Linux git b084a35663c3f1f7de1c45c4ae3006864c940fe7
Obtained from:	DragonFlyBSD git ba00f0e3ae873d6f0d5743e22c3ebc49c44dfdac
Differential Revision:	https://reviews.freebsd.org/D7324

303415 by bdrewery:
opt_apic.h is only used on i386.

MFC after:	3 days
Sponsored by:	EMC / Isilon Storage Division

303414 by bdrewery:
opt_random.h was removed in r287558 for opt_global.h

MFC after:	3 days
Sponsored by:	EMC / Isilon Storage Division

303413 by ivadasz:
[iwm] Fix inverted logic in iwm_tx().

    The PROT_REQUIRE flag in should be set for data frames above a certain
    length, but we were setting it for !data frames above a certain length,
    which makes no sense at all.

    Taken-From: OpenBSD, Linux iwlwifi

Approved by:	adrian (mentor)
Obtained from:	DragonFlyBSD git 8cc03924a36c572c2908e659e624f44636dc2b33
Differential Revision:	https://reviews.freebsd.org/D7323

303412 by rrs:
Remove myself from kern_timeout.c yeah!

303411 by stevek:
Prepare for network stack as a module

 - Move cr_canseeinpcb to sys/netinet/in_prot.c in order to separate the
   INET and INET6-specific code from the rest of the prot code (It is only
   used by the network stack, so it makes sense for it to live with the
   other network stack code.)
 - Move cr_canseeinpcb prototype from sys/systm.h to netinet/in_systm.h
 - Rename cr_seeotheruids to cr_canseeotheruids and cr_seeothergids to
   cr_canseeothergids, make them non-static, and add prototypes (so they
   can be seen/called by in_prot.c functions.)
 - Remove sw_csum variable from ip6_forward in ip6_forward.c, as it is an
   unused variable.

Reviewed by:	gnn, jtl
Approved by:	sjg (mentor)
Sponsored by:	Juniper Networks, Inc.
Differential Revision:	https://reviews.freebsd.org/D2901

303410 by bdrewery:
Reconnect pmcstudy, lost in r291021

Reported by:	pluknet
MFC after:	3 days
Sponsored by:	EMC / Isilon Storage Division

303406 by jhb:
Adjust tests in fsync job scheduling loop to reduce indentation.

303405 by jhb:
Add support for zero-copy aio_write() on TOE sockets.

AIO write requests for a TOE socket on a Chelsio T4+ adapter can now
DMA directly from the user-supplied buffer.  This is implemented by
wiring the pages backing the user-supplied buffer and queueing special
mbufs backed by raw VM pages to the socket buffer.  The TOE code
recognizes these special mbufs and builds a sglist from the VM page
array associated with the mbuf when queueing a work request to the TOE.

Because these mbufs do not have an associated virtual address, m_data
is not valid.  Thus, the AIO handler does not invoke sosend() directly
for these mbufs but instead inlines portions of sosend_generic() and
tcp_usr_send().

An aiotx_buffer structure is used to describe the user buffer (e.g.
it holds the array of VM pages and a reference to the AIO job).  The
special mbufs reference this structure via m_ext.  Note that a single
job might be split across multiple mbufs (e.g. if it is larger than
the socket buffer size).  The 'ext_arg2' member of each mbuf gives an
offset relative to the backing aiotx_buffer.  The AIO job associated
with an aiotx_buffer structure is completed when the last reference to
the structure is released.

Zero-copy aio_write()'s for connections associated with a given
adapter can be enabled/disabled at runtime via the
'dev.t[45]nex.N.toe.tx_zcopy' sysctl.

MFC after:	1 month
Relnotes:	yes
Sponsored by:	Chelsio Communications

303404 by jkim:
Add a hack to add weekday to date format for ko_KR locale.

303400 by emaste:
libcxxrt: fix demangling of wchar_t

'wchar_t' is 7 characters long, not 6. r303297 fixed this in libelftc,
but not the second copy of this file that we have in libcxxrt.

PR:		208661
Submitted by:	Daniel McRobb
Obtained from:	ELF Tool Chain r3480
MFC after:	3 days

303399 by markj:
De-pluralize "queues" where appropriate in the pagedaemon code.

MFC after:	1 week

303396 by emaste:
rename ARM's libunwind.S to to avoid conflict with llvm libunwind

llvm libunwind includes a libunwind.cpp, but on ARM libunwind.S is found
first in .PATH. Rename the latter one, since it is not going to be
updated again.

Reviewed by:	andrew
MFC after:	3 days
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D7162

303394 by emaste:
Enable LLVM libunwind by default on amd64 and i386

It is a maintained and updated runtime exception stack unwinder that
should be a drop-in replacement.

It can be disabled by setting WITHOUT_LLVM_LIBUNWIND in src.conf.

PR:		206039 [exp-run]
Sponsored by:	The FreeBSD Foundation

303393 by kib:
Remove empty initializer for the once facility.  It was not needed
since r179417.

Sponsored by:	The FreeBSD Foundation
MFC after:	1 week

303392 by emaste:
Remove ${OBJDUMP} as it is not used by the base system

It was added to sys.mk relatively recently (r274503) for EFI builds
but is no longer used by the base system. The in-tree binutils are
outdated, will not be updated, and will be removed in the future.
Remove it from the toolchain build now to slightly simplify the build
and make sure we don't grow an accidental dependency.

Note that this affects only the toolchain build, and does not affect
/usr/bin/objdump in the built world.

Reviewed by:	bdrewery
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D6460

303391 by emaste:
ANSIfy kern_proc.c and delete register keyword

Reviewed by:	kib
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D6478

303390 by emaste:
syscons,vt: improve phrasing in kern.vty man page description

Submitted by:	wblock

303388 by kib:
Remove Giant from settime(), tc_setclock_mtx guards tc_windup() calls,
and there is no other issues with parallel settime().  Remove spl()
vestiges there as well.

Tested by:	pho (as part of the whole patch)
Reviewed by:	jhb (same)
Discussed wit:	bde
Sponsored by:	The FreeBSD Foundation
MFC after:	1 month
Differential revision:	https://reviews.freebsd.org/D7302

303387 by kib:
Prevent parallel tc_windup() calls, both parallel top-level calls from
setclock() and from simultaneous top-level and interrupt.  For this,
tc_windup() is protected with a tc_setclock_mtx spinlock, in the try
mode when called from hardclock interrupt.  If spinlock cannot be
obtained without spinning from the interrupt context, this means that
top-level executes tc_windup() on other core and our try may be
avoided.

The boottimebin and boottime variables should be adjusted from
tc_windup().  To be correct, they must be part of the timehands and
read using lockless protocol.  Remove the globals and reimplement the
getboottime(9)/getboottimebin(9) KPI using the timehands read
protocol.

Tested by:	pho (as part of the whole patch)
Reviewed by:	jhb (same)
Discussed wit:	bde
Sponsored by:	The FreeBSD Foundation
MFC after:	1 month
X-Differential revision:	https://reviews.freebsd.org/D7302

303386 by kib:
Fix a bug in r302252.

Change ntpadj_lock to spinlock always, and rename stuff removing
ADJ/adj from the names. ntp_update_second() requires ntp_lock and is
called from the tc_windup(), so ntp_lock must be a spinlock.  Add
missed lock to ntp_update_second().

Tested by:	pho (as part of the whole patch)
Reviewed by:	jhb (same)
Noted by:	bde
Sponsored by:	The FreeBSD Foundation
MFC after:	1 month
X-Differential revision:	https://reviews.freebsd.org/D7302

303385 by kib:
Reduce the resettodr_lock scope to only CLOCK_SETTIME() call.

Tested by:	pho (as part of the whole patch)
Reviewed by:	jhb (same)
Discussed with:	bde
Sponsored by:	The FreeBSD Foundation
MFC after:	1 month
X-Differential revision:	https://reviews.freebsd.org/D7302

303384 by kib:
Style.

Sponsored by:	The FreeBSD Foundation
MFC after:	1 month
X-Differential revision:	https://reviews.freebsd.org/D7302

303383 by kib:
Reduce number of timehands to just two.  This is useful because
consumers can now be only one tc_windup() call late.

Use C99 initialization.

Tested by:	pho (as part of the whole patch)
Reviewed by:	jhb (same)
Discussed with:	bde
Sponsored by:	The FreeBSD Foundation
MFC after:	1 month
X-Differential revision:	https://reviews.freebsd.org/D7302

303382 by kib:
Hide the boottime and bootimebin globals, provide the getboottime(9)
and getboottimebin(9) KPI. Change consumers of boottime to use the
KPI.  The variables were renamed to avoid shadowing issues with local
variables of the same name.

Issue is that boottime* should be adjusted from tc_windup(), which
requires them to be members of the timehands structure.  As a
preparation, this commit only introduces the interface.

Some uses of boottime were found doubtful, e.g. NLM uses boottime to
identify the system boot instance.  Arguably the identity should not
change on the leap second adjustment, but the commit is about the
timekeeping code and the consumers were kept bug-to-bug compatible.

Tested by:	pho (as part of the bigger patch)
Reviewed by:	jhb (same)
Discussed with:	bde
Sponsored by:	The FreeBSD Foundation
MFC after:	1 month
X-Differential revision:	https://reviews.freebsd.org/D7302



The end of the build log:

[...truncated 281771 lines...]
--- device_if.h ---
awk -f /builds/FreeBSD_HEAD_amd64_gcc/sys/tools/makeobjops.awk /builds/FreeBSD_HEAD_amd64_gcc/sys/kern/device_if.m -h
--- bus_if.h ---
awk -f /builds/FreeBSD_HEAD_amd64_gcc/sys/tools/makeobjops.awk /builds/FreeBSD_HEAD_amd64_gcc/sys/kern/bus_if.m -h
--- pci_if.h ---
awk -f /builds/FreeBSD_HEAD_amd64_gcc/sys/tools/makeobjops.awk /builds/FreeBSD_HEAD_amd64_gcc/sys/dev/pci/pci_if.m -h
--- if_nge.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 --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe  -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC  -MD  -MF.depend.if_nge.o -MTif_nge.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 -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-unknown-pragmas  -Wno-error=inline -Wno-error=enum-compare -Wno-error=unused-but-set-variable  -Wno-error=aggressive-loop-optimizations -Wno-error=maybe-uninitialized  -Wno-error=array-bounds -Wno-error=address  -Wno-error=cast-qual -Wno-error=sequence-point -Wno-error=attributes  -Wno-error=strict-overflow -Wno-error=overflow  -finline-limit=8000 -fms-extensions --param inline-unit-growth=100 --param large-function-growth=1000  -std=iso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/nge/../../dev/nge/if_nge.c -o if_nge.o
--- all_subdir_nfsd ---
ctfconvert -L VERSION -g nfs_nfsdsocket.o
--- nfs_nfsdstate.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 --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe  -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC  -MD  -MF.depend.nfs_nfsdstate.o -MTnfs_nfsdstate.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 -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-unknown-pragmas  -Wno-error=inline -Wno-error=enum-compare -Wno-error=unused-but-set-variable  -Wno-error=aggressive-loop-optimizations -Wno-error=maybe-uninitialized  -Wno-error=array-bounds -Wno-error=address  -Wno-error=cast-qual -Wno-error=sequence-point -Wno-error=attributes  -Wno-error=strict-overflow -Wno-error=overflow  -finline-limit=8000 -fms-extensions --param inline-unit-growth=100 --param large-function-growth=1000  -std=iso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/nfsd/../../fs/nfsserver/nfs_nfsdstate.c -o nfs_nfsdstate.o
--- all_subdir_netgraph ---
--- all_subdir_netgraph/lmi ---
ctfconvert -L VERSION -g ng_lmi.o
--- ng_lmi.ko.full ---
/usr/local/x86_64-freebsd/bin/ld -d -warn-common -r -d -o ng_lmi.ko.full ng_lmi.o
ctfmerge -L VERSION -g -o ng_lmi.ko.full ng_lmi.o
:> export_syms
awk -f /builds/FreeBSD_HEAD_amd64_gcc/sys/conf/kmod_syms.awk ng_lmi.ko.full  export_syms | xargs -J% /usr/local/x86_64-freebsd/bin/objcopy % ng_lmi.ko.full
--- ng_lmi.ko.debug ---
/usr/local/x86_64-freebsd/bin/objcopy --only-keep-debug ng_lmi.ko.full ng_lmi.ko.debug
--- ng_lmi.ko ---
/usr/local/x86_64-freebsd/bin/objcopy --strip-debug --add-gnu-debuglink=ng_lmi.ko.debug  ng_lmi.ko.full ng_lmi.ko
--- rijndael-api.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 --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-strict-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -MD  -MF.depend.rijndael-api.o -MTrijndael-api.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 -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-unknown-pragmas  -Wno-error=inline -Wno-error=enum-compare -Wno-error=unused-but-set-variable  -Wno-error=aggressive-loop-optimizations -Wno-error=maybe-uninitialized  -Wno-error=array-bounds -Wno-error=address  -Wno-error=cast-qual -Wno-error=sequence-point -Wno-error=attributes  -Wno-error=strict-overflow -Wno-error=overflow  -fno-common -fms-extensions -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000  -std=iso9899:1999   /builds/FreeBSD_HEAD_amd64_gcc/sys/crypto/rijndael/rijndael-api.c
--- modules-all ---
--- all_subdir_netgraph/l2tp ---
ctfconvert -L VERSION -g ng_l2tp.o
--- ng_l2tp.ko.full ---
/usr/local/x86_64-freebsd/bin/ld -d -warn-common -r -d -o ng_l2tp.ko.full ng_l2tp.o
ctfmerge -L VERSION -g -o ng_l2tp.ko.full ng_l2tp.o
:> export_syms
awk -f /builds/FreeBSD_HEAD_amd64_gcc/sys/conf/kmod_syms.awk ng_l2tp.ko.full  export_syms | xargs -J% /usr/local/x86_64-freebsd/bin/objcopy % ng_l2tp.ko.full
--- ng_l2tp.ko.debug ---
/usr/local/x86_64-freebsd/bin/objcopy --only-keep-debug ng_l2tp.ko.full ng_l2tp.ko.debug
--- ng_l2tp.ko ---
/usr/local/x86_64-freebsd/bin/objcopy --strip-debug --add-gnu-debuglink=ng_l2tp.ko.debug  ng_l2tp.ko.full ng_l2tp.ko
--- rijndael-api.o ---
ctfconvert -L VERSION -g rijndael-api.o
--- modules-all ---
--- all_subdir_netgraph/mppc ---
===> netgraph/mppc (all)
--- all_subdir_nmdm ---
===> nmdm (all)
--- all_subdir_netgraph ---
--- machine ---
--- all_subdir_nmdm ---
--- machine ---
--- all_subdir_netgraph ---
machine -> /builds/FreeBSD_HEAD_amd64_gcc/sys/amd64/include
--- all_subdir_nmdm ---
machine -> /builds/FreeBSD_HEAD_amd64_gcc/sys/amd64/include
--- all_subdir_netgraph ---
--- x86 ---
--- all_subdir_nmdm ---
--- x86 ---
--- all_subdir_netgraph ---
x86 -> /builds/FreeBSD_HEAD_amd64_gcc/sys/x86/include
--- all_subdir_nmdm ---
x86 -> /builds/FreeBSD_HEAD_amd64_gcc/sys/x86/include
--- all_subdir_netgraph ---
--- opt_netgraph.h ---
ln -sf /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC/opt_netgraph.h opt_netgraph.h
--- all_subdir_nmdm ---
--- nmdm.o ---
--- all_subdir_netgraph ---
--- mppcc.o ---
--- all_subdir_nmdm ---
/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 --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe  -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC  -MD  -MF.depend.nmdm.o -MTnmdm.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 -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-unknown-pragmas  -Wno-error=inline -Wno-error=enum-compare -Wno-error=unused-but-set-variable  -Wno-error=aggressive-loop-optimizations -Wno-error=maybe-uninitialized  -Wno-error=array-bounds -Wno-error=address  -Wno-error=cast-qual -Wno-error=sequence-point -Wno-error=attributes  -Wno-error=strict-overflow -Wno-error=overflow  -finline-limit=8000 -fms-extensions --param inline-unit-growth=100 --param large-function-growth=1000  -std=iso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/nmdm/../../dev/nmdm/nmdm.c -o nmdm.o
--- all_subdir_netgraph ---
/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 --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe  -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC  -MD  -MF.depend.mppcc.o -MTmppcc.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 -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-unknown-pragmas  -Wno-error=inline -Wno-error=enum-compare -Wno-error=unused-but-set-variable  -Wno-error=aggressive-loop-optimizations -Wno-error=maybe-uninitialized  -Wno-error=array-bounds -Wno-error=address  -Wno-error=cast-qual -Wno-error=sequence-point -Wno-error=attributes  -Wno-error=strict-overflow -Wno-error=overflow  -finline-limit=8000 -fms-extensions --param inline-unit-growth=100 --param large-function-growth=1000  -std=iso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/netgraph/mppc/../../../net/mppcc.c -o mppcc.o
/builds/FreeBSD_HEAD_amd64_gcc/sys/modules/netgraph/mppc/../../../net/mppcc.c: In function 'MPPC_Compress':
/builds/FreeBSD_HEAD_amd64_gcc/sys/modules/netgraph/mppc/../../../net/mppcc.c:107:1: warning: inlining failed in call to 'putbits24': call is unlikely and code size would grow [-Winline]
 putbits24(uint8_t *buf, uint32_t val, const uint32_t n, uint32_t *i, uint32_t *l)
 ^
/builds/FreeBSD_HEAD_amd64_gcc/sys/modules/netgraph/mppc/../../../net/mppcc.c:260:6: warning: called from here [-Winline]
      putbits24(*dst, 0xff800|(len&0x3ff), 20, &olen, &l);
      ^
/builds/FreeBSD_HEAD_amd64_gcc/sys/modules/netgraph/mppc/../../../net/mppcc.c:107:1: warning: inlining failed in call to 'putbits24': call is unlikely and code size would grow [-Winline]
 putbits24(uint8_t *buf, uint32_t val, const uint32_t n, uint32_t *i, uint32_t *l)
 ^
/builds/FreeBSD_HEAD_amd64_gcc/sys/modules/netgraph/mppc/../../../net/mppcc.c:262:6: warning: called from here [-Winline]
      putbits24(*dst, 0x3ff000|(len&0x7ff), 22, &olen, &l);
      ^
--- all_subdir_nfsd ---
/builds/FreeBSD_HEAD_amd64_gcc/sys/modules/nfsd/../../fs/nfsserver/nfs_nfsdstate.c: In function 'nfsrv_openupdate':
/builds/FreeBSD_HEAD_amd64_gcc/sys/modules/nfsd/../../fs/nfsserver/nfs_nfsdstate.c:3228:25: warning: variable 'ownerstp' set but not used [-Wunused-but-set-variable]
  struct nfsstate *stp, *ownerstp;
                         ^
--- all_subdir_nmdm ---
ctfconvert -L VERSION -g nmdm.o
--- nmdm.ko.full ---
/usr/local/x86_64-freebsd/bin/ld -d -warn-common -r -d -o nmdm.ko.full nmdm.o
ctfmerge -L VERSION -g -o nmdm.ko.full nmdm.o
:> export_syms
awk -f /builds/FreeBSD_HEAD_amd64_gcc/sys/conf/kmod_syms.awk nmdm.ko.full  export_syms | xargs -J% /usr/local/x86_64-freebsd/bin/objcopy % nmdm.ko.full
--- nmdm.ko.debug ---
/usr/local/x86_64-freebsd/bin/objcopy --only-keep-debug nmdm.ko.full nmdm.ko.debug
--- nmdm.ko ---
/usr/local/x86_64-freebsd/bin/objcopy --strip-debug --add-gnu-debuglink=nmdm.ko.debug  nmdm.ko.full nmdm.ko
--- all_subdir_netgraph ---
ctfconvert -L VERSION -g mppcc.o
--- mppcd.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 --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe  -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC  -MD  -MF.depend.mppcd.o -MTmppcd.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 -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-unknown-pragmas  -Wno-error=inline -Wno-error=enum-compare -Wno-error=unused-but-set-variable  -Wno-error=aggressive-loop-optimizations -Wno-error=maybe-uninitialized  -Wno-error=array-bounds -Wno-error=address  -Wno-error=cast-qual -Wno-error=sequence-point -Wno-error=attributes  -Wno-error=strict-overflow -Wno-error=overflow  -finline-limit=8000 -fms-extensions --param inline-unit-growth=100 --param large-function-growth=1000  -std=iso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/netgraph/mppc/../../../net/mppcd.c -o mppcd.o
--- all_subdir_nfsd ---
--- nfs_nfsdsubs.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 --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe  -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC  -MD  -MF.depend.nfs_nfsdsubs.o -MTnfs_nfsdsubs.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 -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-unknown-pragmas  -Wno-error=inline -Wno-error=enum-compare -Wno-error=unused-but-set-variable  -Wno-error=aggressive-loop-optimizations -Wno-error=maybe-uninitialized  -Wno-error=array-bounds -Wno-error=address  -Wno-error=cast-qual -Wno-error=sequence-point -Wno-error=attributes  -Wno-error=strict-overflow -Wno-error=overflow  -finline-limit=8000 -fms-extensions --param inline-unit-growth=100 --param large-function-growth=1000  -std=iso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/nfsd/../../fs/nfsserver/nfs_nfsdsubs.c -o nfs_nfsdsubs.o
--- all_subdir_netgraph ---
ctfconvert -L VERSION -g mppcd.o
--- sha1.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 --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe  -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC  -MD  -MF.depend.sha1.o -MTsha1.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 -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-unknown-pragmas  -Wno-error=inline -Wno-error=enum-compare -Wno-error=unused-but-set-variable  -Wno-error=aggressive-loop-optimizations -Wno-error=maybe-uninitialized  -Wno-error=array-bounds -Wno-error=address  -Wno-error=cast-qual -Wno-error=sequence-point -Wno-error=attributes  -Wno-error=strict-overflow -Wno-error=overflow  -finline-limit=8000 -fms-extensions --param inline-unit-growth=100 --param large-function-growth=1000  -std=iso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/netgraph/mppc/../../../crypto/sha1.c -o sha1.o
ctfconvert -L VERSION -g sha1.o
--- ng_mppc.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 --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe  -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC  -MD  -MF.depend.ng_mppc.o -MTng_mppc.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 -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-unknown-pragmas  -Wno-error=inline -Wno-error=enum-compare -Wno-error=unused-but-set-variable  -Wno-error=aggressive-loop-optimizations -Wno-error=maybe-uninitialized  -Wno-error=array-bounds -Wno-error=address  -Wno-error=cast-qual -Wno-error=sequence-point -Wno-error=attributes  -Wno-error=strict-overflow -Wno-error=overflow  -finline-limit=8000 -fms-extensions --param inline-unit-growth=100 --param large-function-growth=1000  -std=iso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/netgraph/mppc/../../../netgraph/ng_mppc.c -o ng_mppc.o
ctfconvert -L VERSION -g ng_mppc.o
--- ng_mppc.ko.full ---
/usr/local/x86_64-freebsd/bin/ld -d -warn-common -r -d -o ng_mppc.ko.full ng_mppc.o mppcc.o mppcd.o sha1.o
ctfmerge -L VERSION -g -o ng_mppc.ko.full ng_mppc.o mppcc.o mppcd.o sha1.o
:> export_syms
awk -f /builds/FreeBSD_HEAD_amd64_gcc/sys/conf/kmod_syms.awk ng_mppc.ko.full  export_syms | xargs -J% /usr/local/x86_64-freebsd/bin/objcopy % ng_mppc.ko.full
--- ng_mppc.ko.debug ---
/usr/local/x86_64-freebsd/bin/objcopy --only-keep-debug ng_mppc.ko.full ng_mppc.ko.debug
--- ng_mppc.ko ---
/usr/local/x86_64-freebsd/bin/objcopy --strip-debug --add-gnu-debuglink=ng_mppc.ko.debug  ng_mppc.ko.full ng_mppc.ko
--- all_subdir_netgraph/nat ---
===> netgraph/nat (all)
--- all_subdir_nge ---
ctfconvert -L VERSION -g if_nge.o
--- all_subdir_netgraph ---
--- machine ---
machine -> /builds/FreeBSD_HEAD_amd64_gcc/sys/amd64/include
--- x86 ---
x86 -> /builds/FreeBSD_HEAD_amd64_gcc/sys/x86/include
--- opt_netgraph.h ---
ln -sf /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC/opt_netgraph.h opt_netgraph.h
--- all_subdir_nge ---
--- if_nge.ko.full ---
/usr/local/x86_64-freebsd/bin/ld -d -warn-common -r -d -o if_nge.ko.full if_nge.o
--- all_subdir_netgraph ---
--- ng_nat.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 --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe  -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC  -MD  -MF.depend.ng_nat.o -MTng_nat.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 -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-unknown-pragmas  -Wno-error=inline -Wno-error=enum-compare -Wno-error=unused-but-set-variable  -Wno-error=aggressive-loop-optimizations -Wno-error=maybe-uninitialized  -Wno-error=array-bounds -Wno-error=address  -Wno-error=cast-qual -Wno-error=sequence-point -Wno-error=attributes  -Wno-error=strict-overflow -Wno-error=overflow  -finline-limit=8000 -fms-extensions --param inline-unit-growth=100 --param large-function-growth=1000  -std=iso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/netgraph/nat/../../../netgraph/ng_nat.c -o ng_nat.o
--- all_subdir_nge ---
ctfmerge -L VERSION -g -o if_nge.ko.full if_nge.o
:> export_syms
awk -f /builds/FreeBSD_HEAD_amd64_gcc/sys/conf/kmod_syms.awk if_nge.ko.full  export_syms | xargs -J% /usr/local/x86_64-freebsd/bin/objcopy % if_nge.ko.full
--- if_nge.ko.debug ---
/usr/local/x86_64-freebsd/bin/objcopy --only-keep-debug if_nge.ko.full if_nge.ko.debug
--- if_nge.ko ---
/usr/local/x86_64-freebsd/bin/objcopy --strip-debug --add-gnu-debuglink=if_nge.ko.debug  if_nge.ko.full if_nge.ko
--- all_subdir_ntb ---
===> ntb (all)
--- all_subdir_ntb/ntb ---
===> ntb/ntb (all)
--- machine ---
machine -> /builds/FreeBSD_HEAD_amd64_gcc/sys/amd64/include
--- x86 ---
x86 -> /builds/FreeBSD_HEAD_amd64_gcc/sys/x86/include
--- ntb_if.h ---
awk -f /builds/FreeBSD_HEAD_amd64_gcc/sys/tools/makeobjops.awk /builds/FreeBSD_HEAD_amd64_gcc/sys/dev/ntb/ntb_if.m -h
--- ntb_if.c ---
awk -f /builds/FreeBSD_HEAD_amd64_gcc/sys/tools/makeobjops.awk /builds/FreeBSD_HEAD_amd64_gcc/sys/dev/ntb/ntb_if.m -c
--- device_if.h ---
awk -f /builds/FreeBSD_HEAD_amd64_gcc/sys/tools/makeobjops.awk /builds/FreeBSD_HEAD_amd64_gcc/sys/kern/device_if.m -h
--- bus_if.h ---
awk -f /builds/FreeBSD_HEAD_amd64_gcc/sys/tools/makeobjops.awk /builds/FreeBSD_HEAD_amd64_gcc/sys/kern/bus_if.m -h
--- ntb_if.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 --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe  -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC  -MD  -MF.depend.ntb_if.o -MTntb_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 -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-unknown-pragmas  -Wno-error=inline -Wno-error=enum-compare -Wno-error=unused-but-set-variable  -Wno-error=aggressive-loop-optimizations -Wno-error=maybe-uninitialized  -Wno-error=array-bounds -Wno-error=address  -Wno-error=cast-qual -Wno-error=sequence-point -Wno-error=attributes  -Wno-error=strict-overflow -Wno-error=overflow  -finline-limit=8000 -fms-extensions --param inline-unit-growth=100 --param large-function-growth=1000  -std=iso9899:1999 -c ntb_if.c -o ntb_if.o
ctfconvert -L VERSION -g ntb_if.o
--- ntb.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 --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe  -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC  -MD  -MF.depend.ntb.o -MTntb.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 -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-unknown-pragmas  -Wno-error=inline -Wno-error=enum-compare -Wno-error=unused-but-set-variable  -Wno-error=aggressive-loop-optimizations -Wno-error=maybe-uninitialized  -Wno-error=array-bounds -Wno-error=address  -Wno-error=cast-qual -Wno-error=sequence-point -Wno-error=attributes  -Wno-error=strict-overflow -Wno-error=overflow  -finline-limit=8000 -fms-extensions --param inline-unit-growth=100 --param large-function-growth=1000  -std=iso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/ntb/ntb/../../../dev/ntb/ntb.c -o ntb.o
--- all_subdir_nfsd ---
ctfconvert -L VERSION -g nfs_nfsdsubs.o
--- all_subdir_ntb ---
In file included from /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/ntb/ntb/../../../dev/ntb/ntb.c:27:0:
/builds/FreeBSD_HEAD_amd64_gcc/sys/modules/ntb/ntb/../../../dev/ntb/ntb.c: In function 'ntb_get_ctx':
/builds/FreeBSD_HEAD_amd64_gcc/sys/modules/ntb/ntb/../../../dev/ntb/ntb.c:269:12: error: 'struct ntb_child' has no member named 'ntb_ctx'
  KASSERT(nc->ntb_ctx != NULL && nc->ctx_ops != NULL, ("bogus"));
            ^
/builds/FreeBSD_HEAD_amd64_gcc/sys/sys/cdefs.h:456:51: note: in definition of macro '__predict_false'
 #define __predict_false(exp)    __builtin_expect((exp), 0)
                                                   ^
/builds/FreeBSD_HEAD_amd64_gcc/sys/modules/ntb/ntb/../../../dev/ntb/ntb.c:269:2: note: in expansion of macro 'KASSERT'
  KASSERT(nc->ntb_ctx != NULL && nc->ctx_ops != NULL, ("bogus"));
  ^
*** [ntb.o] Error code 1

bmake[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/ntb/ntb
1 error

bmake[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/ntb/ntb
*** [all_subdir_ntb/ntb] Error code 2

bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/ntb
1 error

bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/ntb
*** [all_subdir_ntb] Error code 2

bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/sys/modules
--- all_subdir_netgraph ---
ctfconvert -L VERSION -g ng_nat.o
A failure has been detected in another branch of the parallel make

bmake[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/netgraph/nat
*** [all_subdir_netgraph/nat] Error code 2

bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/netgraph
1 error

bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/netgraph
*** [all_subdir_netgraph] Error code 2

bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/sys/modules
--- all_subdir_nfsd ---
--- nfs_nfsdstate.o ---
ctfconvert -L VERSION -g nfs_nfsdstate.o
A failure has been detected in another branch of the parallel make

bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/sys/modules/nfsd
*** [all_subdir_nfsd] Error code 2

bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/sys/modules
3 errors

bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/sys/modules
*** [modules-all] Error code 2

bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC
1 error

bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/sys/GENERIC
*** [buildkernel] Error code 2

bmake[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
1 error

bmake[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
*** [buildkernel] Error code 2

make: stopped in /builds/FreeBSD_HEAD_amd64_gcc
1 error

make: stopped in /builds/FreeBSD_HEAD_amd64_gcc
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
Received on Thu Jul 28 2016 - 10:11:23 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:41:07 UTC