From owner-freebsd-i386@FreeBSD.ORG Sun May 25 17:10:06 2008 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BB4F1065674 for ; Sun, 25 May 2008 17:10:06 +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 378BC8FC12 for ; Sun, 25 May 2008 17:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m4PHA11h053792 for ; Sun, 25 May 2008 17:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m4PHA1HZ053791; Sun, 25 May 2008 17:10:01 GMT (envelope-from gnats) Resent-Date: Sun, 25 May 2008 17:10:01 GMT Resent-Message-Id: <200805251710.m4PHA1HZ053791@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Martin Johnson Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64A5F1065672 for ; Sun, 25 May 2008 17:04:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 52BDF8FC21 for ; Sun, 25 May 2008 17:04:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.2/8.14.2) with ESMTP id m4PH3LOZ013337 for ; Sun, 25 May 2008 17:03:21 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.2/8.14.1/Submit) id m4PH3LIQ013336; Sun, 25 May 2008 17:03:21 GMT (envelope-from nobody) Message-Id: <200805251703.m4PH3LIQ013336@www.freebsd.org> Date: Sun, 25 May 2008 17:03:21 GMT From: Martin Johnson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: i386/123980: Patch to implement ATA UDMA speed limit (hw.ata.ata_dma_limit) X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2008 17:10:06 -0000 >Number: 123980 >Category: i386 >Synopsis: Patch to implement ATA UDMA speed limit (hw.ata.ata_dma_limit) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun May 25 17:10:00 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Martin Johnson >Release: 7.0-RELEASE-p1 >Organization: n/a >Environment: FreeBSD toybox.internal 7.0-RELEASE-p1 FreeBSD 7.0-RELEASE-p1 #1: Sun May 25 08:41:05 BST 2008 root@toybox.internal:/usr/obj/usr/src/sys/GENERIC i386 >Description: FreeBSD sometimes chooses an unsafe UDMA speed for IDE hard drives, despite best efforts made in the ATA driver code to prevent this. An example is the Soekris net5501 embedded computer, using a Travelstar E7K100 2.5" hard drive. FreeBSD 6.2-RELEASE chooses UDMA33 mode for this hardware - which works OK - but FreeBSD 7.0-RELEASE chooses UDMA100 mode, which is too fast and causes disk errors such as "ad0: WARNING - READ_DMA UDMA ICRC error (retrying request) LBA=3871". The attached patch allows the user to set a new sysctl, hw.ata.ata_dma_limit, in /boot/loader.conf. This acts as a speed limiter. For example on the Soekris net5501 platform, this hw.ata.ata_dma_limit="4" reduces the speed to UDMA66 mode, which works well, giving a small performance increase over UDMA33 mode without the errors caused by UDMA100 mode. >How-To-Repeat: Clean install (via PXEBOOT and NFS) of FreeBSD 7.0-RELEASE onto Soekris net5501 with E7K100 Travelstar hard drive. Errors will be reported after installation, particularly when disk activity is heavy. http://jdc.parodius.com/freebsd/pxeboot_serial_install.html gives some hints including a workaround for a showstopper regarding loading gzip'd mfsroot from pxeboot. >Fix: See attached patch. This only implements the change for IDE (PATA) drives, and it's possible that similar code might be sensible for SATA drives. Patch attached with submission follows: --- ata-all.c.orig 2008-05-25 17:37:53.000000000 +0100 +++ ata-all.c 2008-05-25 17:37:51.000000000 +0100 @@ -78,6 +78,7 @@ /* local vars */ static int ata_dma = 1; +static int ata_dma_limit = 6; static int atapi_dma = 1; /* sysctl vars */ @@ -85,6 +86,9 @@ TUNABLE_INT("hw.ata.ata_dma", &ata_dma); SYSCTL_INT(_hw_ata, OID_AUTO, ata_dma, CTLFLAG_RDTUN, &ata_dma, 0, "ATA disk DMA mode control"); +TUNABLE_INT("hw.ata.ata_dma_limit", &ata_dma_limit); +SYSCTL_INT(_hw_ata, OID_AUTO, ata_dma_limit, CTLFLAG_RDTUN, &ata_dma_limit, 0, + "ATA disk DMA mode limit"); TUNABLE_INT("hw.ata.atapi_dma", &atapi_dma); SYSCTL_INT(_hw_ata, OID_AUTO, atapi_dma, CTLFLAG_RDTUN, &atapi_dma, 0, "ATAPI device DMA mode control"); @@ -900,17 +904,17 @@ ata_umode(struct ata_params *ap) { if (ap->atavalid & ATA_FLAG_88) { - if (ap->udmamodes & 0x40) + if (ap->udmamodes & 0x40 && ata_dma_limit >= 6) return ATA_UDMA6; - if (ap->udmamodes & 0x20) + if (ap->udmamodes & 0x20 && ata_dma_limit >= 5) return ATA_UDMA5; - if (ap->udmamodes & 0x10) + if (ap->udmamodes & 0x10 && ata_dma_limit >= 4) return ATA_UDMA4; - if (ap->udmamodes & 0x08) + if (ap->udmamodes & 0x08 && ata_dma_limit >= 3) return ATA_UDMA3; - if (ap->udmamodes & 0x04) + if (ap->udmamodes & 0x04 && ata_dma_limit >= 2) return ATA_UDMA2; - if (ap->udmamodes & 0x02) + if (ap->udmamodes & 0x02 && ata_dma_limit >= 1) return ATA_UDMA1; if (ap->udmamodes & 0x01) return ATA_UDMA0; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Sun May 25 17:30:02 2008 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A4471065671 for ; Sun, 25 May 2008 17:30:02 +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 553A78FC20 for ; Sun, 25 May 2008 17:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m4PHU2H9056295 for ; Sun, 25 May 2008 17:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m4PHU2qV056292; Sun, 25 May 2008 17:30:02 GMT (envelope-from gnats) Resent-Date: Sun, 25 May 2008 17:30:02 GMT Resent-Message-Id: <200805251730.m4PHU2qV056292@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Martin Johnson Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEE811065682 for ; Sun, 25 May 2008 17:24:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id CC3268FC12 for ; Sun, 25 May 2008 17:24:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.2/8.14.2) with ESMTP id m4PHN5t4016219 for ; Sun, 25 May 2008 17:23:05 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.2/8.14.1/Submit) id m4PHN5q6016217; Sun, 25 May 2008 17:23:05 GMT (envelope-from nobody) Message-Id: <200805251723.m4PHN5q6016217@www.freebsd.org> Date: Sun, 25 May 2008 17:23:05 GMT From: Martin Johnson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: i386/123981: You can't usefully PXEBOOT the 7.0-RELEASE-i386-livefs.iso image X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2008 17:30:02 -0000 >Number: 123981 >Category: i386 >Synopsis: You can't usefully PXEBOOT the 7.0-RELEASE-i386-livefs.iso image >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun May 25 17:30:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Martin Johnson >Release: 7.0-RELEASE >Organization: n/a >Environment: 7.0-RELEASE-i386-livefs.iso >Description: You cannot usefully PXEBOOT the LiveFS CDROM image. This is a pity, because it would be useful as a rescue boot image for computers without CDROM drives. To be strictly accurate, you _can_ tweak the image to PXEBOOT so that the FreeBSD installer will run, by editing loader.conf and decompressing mfsroot.gz (see http://jdc.parodius.com/freebsd/pxeboot_serial_install.html ) but this does not get you very far. The problem is that when you choose the installer's menu option to launch the rescue shell, there is no option to access the rest of the ISO image files over NFS. It only works from CDROM, which you don't have if you're PXE booting over the network. >How-To-Repeat: Use any machine with PXEBOOT support, as per http://jdc.parodius.com/freebsd/pxeboot_serial_install.html . You will need a working FreeBSD machine to serve the image file from, with working DHCP, TFTP and NFS services. Once the FreeBSD installer is running, select the rescue shell. It won't be able to find the files it needs. >Fix: The FreeBSD installer already allows you to install FreeBSD by accessing the installation files over NFS. It should be possible to access the LiveFS CD files in the same way. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Sun May 25 17:41:14 2008 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C30EF1065676; Sun, 25 May 2008 17:41:14 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 898948FC24; Sun, 25 May 2008 17:41:14 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1c.sentex.ca [64.7.153.10]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4PHfBbl073591; Sun, 25 May 2008 13:41:11 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4PHfBQg039853; Sun, 25 May 2008 13:41:11 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 6556673039; Sun, 25 May 2008 13:41:11 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080525174111.6556673039@freebsd-current.sentex.ca> Date: Sun, 25 May 2008 13:41:11 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93/7040/Mon May 5 21:52:15 2008 clamav-milter version 0.93 on clamscanner3 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2008 17:41:15 -0000 TB --- 2008-05-25 16:13:32 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-05-25 16:13:32 - starting HEAD tinderbox run for i386/i386 TB --- 2008-05-25 16:13:32 - cleaning the object tree TB --- 2008-05-25 16:14:09 - cvsupping the source tree TB --- 2008-05-25 16:14:09 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/i386/i386/supfile TB --- 2008-05-25 16:14:17 - building world (CFLAGS=-O -pipe) TB --- 2008-05-25 16:14:17 - cd /src TB --- 2008-05-25 16:14:17 - /usr/bin/make -B buildworld >>> World build started on Sun May 25 16:14:19 UTC 2008 >>> 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 Sun May 25 17:21:13 UTC 2008 TB --- 2008-05-25 17:21:13 - generating LINT kernel config TB --- 2008-05-25 17:21:13 - cd /src/sys/i386/conf TB --- 2008-05-25 17:21:13 - /usr/bin/make -B LINT TB --- 2008-05-25 17:21:13 - building LINT kernel (COPTFLAGS=) TB --- 2008-05-25 17:21:13 - cd /src TB --- 2008-05-25 17:21:13 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sun May 25 17:21:14 UTC 2008 >>> 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 -O -pipe -DFREEBSD_NAMECACHE -Werror -D_KERNEL -DKLD_MODULE -std=c99 -nostdinc -I/src/sys/modules/zfs/../../cddl/compat/opensolaris -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/zmod -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common -I/src/sys/modules/zfs/../.. -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common -I/src/sys/modules/zfs/../../../include -DHAVE_KERNEL_OPTION_HEADERS -include /obj/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 -I/obj/src/sys/LINT -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wno-unknown-pragmas -Wno-missing-prototypes -Wno-undef -Wno-strict-prototypes -Wno-cast-qual -Wno-parentheses -Wno-redundant-decls -Wno-missing-braces -Wno-uninitialized -Wno-unused -Wno-inline -Wno-switch -Wno-pointer-arith -c /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_acl.c cc -O -pipe -DFREEBSD_NAMECACHE -Werror -D_KERNEL -DKLD_MODULE -std=c99 -nostdinc -I/src/sys/modules/zfs/../../cddl/compat/opensolaris -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/zmod -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common -I/src/sys/modules/zfs/../.. -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common -I/src/sys/modules/zfs/../../../include -DHAVE_KERNEL_OPTION_HEADERS -include /obj/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 -I/obj/src/sys/LINT -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wno-unknown-pragmas -Wno-missing-prototypes -Wno-undef -Wno-strict-prototypes -Wno-cast-qual -Wno-parentheses -Wno-redundant-decls -Wno-missing-braces -Wno-uninitialized -Wno-unused -Wno-inline -Wno-switch -Wno-pointer-arith -c /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c cc -O -pipe -DFREEBSD_NAMECACHE -Werror -D_KERNEL -DKLD_MODULE -std=c99 -nostdinc -I/src/sys/modules/zfs/../../cddl/compat/opensolaris -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/zmod -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common -I/src/sys/modules/zfs/../.. -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common -I/src/sys/modules/zfs/../../../include -DHAVE_KERNEL_OPTION_HEADERS -include /obj/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 -I/obj/src/sys/LINT -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wno-unknown-pragmas -Wno-missing-prototypes -Wno-undef -Wno-strict-prototypes -Wno-cast-qual -Wno-parentheses -Wno-redundant-decls -Wno-missing-braces -Wno-uninitialized -Wno-unused -Wno-inline -Wno-switch -Wno-pointer-arith -c /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c cc -O -pipe -DFREEBSD_NAMECACHE -Werror -D_KERNEL -DKLD_MODULE -std=c99 -nostdinc -I/src/sys/modules/zfs/../../cddl/compat/opensolaris -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/zmod -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common -I/src/sys/modules/zfs/../.. -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common -I/src/sys/modules/zfs/../../../include -DHAVE_KERNEL_OPTION_HEADERS -include /obj/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 -I/obj/src/sys/LINT -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wno-unknown-pragmas -Wno-missing-prototypes -Wno-undef -Wno-strict-prototypes -Wno-cast-qual -Wno-parentheses -Wno-redundant-decls -Wno-missing-braces -Wno-uninitialized -Wno-unused -Wno-inline -Wno-switch -Wno-pointer-arith -c /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c cc1: warnings being treated as errors /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c: In function 'zfs_ioc_recvbackup': /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c:1482: warning: implicit declaration of function 'refcount_release' /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c:1482: warning: nested extern declaration of 'refcount_release' *** Error code 1 Stop in /src/sys/modules/zfs. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-05-25 17:41:11 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-05-25 17:41:11 - ERROR: failed to build lint kernel TB --- 2008-05-25 17:41:11 - tinderbox aborted TB --- 3960.73 user 460.33 system 5258.34 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Sun May 25 17:45:39 2008 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE9AB10656B0; Sun, 25 May 2008 17:45:38 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EB1AC8FC4B; Sun, 25 May 2008 17:45:37 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from freefall.freebsd.org (brd@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m4PHjb2Q058515; Sun, 25 May 2008 17:45:37 GMT (envelope-from brd@freefall.freebsd.org) Received: (from brd@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m4PHjb4k058511; Sun, 25 May 2008 17:45:37 GMT (envelope-from brd) Date: Sun, 25 May 2008 17:45:37 GMT Message-Id: <200805251745.m4PHjb4k058511@freefall.freebsd.org> To: brd@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org From: brd@FreeBSD.org Cc: Subject: Re: kern/123980: [patch] Implement ATA UDMA speed limit (hw.ata.ata_dma_limit) X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2008 17:45:45 -0000 Old Synopsis: Patch to implement ATA UDMA speed limit (hw.ata.ata_dma_limit) New Synopsis: [patch] Implement ATA UDMA speed limit (hw.ata.ata_dma_limit) Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: brd Responsible-Changed-When: Sun May 25 17:41:09 UTC 2008 Responsible-Changed-Why: Fix category and Synopsis to note that it includes a patch. http://www.freebsd.org/cgi/query-pr.cgi?pr=123980 From owner-freebsd-i386@FreeBSD.ORG Sun May 25 18:45:53 2008 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 825D5106564A; Sun, 25 May 2008 18:45:53 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 47FEB8FC0A; Sun, 25 May 2008 18:45:53 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4PIjorJ077940; Sun, 25 May 2008 14:45:50 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.2/8.14.2) with ESMTP id m4PIjoQ6084787; Sun, 25 May 2008 14:45:50 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 301DF73039; Sun, 25 May 2008 14:45:50 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080525184550.301DF73039@freebsd-current.sentex.ca> Date: Sun, 25 May 2008 14:45:50 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93/7040/Mon May 5 21:52:15 2008 clamav-milter version 0.93 on clamscanner3 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2008 18:45:53 -0000 TB --- 2008-05-25 17:21:31 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-05-25 17:21:31 - starting HEAD tinderbox run for i386/pc98 TB --- 2008-05-25 17:21:31 - cleaning the object tree TB --- 2008-05-25 17:22:07 - cvsupping the source tree TB --- 2008-05-25 17:22:07 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/i386/pc98/supfile TB --- 2008-05-25 17:22:13 - building world (CFLAGS=-O -pipe) TB --- 2008-05-25 17:22:13 - cd /src TB --- 2008-05-25 17:22:13 - /usr/bin/make -B buildworld >>> World build started on Sun May 25 17:22:15 UTC 2008 >>> 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 Sun May 25 18:28:19 UTC 2008 TB --- 2008-05-25 18:28:19 - generating LINT kernel config TB --- 2008-05-25 18:28:19 - cd /src/sys/pc98/conf TB --- 2008-05-25 18:28:19 - /usr/bin/make -B LINT TB --- 2008-05-25 18:28:19 - building LINT kernel (COPTFLAGS=) TB --- 2008-05-25 18:28:19 - cd /src TB --- 2008-05-25 18:28:19 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sun May 25 18:28:19 UTC 2008 >>> 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 -O -pipe -DFREEBSD_NAMECACHE -DPC98 -Werror -D_KERNEL -DKLD_MODULE -std=c99 -nostdinc -I/src/sys/modules/zfs/../../cddl/compat/opensolaris -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/zmod -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common -I/src/sys/modules/zfs/../.. -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common -I/src/sys/modules/zfs/../../../include -DHAVE_KERNEL_OPTION_HEADERS -include /obj/pc98/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 -I/obj/pc98/src/sys/LINT -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winl ine -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wno-unknown-pragmas -Wno-missing-prototypes -Wno-undef -Wno-strict-prototypes -Wno-cast-qual -Wno-parentheses -Wno-redundant-decls -Wno-missing-braces -Wno-uninitialized -Wno-unused -Wno-inline -Wno-switch -Wno-pointer-arith -c /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_acl.c cc -O -pipe -DFREEBSD_NAMECACHE -DPC98 -Werror -D_KERNEL -DKLD_MODULE -std=c99 -nostdinc -I/src/sys/modules/zfs/../../cddl/compat/opensolaris -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/zmod -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common -I/src/sys/modules/zfs/../.. -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common -I/src/sys/modules/zfs/../../../include -DHAVE_KERNEL_OPTION_HEADERS -include /obj/pc98/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 -I/obj/pc98/src/sys/LINT -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winl ine -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wno-unknown-pragmas -Wno-missing-prototypes -Wno-undef -Wno-strict-prototypes -Wno-cast-qual -Wno-parentheses -Wno-redundant-decls -Wno-missing-braces -Wno-uninitialized -Wno-unused -Wno-inline -Wno-switch -Wno-pointer-arith -c /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c cc -O -pipe -DFREEBSD_NAMECACHE -DPC98 -Werror -D_KERNEL -DKLD_MODULE -std=c99 -nostdinc -I/src/sys/modules/zfs/../../cddl/compat/opensolaris -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/zmod -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common -I/src/sys/modules/zfs/../.. -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common -I/src/sys/modules/zfs/../../../include -DHAVE_KERNEL_OPTION_HEADERS -include /obj/pc98/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 -I/obj/pc98/src/sys/LINT -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winl ine -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wno-unknown-pragmas -Wno-missing-prototypes -Wno-undef -Wno-strict-prototypes -Wno-cast-qual -Wno-parentheses -Wno-redundant-decls -Wno-missing-braces -Wno-uninitialized -Wno-unused -Wno-inline -Wno-switch -Wno-pointer-arith -c /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c cc -O -pipe -DFREEBSD_NAMECACHE -DPC98 -Werror -D_KERNEL -DKLD_MODULE -std=c99 -nostdinc -I/src/sys/modules/zfs/../../cddl/compat/opensolaris -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/zmod -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common -I/src/sys/modules/zfs/../.. -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common -I/src/sys/modules/zfs/../../../include -DHAVE_KERNEL_OPTION_HEADERS -include /obj/pc98/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 -I/obj/pc98/src/sys/LINT -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winl ine -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wno-unknown-pragmas -Wno-missing-prototypes -Wno-undef -Wno-strict-prototypes -Wno-cast-qual -Wno-parentheses -Wno-redundant-decls -Wno-missing-braces -Wno-uninitialized -Wno-unused -Wno-inline -Wno-switch -Wno-pointer-arith -c /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c cc1: warnings being treated as errors /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c: In function 'zfs_ioc_recvbackup': /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c:1482: warning: implicit declaration of function 'refcount_release' /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c:1482: warning: nested extern declaration of 'refcount_release' *** Error code 1 Stop in /src/sys/modules/zfs. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/pc98/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-05-25 18:45:49 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-05-25 18:45:49 - ERROR: failed to build lint kernel TB --- 2008-05-25 18:45:49 - tinderbox aborted TB --- 3806.79 user 458.27 system 5058.15 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Sun May 25 19:30:04 2008 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69E961065670 for ; Sun, 25 May 2008 19:30:04 +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 39E3D8FC24 for ; Sun, 25 May 2008 19:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m4PJU3d9065280 for ; Sun, 25 May 2008 19:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m4PJU3dB065275; Sun, 25 May 2008 19:30:03 GMT (envelope-from gnats) Date: Sun, 25 May 2008 19:30:03 GMT Message-Id: <200805251930.m4PJU3dB065275@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Rene Maroufi Cc: Subject: Re: i386/123462: clock is too fast X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Rene Maroufi List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2008 19:30:04 -0000 The following reply was made to PR i386/123462; it has been noted by GNATS. From: Rene Maroufi To: Alexander Cc: bug-followup@freebsd.org Subject: Re: i386/123462: clock is too fast Date: Sun, 25 May 2008 21:28:33 +0200 On Sat, May 24, 2008 at 07:34:10PM +0200, Alexander wrote: > Have you ever deleted the drift file between those tests? No, but I fix the problem in another way. It's old Hardware, I donate it to a school. I waste to much time for this problem. Sorry for not debugging anymore. Regards René -- René Maroufi info@maroufi.net From owner-freebsd-i386@FreeBSD.ORG Sun May 25 23:40:02 2008 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F1391065675 for ; Sun, 25 May 2008 23:40:02 +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 D4C2A8FC16 for ; Sun, 25 May 2008 23:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m4PNe1ir085334 for ; Sun, 25 May 2008 23:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m4PNe1nA085333; Sun, 25 May 2008 23:40:01 GMT (envelope-from gnats) Resent-Date: Sun, 25 May 2008 23:40:01 GMT Resent-Message-Id: <200805252340.m4PNe1nA085333@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ben Morris Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B57461065679 for ; Sun, 25 May 2008 23:30:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 985268FC18 for ; Sun, 25 May 2008 23:30:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.2/8.14.2) with ESMTP id m4PNT3CY077086 for ; Sun, 25 May 2008 23:29:03 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.2/8.14.1/Submit) id m4PNT3Do077085; Sun, 25 May 2008 23:29:03 GMT (envelope-from nobody) Message-Id: <200805252329.m4PNT3Do077085@www.freebsd.org> Date: Sun, 25 May 2008 23:29:03 GMT From: Ben Morris To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: i386/123990: BTX halted on Thinkpad x60s X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2008 23:40:02 -0000 >Number: 123990 >Category: i386 >Synopsis: BTX halted on Thinkpad x60s >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun May 25 23:40:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Ben Morris >Release: 7.0, 6.2, 6.1 >Organization: Wordmatter Limited >Environment: Lenovo/IBM Thinkpad x60s >Description: BTX halts and dumps registers on this laptop, so install from the release boot ISO is not possible. I have looping symptons as defect 115854. Cf also all the other defects found from a "BTX halted " search. Versions of this problem seem to go back to at least 4.x releases. So far as I can see they have not been resolved (possibly not even investigated?). I have tried fiddling with the BIOS setup but nothing has worked yet. >How-To-Repeat: Reproduced trying to boot from USB CDROM with 7.0 ISO boot CD. The boot CD is fine, Compaq NC4000 has no problems booting from it. Same defect with 6.1 and 6.2 floppy boot disks. These disks are fine too, I've been using them for years (!) on other machines, and verified they are okay on the Compaq NC4000. I've tried USB floppy (for 6.1 and 6.2, I've used these floppies from a USB FDD with no problems on multiple other machines including IBM laptops, just tested again and they are fine), and USB CD from the "boot only" ISO image, works fine on XXX. The laptop is fine, the external drives are fine. E.g. I've just booted an old MS-DOS 6.20 from floppy, have been running the installed Win XP fine from hard drive. The images are fine, checked on other laptops. Trawling the forums I see BTX halted problems going back to 4.x and wonder have they ever been resolved? >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Mon May 26 00:05:24 2008 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00DEE106564A; Mon, 26 May 2008 00:05:24 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id B29098FC0A; Mon, 26 May 2008 00:05:23 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4Q05L3k097763; Sun, 25 May 2008 20:05:21 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.2/8.14.2) with ESMTP id m4Q05L2V055092; Sun, 25 May 2008 20:05:21 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 1DF3373039; Sun, 25 May 2008 20:05:21 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080526000521.1DF3373039@freebsd-current.sentex.ca> Date: Sun, 25 May 2008 20:05:21 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93/7040/Mon May 5 21:52:15 2008 clamav-milter version 0.93 on clamscanner2 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2008 00:05:24 -0000 TB --- 2008-05-25 22:38:23 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-05-25 22:38:23 - starting HEAD tinderbox run for i386/i386 TB --- 2008-05-25 22:38:23 - cleaning the object tree TB --- 2008-05-25 22:38:50 - cvsupping the source tree TB --- 2008-05-25 22:38:50 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/i386/i386/supfile TB --- 2008-05-25 22:38:56 - building world (CFLAGS=-O -pipe) TB --- 2008-05-25 22:38:56 - cd /src TB --- 2008-05-25 22:38:56 - /usr/bin/make -B buildworld >>> World build started on Sun May 25 22:38:58 UTC 2008 >>> 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 Sun May 25 23:45:26 UTC 2008 TB --- 2008-05-25 23:45:26 - generating LINT kernel config TB --- 2008-05-25 23:45:26 - cd /src/sys/i386/conf TB --- 2008-05-25 23:45:26 - /usr/bin/make -B LINT TB --- 2008-05-25 23:45:26 - building LINT kernel (COPTFLAGS=) TB --- 2008-05-25 23:45:26 - cd /src TB --- 2008-05-25 23:45:26 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sun May 25 23:45:26 UTC 2008 >>> 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 -O -pipe -DFREEBSD_NAMECACHE -Werror -D_KERNEL -DKLD_MODULE -std=c99 -nostdinc -I/src/sys/modules/zfs/../../cddl/compat/opensolaris -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/zmod -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common -I/src/sys/modules/zfs/../.. -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common -I/src/sys/modules/zfs/../../../include -DHAVE_KERNEL_OPTION_HEADERS -include /obj/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 -I/obj/src/sys/LINT -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wno-unknown-pragmas -Wno-missing-prototypes -Wno-undef -Wno-strict-prototypes -Wno-cast-qual -Wno-parentheses -Wno-redundant-decls -Wno-missing-braces -Wno-uninitialized -Wno-unused -Wno-inline -Wno-switch -Wno-pointer-arith -c /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_acl.c cc -O -pipe -DFREEBSD_NAMECACHE -Werror -D_KERNEL -DKLD_MODULE -std=c99 -nostdinc -I/src/sys/modules/zfs/../../cddl/compat/opensolaris -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/zmod -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common -I/src/sys/modules/zfs/../.. -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common -I/src/sys/modules/zfs/../../../include -DHAVE_KERNEL_OPTION_HEADERS -include /obj/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 -I/obj/src/sys/LINT -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wno-unknown-pragmas -Wno-missing-prototypes -Wno-undef -Wno-strict-prototypes -Wno-cast-qual -Wno-parentheses -Wno-redundant-decls -Wno-missing-braces -Wno-uninitialized -Wno-unused -Wno-inline -Wno-switch -Wno-pointer-arith -c /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c cc -O -pipe -DFREEBSD_NAMECACHE -Werror -D_KERNEL -DKLD_MODULE -std=c99 -nostdinc -I/src/sys/modules/zfs/../../cddl/compat/opensolaris -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/zmod -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common -I/src/sys/modules/zfs/../.. -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common -I/src/sys/modules/zfs/../../../include -DHAVE_KERNEL_OPTION_HEADERS -include /obj/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 -I/obj/src/sys/LINT -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wno-unknown-pragmas -Wno-missing-prototypes -Wno-undef -Wno-strict-prototypes -Wno-cast-qual -Wno-parentheses -Wno-redundant-decls -Wno-missing-braces -Wno-uninitialized -Wno-unused -Wno-inline -Wno-switch -Wno-pointer-arith -c /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c cc -O -pipe -DFREEBSD_NAMECACHE -Werror -D_KERNEL -DKLD_MODULE -std=c99 -nostdinc -I/src/sys/modules/zfs/../../cddl/compat/opensolaris -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/zmod -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common -I/src/sys/modules/zfs/../.. -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common/zfs -I/src/sys/modules/zfs/../../cddl/contrib/opensolaris/common -I/src/sys/modules/zfs/../../../include -DHAVE_KERNEL_OPTION_HEADERS -include /obj/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 -I/obj/src/sys/LINT -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wno-unknown-pragmas -Wno-missing-prototypes -Wno-undef -Wno-strict-prototypes -Wno-cast-qual -Wno-parentheses -Wno-redundant-decls -Wno-missing-braces -Wno-uninitialized -Wno-unused -Wno-inline -Wno-switch -Wno-pointer-arith -c /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c cc1: warnings being treated as errors /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c: In function 'zfs_ioc_recvbackup': /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c:1482: warning: implicit declaration of function 'refcount_release' /src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c:1482: warning: nested extern declaration of 'refcount_release' *** Error code 1 Stop in /src/sys/modules/zfs. *** Error code 1 Stop in /src/sys/modules. *** Error code 1 Stop in /obj/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-05-26 00:05:21 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-05-26 00:05:21 - ERROR: failed to build lint kernel TB --- 2008-05-26 00:05:21 - tinderbox aborted TB --- 3959.78 user 459.94 system 5217.81 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Mon May 26 11:06:48 2008 Return-Path: Delivered-To: freebsd-i386@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD70C1065679 for ; Mon, 26 May 2008 11:06:48 +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 C8A328FC4A for ; Mon, 26 May 2008 11:06:48 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m4QB6mPn064902 for ; Mon, 26 May 2008 11:06:48 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m4QB6m1R064898 for freebsd-i386@FreeBSD.org; Mon, 26 May 2008 11:06:48 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 26 May 2008 11:06:48 GMT Message-Id: <200805261106.m4QB6m1R064898@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-i386@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-i386@FreeBSD.org X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2008 11:06:49 -0000 Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/70525 i386 [boot] boot0cfg: -o packet not effective o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice o i386/71000 i386 [boot] BTX halted when booting from CD on a machine wi o i386/72960 i386 BTX halted with Promise Tx2000 Raid o i386/74008 i386 IBM eServer x225 cannot boot any v5.x - endless dump s o i386/74044 i386 [smb] ServerWorks OSB4 SMBus interface does not detect o i386/75887 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel video/ke o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug s i386/79169 i386 freeze with striped USB Drives under high load o i386/80268 i386 [crash] System with Transmeta Efficeon cpu crashes whi p i386/81111 i386 /boot/loader causes reboot due to CFLAGS+= -msse3 s i386/85072 i386 [psm] ps/2 Mouse detection failure on compaq chipset o i386/86880 i386 [hang] 6.0 hangs or reboots whilst 5.4 is stable (ASUS s i386/88139 i386 [i386] [request] 53C875 Chipset HP 5064-6016 doesn't w s i386/88755 i386 [install] FreeBSD R6.0 on ThinkPad R40 installation re o i386/88929 i386 [ata] FreeBSD 6.0 install CD fails to find disks on So o i386/91282 i386 [install] 6.0R install CD crashes on Promise PDC20267 o i386/91745 i386 [smp] Second processor not detected on Proliant ML530 o i386/92193 i386 [boot] Can't boot from 6.0 Installation CD: BTX halted o i386/93615 i386 [install] Operating system wont install. Problem with o i386/93752 i386 Cannot activate the serial ports on boot probe. BIOS o o i386/93762 i386 Machine lockup at boot loader countdown on SuperMicro o i386/93787 i386 freebsd 6.0 hangs on atkbd0 on Proliant 1850r server a o i386/93809 i386 panic: could not copy LDT on RELENG_5_3 through RELENG o i386/93923 i386 [ata] FreeBSD Install, Sil3112: Cannot dump. No dump d o i386/93989 i386 [install] Can't install FreeBSD from IEEE1394 DVD-RW o f i386/94141 i386 [iwi] iwi doesn't work on Acer Laptop o i386/94364 i386 [keyboard] Unable to boot on NX9110 laptop o i386/94420 i386 FreeBSD does NOT support the pcChips M925 motherboard. o i386/94911 i386 [ata] [regression] ata regression with DOM-IDE o i386/95087 i386 System freeze irrespective of load on Promise FastTrak o i386/96014 i386 [install] HP Pavilion zv5000(Intel) reboot installatio o i386/96225 i386 Toshiba M70-CL3 Hangs Up During Booting o i386/96302 i386 [ata] nVidia nForce CK804 SATA300 controller not recog o i386/96357 i386 FreeBSD cannot recognize all the logical partitions o i386/96382 i386 [bge] In 6.1-RC1 the bge driver does not reliably work o i386/97025 i386 fbsd (2 cd) dont install in vmware 5.5.0 - reboot. o i386/97263 i386 [ata] FreeBSD only detects first drive on PDC20378 378 o i386/97287 i386 Screen Corruption In FreeBSD 6.X When Apps Started In o i386/98154 i386 6-STABLE crashes when being online via modem (Fujitsu o i386/98215 i386 [geode] [regression] FreeBSD can no longer boot Geode o i386/98765 i386 [ata] timeouts on sata drive (Asus a7n8x-e) f i386/98964 i386 [iwi] iwi totally freezes system o i386/99608 i386 [atapicam] ATAPI or CAM crash on FreeBSD 6.1-stable wi o i386/100420 i386 boot1/boot2 lba error o i386/100831 i386 [sio] sio ignores BIOS information about serial ports f i386/101135 i386 [iwi] iwi goes up and down o i386/101616 i386 [hang] FreeBSD freeze on bootup, Compaq Proliant (lega o i386/101667 i386 [ata] ATA problems when power management is on o i386/102410 i386 [install] FreeBSD 6.1-RELEASE installation boot freeze o i386/102562 i386 [em] no traffic pass through a em card after approx. a o i386/103063 i386 [install] Can not install on Dell XPS 700 s i386/103624 i386 [ata] [install] Problem installing on Dell Powervault o i386/104349 i386 [bfe] Panic while uploading data via bfe network inter o i386/104473 i386 boot loader reboots before loading kernel on Albatron o i386/104572 i386 [ata] issues with detecting HDD on Intel Q965 Express o i386/104711 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel - video/ o i386/104719 i386 Seagate ST3802110A errors/delays when using PIO4 or UD o i386/107382 i386 [install] "Fatal trap 12" when installing FreeBSD 6.1 o i386/107564 i386 [install] fatal trap 19 during installation on a Dell o i386/108185 i386 [panic] freebsd 6.2 fatal kernel trap s i386/109200 i386 [ata] READ_UDMA UDMA ICRC error cause not detecting ca o i386/109568 i386 [panic] Reboot server with "Fatal trap 12" o i386/109610 i386 [panic] Fatal trap 12: page fault while in kernel mode o i386/110214 i386 [hang] FreeBSD 6.2 freezes on SSH activitiy caused by o i386/110218 i386 kmem_malloc(4096): kmem_map too small: 335544320 total o i386/112036 i386 [ata] TIMEOUT - WRITE_DMA retrying, TIMEOUT - READ_DMA o i386/112487 i386 [sio] kernel panic on swi0:sio o i386/112580 i386 BTX Halted on HP DV6255 Notebook o i386/112596 i386 [aac] aac driver causes kernel panic - page fault on 2 o i386/112635 i386 [hang] [loader] Hang during boot installation o i386/112700 i386 SMP Kernel with FreeBSD 6.2 release on compaq dl360 g1 o i386/114192 i386 Fail to boot with "error issuing ATA_IDENTIFY command" o i386/114208 i386 Problem booting the FreeBSD CD ISO image o i386/114535 i386 Toshiba Satellite 105A: "no driver attached" for vario o i386/115285 i386 [panic] fatal trap 1 on freebsd 6.2 install boot up on o i386/115854 i386 [install] [panic] Install FreeBSD with USB CDROM cause o i386/115947 i386 [hang] Dell poweredge 860 hangs when stressed and ACPI o i386/116844 i386 [boot] cannot boot from cd when using Dell Vostro 200 o i386/117297 i386 [hang] System hangs up every day o i386/118285 i386 [i386] Segmentation fault in reloc_non_plt. o i386/118656 i386 [panic] Init dies in single user mode and box get kern o i386/119946 i386 [est] sysctl dev.cpu.0.freq on 75 Hz, cannot be change o i386/121115 i386 [ata] READ_DMA failure after 6.3 security upgrade [reg o i386/121258 i386 [boot] FreeBSD 6.3 / 7.0 boot problem [regression] o i386/121549 i386 [nfe]: nfe interface locks up during rc.conf initializ o i386/121699 i386 [boot] can't boot on MSI K9N Ultra o i386/121903 i386 [ips] [boot] can't boot on IBM x235 ServeRaid 6M [regr f i386/121918 i386 [panic] reboot fails with panic with multiprocessor sy f i386/122008 i386 [ata] Fdisk fails. Cannot install 7.0 Release on P5VD2 f i386/122040 i386 [install] Wont load further from CD f i386/122644 i386 [panic] on-boot mount /tmp kernel dump o i386/122668 i386 [boot] FreeBSD boot loader doesn't work on Dell R900 ( a i386/122887 i386 [panic] [atkbdc] 7.0-RELEASE on IBM HS20 panics immed f i386/123416 i386 [build] make buildworld warning NOPROFILE o i386/123462 i386 clock is too fast o kern/123619 i386 [build] PAE kernel fails to build o i386/123768 i386 [panic] [vm] 7.0-STABLE locking issue on Soekris net48 o i386/123814 i386 [boot] cannot boot freebsd kernel on sony vaio VGN-NR2 o i386/123990 i386 BTX halted on Thinkpad x60s 100 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst o i386/79091 i386 [i386] [patch] Small optimization for i386/support.s o i386/79840 i386 [sysinstall] Partitioning and formating a new disk fai o i386/80095 i386 ld-elf.so.1 crashes with executables produced by tinyc o i386/85417 i386 [i386] [npx] [patch] Possible bug in ia32 floating-poi o i386/85423 i386 [ex] ex(4) does not correctly recognize NIC in PnP mod o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o i386/85653 i386 [i386] [patch] relieve hangs in tight loops in process o i386/85655 i386 [i386] [patch] expose cpu info for i386 systems o i386/85656 i386 [i386] [patch] expose more i386 specific CPU informati s i386/88491 i386 [install] Panic when boot installation CD1 (Acer Trave o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o o i386/92501 i386 [irq] Hang on boot with ACPI enabled on ASUS A6R noteb o i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p o i386/95106 i386 [install] cannot install freebsd, Nvidia nForce 2 base o i386/96406 i386 System freezes on IBM xSeries 335 with FreeBSD-6.0-REL o i386/98366 i386 [em] Intel PRO/1000 MT Dual PCI-X: simulatenious 1000 o i386/98932 i386 [i386] [patch] Kernel compilation failed on specific P o i386/100142 i386 [pci] [patch] /dev/smb0 device not available on system o i386/100204 i386 FreeBSD reports raid as broken - but it is not o i386/101062 i386 Freeze on detect Intel 900 VGA on boot with ACPI p i386/101379 i386 [i386] [patch] page fault clobbers error code in trap o i386/105063 i386 [sio] US Robotics (3Com) 3CP5609 PCI 16550 Modem works o i386/105175 i386 [ipmi] ipmi acpi trouble on supermicro server o i386/106789 i386 [nfe] or [nve]: Internal NIC of GA-K8N51GMF-RH does no o i386/106850 i386 [powerd] powernow0 attach returned 6 o i386/109423 i386 [ichsmb] ICH5 smb interface problems o i386/113110 i386 [mk] [patch] i686 is not an alias of pentiumpro on GCC o i386/113177 i386 [pci] [patch] Extended PCI Configuration register (>= o i386/116100 i386 [panic] Fatal trap 12 right after reboot (da0s1error = o i386/116347 i386 [apm] [patch] APM does not suspend USB devices o i386/118350 i386 [hang] BTX loader hangs on PC Engines WRAP o i386/119175 i386 [busdma] [patch] Typo in bus_dmamem_alloc() o i386/119574 i386 [i386] 7.0-RC1 times out in calibrate_clocks() [regres o i386/120714 i386 [viapm] [patch] viapm driver doesn't work on VIA VT823 o i386/120933 i386 [boot] 6.x and 7.x do not boot from CD on IBM HS20 883 o i386/121675 i386 [ata] incorrect fallback to udma33 with CF memory inst o i386/122148 i386 [irq] interrupt storm on 7.0 [regression] o i386/122602 i386 i386/conf/PAE does not compile on RELENG_7 o i386/122623 i386 [i386] [patch] bsd.cpu.mk doesn't handle opteron/athlo o i386/123820 i386 945GME no /dev/agpgart o i386/123981 i386 You can't usefully PXEBOOT the 7.0-RELEASE-i386-livefs 43 problems total. From owner-freebsd-i386@FreeBSD.ORG Thu May 29 21:32:30 2008 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2A401065676; Thu, 29 May 2008 21:32:30 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 960AA8FC13; Thu, 29 May 2008 21:32:30 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4TLWRYa032894; Thu, 29 May 2008 17:32:27 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.2/8.14.2) with ESMTP id m4TLWRMw014626; Thu, 29 May 2008 17:32:27 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 6F90A73039; Thu, 29 May 2008 17:32:27 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080529213227.6F90A73039@freebsd-current.sentex.ca> Date: Thu, 29 May 2008 17:32:27 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93/7040/Mon May 5 21:52:15 2008 clamav-milter version 0.93 on clamscanner3 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2008 21:32:31 -0000 TB --- 2008-05-29 20:19:04 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-05-29 20:19:04 - starting HEAD tinderbox run for i386/i386 TB --- 2008-05-29 20:19:04 - cleaning the object tree TB --- 2008-05-29 20:19:43 - cvsupping the source tree TB --- 2008-05-29 20:19:43 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/i386/i386/supfile TB --- 2008-05-29 20:19:50 - building world (CFLAGS=-O -pipe) TB --- 2008-05-29 20:19:50 - cd /src TB --- 2008-05-29 20:19:50 - /usr/bin/make -B buildworld >>> World build started on Thu May 29 20:19:52 UTC 2008 >>> 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 Thu May 29 21:26:14 UTC 2008 TB --- 2008-05-29 21:26:14 - generating LINT kernel config TB --- 2008-05-29 21:26:14 - cd /src/sys/i386/conf TB --- 2008-05-29 21:26:14 - /usr/bin/make -B LINT TB --- 2008-05-29 21:26:14 - building LINT kernel (COPTFLAGS=) TB --- 2008-05-29 21:26:14 - cd /src TB --- 2008-05-29 21:26:14 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu May 29 21:26:14 UTC 2008 >>> 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/dev/ie/if_ie.c:1535: warning: passing argument 1 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1535: warning: passing argument 2 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1558: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1569: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1572: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1579: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1584: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1585: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type *** Error code 1 Stop in /obj/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-05-29 21:32:27 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-05-29 21:32:27 - ERROR: failed to build lint kernel TB --- 2008-05-29 21:32:27 - tinderbox aborted TB --- 3248.94 user 403.05 system 4402.52 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Thu May 29 22:38:05 2008 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D6464106564A; Thu, 29 May 2008 22:38:05 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 94D9C8FC1E; Thu, 29 May 2008 22:38:05 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4TMc2MV039128; Thu, 29 May 2008 18:38:02 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.2/8.14.2) with ESMTP id m4TMc246078472; Thu, 29 May 2008 18:38:02 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 15A4073039; Thu, 29 May 2008 18:38:01 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080529223802.15A4073039@freebsd-current.sentex.ca> Date: Thu, 29 May 2008 18:38:01 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93/7040/Mon May 5 21:52:15 2008 clamav-milter version 0.93 on clamscanner3 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2008 22:38:06 -0000 TB --- 2008-05-29 21:26:26 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-05-29 21:26:26 - starting HEAD tinderbox run for i386/pc98 TB --- 2008-05-29 21:26:26 - cleaning the object tree TB --- 2008-05-29 21:27:02 - cvsupping the source tree TB --- 2008-05-29 21:27:02 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/i386/pc98/supfile TB --- 2008-05-29 21:27:09 - building world (CFLAGS=-O -pipe) TB --- 2008-05-29 21:27:09 - cd /src TB --- 2008-05-29 21:27:09 - /usr/bin/make -B buildworld >>> World build started on Thu May 29 21:27:10 UTC 2008 >>> 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 Thu May 29 22:33:05 UTC 2008 TB --- 2008-05-29 22:33:05 - generating LINT kernel config TB --- 2008-05-29 22:33:05 - cd /src/sys/pc98/conf TB --- 2008-05-29 22:33:05 - /usr/bin/make -B LINT TB --- 2008-05-29 22:33:05 - building LINT kernel (COPTFLAGS=) TB --- 2008-05-29 22:33:05 - cd /src TB --- 2008-05-29 22:33:05 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu May 29 22:33:05 UTC 2008 >>> 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/dev/ie/if_ie.c:1535: warning: passing argument 1 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1535: warning: passing argument 2 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1558: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1569: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1572: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1579: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1584: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1585: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type *** Error code 1 Stop in /obj/pc98/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-05-29 22:38:01 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-05-29 22:38:01 - ERROR: failed to build lint kernel TB --- 2008-05-29 22:38:01 - tinderbox aborted TB --- 3187.67 user 407.90 system 4295.31 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Fri May 30 03:46:41 2008 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1824F106567B; Fri, 30 May 2008 03:46:41 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id C22E28FC0C; Fri, 30 May 2008 03:46:40 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4U3kbKi060369; Thu, 29 May 2008 23:46:37 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.2/8.14.2) with ESMTP id m4U3kcNR010401; Thu, 29 May 2008 23:46:38 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id BE26D73039; Thu, 29 May 2008 23:46:37 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080530034637.BE26D73039@freebsd-current.sentex.ca> Date: Thu, 29 May 2008 23:46:37 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93/7040/Mon May 5 21:52:15 2008 clamav-milter version 0.93 on clamscanner3 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2008 03:46:41 -0000 TB --- 2008-05-30 02:33:42 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-05-30 02:33:42 - starting HEAD tinderbox run for i386/i386 TB --- 2008-05-30 02:33:42 - cleaning the object tree TB --- 2008-05-30 02:34:08 - cvsupping the source tree TB --- 2008-05-30 02:34:08 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/i386/i386/supfile TB --- 2008-05-30 02:34:15 - building world (CFLAGS=-O -pipe) TB --- 2008-05-30 02:34:15 - cd /src TB --- 2008-05-30 02:34:15 - /usr/bin/make -B buildworld >>> World build started on Fri May 30 02:34:17 UTC 2008 >>> 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 Fri May 30 03:40:17 UTC 2008 TB --- 2008-05-30 03:40:17 - generating LINT kernel config TB --- 2008-05-30 03:40:17 - cd /src/sys/i386/conf TB --- 2008-05-30 03:40:17 - /usr/bin/make -B LINT TB --- 2008-05-30 03:40:17 - building LINT kernel (COPTFLAGS=) TB --- 2008-05-30 03:40:17 - cd /src TB --- 2008-05-30 03:40:17 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri May 30 03:40:17 UTC 2008 >>> 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/dev/ie/if_ie.c:1535: warning: passing argument 1 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1535: warning: passing argument 2 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1558: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1569: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1572: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1579: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1584: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1585: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type *** Error code 1 Stop in /obj/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-05-30 03:46:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-05-30 03:46:37 - ERROR: failed to build lint kernel TB --- 2008-05-30 03:46:37 - tinderbox aborted TB --- 3250.56 user 399.91 system 4375.55 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Fri May 30 04:52:50 2008 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C3B21065673; Fri, 30 May 2008 04:52:50 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 11E0B8FC15; Fri, 30 May 2008 04:52:49 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4U4qljB064328; Fri, 30 May 2008 00:52:47 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.2/8.14.2) with ESMTP id m4U4ql01063247; Fri, 30 May 2008 00:52:47 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id B82D573039; Fri, 30 May 2008 00:52:46 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080530045246.B82D573039@freebsd-current.sentex.ca> Date: Fri, 30 May 2008 00:52:46 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93/7040/Mon May 5 21:52:15 2008 clamav-milter version 0.93 on clamscanner3 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2008 04:52:50 -0000 TB --- 2008-05-30 03:41:01 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-05-30 03:41:01 - starting HEAD tinderbox run for i386/pc98 TB --- 2008-05-30 03:41:01 - cleaning the object tree TB --- 2008-05-30 03:41:27 - cvsupping the source tree TB --- 2008-05-30 03:41:27 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/i386/pc98/supfile TB --- 2008-05-30 03:41:37 - building world (CFLAGS=-O -pipe) TB --- 2008-05-30 03:41:37 - cd /src TB --- 2008-05-30 03:41:37 - /usr/bin/make -B buildworld >>> World build started on Fri May 30 03:41:38 UTC 2008 >>> 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 Fri May 30 04:47:37 UTC 2008 TB --- 2008-05-30 04:47:37 - generating LINT kernel config TB --- 2008-05-30 04:47:37 - cd /src/sys/pc98/conf TB --- 2008-05-30 04:47:37 - /usr/bin/make -B LINT TB --- 2008-05-30 04:47:37 - building LINT kernel (COPTFLAGS=) TB --- 2008-05-30 04:47:37 - cd /src TB --- 2008-05-30 04:47:37 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri May 30 04:47:38 UTC 2008 >>> 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/dev/ie/if_ie.c:1535: warning: passing argument 1 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1535: warning: passing argument 2 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1558: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1569: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1572: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1579: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1584: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1585: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type *** Error code 1 Stop in /obj/pc98/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-05-30 04:52:46 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-05-30 04:52:46 - ERROR: failed to build lint kernel TB --- 2008-05-30 04:52:46 - tinderbox aborted TB --- 3188.95 user 403.17 system 4305.17 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Fri May 30 07:30:02 2008 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D2B5106564A for ; Fri, 30 May 2008 07:30:02 +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 6D4CF8FC20 for ; Fri, 30 May 2008 07:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m4U7U2eX021994 for ; Fri, 30 May 2008 07:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m4U7U2c9021993; Fri, 30 May 2008 07:30:02 GMT (envelope-from gnats) Resent-Date: Fri, 30 May 2008 07:30:02 GMT Resent-Message-Id: <200805300730.m4U7U2c9021993@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Guenter Niedermeier Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D2A6106567A for ; Fri, 30 May 2008 07:25:08 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 2EF878FC16 for ; Fri, 30 May 2008 07:25:08 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.2/8.14.2) with ESMTP id m4U7NQs7059753 for ; Fri, 30 May 2008 07:23:26 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.2/8.14.1/Submit) id m4U7NQrY059724; Fri, 30 May 2008 07:23:26 GMT (envelope-from nobody) Message-Id: <200805300723.m4U7NQrY059724@www.freebsd.org> Date: Fri, 30 May 2008 07:23:26 GMT From: Guenter Niedermeier To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: i386/124124: Page fault while booting livefs iso of FreeBSD 7.0 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2008 07:30:02 -0000 >Number: 124124 >Category: i386 >Synopsis: Page fault while booting livefs iso of FreeBSD 7.0 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri May 30 07:30:02 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Guenter Niedermeier >Release: 7.0 lifefs >Organization: n.a. >Environment: Not possible, because system is in reboot loop. >Description: this error occurs when booting livefs iso of FreeBSD 7.0 ---------------------------------------------------- FATAL TRAP 12 : page fault while in kernel mode cpuid = 0, apicid = 03 fault virtual address = 0x3f80 fault code = supervisor write, page not present .. trap number 12 panic: page fault cpuid = 0 Used system: Dual PIII/933 Asus ServerWorks CUR-DLS latest BIOS 1GB RAM 3Ware 7500 8ch. raid controller Promise UltraATA 100 IDE controller ---------------------------------------------------- The error always occurs after twed0 is loaded. FreeBSD 6.3 is working fine on the same machine. Please help. Regards -Guenter >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Fri May 30 10:02:22 2008 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 075AF1065679; Fri, 30 May 2008 10:02:22 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id B1F0B8FC0C; Fri, 30 May 2008 10:02:21 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4UA2IUi081049; Fri, 30 May 2008 06:02:18 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.2/8.14.2) with ESMTP id m4UA2IuD004063; Fri, 30 May 2008 06:02:18 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 8917A73039; Fri, 30 May 2008 06:02:18 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080530100218.8917A73039@freebsd-current.sentex.ca> Date: Fri, 30 May 2008 06:02:18 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93/7040/Mon May 5 21:52:15 2008 clamav-milter version 0.93 on clamscanner3 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2008 10:02:22 -0000 TB --- 2008-05-30 08:49:08 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-05-30 08:49:08 - starting HEAD tinderbox run for i386/i386 TB --- 2008-05-30 08:49:08 - cleaning the object tree TB --- 2008-05-30 08:49:33 - cvsupping the source tree TB --- 2008-05-30 08:49:33 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/i386/i386/supfile TB --- 2008-05-30 08:49:39 - building world (CFLAGS=-O -pipe) TB --- 2008-05-30 08:49:39 - cd /src TB --- 2008-05-30 08:49:39 - /usr/bin/make -B buildworld >>> World build started on Fri May 30 08:49:40 UTC 2008 >>> 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 Fri May 30 09:56:10 UTC 2008 TB --- 2008-05-30 09:56:10 - generating LINT kernel config TB --- 2008-05-30 09:56:10 - cd /src/sys/i386/conf TB --- 2008-05-30 09:56:10 - /usr/bin/make -B LINT TB --- 2008-05-30 09:56:10 - building LINT kernel (COPTFLAGS=) TB --- 2008-05-30 09:56:10 - cd /src TB --- 2008-05-30 09:56:10 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri May 30 09:56:10 UTC 2008 >>> 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/dev/ie/if_ie.c:1535: warning: passing argument 1 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1535: warning: passing argument 2 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1558: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1569: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1572: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1579: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1584: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1585: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type *** Error code 1 Stop in /obj/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-05-30 10:02:18 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-05-30 10:02:18 - ERROR: failed to build lint kernel TB --- 2008-05-30 10:02:18 - tinderbox aborted TB --- 3247.59 user 401.44 system 4389.66 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Fri May 30 11:08:01 2008 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4673A1065671; Fri, 30 May 2008 11:08:01 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 060F38FC29; Fri, 30 May 2008 11:08:00 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4UB7wv7086268; Fri, 30 May 2008 07:07:58 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.2/8.14.2) with ESMTP id m4UB7wJg067780; Fri, 30 May 2008 07:07:58 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 0D88473039; Fri, 30 May 2008 07:07:57 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080530110758.0D88473039@freebsd-current.sentex.ca> Date: Fri, 30 May 2008 07:07:57 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93/7040/Mon May 5 21:52:15 2008 clamav-milter version 0.93 on clamscanner2 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2008 11:08:01 -0000 TB --- 2008-05-30 09:56:23 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-05-30 09:56:23 - starting HEAD tinderbox run for i386/pc98 TB --- 2008-05-30 09:56:23 - cleaning the object tree TB --- 2008-05-30 09:56:50 - cvsupping the source tree TB --- 2008-05-30 09:56:50 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/i386/pc98/supfile TB --- 2008-05-30 09:56:57 - building world (CFLAGS=-O -pipe) TB --- 2008-05-30 09:56:57 - cd /src TB --- 2008-05-30 09:56:57 - /usr/bin/make -B buildworld >>> World build started on Fri May 30 09:56:58 UTC 2008 >>> 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 Fri May 30 11:02:56 UTC 2008 TB --- 2008-05-30 11:02:56 - generating LINT kernel config TB --- 2008-05-30 11:02:56 - cd /src/sys/pc98/conf TB --- 2008-05-30 11:02:56 - /usr/bin/make -B LINT TB --- 2008-05-30 11:02:56 - building LINT kernel (COPTFLAGS=) TB --- 2008-05-30 11:02:56 - cd /src TB --- 2008-05-30 11:02:56 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri May 30 11:02:56 UTC 2008 >>> 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/dev/ie/if_ie.c:1535: warning: passing argument 1 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1535: warning: passing argument 2 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1558: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1569: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1572: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1579: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1584: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1585: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type *** Error code 1 Stop in /obj/pc98/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-05-30 11:07:57 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-05-30 11:07:57 - ERROR: failed to build lint kernel TB --- 2008-05-30 11:07:57 - tinderbox aborted TB --- 3186.15 user 408.50 system 4294.12 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Fri May 30 14:20:03 2008 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA3B6106566B for ; Fri, 30 May 2008 14:20:03 +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 B07D98FC0C for ; Fri, 30 May 2008 14:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m4UEK3fI058546 for ; Fri, 30 May 2008 14:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m4UEK3mi058545; Fri, 30 May 2008 14:20:03 GMT (envelope-from gnats) Date: Fri, 30 May 2008 14:20:03 GMT Message-Id: <200805301420.m4UEK3mi058545@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Gavin Atkinson Cc: Subject: Re: i386/81111: /boot/loader causes reboot due to CFLAGS+= -msse3 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Gavin Atkinson List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2008 14:20:03 -0000 The following reply was made to PR i386/81111; it has been noted by GNATS. From: Gavin Atkinson To: bug-followup@FreeBSD.org Cc: ache@FreeBSD.org Subject: Re: i386/81111: /boot/loader causes reboot due to CFLAGS+= -msse3 Date: Fri, 30 May 2008 15:10:23 +0100 Fixed in HEAD and RELENG_7, still needs MFC of src/sys/boot/i386/Makefile.inc 1.11 to RELENG_6. From owner-freebsd-i386@FreeBSD.ORG Fri May 30 16:23:45 2008 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D81901065672; Fri, 30 May 2008 16:23:45 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id AE05F8FC20; Fri, 30 May 2008 16:23:45 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1c.sentex.ca [64.7.153.10]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4UGNeMr074605; Fri, 30 May 2008 12:23:40 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4UGNdMB083043; Fri, 30 May 2008 12:23:40 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id C3D3973039; Fri, 30 May 2008 12:23:39 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080530162339.C3D3973039@freebsd-current.sentex.ca> Date: Fri, 30 May 2008 12:23:39 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93/7040/Mon May 5 21:52:15 2008 clamav-milter version 0.93 on clamscanner2 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2008 16:23:46 -0000 TB --- 2008-05-30 15:06:44 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-05-30 15:06:44 - starting HEAD tinderbox run for i386/i386 TB --- 2008-05-30 15:06:44 - cleaning the object tree TB --- 2008-05-30 15:07:13 - cvsupping the source tree TB --- 2008-05-30 15:07:13 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/i386/i386/supfile TB --- 2008-05-30 15:07:19 - building world (CFLAGS=-O -pipe) TB --- 2008-05-30 15:07:19 - cd /src TB --- 2008-05-30 15:07:19 - /usr/bin/make -B buildworld >>> World build started on Fri May 30 15:07:21 UTC 2008 >>> 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 Fri May 30 16:17:06 UTC 2008 TB --- 2008-05-30 16:17:06 - generating LINT kernel config TB --- 2008-05-30 16:17:06 - cd /src/sys/i386/conf TB --- 2008-05-30 16:17:06 - /usr/bin/make -B LINT TB --- 2008-05-30 16:17:06 - building LINT kernel (COPTFLAGS=) TB --- 2008-05-30 16:17:06 - cd /src TB --- 2008-05-30 16:17:06 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri May 30 16:17:06 UTC 2008 >>> 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/dev/ie/if_ie.c:1535: warning: passing argument 1 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1535: warning: passing argument 2 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1558: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1569: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1572: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1579: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1584: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1585: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type *** Error code 1 Stop in /obj/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-05-30 16:23:39 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-05-30 16:23:39 - ERROR: failed to build lint kernel TB --- 2008-05-30 16:23:39 - tinderbox aborted TB --- 3278.16 user 411.61 system 4615.35 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Fri May 30 16:26:43 2008 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42C371065777; Fri, 30 May 2008 16:26:43 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id DB9C78FC0A; Fri, 30 May 2008 16:26:42 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [IPv6:::1]) (authenticated bits=0) by server.baldwin.cx (8.14.2/8.14.2) with ESMTP id m4UGPsG3024908; Fri, 30 May 2008 12:26:36 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: freebsd-current@freebsd.org Date: Fri, 30 May 2008 12:23:22 -0400 User-Agent: KMail/1.9.7 References: <20080529213227.6F90A73039@freebsd-current.sentex.ca> In-Reply-To: <20080529213227.6F90A73039@freebsd-current.sentex.ca> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200805301223.23219.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [IPv6:::1]); Fri, 30 May 2008 12:26:36 -0400 (EDT) X-Virus-Scanned: ClamAV 0.91.2/7295/Fri May 30 11:03:48 2008 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=4.2 tests=BAYES_00,NO_RELAYS autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: FreeBSD Tinderbox , i386@freebsd.org Subject: Re: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2008 16:26:43 -0000 On Thursday 29 May 2008 05:32:27 pm FreeBSD Tinderbox wrote: > TB --- 2008-05-29 20:19:04 - tinderbox 2.3 running on freebsd-current.sentex.ca > TB --- 2008-05-29 20:19:04 - starting HEAD tinderbox run for i386/i386 > TB --- 2008-05-29 20:19:04 - cleaning the object tree > TB --- 2008-05-29 20:19:43 - cvsupping the source tree > TB --- 2008-05-29 20:19:43 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/i386/i386/supfile > TB --- 2008-05-29 20:19:50 - building world (CFLAGS=-O -pipe) > TB --- 2008-05-29 20:19:50 - cd /src > TB --- 2008-05-29 20:19:50 - /usr/bin/make -B buildworld > >>> World build started on Thu May 29 20:19:52 UTC 2008 > >>> 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 Thu May 29 21:26:14 UTC 2008 > TB --- 2008-05-29 21:26:14 - generating LINT kernel config > TB --- 2008-05-29 21:26:14 - cd /src/sys/i386/conf > TB --- 2008-05-29 21:26:14 - /usr/bin/make -B LINT > TB --- 2008-05-29 21:26:14 - building LINT kernel (COPTFLAGS=) > TB --- 2008-05-29 21:26:14 - cd /src > TB --- 2008-05-29 21:26:14 - /usr/bin/make -B buildkernel KERNCONF=LINT > >>> Kernel build for LINT started on Thu May 29 21:26:14 UTC 2008 > >>> 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/dev/ie/if_ie.c:1535: warning: passing argument 1 of 'bcopy' discards qualifiers from pointer target type > /src/sys/dev/ie/if_ie.c:1535: warning: passing argument 2 of 'bcopy' discards qualifiers from pointer target type > /src/sys/dev/ie/if_ie.c:1558: warning: assignment discards qualifiers from pointer target type > /src/sys/dev/ie/if_ie.c:1569: warning: assignment discards qualifiers from pointer target type > /src/sys/dev/ie/if_ie.c:1572: warning: assignment discards qualifiers from pointer target type > /src/sys/dev/ie/if_ie.c:1579: warning: assignment discards qualifiers from pointer target type > /src/sys/dev/ie/if_ie.c:1584: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type > /src/sys/dev/ie/if_ie.c:1585: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type > *** Error code 1 Sorry, should be fixed. It compiled fine from sys/modules/ie, just not from LINT. :( -- John Baldwin From owner-freebsd-i386@FreeBSD.ORG Fri May 30 17:32:23 2008 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 300C6106566B; Fri, 30 May 2008 17:32:23 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.freebsd.org (Postfix) with ESMTP id 0AF1A8FC0C; Fri, 30 May 2008 17:32:22 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m4UHWKQ3092277; Fri, 30 May 2008 13:32:20 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.2/8.14.2) with ESMTP id m4UHWKHn039127; Fri, 30 May 2008 13:32:20 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 4ADC873039; Fri, 30 May 2008 13:32:19 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080530173220.4ADC873039@freebsd-current.sentex.ca> Date: Fri, 30 May 2008 13:32:18 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93/7040/Mon May 5 21:52:15 2008 clamav-milter version 0.93 on clamscanner1 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2008 17:32:23 -0000 TB --- 2008-05-30 16:17:36 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-05-30 16:17:36 - starting HEAD tinderbox run for i386/pc98 TB --- 2008-05-30 16:17:37 - cleaning the object tree TB --- 2008-05-30 16:18:05 - cvsupping the source tree TB --- 2008-05-30 16:18:06 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/i386/pc98/supfile TB --- 2008-05-30 16:18:13 - building world (CFLAGS=-O -pipe) TB --- 2008-05-30 16:18:13 - cd /src TB --- 2008-05-30 16:18:13 - /usr/bin/make -B buildworld >>> World build started on Fri May 30 16:18:14 UTC 2008 >>> 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 Fri May 30 17:27:07 UTC 2008 TB --- 2008-05-30 17:27:07 - generating LINT kernel config TB --- 2008-05-30 17:27:07 - cd /src/sys/pc98/conf TB --- 2008-05-30 17:27:07 - /usr/bin/make -B LINT TB --- 2008-05-30 17:27:07 - building LINT kernel (COPTFLAGS=) TB --- 2008-05-30 17:27:07 - cd /src TB --- 2008-05-30 17:27:07 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri May 30 17:27:07 UTC 2008 >>> 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/dev/ie/if_ie.c:1535: warning: passing argument 1 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1535: warning: passing argument 2 of 'bcopy' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1558: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1569: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1572: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1579: warning: assignment discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1584: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type /src/sys/dev/ie/if_ie.c:1585: warning: passing argument 1 of 'bzero' discards qualifiers from pointer target type *** Error code 1 Stop in /obj/pc98/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-05-30 17:32:18 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-05-30 17:32:18 - ERROR: failed to build lint kernel TB --- 2008-05-30 17:32:18 - tinderbox aborted TB --- 3212.37 user 416.33 system 4481.86 real http://tinderbox.des.no/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Sat May 31 10:00:15 2008 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3CBC01065684 for ; Sat, 31 May 2008 10:00:15 +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 2D1B48FC14 for ; Sat, 31 May 2008 10:00:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m4VA0FGw085263 for ; Sat, 31 May 2008 10:00:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m4VA0FDJ085262; Sat, 31 May 2008 10:00:15 GMT (envelope-from gnats) Date: Sat, 31 May 2008 10:00:15 GMT Message-Id: <200805311000.m4VA0FDJ085262@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Remko Lodder Cc: Subject: Re: i386/124124: Page fault while booting livefs iso of FreeBSD 7.0 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Remko Lodder List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2008 10:00:15 -0000 The following reply was made to PR i386/124124; it has been noted by GNATS. From: Remko Lodder To: Guenter Niedermeier Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: i386/124124: Page fault while booting livefs iso of FreeBSD 7.0 Date: Sat, 31 May 2008 11:58:55 +0200 Guenter Niedermeier wrote: Dear Guenter, Sadly, given the problems you are seeing, we cannot help you. We need a backtrace of the actual error/crash so that we can determine what is happening here. The amount of information you are presenting is a start, but sadly not enough. That said, it's probably difficult to get this information straight from a LiveCD because it might not issue a coredump to the memory which can be extracted later. Are you in the position to install 7.0 on the disk and see what is happening then? (in that case we can probably get a coredump one way or the other). Cheers remko -- /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News