From owner-freebsd-i386@FreeBSD.ORG Sun Aug 22 01:50:22 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7E3A16A4CE for ; Sun, 22 Aug 2004 01:50:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B52DB43D45 for ; Sun, 22 Aug 2004 01:50:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i7M1oMrf029948 for ; Sun, 22 Aug 2004 01:50:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7M1oMSA029947; Sun, 22 Aug 2004 01:50:22 GMT (envelope-from gnats) Resent-Date: Sun, 22 Aug 2004 01:50:22 GMT Resent-Message-Id: <200408220150.i7M1oMSA029947@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, Dennis Holmes Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B22316A4CE for ; Sun, 22 Aug 2004 01:43:29 +0000 (GMT) Received: from star-one.liberator.dyndns.org (adsl-64-142-6-3.sonic.net [64.142.6.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2F1243D39 for ; Sun, 22 Aug 2004 01:43:28 +0000 (GMT) (envelope-from dholmes@star-one.liberator.dyndns.org) Received: from star-one.liberator.dyndns.org (localhost.liberator.dyndns.org [127.0.0.1])i7M1hHp0020240; Sat, 21 Aug 2004 18:43:17 -0700 (PDT) (envelope-from dholmes@star-one.liberator.dyndns.org) Received: (from dholmes@localhost)i7M1hHYI020239; Sat, 21 Aug 2004 18:43:17 -0700 (PDT) (envelope-from dholmes) Message-Id: <200408220143.i7M1hHYI020239@star-one.liberator.dyndns.org> Date: Sat, 21 Aug 2004 18:43:17 -0700 (PDT) From: Dennis Holmes To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: dholmes@liberator.dyndns.org Subject: i386/70810: [patch] Enable SMBus device on Asus P4B series motherboards X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dennis Holmes List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 01:50:23 -0000 >Number: 70810 >Category: i386 >Synopsis: [patch] Enable SMBus device on Asus P4B series motherboards >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 Aug 22 01:50:22 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Dennis Holmes >Release: FreeBSD 4.8-RELEASE-p13 i386 >Organization: a little >Environment: Asus P4B266 with Intel 845D chipset System: FreeBSD star-one.liberator.dyndns.org 4.8-RELEASE-p13 FreeBSD 4.8-RELEASE-p13 #14: Mon Aug 2 10:52:46 PDT 2004 dholmes at star-one.liberator.dyndns.org:/usr/obj/usr/src/sys/STAR-ONE i386 >Description: On affected Asus motherboards, the smbus device in the chipset is disabled by the BIOS with no setup option to enable it. This prevents hardware (temp/fan/voltage) monitoring since the monitoring chip is only accessible via smbus. Additional information regarding the nature of the problem and the fix can be found on the following web pages: http://www.nt.phys.kyushu-u.ac.jp/shimizu/download/README-ASUS-P4motherboard.html http://www2.lm-sensors.nu/~lm78/cvs/lm_sensors2/prog/hotplug/README.p4b Note that the Linux fix of enabling the smbus device after boot requires that hot-pluggable device support be present in the kernel. In Freebsd the device can be enabled while running by using pciconf or pcitweak, but the kernel remains unaware of it. >How-To-Repeat: Observe via dmesg that the ichsmb and smbus devices are not found at boot time even with the appropriate devices configured in the kernel. >Fix: The included patch turns on the smbus device as soon as the parent chip is probed. Then the device is detected as the device probing sequence continues. I now have healthd working on my system after applying the patch. This adds a new PCI quirk and a kernel config option to activate the quirk. Now in dmesg I see: ichsmb0: port 0xe800-0xe80f irq 0 at device 31.3 on pci0 pci_cfgintr_search: linked (61) to configured irq 11 at 1:0:0 pci_cfgintr: 0:31 INTB routed to irq 11 smbus1: on ichsmb0 smb1: on smbus1 (It is assigned smbus1 since I also have a Bt848-based video capture card which gets smbus0. I also had to tweak healthd to get it to use smbus1 and correct some of the monitoring values. If anyone is interested in those changes, let me know; some of it's not very pretty but I'll share.) The patch changes three files. Prior to each diff is the CVS ID string of the file against which the patch was generated. I realize these versions are a little old, but I don't have an installation of -current to play with. I did check to see that the files have not changed substantially in newer releases. I am also including a diff against the pci.c file from -current. This version had changed enough that the patch from my version didn't apply. Also, it looks like the location or nature of LINT has changed in -current, so I don't know how to handle updating it. This is my first PR submission; if you have any advice (other than the obvious of "upgrade!") or need additional info please let me know. ########## # Version: $FreeBSD: src/sys/i386/conf/LINT,v 1.749.2.138.2.1 2003/03/28 20:05:39 scottl Exp $ ########## --- /usr/src/sys/i386/conf/LINT.dist Fri Mar 28 12:05:39 2003 +++ /usr/src/sys/i386/conf/LINT Thu Aug 5 10:50:24 2004 @@ -2153,6 +2153,15 @@ device amdpm device smb + +# Some of the ASUS P-4 motherboard with ICH2(82801BA) and ICH4(82801DB) +# chipsets switch off the SMBus PCI device in the BIOS. Therefore, one +# has to enable it explicitly in order to make hardware-monitoring possible. +# For further details, see: +# http://www.nt.phys.kyushu-u.ac.jp/shimizu/download/README-ASUS-P4motherboard.html +# http://www2.lm-sensors.nu/~lm78/cvs/lm_sensors2/prog/hotplug/README.p4b + +options ASUS_P4B # Enable SMBus on Asus P4B series # # I2C Bus ########## # Version: $FreeBSD: src/sys/conf/options.i386,v 1.132.2.18 2003/03/14 21:22:35 jhb Exp $ ########## --- /usr/src/sys/conf/options.i386.dist Fri Mar 14 13:22:35 2003 +++ /usr/src/sys/conf/options.i386 Thu Jul 29 19:57:11 2004 @@ -214,6 +214,9 @@ # SMB/CIFS filesystem SMBFS +# Enable smbus device on Asus P4B +ASUS_P4B opt_pci.h + # ------------------------------- # EOF # ------------------------------- ########## # Version: $FreeBSD: src/sys/pci/pci.c,v 1.141.2.15 2002/04/30 17:48:18 tmm Exp $ ########## --- /usr/src/sys/pci/pci.c.dist Tue Apr 30 10:48:18 2002 +++ /usr/src/sys/pci/pci.c Mon Aug 2 10:50:31 2004 @@ -71,22 +71,26 @@ static void pci_read_extcap(pcicfgregs *cfg); struct pci_quirk { u_int32_t devid; /* Vendor/device of the card */ int type; #define PCI_QUIRK_MAP_REG 1 /* PCI map register in wierd place */ +#define PCI_QUIRK_CLEAR_BITS 2 /* Enable function by clearing some bits */ int arg1; int arg2; }; struct pci_quirk pci_quirks[] = { /* * The Intel 82371AB and 82443MX has a map register at offset 0x90. */ { 0x71138086, PCI_QUIRK_MAP_REG, 0x90, 0 }, { 0x719b8086, PCI_QUIRK_MAP_REG, 0x90, 0 }, +#ifdef ASUS_P4B + { 0x24408086, PCI_QUIRK_CLEAR_BITS, 0xf2, 0x0108 }, +#endif { 0 } }; /* map register information */ #define PCI_MAPMEM 0x01 /* memory map */ @@ -1356,21 +1360,33 @@ pci_add_resources(device_t dev, pcicfgregs* cfg) { struct pci_devinfo *dinfo = device_get_ivars(dev); struct resource_list *rl = &dinfo->resources; struct pci_quirk *q; int i; + u_int32_t val; for (i = 0; i < cfg->nummaps;) { i += pci_add_map(dev, cfg, PCIR_MAPS + i*4); } for (q = &pci_quirks[0]; q->devid; q++) { - if (q->devid == ((cfg->device << 16) | cfg->vendor) - && q->type == PCI_QUIRK_MAP_REG) - pci_add_map(dev, cfg, q->arg1); + if (q->devid == ((cfg->device << 16) | cfg->vendor)) { + switch (q->type) { + case PCI_QUIRK_MAP_REG: + pci_add_map(dev, cfg, q->arg1); + break; + case PCI_QUIRK_CLEAR_BITS: + val = pci_read_config(dev, q->arg1, 2); + if (val & q->arg2) { + val &= ~(q->arg2); + pci_write_config(dev, q->arg1, val, 2); + } + break; + } + } } if (cfg->intpin > 0 && cfg->intline != 255) resource_list_add(rl, SYS_RES_IRQ, 0, cfg->intline, cfg->intline, 1); } ########## # src/sys/dev/pci/pci.c from -current NOTE THAT THIS IS NOT TESTED! # Version: $FreeBSD: /repoman/r/ncvs/src/sys/dev/pci/pci.c,v 1.264 2004/07/02 13:42:36 imp Exp $ ########## --- pci.c.current Fri Jul 2 06:42:36 2004 +++ pci.c Thu Aug 5 13:01:36 2004 @@ -139,22 +139,26 @@ struct pci_quirk { uint32_t devid; /* Vendor/device of the card */ int type; #define PCI_QUIRK_MAP_REG 1 /* PCI map register in weird place */ +#define PCI_QUIRK_CLEAR_BITS 2 /* Enable function by clearing some bits */ int arg1; int arg2; }; struct pci_quirk pci_quirks[] = { /* The Intel 82371AB and 82443MX has a map register at offset 0x90. */ { 0x71138086, PCI_QUIRK_MAP_REG, 0x90, 0 }, { 0x719b8086, PCI_QUIRK_MAP_REG, 0x90, 0 }, /* As does the Serverworks OSB4 (the SMBus mapping register) */ { 0x02001166, PCI_QUIRK_MAP_REG, 0x90, 0 }, +#ifdef ASUS_P4B + { 0x24408086, PCI_QUIRK_CLEAR_BITS, 0xf2, 0x0108 }, +#endif { 0 } }; /* map register information */ #define PCI_MAPMEM 0x01 /* memory map */ @@ -894,12 +898,13 @@ { struct pci_devinfo *dinfo = device_get_ivars(dev); pcicfgregs *cfg = &dinfo->cfg; struct resource_list *rl = &dinfo->resources; struct pci_quirk *q; int b, i, irq, f, s; + u_int32_t val; b = cfg->bus; s = cfg->slot; f = cfg->func; /* ATA devices needs special map treatment */ @@ -910,15 +915,26 @@ else for (i = 0; i < cfg->nummaps;) i += pci_add_map(pcib, bus, dev, b, s, f, PCIR_BAR(i), rl); for (q = &pci_quirks[0]; q->devid; q++) { - if (q->devid == ((cfg->device << 16) | cfg->vendor) - && q->type == PCI_QUIRK_MAP_REG) - pci_add_map(pcib, bus, dev, b, s, f, q->arg1, rl); + if (q->devid == ((cfg->device << 16) | cfg->vendor)) { + switch (q->type) { + case PCI_QUIRK_MAP_REG: + pci_add_map(pcib, bus, dev, b, s, f, q->arg1, rl); + break; + case PCI_QUIRK_CLEAR_BITS: + val = pci_read_config(dev, q->arg1, 2); + if (val & q->arg2) { + val &= ~(q->arg2); + pci_write_config(dev, q->arg1, val, 2); + } + break; + } + } } if (cfg->intpin > 0 && PCI_INTERRUPT_VALID(cfg->intline)) { #if defined(__ia64__) || defined(__i386__) || defined(__amd64__) /* * Try to re-route interrupts. Sometimes the BIOS or >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Sun Aug 22 03:59:07 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58A1E16A4D0; Sun, 22 Aug 2004 03:59:07 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 369E343D48; Sun, 22 Aug 2004 03:59:07 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from freefall.freebsd.org (anholt@localhost [127.0.0.1]) i7M3x7uI045272; Sun, 22 Aug 2004 03:59:07 GMT (envelope-from anholt@freefall.freebsd.org) Received: (from anholt@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7M3x6de045268; Sun, 22 Aug 2004 03:59:06 GMT (envelope-from anholt) Date: Sun, 22 Aug 2004 03:59:06 GMT From: Eric Anholt Message-Id: <200408220359.i7M3x6de045268@freefall.freebsd.org> To: elliot@alfred.oau.org, anholt@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/59854: System panics when AMD 762 AGP is loaded X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 03:59:07 -0000 Synopsis: System panics when AMD 762 AGP is loaded State-Changed-From-To: open->feedback State-Changed-By: anholt State-Changed-When: Sun Aug 22 03:58:33 GMT 2004 State-Changed-Why: Waiting for feedback from either of two reporters of AMD 762 issues. http://www.freebsd.org/cgi/query-pr.cgi?pr=59854 From owner-freebsd-i386@FreeBSD.ORG Sun Aug 22 07:11:29 2004 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8889316A4CE; Sun, 22 Aug 2004 07:11:29 +0000 (GMT) Received: from smtp3.sentex.ca (smtp3.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D22443D1D; Sun, 22 Aug 2004 07:11:29 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smtp3.sentex.ca (8.12.11/8.12.11) with ESMTP id i7M7BQrq058610; Sun, 22 Aug 2004 03:11:26 -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.12.11/8.12.11) with ESMTP id i7M7BSPw058030; Sun, 22 Aug 2004 03:11:28 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 22B5E7303F; Sun, 22 Aug 2004 03:11:28 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20040822071128.22B5E7303F@freebsd-current.sentex.ca> Date: Sun, 22 Aug 2004 03:11:28 -0400 (EDT) Subject: [current tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 07:11:29 -0000 TB --- 2004-08-22 05:07:23 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2004-08-22 05:07:23 - starting CURRENT tinderbox run for i386/pc98 TB --- 2004-08-22 05:07:23 - checking out the source tree TB --- 2004-08-22 05:07:23 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98 TB --- 2004-08-22 05:07:24 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2004-08-22 05:18:50 - building world (CFLAGS=-O2 -pipe) TB --- 2004-08-22 05:18:50 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-22 05:18:50 - /usr/bin/make -B buildworld >>> 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 TB --- 2004-08-22 06:44:38 - building generic kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-08-22 06:44:38 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-22 06:44:38 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Sun Aug 22 06:44:38 UTC 2004 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Sun Aug 22 06:58:30 UTC 2004 TB --- 2004-08-22 06:58:30 - generating LINT kernel config TB --- 2004-08-22 06:58:30 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src/sys/pc98/conf TB --- 2004-08-22 06:58:30 - /usr/bin/make -B LINT TB --- 2004-08-22 06:58:30 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-08-22 06:58:30 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-22 06:58:30 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sun Aug 22 06:58:30 UTC 2004 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/canbus.c awk -f /tinderbox/CURRENT/i386/pc98/src/sys/tools/makeobjops.awk /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/canbus_if.m -c ; cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred- stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline canbus_if.c cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/clock.c cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c: In function `fdioctl': /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2701: error: `FD_DEBUG' undeclared (first use in this function) /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2701: error: (Each undeclared identifier is reported only once /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2701: error: for each function it appears in.) *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/obj/pc98/tinderbox/CURRENT/i386/pc98/src/sys/LINT. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. TB --- 2004-08-22 07:11:27 - WARNING: /usr/bin/make returned exit code 1 TB --- 2004-08-22 07:11:27 - ERROR: failed to build lint kernel TB --- 2004-08-22 07:11:27 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Sun Aug 22 09:49:57 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F49016A4CE; Sun, 22 Aug 2004 09:49:57 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E284543D31; Sun, 22 Aug 2004 09:49:56 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from freefall.freebsd.org (tjr@localhost [127.0.0.1]) i7M9nuCo015262; Sun, 22 Aug 2004 09:49:56 GMT (envelope-from tjr@freefall.freebsd.org) Received: (from tjr@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7M9nuPx015258; Sun, 22 Aug 2004 09:49:56 GMT (envelope-from tjr) Date: Sun, 22 Aug 2004 09:49:56 GMT From: "Tim J. Robbins" Message-Id: <200408220949.i7M9nuPx015258@freefall.freebsd.org> To: tedm@ipinc.net, tjr@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/57783: UINT32_MAX is missing from FreeBSD 4.X X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 09:49:57 -0000 Synopsis: UINT32_MAX is missing from FreeBSD 4.X State-Changed-From-To: open->closed State-Changed-By: tjr State-Changed-When: Sun Aug 22 09:48:42 GMT 2004 State-Changed-Why: There are no plans to merge this, or any other C99 conformance fixes back into RELENG_4. http://www.freebsd.org/cgi/query-pr.cgi?pr=57783 From owner-freebsd-i386@FreeBSD.ORG Sun Aug 22 19:30:06 2004 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E137A16A4CE; Sun, 22 Aug 2004 19:30:06 +0000 (GMT) Received: from smtp3b.sentex.ca (smtp3b.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84EAF43D53; Sun, 22 Aug 2004 19:30:06 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smtp3b.sentex.ca (8.13.1/8.13.1) with ESMTP id i7MJU6Sf086286; Sun, 22 Aug 2004 15:30:06 -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.12.11/8.12.11) with ESMTP id i7MJU5pt052851; Sun, 22 Aug 2004 15:30:05 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id B49D57303F; Sun, 22 Aug 2004 15:30:05 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20040822193005.B49D57303F@freebsd-current.sentex.ca> Date: Sun, 22 Aug 2004 15:30:05 -0400 (EDT) Subject: [current tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 19:30:07 -0000 TB --- 2004-08-22 17:54:55 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2004-08-22 17:54:55 - starting CURRENT tinderbox run for i386/pc98 TB --- 2004-08-22 17:54:55 - checking out the source tree TB --- 2004-08-22 17:54:55 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98 TB --- 2004-08-22 17:54:55 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2004-08-22 18:00:50 - building world (CFLAGS=-O2 -pipe) TB --- 2004-08-22 18:00:50 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-22 18:00:50 - /usr/bin/make -B buildworld >>> 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 TB --- 2004-08-22 19:05:03 - building generic kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-08-22 19:05:03 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-22 19:05:03 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Sun Aug 22 19:05:03 UTC 2004 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Sun Aug 22 19:18:53 UTC 2004 TB --- 2004-08-22 19:18:53 - generating LINT kernel config TB --- 2004-08-22 19:18:53 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src/sys/pc98/conf TB --- 2004-08-22 19:18:53 - /usr/bin/make -B LINT TB --- 2004-08-22 19:18:54 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-08-22 19:18:54 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-22 19:18:54 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sun Aug 22 19:18:54 UTC 2004 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/canbus.c awk -f /tinderbox/CURRENT/i386/pc98/src/sys/tools/makeobjops.awk /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/canbus_if.m -c ; cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred- stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline canbus_if.c cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/clock.c cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c: In function `fdioctl': /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2697: error: `FD_DEBUG' undeclared (first use in this function) /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2697: error: (Each undeclared identifier is reported only once /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2697: error: for each function it appears in.) *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/obj/pc98/tinderbox/CURRENT/i386/pc98/src/sys/LINT. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. TB --- 2004-08-22 19:30:05 - WARNING: /usr/bin/make returned exit code 1 TB --- 2004-08-22 19:30:05 - ERROR: failed to build lint kernel TB --- 2004-08-22 19:30:05 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Sun Aug 22 20:30:26 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F5A016A4CE for ; Sun, 22 Aug 2004 20:30:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D5D643D3F for ; Sun, 22 Aug 2004 20:30:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i7MKUPDQ000620 for ; Sun, 22 Aug 2004 20:30:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7MKUPIh000619; Sun, 22 Aug 2004 20:30:25 GMT (envelope-from gnats) Resent-Date: Sun, 22 Aug 2004 20:30:25 GMT Resent-Message-Id: <200408222030.i7MKUPIh000619@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, Marian Cerny Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76FA616A4CE for ; Sun, 22 Aug 2004 20:22:21 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E13543D49 for ; Sun, 22 Aug 2004 20:22:21 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i7MKMLw9076423 for ; Sun, 22 Aug 2004 20:22:21 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i7MKMKoh076422; Sun, 22 Aug 2004 20:22:20 GMT (envelope-from nobody) Message-Id: <200408222022.i7MKMKoh076422@www.freebsd.org> Date: Sun, 22 Aug 2004 20:22:20 GMT From: Marian Cerny To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: i386/70832: Serious problems with RealTek NIC using re0 driver on Evo N1015v X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 20:30:26 -0000 >Number: 70832 >Category: i386 >Synopsis: Serious problems with RealTek NIC using re0 driver on Evo N1015v >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 22 20:30:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Marian Cerny >Release: FreeBSD 5.2.1R >Organization: >Environment: FreeBSD potvorka 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #0: Wed Aug 18 10:10:26 CEST 2004 majo@potvorka:/usr/src/sys/i386/compile/POTVORKA i386 >Description: I have got serious problems with my 're0: ' network card. I have got two exactly the same laptops: Compaq Evo N1015v. I have got a few problems with this NIC on both laptops. I would like to notice that there was none of this problem on FreeBSD 5.1R when the NICs were using the rl driver. *Rarely* the machine hangs on boot (the kernel panics). It happens approximately once a month. Keyboard is not working, so I can not debug this more. Here are the messages, that are writen to the screen: -------------------------------------------------------------------------- pcm0: pci0: at device 10.0 (no driver attached) re0: port 0x8800-0x88ff mem 0xf0013000-0xf00130ff irg 11 at device 11.0 on pci0 re0: Ethernet address: 00:0b:cd:84:25:06 miibus0: on re0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto re0: diagnostic failed, failed to receive packet in loopback mode re0: attach aborted due to hardware diag failure Fatal trap 12: page fault while in kernel mode fault virtual address = 0x7c fault code = supervisor read, page net present instruction pointer = 0x8:0xc04fb503 stack pointer = 0x10:0xc08219e4 frame pointer = 0x10:0xc0821a00 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 0 (swapper) kernel: type 12 trap, code=0 Stopped at _mtx_lock_flags+0x43: cmpl $0xc06ab05c,0(%ebx) db> -------------------------------------------------------------------------- The other problem is, when I am turning off the laptop using 'halt -p' with ACPI. *Often* the kernel panics here. It's like with 40% probability on one laptop and around 80% probability on the other one. The laptops are exactly the same, only one has got 512M + 128M memory and the other one has got 256M + 128M memory. I have tried this with usb support compiled in, and also without it (because there is ohci0+ in current process). The result is the same. Here are the messages: -------------------------------------------------------------------------- -bash-2.05b# halt -p Aug 18 10:51:52 potvorka halt: halted by root Aug 18 10:51:53 potvorka syslogd: exiting on signal 15 Waiting (max 60 seconds) for system process `vnlru' to stop...stopped Waiting (max 60 seconds) for system process `bufdaemon' to stop...stopped Waiting (max 60 seconds) for system process `syncer' to stop...stopped syncing disks, buffers remaining... 8 8 1 1 done Uptime: 5m56s Powering system off using ACPI Fatal trap 12: page fault while in kernel mode fault virtual address = 0xc fault code = supervisor read, page net present instruction pointer = 0x8:0xc0475087 stack pointer = 0x10:0xd156ec9c frame pointer = 0x10:0xd156ecc8 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 22 (irq11: re0 ohci0+) kernel: type 12 trap, code=0 Stopped at re_rxeof+0x287: movl %eax,0xc(%ebx) db> trace re_rxeof(c334a000,0,c0658482,71f,c336cd00) at re_rxeof+0x287 re_intr(c334a000,0,c06648ec,21f,c152ce20) at re_intr+0xc4 ithread_loop(c1522800,d156ed48,c0664766,311,c1522800) at ithread_loop+0x172 fork_exit(c04f1910,c1522800,d156ed48) at fork_exit+0xb4 fork_trampoline() at fork_trampoline+0x8 --- trap 0x1, eip = 0, esp = 0xd156ed7c, ebp = 0 --- db> panic panic: from debugger Stack backtrace: backtrace(c0666cfd,c06d07e0,c065486e,d156ea88,100) at backtrace+0x17 panic(c065486e,d156eb40,c043a56a,c0475087,0) at panic+0xb7 db_panic(c0475087,0,ffffffff,d156eab4,d156eab0) at db_panic+0x12 db_command(c06c6520,c0686320,c0680e34,c0680e38,10) at db_command+0x25a db_command_loop(c0475087,c06f7d00,d156eb8c,c054d423,0) at db_command_loop+0x78 db_trap(c,0,0,246,1) at db_trap+0xb9 kbd_trap(c,0,d156ec5c,1,1) at kdb_trap+0x1b3 trap_fatal(d156ec5c,c,c067c786,2cd,c1527c80) at trap_fatal+0x2b8 trap_pfault(d156ec5c,0,c,12e800,c) at trap_pfault+0x1c1 trap(18,10,10,31022072,2) at trap+0x2f3 calltrap() at calltrap+0x5 --- trap 0xc, eip = 0xc0475087, esp = 0xd156ec9c, ebp = 0xd156ecc8 --- re_rxeof(c334a000,0,c0658482,71f,c336cd00) at re_rxeof+0x287 re_intr(c334a000,0,c06648ec,21f,c152ce20) at re_intr+0xc4 ithread_loop(c1522800,d156ed48,c0664766,311,c1522800) at ithread_loop+0x172 fork_exit(c04f1910,c1522800,d156ed48) at fork_exit+0xb4 fork_trampoline() at fork_trampoline+0x8 --- trap 0x1, eip = 0, esp = 0xd156ed7c, ebp = 0 --- Debugger("panic") Fatal trap 3: breakpoint instruction fault while in kernel mode instruction pointer = 0x8:0xc061d70d stack pointer = 0x10:0xd156ea44 frame pointer = 0x10:0xd156ea50 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = IOPL = 0 current process = 22 (irg11: re0 ohci0+) Stopped at re_rxeof+0x287: movl %eax,0xc(%ebx) db> call boot(0) Uptime: 6m1s kernel trap 12 with interrupts disabled Fatal trap 12: page fault while in kernel mode fault virtual address = 0xdeadc0e2 fault code = supervisor read, page net present instruction pointer = 0x8:0xc0520155 stack pointer = 0x10:0xd156e990 frame pointer = 0x10:0xd156e9a8 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = resume, IOPL = 0 current process = 22 (irg11: re0 ohci0+) kernel: type 12 trap, code=0 Stopped at eventhandler_deregister+0x45: movl %eax,0x4(%edx) db> panic panic: from debugger Uptime: 6m2s Dumping 352 MB 12 32 48 64 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 336 Dump complete kernel trap 12 with interrupts disabled Fatal trap 12: page fault while in kernel mode fault virtual address = 0xdeadc0e2 fault code = supervisor read, page net present instruction pointer = 0x8:0xc0520155 stack pointer = 0x10:0xd156e6bc frame pointer = 0x10:0xd156e6b4 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = resume, IOPL = 0 current process = 22 (irg11: re0 ohci0+) kernel: type 12 trap, code=0 Stopped at eventhandler_deregister+0x45: movl %eax,0x4(%edx) db> *** I turned the laptop off -------------------------------------------------------------------------- The last problem I have, that *everytime* I try to use cvsup to upgrade ports tree (or source tree), the networks goes completely down after some seconds (sometimes minutes). -------------------------------------------------------------------------- -bash-2.05b# cvsup ports-supfile Connected to cvsup.FreeBSD.cz Updating collection ports-all/cvs Edit ports/MOVED Edit ports/benchmarks/himenobench/Makefile Edit ports/benchmarks/himenobench/pkg-plist Edit ports/devel/distcc/Makefile Edit ports/devel/p5-ExtUtils-XSBuilder/Makefile Edit ports/devel/p5-ExtUtils-XSBuilder/distinfo Edit ports/devel/p5-ExtUtils-XSBuilder/pkg-plist Edit ports/devel/root/Makefile Delete ports/ftp/lukemftpd/Makefile Delete ports/ftp/lukemftpd/distinfo Delete ports/ftp/lukemftpd/files/patch-ftpd.c Delete ports/ftp/lukemftpd/files/patch-logutmp.c Delete ports/ftp/lukemftpd/files/patch-logwtmp.c Delete ports/ftp/lukemftpd/files/patch-src-Makefile.in Delete ports/ftp/lukemftpd/pkg-descr Delete ports/ftp/lukemftpd/pkg-plist Edit ports/java/jdk14/Makefile re0: watchdog timeout re0: watchdog timeout ^C^C^CInterrupted -------------------------------------------------------------------------- This re0: watchdog timeout repeats here. The network goes down, it is not possible to (for example) ping google - there is no responsee. When I do: $ killall dhclient $ ifconfig re0 down $ dhlcient re0 Then I can again 'ping www.google.com', I get 2 to 5 packets in response and the network goes down again. I must reboot the machine. All these problems seems to be connected to me. Might be not. >How-To-Repeat: Use Compaq Evo N1015v with ACPI enabled and try to power off the system with 'halt -p'. Or try to use cvsup to update ports tree. >Fix: Not known. It works fine on FreeBSD 5.1R >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 08:53:43 2004 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A67916A4CE; Mon, 23 Aug 2004 08:53:43 +0000 (GMT) Received: from smtp3.sentex.ca (smtp3.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1986343D39; Mon, 23 Aug 2004 08:53:43 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smtp3.sentex.ca (8.12.11/8.12.11) with ESMTP id i7N8rgEC043123; Mon, 23 Aug 2004 04:53:42 -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.12.11/8.12.11) with ESMTP id i7N8rfZY020994; Mon, 23 Aug 2004 04:53:41 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 1E6457303F; Mon, 23 Aug 2004 04:53:42 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20040823085342.1E6457303F@freebsd-current.sentex.ca> Date: Mon, 23 Aug 2004 04:53:42 -0400 (EDT) Subject: [current tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 08:53:43 -0000 TB --- 2004-08-23 07:11:50 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2004-08-23 07:11:50 - starting CURRENT tinderbox run for i386/pc98 TB --- 2004-08-23 07:11:50 - checking out the source tree TB --- 2004-08-23 07:11:50 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98 TB --- 2004-08-23 07:11:50 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2004-08-23 07:22:04 - building world (CFLAGS=-O2 -pipe) TB --- 2004-08-23 07:22:04 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-23 07:22:04 - /usr/bin/make -B buildworld >>> 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 TB --- 2004-08-23 08:28:47 - building generic kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-08-23 08:28:47 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-23 08:28:47 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Mon Aug 23 08:28:47 UTC 2004 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Mon Aug 23 08:42:31 UTC 2004 TB --- 2004-08-23 08:42:31 - generating LINT kernel config TB --- 2004-08-23 08:42:31 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src/sys/pc98/conf TB --- 2004-08-23 08:42:31 - /usr/bin/make -B LINT TB --- 2004-08-23 08:42:31 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-08-23 08:42:31 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-23 08:42:31 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Aug 23 08:42:31 UTC 2004 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/canbus.c awk -f /tinderbox/CURRENT/i386/pc98/src/sys/tools/makeobjops.awk /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/canbus_if.m -c ; cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred- stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline canbus_if.c cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/clock.c cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c: In function `fdioctl': /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2697: error: `FD_DEBUG' undeclared (first use in this function) /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2697: error: (Each undeclared identifier is reported only once /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2697: error: for each function it appears in.) *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/obj/pc98/tinderbox/CURRENT/i386/pc98/src/sys/LINT. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. TB --- 2004-08-23 08:53:41 - WARNING: /usr/bin/make returned exit code 1 TB --- 2004-08-23 08:53:41 - ERROR: failed to build lint kernel TB --- 2004-08-23 08:53:41 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 11:02:01 2004 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C78316A50A for ; Mon, 23 Aug 2004 11:02:01 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A62243D2F for ; Mon, 23 Aug 2004 11:02:01 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i7NB21G1029777 for ; Mon, 23 Aug 2004 11:02:01 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NB1xh4029764 for freebsd-i386@freebsd.org; Mon, 23 Aug 2004 11:01:59 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 23 Aug 2004 11:01:59 GMT Message-Id: <200408231101.i7NB1xh4029764@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: freebsd-i386@FreeBSD.org Subject: Current problem reports assigned to you X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 11:02:01 -0000 Current FreeBSD problem reports Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/06/23] i386/53620 i386 Kernel panics / reboots during install of o [2003/09/16] i386/56933 i386 kernel panic vm_page_remove o [2003/09/17] i386/56937 i386 panic: system panic during high network l o [2003/09/20] i386/57043 i386 ar driver with 2 port PCI card locks up w f [2003/09/22] i386/57097 i386 Promise Ultra 100 TX2 causes lockup on SM p [2003/10/01] i386/57480 i386 Removing very large files using rm doesn' f [2003/10/06] i386/57632 i386 [boot] Dell PowerEdge 4300 is allergic to o [2003/10/12] i386/57881 i386 ripping audio CDs causes kernel panic o [2003/11/13] i386/59253 i386 ata device reset hangs if device is dead o [2003/11/25] i386/59683 i386 panic: signal 12 4.9-STABLE - frequent cr o [2003/12/02] i386/59895 i386 system hangs from disk IO errors o [2003/12/02] i386/59897 i386 problems with swap-pager with great datat f [2003/12/02] i386/59898 i386 pxe boot: BTX halted o [2003/12/17] i386/60344 i386 Intel ICH5 SATA RAID boot problems on bot o [2004/01/08] i386/61063 i386 ata hangs in smp system f [2004/01/10] i386/61163 i386 [boot] "/:write failed, filesystem is ful o [2004/01/16] i386/61438 i386 5.2 nfs tasks running and not selected at o [2004/01/20] i386/61646 i386 Strange irq20 weirdness causing system lo o [2004/01/22] i386/61709 i386 [panic] 5.2-REL i386 Crashes hard; panics f [2004/02/02] i386/62248 i386 5.2 current hangs on boot o [2004/02/27] i386/63430 i386 TIMEOUT - ATA READ o [2004/02/27] i386/63441 i386 panic: fatal trap 12 in pmap.c [4.9 with o [2004/03/04] i386/63776 i386 [boot] hang during boot on a toshiba p25 o [2004/03/06] i386/63828 i386 [hang] when installing Release 5.2.1 (i38 o [2004/03/06] i386/63853 i386 [hang] 5.2.1 boot CD hangs during boot (T o [2004/03/07] i386/63871 i386 panic: kernel panic in swi8 after 1 hour o [2004/03/09] i386/64002 i386 acpi problem o [2004/03/25] i386/64716 i386 mv crashes FreeBSD 5.2.1-p3 o [2004/03/25] i386/64727 i386 problem with partition in freebsd 5.2.1 s o [2004/04/01] i386/65019 i386 Nvidia video driver crash: i386_set_ldt o [2004/04/03] i386/65137 i386 5.2.1 Intall Boot from floppies page faul o [2004/04/16] i386/65646 i386 FreeBSD suddenly turns off the power f [2004/04/25] i386/65954 i386 panic: Sil0680 panic [5.2.1-p5] o [2004/04/28] i386/66039 i386 panic: system panic with file system corr o [2004/04/29] i386/66087 i386 [install] hang at PCI config o [2004/04/30] i386/66098 i386 [hang] SMP machine hanging up when runnin o [2004/05/01] i386/66133 i386 [boot] nvidia motherboard installer locks f [2004/05/06] i386/66339 i386 [hang] XFree86 initialization with an Lap o [2004/05/08] i386/66402 i386 [boot] Boot menu crash: Stack overflow wh o [2004/05/27] i386/67260 i386 [boot] stack overflow after boot menu whe o [2004/06/01] i386/67456 i386 LOR on dual-xeon w/ ht o [2004/06/10] i386/67773 i386 5.x series - md5 on dev no longer works e o [2004/06/30] i386/68514 i386 Realtek driver halts on oversized frames o [2004/07/11] i386/68900 i386 5.x install CDs fail to boot on Toshiba S f [2004/07/11] i386/68910 i386 Ipfw2 segmentation fault o [2004/07/14] i386/69049 i386 Free BSD Install with error "anic: page f o [2004/07/18] i386/69218 i386 [boot] failure: 4.10-BETA and later do no o [2004/07/18] i386/69257 i386 in_cksum_hdr is non-functional without -O o [2004/07/19] i386/69260 i386 Problem starting the installantion o [2004/07/29] i386/69755 i386 compiling kernel with FAST_IPSEC fails o [2004/08/01] i386/69876 i386 new kernel panic on boot o [2004/08/03] i386/69945 i386 "Page fault" while shutting down on VIA K o [2004/08/11] i386/70330 i386 Re-Open 33262? - gdb does not handle pend o [2004/08/15] i386/70482 i386 Array adapter problems o [2004/08/20] i386/70747 i386 ddos attack causes box to crash on kernel 55 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/03/13] i386/25781 i386 Statclocks cannot be disables on ServerWo o [2002/07/05] i386/40219 i386 [apm] apm breaks removable media o [2002/10/16] i386/44130 i386 Enabled apm hangs up FreeBSD kernel on i8 o [2003/02/24] i386/48614 i386 VESA VGA modes for syscons lock up machin o [2003/05/22] i386/52556 i386 Syskonnect SK9843SX, sk driver, MII not d o [2003/05/22] i386/52581 i386 Boot loaders reading more than one sector o [2003/05/24] i386/52638 i386 SCSI U320 on SMP server won't run faster o [2003/06/06] i386/52975 i386 CPUTYPE=k7 results in non-functional /boo o [2003/06/10] i386/53137 i386 background fscking causing ffs_valloc pan o [2003/06/16] i386/53382 i386 Repetable panics in ffs_vget() on Prolian o [2003/07/01] i386/53948 i386 console="comconsole" in loader.conf cause o [2003/07/02] i386/54033 i386 Disk lockup. o [2003/07/15] i386/54501 i386 Promise Ultra133 TX2 does not work proper o [2003/08/05] i386/55290 i386 please MFC the PR:22971 (LinuxEmu; Implem o [2003/08/13] i386/55555 i386 system freezes with access to /dev/ums0 o [2003/08/13] i386/55561 i386 SMbus and I2C don't attach when loaded as o [2003/08/15] i386/55615 i386 machine freezes - goes on after key press a [2003/08/24] i386/55930 i386 partly configured serial port freezes sys o [2003/10/06] i386/57673 i386 Odd/dangerous disklabel behaviour on 5.0 o [2003/10/09] i386/57818 i386 4.9-RC panics when kernel is built with a o [2003/10/23] i386/58458 i386 ATAPI-CDROM DMA Support on ALi Aladdin V o [2003/10/26] i386/58580 i386 After sysinstall, F2 fails; wrong device o [2003/10/30] i386/58718 i386 need to remove battery before booting lap o [2003/11/02] i386/58826 i386 reboot on an IBM PC Server 315 merely hal o [2003/11/11] i386/59192 i386 ATA drive not spotted with SCSI drive o [2003/11/15] i386/59298 i386 Can't render anything with Blender / RADE o [2003/11/26] i386/59701 i386 System hungup, after resume from suspend. o [2003/12/27] i386/60603 i386 dd causes error when copying cd from ATA o [2003/12/27] i386/60641 i386 Sporadic SCSI bus resets with 53C810 unde o [2003/12/28] i386/60671 i386 FreeBSD 5.2RC2 installation process doesn o [2003/12/29] i386/60681 i386 wicontrol -L critical crash (sigbus) o [2003/12/29] i386/60690 i386 atapicd driver causes spontaneous uncondi o [2004/01/04] i386/60887 i386 can't boot when fbsd exists with other op o [2004/01/06] i386/60984 i386 NFS Server hang o [2004/01/13] i386/61303 i386 5.2-REL hangs during boot with 3-port pyr o [2004/01/13] i386/61326 i386 Reboot while booting from 5.2-RELEASE CD o [2004/01/14] i386/61342 i386 [hang] CD-based installation crashes [4.9 o [2004/01/16] i386/61443 i386 FreeBSD 5.2-RELEASE installation stops at o [2004/01/22] i386/61705 i386 Random "bus errors". o [2004/01/23] i386/61804 i386 hitachi travelstar usb hdd (40gb) drivers o [2004/01/25] i386/61890 i386 FDisk uses incorrect calculations for dis o [2004/01/26] i386/61937 i386 Cannot Install 5.2-REL via serial console o [2004/01/30] i386/62088 i386 Logitech Cordless/Optical Mouse not worki o [2004/02/02] i386/62280 i386 em0 broken after resume in 5.2-CURRENT o [2004/02/08] i386/62519 i386 sound card does not work on laptop o [2004/02/09] i386/62565 i386 device.hints are not honored in 5.2.1-RC o [2004/02/13] i386/62807 i386 4.9 SMP does not work with Compaq Smart o [2004/02/14] i386/62833 i386 Can't Install: cancel by syncing disks an o [2004/02/15] i386/62888 i386 ad4: WARNING - WRITE_DMA interrupt was se o [2004/02/16] i386/62902 i386 Data Corruption on Dell PE 600SC (Server o [2004/02/17] i386/62952 i386 USB not working o [2004/02/20] i386/63098 i386 Compaq Workstation IDE CDROM drive not pr o [2004/02/24] i386/63305 i386 reading udf filesystem on dvd+rw leads to o [2004/02/24] i386/63313 i386 sk driver panics on boot with SK-9844 dua o [2004/02/27] i386/63467 i386 [ata] Sil 3114: RAID not detected using S o [2004/02/29] i386/63521 i386 5.2.1 doesn't detect drives on SATA contr o [2004/03/03] i386/63678 i386 5.2.1 installation hangs on t30 o [2004/03/09] i386/63992 i386 XFree86 4.3 don't start o [2004/03/12] i386/64183 i386 5.1-RELEASE Install hung at "Probing devi o [2004/03/19] i386/64450 i386 Lucent Technologies WaveLAN/IEEE (PCI) bu o [2004/03/25] i386/64680 i386 5.2.1 pci-cfgintr steals serial mouse irq o [2004/03/25] i386/64697 i386 5.2.x BTX loader halts with Promise FastT o [2004/03/27] i386/64795 i386 Network Adapter not configuring o [2004/04/14] i386/65523 i386 [patch] PXE loader malfunction in multipl o [2004/04/18] i386/65691 i386 fxp0: device timeout o [2004/04/19] i386/65774 i386 Cannot run repair disk when booted from U o [2004/04/19] i386/65775 i386 Transmeta crusoe without longrun panics w o [2004/04/19] i386/65783 i386 [panic] Panic when attaching card reader o [2004/04/22] i386/65896 i386 [panic] 5.2-RELEASE re(4) driver, kernel o [2004/04/23] i386/65920 i386 Mounted Netware filesystem behaves strang o [2004/05/04] i386/66248 i386 [panic] bootloader is confused by booting o [2004/05/06] i386/66306 i386 pnpbios_identify() queries for more devic o [2004/05/07] i386/66350 i386 [sysinstall] sysinstall creates a partiti o [2004/05/07] i386/66368 i386 [install] 4.9 install fails with MODE_SEN o [2004/05/19] i386/66876 i386 [patch] Cannot extract tar(1) multi-volum o [2004/05/22] i386/67047 i386 mpt driver does not recognize messages fr o [2004/05/22] i386/67050 i386 CardBus (PCI ?) resource allocation probl o [2004/05/27] i386/67273 i386 System Hangs with acpi and Xfree f [2004/05/28] i386/67277 i386 Realtek Gigabit Network Card is not detec f [2004/05/28] i386/67281 i386 [hang] crash when cofiguring xfree86 4.3 o [2004/06/01] i386/67469 i386 src/lib/msun/i387/s_tan.S gives incorrect o [2004/06/07] i386/67688 i386 5.2.1 initial floppy boot fails with Fata o [2004/06/09] i386/67739 i386 smth was broken in keyboard processing si o [2004/06/09] i386/67763 i386 PCMCIA: MELCO manufacturer code should be o [2004/06/11] i386/67833 i386 4.10 does not boot after enabling SMP o [2004/06/13] i386/67901 i386 PS/2 mouse probrem f [2004/06/15] i386/67955 i386 [panic] -current on T40p kernel trap 12 i o [2004/06/18] i386/68080 i386 interrupt was seen but timeout fired (ata o [2004/06/19] i386/68117 i386 serious network collisions after NIC "med o [2004/06/20] i386/68140 i386 Problem with Sony AIT ATAPI Tape dirve o [2004/06/27] i386/68411 i386 VMware Virtual Machine - Network Fails Du o [2004/06/28] i386/68438 i386 bootloader cannot read from icp vortex ar o [2004/06/28] i386/68460 i386 nfs mounts lock processes in sbwait o [2004/07/01] i386/68554 i386 [hang] system freeze on Compaq Evo 600c [ o [2004/07/10] i386/68899 i386 Problems reading and writing DVD-RAM disc o [2004/07/19] i386/69281 i386 init dies when MAXSSIZ, MAXDSIZ, and DFLD o [2004/07/23] i386/69460 i386 the nic's speed slow down when both side o [2004/07/28] i386/69688 i386 NATD does not work with outgoing PPTP VPN o [2004/07/28] i386/69722 i386 wi0: init failed o [2004/08/02] i386/69931 i386 PS/2 Optical Mouse (Micro Innovations) o [2004/08/05] i386/70028 i386 umass isuue in the boot prcess on SONY La o [2004/08/13] i386/70386 i386 IBM x345 Freezes Randomly o [2004/08/16] i386/70525 i386 boot0cfg: -o packet not effective o [2004/08/16] i386/70531 i386 [patch] boot0 hides Lilo in extended slic o [2004/08/19] i386/70663 i386 Freebsd 4.10 ncplogin + Netware 4.11 = nw o [2004/08/21] i386/70805 i386 page fault early during boot with apm ena o [2004/08/22] i386/70832 i386 Serious problems with RealTek NIC using r 107 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/07/24] i386/40958 i386 apm on Acer TravelMate 351 could not resu o [2002/08/21] i386/41856 i386 VESA splash screen problems on ThinkPad 2 o [2003/05/14] i386/52249 i386 [PATCH] Bootmanager shows NTFS partitions o [2003/05/18] i386/52408 i386 quitting gnome2-2.2.1_1 results in LOR o [2003/05/19] i386/52427 i386 DVD replay under MSI "655 MAX" mobo inter o [2003/06/05] i386/52971 i386 bad macro LIST_HEAD in /usr/include/sys/q o [2003/06/11] i386/53200 i386 5.1-RC1 SMP kernel boot gags at "APIC_IO: o [2003/06/14] i386/53324 i386 pam_group problems (PAM_RUSER used instea o [2003/07/17] i386/54595 i386 emu10k1 sound driver locks system o [2003/10/31] i386/58784 i386 ATA DMA fails and vx0 creates panic o [2003/11/10] i386/59147 i386 USB active extension cable not recognized o [2003/11/23] i386/59600 i386 [PATCH] Improved us.emacs.kbd mapping f [2003/11/30] i386/59854 i386 System panics when AMD 762 AGP is loaded o [2003/12/17] i386/60319 i386 read error 34/0 during installation, SYST o [2003/12/27] i386/60633 i386 It would seem that if you're running a sy f [2003/12/27] i386/60637 i386 /etc/resolv.conf not created after fresh f [2003/12/28] i386/60643 i386 5.2 RC2 disk1 ISO will not boot on an Asu o [2003/12/29] i386/60702 i386 can't boot 5.2-RC2 iso's to install o [2004/01/02] i386/60817 i386 FBSD-5.1/5.2-RC1 "fdc0: cmd 3 failed at o o [2004/01/05] i386/60919 i386 No login possible (sporadic) o [2004/01/06] i386/60963 i386 [PATCH] Win32 Applications abort on PECOF o [2004/01/07] i386/61005 i386 The Boot Manager in FreeBSD 5.2RC can't f [2004/01/11] i386/61219 i386 installation of 5.1 stalls at "Mounting r o [2004/01/12] i386/61253 i386 panic: page fault on installation freebsd o [2004/01/13] i386/61308 i386 Maxproc Limits counts Zombie Processes wh o [2004/01/14] i386/61348 i386 Adaptec 1460D PCI SCSI Card does not work o [2004/01/16] i386/61442 i386 Highpoint RocketRAID 1520 uses only UDMA2 o [2004/01/17] i386/61481 i386 a mechanism to wire io-channel-check to u o [2004/01/20] i386/61603 i386 sysinstall: wrong geometry guessed o [2004/01/22] i386/61703 i386 ACPI + Sound + Boot = Reboot f [2004/01/24] i386/61821 i386 Errors in installation o [2004/01/24] i386/61838 i386 Realtek -8139C Card Not Supported o [2004/01/24] i386/61843 i386 Intel PRO/100 VE adapter is not recognize o [2004/01/25] i386/61889 i386 Have to reinsert pccard after reboot o [2004/01/27] i386/62003 i386 make /boot/loader "reboot" code same as r o [2004/02/08] i386/62502 i386 panic under double loading vinum.ko modul o [2004/02/11] i386/62699 i386 fstat randomly crashes with "out of memor o [2004/02/14] i386/62855 i386 AE_NO_ACPI_TABLES on systems that (purpor o [2004/02/17] i386/62977 i386 Mouse daemon during install/setup f [2004/02/25] i386/63334 i386 make kernel error o [2004/03/05] i386/63815 i386 boot loader waste a lot of time (10 min) o [2004/03/23] i386/64626 i386 AP initialization problem on GIGABYTE GA- o [2004/04/03] i386/65124 i386 Unable to disable TERM_EMU cleanly o [2004/04/14] i386/65528 i386 mouse cursor disapears on moving p [2004/04/18] i386/65729 i386 Document machdep.hlt_cpus sysctl o [2004/05/14] i386/66642 i386 pcm0: play: 0: paly interrupt timeout, ch f [2004/05/21] i386/66996 i386 Problem with CD/DVD ROM o [2004/05/22] i386/67055 i386 Mouse (wheel) detection problem on SIS748 o [2004/05/30] i386/67383 i386 do a better job disassembling code in 16 f [2004/06/03] i386/67521 i386 buildworld issues (bin/csh tcsh) f [2004/06/18] i386/68087 i386 wget core dumps with: Assertion failed: ( o [2004/06/23] i386/68219 i386 ACPI + snd_maestro3 problem o [2004/06/30] i386/68518 i386 Hangs while loading 82443BX agp during bo o [2004/07/06] i386/68719 i386 usb 2.0 mobil rack+ fat32 performance pro o [2004/07/07] i386/68754 i386 SMP reset bug o [2004/07/29] i386/69730 i386 puc driver doesn't support PC-Com 8-port o [2004/08/05] i386/70036 i386 pcn device not recognizing device o [2004/08/18] i386/70610 i386 [patch] spkr(4): hardcoded assumption HZ o [2004/08/19] i386/70673 i386 gensnmptree is called from base and not / o [2004/08/22] i386/70810 i386 [patch] Enable SMBus device on Asus P4B s 60 problems total. From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 14:15:07 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2AD616A4CE; Mon, 23 Aug 2004 14:15:07 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B70A443D31; Mon, 23 Aug 2004 14:15:07 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NEF7pT081806; Mon, 23 Aug 2004 14:15:07 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NEF736081802; Mon, 23 Aug 2004 14:15:07 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 14:15:07 GMT From: Tilman Linneweh Message-Id: <200408231415.i7NEF736081802@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-acpi@FreeBSD.org Subject: Re: i386/64002: acpi problem X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 14:15:08 -0000 Synopsis: acpi problem Responsible-Changed-From-To: freebsd-i386->freebsd-acpi Responsible-Changed-By: arved Responsible-Changed-When: Mon Aug 23 14:14:50 GMT 2004 Responsible-Changed-Why: Over to ACPI Maintainers http://www.freebsd.org/cgi/query-pr.cgi?pr=64002 From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 14:36:44 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65E8316A4CE; Mon, 23 Aug 2004 14:36:44 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 477AD43D41; Mon, 23 Aug 2004 14:36:44 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NEaiAF084082; Mon, 23 Aug 2004 14:36:44 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NEaiR2084078; Mon, 23 Aug 2004 14:36:44 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 14:36:44 GMT From: Tilman Linneweh Message-Id: <200408231436.i7NEaiR2084078@freefall.freebsd.org> To: essam_mohsin@hotmail.com, arved@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/65019: Nvidia video driver crash: i386_set_ldt X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 14:36:44 -0000 Synopsis: Nvidia video driver crash: i386_set_ldt State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Mon Aug 23 14:22:11 GMT 2004 State-Changed-Why: If your Xserver crashes, this is probably Nvidia's fault. Maybe this is fixed in the new Nvidia drivers. http://www.freebsd.org/cgi/query-pr.cgi?pr=65019 From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 15:05:37 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8EA416A4CE; Mon, 23 Aug 2004 15:05:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A63F43D1F; Mon, 23 Aug 2004 15:05:37 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NF5bsZ088857; Mon, 23 Aug 2004 15:05:37 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NF5bZa088853; Mon, 23 Aug 2004 15:05:37 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 15:05:37 GMT From: Tilman Linneweh Message-Id: <200408231505.i7NF5bZa088853@freefall.freebsd.org> To: freeside@newgen.ru, arved@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/62952: USB not working X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 15:05:37 -0000 Synopsis: USB not working State-Changed-From-To: open->feedback State-Changed-By: arved State-Changed-When: Mon Aug 23 15:05:02 GMT 2004 State-Changed-Why: Can you provide at least dmesg and error messages? http://www.freebsd.org/cgi/query-pr.cgi?pr=62952 From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 15:06:43 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03A7316A4CE; Mon, 23 Aug 2004 15:06:43 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D025E43D53; Mon, 23 Aug 2004 15:06:42 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NF6ghh088924; Mon, 23 Aug 2004 15:06:42 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NF6g1Q088920; Mon, 23 Aug 2004 15:06:42 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 15:06:42 GMT From: Tilman Linneweh Message-Id: <200408231506.i7NF6g1Q088920@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-sound@FreeBSD.org Subject: Re: i386/62519: Intel ICH4 (82801DB) sound card does not work on laptop X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 15:06:43 -0000 Old Synopsis: sound card does not work on laptop New Synopsis: Intel ICH4 (82801DB) sound card does not work on laptop Responsible-Changed-From-To: freebsd-i386->freebsd-sound Responsible-Changed-By: arved Responsible-Changed-When: Mon Aug 23 15:06:09 GMT 2004 Responsible-Changed-Why: Over to sound maintainers http://www.freebsd.org/cgi/query-pr.cgi?pr=62519 From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 15:26:52 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC37B16A4CE; Mon, 23 Aug 2004 15:26:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CBD143D1D; Mon, 23 Aug 2004 15:26:52 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NFQqTT090353; Mon, 23 Aug 2004 15:26:52 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NFQqEq090349; Mon, 23 Aug 2004 15:26:52 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 15:26:52 GMT From: Tilman Linneweh Message-Id: <200408231526.i7NFQqEq090349@freefall.freebsd.org> To: bilalsiddiqui@hotmail.com, arved@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/64795: Network Adapter not configuring X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 15:26:52 -0000 Synopsis: Network Adapter not configuring State-Changed-From-To: open->feedback State-Changed-By: arved State-Changed-When: Mon Aug 23 15:24:53 GMT 2004 State-Changed-Why: Chances are high that your card is supported by a later Version of FreeBSD. Please include the output of pciconf -lv entry if updating does not solve your problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=64795 From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 15:31:02 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 043FC16A4CE; Mon, 23 Aug 2004 15:31:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D972743D39; Mon, 23 Aug 2004 15:31:01 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NFV1ZF092291; Mon, 23 Aug 2004 15:31:01 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NFV1cb092287; Mon, 23 Aug 2004 15:31:01 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 15:31:01 GMT From: Tilman Linneweh Message-Id: <200408231531.i7NFV1cb092287@freefall.freebsd.org> To: vs@FreeBSD.org, admin@eugened.com, arved@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/67277: Realtek Gigabit Network Card is not detected in 4.10 but it works in 5.2.1 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 15:31:02 -0000 Synopsis: Realtek Gigabit Network Card is not detected in 4.10 but it works in 5.2.1 State-Changed-From-To: feedback->closed State-Changed-By: arved State-Changed-When: Mon Aug 23 15:30:22 GMT 2004 State-Changed-Why: Feedback timeout (one month). http://www.freebsd.org/cgi/query-pr.cgi?pr=67277 From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 20:26:36 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EE7F16A4CE; Mon, 23 Aug 2004 20:26:36 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C96943D46; Mon, 23 Aug 2004 20:26:36 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NKQatI036788; Mon, 23 Aug 2004 20:26:36 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NKQafx036784; Mon, 23 Aug 2004 20:26:36 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 20:26:36 GMT From: Tilman Linneweh Message-Id: <200408232026.i7NKQafx036784@freefall.freebsd.org> To: dzuck@1822direkt.com, arved@FreeBSD.org, freebsd-i386@FreeBSD.org, sos@FreeBSD.org Subject: Re: i386/59253: ata device reset hangs if device is dead X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 20:26:36 -0000 Synopsis: ata device reset hangs if device is dead Responsible-Changed-From-To: freebsd-i386->sos Responsible-Changed-By: arved Responsible-Changed-When: Mon Aug 23 20:26:17 GMT 2004 Responsible-Changed-Why: Over to ATA maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=59253 From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 20:31:06 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7CC816A4CF; Mon, 23 Aug 2004 20:31:06 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A198B43D48; Mon, 23 Aug 2004 20:31:06 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NKV6aU040175; Mon, 23 Aug 2004 20:31:06 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NKV5ZZ040140; Mon, 23 Aug 2004 20:31:05 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 20:31:05 GMT From: Tilman Linneweh Message-Id: <200408232031.i7NKV5ZZ040140@freefall.freebsd.org> To: djith@djith.nl, arved@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/66402: [boot] Boot menu crash: Stack overflow when booting from CD X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 20:31:07 -0000 Synopsis: [boot] Boot menu crash: Stack overflow when booting from CD State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Mon Aug 23 20:30:49 GMT 2004 State-Changed-Why: Duplicate of 67260 http://www.freebsd.org/cgi/query-pr.cgi?pr=66402 From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 20:36:17 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C891416A4CF; Mon, 23 Aug 2004 20:36:17 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9812E43D60; Mon, 23 Aug 2004 20:36:17 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NKaHl2041090; Mon, 23 Aug 2004 20:36:17 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NKaHdt041086; Mon, 23 Aug 2004 20:36:17 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 20:36:17 GMT From: Tilman Linneweh Message-Id: <200408232036.i7NKaHdt041086@freefall.freebsd.org> To: david@servision.net, arved@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/69755: compiling kernel with FAST_IPSEC fails X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 20:36:17 -0000 Synopsis: compiling kernel with FAST_IPSEC fails State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Mon Aug 23 20:35:19 GMT 2004 State-Changed-Why: This was fixed in rev 1.48 of src/sys/netinet6/in6_pcb.c. Unfortunately this was not MFC'd to RELENG_5_2. http://www.freebsd.org/cgi/query-pr.cgi?pr=69755 From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 20:48:32 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 665F216A4CE; Mon, 23 Aug 2004 20:48:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4717443D54; Mon, 23 Aug 2004 20:48:32 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NKmWWW041749; Mon, 23 Aug 2004 20:48:32 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NKmWef041744; Mon, 23 Aug 2004 20:48:32 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 20:48:32 GMT From: Tilman Linneweh Message-Id: <200408232048.i7NKmWef041744@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-i386@FreeBSD.org, marcel@FreeBSD.org Subject: Re: i386/55290: please MFC the PR:22971 (LinuxEmu; Implement missing SOUND_MIXER_WRITE_RECSRC ioctl) X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 20:48:32 -0000 Synopsis: please MFC the PR:22971 (LinuxEmu; Implement missing SOUND_MIXER_WRITE_RECSRC ioctl) Responsible-Changed-From-To: freebsd-i386->marcel Responsible-Changed-By: arved Responsible-Changed-When: Mon Aug 23 20:46:50 GMT 2004 Responsible-Changed-Why: Over to marcel, the committer, who committed that PR. Let him decide if he wants to MFC this. http://www.freebsd.org/cgi/query-pr.cgi?pr=55290 From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 20:53:13 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C8E516A4CE; Mon, 23 Aug 2004 20:53:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CBC043D55; Mon, 23 Aug 2004 20:53:13 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NKrDYB042062; Mon, 23 Aug 2004 20:53:13 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NKrD3T042058; Mon, 23 Aug 2004 20:53:13 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 20:53:13 GMT From: Tilman Linneweh Message-Id: <200408232053.i7NKrD3T042058@freefall.freebsd.org> To: progen@free.fr, arved@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/59298: Can't render anything with Blender / RADEON 7500 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 20:53:13 -0000 Synopsis: Can't render anything with Blender / RADEON 7500 State-Changed-From-To: open->feedback State-Changed-By: arved State-Changed-When: Mon Aug 23 20:52:22 GMT 2004 State-Changed-Why: This looks like a bug in blender, did you report it to the developers? Responsible-Changed-From-To: freebsd-i386->freebsd-ports Responsible-Changed-By: arved Responsible-Changed-When: Mon Aug 23 20:52:22 GMT 2004 Responsible-Changed-Why: ports issue. http://www.freebsd.org/cgi/query-pr.cgi?pr=59298 From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 20:56:30 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 965D416A4CE; Mon, 23 Aug 2004 20:56:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 788F643D6E; Mon, 23 Aug 2004 20:56:30 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NKuUxE042172; Mon, 23 Aug 2004 20:56:30 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NKuUMr042168; Mon, 23 Aug 2004 20:56:30 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 20:56:30 GMT From: Tilman Linneweh Message-Id: <200408232056.i7NKuUMr042168@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-acpi@FreeBSD.org Subject: Re: i386/67273: System Hangs with acpi and Xfree X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 20:56:30 -0000 Synopsis: System Hangs with acpi and Xfree Responsible-Changed-From-To: freebsd-i386->freebsd-acpi Responsible-Changed-By: arved Responsible-Changed-When: Mon Aug 23 20:55:53 GMT 2004 Responsible-Changed-Why: Yet another ACPI PR http://www.freebsd.org/cgi/query-pr.cgi?pr=67273 From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 21:04:35 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBE4816A4CE; Mon, 23 Aug 2004 21:04:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCDBD43D46; Mon, 23 Aug 2004 21:04:35 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NL4Ze8042698; Mon, 23 Aug 2004 21:04:35 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NL4ZiS042694; Mon, 23 Aug 2004 21:04:35 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 21:04:35 GMT From: Tilman Linneweh Message-Id: <200408232104.i7NL4ZiS042694@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-i386@FreeBSD.org, imp@FreeBSD.org Subject: Re: i386/67050: CardBus (PCI ?) resource allocation problem X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 21:04:36 -0000 Synopsis: CardBus (PCI ?) resource allocation problem Responsible-Changed-From-To: freebsd-i386->imp Responsible-Changed-By: arved Responsible-Changed-When: Mon Aug 23 21:03:38 GMT 2004 Responsible-Changed-Why: Over to imp, the Cardbus expert. http://www.freebsd.org/cgi/query-pr.cgi?pr=67050 From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 21:08:32 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E381E16A4CE; Mon, 23 Aug 2004 21:08:32 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1BF043D5A; Mon, 23 Aug 2004 21:08:32 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NL8Wu0046518; Mon, 23 Aug 2004 21:08:32 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NL8WRK046514; Mon, 23 Aug 2004 21:08:32 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 21:08:32 GMT From: Tilman Linneweh Message-Id: <200408232108.i7NL8WRK046514@freefall.freebsd.org> To: yoshiaki@kt.rim.or.jp, arved@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/67901: PS/2 mouse probrem X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 21:08:33 -0000 Synopsis: PS/2 mouse probrem State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Mon Aug 23 21:07:07 GMT 2004 State-Changed-Why: This has been backed out by jhb the day after you sent the PR. As a rule of thumb, problems with FreeBSD CURRENT should be discussed on the freebsd-current Mailinglist first. http://www.freebsd.org/cgi/query-pr.cgi?pr=67901 From owner-freebsd-i386@FreeBSD.ORG Mon Aug 23 21:45:02 2004 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6F8116A4CE; Mon, 23 Aug 2004 21:45:02 +0000 (GMT) Received: from smtp3.sentex.ca (smtp3.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EA5143D2F; Mon, 23 Aug 2004 21:45:02 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smtp3.sentex.ca (8.12.11/8.12.11) with ESMTP id i7NLivlg098702; Mon, 23 Aug 2004 17:44:57 -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.12.11/8.12.11) with ESMTP id i7NLj11g068836; Mon, 23 Aug 2004 17:45:01 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id A90AF7303F; Mon, 23 Aug 2004 17:45:01 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20040823214501.A90AF7303F@freebsd-current.sentex.ca> Date: Mon, 23 Aug 2004 17:45:01 -0400 (EDT) Subject: [current tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 21:45:03 -0000 TB --- 2004-08-23 20:09:52 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2004-08-23 20:09:52 - starting CURRENT tinderbox run for i386/pc98 TB --- 2004-08-23 20:09:52 - checking out the source tree TB --- 2004-08-23 20:09:52 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98 TB --- 2004-08-23 20:09:52 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2004-08-23 20:15:46 - building world (CFLAGS=-O2 -pipe) TB --- 2004-08-23 20:15:46 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-23 20:15:46 - /usr/bin/make -B buildworld >>> 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 TB --- 2004-08-23 21:20:10 - building generic kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-08-23 21:20:10 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-23 21:20:10 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Mon Aug 23 21:20:11 UTC 2004 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Mon Aug 23 21:33:50 UTC 2004 TB --- 2004-08-23 21:33:50 - generating LINT kernel config TB --- 2004-08-23 21:33:50 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src/sys/pc98/conf TB --- 2004-08-23 21:33:50 - /usr/bin/make -B LINT TB --- 2004-08-23 21:33:50 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-08-23 21:33:50 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-23 21:33:50 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Aug 23 21:33:50 UTC 2004 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/canbus.c awk -f /tinderbox/CURRENT/i386/pc98/src/sys/tools/makeobjops.awk /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/canbus_if.m -c ; cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred- stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline canbus_if.c cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/clock.c cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c: In function `fdioctl': /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2697: error: `FD_DEBUG' undeclared (first use in this function) /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2697: error: (Each undeclared identifier is reported only once /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2697: error: for each function it appears in.) *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/obj/pc98/tinderbox/CURRENT/i386/pc98/src/sys/LINT. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. TB --- 2004-08-23 21:45:01 - WARNING: /usr/bin/make returned exit code 1 TB --- 2004-08-23 21:45:01 - ERROR: failed to build lint kernel TB --- 2004-08-23 21:45:01 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Tue Aug 24 02:50:20 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A655616A4CE for ; Tue, 24 Aug 2004 02:50:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B88A43D1F for ; Tue, 24 Aug 2004 02:50:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i7O2oKQU096701 for ; Tue, 24 Aug 2004 02:50:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7O2oKwI096700; Tue, 24 Aug 2004 02:50:20 GMT (envelope-from gnats) Date: Tue, 24 Aug 2004 02:50:20 GMT Message-Id: <200408240250.i7O2oKwI096700@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Alejandro lanjoe9 Valenzuela Subject: Re: i386/68900: 5.x install CDs fail to boot on Toshiba Satellite5205 s503 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alejandro lanjoe9 Valenzuela List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 02:50:20 -0000 The following reply was made to PR i386/68900; it has been noted by GNATS. From: Alejandro lanjoe9 Valenzuela To: freebsd-gnats-submit@FreeBSD.org, lanjoe9@prodigy.net.mx Cc: Subject: Re: i386/68900: 5.x install CDs fail to boot on Toshiba Satellite 5205 s503 Date: Mon, 23 Aug 2004 21:44:01 -0500 It still fails when trying to install 5=2E3-Beta1=2C but I have seen two = new messages=2C something like = acpi=5Flink=3A empty IRQ=2E I will look up the exact message and post again=2E A few other PR=27s have given me an idea=2C I will try warm-booting with = windoze to see if it helps=2E=2E=2E=2E=2E=2E=2E = After much reading=2C I have come to suspect this is an acpi-related prob= lem=2C because it stops in the usb0=3A ohci line=2E I think fwohci is doi= ng something really nasty because it must be configured v=EDa acpi (as we= ll as the sound card)=2E fsckng MS =22open=22 standards=2E=2E=2E I really hope 5=2E3-R works=2C I don=27t want to wait until february 2005= Alejandro From owner-freebsd-i386@FreeBSD.ORG Tue Aug 24 04:35:11 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D77D16A4CE; Tue, 24 Aug 2004 04:35:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 566E843D60; Tue, 24 Aug 2004 04:35:11 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from freefall.freebsd.org (anholt@localhost [127.0.0.1]) i7O4ZB0k017064; Tue, 24 Aug 2004 04:35:11 GMT (envelope-from anholt@freefall.freebsd.org) Received: (from anholt@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7O4Z8Ee017058; Tue, 24 Aug 2004 04:35:08 GMT (envelope-from anholt) Date: Tue, 24 Aug 2004 04:35:08 GMT From: Eric Anholt Message-Id: <200408240435.i7O4Z8Ee017058@freefall.freebsd.org> To: thierry.delhaise@glconseil.com, anholt@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/66098: [hang] SMP machine hanging up when running shutdown [5.2.1] X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 04:35:11 -0000 Synopsis: [hang] SMP machine hanging up when running shutdown [5.2.1] State-Changed-From-To: open->closed State-Changed-By: anholt State-Changed-When: Tue Aug 24 04:34:25 GMT 2004 State-Changed-Why: Submitter reports problem solved after updating BIOS and FreeBSD. http://www.freebsd.org/cgi/query-pr.cgi?pr=66098 From owner-freebsd-i386@FreeBSD.ORG Tue Aug 24 06:05:43 2004 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8F3D16A4CE; Tue, 24 Aug 2004 06:05:43 +0000 (GMT) Received: from cmlapp14.siteprotect.com (cmlapp14.siteprotect.com [64.41.126.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id B311D43D41; Tue, 24 Aug 2004 06:05:43 +0000 (GMT) (envelope-from david@servision.net) Received: from samael.company.sv (212.199.134.193.forward.012.net.il [212.199.134.193]) by cmlapp14.siteprotect.com (Postfix) with ESMTP id 1501A31D6F; Tue, 24 Aug 2004 01:05:42 -0500 (CDT) Date: Tue, 24 Aug 2004 09:05:41 +0300 (Jerusalem Daylight Time) From: "David F. Halperovich" To: Tilman Linneweh In-Reply-To: <200408232036.i7NKaHdt041086@freefall.freebsd.org> Message-ID: References: <200408232036.i7NKaHdt041086@freefall.freebsd.org> X-X-Sender: david@servision.net@pop.servision.net MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: freebsd-i386@FreeBSD.org Subject: Re: i386/69755: compiling kernel with FAST_IPSEC fails X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 06:05:44 -0000 Well, I've "fixed" the problem by just commenting out the Ipv6 option in kernel. Worked fine for me. David F. Halperovich IT Manager SerVision http://www.servision.net phone : +972(2) 5350030 fax : +972(2) 5868683 mobile: +972(54)4833524 On Mon, 23 Aug 2004, Tilman Linneweh wrote: > Synopsis: compiling kernel with FAST_IPSEC fails > > State-Changed-From-To: open->closed > State-Changed-By: arved > State-Changed-When: Mon Aug 23 20:35:19 GMT 2004 > State-Changed-Why: > This was fixed in rev 1.48 of src/sys/netinet6/in6_pcb.c. > Unfortunately this was not MFC'd to RELENG_5_2. > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=69755 > From owner-freebsd-i386@FreeBSD.ORG Tue Aug 24 10:22:02 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05E5A16A4CE; Tue, 24 Aug 2004 10:22:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB94443D5E; Tue, 24 Aug 2004 10:22:01 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7OAM19L077266; Tue, 24 Aug 2004 10:22:01 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7OAM1I4077262; Tue, 24 Aug 2004 10:22:01 GMT (envelope-from arved) Date: Tue, 24 Aug 2004 10:22:01 GMT From: Tilman Linneweh Message-Id: <200408241022.i7OAM1I4077262@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-i386@FreeBSD.org, sos@FreeBSD.org Subject: Re: i386/68080: interrupt was seen but timeout fired (ata) X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 10:22:02 -0000 Synopsis: interrupt was seen but timeout fired (ata) Responsible-Changed-From-To: freebsd-i386->sos Responsible-Changed-By: arved Responsible-Changed-When: Tue Aug 24 10:21:44 GMT 2004 Responsible-Changed-Why: Over to ATA Maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=68080 From owner-freebsd-i386@FreeBSD.ORG Tue Aug 24 10:55:51 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C04B416A4CE; Tue, 24 Aug 2004 10:55:51 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A397543D2D; Tue, 24 Aug 2004 10:55:51 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7OAtpsN080500; Tue, 24 Aug 2004 10:55:51 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7OAtpNf080496; Tue, 24 Aug 2004 10:55:51 GMT (envelope-from arved) Date: Tue, 24 Aug 2004 10:55:51 GMT From: Tilman Linneweh Message-Id: <200408241055.i7OAtpNf080496@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-acpi@FreeBSD.org Subject: Re: i386/60817: FBSD-5.1/5.2-RC1 "fdc0: cmd 3 failed at out byte 1 of 3" X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 10:55:51 -0000 Synopsis: FBSD-5.1/5.2-RC1 "fdc0: cmd 3 failed at out byte 1 of 3" Responsible-Changed-From-To: freebsd-i386->freebsd-acpi Responsible-Changed-By: arved Responsible-Changed-When: Tue Aug 24 10:55:24 GMT 2004 Responsible-Changed-Why: This looks like an ACPI problem http://www.freebsd.org/cgi/query-pr.cgi?pr=60817 From owner-freebsd-i386@FreeBSD.ORG Tue Aug 24 10:59:31 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BACCA16A4CE; Tue, 24 Aug 2004 10:59:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BE7743D39; Tue, 24 Aug 2004 10:59:31 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7OAxVuw080580; Tue, 24 Aug 2004 10:59:31 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7OAxVbR080576; Tue, 24 Aug 2004 10:59:31 GMT (envelope-from arved) Date: Tue, 24 Aug 2004 10:59:31 GMT From: Tilman Linneweh Message-Id: <200408241059.i7OAxVbR080576@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-acpi@FreeBSD.org Subject: Re: i386/61703: ACPI + Sound + Boot = Reboot X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 10:59:31 -0000 Synopsis: ACPI + Sound + Boot = Reboot Responsible-Changed-From-To: freebsd-i386->freebsd-acpi Responsible-Changed-By: arved Responsible-Changed-When: Tue Aug 24 10:59:12 GMT 2004 Responsible-Changed-Why: Another problem with ACPI http://www.freebsd.org/cgi/query-pr.cgi?pr=61703 From owner-freebsd-i386@FreeBSD.ORG Tue Aug 24 11:01:53 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C762E16A4CF; Tue, 24 Aug 2004 11:01:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5E2C43D5F; Tue, 24 Aug 2004 11:01:53 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7OB1rrq080821; Tue, 24 Aug 2004 11:01:53 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7OB1rs8080817; Tue, 24 Aug 2004 11:01:53 GMT (envelope-from arved) Date: Tue, 24 Aug 2004 11:01:53 GMT From: Tilman Linneweh Message-Id: <200408241101.i7OB1rs8080817@freefall.freebsd.org> To: skalman@skalman.net, arved@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/61889: Have to reinsert pccard after reboot X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 11:01:53 -0000 Synopsis: Have to reinsert pccard after reboot State-Changed-From-To: open->feedback State-Changed-By: arved State-Changed-When: Tue Aug 24 11:00:48 GMT 2004 State-Changed-Why: Can you give some more information about your Laptop, especially about the cardbus controller (e.g. dmesg). Does this happen with all cards, or just this specifice one? http://www.freebsd.org/cgi/query-pr.cgi?pr=61889 From owner-freebsd-i386@FreeBSD.ORG Tue Aug 24 11:04:05 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26B1E16A4CF; Tue, 24 Aug 2004 11:04:05 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08AC443D64; Tue, 24 Aug 2004 11:04:05 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7OB44ND080890; Tue, 24 Aug 2004 11:04:04 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7OB44QM080886; Tue, 24 Aug 2004 11:04:04 GMT (envelope-from arved) Date: Tue, 24 Aug 2004 11:04:04 GMT From: Tilman Linneweh Message-Id: <200408241104.i7OB44QM080886@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-acpi@FreeBSD.org Subject: Re: i386/62855: AE_NO_ACPI_TABLES on systems that (purportedly) has ACPI X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 11:04:05 -0000 Synopsis: AE_NO_ACPI_TABLES on systems that (purportedly) has ACPI Responsible-Changed-From-To: freebsd-i386->freebsd-acpi Responsible-Changed-By: arved Responsible-Changed-When: Tue Aug 24 11:03:01 GMT 2004 Responsible-Changed-Why: I think this has been "fixed" in CURRENT by automagical disabling ACPI on older boards, but assign to freebsd-acpi for confirmation. http://www.freebsd.org/cgi/query-pr.cgi?pr=62855 From owner-freebsd-i386@FreeBSD.ORG Tue Aug 24 11:11:53 2004 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BFEF16A4CE; Tue, 24 Aug 2004 11:11:53 +0000 (GMT) Received: from smtp3.sentex.ca (smtp3.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FE8243D3F; Tue, 24 Aug 2004 11:11:52 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smtp3.sentex.ca (8.12.11/8.12.11) with ESMTP id i7OBBpHi017091; Tue, 24 Aug 2004 07:11:51 -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.12.11/8.12.11) with ESMTP id i7OBBqx6030411; Tue, 24 Aug 2004 07:11:52 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id B6A4E7303F; Tue, 24 Aug 2004 07:11:51 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20040824111151.B6A4E7303F@freebsd-current.sentex.ca> Date: Tue, 24 Aug 2004 07:11:51 -0400 (EDT) Subject: [current tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 11:11:53 -0000 TB --- 2004-08-24 09:36:44 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2004-08-24 09:36:44 - starting CURRENT tinderbox run for i386/pc98 TB --- 2004-08-24 09:36:44 - checking out the source tree TB --- 2004-08-24 09:36:44 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98 TB --- 2004-08-24 09:36:44 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2004-08-24 09:42:37 - building world (CFLAGS=-O2 -pipe) TB --- 2004-08-24 09:42:37 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-24 09:42:37 - /usr/bin/make -B buildworld >>> 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 TB --- 2004-08-24 10:46:59 - building generic kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-08-24 10:46:59 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-24 10:46:59 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Tue Aug 24 10:46:59 UTC 2004 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for GENERIC completed on Tue Aug 24 11:00:40 UTC 2004 TB --- 2004-08-24 11:00:40 - generating LINT kernel config TB --- 2004-08-24 11:00:40 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src/sys/pc98/conf TB --- 2004-08-24 11:00:40 - /usr/bin/make -B LINT TB --- 2004-08-24 11:00:40 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-08-24 11:00:40 - cd /home/tinderbox/sandbox/CURRENT/i386/pc98/src TB --- 2004-08-24 11:00:40 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Aug 24 11:00:41 UTC 2004 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/canbus.c awk -f /tinderbox/CURRENT/i386/pc98/src/sys/tools/makeobjops.awk /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/canbus_if.m -c ; cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred- stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline canbus_if.c cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/clock.c cc -c -O2 -pipe -fno-strict-aliasing -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/pc98/src/sys -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/pc98/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror -finstrument-functions -Wno-inline /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c: In function `fdioctl': /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2697: error: `FD_DEBUG' undeclared (first use in this function) /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2697: error: (Each undeclared identifier is reported only once /tinderbox/CURRENT/i386/pc98/src/sys/pc98/pc98/fd.c:2697: error: for each function it appears in.) *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/obj/pc98/tinderbox/CURRENT/i386/pc98/src/sys/LINT. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. TB --- 2004-08-24 11:11:51 - WARNING: /usr/bin/make returned exit code 1 TB --- 2004-08-24 11:11:51 - ERROR: failed to build lint kernel TB --- 2004-08-24 11:11:51 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Tue Aug 24 11:16:06 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C22016A4D6; Tue, 24 Aug 2004 11:16:06 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 992C243D48; Tue, 24 Aug 2004 11:16:05 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7OBG5nX085105; Tue, 24 Aug 2004 11:16:05 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7OBG57V085101; Tue, 24 Aug 2004 11:16:05 GMT (envelope-from arved) Date: Tue, 24 Aug 2004 11:16:05 GMT From: Tilman Linneweh Message-Id: <200408241116.i7OBG57V085101@freefall.freebsd.org> To: freebsdbugs@xyzzy.cjb.net, arved@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/68087: wget core dumps with: Assertion failed: (msecs >= 0), function calc_rate, file retr.c, line 262. X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 11:16:06 -0000 Synopsis: wget core dumps with: Assertion failed: (msecs >= 0), function calc_rate, file retr.c, line 262. State-Changed-From-To: feedback->open State-Changed-By: arved State-Changed-When: Tue Aug 24 11:14:20 GMT 2004 State-Changed-Why: feedback arrived http://www.freebsd.org/cgi/query-pr.cgi?pr=68087 From owner-freebsd-i386@FreeBSD.ORG Tue Aug 24 11:16:46 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EF8C16A4CE; Tue, 24 Aug 2004 11:16:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4921643D39; Tue, 24 Aug 2004 11:16:46 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7OBGktj085150; Tue, 24 Aug 2004 11:16:46 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7OBGk04085146; Tue, 24 Aug 2004 11:16:46 GMT (envelope-from arved) Date: Tue, 24 Aug 2004 11:16:46 GMT From: Tilman Linneweh Message-Id: <200408241116.i7OBGk04085146@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-acpi@FreeBSD.org Subject: Re: i386/68219: ACPI + snd_maestro3 problem X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 11:16:46 -0000 Synopsis: ACPI + snd_maestro3 problem Responsible-Changed-From-To: freebsd-i386->freebsd-acpi Responsible-Changed-By: arved Responsible-Changed-When: Tue Aug 24 11:16:25 GMT 2004 Responsible-Changed-Why: Over to ACPI maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=68219 From owner-freebsd-i386@FreeBSD.ORG Tue Aug 24 11:22:47 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E272F16A4CE; Tue, 24 Aug 2004 11:22:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C139543D4C; Tue, 24 Aug 2004 11:22:47 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7OBMlKh085460; Tue, 24 Aug 2004 11:22:47 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7OBMl4x085456; Tue, 24 Aug 2004 11:22:47 GMT (envelope-from arved) Date: Tue, 24 Aug 2004 11:22:47 GMT From: Tilman Linneweh Message-Id: <200408241122.i7OBMl4x085456@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-i386@FreeBSD.org, harti@FreeBSD.org Subject: Re: i386/70673: gensnmptree is called from base and not /usr/obj during buildworld X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 11:22:48 -0000 Synopsis: gensnmptree is called from base and not /usr/obj during buildworld Responsible-Changed-From-To: freebsd-i386->harti Responsible-Changed-By: arved Responsible-Changed-When: Tue Aug 24 11:22:11 GMT 2004 Responsible-Changed-Why: Harti's area http://www.freebsd.org/cgi/query-pr.cgi?pr=70673 From owner-freebsd-i386@FreeBSD.ORG Tue Aug 24 16:00:40 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1284316A4CF for ; Tue, 24 Aug 2004 16:00:40 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F39CF43D5A for ; Tue, 24 Aug 2004 16:00:39 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i7OG0dJF022135 for ; Tue, 24 Aug 2004 16:00:39 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7OG0dQp022134; Tue, 24 Aug 2004 16:00:39 GMT (envelope-from gnats) Resent-Date: Tue, 24 Aug 2004 16:00:39 GMT Resent-Message-Id: <200408241600.i7OG0dQp022134@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, "Kolya Karpov" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE8DE16A4CE for ; Tue, 24 Aug 2004 15:55:49 +0000 (GMT) Received: from smtp2.apollo.lv (smtp2.apollo.lv [80.232.168.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id A313943D1F for ; Tue, 24 Aug 2004 15:55:48 +0000 (GMT) (envelope-from kolya@astrons.org) Received: by smtp2.apollo.lv (CommuniGate Pro PIPE 4.2) with PIPE id 23560476; Tue, 24 Aug 2004 18:15:38 +0300 Received: from [81.198.23.153] (HELO wskolya) by smtp2.apollo.lv (CommuniGate Pro SMTP 4.2) with ESMTP id 23560467 for FreeBSD-gnats-submit@freebsd.org; Tue, 24 Aug 2004 18:15:31 +0300 Message-Id: <002e01c489f2$d76025b0$9917c651@wskolya> Date: Tue, 24 Aug 2004 18:55:56 +0300 From: "Kolya Karpov" To: Subject: i386/70904: ipfilter ipnat problem with h323 proxy support X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 16:00:40 -0000 >Number: 70904 >Category: i386 >Synopsis: ipfilter ipnat problem with h323 proxy support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 24 16:00:39 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Kolya Karpov >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: Astrons LTD >Environment: System: FreeBSD ns3.astrons.lv 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #0: Sat Aug 21 15:38:30 EEST 2004 root@ns3.apollo.lv:/usr/src/sys/i386/compile/NS i386 FreeBSD 5.2.1-RELEASE-p9 #0: Sat Aug 21 15:38:30 EEST 2004 root@ns3.apollo.lv:/usr/src/sys/i386/compile/NS Preloaded elf kernel "/boot/kernel/kernel" at 0xc0676000. Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Pentium/P54C (150.00-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x52c Stepping = 12 Features=0x1bf real memory = 33554432 (32 MB) avail memory = 27267072 (26 MB) Intel Pentium detected, installing workaround for F00F bug npx0: [FAST] npx0: on motherboard npx0: INT 16 interface pcibios: BIOS version 2.10 Using $PIR table, 5 entries at 0xc00fd7b0 pcib0: at pcibus 0 on motherboard pci0: on pcib0 pci_cfgintr: 0:17 INTA BIOS irq 12 pci_cfgintr: 0:18 INTA BIOS irq 9 pci_cfgintr: 0:19 INTA BIOS irq 10 pci_cfgintr: 0:20 INTA BIOS irq 11 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xf000-0xf00f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata0: [MPSAFE] ata1: at 0x170 irq 15 on atapci0 ata1: [MPSAFE] rl0: port 0x6100-0x61ff mem 0xe4001000-0xe40010ff irq 12 at device 17.0 on pci0 rl0: Ethernet address: 00:30:4f:1b:b3:06 miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto rl1: port 0x6200-0x62ff mem 0xe4000000-0xe40000ff irq 9 at device 18.0 on pci0 rl1: Ethernet address: 00:40:f4:31:1a:ca miibus1: on rl1 rlphy1: on miibus1 rlphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pci0: at device 19.0 (no driver attached) rl2: port 0x6300-0x63ff mem 0xe4002000-0xe40020ff irq 11 at device 20.0 on pci0 rl2: Ethernet address: 00:e0:7d:f9:e0:34 miibus2: on rl2 rlphy2: on miibus2 rlphy2: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto orm0: