From owner-freebsd-amd64@FreeBSD.ORG Sun Jan 5 03:40:01 2014 Return-Path: Delivered-To: freebsd-amd64@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A561ECC for ; Sun, 5 Jan 2014 03:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 78ADC1AF9 for ; Sun, 5 Jan 2014 03:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s053e1XA071627 for ; Sun, 5 Jan 2014 03:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s053e1ch071626; Sun, 5 Jan 2014 03:40:01 GMT (envelope-from gnats) Date: Sun, 5 Jan 2014 03:40:01 GMT Message-Id: <201401050340.s053e1ch071626@freefall.freebsd.org> To: freebsd-amd64@FreeBSD.org Cc: From: Mark Johnston Subject: Re: amd64/185290: Dtrace does not work on -stable/10 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Mark Johnston List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Jan 2014 03:40:01 -0000 The following reply was made to PR amd64/185290; it has been noted by GNATS. From: Mark Johnston To: Robert David , bug-followup@FreeBSD.org Cc: Subject: Re: amd64/185290: Dtrace does not work on -stable/10 Date: Sat, 4 Jan 2014 22:34:55 -0500 On Mon, Dec 30, 2013 at 08:50:01PM +0000, Robert David wrote: > The following reply was made to PR amd64/185290; it has been noted by GNATS. > > From: Robert David > To: Mark Johnston > Cc: bug-followup@FreeBSD.org > Subject: Re: amd64/185290: Dtrace does not work on -stable/10 > Date: Mon, 30 Dec 2013 21:43:06 +0100 > > Hi, > > I got the system installed on my notebook and now does not have any > jail set up. > > Tried to move io.d out: > > root@notebook ~src (git)-[53624fa...] # > mv /usr/lib/dtrace/io.d /usr/lib/dtrace/io.d.bu > > root@notebook ~src (git)-[53624fa...] # dtrace -n 'syscall:::entry > { @num[execname] = count(); }' dtrace: invalid probe specifier > syscall:::entry { @num[execname] = count(); }: > "/usr/lib/dtrace/psinfo.d", line 90: failed to resolve type > kernel`struct thread * for identifier curthread: Module is no longer > loaded 1 > root@notebook ~src (git)-[53624fa...] # > > Serching through internet I found this: > http://lists.freebsd.org/pipermail/freebsd-dtrace/2013-October/000110.html > > Maybe something not backported from CURRENT. I'm testing 10.0-RC4 in a bhyve instance, and DTrace seems to be working properly. I will upgrade to stable/10 and test some more, but pretty much nothing has changed DTrace-wise between releng/10 and stable/10 so far. Moreover, the problems you're seeing tend to be the result of corrupted or absent CTF data, rather than bugs in the code. So here are a few more questions that'll help us pinpoint what's going on: - What happens when you run "ctfdump /boot/kernel/kernel"? Could you send the output? If it's correct, it should contain many thousands of lines. - Did you build the GENERIC kernel that you reported as having the issue? Do you have anything in make.conf or src.conf? - You mentioned that you have all of the probes (dtrace -l); do they have type info? For example, the command below gives the types for the arguments to read(2). Are they present when you run the same command? # dtrace -lv -n syscall:freebsd:read:entry ID PROVIDER MODULE FUNCTION NAME 38182 syscall freebsd read entry Probe Description Attributes Identifier Names: Private Data Semantics: Private Dependency Class: Unknown Argument Attributes Identifier Names: Private Data Semantics: Private Dependency Class: ISA Argument Types args[0]: int args[1]: void * args[2]: size_t Thanks! -Mark From owner-freebsd-amd64@FreeBSD.ORG Sun Jan 5 03:40:50 2014 Return-Path: Delivered-To: freebsd-amd64@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 35610111; Sun, 5 Jan 2014 03:40:50 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0A8C51B05; Sun, 5 Jan 2014 03:40:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s053enuU073391; Sun, 5 Jan 2014 03:40:49 GMT (envelope-from markj@freefall.freebsd.org) Received: (from markj@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s053enfE073390; Sun, 5 Jan 2014 03:40:49 GMT (envelope-from markj) Date: Sun, 5 Jan 2014 03:40:49 GMT Message-Id: <201401050340.s053enfE073390@freefall.freebsd.org> To: markj@FreeBSD.org, freebsd-amd64@FreeBSD.org, markj@FreeBSD.org From: markj@FreeBSD.org Subject: Re: amd64/185290: Dtrace does not work on -stable/10 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Jan 2014 03:40:50 -0000 Synopsis: Dtrace does not work on -stable/10 Responsible-Changed-From-To: freebsd-amd64->markj Responsible-Changed-By: markj Responsible-Changed-When: Sun Jan 5 03:40:49 UTC 2014 Responsible-Changed-Why: Track. http://www.freebsd.org/cgi/query-pr.cgi?pr=185290 From owner-freebsd-amd64@FreeBSD.ORG Sun Jan 5 06:49:52 2014 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 561A15DD; Sun, 5 Jan 2014 06:49:52 +0000 (UTC) Received: from freebsd-stable.sentex.ca (freebsd-stable.sentex.ca [IPv6:2607:f3e0:0:3::6502:9b]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 02E30161A; Sun, 5 Jan 2014 06:49:51 +0000 (UTC) Received: from freebsd-stable.sentex.ca (localhost [127.0.0.1]) by freebsd-stable.sentex.ca (8.14.5/8.14.5) with ESMTP id s056npfk028036; Sun, 5 Jan 2014 06:49:51 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-stable.sentex.ca (8.14.5/8.14.5/Submit) id s056npjD028031; Sun, 5 Jan 2014 06:49:51 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 5 Jan 2014 06:49:51 GMT Message-Id: <201401050649.s056npjD028031@freebsd-stable.sentex.ca> X-Authentication-Warning: freebsd-stable.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_9 tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Jan 2014 06:49:52 -0000 TB --- 2014-01-05 02:25:23 - tinderbox 2.20 running on freebsd-stable.sentex.ca TB --- 2014-01-05 02:25:23 - FreeBSD freebsd-stable.sentex.ca 8.3-STABLE FreeBSD 8.3-STABLE #0: Tue Oct 16 17:37:58 UTC 2012 mdtancsa@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/server amd64 TB --- 2014-01-05 02:25:23 - starting RELENG_9 tinderbox run for amd64/amd64 TB --- 2014-01-05 02:25:23 - cleaning the object tree TB --- 2014-01-05 02:25:23 - /usr/local/bin/svn stat /src TB --- 2014-01-05 02:25:28 - At svn revision 260314 TB --- 2014-01-05 02:25:29 - building world TB --- 2014-01-05 02:25:29 - CROSS_BUILD_TESTING=YES TB --- 2014-01-05 02:25:29 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-05 02:25:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-05 02:25:29 - SRCCONF=/dev/null TB --- 2014-01-05 02:25:29 - TARGET=amd64 TB --- 2014-01-05 02:25:29 - TARGET_ARCH=amd64 TB --- 2014-01-05 02:25:29 - TZ=UTC TB --- 2014-01-05 02:25:29 - __MAKE_CONF=/dev/null TB --- 2014-01-05 02:25:29 - cd /src TB --- 2014-01-05 02:25:29 - /usr/bin/make -B buildworld >>> World build started on Sun Jan 5 02:25:31 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Sun Jan 5 06:17:13 UTC 2014 TB --- 2014-01-05 06:17:13 - generating LINT kernel config TB --- 2014-01-05 06:17:13 - cd /src/sys/amd64/conf TB --- 2014-01-05 06:17:13 - /usr/bin/make -B LINT TB --- 2014-01-05 06:17:13 - cd /src/sys/amd64/conf TB --- 2014-01-05 06:17:13 - /usr/sbin/config -m LINT TB --- 2014-01-05 06:17:13 - building LINT kernel TB --- 2014-01-05 06:17:13 - CROSS_BUILD_TESTING=YES TB --- 2014-01-05 06:17:13 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-05 06:17:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-05 06:17:13 - SRCCONF=/dev/null TB --- 2014-01-05 06:17:13 - TARGET=amd64 TB --- 2014-01-05 06:17:13 - TARGET_ARCH=amd64 TB --- 2014-01-05 06:17:13 - TZ=UTC TB --- 2014-01-05 06:17:13 - __MAKE_CONF=/dev/null TB --- 2014-01-05 06:17:13 - cd /src TB --- 2014-01-05 06:17:13 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sun Jan 5 06:17:14 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] :> export_syms awk -f /src/sys/conf/kmod_syms.awk mlx4ib.ko export_syms | xargs -J% objcopy % mlx4ib.ko objcopy --strip-debug mlx4ib.ko ===> mlxen (all) cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlxen/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlxen/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/amd64.amd64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/obj/amd64.amd64/src/sys/LINT -fno-builtin -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -std=iso9899:1999 -fstack-protector -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-cast-qual -Wno-pointer-arith -c /src/sys/modules/mlxen/../../ofed/drivers/net/mlx4/en_cq.c cc1: warnings being treated as errors In file included from /src/sys/modules/mlxen/../../ofed/drivers/net/mlx4/en_cq.c:34: /src/sys/modules/mlxen/../../ofed/drivers/net/mlx4/mlx4_en.h:269: warning: declaration does not declare anything *** Error code 1 Stop in /src/sys/modules/mlxen. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2014-01-05 06:49:51 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-05 06:49:51 - ERROR: failed to build LINT kernel TB --- 2014-01-05 06:49:51 - 11926.70 user 1347.54 system 15867.24 real http://tinderbox.freebsd.org/tinderbox-freebsd9-build-RELENG_9-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Sun Jan 5 14:50:19 2014 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EDFC3DAC; Sun, 5 Jan 2014 14:50:19 +0000 (UTC) Received: from freebsd-stable.sentex.ca (freebsd-stable.sentex.ca [IPv6:2607:f3e0:0:3::6502:9b]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9A020170D; Sun, 5 Jan 2014 14:50:19 +0000 (UTC) Received: from freebsd-stable.sentex.ca (localhost [127.0.0.1]) by freebsd-stable.sentex.ca (8.14.5/8.14.5) with ESMTP id s05EoIVO038649; Sun, 5 Jan 2014 14:50:18 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-stable.sentex.ca (8.14.5/8.14.5/Submit) id s05EoIAP038644; Sun, 5 Jan 2014 14:50:18 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 5 Jan 2014 14:50:18 GMT Message-Id: <201401051450.s05EoIAP038644@freebsd-stable.sentex.ca> X-Authentication-Warning: freebsd-stable.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_9 tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Jan 2014 14:50:20 -0000 TB --- 2014-01-05 10:25:21 - tinderbox 2.20 running on freebsd-stable.sentex.ca TB --- 2014-01-05 10:25:21 - FreeBSD freebsd-stable.sentex.ca 8.3-STABLE FreeBSD 8.3-STABLE #0: Tue Oct 16 17:37:58 UTC 2012 mdtancsa@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/server amd64 TB --- 2014-01-05 10:25:21 - starting RELENG_9 tinderbox run for amd64/amd64 TB --- 2014-01-05 10:25:21 - cleaning the object tree TB --- 2014-01-05 10:26:04 - /usr/local/bin/svn stat /src TB --- 2014-01-05 10:26:08 - At svn revision 260314 TB --- 2014-01-05 10:26:09 - building world TB --- 2014-01-05 10:26:09 - CROSS_BUILD_TESTING=YES TB --- 2014-01-05 10:26:09 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-05 10:26:09 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-05 10:26:09 - SRCCONF=/dev/null TB --- 2014-01-05 10:26:09 - TARGET=amd64 TB --- 2014-01-05 10:26:09 - TARGET_ARCH=amd64 TB --- 2014-01-05 10:26:09 - TZ=UTC TB --- 2014-01-05 10:26:09 - __MAKE_CONF=/dev/null TB --- 2014-01-05 10:26:09 - cd /src TB --- 2014-01-05 10:26:09 - /usr/bin/make -B buildworld >>> World build started on Sun Jan 5 10:26:10 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Sun Jan 5 14:17:39 UTC 2014 TB --- 2014-01-05 14:17:39 - generating LINT kernel config TB --- 2014-01-05 14:17:39 - cd /src/sys/amd64/conf TB --- 2014-01-05 14:17:39 - /usr/bin/make -B LINT TB --- 2014-01-05 14:17:39 - cd /src/sys/amd64/conf TB --- 2014-01-05 14:17:39 - /usr/sbin/config -m LINT TB --- 2014-01-05 14:17:39 - building LINT kernel TB --- 2014-01-05 14:17:39 - CROSS_BUILD_TESTING=YES TB --- 2014-01-05 14:17:39 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-05 14:17:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-05 14:17:39 - SRCCONF=/dev/null TB --- 2014-01-05 14:17:39 - TARGET=amd64 TB --- 2014-01-05 14:17:39 - TARGET_ARCH=amd64 TB --- 2014-01-05 14:17:39 - TZ=UTC TB --- 2014-01-05 14:17:39 - __MAKE_CONF=/dev/null TB --- 2014-01-05 14:17:39 - cd /src TB --- 2014-01-05 14:17:39 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sun Jan 5 14:17:39 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] :> export_syms awk -f /src/sys/conf/kmod_syms.awk mlx4ib.ko export_syms | xargs -J% objcopy % mlx4ib.ko objcopy --strip-debug mlx4ib.ko ===> mlxen (all) cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/mlxen/../../ofed/drivers/net/mlx4 -I/src/sys/modules/mlxen/../../ofed/include/ -DHAVE_KERNEL_OPTION_HEADERS -include /obj/amd64.amd64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/obj/amd64.amd64/src/sys/LINT -fno-builtin -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -std=iso9899:1999 -fstack-protector -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-cast-qual -Wno-pointer-arith -c /src/sys/modules/mlxen/../../ofed/drivers/net/mlx4/en_cq.c cc1: warnings being treated as errors In file included from /src/sys/modules/mlxen/../../ofed/drivers/net/mlx4/en_cq.c:34: /src/sys/modules/mlxen/../../ofed/drivers/net/mlx4/mlx4_en.h:269: warning: declaration does not declare anything *** Error code 1 Stop in /src/sys/modules/mlxen. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2014-01-05 14:50:18 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-05 14:50:18 - ERROR: failed to build LINT kernel TB --- 2014-01-05 14:50:18 - 11926.77 user 1349.76 system 15896.99 real http://tinderbox.freebsd.org/tinderbox-freebsd9-build-RELENG_9-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Mon Jan 6 00:08:21 2014 Return-Path: Delivered-To: freebsd-amd64@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B6EB2CDA; Mon, 6 Jan 2014 00:08:21 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8AD6A1160; Mon, 6 Jan 2014 00:08:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0608Lmj075905; Mon, 6 Jan 2014 00:08:21 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0608LhQ075904; Mon, 6 Jan 2014 00:08:21 GMT (envelope-from linimon) Date: Mon, 6 Jan 2014 00:08:21 GMT Message-Id: <201401060008.s0608LhQ075904@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-amd64@FreeBSD.org, freebsd-docs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: docs/185353: nc(1) does not exit after transfer (should be documented) X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jan 2014 00:08:21 -0000 Old Synopsis: nc does not exit after transfer New Synopsis: nc(1) does not exit after transfer (should be documented) Responsible-Changed-From-To: freebsd-amd64->freebsd-docs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Jan 6 00:07:44 UTC 2014 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=185353 From owner-freebsd-amd64@FreeBSD.ORG Mon Jan 6 00:52:30 2014 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0C20094F; Mon, 6 Jan 2014 00:52:30 +0000 (UTC) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C24E5149D; Mon, 6 Jan 2014 00:52:29 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id s060qSm2093555; Sun, 5 Jan 2014 19:52:28 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id s060qSXx093551; Mon, 6 Jan 2014 00:52:28 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 6 Jan 2014 00:52:28 GMT Message-Id: <201401060052.s060qSXx093551@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jan 2014 00:52:30 -0000 TB --- 2014-01-05 21:40:26 - tinderbox 2.20 running on freebsd-current.sentex.ca TB --- 2014-01-05 21:40:26 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2014-01-05 21:40:26 - starting HEAD tinderbox run for amd64/amd64 TB --- 2014-01-05 21:40:26 - cleaning the object tree TB --- 2014-01-05 21:40:26 - /usr/local/bin/svn stat /src TB --- 2014-01-05 21:40:30 - At svn revision 260335 TB --- 2014-01-05 21:40:31 - building world TB --- 2014-01-05 21:40:31 - CROSS_BUILD_TESTING=YES TB --- 2014-01-05 21:40:31 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-05 21:40:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-05 21:40:31 - SRCCONF=/dev/null TB --- 2014-01-05 21:40:31 - TARGET=amd64 TB --- 2014-01-05 21:40:31 - TARGET_ARCH=amd64 TB --- 2014-01-05 21:40:31 - TZ=UTC TB --- 2014-01-05 21:40:31 - __MAKE_CONF=/dev/null TB --- 2014-01-05 21:40:31 - cd /src TB --- 2014-01-05 21:40:31 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sun Jan 5 21:40:41 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries [...] ranlib libgcc_eh.a sh /src/tools/install.sh -C -o root -g wheel -m 444 libgcc_eh.a /obj/amd64.amd64/src/lib32/usr/lib32 ===> lib/libcompiler_rt (obj,depend,all,install) rm -f .depend CC='cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /obj/amd64.amd64/src/lib32/usr/include/ -L/obj/amd64.amd64/src/lib32/usr/lib32 -B/obj/amd64.amd64/src/lib32/usr/lib32' mkdep -f .depend -a -DVISIBILITY_HIDDEN -std=gnu99 /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/absvdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/absvsi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/absvti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/addvdi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/addvsi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/addvti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/ashldi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ashlti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/ashrdi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ashrti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/clear_cache.c /src/lib/libcompiler_rt/..! /../contrib/compiler-rt/lib/clzdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/clzsi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/clzti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/cmpdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/cmpti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/comparedf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/comparesf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ctzdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ctzsi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ctzti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/divdc3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/divdi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/divmoddi4.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/divmodsi4.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/divsc3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/! lib/divti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt! /lib/divxc3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/enable_execute_stack.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/eprintf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ffsdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ffsti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixdfdi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixdfti.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixsfdi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixsfti.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunsdfdi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunsdfsi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunsdfti.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunssfdi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunssfsi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunssfti.c /src/lib/libcompiler_rt/../../contrib/compiler-rt! /lib/fixunsxfdi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunsxfsi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunsxfti.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixxfdi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixxfti.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/floatdidf.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/floatdisf.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/floatdixf.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floattidf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floattisf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floattixf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/floatundidf.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/floatundisf.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/floatundixf.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floatunsidf.c /src/lib/l! ibcompiler_rt/../../contrib/compiler-rt/lib/floatunsisf.c /src/lib/libc! ompiler_rt/../../contrib/compiler-rt/lib/floatuntidf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floatuntisf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floatuntixf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/int_util.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/lshrdi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/lshrti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/moddi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/modti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/muldc3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/muldi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/mulodi4.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/mulosi4.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/muloti4.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/mulsc3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/multi3.c /src/lib/libcompile! r_rt/../../contrib/compiler-rt/lib/mulvdi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/mulvsi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/mulvti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/mulxc3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/negdf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/negdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/negsf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/negti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/negvdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/negvsi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/negvti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/paritydi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/paritysi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/parityti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/popcountdi2.c /src/lib/libcompiler_rt/../../contrib/comp! iler-rt/lib/popcountsi2.c /src/lib/libcompiler_rt/../../contrib/compile! r-rt/lib/popcountti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/powidf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/powisf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/powitf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/powixf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/subvdi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/subvsi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/subvti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/trampoline_setup.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ucmpdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ucmpti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/udivdi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/udivmoddi4.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/udivmodsi4.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/udivmodti4.c /src/lib/libcompiler_rt/../../contrib/compiler! -rt/lib/udivti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/umoddi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/umodti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/adddf3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/addsf3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/divdf3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/divsf3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/extendsfdf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixdfsi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixsfsi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floatsidf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floatsisf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/muldf3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/mulsf3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/subdf3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/subsf3.c /src/! lib/libcompiler_rt/../../contrib/compiler-rt/lib/truncdfsf2.c /src/lib/! libcompiler_rt/../../contrib/compiler-rt/lib/divsi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/modsi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/udivsi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/umodsi3.c cc: warning: argument unused during compilation: '-L/obj/amd64.amd64/src/lib32/usr/lib32' cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /obj/amd64.amd64/src/lib32/usr/include/ -L/obj/amd64.amd64/src/lib32/usr/lib32 -B/obj/amd64.amd64/src/lib32/usr/lib32 -O2 -pipe -fpic -fvisibility=hidden -DVISIBILITY_HIDDEN -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/absvdi2.c -o absvdi2.o cc: error: argument unused during compilation: '-L/obj/amd64.amd64/src/lib32/usr/lib32' *** Error code 1 Stop. bmake[3]: stopped in /src/lib/libcompiler_rt *** Error code 1 Stop. bmake[2]: stopped in /src *** Error code 1 Stop. bmake[1]: stopped in /src *** Error code 1 Stop. bmake: stopped in /src *** Error code 1 Stop in /src. TB --- 2014-01-06 00:52:28 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-06 00:52:28 - ERROR: failed to build world TB --- 2014-01-06 00:52:28 - 9304.12 user 1580.19 system 11521.50 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Mon Jan 6 11:06:43 2014 Return-Path: Delivered-To: freebsd-amd64@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 851F1691 for ; Mon, 6 Jan 2014 11:06:43 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6F9C7106E for ; Mon, 6 Jan 2014 11:06:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s06B6hb4045167 for ; Mon, 6 Jan 2014 11:06:43 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s06B6gDg045165 for freebsd-amd64@FreeBSD.org; Mon, 6 Jan 2014 11:06:42 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 6 Jan 2014 11:06:42 GMT Message-Id: <201401061106.s06B6gDg045165@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-amd64@FreeBSD.org Subject: Current problem reports assigned to freebsd-amd64@FreeBSD.org X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jan 2014 11:06:43 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/185003 amd64 Random kernel panics o amd64/184966 amd64 buildworld fail o amd64/184718 amd64 HP MicroServer N40L, WOL packet doesn't wake up the co o amd64/184687 amd64 Mate freeze on "change password" option o amd64/184615 amd64 mate-file-manager-open-terminal fails to install o amd64/183823 amd64 error when system start o amd64/183789 amd64 Upgrading to FreeBSD-10.0-BETA3 Breaks Portmaster DB o amd64/183242 amd64 don't install pcBSD on GA-MA78GM-S2H (rev. 1.0) 2gb o amd64/182686 amd64 bios lost HDD after installing freebsd-9.x o amd64/181358 amd64 Suspend to RAM not working correctly on Lenovo X121e ( o amd64/181357 amd64 LCD Brightness Control not working on Lenovo X121e (AC o amd64/181285 amd64 x11/xorg does not start if Nvidia Optimus is enabled o o amd64/181282 amd64 3h of work on battery on FreeBSD while 10h on Windows o amd64/180862 amd64 [install] Installing FreeBSD 9.1 (AMD64 DVD) and then o amd64/180562 amd64 amdtemp and ACPI not working with motherboard ASUS M5A o amd64/180018 amd64 [panic] System panics when bsnmpd is started o amd64/179556 amd64 FreeBSD 9-1 amd64 - Install freeze on HP Proliant DL58 o amd64/179376 amd64 xhci ehci irq storm o amd64/179288 amd64 unable to install on HP ProLiant DL380p Gen8 with 128G o amd64/179282 amd64 [PATCH] Intel SMAP for FreeBSD-CURRENT o amd64/179038 amd64 instant reboot doesnt even try too install o amd64/178792 amd64 -march=native fails with clang on certain CPU's o amd64/178357 amd64 [patch] export CPU physical and virtual address sizes o amd64/176835 amd64 Fatal trap 12: page fault while in kernel mode o amd64/176474 amd64 kernel panic o amd64/175725 amd64 Audio through USB has not as good hi quality as it has o amd64/175655 amd64 When enabled tty console OS hang during boot o amd64/175370 amd64 kernel panic the rebuild kernel with vimage options in o amd64/175282 amd64 Freebsd 9.1 release amd64, mb Intel D525MW, not worked o amd64/175129 amd64 laptop won't suspend on lid close o amd64/174679 amd64 Intel i5 laptop overheats and shuts down [regression] o amd64/173869 amd64 buildworld breaks with clang o amd64/173680 amd64 9.1rc3 installer hangs at "rootpass" o amd64/173502 amd64 Patch inhibition of warnings that appear in the combin o amd64/173465 amd64 FreeBSD 9.1 restarts in random fashion after upgrade t o amd64/173311 amd64 FreeBSD 9.1 RC2 , 12 servers restart in random fashion o amd64/173235 amd64 Have received two crashes within 1 day after installin o amd64/172926 amd64 [boot] booting hangs after 9.1-RC2 install in 2nd (MBR o amd64/171835 amd64 bsdinstall abort on Dell PowerEdge R420 with PERC H310 o amd64/171814 amd64 [panic] bioq_init or bioq_remove (unsure which) o amd64/171701 amd64 [install] 9.0-rel amd64 installer 'guided' or 'manual' o amd64/171250 amd64 ldd32 cannot find some i386 libraries o amd64/170487 amd64 [boot] Thinkpad X61s cannot boot 9.1-BETA1 o amd64/170351 amd64 [kernel] [patch] amd64: 64-bit process can't always ge o amd64/170115 amd64 Serial boot broken in 9.0 o amd64/168659 amd64 [boot] FreeBSD 9 - Crash upon booting off install CD ( o amd64/167582 amd64 Compile of MySQL NDB Cluster Fails 8.2 AMD64 o amd64/167543 amd64 [kernel] Install FreeBSD can show error message with c o amd64/167393 amd64 [boot] MacBook4,1 hangs on SMP boot o amd64/166639 amd64 [boot] Syscons issue Intel D2700 o amd64/166229 amd64 [boot] Unable to install FreeBSD 9 on Acer Extensa 522 o amd64/165850 amd64 [build] 8.3-RC1 (amd64): world doesn't build with CPUT o amd64/165845 amd64 [build] Unable to build kernel on 8.2-STABLE o amd64/165351 amd64 [boot] Error while installing or booting the freeBSD O o amd64/164773 amd64 [boot] 9.0 amd64 fails to boot on HP DL145 G3 [regress o amd64/164643 amd64 Kernel Panic at 9.0-RELEASE o amd64/164619 amd64 when logged in as root the user and group applications o amd64/164457 amd64 [install] Can't install FreeBSD 9.0 (amd64) on HP Blad o amd64/164301 amd64 [install] 9.0 - Can't install, no DHCP lease o amd64/164136 amd64 after fresh install 8.1 release or 8.2 release the har o amd64/164116 amd64 [boot] FreeBSD 9.0-RELEASE installations mediums fails o amd64/164089 amd64 FreeBSD-9.0-RELEASE-amd64-memstick.img does not boot o amd64/164073 amd64 /etc/rc warning after booting o amd64/164036 amd64 [keyboard] Moused fails on 9_0_RELENG o amd64/163736 amd64 Freebsd 8.2 with MPD5 and about 100 PPPoE clients pani o amd64/163710 amd64 setjump in userboot.so causes stack corruption o amd64/163625 amd64 Install problems of RC3 amd64 on ASRock N68 GE3 UCC o amd64/163568 amd64 hard drive naming o amd64/163285 amd64 when installing gnome2-lite not all dependent packages o amd64/163284 amd64 print manager failed to install correctly o amd64/163114 amd64 no boot on Via Nanao netbook Samsung NC20 o amd64/163092 amd64 FreeBSD 9.0-RC2 fails to boot from raid-z2 if AHCI is o amd64/163048 amd64 normal user cant mount ntfs-3g o amd64/162936 amd64 fails boot and destabilizes other OSes on FreeBSD 9 RC o amd64/162489 amd64 After some time X blanks the screen and does not respo o amd64/162314 amd64 not able to install FreeBSD-8.2-RELEASE-amd64-dvd1 as o amd64/162170 amd64 Unable to install due to freeze at "run_interrupt_driv o amd64/161974 amd64 FreeBSD 9 new installer installs succesful, renders ma o kern/160833 amd64 Keyboard USB doesn't work o amd64/157386 amd64 [powerd] Enabling powerd(8) with default settings on I o amd64/156106 amd64 [boot] boot0 fails to start o amd64/155135 amd64 [boot] Does Not Boot On a Very Standard Hardware o amd64/154957 amd64 [boot] Install boot CD won't boot up - keeps rebooting o amd64/154629 amd64 [panic] Fatal trap 9: general protection fault while i o amd64/153935 amd64 [hang] system hangs while trying to do 'shutdown -h no o amd64/153831 amd64 [boot] CD bootloader won't on Tyan s2912G2nr o amd64/153496 amd64 [hyper-v] [install] Install on Hyper-V leaves corrupt o amd64/153372 amd64 [panic] kernel panic o amd64/153175 amd64 [amd64] Kernel Panic on only FreeBSD 8 amd64 o amd64/152874 amd64 [install] 8.1 install fails where 7.3 works due to lac o amd64/152430 amd64 [boot] HP ProLiant Microserver n36l cannot boot into i o amd64/145991 amd64 [NOTES] [patch] Add a requires line to /sys/amd64/conf o amd64/144405 amd64 [build] [patch] include /usr/obj/lib32 in cleanworld t s amd64/143173 amd64 [ata] Promise FastTrack TX4 + SATA DVD, installer can' p amd64/141413 amd64 [hang] Tyan 2881 m3289 SMDC freeze o amd64/137942 amd64 [pci] 8.0-BETA2 having problems with Asus M2N-SLI-delu o amd64/115194 amd64 LCD screen remains blank after Dell XPS M1210 lid is c 97 problems total. From owner-freebsd-amd64@FreeBSD.ORG Mon Jan 6 11:24:52 2014 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BD5DB02; Mon, 6 Jan 2014 11:24:52 +0000 (UTC) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0EB8B1576; Mon, 6 Jan 2014 11:24:51 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id s06BOph0090980; Mon, 6 Jan 2014 06:24:51 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id s06BOp2w090979; Mon, 6 Jan 2014 11:24:51 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 6 Jan 2014 11:24:51 GMT Message-Id: <201401061124.s06BOp2w090979@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jan 2014 11:24:52 -0000 TB --- 2014-01-06 08:10:21 - tinderbox 2.20 running on freebsd-current.sentex.ca TB --- 2014-01-06 08:10:21 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2014-01-06 08:10:21 - starting HEAD tinderbox run for amd64/amd64 TB --- 2014-01-06 08:10:21 - cleaning the object tree TB --- 2014-01-06 08:14:13 - /usr/local/bin/svn stat /src TB --- 2014-01-06 08:14:16 - At svn revision 260365 TB --- 2014-01-06 08:14:17 - building world TB --- 2014-01-06 08:14:17 - CROSS_BUILD_TESTING=YES TB --- 2014-01-06 08:14:17 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-06 08:14:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-06 08:14:17 - SRCCONF=/dev/null TB --- 2014-01-06 08:14:17 - TARGET=amd64 TB --- 2014-01-06 08:14:17 - TARGET_ARCH=amd64 TB --- 2014-01-06 08:14:17 - TZ=UTC TB --- 2014-01-06 08:14:17 - __MAKE_CONF=/dev/null TB --- 2014-01-06 08:14:17 - cd /src TB --- 2014-01-06 08:14:17 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Mon Jan 6 08:14:24 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries [...] ranlib libgcc_eh.a sh /src/tools/install.sh -C -o root -g wheel -m 444 libgcc_eh.a /obj/amd64.amd64/src/lib32/usr/lib32 ===> lib/libcompiler_rt (obj,depend,all,install) rm -f .depend CC='cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /obj/amd64.amd64/src/lib32/usr/include/ -L/obj/amd64.amd64/src/lib32/usr/lib32 -B/obj/amd64.amd64/src/lib32/usr/lib32' mkdep -f .depend -a -DVISIBILITY_HIDDEN -std=gnu99 /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/absvdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/absvsi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/absvti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/addvdi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/addvsi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/addvti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/ashldi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ashlti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/ashrdi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ashrti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/clear_cache.c /src/lib/libcompiler_rt/..! /../contrib/compiler-rt/lib/clzdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/clzsi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/clzti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/cmpdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/cmpti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/comparedf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/comparesf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ctzdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ctzsi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ctzti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/divdc3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/divdi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/divmoddi4.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/divmodsi4.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/divsc3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/! lib/divti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt! /lib/divxc3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/enable_execute_stack.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/eprintf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ffsdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ffsti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixdfdi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixdfti.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixsfdi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixsfti.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunsdfdi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunsdfsi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunsdfti.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunssfdi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunssfsi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunssfti.c /src/lib/libcompiler_rt/../../contrib/compiler-rt! /lib/fixunsxfdi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunsxfsi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixunsxfti.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixxfdi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixxfti.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/floatdidf.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/floatdisf.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/floatdixf.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floattidf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floattisf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floattixf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/floatundidf.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/floatundisf.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/floatundixf.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floatunsidf.c /src/lib/l! ibcompiler_rt/../../contrib/compiler-rt/lib/floatunsisf.c /src/lib/libc! ompiler_rt/../../contrib/compiler-rt/lib/floatuntidf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floatuntisf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floatuntixf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/int_util.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/lshrdi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/lshrti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/moddi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/modti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/muldc3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/muldi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/mulodi4.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/mulosi4.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/muloti4.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/mulsc3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/multi3.c /src/lib/libcompile! r_rt/../../contrib/compiler-rt/lib/mulvdi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/mulvsi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/mulvti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/mulxc3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/negdf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/negdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/negsf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/negti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/negvdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/negvsi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/negvti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/paritydi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/paritysi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/parityti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/popcountdi2.c /src/lib/libcompiler_rt/../../contrib/comp! iler-rt/lib/popcountsi2.c /src/lib/libcompiler_rt/../../contrib/compile! r-rt/lib/popcountti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/powidf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/powisf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/powitf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/powixf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/subvdi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/subvsi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/subvti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/trampoline_setup.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ucmpdi2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/ucmpti2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/udivdi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/udivmoddi4.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/udivmodsi4.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/udivmodti4.c /src/lib/libcompiler_rt/../../contrib/compiler! -rt/lib/udivti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/i386/umoddi3.S /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/umodti3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/adddf3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/addsf3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/divdf3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/divsf3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/extendsfdf2.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixdfsi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/fixsfsi.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floatsidf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/floatsisf.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/muldf3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/mulsf3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/subdf3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/subsf3.c /src/! lib/libcompiler_rt/../../contrib/compiler-rt/lib/truncdfsf2.c /src/lib/! libcompiler_rt/../../contrib/compiler-rt/lib/divsi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/modsi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/udivsi3.c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/umodsi3.c cc: warning: argument unused during compilation: '-L/obj/amd64.amd64/src/lib32/usr/lib32' cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /obj/amd64.amd64/src/lib32/usr/include/ -L/obj/amd64.amd64/src/lib32/usr/lib32 -B/obj/amd64.amd64/src/lib32/usr/lib32 -O2 -pipe -fpic -fvisibility=hidden -DVISIBILITY_HIDDEN -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -c /src/lib/libcompiler_rt/../../contrib/compiler-rt/lib/absvdi2.c -o absvdi2.o cc: error: argument unused during compilation: '-L/obj/amd64.amd64/src/lib32/usr/lib32' *** Error code 1 Stop. bmake[3]: stopped in /src/lib/libcompiler_rt *** Error code 1 Stop. bmake[2]: stopped in /src *** Error code 1 Stop. bmake[1]: stopped in /src *** Error code 1 Stop. bmake: stopped in /src *** Error code 1 Stop in /src. TB --- 2014-01-06 11:24:51 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-06 11:24:51 - ERROR: failed to build world TB --- 2014-01-06 11:24:51 - 9302.55 user 1573.74 system 11670.09 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Mon Jan 6 14:42:58 2014 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF193DC; Mon, 6 Jan 2014 14:42:58 +0000 (UTC) Received: from tensor.andric.com (tensor.andric.com [87.251.56.140]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9DE6D16FA; Mon, 6 Jan 2014 14:42:58 +0000 (UTC) Received: from spaceball.andric.com (spaceball.andric.com [IPv6:2001:7b8:3a7:0:204:4bff:fe01:de8a]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id E813D5C43; Mon, 6 Jan 2014 15:42:48 +0100 (CET) Message-ID: <52CAC0E1.3060807@FreeBSD.org> Date: Mon, 06 Jan 2014 15:42:41 +0100 From: Dimitry Andric Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Thunderbird/25.0 MIME-Version: 1.0 To: FreeBSD Tinderbox , current@freebsd.org, amd64@freebsd.org Subject: Re: [head tinderbox] failure on amd64/amd64 References: <201401060052.s060qSXx093551@freebsd-current.sentex.ca> In-Reply-To: <201401060052.s060qSXx093551@freebsd-current.sentex.ca> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Mon, 06 Jan 2014 15:56:17 +0000 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jan 2014 14:42:58 -0000 On 2014-01-06 01:52, FreeBSD Tinderbox wrote: ... > ===> lib/libcompiler_rt (obj,depend,all,install) ... > cc: error: argument unused during compilation: '-L/obj/amd64.amd64/src/lib32/usr/lib32' Apologies, this is caused by r260334. I have put in a temporary workaround in r260369. -Dimitry From owner-freebsd-amd64@FreeBSD.ORG Tue Jan 7 00:44:53 2014 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C6A3680; Tue, 7 Jan 2014 00:44:53 +0000 (UTC) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 601DF1DB7; Tue, 7 Jan 2014 00:44:52 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id s070iqGT039288; Mon, 6 Jan 2014 19:44:52 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id s070iqMb039287; Tue, 7 Jan 2014 00:44:52 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 7 Jan 2014 00:44:52 GMT Message-Id: <201401070044.s070iqMb039287@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Jan 2014 00:44:53 -0000 TB --- 2014-01-06 18:40:18 - tinderbox 2.20 running on freebsd-current.sentex.ca TB --- 2014-01-06 18:40:18 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2014-01-06 18:40:18 - starting HEAD tinderbox run for amd64/amd64 TB --- 2014-01-06 18:40:18 - cleaning the object tree TB --- 2014-01-06 18:44:19 - /usr/local/bin/svn stat /src TB --- 2014-01-06 18:44:22 - At svn revision 260376 TB --- 2014-01-06 18:44:23 - building world TB --- 2014-01-06 18:44:23 - CROSS_BUILD_TESTING=YES TB --- 2014-01-06 18:44:23 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-06 18:44:23 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-06 18:44:23 - SRCCONF=/dev/null TB --- 2014-01-06 18:44:23 - TARGET=amd64 TB --- 2014-01-06 18:44:23 - TARGET_ARCH=amd64 TB --- 2014-01-06 18:44:23 - TZ=UTC TB --- 2014-01-06 18:44:23 - __MAKE_CONF=/dev/null TB --- 2014-01-06 18:44:23 - cd /src TB --- 2014-01-06 18:44:23 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Mon Jan 6 18:44:30 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Mon Jan 6 22:29:20 UTC 2014 TB --- 2014-01-06 22:29:20 - generating LINT kernel config TB --- 2014-01-06 22:29:20 - cd /src/sys/amd64/conf TB --- 2014-01-06 22:29:20 - /usr/bin/make -B LINT TB --- 2014-01-06 22:29:20 - cd /src/sys/amd64/conf TB --- 2014-01-06 22:29:20 - /usr/sbin/config -m LINT TB --- 2014-01-06 22:29:20 - building LINT kernel TB --- 2014-01-06 22:29:20 - CROSS_BUILD_TESTING=YES TB --- 2014-01-06 22:29:20 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-06 22:29:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-06 22:29:20 - SRCCONF=/dev/null TB --- 2014-01-06 22:29:20 - TARGET=amd64 TB --- 2014-01-06 22:29:20 - TARGET_ARCH=amd64 TB --- 2014-01-06 22:29:20 - TZ=UTC TB --- 2014-01-06 22:29:20 - __MAKE_CONF=/dev/null TB --- 2014-01-06 22:29:20 - cd /src TB --- 2014-01-06 22:29:20 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Jan 6 22:29:20 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT completed on Mon Jan 6 23:03:21 UTC 2014 TB --- 2014-01-06 23:03:21 - cd /src/sys/amd64/conf TB --- 2014-01-06 23:03:21 - /usr/sbin/config -m LINT-NOINET TB --- 2014-01-06 23:03:21 - building LINT-NOINET kernel TB --- 2014-01-06 23:03:21 - CROSS_BUILD_TESTING=YES TB --- 2014-01-06 23:03:21 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-06 23:03:21 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-06 23:03:21 - SRCCONF=/dev/null TB --- 2014-01-06 23:03:21 - TARGET=amd64 TB --- 2014-01-06 23:03:21 - TARGET_ARCH=amd64 TB --- 2014-01-06 23:03:21 - TZ=UTC TB --- 2014-01-06 23:03:21 - __MAKE_CONF=/dev/null TB --- 2014-01-06 23:03:21 - cd /src TB --- 2014-01-06 23:03:21 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET >>> Kernel build for LINT-NOINET started on Mon Jan 6 23:03:21 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET completed on Mon Jan 6 23:34:25 UTC 2014 TB --- 2014-01-06 23:34:25 - cd /src/sys/amd64/conf TB --- 2014-01-06 23:34:25 - /usr/sbin/config -m LINT-NOINET6 TB --- 2014-01-06 23:34:25 - building LINT-NOINET6 kernel TB --- 2014-01-06 23:34:25 - CROSS_BUILD_TESTING=YES TB --- 2014-01-06 23:34:25 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-06 23:34:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-06 23:34:25 - SRCCONF=/dev/null TB --- 2014-01-06 23:34:25 - TARGET=amd64 TB --- 2014-01-06 23:34:25 - TARGET_ARCH=amd64 TB --- 2014-01-06 23:34:25 - TZ=UTC TB --- 2014-01-06 23:34:25 - __MAKE_CONF=/dev/null TB --- 2014-01-06 23:34:25 - cd /src TB --- 2014-01-06 23:34:25 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET6 >>> Kernel build for LINT-NOINET6 started on Mon Jan 6 23:34:25 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET6 completed on Tue Jan 7 00:06:13 UTC 2014 TB --- 2014-01-07 00:06:13 - cd /src/sys/amd64/conf TB --- 2014-01-07 00:06:13 - /usr/sbin/config -m LINT-NOIP TB --- 2014-01-07 00:06:13 - building LINT-NOIP kernel TB --- 2014-01-07 00:06:13 - CROSS_BUILD_TESTING=YES TB --- 2014-01-07 00:06:13 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-07 00:06:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-07 00:06:13 - SRCCONF=/dev/null TB --- 2014-01-07 00:06:13 - TARGET=amd64 TB --- 2014-01-07 00:06:13 - TARGET_ARCH=amd64 TB --- 2014-01-07 00:06:13 - TZ=UTC TB --- 2014-01-07 00:06:13 - __MAKE_CONF=/dev/null TB --- 2014-01-07 00:06:13 - cd /src TB --- 2014-01-07 00:06:13 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOIP >>> Kernel build for LINT-NOIP started on Tue Jan 7 00:06:13 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOIP completed on Tue Jan 7 00:35:00 UTC 2014 TB --- 2014-01-07 00:35:00 - cd /src/sys/amd64/conf TB --- 2014-01-07 00:35:00 - /usr/sbin/config -m LINT-VIMAGE TB --- 2014-01-07 00:35:00 - building LINT-VIMAGE kernel TB --- 2014-01-07 00:35:00 - CROSS_BUILD_TESTING=YES TB --- 2014-01-07 00:35:00 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-07 00:35:00 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-07 00:35:00 - SRCCONF=/dev/null TB --- 2014-01-07 00:35:00 - TARGET=amd64 TB --- 2014-01-07 00:35:00 - TARGET_ARCH=amd64 TB --- 2014-01-07 00:35:00 - TZ=UTC TB --- 2014-01-07 00:35:00 - __MAKE_CONF=/dev/null TB --- 2014-01-07 00:35:00 - cd /src TB --- 2014-01-07 00:35:00 - /usr/bin/make -B buildkernel KERNCONF=LINT-VIMAGE >>> Kernel build for LINT-VIMAGE started on Tue Jan 7 00:35:00 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] ^ /src/sys/net/vnet.h:214:12: note: expanded from macro 'CURVNET_SET_QUIET' curvnet = arg; ^ /src/sys/sys/ucred.h:58:9: note: forward declaration of 'struct prison' struct prison *cr_prison; /* jail(2) */ ^ 4 errors generated. *** Error code 1 Stop. bmake[1]: stopped in /obj/amd64.amd64/src/sys/LINT-VIMAGE *** Error code 1 Stop. bmake: stopped in /src *** Error code 1 Stop in /src. TB --- 2014-01-07 00:44:52 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-07 00:44:52 - ERROR: failed to build LINT-VIMAGE kernel TB --- 2014-01-07 00:44:52 - 17030.46 user 3170.84 system 21873.48 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Tue Jan 7 12:20:25 2014 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ADE14540; Tue, 7 Jan 2014 12:20:25 +0000 (UTC) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 738261241; Tue, 7 Jan 2014 12:20:25 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id s07CKOji069142; Tue, 7 Jan 2014 07:20:24 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id s07CKOoe069135; Tue, 7 Jan 2014 12:20:24 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 7 Jan 2014 12:20:24 GMT Message-Id: <201401071220.s07CKOoe069135@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Jan 2014 12:20:25 -0000 TB --- 2014-01-07 06:10:18 - tinderbox 2.20 running on freebsd-current.sentex.ca TB --- 2014-01-07 06:10:18 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2014-01-07 06:10:18 - starting HEAD tinderbox run for amd64/amd64 TB --- 2014-01-07 06:10:18 - cleaning the object tree TB --- 2014-01-07 06:18:13 - /usr/local/bin/svn stat /src TB --- 2014-01-07 06:18:16 - At svn revision 260387 TB --- 2014-01-07 06:18:17 - building world TB --- 2014-01-07 06:18:17 - CROSS_BUILD_TESTING=YES TB --- 2014-01-07 06:18:17 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-07 06:18:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-07 06:18:17 - SRCCONF=/dev/null TB --- 2014-01-07 06:18:17 - TARGET=amd64 TB --- 2014-01-07 06:18:17 - TARGET_ARCH=amd64 TB --- 2014-01-07 06:18:17 - TZ=UTC TB --- 2014-01-07 06:18:17 - __MAKE_CONF=/dev/null TB --- 2014-01-07 06:18:17 - cd /src TB --- 2014-01-07 06:18:17 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Jan 7 06:18:24 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Tue Jan 7 10:05:09 UTC 2014 TB --- 2014-01-07 10:05:09 - generating LINT kernel config TB --- 2014-01-07 10:05:09 - cd /src/sys/amd64/conf TB --- 2014-01-07 10:05:09 - /usr/bin/make -B LINT TB --- 2014-01-07 10:05:09 - cd /src/sys/amd64/conf TB --- 2014-01-07 10:05:09 - /usr/sbin/config -m LINT TB --- 2014-01-07 10:05:09 - building LINT kernel TB --- 2014-01-07 10:05:09 - CROSS_BUILD_TESTING=YES TB --- 2014-01-07 10:05:09 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-07 10:05:09 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-07 10:05:09 - SRCCONF=/dev/null TB --- 2014-01-07 10:05:09 - TARGET=amd64 TB --- 2014-01-07 10:05:09 - TARGET_ARCH=amd64 TB --- 2014-01-07 10:05:09 - TZ=UTC TB --- 2014-01-07 10:05:09 - __MAKE_CONF=/dev/null TB --- 2014-01-07 10:05:09 - cd /src TB --- 2014-01-07 10:05:09 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Jan 7 10:05:09 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT completed on Tue Jan 7 10:39:12 UTC 2014 TB --- 2014-01-07 10:39:12 - cd /src/sys/amd64/conf TB --- 2014-01-07 10:39:12 - /usr/sbin/config -m LINT-NOINET TB --- 2014-01-07 10:39:12 - building LINT-NOINET kernel TB --- 2014-01-07 10:39:12 - CROSS_BUILD_TESTING=YES TB --- 2014-01-07 10:39:12 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-07 10:39:12 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-07 10:39:12 - SRCCONF=/dev/null TB --- 2014-01-07 10:39:12 - TARGET=amd64 TB --- 2014-01-07 10:39:12 - TARGET_ARCH=amd64 TB --- 2014-01-07 10:39:12 - TZ=UTC TB --- 2014-01-07 10:39:12 - __MAKE_CONF=/dev/null TB --- 2014-01-07 10:39:12 - cd /src TB --- 2014-01-07 10:39:12 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET >>> Kernel build for LINT-NOINET started on Tue Jan 7 10:39:12 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET completed on Tue Jan 7 11:10:09 UTC 2014 TB --- 2014-01-07 11:10:09 - cd /src/sys/amd64/conf TB --- 2014-01-07 11:10:09 - /usr/sbin/config -m LINT-NOINET6 TB --- 2014-01-07 11:10:09 - building LINT-NOINET6 kernel TB --- 2014-01-07 11:10:09 - CROSS_BUILD_TESTING=YES TB --- 2014-01-07 11:10:09 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-07 11:10:09 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-07 11:10:09 - SRCCONF=/dev/null TB --- 2014-01-07 11:10:09 - TARGET=amd64 TB --- 2014-01-07 11:10:09 - TARGET_ARCH=amd64 TB --- 2014-01-07 11:10:09 - TZ=UTC TB --- 2014-01-07 11:10:09 - __MAKE_CONF=/dev/null TB --- 2014-01-07 11:10:09 - cd /src TB --- 2014-01-07 11:10:09 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET6 >>> Kernel build for LINT-NOINET6 started on Tue Jan 7 11:10:09 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET6 completed on Tue Jan 7 11:41:45 UTC 2014 TB --- 2014-01-07 11:41:45 - cd /src/sys/amd64/conf TB --- 2014-01-07 11:41:45 - /usr/sbin/config -m LINT-NOIP TB --- 2014-01-07 11:41:45 - building LINT-NOIP kernel TB --- 2014-01-07 11:41:45 - CROSS_BUILD_TESTING=YES TB --- 2014-01-07 11:41:45 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-07 11:41:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-07 11:41:45 - SRCCONF=/dev/null TB --- 2014-01-07 11:41:45 - TARGET=amd64 TB --- 2014-01-07 11:41:45 - TARGET_ARCH=amd64 TB --- 2014-01-07 11:41:45 - TZ=UTC TB --- 2014-01-07 11:41:45 - __MAKE_CONF=/dev/null TB --- 2014-01-07 11:41:45 - cd /src TB --- 2014-01-07 11:41:45 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOIP >>> Kernel build for LINT-NOIP started on Tue Jan 7 11:41:45 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOIP completed on Tue Jan 7 12:10:35 UTC 2014 TB --- 2014-01-07 12:10:35 - cd /src/sys/amd64/conf TB --- 2014-01-07 12:10:35 - /usr/sbin/config -m LINT-VIMAGE TB --- 2014-01-07 12:10:35 - building LINT-VIMAGE kernel TB --- 2014-01-07 12:10:35 - CROSS_BUILD_TESTING=YES TB --- 2014-01-07 12:10:35 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-07 12:10:35 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-07 12:10:35 - SRCCONF=/dev/null TB --- 2014-01-07 12:10:35 - TARGET=amd64 TB --- 2014-01-07 12:10:35 - TARGET_ARCH=amd64 TB --- 2014-01-07 12:10:35 - TZ=UTC TB --- 2014-01-07 12:10:35 - __MAKE_CONF=/dev/null TB --- 2014-01-07 12:10:35 - cd /src TB --- 2014-01-07 12:10:35 - /usr/bin/make -B buildkernel KERNCONF=LINT-VIMAGE >>> Kernel build for LINT-VIMAGE started on Tue Jan 7 12:10:36 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] ^ /src/sys/net/vnet.h:214:12: note: expanded from macro 'CURVNET_SET_QUIET' curvnet = arg; ^ /src/sys/sys/ucred.h:58:9: note: forward declaration of 'struct prison' struct prison *cr_prison; /* jail(2) */ ^ 4 errors generated. *** Error code 1 Stop. bmake[1]: stopped in /obj/amd64.amd64/src/sys/LINT-VIMAGE *** Error code 1 Stop. bmake: stopped in /src *** Error code 1 Stop in /src. TB --- 2014-01-07 12:20:24 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-07 12:20:24 - ERROR: failed to build LINT-VIMAGE kernel TB --- 2014-01-07 12:20:24 - 17024.78 user 3183.69 system 22205.69 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Wed Jan 8 00:00:50 2014 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 655F1886; Wed, 8 Jan 2014 00:00:50 +0000 (UTC) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 29AF61E30; Wed, 8 Jan 2014 00:00:49 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id s0800nqr001023; Tue, 7 Jan 2014 19:00:49 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id s0800nr0001021; Wed, 8 Jan 2014 00:00:49 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 8 Jan 2014 00:00:49 GMT Message-Id: <201401080000.s0800nr0001021@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jan 2014 00:00:50 -0000 TB --- 2014-01-07 17:50:16 - tinderbox 2.20 running on freebsd-current.sentex.ca TB --- 2014-01-07 17:50:16 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2014-01-07 17:50:16 - starting HEAD tinderbox run for amd64/amd64 TB --- 2014-01-07 17:50:16 - cleaning the object tree TB --- 2014-01-07 17:58:17 - /usr/local/bin/svn stat /src TB --- 2014-01-07 17:58:21 - At svn revision 260394 TB --- 2014-01-07 17:58:22 - building world TB --- 2014-01-07 17:58:22 - CROSS_BUILD_TESTING=YES TB --- 2014-01-07 17:58:22 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-07 17:58:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-07 17:58:22 - SRCCONF=/dev/null TB --- 2014-01-07 17:58:22 - TARGET=amd64 TB --- 2014-01-07 17:58:22 - TARGET_ARCH=amd64 TB --- 2014-01-07 17:58:22 - TZ=UTC TB --- 2014-01-07 17:58:22 - __MAKE_CONF=/dev/null TB --- 2014-01-07 17:58:22 - cd /src TB --- 2014-01-07 17:58:22 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Jan 7 17:58:28 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Tue Jan 7 21:44:56 UTC 2014 TB --- 2014-01-07 21:44:56 - generating LINT kernel config TB --- 2014-01-07 21:44:56 - cd /src/sys/amd64/conf TB --- 2014-01-07 21:44:56 - /usr/bin/make -B LINT TB --- 2014-01-07 21:44:56 - cd /src/sys/amd64/conf TB --- 2014-01-07 21:44:56 - /usr/sbin/config -m LINT TB --- 2014-01-07 21:44:56 - building LINT kernel TB --- 2014-01-07 21:44:56 - CROSS_BUILD_TESTING=YES TB --- 2014-01-07 21:44:56 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-07 21:44:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-07 21:44:56 - SRCCONF=/dev/null TB --- 2014-01-07 21:44:56 - TARGET=amd64 TB --- 2014-01-07 21:44:56 - TARGET_ARCH=amd64 TB --- 2014-01-07 21:44:56 - TZ=UTC TB --- 2014-01-07 21:44:56 - __MAKE_CONF=/dev/null TB --- 2014-01-07 21:44:56 - cd /src TB --- 2014-01-07 21:44:56 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Jan 7 21:44:56 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT completed on Tue Jan 7 22:19:19 UTC 2014 TB --- 2014-01-07 22:19:19 - cd /src/sys/amd64/conf TB --- 2014-01-07 22:19:19 - /usr/sbin/config -m LINT-NOINET TB --- 2014-01-07 22:19:19 - building LINT-NOINET kernel TB --- 2014-01-07 22:19:19 - CROSS_BUILD_TESTING=YES TB --- 2014-01-07 22:19:19 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-07 22:19:19 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-07 22:19:19 - SRCCONF=/dev/null TB --- 2014-01-07 22:19:19 - TARGET=amd64 TB --- 2014-01-07 22:19:19 - TARGET_ARCH=amd64 TB --- 2014-01-07 22:19:19 - TZ=UTC TB --- 2014-01-07 22:19:19 - __MAKE_CONF=/dev/null TB --- 2014-01-07 22:19:19 - cd /src TB --- 2014-01-07 22:19:19 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET >>> Kernel build for LINT-NOINET started on Tue Jan 7 22:19:19 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET completed on Tue Jan 7 22:50:24 UTC 2014 TB --- 2014-01-07 22:50:24 - cd /src/sys/amd64/conf TB --- 2014-01-07 22:50:24 - /usr/sbin/config -m LINT-NOINET6 TB --- 2014-01-07 22:50:24 - building LINT-NOINET6 kernel TB --- 2014-01-07 22:50:24 - CROSS_BUILD_TESTING=YES TB --- 2014-01-07 22:50:24 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-07 22:50:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-07 22:50:24 - SRCCONF=/dev/null TB --- 2014-01-07 22:50:24 - TARGET=amd64 TB --- 2014-01-07 22:50:24 - TARGET_ARCH=amd64 TB --- 2014-01-07 22:50:24 - TZ=UTC TB --- 2014-01-07 22:50:24 - __MAKE_CONF=/dev/null TB --- 2014-01-07 22:50:24 - cd /src TB --- 2014-01-07 22:50:24 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET6 >>> Kernel build for LINT-NOINET6 started on Tue Jan 7 22:50:24 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET6 completed on Tue Jan 7 23:21:49 UTC 2014 TB --- 2014-01-07 23:21:49 - cd /src/sys/amd64/conf TB --- 2014-01-07 23:21:49 - /usr/sbin/config -m LINT-NOIP TB --- 2014-01-07 23:21:49 - building LINT-NOIP kernel TB --- 2014-01-07 23:21:49 - CROSS_BUILD_TESTING=YES TB --- 2014-01-07 23:21:49 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-07 23:21:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-07 23:21:49 - SRCCONF=/dev/null TB --- 2014-01-07 23:21:49 - TARGET=amd64 TB --- 2014-01-07 23:21:49 - TARGET_ARCH=amd64 TB --- 2014-01-07 23:21:49 - TZ=UTC TB --- 2014-01-07 23:21:49 - __MAKE_CONF=/dev/null TB --- 2014-01-07 23:21:49 - cd /src TB --- 2014-01-07 23:21:49 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOIP >>> Kernel build for LINT-NOIP started on Tue Jan 7 23:21:49 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOIP completed on Tue Jan 7 23:50:43 UTC 2014 TB --- 2014-01-07 23:50:43 - cd /src/sys/amd64/conf TB --- 2014-01-07 23:50:43 - /usr/sbin/config -m LINT-VIMAGE TB --- 2014-01-07 23:50:43 - building LINT-VIMAGE kernel TB --- 2014-01-07 23:50:43 - CROSS_BUILD_TESTING=YES TB --- 2014-01-07 23:50:43 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-07 23:50:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-07 23:50:43 - SRCCONF=/dev/null TB --- 2014-01-07 23:50:43 - TARGET=amd64 TB --- 2014-01-07 23:50:43 - TARGET_ARCH=amd64 TB --- 2014-01-07 23:50:43 - TZ=UTC TB --- 2014-01-07 23:50:43 - __MAKE_CONF=/dev/null TB --- 2014-01-07 23:50:43 - cd /src TB --- 2014-01-07 23:50:43 - /usr/bin/make -B buildkernel KERNCONF=LINT-VIMAGE >>> Kernel build for LINT-VIMAGE started on Tue Jan 7 23:50:43 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] ^ /src/sys/net/vnet.h:214:12: note: expanded from macro 'CURVNET_SET_QUIET' curvnet = arg; ^ /src/sys/sys/ucred.h:58:9: note: forward declaration of 'struct prison' struct prison *cr_prison; /* jail(2) */ ^ 4 errors generated. *** Error code 1 Stop. bmake[1]: stopped in /obj/amd64.amd64/src/sys/LINT-VIMAGE *** Error code 1 Stop. bmake: stopped in /src *** Error code 1 Stop in /src. TB --- 2014-01-08 00:00:49 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-08 00:00:49 - ERROR: failed to build LINT-VIMAGE kernel TB --- 2014-01-08 00:00:49 - 17041.09 user 3197.78 system 22232.37 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Wed Jan 8 11:47:39 2014 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 342D4637; Wed, 8 Jan 2014 11:47:39 +0000 (UTC) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EBD551FDE; Wed, 8 Jan 2014 11:47:38 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id s08BlbKb027999; Wed, 8 Jan 2014 06:47:37 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id s08BlbcL027995; Wed, 8 Jan 2014 11:47:37 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 8 Jan 2014 11:47:37 GMT Message-Id: <201401081147.s08BlbcL027995@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jan 2014 11:47:39 -0000 TB --- 2014-01-08 05:30:19 - tinderbox 2.20 running on freebsd-current.sentex.ca TB --- 2014-01-08 05:30:19 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2014-01-08 05:30:19 - starting HEAD tinderbox run for amd64/amd64 TB --- 2014-01-08 05:30:19 - cleaning the object tree TB --- 2014-01-08 05:39:53 - /usr/local/bin/svn stat /src TB --- 2014-01-08 05:39:56 - At svn revision 260441 TB --- 2014-01-08 05:39:57 - building world TB --- 2014-01-08 05:39:57 - CROSS_BUILD_TESTING=YES TB --- 2014-01-08 05:39:57 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-08 05:39:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-08 05:39:57 - SRCCONF=/dev/null TB --- 2014-01-08 05:39:57 - TARGET=amd64 TB --- 2014-01-08 05:39:57 - TARGET_ARCH=amd64 TB --- 2014-01-08 05:39:57 - TZ=UTC TB --- 2014-01-08 05:39:57 - __MAKE_CONF=/dev/null TB --- 2014-01-08 05:39:57 - cd /src TB --- 2014-01-08 05:39:57 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Jan 8 05:40:04 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Wed Jan 8 09:31:26 UTC 2014 TB --- 2014-01-08 09:31:26 - generating LINT kernel config TB --- 2014-01-08 09:31:26 - cd /src/sys/amd64/conf TB --- 2014-01-08 09:31:26 - /usr/bin/make -B LINT TB --- 2014-01-08 09:31:26 - cd /src/sys/amd64/conf TB --- 2014-01-08 09:31:26 - /usr/sbin/config -m LINT TB --- 2014-01-08 09:31:26 - building LINT kernel TB --- 2014-01-08 09:31:26 - CROSS_BUILD_TESTING=YES TB --- 2014-01-08 09:31:26 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-08 09:31:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-08 09:31:26 - SRCCONF=/dev/null TB --- 2014-01-08 09:31:26 - TARGET=amd64 TB --- 2014-01-08 09:31:26 - TARGET_ARCH=amd64 TB --- 2014-01-08 09:31:26 - TZ=UTC TB --- 2014-01-08 09:31:26 - __MAKE_CONF=/dev/null TB --- 2014-01-08 09:31:26 - cd /src TB --- 2014-01-08 09:31:26 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Jan 8 09:31:26 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT completed on Wed Jan 8 10:05:57 UTC 2014 TB --- 2014-01-08 10:05:57 - cd /src/sys/amd64/conf TB --- 2014-01-08 10:05:57 - /usr/sbin/config -m LINT-NOINET TB --- 2014-01-08 10:05:57 - building LINT-NOINET kernel TB --- 2014-01-08 10:05:57 - CROSS_BUILD_TESTING=YES TB --- 2014-01-08 10:05:57 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-08 10:05:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-08 10:05:57 - SRCCONF=/dev/null TB --- 2014-01-08 10:05:57 - TARGET=amd64 TB --- 2014-01-08 10:05:57 - TARGET_ARCH=amd64 TB --- 2014-01-08 10:05:57 - TZ=UTC TB --- 2014-01-08 10:05:57 - __MAKE_CONF=/dev/null TB --- 2014-01-08 10:05:57 - cd /src TB --- 2014-01-08 10:05:57 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET >>> Kernel build for LINT-NOINET started on Wed Jan 8 10:05:57 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET completed on Wed Jan 8 10:36:28 UTC 2014 TB --- 2014-01-08 10:36:28 - cd /src/sys/amd64/conf TB --- 2014-01-08 10:36:28 - /usr/sbin/config -m LINT-NOINET6 TB --- 2014-01-08 10:36:29 - building LINT-NOINET6 kernel TB --- 2014-01-08 10:36:29 - CROSS_BUILD_TESTING=YES TB --- 2014-01-08 10:36:29 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-08 10:36:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-08 10:36:29 - SRCCONF=/dev/null TB --- 2014-01-08 10:36:29 - TARGET=amd64 TB --- 2014-01-08 10:36:29 - TARGET_ARCH=amd64 TB --- 2014-01-08 10:36:29 - TZ=UTC TB --- 2014-01-08 10:36:29 - __MAKE_CONF=/dev/null TB --- 2014-01-08 10:36:29 - cd /src TB --- 2014-01-08 10:36:29 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET6 >>> Kernel build for LINT-NOINET6 started on Wed Jan 8 10:36:29 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET6 completed on Wed Jan 8 11:07:54 UTC 2014 TB --- 2014-01-08 11:07:54 - cd /src/sys/amd64/conf TB --- 2014-01-08 11:07:54 - /usr/sbin/config -m LINT-NOIP TB --- 2014-01-08 11:07:54 - building LINT-NOIP kernel TB --- 2014-01-08 11:07:54 - CROSS_BUILD_TESTING=YES TB --- 2014-01-08 11:07:54 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-08 11:07:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-08 11:07:54 - SRCCONF=/dev/null TB --- 2014-01-08 11:07:54 - TARGET=amd64 TB --- 2014-01-08 11:07:54 - TARGET_ARCH=amd64 TB --- 2014-01-08 11:07:54 - TZ=UTC TB --- 2014-01-08 11:07:54 - __MAKE_CONF=/dev/null TB --- 2014-01-08 11:07:54 - cd /src TB --- 2014-01-08 11:07:54 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOIP >>> Kernel build for LINT-NOIP started on Wed Jan 8 11:07:54 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOIP completed on Wed Jan 8 11:37:19 UTC 2014 TB --- 2014-01-08 11:37:19 - cd /src/sys/amd64/conf TB --- 2014-01-08 11:37:19 - /usr/sbin/config -m LINT-VIMAGE TB --- 2014-01-08 11:37:19 - building LINT-VIMAGE kernel TB --- 2014-01-08 11:37:19 - CROSS_BUILD_TESTING=YES TB --- 2014-01-08 11:37:19 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-08 11:37:19 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-08 11:37:19 - SRCCONF=/dev/null TB --- 2014-01-08 11:37:19 - TARGET=amd64 TB --- 2014-01-08 11:37:19 - TARGET_ARCH=amd64 TB --- 2014-01-08 11:37:19 - TZ=UTC TB --- 2014-01-08 11:37:19 - __MAKE_CONF=/dev/null TB --- 2014-01-08 11:37:19 - cd /src TB --- 2014-01-08 11:37:19 - /usr/bin/make -B buildkernel KERNCONF=LINT-VIMAGE >>> Kernel build for LINT-VIMAGE started on Wed Jan 8 11:37:19 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] ^ /src/sys/net/vnet.h:214:12: note: expanded from macro 'CURVNET_SET_QUIET' curvnet = arg; ^ /src/sys/sys/ucred.h:58:9: note: forward declaration of 'struct prison' struct prison *cr_prison; /* jail(2) */ ^ 4 errors generated. *** Error code 1 Stop. bmake[1]: stopped in /obj/amd64.amd64/src/sys/LINT-VIMAGE *** Error code 1 Stop. bmake: stopped in /src *** Error code 1 Stop in /src. TB --- 2014-01-08 11:47:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-08 11:47:37 - ERROR: failed to build LINT-VIMAGE kernel TB --- 2014-01-08 11:47:37 - 17028.90 user 3172.00 system 22638.05 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Wed Jan 8 23:28:50 2014 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A37EF1DA; Wed, 8 Jan 2014 23:28:50 +0000 (UTC) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 67DCF1D0E; Wed, 8 Jan 2014 23:28:50 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id s08NSnaw048853; Wed, 8 Jan 2014 18:28:49 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id s08NSnSF048852; Wed, 8 Jan 2014 23:28:49 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 8 Jan 2014 23:28:49 GMT Message-Id: <201401082328.s08NSnSF048852@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jan 2014 23:28:50 -0000 TB --- 2014-01-08 17:20:21 - tinderbox 2.20 running on freebsd-current.sentex.ca TB --- 2014-01-08 17:20:21 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2014-01-08 17:20:21 - starting HEAD tinderbox run for amd64/amd64 TB --- 2014-01-08 17:20:21 - cleaning the object tree TB --- 2014-01-08 17:27:32 - /usr/local/bin/svn stat /src TB --- 2014-01-08 17:27:35 - At svn revision 260453 TB --- 2014-01-08 17:27:36 - building world TB --- 2014-01-08 17:27:36 - CROSS_BUILD_TESTING=YES TB --- 2014-01-08 17:27:36 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-08 17:27:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-08 17:27:36 - SRCCONF=/dev/null TB --- 2014-01-08 17:27:36 - TARGET=amd64 TB --- 2014-01-08 17:27:36 - TARGET_ARCH=amd64 TB --- 2014-01-08 17:27:36 - TZ=UTC TB --- 2014-01-08 17:27:36 - __MAKE_CONF=/dev/null TB --- 2014-01-08 17:27:36 - cd /src TB --- 2014-01-08 17:27:36 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Jan 8 17:27:43 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Wed Jan 8 21:12:57 UTC 2014 TB --- 2014-01-08 21:12:57 - generating LINT kernel config TB --- 2014-01-08 21:12:57 - cd /src/sys/amd64/conf TB --- 2014-01-08 21:12:57 - /usr/bin/make -B LINT TB --- 2014-01-08 21:12:57 - cd /src/sys/amd64/conf TB --- 2014-01-08 21:12:57 - /usr/sbin/config -m LINT TB --- 2014-01-08 21:12:57 - building LINT kernel TB --- 2014-01-08 21:12:57 - CROSS_BUILD_TESTING=YES TB --- 2014-01-08 21:12:57 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-08 21:12:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-08 21:12:57 - SRCCONF=/dev/null TB --- 2014-01-08 21:12:57 - TARGET=amd64 TB --- 2014-01-08 21:12:57 - TARGET_ARCH=amd64 TB --- 2014-01-08 21:12:57 - TZ=UTC TB --- 2014-01-08 21:12:57 - __MAKE_CONF=/dev/null TB --- 2014-01-08 21:12:57 - cd /src TB --- 2014-01-08 21:12:57 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Jan 8 21:12:57 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT completed on Wed Jan 8 21:47:03 UTC 2014 TB --- 2014-01-08 21:47:03 - cd /src/sys/amd64/conf TB --- 2014-01-08 21:47:03 - /usr/sbin/config -m LINT-NOINET TB --- 2014-01-08 21:47:03 - building LINT-NOINET kernel TB --- 2014-01-08 21:47:03 - CROSS_BUILD_TESTING=YES TB --- 2014-01-08 21:47:03 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-08 21:47:03 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-08 21:47:03 - SRCCONF=/dev/null TB --- 2014-01-08 21:47:03 - TARGET=amd64 TB --- 2014-01-08 21:47:03 - TARGET_ARCH=amd64 TB --- 2014-01-08 21:47:03 - TZ=UTC TB --- 2014-01-08 21:47:03 - __MAKE_CONF=/dev/null TB --- 2014-01-08 21:47:03 - cd /src TB --- 2014-01-08 21:47:03 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET >>> Kernel build for LINT-NOINET started on Wed Jan 8 21:47:03 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET completed on Wed Jan 8 22:18:39 UTC 2014 TB --- 2014-01-08 22:18:39 - cd /src/sys/amd64/conf TB --- 2014-01-08 22:18:39 - /usr/sbin/config -m LINT-NOINET6 TB --- 2014-01-08 22:18:39 - building LINT-NOINET6 kernel TB --- 2014-01-08 22:18:39 - CROSS_BUILD_TESTING=YES TB --- 2014-01-08 22:18:39 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-08 22:18:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-08 22:18:39 - SRCCONF=/dev/null TB --- 2014-01-08 22:18:39 - TARGET=amd64 TB --- 2014-01-08 22:18:39 - TARGET_ARCH=amd64 TB --- 2014-01-08 22:18:39 - TZ=UTC TB --- 2014-01-08 22:18:39 - __MAKE_CONF=/dev/null TB --- 2014-01-08 22:18:39 - cd /src TB --- 2014-01-08 22:18:39 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET6 >>> Kernel build for LINT-NOINET6 started on Wed Jan 8 22:18:39 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET6 completed on Wed Jan 8 22:50:06 UTC 2014 TB --- 2014-01-08 22:50:06 - cd /src/sys/amd64/conf TB --- 2014-01-08 22:50:06 - /usr/sbin/config -m LINT-NOIP TB --- 2014-01-08 22:50:06 - building LINT-NOIP kernel TB --- 2014-01-08 22:50:06 - CROSS_BUILD_TESTING=YES TB --- 2014-01-08 22:50:06 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-08 22:50:06 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-08 22:50:06 - SRCCONF=/dev/null TB --- 2014-01-08 22:50:06 - TARGET=amd64 TB --- 2014-01-08 22:50:06 - TARGET_ARCH=amd64 TB --- 2014-01-08 22:50:06 - TZ=UTC TB --- 2014-01-08 22:50:06 - __MAKE_CONF=/dev/null TB --- 2014-01-08 22:50:06 - cd /src TB --- 2014-01-08 22:50:06 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOIP >>> Kernel build for LINT-NOIP started on Wed Jan 8 22:50:06 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOIP completed on Wed Jan 8 23:18:58 UTC 2014 TB --- 2014-01-08 23:18:58 - cd /src/sys/amd64/conf TB --- 2014-01-08 23:18:58 - /usr/sbin/config -m LINT-VIMAGE TB --- 2014-01-08 23:18:58 - building LINT-VIMAGE kernel TB --- 2014-01-08 23:18:58 - CROSS_BUILD_TESTING=YES TB --- 2014-01-08 23:18:58 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-08 23:18:58 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-08 23:18:58 - SRCCONF=/dev/null TB --- 2014-01-08 23:18:58 - TARGET=amd64 TB --- 2014-01-08 23:18:58 - TARGET_ARCH=amd64 TB --- 2014-01-08 23:18:58 - TZ=UTC TB --- 2014-01-08 23:18:58 - __MAKE_CONF=/dev/null TB --- 2014-01-08 23:18:58 - cd /src TB --- 2014-01-08 23:18:58 - /usr/bin/make -B buildkernel KERNCONF=LINT-VIMAGE >>> Kernel build for LINT-VIMAGE started on Wed Jan 8 23:18:58 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] ^ /src/sys/net/vnet.h:214:12: note: expanded from macro 'CURVNET_SET_QUIET' curvnet = arg; ^ /src/sys/sys/ucred.h:58:9: note: forward declaration of 'struct prison' struct prison *cr_prison; /* jail(2) */ ^ 4 errors generated. *** Error code 1 Stop. bmake[1]: stopped in /obj/amd64.amd64/src/sys/LINT-VIMAGE *** Error code 1 Stop. bmake: stopped in /src *** Error code 1 Stop in /src. TB --- 2014-01-08 23:28:49 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-08 23:28:49 - ERROR: failed to build LINT-VIMAGE kernel TB --- 2014-01-08 23:28:49 - 17035.55 user 3193.27 system 22107.57 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Thu Jan 9 20:31:32 2014 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 538E8D18; Thu, 9 Jan 2014 20:31:32 +0000 (UTC) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E1A951B38; Thu, 9 Jan 2014 20:31:31 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id s09KVURL033151; Thu, 9 Jan 2014 15:31:30 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id s09KVUXc033130; Thu, 9 Jan 2014 20:31:30 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 9 Jan 2014 20:31:30 GMT Message-Id: <201401092031.s09KVUXc033130@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Jan 2014 20:31:32 -0000 TB --- 2014-01-09 17:30:19 - tinderbox 2.20 running on freebsd-current.sentex.ca TB --- 2014-01-09 17:30:19 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2014-01-09 17:30:19 - starting HEAD tinderbox run for amd64/amd64 TB --- 2014-01-09 17:30:19 - cleaning the object tree TB --- 2014-01-09 17:30:19 - /usr/local/bin/svn stat /src TB --- 2014-01-09 17:30:24 - At svn revision 260487 TB --- 2014-01-09 17:30:25 - building world TB --- 2014-01-09 17:30:25 - CROSS_BUILD_TESTING=YES TB --- 2014-01-09 17:30:25 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-09 17:30:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-09 17:30:25 - SRCCONF=/dev/null TB --- 2014-01-09 17:30:25 - TARGET=amd64 TB --- 2014-01-09 17:30:25 - TARGET_ARCH=amd64 TB --- 2014-01-09 17:30:25 - TZ=UTC TB --- 2014-01-09 17:30:25 - __MAKE_CONF=/dev/null TB --- 2014-01-09 17:30:25 - cd /src TB --- 2014-01-09 17:30:25 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Thu Jan 9 17:30:34 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] /src/usr.bin/netstat/mroute6.c:234:4: error: use of undeclared identifier 'mfcp'; did you mean 'mfc'? mfcp = mfc.mf6c_next; ^~~~ mfc /src/usr.bin/netstat/mroute6.c:121:14: note: 'mfc' declared here struct mf6c mfc; ^ 16 errors generated. *** Error code 1 Stop. bmake[3]: stopped in /src/usr.bin/netstat *** Error code 1 Stop. bmake[2]: stopped in /src/usr.bin *** Error code 1 Stop. bmake[1]: stopped in /src *** Error code 1 Stop. bmake: stopped in /src *** Error code 1 Stop in /src. TB --- 2014-01-09 20:31:30 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-09 20:31:30 - ERROR: failed to build world TB --- 2014-01-09 20:31:30 - 8924.77 user 1475.62 system 10870.43 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Sat Jan 11 16:06:21 2014 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D34477B9; Sat, 11 Jan 2014 16:06:21 +0000 (UTC) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7C1BE1D3A; Sat, 11 Jan 2014 16:06:21 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id s0BG69aA055499; Sat, 11 Jan 2014 11:06:09 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id s0BG69qP055469; Sat, 11 Jan 2014 16:06:09 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 11 Jan 2014 16:06:09 GMT Message-Id: <201401111606.s0BG69qP055469@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Jan 2014 16:06:21 -0000 TB --- 2014-01-11 13:00:17 - tinderbox 2.20 running on freebsd-current.sentex.ca TB --- 2014-01-11 13:00:17 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2014-01-11 13:00:17 - starting HEAD tinderbox run for amd64/amd64 TB --- 2014-01-11 13:00:17 - cleaning the object tree TB --- 2014-01-11 13:00:17 - /usr/local/bin/svn stat /src TB --- 2014-01-11 13:00:22 - At svn revision 260540 TB --- 2014-01-11 13:00:23 - building world TB --- 2014-01-11 13:00:23 - CROSS_BUILD_TESTING=YES TB --- 2014-01-11 13:00:23 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-11 13:00:23 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-11 13:00:23 - SRCCONF=/dev/null TB --- 2014-01-11 13:00:23 - TARGET=amd64 TB --- 2014-01-11 13:00:23 - TARGET_ARCH=amd64 TB --- 2014-01-11 13:00:23 - TZ=UTC TB --- 2014-01-11 13:00:23 - __MAKE_CONF=/dev/null TB --- 2014-01-11 13:00:23 - cd /src TB --- 2014-01-11 13:00:23 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Jan 11 13:00:29 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] SET_VMCS_ENTRY_INTERRUPTION_INFO /src/usr.sbin/bhyvectl/bhyvectl.c:382:2: note: 'SET_VMCS_ENTRY_INTERRUPTION_INFO' declared here SET_VMCS_ENTRY_INTERRUPTION_INFO, ^ /src/usr.sbin/bhyvectl/bhyvectl.c:1466:8: error: use of undeclared identifier 'VMCS_EXIT_INTERRUPTION_ERROR' VMCS_EXIT_INTERRUPTION_ERROR, &u64); ^ 2 errors generated. *** Error code 1 Stop. bmake[3]: stopped in /src/usr.sbin/bhyvectl *** Error code 1 Stop. bmake[2]: stopped in /src/usr.sbin *** Error code 1 Stop. bmake[1]: stopped in /src *** Error code 1 Stop. bmake: stopped in /src *** Error code 1 Stop in /src. TB --- 2014-01-11 16:06:09 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-11 16:06:09 - ERROR: failed to build world TB --- 2014-01-11 16:06:09 - 9129.05 user 1558.62 system 11151.55 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full From owner-freebsd-amd64@FreeBSD.ORG Sat Jan 11 17:38:54 2014 Return-Path: Delivered-To: amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EE863FE9; Sat, 11 Jan 2014 17:38:53 +0000 (UTC) Received: from mail-qa0-x230.google.com (mail-qa0-x230.google.com [IPv6:2607:f8b0:400d:c00::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8C4BE12DC; Sat, 11 Jan 2014 17:38:53 +0000 (UTC) Received: by mail-qa0-f48.google.com with SMTP id f11so880493qae.21 for ; Sat, 11 Jan 2014 09:38:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=ddmfAVPybDNktHmsMB4epOzHq5sbMon6aijGcnmnYNo=; b=a0MmeMol5ORbM8oy5Ykv8sIY5XIpc6G66cZfSQJIy82O+nHZPZM4C6rJGtQoHJh1za otFAviVNglptSqzYxuGT7SPNJMGCgkgcenyp/dCQIhNL0y7XnYt0BdRt/yJ56DnhjTmm Fis/RmIjeJCTU5rMZpZhJ1mpdp4tmB6MTOJy3qf62nRpNmjzMGZpjdfrKRk0I91uaGIe wwS8pBwHwlsKSBAhlVf1kTD5dBLZtHmOQ+dPnE1Mu+KFjh5C2zi20n2QqHkCFl/my9Bf KFEJ9GqQvfBESBwO4g6UqbEdNeiXcUDmdjwkNB4nxkHpOnplUZpKW1BuvQwLSKt+0ewx RhNg== MIME-Version: 1.0 X-Received: by 10.224.36.197 with SMTP id u5mr20378918qad.67.1389461932127; Sat, 11 Jan 2014 09:38:52 -0800 (PST) Received: by 10.140.34.17 with HTTP; Sat, 11 Jan 2014 09:38:52 -0800 (PST) In-Reply-To: <201401111606.s0BG69qP055469@freebsd-current.sentex.ca> References: <201401111606.s0BG69qP055469@freebsd-current.sentex.ca> Date: Sat, 11 Jan 2014 09:38:52 -0800 Message-ID: Subject: Re: [head tinderbox] failure on amd64/amd64 From: Neel Natu To: FreeBSD Tinderbox Content-Type: text/plain; charset=ISO-8859-1 Cc: amd64@freebsd.org, "current@freebsd.org" X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Jan 2014 17:38:54 -0000 Sorry, my bad. Fixed in r260550. best Neel On Sat, Jan 11, 2014 at 8:06 AM, FreeBSD Tinderbox wrote: > TB --- 2014-01-11 13:00:17 - tinderbox 2.20 running on freebsd-current.sentex.ca > TB --- 2014-01-11 13:00:17 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 > TB --- 2014-01-11 13:00:17 - starting HEAD tinderbox run for amd64/amd64 > TB --- 2014-01-11 13:00:17 - cleaning the object tree > TB --- 2014-01-11 13:00:17 - /usr/local/bin/svn stat /src > TB --- 2014-01-11 13:00:22 - At svn revision 260540 > TB --- 2014-01-11 13:00:23 - building world > TB --- 2014-01-11 13:00:23 - CROSS_BUILD_TESTING=YES > TB --- 2014-01-11 13:00:23 - MAKEOBJDIRPREFIX=/obj > TB --- 2014-01-11 13:00:23 - PATH=/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2014-01-11 13:00:23 - SRCCONF=/dev/null > TB --- 2014-01-11 13:00:23 - TARGET=amd64 > TB --- 2014-01-11 13:00:23 - TARGET_ARCH=amd64 > TB --- 2014-01-11 13:00:23 - TZ=UTC > TB --- 2014-01-11 13:00:23 - __MAKE_CONF=/dev/null > TB --- 2014-01-11 13:00:23 - cd /src > TB --- 2014-01-11 13:00:23 - /usr/bin/make -B buildworld >>>> Building an up-to-date make(1) >>>> World build started on Sat Jan 11 13:00:29 UTC 2014 >>>> Rebuilding the temporary build tree >>>> stage 1.1: legacy release compatibility shims >>>> stage 1.2: bootstrap tools >>>> stage 2.1: cleaning up the object tree >>>> stage 2.2: rebuilding the object tree >>>> stage 2.3: build tools >>>> stage 3: cross tools >>>> stage 4.1: building includes >>>> stage 4.2: building libraries >>>> stage 4.3: make dependencies >>>> stage 4.4: building everything > [...] > SET_VMCS_ENTRY_INTERRUPTION_INFO > /src/usr.sbin/bhyvectl/bhyvectl.c:382:2: note: 'SET_VMCS_ENTRY_INTERRUPTION_INFO' declared here > SET_VMCS_ENTRY_INTERRUPTION_INFO, > ^ > /src/usr.sbin/bhyvectl/bhyvectl.c:1466:8: error: use of undeclared identifier 'VMCS_EXIT_INTERRUPTION_ERROR' > VMCS_EXIT_INTERRUPTION_ERROR, &u64); > ^ > 2 errors generated. > *** Error code 1 > > Stop. > bmake[3]: stopped in /src/usr.sbin/bhyvectl > *** Error code 1 > > Stop. > bmake[2]: stopped in /src/usr.sbin > *** Error code 1 > > Stop. > bmake[1]: stopped in /src > *** Error code 1 > > Stop. > bmake: stopped in /src > *** Error code 1 > > Stop in /src. > TB --- 2014-01-11 16:06:09 - WARNING: /usr/bin/make returned exit code 1 > TB --- 2014-01-11 16:06:09 - ERROR: failed to build world > TB --- 2014-01-11 16:06:09 - 9129.05 user 1558.62 system 11151.55 real > > > http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-amd64-amd64.full > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"