From owner-freebsd-sparc64@FreeBSD.ORG Mon Jun 4 11:07:49 2012 Return-Path: Delivered-To: freebsd-sparc64@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 27218106564A for ; Mon, 4 Jun 2012 11:07:49 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 109BA8FC18 for ; Mon, 4 Jun 2012 11:07:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q54B7mgn017581 for ; Mon, 4 Jun 2012 11:07:48 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q54B7mXA017579 for freebsd-sparc64@FreeBSD.org; Mon, 4 Jun 2012 11:07:48 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 4 Jun 2012 11:07:48 GMT Message-Id: <201206041107.q54B7mXA017579@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-sparc64@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-sparc64@FreeBSD.org X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 11:07:49 -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 sparc/165025 sparc64 [PATCH] zfsboot support for sparc64 o sparc/164227 sparc64 [boot] Can't boot 9.0-RELEASE/sparc64 on Blade 1500 o sparc/164226 sparc64 [cd] Data corruption on 9.0-RELEASE when reading from o sparc/162513 sparc64 mpt(4), mptutil(8) reports variable, erroneous drive i o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller s sparc/139134 sparc64 kernel output corruption s sparc/107087 sparc64 [hang] system is hung during boot from CD o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o sparc/71729 sparc64 printf in kernel thread causes panic on SPARC 10 problems total. From owner-freebsd-sparc64@FreeBSD.ORG Mon Jun 4 20:50:13 2012 Return-Path: Delivered-To: freebsd-sparc64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E483F106566B for ; Mon, 4 Jun 2012 20:50:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CF7A58FC1B for ; Mon, 4 Jun 2012 20:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q54KoD6d043082 for ; Mon, 4 Jun 2012 20:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q54KoDKD043081; Mon, 4 Jun 2012 20:50:13 GMT (envelope-from gnats) Date: Mon, 4 Jun 2012 20:50:13 GMT Message-Id: <201206042050.q54KoDKD043081@freefall.freebsd.org> To: freebsd-sparc64@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: sparc64/165025: commit references a PR X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 20:50:14 -0000 The following reply was made to PR sparc64/165025; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: sparc64/165025: commit references a PR Date: Mon, 4 Jun 2012 20:45:54 +0000 (UTC) Author: marius Date: Mon Jun 4 20:45:33 2012 New Revision: 236579 URL: http://svn.freebsd.org/changeset/base/236579 Log: The workaround added in r151650 for handling firmwares that don't allow a single device to be opened multiple times concurrently unfortunately isn't sufficient with ZFS. This is due to the fact, that ZFS may open different partitions of a single device simultaneously. So the best we can do in this case is to cache the lastly used device path and close and open devices in ofwd_strategy() as needed. PR: 165025 Submitted by: Gavin Mu MFC after: 1 week Modified: head/sys/boot/ofw/libofw/ofw_disk.c Modified: head/sys/boot/ofw/libofw/ofw_disk.c ============================================================================== --- head/sys/boot/ofw/libofw/ofw_disk.c Mon Jun 4 20:36:11 2012 (r236578) +++ head/sys/boot/ofw/libofw/ofw_disk.c Mon Jun 4 20:45:33 2012 (r236579) @@ -31,7 +31,6 @@ __FBSDID("$FreeBSD$"); */ #include -#include #include @@ -43,8 +42,8 @@ __FBSDID("$FreeBSD$"); #include "libofw.h" static int ofwd_init(void); -static int ofwd_strategy(void *devdata, int flag, daddr_t dblk, - size_t size, char *buf, size_t *rsize); +static int ofwd_strategy(void *devdata, int flag, daddr_t dblk, + size_t size, char *buf, size_t *rsize); static int ofwd_open(struct open_file *f, ...); static int ofwd_close(struct open_file *f); static int ofwd_ioctl(struct open_file *f, u_long cmd, void *data); @@ -61,120 +60,109 @@ struct devsw ofwdisk = { ofwd_print }; -struct opened_dev { - ihandle_t handle; - u_int count; - SLIST_ENTRY(opened_dev) link; -}; - -SLIST_HEAD(, opened_dev) opened_devs = SLIST_HEAD_INITIALIZER(opened_devs); +/* + * We're not guaranteed to be able to open a device more than once and there + * is no OFW standard method to determine whether a device is already opened. + * Opening a device multiple times simultaneously happens to work with most + * OFW block device drivers but triggers a trap with at least the driver for + * the on-board controllers of Sun Fire V100 and Ultra 1. Upper layers and MI + * code expect to be able to open a device more than once however. Given that + * different partitions of the same device might be opened at the same time as + * done by ZFS, we can't generally just keep track of the opened devices and + * reuse the instance handle when asked to open an already opened device. So + * the best we can do is to cache the lastly used device path and close and + * open devices in ofwd_strategy() as needed. + */ +static struct ofw_devdesc *kdp; static int ofwd_init(void) { - return 0; + return (0); } static int -ofwd_strategy(void *devdata, int flag, daddr_t dblk, size_t size, char *buf, - size_t *rsize) +ofwd_strategy(void *devdata, int flag __unused, daddr_t dblk, size_t size, + char *buf, size_t *rsize) { struct ofw_devdesc *dp = (struct ofw_devdesc *)devdata; daddr_t pos; int n; + if (dp != kdp) { + if (kdp != NULL) { +#if !defined(__powerpc__) + OF_close(kdp->d_handle); +#endif + kdp = NULL; + } + if ((dp->d_handle = OF_open(dp->d_path)) == -1) + return (ENOENT); + kdp = dp; + } + pos = dblk * 512; do { if (OF_seek(dp->d_handle, pos) < 0) - return EIO; + return (EIO); n = OF_read(dp->d_handle, buf, size); if (n < 0 && n != -2) - return EIO; + return (EIO); } while (n == -2); *rsize = size; - return 0; + return (0); } static int ofwd_open(struct open_file *f, ...) { - char path[256]; struct ofw_devdesc *dp; - struct opened_dev *odp; va_list vl; va_start(vl, f); dp = va_arg(vl, struct ofw_devdesc *); va_end(vl); - /* - * We're not guaranteed to be able to open a device more than once - * simultaneously and there is no OFW standard method to determine - * whether a device is already opened. Opening a device more than - * once happens to work with most OFW block device drivers but - * triggers a trap with at least the driver for the on-board SCSI - * controller in Sun Ultra 1. Upper layers and MI code expect to - * be able to open a device more than once however. As a workaround - * keep track of the opened devices and reuse the instance handle - * when asked to open an already opened device. - */ - SLIST_FOREACH(odp, &opened_devs, link) { - if (OF_instance_to_path(odp->handle, path, sizeof(path)) == -1) - continue; - if (strcmp(path, dp->d_path) == 0) { - odp->count++; - dp->d_handle = odp->handle; - return 0; + + if (dp != kdp) { + if (kdp != NULL) { + OF_close(kdp->d_handle); + kdp = NULL; } + if ((dp->d_handle = OF_open(dp->d_path)) == -1) { + printf("%s: Could not open %s\n", __func__, + dp->d_path); + return (ENOENT); + } + kdp = dp; } - odp = malloc(sizeof(struct opened_dev)); - if (odp == NULL) { - printf("ofwd_open: malloc failed\n"); - return ENOMEM; - } - if ((odp->handle = OF_open(dp->d_path)) == -1) { - printf("ofwd_open: Could not open %s\n", dp->d_path); - free(odp); - return ENOENT; - } - odp->count = 1; - SLIST_INSERT_HEAD(&opened_devs, odp, link); - dp->d_handle = odp->handle; - return 0; + return (0); } static int ofwd_close(struct open_file *f) { struct ofw_devdesc *dev = f->f_devdata; - struct opened_dev *odp; - SLIST_FOREACH(odp, &opened_devs, link) { - if (odp->handle == dev->d_handle) { - odp->count--; - if (odp->count == 0) { - SLIST_REMOVE(&opened_devs, odp, opened_dev, - link); - #if !defined(__powerpc__) - OF_close(odp->handle); - #endif - free(odp); - } - break; - } + if (dev == kdp) { +#if !defined(__powerpc__) + OF_close(dev->d_handle); +#endif + kdp = NULL; } - return 0; + return (0); } static int -ofwd_ioctl(struct open_file *f, u_long cmd, void *data) +ofwd_ioctl(struct open_file *f __unused, u_long cmd __unused, + void *data __unused) { return (EINVAL); } static void -ofwd_print(int verbose) +ofwd_print(int verbose __unused) { } _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-sparc64@FreeBSD.ORG Tue Jun 5 01:32:48 2012 Return-Path: Delivered-To: sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 003A61065672; Tue, 5 Jun 2012 01:32:47 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id C423E8FC0C; Tue, 5 Jun 2012 01:32:47 +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 q551L4AD036397; Mon, 4 Jun 2012 21:21:04 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q551L4Ps036396; Tue, 5 Jun 2012 01:21:04 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 5 Jun 2012 01:21:04 GMT Message-Id: <201206050121.q551L4Ps036396@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 , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2012 01:32:48 -0000 TB --- 2012-06-05 00:19:04 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-06-05 00:19:04 - 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 --- 2012-06-05 00:19:04 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-06-05 00:19:04 - cleaning the object tree TB --- 2012-06-05 00:19:04 - cvsupping the source tree TB --- 2012-06-05 00:19:04 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2012-06-05 00:19:36 - building world TB --- 2012-06-05 00:19:36 - CROSS_BUILD_TESTING=YES TB --- 2012-06-05 00:19:36 - MAKEOBJDIRPREFIX=/obj TB --- 2012-06-05 00:19:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-06-05 00:19:36 - SRCCONF=/dev/null TB --- 2012-06-05 00:19:36 - TARGET=sparc64 TB --- 2012-06-05 00:19:36 - TARGET_ARCH=sparc64 TB --- 2012-06-05 00:19:36 - TZ=UTC TB --- 2012-06-05 00:19:36 - __MAKE_CONF=/dev/null TB --- 2012-06-05 00:19:36 - cd /src TB --- 2012-06-05 00:19:36 - /usr/bin/make -B buildworld >>> World build started on Tue Jun 5 00:19:37 UTC 2012 >>> 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 >>> World build completed on Tue Jun 5 01:19:26 UTC 2012 TB --- 2012-06-05 01:19:26 - generating LINT kernel config TB --- 2012-06-05 01:19:26 - cd /src/sys/sparc64/conf TB --- 2012-06-05 01:19:26 - /usr/bin/make -B LINT TB --- 2012-06-05 01:19:26 - cd /src/sys/sparc64/conf TB --- 2012-06-05 01:19:26 - /usr/sbin/config -m LINT TB --- 2012-06-05 01:19:26 - building LINT kernel TB --- 2012-06-05 01:19:26 - CROSS_BUILD_TESTING=YES TB --- 2012-06-05 01:19:26 - MAKEOBJDIRPREFIX=/obj TB --- 2012-06-05 01:19:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-06-05 01:19:26 - SRCCONF=/dev/null TB --- 2012-06-05 01:19:26 - TARGET=sparc64 TB --- 2012-06-05 01:19:26 - TARGET_ARCH=sparc64 TB --- 2012-06-05 01:19:26 - TZ=UTC TB --- 2012-06-05 01:19:26 - __MAKE_CONF=/dev/null TB --- 2012-06-05 01:19:26 - cd /src TB --- 2012-06-05 01:19:26 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Jun 5 01:19:26 UTC 2012 >>> 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 [...] ln -sf /obj/sparc64.sparc64/src/sys/LINT/opt_compat.h opt_compat.h ln -sf /obj/sparc64.sparc64/src/sys/LINT/opt_capsicum.h opt_capsicum.h rm -f .depend mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KERNEL_OPTION_HEADERS -I. -I@ -I@/contrib/altq -I/obj/sparc64.sparc64/src/sys/LINT -std=iso9899:1999 /src/sys/modules/filemon/../../dev/filemon/filemon.c In file included from /src/sys/modules/filemon/../../dev/filemon/filemon.c:114: /src/sys/modules/filemon/../../dev/filemon/filemon_wrapper.c:664:2: error: #error Machine type not supported /src/sys/modules/filemon/../../dev/filemon/filemon_wrapper.c:710:2: error: #error Machine type not supported mkdep: compile failed *** Error code 1 Stop in /src/sys/modules/filemon. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-06-05 01:21:04 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-06-05 01:21:04 - ERROR: failed to build LINT kernel TB --- 2012-06-05 01:21:04 - 3002.10 user 540.24 system 3719.37 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-sparc64@FreeBSD.ORG Tue Jun 5 10:19:42 2012 Return-Path: Delivered-To: sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFD9D1065670; Tue, 5 Jun 2012 10:19:41 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id B80E28FC1D; Tue, 5 Jun 2012 10:19:41 +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 q55AJe2l064204; Tue, 5 Jun 2012 06:19:40 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q55AJew8064203; Tue, 5 Jun 2012 10:19:40 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 5 Jun 2012 10:19:40 GMT Message-Id: <201206051019.q55AJew8064203@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 , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2012 10:19:42 -0000 TB --- 2012-06-05 09:16:45 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-06-05 09:16:45 - 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 --- 2012-06-05 09:16:45 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-06-05 09:16:45 - cleaning the object tree TB --- 2012-06-05 09:18:35 - cvsupping the source tree TB --- 2012-06-05 09:18:35 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2012-06-05 09:19:31 - building world TB --- 2012-06-05 09:19:31 - CROSS_BUILD_TESTING=YES TB --- 2012-06-05 09:19:31 - MAKEOBJDIRPREFIX=/obj TB --- 2012-06-05 09:19:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-06-05 09:19:31 - SRCCONF=/dev/null TB --- 2012-06-05 09:19:31 - TARGET=sparc64 TB --- 2012-06-05 09:19:31 - TARGET_ARCH=sparc64 TB --- 2012-06-05 09:19:31 - TZ=UTC TB --- 2012-06-05 09:19:31 - __MAKE_CONF=/dev/null TB --- 2012-06-05 09:19:31 - cd /src TB --- 2012-06-05 09:19:31 - /usr/bin/make -B buildworld >>> World build started on Tue Jun 5 09:19:32 UTC 2012 >>> 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 >>> World build completed on Tue Jun 5 10:18:04 UTC 2012 TB --- 2012-06-05 10:18:04 - generating LINT kernel config TB --- 2012-06-05 10:18:04 - cd /src/sys/sparc64/conf TB --- 2012-06-05 10:18:04 - /usr/bin/make -B LINT TB --- 2012-06-05 10:18:04 - cd /src/sys/sparc64/conf TB --- 2012-06-05 10:18:04 - /usr/sbin/config -m LINT TB --- 2012-06-05 10:18:04 - building LINT kernel TB --- 2012-06-05 10:18:04 - CROSS_BUILD_TESTING=YES TB --- 2012-06-05 10:18:04 - MAKEOBJDIRPREFIX=/obj TB --- 2012-06-05 10:18:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-06-05 10:18:04 - SRCCONF=/dev/null TB --- 2012-06-05 10:18:04 - TARGET=sparc64 TB --- 2012-06-05 10:18:04 - TARGET_ARCH=sparc64 TB --- 2012-06-05 10:18:04 - TZ=UTC TB --- 2012-06-05 10:18:04 - __MAKE_CONF=/dev/null TB --- 2012-06-05 10:18:04 - cd /src TB --- 2012-06-05 10:18:04 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Jun 5 10:18:05 UTC 2012 >>> 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 [...] ln -sf /obj/sparc64.sparc64/src/sys/LINT/opt_compat.h opt_compat.h ln -sf /obj/sparc64.sparc64/src/sys/LINT/opt_capsicum.h opt_capsicum.h rm -f .depend mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KERNEL_OPTION_HEADERS -I. -I@ -I@/contrib/altq -I/obj/sparc64.sparc64/src/sys/LINT -std=iso9899:1999 /src/sys/modules/filemon/../../dev/filemon/filemon.c In file included from /src/sys/modules/filemon/../../dev/filemon/filemon.c:114: /src/sys/modules/filemon/../../dev/filemon/filemon_wrapper.c:664:2: error: #error Machine type not supported /src/sys/modules/filemon/../../dev/filemon/filemon_wrapper.c:710:2: error: #error Machine type not supported mkdep: compile failed *** Error code 1 Stop in /src/sys/modules/filemon. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-06-05 10:19:40 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-06-05 10:19:40 - ERROR: failed to build LINT kernel TB --- 2012-06-05 10:19:40 - 2986.82 user 522.80 system 3774.77 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-sparc64@FreeBSD.ORG Tue Jun 5 19:16:41 2012 Return-Path: Delivered-To: sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE1071065686; Tue, 5 Jun 2012 19:16:41 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 71D8A8FC0A; Tue, 5 Jun 2012 19:16:41 +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 q55JGVmY041991; Tue, 5 Jun 2012 15:16:31 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q55JGVgA041986; Tue, 5 Jun 2012 19:16:31 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 5 Jun 2012 19:16:31 GMT Message-Id: <201206051916.q55JGVgA041986@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 , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2012 19:16:41 -0000 TB --- 2012-06-05 18:14:30 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-06-05 18:14:30 - 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 --- 2012-06-05 18:14:30 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-06-05 18:14:30 - cleaning the object tree TB --- 2012-06-05 18:15:43 - cvsupping the source tree TB --- 2012-06-05 18:15:43 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2012-06-05 18:16:20 - building world TB --- 2012-06-05 18:16:20 - CROSS_BUILD_TESTING=YES TB --- 2012-06-05 18:16:20 - MAKEOBJDIRPREFIX=/obj TB --- 2012-06-05 18:16:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-06-05 18:16:20 - SRCCONF=/dev/null TB --- 2012-06-05 18:16:20 - TARGET=sparc64 TB --- 2012-06-05 18:16:20 - TARGET_ARCH=sparc64 TB --- 2012-06-05 18:16:20 - TZ=UTC TB --- 2012-06-05 18:16:20 - __MAKE_CONF=/dev/null TB --- 2012-06-05 18:16:20 - cd /src TB --- 2012-06-05 18:16:20 - /usr/bin/make -B buildworld >>> World build started on Tue Jun 5 18:16:21 UTC 2012 >>> 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 >>> World build completed on Tue Jun 5 19:14:56 UTC 2012 TB --- 2012-06-05 19:14:56 - generating LINT kernel config TB --- 2012-06-05 19:14:56 - cd /src/sys/sparc64/conf TB --- 2012-06-05 19:14:56 - /usr/bin/make -B LINT TB --- 2012-06-05 19:14:56 - cd /src/sys/sparc64/conf TB --- 2012-06-05 19:14:56 - /usr/sbin/config -m LINT TB --- 2012-06-05 19:14:56 - building LINT kernel TB --- 2012-06-05 19:14:56 - CROSS_BUILD_TESTING=YES TB --- 2012-06-05 19:14:56 - MAKEOBJDIRPREFIX=/obj TB --- 2012-06-05 19:14:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-06-05 19:14:56 - SRCCONF=/dev/null TB --- 2012-06-05 19:14:56 - TARGET=sparc64 TB --- 2012-06-05 19:14:56 - TARGET_ARCH=sparc64 TB --- 2012-06-05 19:14:56 - TZ=UTC TB --- 2012-06-05 19:14:56 - __MAKE_CONF=/dev/null TB --- 2012-06-05 19:14:56 - cd /src TB --- 2012-06-05 19:14:56 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Jun 5 19:14:56 UTC 2012 >>> 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 [...] ln -sf /obj/sparc64.sparc64/src/sys/LINT/opt_compat.h opt_compat.h ln -sf /obj/sparc64.sparc64/src/sys/LINT/opt_capsicum.h opt_capsicum.h rm -f .depend mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KERNEL_OPTION_HEADERS -I. -I@ -I@/contrib/altq -I/obj/sparc64.sparc64/src/sys/LINT -std=iso9899:1999 /src/sys/modules/filemon/../../dev/filemon/filemon.c In file included from /src/sys/modules/filemon/../../dev/filemon/filemon.c:114: /src/sys/modules/filemon/../../dev/filemon/filemon_wrapper.c:664:2: error: #error Machine type not supported /src/sys/modules/filemon/../../dev/filemon/filemon_wrapper.c:710:2: error: #error Machine type not supported mkdep: compile failed *** Error code 1 Stop in /src/sys/modules/filemon. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-06-05 19:16:31 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-06-05 19:16:31 - ERROR: failed to build LINT kernel TB --- 2012-06-05 19:16:31 - 2983.86 user 528.06 system 3720.91 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-sparc64@FreeBSD.ORG Wed Jun 6 01:44:41 2012 Return-Path: Delivered-To: sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F4521065670; Wed, 6 Jun 2012 01:44:41 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id B99CC8FC14; Wed, 6 Jun 2012 01:44:40 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q561iemi020093; Wed, 6 Jun 2012 01:44:40 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q561ievd020092; Wed, 6 Jun 2012 01:44:40 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 6 Jun 2012 01:44:40 GMT Message-Id: <201206060144.q561ievd020092@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [releng_8 tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2012 01:44:41 -0000 TB --- 2012-06-06 00:51:08 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-06-06 00:51:08 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-06-06 00:51:08 - starting RELENG_8 tinderbox run for sparc64/sparc64 TB --- 2012-06-06 00:51:08 - cleaning the object tree TB --- 2012-06-06 00:51:08 - cvsupping the source tree TB --- 2012-06-06 00:51:08 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8/sparc64/sparc64/supfile TB --- 2012-06-06 00:51:19 - building world TB --- 2012-06-06 00:51:19 - CROSS_BUILD_TESTING=YES TB --- 2012-06-06 00:51:19 - MAKEOBJDIRPREFIX=/obj TB --- 2012-06-06 00:51:19 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-06-06 00:51:19 - SRCCONF=/dev/null TB --- 2012-06-06 00:51:19 - TARGET=sparc64 TB --- 2012-06-06 00:51:19 - TARGET_ARCH=sparc64 TB --- 2012-06-06 00:51:19 - TZ=UTC TB --- 2012-06-06 00:51:19 - __MAKE_CONF=/dev/null TB --- 2012-06-06 00:51:19 - cd /src TB --- 2012-06-06 00:51:19 - /usr/bin/make -B buildworld >>> World build started on Wed Jun 6 00:51:19 UTC 2012 >>> 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 >>> World build completed on Wed Jun 6 01:31:24 UTC 2012 TB --- 2012-06-06 01:31:24 - generating LINT kernel config TB --- 2012-06-06 01:31:24 - cd /src/sys/sparc64/conf TB --- 2012-06-06 01:31:24 - /usr/bin/make -B LINT TB --- 2012-06-06 01:31:24 - cd /src/sys/sparc64/conf TB --- 2012-06-06 01:31:24 - /usr/sbin/config -m LINT TB --- 2012-06-06 01:31:24 - building LINT kernel TB --- 2012-06-06 01:31:24 - CROSS_BUILD_TESTING=YES TB --- 2012-06-06 01:31:24 - MAKEOBJDIRPREFIX=/obj TB --- 2012-06-06 01:31:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-06-06 01:31:24 - SRCCONF=/dev/null TB --- 2012-06-06 01:31:24 - TARGET=sparc64 TB --- 2012-06-06 01:31:24 - TARGET_ARCH=sparc64 TB --- 2012-06-06 01:31:24 - TZ=UTC TB --- 2012-06-06 01:31:24 - __MAKE_CONF=/dev/null TB --- 2012-06-06 01:31:24 - cd /src TB --- 2012-06-06 01:31:24 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Jun 6 01:31:24 UTC 2012 >>> 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 [...] awk -f /src/sys/conf/kmod_syms.awk if_rum.kld export_syms | xargs -J% objcopy % if_rum.kld ld -Bshareable -d -warn-common -o if_rum.ko if_rum.kld objcopy --strip-debug if_rum.ko ===> usb/run (all) cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -include /obj/sparc64/src/sys/LINT/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -I/obj/sparc64/src/sys/LINT -mcmodel=medany -msoft-float -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 -c /src/sys/modules/usb/run/../../../dev/usb/wlan/if_run.c /src/sys/modules/usb/run/../../../dev/usb/wlan/if_run.c:77:1: error: "nitems" redefined In file included from /src/sys/modules/usb/run/../../../dev/usb/wlan/if_run.c:27: @/sys/param.h:274:1: error: this is the location of the previous definition *** Error code 1 Stop in /src/sys/modules/usb/run. *** Error code 1 Stop in /src/sys/modules/usb. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-06-06 01:44:40 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-06-06 01:44:40 - ERROR: failed to build LINT kernel TB --- 2012-06-06 01:44:40 - 2699.03 user 426.41 system 3212.26 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-sparc64-sparc64.full From owner-freebsd-sparc64@FreeBSD.ORG Wed Jun 6 06:48:46 2012 Return-Path: Delivered-To: sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2081B106564A; Wed, 6 Jun 2012 06:48:46 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id D411A8FC1E; Wed, 6 Jun 2012 06:48:45 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q566mj2g035720; Wed, 6 Jun 2012 06:48:45 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q566mjK2035719; Wed, 6 Jun 2012 06:48:45 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 6 Jun 2012 06:48:45 GMT Message-Id: <201206060648.q566mjK2035719@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [releng_8 tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2012 06:48:46 -0000 TB --- 2012-06-06 06:07:45 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-06-06 06:07:45 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-06-06 06:07:45 - starting RELENG_8 tinderbox run for sparc64/sparc64 TB --- 2012-06-06 06:07:45 - cleaning the object tree TB --- 2012-06-06 06:08:03 - cvsupping the source tree TB --- 2012-06-06 06:08:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8/sparc64/sparc64/supfile TB --- 2012-06-06 06:08:15 - building world TB --- 2012-06-06 06:08:15 - CROSS_BUILD_TESTING=YES TB --- 2012-06-06 06:08:15 - MAKEOBJDIRPREFIX=/obj TB --- 2012-06-06 06:08:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-06-06 06:08:15 - SRCCONF=/dev/null TB --- 2012-06-06 06:08:15 - TARGET=sparc64 TB --- 2012-06-06 06:08:15 - TARGET_ARCH=sparc64 TB --- 2012-06-06 06:08:15 - TZ=UTC TB --- 2012-06-06 06:08:15 - __MAKE_CONF=/dev/null TB --- 2012-06-06 06:08:15 - cd /src TB --- 2012-06-06 06:08:15 - /usr/bin/make -B buildworld >>> World build started on Wed Jun 6 06:08:15 UTC 2012 >>> 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 >>> World build completed on Wed Jun 6 06:47:21 UTC 2012 TB --- 2012-06-06 06:47:21 - generating LINT kernel config TB --- 2012-06-06 06:47:21 - cd /src/sys/sparc64/conf TB --- 2012-06-06 06:47:21 - /usr/bin/make -B LINT TB --- 2012-06-06 06:47:21 - cd /src/sys/sparc64/conf TB --- 2012-06-06 06:47:21 - /usr/sbin/config -m LINT TB --- 2012-06-06 06:47:21 - building LINT kernel TB --- 2012-06-06 06:47:21 - CROSS_BUILD_TESTING=YES TB --- 2012-06-06 06:47:21 - MAKEOBJDIRPREFIX=/obj TB --- 2012-06-06 06:47:21 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-06-06 06:47:21 - SRCCONF=/dev/null TB --- 2012-06-06 06:47:21 - TARGET=sparc64 TB --- 2012-06-06 06:47:21 - TARGET_ARCH=sparc64 TB --- 2012-06-06 06:47:21 - TZ=UTC TB --- 2012-06-06 06:47:21 - __MAKE_CONF=/dev/null TB --- 2012-06-06 06:47:21 - cd /src TB --- 2012-06-06 06:47:21 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Jun 6 06:47:21 UTC 2012 >>> 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 [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/cam/cam_queue.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/cam/cam_sim.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/cam/cam_xpt.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/cam/ata/ata_all.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/cam/ata/ata_xpt.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/cam/ata/ata_pmp.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/cam/scsi/scsi_xpt.c /src/sys/cam/scsi/scsi_xpt.c:511: error: 'CAM_QUIRK_NORPTLUNS' undeclared here (not in a function) *** Error code 1 Stop in /obj/sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-06-06 06:48:45 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-06-06 06:48:45 - ERROR: failed to build LINT kernel TB --- 2012-06-06 06:48:45 - 2033.03 user 369.68 system 2459.44 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-sparc64-sparc64.full From owner-freebsd-sparc64@FreeBSD.ORG Wed Jun 6 10:10:15 2012 Return-Path: Delivered-To: sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E989C106564A; Wed, 6 Jun 2012 10:10:14 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id B78C18FC14; Wed, 6 Jun 2012 10:10:14 +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 q56AADYl049651; Wed, 6 Jun 2012 06:10:13 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q56AAD2e049646; Wed, 6 Jun 2012 10:10:13 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 6 Jun 2012 10:10:13 GMT Message-Id: <201206061010.q56AAD2e049646@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 , , Precedence: bulk Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2012 10:10:15 -0000 TB --- 2012-06-06 08:56:07 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-06-06 08:56:07 - 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 --- 2012-06-06 08:56:07 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-06-06 08:56:07 - cleaning the object tree TB --- 2012-06-06 08:56:07 - cvsupping the source tree TB --- 2012-06-06 08:56:07 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/sparc64/sparc64/supfile TB --- 2012-06-06 08:57:14 - building world TB --- 2012-06-06 08:57:14 - CROSS_BUILD_TESTING=YES TB --- 2012-06-06 08:57:14 - MAKEOBJDIRPREFIX=/obj TB --- 2012-06-06 08:57:14 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-06-06 08:57:14 - SRCCONF=/dev/null TB --- 2012-06-06 08:57:14 - TARGET=sparc64 TB --- 2012-06-06 08:57:14 - TARGET_ARCH=sparc64 TB --- 2012-06-06 08:57:14 - TZ=UTC TB --- 2012-06-06 08:57:14 - __MAKE_CONF=/dev/null TB --- 2012-06-06 08:57:14 - cd /src TB --- 2012-06-06 08:57:14 - /usr/bin/make -B buildworld >>> World build started on Wed Jun 6 08:57:15 UTC 2012 >>> 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 >>> World build completed on Wed Jun 6 10:05:36 UTC 2012 TB --- 2012-06-06 10:05:36 - generating LINT kernel config TB --- 2012-06-06 10:05:36 - cd /src/sys/sparc64/conf TB --- 2012-06-06 10:05:36 - /usr/bin/make -B LINT TB --- 2012-06-06 10:05:36 - cd /src/sys/sparc64/conf TB --- 2012-06-06 10:05:36 - /usr/sbin/config -m LINT TB --- 2012-06-06 10:05:36 - building LINT kernel TB --- 2012-06-06 10:05:36 - CROSS_BUILD_TESTING=YES TB --- 2012-06-06 10:05:36 - MAKEOBJDIRPREFIX=/obj TB --- 2012-06-06 10:05:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-06-06 10:05:36 - SRCCONF=/dev/null TB --- 2012-06-06 10:05:36 - TARGET=sparc64 TB --- 2012-06-06 10:05:36 - TARGET_ARCH=sparc64 TB --- 2012-06-06 10:05:36 - TZ=UTC TB --- 2012-06-06 10:05:36 - __MAKE_CONF=/dev/null TB --- 2012-06-06 10:05:36 - cd /src TB --- 2012-06-06 10:05:36 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Jun 6 10:05:36 UTC 2012 >>> 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 [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/advansys/adwcam.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/advansys/adwlib.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/advansys/adwmcode.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -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 -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/ae/if_ae.c /src/sys/dev/ae/if_ae.c: In function 'ae_pm_init': /src/sys/dev/ae/if_ae.c:1384: error: 'dev' undeclared (first use in this function) /src/sys/dev/ae/if_ae.c:1384: error: (Each undeclared identifier is reported only once /src/sys/dev/ae/if_ae.c:1384: error: for each function it appears in.) *** Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-06-06 10:10:13 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-06-06 10:10:13 - ERROR: failed to build LINT kernel TB --- 2012-06-06 10:10:13 - 3139.89 user 578.95 system 4446.59 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-sparc64@FreeBSD.ORG Wed Jun 6 11:39:40 2012 Return-Path: Delivered-To: sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A432A106564A; Wed, 6 Jun 2012 11:39:40 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 644918FC25; Wed, 6 Jun 2012 11:39:40 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id q56BddG4092413; Wed, 6 Jun 2012 11:39:39 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id q56BddMs092409; Wed, 6 Jun 2012 11:39:39 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 6 Jun 2012 11:39:39 GMT Message-Id: <201206061139.q56BddMs092409@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [releng_8 tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2012 11:39:40 -0000 TB --- 2012-06-06 10:55:06 - tinderbox 2.9 running on freebsd-legacy2.sentex.ca TB --- 2012-06-06 10:55:06 - FreeBSD freebsd-legacy2.sentex.ca 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-06-06 10:55:06 - starting RELENG_8 tinderbox run for sparc64/sparc64 TB --- 2012-06-06 10:55:06 - cleaning the object tree TB --- 2012-06-06 10:55:34 - cvsupping the source tree TB --- 2012-06-06 10:55:34 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8/sparc64/sparc64/supfile TB --- 2012-06-06 10:55:54 - building world TB --- 2012-06-06 10:55:54 - CROSS_BUILD_TESTING=YES TB --- 2012-06-06 10:55:54 - MAKEOBJDIRPREFIX=/obj TB --- 2012-06-06 10:55:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-06-06 10:55:54 - SRCCONF=/dev/null TB --- 2012-06-06 10:55:54 - TARGET=sparc64 TB --- 2012-06-06 10:55:54 - TARGET_ARCH=sparc64 TB --- 2012-06-06 10:55:54 - TZ=UTC TB --- 2012-06-06 10:55:54 - __MAKE_CONF=/dev/null TB --- 2012-06-06 10:55:54 - cd /src TB --- 2012-06-06 10:55:54 - /usr/bin/make -B buildworld >>> World build started on Wed Jun 6 10:55:54 UTC 2012 >>> 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 >>> World build completed on Wed Jun 6 11:38:07 UTC 2012 TB --- 2012-06-06 11:38:07 - generating LINT kernel config TB --- 2012-06-06 11:38:07 - cd /src/sys/sparc64/conf TB --- 2012-06-06 11:38:07 - /usr/bin/make -B LINT TB --- 2012-06-06 11:38:07 - cd /src/sys/sparc64/conf TB --- 2012-06-06 11:38:07 - /usr/sbin/config -m LINT TB --- 2012-06-06 11:38:07 - building LINT kernel TB --- 2012-06-06 11:38:07 - CROSS_BUILD_TESTING=YES TB --- 2012-06-06 11:38:07 - MAKEOBJDIRPREFIX=/obj TB --- 2012-06-06 11:38:07 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-06-06 11:38:07 - SRCCONF=/dev/null TB --- 2012-06-06 11:38:07 - TARGET=sparc64 TB --- 2012-06-06 11:38:07 - TARGET_ARCH=sparc64 TB --- 2012-06-06 11:38:07 - TZ=UTC TB --- 2012-06-06 11:38:07 - __MAKE_CONF=/dev/null TB --- 2012-06-06 11:38:07 - cd /src TB --- 2012-06-06 11:38:07 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Jun 6 11:38:07 UTC 2012 >>> 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 [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/cam/cam_queue.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/cam/cam_sim.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/cam/cam_xpt.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/cam/ata/ata_all.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/cam/ata/ata_xpt.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/cam/ata/ata_pmp.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/cam/scsi/scsi_xpt.c /src/sys/cam/scsi/scsi_xpt.c:511: error: 'CAM_QUIRK_NORPTLUNS' undeclared here (not in a function) *** Error code 1 Stop in /obj/sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-06-06 11:39:39 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-06-06 11:39:39 - ERROR: failed to build LINT kernel TB --- 2012-06-06 11:39:39 - 2138.66 user 410.69 system 2673.68 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-sparc64-sparc64.full