From owner-freebsd-i386@FreeBSD.ORG Sun Oct 31 12:15:57 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 261A116A4CE; Sun, 31 Oct 2004 12:15:57 +0000 (GMT) Received: from mailout1.pacific.net.au (mailout1.pacific.net.au [61.8.0.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 659A643D1F; Sun, 31 Oct 2004 12:15:56 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.0.87])i9VCFpGx015343; Sun, 31 Oct 2004 23:15:51 +1100 Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) i9VCFhxc023774; Sun, 31 Oct 2004 23:15:49 +1100 Date: Sun, 31 Oct 2004 23:15:43 +1100 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: "J. Porter Clark" In-Reply-To: <200410302307.i9UN7Cg0045288@www.freebsd.org> Message-ID: <20041031223051.R15841@delplex.bde.org> References: <200410302307.i9UN7Cg0045288@www.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-gnats-submit@FreeBSD.org cc: freebsd-i386@FreeBSD.org Subject: Re: i386/73328: top shows NICE as -111 on processes started by idprio 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, 31 Oct 2004 12:15:57 -0000 On Sat, 30 Oct 2004, J. Porter Clark wrote: > >Description: > The "top" program shows a NICE value of -111 for programs started by > idprio 31. On 4.X, the "correct" value of 52 is shown. > >How-To-Repeat: > As root, run "idprio 31 sleep 500 &". > Then run "top -Uroot". The sleep process is listed as having a NICE value > of -111. Other values besides 31 produce the same result. > >Fix: > My guess is that it's probably in /usr/src/usr.bin/top/machine.c about line 747 or so, but I haven't had time to dig into it. I use this fix. It may be out of date, and the comments about the "base" priority are too verbose and not quite right. %%% Index: machine.c =================================================================== RCS file: /home/ncvs/src/usr.bin/top/machine.c,v retrieving revision 1.51 diff -u -2 -r1.51 machine.c --- machine.c 6 Jun 2004 19:59:06 -0000 1.51 +++ machine.c 7 Jun 2004 04:37:20 -0000 @@ -573,18 +573,67 @@ smpmode ? smp_Proc_format : up_Proc_format, pp->ki_pid, - namelength, namelength, - (*get_userid)(pp->ki_ruid), - pp->ki_pri.pri_level - PZERO, - - /* - * normal time -> nice value -20 - +20 - * real time 0 - 31 -> nice value -52 - -21 - * idle time 0 - 31 -> nice value +21 - +52 + namelength, namelength, (*get_userid)(pp->ki_ruid), + pp->ki_pri.pri_level - PZERO, + /*- + * Mapping from various disorganized priority schemes to ordered + * pseudo-nice values: + * + * interrupt thread base pri 0 - 63 -> nice -180 - -117 + * top half kernel thread base pri 64 - 127 -> nice -116 - -53 + * realtime user threads rtprio 0 - 31 -> nice -52 - -21 + * normal user threads nice -20 - +20 -> nice -20 - +20 + * idle user threads idprio 0 - 31 -> nice +21 - +52 + * + * The number of interest is really the "base" priority of the + * process, not the niceness of the process directly. The base + * priority should be what is is td->td_base_pri in the kernel, + * which is ki_pri.pri_native here. In practice, that can't + * be used directly and the workarounds are complicated because + * of the following bugs: + * o td->td_base_pri is changed by priority propagation and + * not even restored. Thus it cannot be used to determine + * the priority class. The other priorities in k_pri can + * be used for this, but they are set inconsistently too so + * there is no one place that determines the correct base + * priority. + * o td->td_base_pri is not set to a useful value for normal + * user threads. It is initialized to 0 and only changed + * by priority propagation. Workaround: use the actual + * nice value for the "base priority" of normal user + * threads. + * o kg->kg_user_pri (pri_user here) is not set to a useful + * value for kernel threads. It is initialized to PUSER + * and never changed. Something like it should be used + * for all classes of threads to hold the previous priority + * during priority propagation. Then there might not need + * to be a special variable for the user -> kernel + * transitions (which are a type of priority propagation). + * I think a stack of such variables is needed in general + * though -- kg->kg_user_pri is special because it is at + * the top. + * + * We scale the base priority so that it agrees with the + * historical nice value for normal user threads, although this + * gives negative numbers for higher priority threads. + * + * PRI_BASE() strips the fifo scheduling bit from the priority + * class. This is not relevant for the conversion to niceness, + * but it should be shown somewhere other as a raw number in + * an abnormal ps format. We don't use PRI_IS_REALTIME() + * because there is no corresponding classification macro for + * non-realtime priority classes and the details are too + * messy to be hidden in macros. + * + * KNF indent -ci4 is intentionally violated here. */ - (pp->ki_pri.pri_class == PRI_TIMESHARE ? - pp->ki_nice - NZERO : - (PRI_IS_REALTIME(pp->ki_pri.pri_class) ? - (PRIO_MIN - 1 - (PRI_MAX_REALTIME - pp->ki_pri.pri_level)) : - (PRIO_MAX + 1 + pp->ki_pri.pri_level - PRI_MIN_IDLE))), + PRI_BASE(pp->ki_pri.pri_class) == PRI_ITHD ? + PRIO_MIN + (pp->ki_pri.pri_native - PRI_MIN_TIMESHARE) : + PRI_BASE(pp->ki_pri.pri_class) == PRI_REALTIME ? + PRIO_MIN + (pp->ki_pri.pri_user - PRI_MIN_TIMESHARE) : + PRI_BASE(pp->ki_pri.pri_class) == PRI_TIMESHARE ? + pp->ki_nice - NZERO : + PRI_BASE(pp->ki_pri.pri_class) == PRI_IDLE ? + PRIO_MAX + 1 + (pp->ki_pri.pri_user - PRI_MIN_IDLE) : + 666, format_k2(PROCSIZE(pp)), format_k2(pagetok(pp->ki_rssize)), %%% This area is broken in ps too. The most obvious ones are: - My ntpd process (which has realtime priority 0 and is correctly displayed by top as having "nice" -52) is displayed by `ps -o rtprio' as having priority "real:12". The bogus 12 is just ntpd's current priority less PZERO. This bug is the same as one of the ones fixed above. It is that pri_level gives the current priority so it gives a wrong value to subtract from when the process is running at an elevated priority in kernel mode. top and ps seem to get this wrong in RELENG_4 too. - ps.1 says that `-o rtprio' causes a display of "101" for non-rtprio processes, but the actual display is "normal" for normal ones and a "%u.%u" format for unknown ones. The man page became inconsistent with the code about "101" back in 1998 in rev.1.26 of ps/print.c. I think unknown cases occur for at least POSIX scheduling classes. Bruce From owner-freebsd-i386@FreeBSD.ORG Sun Oct 31 12:20: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 90AC116A4CF for ; Sun, 31 Oct 2004 12:20:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69B1C43D48 for ; Sun, 31 Oct 2004 12:20: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 i9VCKQRP025320 for ; Sun, 31 Oct 2004 12:20:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i9VCKQgB025319; Sun, 31 Oct 2004 12:20:26 GMT (envelope-from gnats) Date: Sun, 31 Oct 2004 12:20:26 GMT Message-Id: <200410311220.i9VCKQgB025319@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Bruce Evans Subject: Re: i386/73328: top shows NICE as -111 on processes started by idprio X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Bruce Evans List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Oct 2004 12:20:26 -0000 The following reply was made to PR i386/73328; it has been noted by GNATS. From: Bruce Evans To: "J. Porter Clark" Cc: freebsd-gnats-submit@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/73328: top shows NICE as -111 on processes started by idprio Date: Sun, 31 Oct 2004 23:15:43 +1100 (EST) On Sat, 30 Oct 2004, J. Porter Clark wrote: > >Description: > The "top" program shows a NICE value of -111 for programs started by > idprio 31. On 4.X, the "correct" value of 52 is shown. > >How-To-Repeat: > As root, run "idprio 31 sleep 500 &". > Then run "top -Uroot". The sleep process is listed as having a NICE value > of -111. Other values besides 31 produce the same result. > >Fix: > My guess is that it's probably in /usr/src/usr.bin/top/machine.c about line 747 or so, but I haven't had time to dig into it. I use this fix. It may be out of date, and the comments about the "base" priority are too verbose and not quite right. %%% Index: machine.c =================================================================== RCS file: /home/ncvs/src/usr.bin/top/machine.c,v retrieving revision 1.51 diff -u -2 -r1.51 machine.c --- machine.c 6 Jun 2004 19:59:06 -0000 1.51 +++ machine.c 7 Jun 2004 04:37:20 -0000 @@ -573,18 +573,67 @@ smpmode ? smp_Proc_format : up_Proc_format, pp->ki_pid, - namelength, namelength, - (*get_userid)(pp->ki_ruid), - pp->ki_pri.pri_level - PZERO, - - /* - * normal time -> nice value -20 - +20 - * real time 0 - 31 -> nice value -52 - -21 - * idle time 0 - 31 -> nice value +21 - +52 + namelength, namelength, (*get_userid)(pp->ki_ruid), + pp->ki_pri.pri_level - PZERO, + /*- + * Mapping from various disorganized priority schemes to ordered + * pseudo-nice values: + * + * interrupt thread base pri 0 - 63 -> nice -180 - -117 + * top half kernel thread base pri 64 - 127 -> nice -116 - -53 + * realtime user threads rtprio 0 - 31 -> nice -52 - -21 + * normal user threads nice -20 - +20 -> nice -20 - +20 + * idle user threads idprio 0 - 31 -> nice +21 - +52 + * + * The number of interest is really the "base" priority of the + * process, not the niceness of the process directly. The base + * priority should be what is is td->td_base_pri in the kernel, + * which is ki_pri.pri_native here. In practice, that can't + * be used directly and the workarounds are complicated because + * of the following bugs: + * o td->td_base_pri is changed by priority propagation and + * not even restored. Thus it cannot be used to determine + * the priority class. The other priorities in k_pri can + * be used for this, but they are set inconsistently too so + * there is no one place that determines the correct base + * priority. + * o td->td_base_pri is not set to a useful value for normal + * user threads. It is initialized to 0 and only changed + * by priority propagation. Workaround: use the actual + * nice value for the "base priority" of normal user + * threads. + * o kg->kg_user_pri (pri_user here) is not set to a useful + * value for kernel threads. It is initialized to PUSER + * and never changed. Something like it should be used + * for all classes of threads to hold the previous priority + * during priority propagation. Then there might not need + * to be a special variable for the user -> kernel + * transitions (which are a type of priority propagation). + * I think a stack of such variables is needed in general + * though -- kg->kg_user_pri is special because it is at + * the top. + * + * We scale the base priority so that it agrees with the + * historical nice value for normal user threads, although this + * gives negative numbers for higher priority threads. + * + * PRI_BASE() strips the fifo scheduling bit from the priority + * class. This is not relevant for the conversion to niceness, + * but it should be shown somewhere other as a raw number in + * an abnormal ps format. We don't use PRI_IS_REALTIME() + * because there is no corresponding classification macro for + * non-realtime priority classes and the details are too + * messy to be hidden in macros. + * + * KNF indent -ci4 is intentionally violated here. */ - (pp->ki_pri.pri_class == PRI_TIMESHARE ? - pp->ki_nice - NZERO : - (PRI_IS_REALTIME(pp->ki_pri.pri_class) ? - (PRIO_MIN - 1 - (PRI_MAX_REALTIME - pp->ki_pri.pri_level)) : - (PRIO_MAX + 1 + pp->ki_pri.pri_level - PRI_MIN_IDLE))), + PRI_BASE(pp->ki_pri.pri_class) == PRI_ITHD ? + PRIO_MIN + (pp->ki_pri.pri_native - PRI_MIN_TIMESHARE) : + PRI_BASE(pp->ki_pri.pri_class) == PRI_REALTIME ? + PRIO_MIN + (pp->ki_pri.pri_user - PRI_MIN_TIMESHARE) : + PRI_BASE(pp->ki_pri.pri_class) == PRI_TIMESHARE ? + pp->ki_nice - NZERO : + PRI_BASE(pp->ki_pri.pri_class) == PRI_IDLE ? + PRIO_MAX + 1 + (pp->ki_pri.pri_user - PRI_MIN_IDLE) : + 666, format_k2(PROCSIZE(pp)), format_k2(pagetok(pp->ki_rssize)), %%% This area is broken in ps too. The most obvious ones are: - My ntpd process (which has realtime priority 0 and is correctly displayed by top as having "nice" -52) is displayed by `ps -o rtprio' as having priority "real:12". The bogus 12 is just ntpd's current priority less PZERO. This bug is the same as one of the ones fixed above. It is that pri_level gives the current priority so it gives a wrong value to subtract from when the process is running at an elevated priority in kernel mode. top and ps seem to get this wrong in RELENG_4 too. - ps.1 says that `-o rtprio' causes a display of "101" for non-rtprio processes, but the actual display is "normal" for normal ones and a "%u.%u" format for unknown ones. The man page became inconsistent with the code about "101" back in 1998 in rev.1.26 of ps/print.c. I think unknown cases occur for at least POSIX scheduling classes. Bruce From owner-freebsd-i386@FreeBSD.ORG Sun Oct 31 19:48:46 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 B54C816A4CE; Sun, 31 Oct 2004 19:48:46 +0000 (GMT) Received: from x500msfc.msfc.nasa.gov (x500msfc.msfc.nasa.gov [198.116.111.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35CBD43D53; Sun, 31 Oct 2004 19:48:46 +0000 (GMT) (envelope-from jpc@drum.msfc.nasa.gov) Received: from drum.msfc.nasa.gov by x500msfc.msfc.nasa.gov with ESMTP; Sun, 31 Oct 2004 13:48:45 -0600 Received: by drum.msfc.nasa.gov (Postfix, from userid 134) id 26EE5343; Sun, 31 Oct 2004 13:48:45 -0600 (CST) Date: Sun, 31 Oct 2004 13:48:45 -0600 From: "J. Porter Clark" To: Bruce Evans Message-Id: <20041031194845.GA35420@drum.msfc.nasa.gov> References: <200410302307.i9UN7Cg0045288@www.freebsd.org> <20041031223051.R15841@delplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20041031223051.R15841@delplex.bde.org> Organization: http://www.msfc.nasa.gov/ X-PGP-Key-ID: 0x677B780D User-Agent: Mutt/1.5.6i cc: freebsd-gnats-submit@FreeBSD.org cc: freebsd-i386@FreeBSD.org Subject: Re: i386/73328: top shows NICE as -111 on processes started by idprio 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, 31 Oct 2004 19:48:46 -0000 On Sun, Oct 31, 2004 at 11:15:43PM +1100, Bruce Evans wrote: > > I use this fix. It may be out of date, and the comments about the "base" > priority are too verbose and not quite right. Seems to work, offset by a couple hundred lines. Thanks! > This area is broken in ps too. The most obvious ones are: Yes, I had noticed that ps's output is somewhat goofy in these cases. -- J. Porter Clark j.porter.clark@nasa.gov NASA/MSFC Flight & Ground Computers Branch (EI31) From owner-freebsd-i386@FreeBSD.ORG Sun Oct 31 19:50:33 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 DC71416A4CE for ; Sun, 31 Oct 2004 19:50:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEF7243D48 for ; Sun, 31 Oct 2004 19:50:33 +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 i9VJoXb0070015 for ; Sun, 31 Oct 2004 19:50:33 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i9VJoXql070014; Sun, 31 Oct 2004 19:50:33 GMT (envelope-from gnats) Date: Sun, 31 Oct 2004 19:50:33 GMT Message-Id: <200410311950.i9VJoXql070014@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: "J. Porter Clark" Subject: Re: i386/73328: top shows NICE as -111 on processes started by idprio X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "J. Porter Clark" List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Oct 2004 19:50:34 -0000 The following reply was made to PR i386/73328; it has been noted by GNATS. From: "J. Porter Clark" To: Bruce Evans Cc: freebsd-gnats-submit@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/73328: top shows NICE as -111 on processes started by idprio Date: Sun, 31 Oct 2004 13:48:45 -0600 On Sun, Oct 31, 2004 at 11:15:43PM +1100, Bruce Evans wrote: > > I use this fix. It may be out of date, and the comments about the "base" > priority are too verbose and not quite right. Seems to work, offset by a couple hundred lines. Thanks! > This area is broken in ps too. The most obvious ones are: Yes, I had noticed that ps's output is somewhat goofy in these cases. -- J. Porter Clark j.porter.clark@nasa.gov NASA/MSFC Flight & Ground Computers Branch (EI31) From owner-freebsd-i386@FreeBSD.ORG Mon Nov 1 11:02:04 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 99CC416A4D2 for ; Mon, 1 Nov 2004 11:02:04 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C59E43D45 for ; Mon, 1 Nov 2004 11:02:04 +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 iA1B24Lx094203 for ; Mon, 1 Nov 2004 11:02:04 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA1B22aG094194 for freebsd-i386@freebsd.org; Mon, 1 Nov 2004 11:02:02 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 1 Nov 2004 11:02:02 GMT Message-Id: <200411011102.iA1B22aG094194@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, 01 Nov 2004 11:02:04 -0000 Current FreeBSD problem reports Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/10/06] i386/57673 i386 [disklabel] Odd/dangerous disklabel behav o [2004/02/16] i386/62902 i386 Data Corruption on Dell PE 600SC (Server o [2004/03/25] i386/64716 i386 [nis] mv crashes FreeBSD 5.2.1-p3 o [2004/04/16] i386/65646 i386 FreeBSD suddenly turns off the power o [2004/04/28] i386/66039 i386 panic: system panic with file system corr o [2004/05/04] i386/66248 i386 [panic] bootloader is confused by booting o [2004/05/27] i386/67260 i386 [boot] stack overflow after boot menu whe o [2004/09/05] i386/71395 i386 Data corrupted on Serverworks CG-SL chips o [2004/09/09] i386/71538 i386 [install] multi-homed install trashes exi o [2004/10/28] i386/73244 i386 [SMP] single user mode hangs, SMP freezes 10 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/03/13] i386/25781 i386 Statclocks cannot be disabled 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/11] i386/53200 i386 [boot] 5.1-RC1 SMP kernel boot gags at "A o [2003/06/16] i386/53382 i386 Repetable panics in ffs_vget() on Prolian o [2003/06/23] i386/53620 i386 [install] Kernel panics / reboots during 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/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/09/17] i386/56937 i386 panic: system panic during high network l o [2003/09/20] i386/57043 i386 [hang] ar driver with 2 port PCI card loc f [2003/09/22] i386/57097 i386 [hang] Promise Ultra 100 TX2 causes locku 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/09] i386/57818 i386 4.9-RC panics when kernel is built with a o [2003/10/16] i386/58139 i386 [panic] -CURRENT panics on Thinkpad A31p 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/25] i386/59683 i386 panic: signal 12 4.9-STABLE - frequent cr o [2003/11/26] i386/59701 i386 System hungup, after resume from suspend. o [2003/12/02] i386/59895 i386 [hang] system hangs from disk IO errors [ o [2003/12/02] i386/59897 i386 [hang] problems with swap-pager with grea f [2003/12/02] i386/59898 i386 [boot] pxe boot: BTX halted o [2003/12/17] i386/60344 i386 [boot] Intel ICH5 SATA RAID boot problems o [2003/12/27] i386/60603 i386 dd causes error when copying cd from ATA o [2003/12/27] i386/60633 i386 [hang] SIS motherboard with the SIS 5591 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/08] i386/61063 i386 [ata] ata hangs in smp system f [2004/01/10] i386/61163 i386 [boot] "/:write failed, filesystem is ful o [2004/01/12] i386/61253 i386 [panic] page fault on installation freebs 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/20] i386/61646 i386 [workaround] Strange irq20 weirdness caus o [2004/01/22] i386/61705 i386 [ntp] Random "bus errors" on 5.2-RELEASE o [2004/01/22] i386/61709 i386 [panic] 5.2-REL i386 Crashes hard; panics o [2004/01/23] i386/61804 i386 [panic] panic with hitachi travelstar USB o [2004/01/25] i386/61890 i386 [fdisk] FDisk uses incorrect calculations f [2004/02/02] i386/62248 i386 [boot] 5.2 current hangs on boot o [2004/02/02] i386/62280 i386 em0 broken after resume in 5.2-CURRENT 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/15] i386/62888 i386 ad4: WARNING - WRITE_DMA interrupt was se 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/63430 i386 [ata] TIMEOUT - ATA READ o [2004/02/27] i386/63441 i386 [panic] fatal trap 12 in pmap.c [4.9 with 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/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/63992 i386 [hang] XFree86 4.3 hangs on IBM ThinkPad 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) fr 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/25] i386/64727 i386 [boot] cannot find disk on asus p4s533mx o [2004/04/03] i386/65137 i386 [boot] 5.2.1 Intall Boot from floppies pa o [2004/04/14] i386/65523 i386 [patch] PXE loader malfunction in multipl o [2004/04/19] i386/65774 i386 [sysinstall] cannot run repair disk when o [2004/04/19] i386/65775 i386 [panic] Transmeta crusoe without longrun 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] kern/65920 i386 [nwfs] Mounted Netware filesystem behaves f [2004/04/25] i386/65954 i386 [panic] Sil0680 panic [5.2.1-p5] o [2004/04/29] i386/66087 i386 [install] hang at PCI config [5.2.1] o [2004/05/01] i386/66133 i386 [boot] nvidia motherboard installer locks o [2004/05/06] i386/66306 i386 pnpbios_identify() queries for more devic f [2004/05/06] i386/66339 i386 [hang] XFree86 initialization with an Lap 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/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 [kbd] smth was broken in keyboard process o [2004/06/11] i386/67833 i386 [boot] 4.10 does not boot after enabling f [2004/06/15] i386/67955 i386 [panic] -current on T40p kernel trap 12 i 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] 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/11] i386/68900 i386 5.x install CDs fail to boot on Toshiba S o [2004/07/14] i386/69049 i386 [install] error "anic: page fault" o [2004/07/19] i386/69260 i386 [install] Problem starting the installati o [2004/07/19] i386/69281 i386 init dies when MAXSSIZ, MAXDSIZ, and DFLD o [2004/08/01] i386/69876 i386 [panic] new kernel panic on boot (-CURREN f [2004/08/03] i386/69945 i386 "Page fault" while shutting down on VIA K o [2004/08/05] i386/70028 i386 umass isuue in the boot prcess on SONY La o [2004/08/11] i386/70330 i386 Re-Open 33262? - gdb does not handle pend o [2004/08/13] i386/70386 i386 IBM x345 Freezes Randomly o [2004/08/15] i386/70482 i386 Array adapter problems o [2004/08/16] i386/70525 i386 [boot] 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/20] i386/70747 i386 ddos attack causes box to crash on kernel f [2004/08/21] i386/70805 i386 [apm] page fault early during boot with a o [2004/08/25] i386/70925 i386 [hang] 5.3Beta1 acpi-pci driver failure, f [2004/08/25] i386/70962 i386 [install] When downloading the installer o [2004/08/26] i386/71000 i386 [boot] BTX halted when booting from CD on o [2004/08/27] i386/71048 i386 [hang] ASUS TUV4X hangs when SONY CRX140E o [2004/08/28] i386/71087 i386 [hang] 5.3-beta(2-5) fail to install on e o [2004/08/30] i386/71144 i386 FBSD5.3b2 doesn't boot on a Compaq Armada o [2004/08/30] i386/71158 i386 pci bus number 3 devices are missing on l o [2004/08/31] i386/71190 i386 Dead thinkpad R31 after installing 5.2.1 o [2004/08/31] i386/71208 i386 Intel EtherExpress not working o [2004/09/05] i386/71392 i386 5.3-Beta[2-5] crash after final sync when o [2004/09/06] i386/71428 i386 DMA does not work on VIA 82C586 [4.10] o [2004/09/07] i386/71470 i386 [hang] Asus P4P800-E Promise 20378 RAID 1 o [2004/09/12] i386/71641 i386 5.3-BETA3: wi0 hangs during kernel load o [2004/09/14] i386/71733 i386 Marvel/Gigabit NIC on Asus K8V SE is not o [2004/09/19] i386/71894 i386 burncd unkillable with bad CD's o [2004/09/22] i386/72004 i386 [boot] FreeBSD 5.2.1 install hangs with e o [2004/09/24] i386/72065 i386 4.x and 5.2.1 doesn't recognize PCnet/ISA f [2004/09/24] i386/72069 i386 [panic] Fatal trap 12: page fault while i o [2004/09/30] i386/72215 i386 with acpi enabled network card will not w o [2004/10/04] i386/72334 i386 7) i386|[boot] FreeBSD 5.3 Beta6 and Beta o [2004/10/05] i386/72343 i386 Suspend resets system on Inspiron 5160. o [2004/10/06] i386/72378 i386 NFS hangs in 5.3-BETA7 [3Com gbit card] o [2004/10/07] i386/72416 i386 FreeBSD 5.3-BETA7: The alternate systemcl o [2004/10/08] i386/72441 i386 HP Proliant DL380 hangs on reboot with 5. o [2004/10/09] i386/72456 i386 5.xx Releases Do Not Identify ATA when 4. o [2004/10/11] i386/72497 i386 WD USB Disk Panics -stable and 5.2.1 o [2004/10/12] i386/72579 i386 unable to install FreeBSD on Intel E7520 o [2004/10/17] i386/72778 i386 5.3beta7 never boots, suspected SMP probl o [2004/10/21] i386/72960 i386 BTX halted with Promise Tx2000 Raid o [2004/10/21] i386/72976 i386 [panic] trap 9 on boot [ACPI-related] o [2004/10/25] i386/73102 i386 FreeBSD hangs on boot-up of omnibook 4150 o [2004/10/27] i386/73182 i386 fxp0: device timeout o [2004/10/27] i386/73196 i386 [hang]5.2.1 boot CD hangs during boot on o [2004/10/29] i386/73265 i386 FreeBSD kernel crashes when booting on EC o [2004/10/30] i386/73298 i386 "Fatal trap 12: page fault while in kerne 153 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/14] i386/53324 i386 pam_group problems (PAM_RUSER used instea o [2003/10/31] i386/58784 i386 ATA DMA fails and vx0 creates panic o [2003/11/10] i386/59147 i386 [usb] USB active extension cable not reco o [2003/11/23] conf/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 [hang] read error 34/0 during installatio 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/05] misc/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 [boot] The Boot Manager in FreeBSD 5.2RC 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] kern/61438 i386 5.2 nfs tasks running and not selected at o [2004/01/16] i386/61442 i386 Highpoint RocketRAID 1520 uses only UDMA2 o [2004/01/17] i386/61481 i386 [patch] a mechanism to wire io-channel-ch o [2004/01/20] i386/61603 i386 [sysinstall] wrong geometry guessed 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 f [2004/01/25] i386/61889 i386 Have to reinsert pccard after reboot o [2004/01/27] i386/62003 i386 [patch] make /boot/loader "reboot" code s o [2004/02/11] i386/62699 i386 fstat randomly crashes with "out of memor f [2004/02/17] i386/62952 i386 [usb] USB not working (kt133, ABIT KT7). 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- f [2004/03/27] i386/64795 i386 Network Adapter not configuring 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 o [2004/04/18] i386/65691 i386 fxp0: device timeout p [2004/04/18] i386/65729 i386 Document machdep.hlt_cpus sysctl 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 [patch] do a better job disassembling cod o [2004/06/01] i386/67456 i386 [LOR] LOR on dual-xeon w/ ht o [2004/06/09] i386/67763 i386 [patch] PCMCIA: MELCO manufacturer code s o [2004/06/10] i386/67773 i386 5.x series - md5 on dev no longer works e o [2004/06/18] i386/68087 i386 wget core dumps with: Assertion failed: ( 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/30] i386/68514 i386 Realtek driver halts on oversized frames o [2004/06/30] i386/68518 i386 Hangs while loading 82443BX agp during bo o [2004/07/06] i386/68719 i386 [usb] USB 2.0 mobil rack+ fat32 performan o [2004/07/07] i386/68754 i386 [hang] SMP reset bug (Tyan Thunder100, 44 o [2004/07/18] i386/69257 i386 [patch] in_cksum_hdr is non-functional wi o [2004/07/23] i386/69460 i386 the nic's speed slow down when both side o [2004/07/28] kern/69688 i386 NATD does not work with outgoing PPTP VPN o [2004/07/28] i386/69722 i386 wi0: init failed o [2004/07/29] i386/69730 i386 [patch] puc driver doesn't support PC-Com o [2004/08/02] kern/69931 i386 PS/2 Optical Mouse (Micro Innovations) mi f [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/22] i386/70810 i386 [patch] Enable SMBus device on Asus P4B s o [2004/08/22] i386/70832 i386 Serious problems with RealTek NIC using r o [2004/08/25] i386/70926 i386 [boot] 5.3Beta-1 bootstrap error: "atapci o [2004/09/11] i386/71586 i386 FreeBSD 5.3-BETA3 #3 hang during boot on o [2004/09/20] i386/71924 i386 timeouts with ata+hpt366 controller on BE o [2004/09/29] i386/72179 i386 Inconsistent apm(8) output regarding the o [2004/10/06] i386/72380 i386 USB does not work [dual Celeron Abit] o [2004/10/23] i386/73056 i386 Sun Microsystems Type 6 USB mouse not wor o [2004/10/30] i386/73308 i386 kevinxlinuz@126.com o [2004/10/30] i386/73328 i386 top shows NICE as -111 on processes start 68 problems total. From owner-freebsd-i386@FreeBSD.ORG Mon Nov 1 13:00:41 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 1300A16A4D0 for ; Mon, 1 Nov 2004 13:00:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF9D143D48 for ; Mon, 1 Nov 2004 13:00:40 +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 iA1D0e0J010363 for ; Mon, 1 Nov 2004 13:00:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA1D0eJS010361; Mon, 1 Nov 2004 13:00:40 GMT (envelope-from gnats) Resent-Date: Mon, 1 Nov 2004 13:00:40 GMT Resent-Message-Id: <200411011300.iA1D0eJS010361@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, Sebastian Schulze Struchtrup Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3080916A4CE; Mon, 1 Nov 2004 12:59:26 +0000 (GMT) Received: from mail.struchtrup.de (mail.struchtrup.de [80.190.247.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91D6143D31; Mon, 1 Nov 2004 12:59:21 +0000 (GMT) (envelope-from seb@struchtrup.com) Received: from p5087c910.dip0.t-ipconnect.de ([80.135.201.16] helo=notebook.intranet.struchtrup.com) by mail.struchtrup.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.42 (FreeBSD)) id 1CObmB-00044Y-MT; Mon, 01 Nov 2004 12:59:11 +0000 Received: from seb by notebook.intranet.struchtrup.com with local (Exim 4.43 (FreeBSD)) id 1CObmK-000D37-02; Mon, 01 Nov 2004 13:59:20 +0100 Message-Id: Date: Mon, 01 Nov 2004 13:59:20 +0100 From: Sebastian Schulze Struchtrup To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: acpi@FreeBSD.org cc: philip@FreeBSD.org Subject: i386/73380: [patch] kldload acpi_asus.ko causes page fault on Samsung P35 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sebastian Schulze Struchtrup List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Nov 2004 13:00:41 -0000 >Number: 73380 >Category: i386 >Synopsis: [patch] kldload acpi_asus.ko causes page fault on Samsung P35 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 01 13:00:40 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Sebastian Schulze Struchtrup >Release: FreeBSD 5.3-RC2 i386 >Organization: >Environment: System: FreeBSD notebook.intranet.struchtrup.com 5.3-RC2 FreeBSD 5.3-RC2 #6: Sun Oct 31 19:22:38 CET 2004 seb@notebook.intranet.struchtrup.com:/usr/obj/usr/src/sys/notebook i386 >Description: The Samsung P30/P35 notebooks have an Asus ATK device. But on ATK Init, they return a null pointer instead of a model identification. This results in a page fault in acpi_asus_probe (strcmp againt null pointer) The linux acpi4asus identifies them by an "ODEM" string as their DSDT Oem Table ID. >How-To-Repeat: >Fix: I have modified the acpi_asus_probe function to identify the notebook via the "ODEM" string. We have to see if this will work in the future or if there are other notebooks with the same string which require different handling. At least the linux acpi4asus seems to work without problems with this approach. Addionally, I have splitted the acpi_asus_models struct and added an extra struct acpi_asus_extra_models. The first contains the models which are identified by their model identification (inside the for loop), the second one contains models identified in another way (currently, only the Samsung P30/35). The enum acpi_asus_extra_models_idx holds their indices. I have also introduced a longname attribute in both tables, which contains the full name including Manufacturer. This is only used for correctly setting/printing driver information. Switching WLAN on/off and reporting events to devd with various special keys and Fn-key combinations works fine. This patch should not break anything, but I was not able to test it with a real Asus notebook. Someone should do this before committing >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Mon Nov 1 13:20:41 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 95D6016A515 for ; Mon, 1 Nov 2004 13:20:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF62343D68 for ; Mon, 1 Nov 2004 13:20:37 +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 iA1DKbVY014671 for ; Mon, 1 Nov 2004 13:20:37 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA1DKb1c014670; Mon, 1 Nov 2004 13:20:37 GMT (envelope-from gnats) Date: Mon, 1 Nov 2004 13:20:37 GMT Message-Id: <200411011320.iA1DKb1c014670@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Sebastian Schulze Struchtrup Subject: Re: i386/73380: [patch] kldload acpi_asus.ko causes page fault on Samsung P35 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sebastian Schulze Struchtrup List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Nov 2004 13:20:41 -0000 The following reply was made to PR i386/73380; it has been noted by GNATS. From: Sebastian Schulze Struchtrup To: Sebastian Schulze Struchtrup Cc: FreeBSD-gnats-submit@freebsd.org, acpi@freebsd.org, philip@freebsd.org Subject: Re: i386/73380: [patch] kldload acpi_asus.ko causes page fault on Samsung P35 Date: Mon, 01 Nov 2004 14:14:41 +0100 This is a multi-part message in MIME format. --------------050207030109020209080808 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Well, the patch got lost. Here it is. --------------050207030109020209080808 Content-Type: text/plain; name="acpi_asus.c.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="acpi_asus.c.patch" Index: acpi_asus.c =================================================================== RCS file: /home/ncvs/src/sys/i386/acpica/acpi_asus.c,v retrieving revision 1.11 diff -u -p -r1.11 acpi_asus.c --- acpi_asus.c 13 Aug 2004 06:22:29 -0000 1.11 +++ acpi_asus.c 1 Nov 2004 12:48:17 -0000 @@ -26,7 +26,7 @@ */ #include -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sys/i386/acpica/acpi_asus.c,v 1.11 2004/08/13 06:22:29 njl Exp $"); /* * Driver for extra ACPI-controlled gadgets (hotkeys, leds, etc) found on @@ -58,7 +58,7 @@ ACPI_MODULE_NAME("ASUS") struct acpi_asus_model { char *name; - + char *longname; char *mled_set; char *tled_set; char *wled_set; @@ -103,9 +103,11 @@ struct acpi_asus_softc { }; /* Models we know about */ +/* These are identified by name returned on ATK INIT */ static struct acpi_asus_model acpi_asus_models[] = { { .name = "L2D", + .longname = "Asus L2D", .mled_set = "MLED", .wled_set = "WLED", .brn_up = "\\Q0E", @@ -115,6 +117,7 @@ static struct acpi_asus_model acpi_asus_ }, { .name = "L3C", + .longname = "Asus L3C", .mled_set = "MLED", .wled_set = "WLED", .brn_get = "GPLV", @@ -124,6 +127,7 @@ static struct acpi_asus_model acpi_asus_ }, { .name = "L3D", + .longname = "Asus L3D", .mled_set = "MLED", .wled_set = "WLED", .brn_get = "GPLV", @@ -133,6 +137,7 @@ static struct acpi_asus_model acpi_asus_ }, { .name = "L3H", + .longname = "Asus L3H", .mled_set = "MLED", .wled_set = "WLED", .brn_get = "GPLV", @@ -143,11 +148,13 @@ static struct acpi_asus_model acpi_asus_ .disp_set = "SDSP" }, { - .name = "L8L" + .name = "L8L", + .longname = "Asus L8L" /* Only has hotkeys, apparantly */ }, { .name = "M1A", + .longname = "Asus M1A", .mled_set = "MLED", .brn_up = "\\_SB.PCI0.PX40.EC0.Q0E", .brn_dn = "\\_SB.PCI0.PX40.EC0.Q0F", @@ -156,6 +163,7 @@ static struct acpi_asus_model acpi_asus_ }, { .name = "M2E", + .longname = "Asus M2E", .mled_set = "MLED", .wled_set = "WLED", .brn_get = "GPLV", @@ -163,18 +171,33 @@ static struct acpi_asus_model acpi_asus_ .lcd_get = "\\GP06", .lcd_set = "\\Q10" }, + + { .name = NULL } +}; + +/* This notebook are also supported, but cannon be identified by + * their name because ATK INIT does not return their name + * update the following enum when updating this table */ + +static struct acpi_asus_model acpi_asus_extra_models[] = { { .name = "P30", + .longname = "Samsung P30/P35", .wled_set = "WLED", .brn_up = "\\_SB.PCI0.LPCB.EC0._Q68", .brn_dn = "\\_SB.PCI0.LPCB.EC0._Q69", .lcd_get = "\\BKLT", .lcd_set = "\\_SB.PCI0.LPCB.EC0._Q0E" }, +}; - { .name = NULL } +/* must be in sync with acpi_asus_extra_models above */ +enum acpi_asus_extra_models_idx +{ + SAMSUNG_P30 = 0 }; + ACPI_SERIAL_DECL(asus, "ACPI ASUS extras"); /* Function prototypes */ @@ -218,6 +241,10 @@ acpi_asus_probe(device_t dev) ACPI_BUFFER Buf; ACPI_OBJECT Arg, *Obj; ACPI_OBJECT_LIST Args; + ACPI_TABLE_HEADER dsdt_header; + ACPI_STATUS status; + int has_dsdt; + static char *asus_ids[] = { "ATK0100", NULL }; ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__); @@ -233,6 +260,17 @@ acpi_asus_probe(device_t dev) if (sb == NULL) return (ENOMEM); + /* Get DSDT Header (copy the header into our dsdt_header struct) */ + status = AcpiGetTableHeader(ACPI_TABLE_DSDT, 1, &dsdt_header); + if (ACPI_FAILURE(status)) + { + device_printf(dev, "unable to load DSDT\n"); + has_dsdt = 0; + } + else + has_dsdt = 1; + + /* Call ATK INIT */ Arg.Type = ACPI_TYPE_INTEGER; Arg.Integer.Value = 0; @@ -243,33 +281,54 @@ acpi_asus_probe(device_t dev) Buf.Length = ACPI_ALLOCATE_BUFFER; AcpiEvaluateObject(sc->handle, "INIT", &Args, &Buf); - Obj = Buf.Pointer; - - for (model = acpi_asus_models; model->name != NULL; model++) - if (strcmp(Obj->String.Pointer, model->name) == 0) { - sbuf_printf(sb, "Asus %s Laptop Extras", - Obj->String.Pointer); - sbuf_finish(sb); - - sc->model = model; - device_set_desc(dev, sbuf_data(sb)); - - sbuf_delete(sb); - AcpiOsFree(Buf.Pointer); - return (0); + + sc->model = NULL; + if ((Obj != NULL) && (Obj->String.Pointer != NULL)) + { + /* got name, loop over known models */ + for (model = acpi_asus_models; model->name != NULL; model++) + if (strcmp(Obj->String.Pointer, model->name) == 0) { + sc->model = model; + } + + if (sc->model == NULL) { + sbuf_printf(sb, "Unsupported Asus laptop detected: %s\n", + Obj->String.Pointer); + } + AcpiOsFree(Buf.Pointer); + } + else + { + /* some notebooks don't return anything on INIT (NULL) + The Samsung P30/P35 are known to do this. + */ + if ((has_dsdt) && (strncmp("ODEM", dsdt_header.OemTableId, 4)==0)) { + sc->model = &acpi_asus_extra_models[SAMSUNG_P30]; + sbuf_printf(sb, "Missing model name: " + "Identified as Samsung P30/P35\n"); } + else + { + sbuf_printf(sb, "Your notebook supports the asus ATK device," + " but can't be identified\n"); + } + } - sbuf_printf(sb, "Unsupported Asus laptop detected: %s\n", - Obj->String.Pointer); sbuf_finish(sb); - device_printf(dev, sbuf_data(sb)); - - sbuf_delete(sb); - AcpiOsFree(Buf.Pointer); + + if (sc->model != NULL) + { + sbuf_clear(sb); + sbuf_printf(sb, "%s Laptop Extras", sc->model->longname); + sbuf_finish(sb); + device_set_desc(dev, sbuf_data(sb)); + sbuf_delete(sb); + return(0); + } } - + /* either not identified or disabled */ return (ENXIO); } --------------050207030109020209080808-- From owner-freebsd-i386@FreeBSD.ORG Mon Nov 1 19: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 4376016A5A4; Mon, 1 Nov 2004 19:05:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22FD743D41; Mon, 1 Nov 2004 19:05:37 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from freefall.freebsd.org (philip@localhost [127.0.0.1]) iA1J5b02052436; Mon, 1 Nov 2004 19:05:37 GMT (envelope-from philip@freefall.freebsd.org) Received: (from philip@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA1J5aNu052432; Mon, 1 Nov 2004 19:05:36 GMT (envelope-from philip) Date: Mon, 1 Nov 2004 19:05:36 GMT From: Philip Paeps Message-Id: <200411011905.iA1J5aNu052432@freefall.freebsd.org> To: philip@FreeBSD.org, freebsd-i386@FreeBSD.org, philip@FreeBSD.org Subject: Re: i386/73380: [patch] kldload acpi_asus.ko causes page fault on Samsung P35 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, 01 Nov 2004 19:05:37 -0000 Synopsis: [patch] kldload acpi_asus.ko causes page fault on Samsung P35 Responsible-Changed-From-To: freebsd-i386->philip Responsible-Changed-By: philip Responsible-Changed-When: Mon Nov 1 19:04:33 GMT 2004 Responsible-Changed-Why: I'll take care of this. http://www.freebsd.org/cgi/query-pr.cgi?pr=73380 From owner-freebsd-i386@FreeBSD.ORG Mon Nov 1 22:04: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 AF8A316A4CE; Mon, 1 Nov 2004 22:04:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C19843D1D; Mon, 1 Nov 2004 22:04:37 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from freefall.freebsd.org (brooks@localhost [127.0.0.1]) iA1M4bfu072984; Mon, 1 Nov 2004 22:04:37 GMT (envelope-from brooks@freefall.freebsd.org) Received: (from brooks@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA1M4bf9072980; Mon, 1 Nov 2004 22:04:37 GMT (envelope-from brooks) Date: Mon, 1 Nov 2004 22:04:37 GMT From: Brooks Davis Message-Id: <200411012204.iA1M4bf9072980@freefall.freebsd.org> To: gvs@rinet.ru, brooks@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/67739: [kbd] smth was broken in keyboard processing since 5.2.1-RELEASE 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, 01 Nov 2004 22:04:37 -0000 Synopsis: [kbd] smth was broken in keyboard processing since 5.2.1-RELEASE State-Changed-From-To: open->feedback State-Changed-By: brooks State-Changed-When: Mon Nov 1 22:01:28 GMT 2004 State-Changed-Why: Please verify that this problem exists with 5.3. You may need to set hint.atkbd.0.flags="0x1" at the loader prompt to have a USB keyboard at all, but lots of things have changed and I haven't heard other reports of this issue so I'm hoping it was a transient bug in -CURRENT. Thanks, Brooks http://www.freebsd.org/cgi/query-pr.cgi?pr=67739 From owner-freebsd-i386@FreeBSD.ORG Mon Nov 1 22:15:42 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 12C2B16A4E1; Mon, 1 Nov 2004 22:15:42 +0000 (GMT) Received: from cmail.yandex.ru (cmail.yandex.ru [213.180.193.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1893C43D1F; Mon, 1 Nov 2004 22:15:41 +0000 (GMT) (envelope-from gvs@rinet.ru) Received: from [213.180.195.222] (ppp222.dialup.comptek.ru [213.180.195.222]) by cmail.yandex.ru (8.13.1/8.13.1) with ESMTP id iA1MFYXt092714 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 2 Nov 2004 01:15:38 +0300 (MSK) (envelope-from gvs@rinet.ru) Message-ID: <4186B587.40205@rinet.ru> Date: Tue, 02 Nov 2004 01:15:35 +0300 From: Seva Gluschenko User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.3) Gecko/20041008 X-Accept-Language: ru, en MIME-Version: 1.0 To: Brooks Davis References: <200411012204.iA1M4bf9072980@freefall.freebsd.org> In-Reply-To: <200411012204.iA1M4bf9072980@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Received-SPF: none (cmail.yandex.ru: 213.180.195.222 is neither permitted nor denied by domain of rinet.ru) client-ip=213.180.195.222; envelope-from=gvs@rinet.ru; helo=[213.180.195.222]; X-Spam-Ystatus: hits=-61.2 SUBJ_RE ALLTRUSTEDIP QUOTED_EMAIL_TEXT EMAIL_ATTRIBUTION NEWBAYES_099 REPLY_WITH_QUOTES ORIGINAL_WITH_QUOTES LINK_IN_TEXT X-Spam-Flag: NO X-Spam-Yversion: 1.0.8-Stack512K cc: freebsd-i386@FreeBSD.org Subject: Re: i386/67739: [kbd] smth was broken in keyboard processing since 5.2.1-RELEASE 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, 01 Nov 2004 22:15:42 -0000 Brooks Davis wrote: > State-Changed-From-To: open->feedback > State-Changed-By: brooks > State-Changed-When: Mon Nov 1 22:01:28 GMT 2004 > State-Changed-Why: > Please verify that this problem exists with 5.3. You may need to set > hint.atkbd.0.flags="0x1" at the loader prompt to have a USB keyboard at > all, but lots of things have changed and I haven't heard other reports > of this issue so I'm hoping it was a transient bug in -CURRENT. Things returned to OK state at least in 5.3-BETA6 which I installed by occasion when refined HDD partitioning. So you may safely close this issue, thanks for taking care. > > Thanks, > Brooks > > http://www.freebsd.org/cgi/query-pr.cgi?pr=67739 > From owner-freebsd-i386@FreeBSD.ORG Mon Nov 1 22:18: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 BC55D16A4DF; Mon, 1 Nov 2004 22:18:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98C7943D31; Mon, 1 Nov 2004 22:18:30 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from freefall.freebsd.org (brooks@localhost [127.0.0.1]) iA1MIU49077526; Mon, 1 Nov 2004 22:18:30 GMT (envelope-from brooks@freefall.freebsd.org) Received: (from brooks@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA1MIU79077522; Mon, 1 Nov 2004 22:18:30 GMT (envelope-from brooks) Date: Mon, 1 Nov 2004 22:18:30 GMT From: Brooks Davis Message-Id: <200411012218.iA1MIU79077522@freefall.freebsd.org> To: gvs@rinet.ru, brooks@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/67739: [kbd] smth was broken in keyboard processing since 5.2.1-RELEASE 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, 01 Nov 2004 22:18:30 -0000 Synopsis: [kbd] smth was broken in keyboard processing since 5.2.1-RELEASE State-Changed-From-To: feedback->closed State-Changed-By: brooks State-Changed-When: Mon Nov 1 22:17:35 GMT 2004 State-Changed-Why: Submitter reports the problem has gone in 5.3: > Things returned to OK state at least in 5.3-BETA6 which I installed by > occasion when refined HDD partitioning. So you may safely close this > issue, thanks for taking care. http://www.freebsd.org/cgi/query-pr.cgi?pr=67739 From owner-freebsd-i386@FreeBSD.ORG Tue Nov 2 15:50: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 4BF2916A4CE for ; Tue, 2 Nov 2004 15:50:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A46943D45 for ; Tue, 2 Nov 2004 15:50:30 +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 iA2FoTWK024317 for ; Tue, 2 Nov 2004 15:50:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA2FoTwR024316; Tue, 2 Nov 2004 15:50:29 GMT (envelope-from gnats) Resent-Date: Tue, 2 Nov 2004 15:50:29 GMT Resent-Message-Id: <200411021550.iA2FoTwR024316@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, Stephen Corbesero Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18F9C16A4CE for ; Tue, 2 Nov 2004 15:44:02 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 081A943D53 for ; Tue, 2 Nov 2004 15:44:02 +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 iA2Fi1Ho002958 for ; Tue, 2 Nov 2004 15:44:01 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id iA2Fi1Xj002957; Tue, 2 Nov 2004 15:44:01 GMT (envelope-from nobody) Message-Id: <200411021544.iA2Fi1Xj002957@www.freebsd.org> Date: Tue, 2 Nov 2004 15:44:01 GMT From: Stephen Corbesero To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: i386/73421: USB not recgnized/working on Toshiba Satellie A65-1662 under 5.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, 02 Nov 2004 15:50:30 -0000 >Number: 73421 >Category: i386 >Synopsis: USB not recgnized/working on Toshiba Satellie A65-1662 under 5.3 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Nov 02 15:50:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Stephen Corbesero >Release: 5.3 >Organization: Moravian College >Environment: FreeBSD aragorn.corbesero.com 5.3-STABLE FreeBSD 5.3-STABLE #10: Wed Oct 27 17:36:52 EDT 2004 flashr@aragorn.corbesero.com:/usr/src/sys/i386/compile/ARAGORN i386 >Description: My usb ports are not completely recognized. The laptop has usb controllers that are recognized as generic ohci, and even ehci. If I try to plug usb devices (that are known to work) after bootup, the machine never sees them. I have used usbd in debugging mode, and no events are observed when i plug/unplug devices. If I have a usb device plugged in at bootup, the dmesg does see the probe and find the device, but by the time I can get logged in, the device has either disappeared or the system is locked up. I suspect his is an interrupt conflict with the "software modem". I say this because I did a printout from windows of the hardware settings, and the software modem was attached to irq5, and all the usb devices were attached to irq9. With the FreeBSD setup, the software modem is not seen at all, and the usb devices get assigned to irq5. I have tried to convince them to asign a different irq, but they driver doens't seem to accept hints. I have been reluctant to edit the kernel source for the driver, but I may have to. The bios gives me no opportunity to play with the pci configuration. I am hoping there is some patch that can be found, or a workaround. It would be really nice to use the usb ports on my new laptop. >How-To-Repeat: n/a >Fix: none that I know of yet >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Wed Nov 3 08:50:28 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 3A80816A4CF for ; Wed, 3 Nov 2004 08:50:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28B1B43D49 for ; Wed, 3 Nov 2004 08:50:28 +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 iA38oShM065545 for ; Wed, 3 Nov 2004 08:50:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA38oS6N065544; Wed, 3 Nov 2004 08:50:28 GMT (envelope-from gnats) Resent-Date: Wed, 3 Nov 2004 08:50:28 GMT Resent-Message-Id: <200411030850.iA38oS6N065544@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, Sergey Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D484716A4CE for ; Wed, 3 Nov 2004 08:43:06 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id B218643D2D for ; Wed, 3 Nov 2004 08:43:06 +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 iA38h6xs051392 for ; Wed, 3 Nov 2004 08:43:06 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id iA38h6mr051389; Wed, 3 Nov 2004 08:43:06 GMT (envelope-from nobody) Message-Id: <200411030843.iA38h6mr051389@www.freebsd.org> Date: Wed, 3 Nov 2004 08:43:06 GMT From: Sergey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: i386/73443: Spinlock called when not threaded. 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: Wed, 03 Nov 2004 08:50:28 -0000 >Number: 73443 >Category: i386 >Synopsis: Spinlock called when not threaded. >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: Wed Nov 03 08:50:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Sergey >Release: 5.3-RC2 FreeBSD 5.3-RC2 #0: Tue Nov 2 21:18:56 SAMT 2004 i386 >Organization: >Environment: FreeBSD test.test.ru 5.3-RC2 FreeBSD 5.3-RC2 #0: Tue Nov 2 21:18:56 SAMT 2003 test@test.test.ru:/usr/obj/usr/src/sys/SP i386 >Description: >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Wed Nov 3 10:31:15 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 A622216A4CE; Wed, 3 Nov 2004 10:31:15 +0000 (GMT) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E54F43D1D; Wed, 3 Nov 2004 10:31:14 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smarthost1.sentex.ca (8.13.1/8.13.1) with ESMTP id iA3AVDcJ007494; Wed, 3 Nov 2004 05:31:13 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.13.1/8.13.1) with ESMTP id iA3AVDVF098911; Wed, 3 Nov 2004 05:31:13 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 5602D7306E; Wed, 3 Nov 2004 05:31:13 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20041103103113.5602D7306E@freebsd-current.sentex.ca> Date: Wed, 3 Nov 2004 05:31:13 -0500 (EST) Subject: [current tinderbox] failure on i386/i386 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: Wed, 03 Nov 2004 10:31:15 -0000 TB --- 2004-11-03 09:05:23 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2004-11-03 09:05:23 - starting CURRENT tinderbox run for i386/i386 TB --- 2004-11-03 09:05:23 - checking out the source tree TB --- 2004-11-03 09:05:23 - cd /home/tinderbox/CURRENT/i386/i386 TB --- 2004-11-03 09:05:23 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2004-11-03 09:11:21 - building world (CFLAGS=-O2 -pipe) TB --- 2004-11-03 09:11:21 - cd /home/tinderbox/CURRENT/i386/i386/src TB --- 2004-11-03 09:11:21 - /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-11-03 10:17:59 - building generic kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-11-03 10:17:59 - cd /home/tinderbox/CURRENT/i386/i386/src TB --- 2004-11-03 10:17:59 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Wed Nov 3 10:17: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 [...] /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4300: error: incompatible type for argument 1 of `ng_untimeout' /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4301: error: incompatible type for argument 1 of `ng_untimeout' /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: error: incompatible type for argument 1 of `ng_untimeout' /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: warning: passing arg 3 of `ng_timeout' makes pointer from integer without a cast /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: warning: passing arg 4 of `ng_timeout' makes integer from pointer without a cast /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: warning: passing arg 5 of `ng_timeout' from incompatible pointer type /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: error: too few arguments to function `ng_timeout' /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: error: incompatible types in assignment *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src/sys/modules. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/obj/tinderbox/CURRENT/i386/i386/src/sys/GENERIC. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src. TB --- 2004-11-03 10:31:13 - WARNING: /usr/bin/make returned exit code 1 TB --- 2004-11-03 10:31:13 - ERROR: failed to build generic kernel TB --- 2004-11-03 10:31:13 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Wed Nov 3 11:54:48 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 7333916A4CF; Wed, 3 Nov 2004 11:54:48 +0000 (GMT) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 167DE43D31; Wed, 3 Nov 2004 11:54:48 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2.sentex.ca [199.212.134.9]) by smarthost2.sentex.ca (8.13.1/8.13.1) with ESMTP id iA3BsiwU019253; Wed, 3 Nov 2004 06:54:47 -0500 (EST) (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 iA3BsitC043298; Wed, 3 Nov 2004 06:54:44 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id E6D6F7306E; Wed, 3 Nov 2004 06:54:43 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20041103115443.E6D6F7306E@freebsd-current.sentex.ca> Date: Wed, 3 Nov 2004 06:54:43 -0500 (EST) 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: Wed, 03 Nov 2004 11:54:48 -0000 TB --- 2004-11-03 10:31:13 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2004-11-03 10:31:13 - starting CURRENT tinderbox run for i386/pc98 TB --- 2004-11-03 10:31:13 - checking out the source tree TB --- 2004-11-03 10:31:13 - cd /home/tinderbox/CURRENT/i386/pc98 TB --- 2004-11-03 10:31:13 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2004-11-03 10:37:18 - building world (CFLAGS=-O2 -pipe) TB --- 2004-11-03 10:37:18 - cd /home/tinderbox/CURRENT/i386/pc98/src TB --- 2004-11-03 10:37:18 - /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-11-03 11:43:59 - building generic kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-11-03 11:43:59 - cd /home/tinderbox/CURRENT/i386/pc98/src TB --- 2004-11-03 11:43:59 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Wed Nov 3 11:43: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 [...] /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4300: error: incompatible type for argument 1 of `ng_untimeout' /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4301: error: incompatible type for argument 1 of `ng_untimeout' /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: error: incompatible type for argument 1 of `ng_untimeout' /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: warning: passing arg 3 of `ng_timeout' makes pointer from integer without a cast /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: warning: passing arg 4 of `ng_timeout' makes integer from pointer without a cast /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: warning: passing arg 5 of `ng_timeout' from incompatible pointer type /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: error: too few arguments to function `ng_timeout' /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: error: incompatible types in assignment *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src/sys/modules. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/obj/pc98/tinderbox/CURRENT/i386/pc98/src/sys/GENERIC. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. TB --- 2004-11-03 11:54:43 - WARNING: /usr/bin/make returned exit code 1 TB --- 2004-11-03 11:54:43 - ERROR: failed to build generic kernel TB --- 2004-11-03 11:54:43 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Wed Nov 3 17:50:28 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 510E716A4CE for ; Wed, 3 Nov 2004 17:50:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 345DB43D5E for ; Wed, 3 Nov 2004 17:50:28 +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 iA3HoSHL028408 for ; Wed, 3 Nov 2004 17:50:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA3HoSbi028406; Wed, 3 Nov 2004 17:50:28 GMT (envelope-from gnats) Resent-Date: Wed, 3 Nov 2004 17:50:28 GMT Resent-Message-Id: <200411031750.iA3HoSbi028406@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, Alex Feinberg Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2526016A4CE for ; Wed, 3 Nov 2004 17:46:14 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 151BB43D2D for ; Wed, 3 Nov 2004 17:46:14 +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 iA3HkDtR087437 for ; Wed, 3 Nov 2004 17:46:13 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id iA3HkDdJ087436; Wed, 3 Nov 2004 17:46:13 GMT (envelope-from nobody) Message-Id: <200411031746.iA3HkDdJ087436@www.freebsd.org> Date: Wed, 3 Nov 2004 17:46:13 GMT From: Alex Feinberg To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: i386/73484: Kernel panic when doing `ls` from the client side (running Solaris 8) on an NFS exported ntfs file system in 4.10 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: Wed, 03 Nov 2004 17:50:28 -0000 >Number: 73484 >Category: i386 >Synopsis: Kernel panic when doing `ls` from the client side (running Solaris 8) on an NFS exported ntfs file system in 4.10 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 03 17:50:27 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Alex Feinberg >Release: 4.10-STABLE >Organization: >Environment: orion# uname -a FreeBSD orion.intranet 4.10-STABLE FreeBSD 4.10-STABLE #0: Wed Nov 3 00:31:48 PST 2004 alex@orion.intranet:/usr/src/sys/compile/ORION i386 >Description: Nov 3 09:36:24 orion /kernel: Nov 3 09:36:24 orion /kernel: Nov 3 09:36:24 orion /kernel: Fatal trap 12: page fault while in kernel mode Nov 3 09:36:24 orion /kernel: fault virtual address = 0x4 Nov 3 09:36:24 orion /kernel: fault code = supervisor read, page not present Nov 3 09:36:24 orion /kernel: instruction pointer = 0x8:0xc0249e5f Nov 3 09:36:24 orion /kernel: stack pointer = 0x10:0xe419db08 Nov 3 09:36:24 orion /kernel: frame pointer = 0x10:0xe419db1c Nov 3 09:36:24 orion /kernel: code segment = base 0x0, limit 0xffff f, type 0x1b Nov 3 09:36:24 orion /kernel: = DPL 0, pres 1, def32 1, gran 1 Nov 3 09:36:24 orion /kernel: processor eflags = interrupt enabled, resume, IOP L = 0 Nov 3 09:36:24 orion /kernel: current process = 90 (nfsd) Nov 3 09:36:24 orion /kernel: interrupt mask = none Nov 3 09:36:24 orion /kernel: trap number = 12 Nov 3 09:36:24 orion /kernel: panic: page fault Nov 3 09:36:24 orion /kernel: Nov 3 09:36:24 orion /kernel: syncing disks... >How-To-Repeat: Export a file system (haven't had time to test whether this is NTFS specific, as both FFS, NTFS and FAT file systems are exported) from a FreeBSD 4.10 machine (freshly after a build world) to a Solaris 8 machine (SunOS blackhole 5.8 Generic_108528-23 sun4m sparc SUNW,SPARCstation-20). Attempt to do ls on the directory -- kernel panic occurs. The kernel panic repeated itself next time, so I had to do a forceful unmount on the Solaris side. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Wed Nov 3 21:10:41 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 8D94016A4FC for ; Wed, 3 Nov 2004 21:10:41 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01C5E43D53 for ; Wed, 3 Nov 2004 21:10:33 +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 iA3LAW8B052972 for ; Wed, 3 Nov 2004 21:10:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA3LAW19052971; Wed, 3 Nov 2004 21:10:32 GMT (envelope-from gnats) Resent-Date: Wed, 3 Nov 2004 21:10:32 GMT Resent-Message-Id: <200411032110.iA3LAW19052971@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, jim feldman Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1033416A4D6 for ; Wed, 3 Nov 2004 21:00:57 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED86143D64 for ; Wed, 3 Nov 2004 21:00:14 +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 iA3L09cC026537 for ; Wed, 3 Nov 2004 21:00:09 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id iA3L09sc026536; Wed, 3 Nov 2004 21:00:09 GMT (envelope-from nobody) Message-Id: <200411032100.iA3L09sc026536@www.freebsd.org> Date: Wed, 3 Nov 2004 21:00:09 GMT From: jim feldman To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: i386/73499: gvinum can't init raid5 set 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: Wed, 03 Nov 2004 21:10:41 -0000 >Number: 73499 >Category: i386 >Synopsis: gvinum can't init raid5 set >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: Wed Nov 03 21:10:32 GMT 2004 >Closed-Date: >Last-Modified: >Originator: jim feldman >Release: 5.3 RC2 >Organization: >Environment: FreeBSD greybrd.xxx.xxx.net 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Nov 2 03:52:27 MST 2004 root@greybrd.xxx.xxx.net:/usr/obj/usr/src/sys/GREYBRD i386 >Description: had working raid 5 set under 5.3rc1 composed of 4 drives (scsi). I updated using cvsup and the 5.3-RELENG tag. after make buildworld && make buildkernel && make installkernel reboot to single, make installworld, mergemaster, I rebooted all the sub disks in the raid 5 plex showed stale. If I use "gvinum rm -r volname", it deletes what it should. If I re-create the set, it re-creates the set and the sub disks are still stale. >How-To-Repeat: create raid 5 plex based volume with gvinum under rc1. update to rc2 and watch plex become corrupt and unfixable >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Wed Nov 3 21:57: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 6369516A4CF; Wed, 3 Nov 2004 21:57:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02D3943D31; Wed, 3 Nov 2004 21:57:30 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) iA3LvTXv055915; Wed, 3 Nov 2004 21:57:29 GMT (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA3LvTRD055911; Wed, 3 Nov 2004 21:57:29 GMT (envelope-from ceri) Date: Wed, 3 Nov 2004 21:57:29 GMT From: Ceri Davies Message-Id: <200411032157.iA3LvTRD055911@freefall.freebsd.org> To: eivind@aminor.no, ceri@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/61443: FreeBSD 5.2-RELEASE installation stops at /stand/sysinstall 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: Wed, 03 Nov 2004 21:57:30 -0000 Synopsis: FreeBSD 5.2-RELEASE installation stops at /stand/sysinstall State-Changed-From-To: open->feedback State-Changed-By: ceri State-Changed-When: Wed Nov 3 21:57:06 GMT 2004 State-Changed-Why: Is this reproducible with a 5.3-RC ? http://www.freebsd.org/cgi/query-pr.cgi?pr=61443 From owner-freebsd-i386@FreeBSD.ORG Wed Nov 3 23:02:21 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 1B94F16A4CE; Wed, 3 Nov 2004 23:02:21 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE18F43D2F; Wed, 3 Nov 2004 23:02:20 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from freefall.freebsd.org (simon@localhost [127.0.0.1]) iA3N2KfS063261; Wed, 3 Nov 2004 23:02:20 GMT (envelope-from simon@freefall.freebsd.org) Received: (from simon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA3N2KcG063257; Wed, 3 Nov 2004 23:02:20 GMT (envelope-from simon) Date: Wed, 3 Nov 2004 23:02:20 GMT From: "Simon L. Nielsen" Message-Id: <200411032302.iA3N2KcG063257@freefall.freebsd.org> To: simon@FreeBSD.org, freebsd-i386@FreeBSD.org, le@FreeBSD.org Subject: Re: kern/73499: gvinum can't init raid5 set 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: Wed, 03 Nov 2004 23:02:21 -0000 Synopsis: gvinum can't init raid5 set Responsible-Changed-From-To: freebsd-i386->le Responsible-Changed-By: simon Responsible-Changed-When: Wed Nov 3 23:01:43 GMT 2004 Responsible-Changed-Why: Over to gvinum author. http://www.freebsd.org/cgi/query-pr.cgi?pr=73499 From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 03:57:24 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 9A17516A4CE; Thu, 4 Nov 2004 03:57:24 +0000 (GMT) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 446D743D39; Thu, 4 Nov 2004 03:57:24 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2.sentex.ca [199.212.134.9]) by smarthost2.sentex.ca (8.13.1/8.13.1) with ESMTP id iA43vNU5097898; Wed, 3 Nov 2004 22:57:23 -0500 (EST) (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 iA43vN0J001413; Wed, 3 Nov 2004 22:57:23 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 342B57306E; Wed, 3 Nov 2004 22:57:23 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20041104035723.342B57306E@freebsd-current.sentex.ca> Date: Wed, 3 Nov 2004 22:57:23 -0500 (EST) Subject: [current tinderbox] failure on i386/i386 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: Thu, 04 Nov 2004 03:57:24 -0000 TB --- 2004-11-04 02:31:12 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2004-11-04 02:31:12 - starting CURRENT tinderbox run for i386/i386 TB --- 2004-11-04 02:31:12 - checking out the source tree TB --- 2004-11-04 02:31:12 - cd /home/tinderbox/CURRENT/i386/i386 TB --- 2004-11-04 02:31:12 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2004-11-04 02:37:12 - building world (CFLAGS=-O2 -pipe) TB --- 2004-11-04 02:37:12 - cd /home/tinderbox/CURRENT/i386/i386/src TB --- 2004-11-04 02:37:12 - /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-11-04 03:43:41 - building generic kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-11-04 03:43:41 - cd /home/tinderbox/CURRENT/i386/i386/src TB --- 2004-11-04 03:43:41 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Thu Nov 4 03:43: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 [...] /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4300: error: incompatible type for argument 1 of `ng_untimeout' /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4301: error: incompatible type for argument 1 of `ng_untimeout' /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: error: incompatible type for argument 1 of `ng_untimeout' /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: warning: passing arg 3 of `ng_timeout' makes pointer from integer without a cast /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: warning: passing arg 4 of `ng_timeout' makes integer from pointer without a cast /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: warning: passing arg 5 of `ng_timeout' from incompatible pointer type /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: error: too few arguments to function `ng_timeout' /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: error: incompatible types in assignment *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm/sscop. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph/atm. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src/sys/modules/netgraph. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src/sys/modules. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/obj/tinderbox/CURRENT/i386/i386/src/sys/GENERIC. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src. TB --- 2004-11-04 03:57:22 - WARNING: /usr/bin/make returned exit code 1 TB --- 2004-11-04 03:57:22 - ERROR: failed to build generic kernel TB --- 2004-11-04 03:57:22 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 05:26:20 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 9493A16A4CE; Thu, 4 Nov 2004 05:26:20 +0000 (GMT) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CA5343D4C; Thu, 4 Nov 2004 05:26:20 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smarthost1.sentex.ca (8.13.1/8.13.1) with ESMTP id iA45QJZg014654; Thu, 4 Nov 2004 00:26:19 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.13.1/8.13.1) with ESMTP id iA45QJFW009837; Thu, 4 Nov 2004 00:26:19 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 26C077306E; Thu, 4 Nov 2004 00:26:19 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20041104052619.26C077306E@freebsd-current.sentex.ca> Date: Thu, 4 Nov 2004 00:26:19 -0500 (EST) 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: Thu, 04 Nov 2004 05:26:20 -0000 TB --- 2004-11-04 03:57:23 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2004-11-04 03:57:23 - starting CURRENT tinderbox run for i386/pc98 TB --- 2004-11-04 03:57:23 - checking out the source tree TB --- 2004-11-04 03:57:23 - cd /home/tinderbox/CURRENT/i386/pc98 TB --- 2004-11-04 03:57:23 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2004-11-04 04:03:28 - building world (CFLAGS=-O2 -pipe) TB --- 2004-11-04 04:03:28 - cd /home/tinderbox/CURRENT/i386/pc98/src TB --- 2004-11-04 04:03:28 - /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-11-04 05:11:26 - building generic kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-11-04 05:11:26 - cd /home/tinderbox/CURRENT/i386/pc98/src TB --- 2004-11-04 05:11:26 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Thu Nov 4 05:11:27 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 [...] /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4300: error: incompatible type for argument 1 of `ng_untimeout' /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4301: error: incompatible type for argument 1 of `ng_untimeout' /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: error: incompatible type for argument 1 of `ng_untimeout' /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: warning: passing arg 3 of `ng_timeout' makes pointer from integer without a cast /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: warning: passing arg 4 of `ng_timeout' makes integer from pointer without a cast /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: warning: passing arg 5 of `ng_timeout' from incompatible pointer type /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: error: too few arguments to function `ng_timeout' /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop/../../../../contrib/ngatm/netnatm/saal/saal_sscop.c:4302: error: incompatible types in assignment *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm/sscop. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph/atm. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src/sys/modules/netgraph. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src/sys/modules. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/obj/pc98/tinderbox/CURRENT/i386/pc98/src/sys/GENERIC. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. TB --- 2004-11-04 05:26:18 - WARNING: /usr/bin/make returned exit code 1 TB --- 2004-11-04 05:26:18 - ERROR: failed to build generic kernel TB --- 2004-11-04 05:26:18 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 06:43: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 B518916A4CE; Thu, 4 Nov 2004 06:43:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 961CA43D3F; Thu, 4 Nov 2004 06:43:46 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) iA46hkIZ049924; Thu, 4 Nov 2004 06:43:46 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA46hkN7049920; Thu, 4 Nov 2004 06:43:46 GMT (envelope-from linimon) Date: Thu, 4 Nov 2004 06:43:46 GMT From: Mark Linimon Message-Id: <200411040643.iA46hkN7049920@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-usb@FreeBSD.org Subject: Re: kern/66248: [panic] bootloader is confused by booting from USB flash, trashes main drives boot block 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: Thu, 04 Nov 2004 06:43:46 -0000 Synopsis: [panic] bootloader is confused by booting from USB flash, trashes main drives boot block Responsible-Changed-From-To: freebsd-i386->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Thu Nov 4 06:43:05 GMT 2004 Responsible-Changed-Why: Reassign to appropriate mailing list. http://www.freebsd.org/cgi/query-pr.cgi?pr=66248 From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 06:56:49 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 B6C1316A4CE; Thu, 4 Nov 2004 06:56:49 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 948A843D1F; Thu, 4 Nov 2004 06:56:49 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) iA46unUQ050631; Thu, 4 Nov 2004 06:56:49 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA46unF0050627; Thu, 4 Nov 2004 06:56:49 GMT (envelope-from linimon) Date: Thu, 4 Nov 2004 06:56:49 GMT From: Mark Linimon Message-Id: <200411040656.iA46unF0050627@freefall.freebsd.org> To: mr2@MIGLA.ktu.LT, linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-usb@FreeBSD.org Subject: Re: kern/61804: [panic] panic with hitachi travelstar USB hdd (40gb) drives 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: Thu, 04 Nov 2004 06:56:49 -0000 Synopsis: [panic] panic with hitachi travelstar USB hdd (40gb) drives State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Thu Nov 4 06:53:52 GMT 2004 State-Changed-Why: Does this still happen with a more recent version of FreeBSD? If so, we are going to need a copy of the traceback (see the Handbook for more details). Responsible-Changed-From-To: freebsd-i386->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Thu Nov 4 06:53:52 GMT 2004 Responsible-Changed-Why: Reassign to appropriate mailing list. http://www.freebsd.org/cgi/query-pr.cgi?pr=61804 From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 07:03:08 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 0BD1316A4CE; Thu, 4 Nov 2004 07:03:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E185543D1F; Thu, 4 Nov 2004 07:03:07 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) iA4737ai051132; Thu, 4 Nov 2004 07:03:07 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA4737bw051128; Thu, 4 Nov 2004 07:03:07 GMT (envelope-from linimon) Date: Thu, 4 Nov 2004 07:03:07 GMT From: Mark Linimon Message-Id: <200411040703.iA4737bw051128@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-usb@FreeBSD.org Subject: Re: i386/63521: 5.2.1 doesn't detect drives on SATA controllers, 5.2 does 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: Thu, 04 Nov 2004 07:03:08 -0000 Synopsis: 5.2.1 doesn't detect drives on SATA controllers, 5.2 does Responsible-Changed-From-To: freebsd-i386->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Thu Nov 4 07:02:51 GMT 2004 Responsible-Changed-Why: Reassign to appropriate mailing list. http://www.freebsd.org/cgi/query-pr.cgi?pr=63521 From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 07:08:12 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 3D1F716A4CE; Thu, 4 Nov 2004 07:08:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D62843D54; Thu, 4 Nov 2004 07:08:12 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) iA478B8H055241; Thu, 4 Nov 2004 07:08:11 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA478Bvf055237; Thu, 4 Nov 2004 07:08:11 GMT (envelope-from linimon) Date: Thu, 4 Nov 2004 07:08:11 GMT From: Mark Linimon Message-Id: <200411040708.iA478Bvf055237@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-qa@FreeBSD.org Subject: Re: bin/65774: [sysinstall] cannot run repair disk when booted from USB CD-ROM 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: Thu, 04 Nov 2004 07:08:12 -0000 Synopsis: [sysinstall] cannot run repair disk when booted from USB CD-ROM Responsible-Changed-From-To: freebsd-i386->freebsd-qa Responsible-Changed-By: linimon Responsible-Changed-When: Thu Nov 4 07:07:04 GMT 2004 Responsible-Changed-Why: This sounds more appropriately filed as a sysinstall bug. http://www.freebsd.org/cgi/query-pr.cgi?pr=65774 From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 07:09: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 B559E16A4CE; Thu, 4 Nov 2004 07:09:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93B2843D46; Thu, 4 Nov 2004 07:09:13 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) iA479D3w055298; Thu, 4 Nov 2004 07:09:13 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA479Dkn055294; Thu, 4 Nov 2004 07:09:13 GMT (envelope-from linimon) Date: Thu, 4 Nov 2004 07:09:13 GMT From: Mark Linimon Message-Id: <200411040709.iA479Dkn055294@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-usb@FreeBSD.org Subject: Re: i386/65783: [panic] Panic when attaching card reader to USB port [5.2-CURRENT] 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: Thu, 04 Nov 2004 07:09:13 -0000 Synopsis: [panic] Panic when attaching card reader to USB port [5.2-CURRENT] Responsible-Changed-From-To: freebsd-i386->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Thu Nov 4 07:08:35 GMT 2004 Responsible-Changed-Why: Reassign to appropriate mailing list. http://www.freebsd.org/cgi/query-pr.cgi?pr=65783 From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 07:13: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 5E2A016A4CE; Thu, 4 Nov 2004 07:13:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ECA543D31; Thu, 4 Nov 2004 07:13:26 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) iA47DQGo055848; Thu, 4 Nov 2004 07:13:26 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA47DQDW055844; Thu, 4 Nov 2004 07:13:26 GMT (envelope-from linimon) Date: Thu, 4 Nov 2004 07:13:26 GMT From: Mark Linimon Message-Id: <200411040713.iA47DQDW055844@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-usb@FreeBSD.org Subject: Re: i386/72497: WD USB Disk Panics -stable and 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: Thu, 04 Nov 2004 07:13:26 -0000 Synopsis: WD USB Disk Panics -stable and 5.2.1 Responsible-Changed-From-To: freebsd-i386->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Thu Nov 4 07:13:13 GMT 2004 Responsible-Changed-Why: Reassign to appropriate mailing list. http://www.freebsd.org/cgi/query-pr.cgi?pr=72497 From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 07:22: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 CA4A516A4CE; Thu, 4 Nov 2004 07:22:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB3C643D39; Thu, 4 Nov 2004 07:22:31 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) iA47MVEm056522; Thu, 4 Nov 2004 07:22:31 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA47MVYs056518; Thu, 4 Nov 2004 07:22:31 GMT (envelope-from linimon) Date: Thu, 4 Nov 2004 07:22:31 GMT From: Mark Linimon Message-Id: <200411040722.iA47MVYs056518@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-usb@FreeBSD.org Subject: Re: i386/59147: [usb] USB active extension cable not recognized 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: Thu, 04 Nov 2004 07:22:31 -0000 Synopsis: [usb] USB active extension cable not recognized Responsible-Changed-From-To: freebsd-i386->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Thu Nov 4 07:22:13 GMT 2004 Responsible-Changed-Why: Reassign to appropriate mailing list. http://www.freebsd.org/cgi/query-pr.cgi?pr=59147 From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 07:26:14 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 12B1916A4CE; Thu, 4 Nov 2004 07:26:14 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6E5443D2F; Thu, 4 Nov 2004 07:26:13 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) iA47QDiU056818; Thu, 4 Nov 2004 07:26:13 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA47QD14056814; Thu, 4 Nov 2004 07:26:13 GMT (envelope-from linimon) Date: Thu, 4 Nov 2004 07:26:13 GMT From: Mark Linimon Message-Id: <200411040726.iA47QD14056814@freefall.freebsd.org> To: freeside@newgen.ru, linimon@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/62952: [usb] USB not working (kt133, ABIT KT7). 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: Thu, 04 Nov 2004 07:26:14 -0000 Synopsis: [usb] USB not working (kt133, ABIT KT7). State-Changed-From-To: feedback->closed State-Changed-By: linimon State-Changed-When: Thu Nov 4 07:25:44 GMT 2004 State-Changed-Why: Feedback timeout (>2 months). http://www.freebsd.org/cgi/query-pr.cgi?pr=62952 From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 07:30: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 A5E1A16A4CE; Thu, 4 Nov 2004 07:30:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85F2143D55; Thu, 4 Nov 2004 07:30:22 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) iA47UMZQ057736; Thu, 4 Nov 2004 07:30:22 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA47UM6I057714; Thu, 4 Nov 2004 07:30:22 GMT (envelope-from linimon) Date: Thu, 4 Nov 2004 07:30:22 GMT From: Mark Linimon Message-Id: <200411040730.iA47UM6I057714@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-usb@FreeBSD.org Subject: Re: i386/68719: [usb] USB 2.0 mobil rack+ fat32 performance 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: Thu, 04 Nov 2004 07:30:22 -0000 Synopsis: [usb] USB 2.0 mobil rack+ fat32 performance problem Responsible-Changed-From-To: freebsd-i386->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Thu Nov 4 07:30:07 GMT 2004 Responsible-Changed-Why: Reassign to appropriate mailing list. http://www.freebsd.org/cgi/query-pr.cgi?pr=68719 From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 07:39:12 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 0C71F16A4CE; Thu, 4 Nov 2004 07:39:12 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E092543D2F; Thu, 4 Nov 2004 07:39:11 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) iA47dBBQ058930; Thu, 4 Nov 2004 07:39:11 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA47dBQj058926; Thu, 4 Nov 2004 07:39:11 GMT (envelope-from linimon) Date: Thu, 4 Nov 2004 07:39:11 GMT From: Mark Linimon Message-Id: <200411040739.iA47dBQj058926@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-usb@FreeBSD.org Subject: Re: i386/72380: [usb] USB does not work [dual Celeron Abit] 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: Thu, 04 Nov 2004 07:39:12 -0000 Old Synopsis: USB does not work [dual Celeron Abit] New Synopsis: [usb] USB does not work [dual Celeron Abit] Responsible-Changed-From-To: freebsd-i386->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Thu Nov 4 07:38:30 GMT 2004 Responsible-Changed-Why: Reassign to appropriate mailing list. http://www.freebsd.org/cgi/query-pr.cgi?pr=72380 From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 07:39: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 3C82F16A4CE; Thu, 4 Nov 2004 07:39:46 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D71243D48; Thu, 4 Nov 2004 07:39:46 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) iA47dknX058982; Thu, 4 Nov 2004 07:39:46 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA47djFV058978; Thu, 4 Nov 2004 07:39:45 GMT (envelope-from linimon) Date: Thu, 4 Nov 2004 07:39:45 GMT From: Mark Linimon Message-Id: <200411040739.iA47djFV058978@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-usb@FreeBSD.org Subject: Re: i386/73056: [usb] Sun Microsystems Type 6 USB mouse not working in 5.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: Thu, 04 Nov 2004 07:39:46 -0000 Old Synopsis: Sun Microsystems Type 6 USB mouse not working in 5.3 New Synopsis: [usb] Sun Microsystems Type 6 USB mouse not working in 5.3 Responsible-Changed-From-To: freebsd-i386->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Thu Nov 4 07:39:28 GMT 2004 Responsible-Changed-Why: Reassign to appropriate mailing list. http://www.freebsd.org/cgi/query-pr.cgi?pr=73056 From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 07:41:59 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 A797216A4CE; Thu, 4 Nov 2004 07:41:59 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86FA843D53; Thu, 4 Nov 2004 07:41:59 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) iA47fxYj059365; Thu, 4 Nov 2004 07:41:59 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA47fxIZ059361; Thu, 4 Nov 2004 07:41:59 GMT (envelope-from linimon) Date: Thu, 4 Nov 2004 07:41:59 GMT From: Mark Linimon Message-Id: <200411040741.iA47fxIZ059361@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-usb@FreeBSD.org Subject: Re: i386/73421: [usb] USB not recgnized/working on Toshiba Satellie A65-1662 under 5.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: Thu, 04 Nov 2004 07:41:59 -0000 Synopsis: [usb] USB not recgnized/working on Toshiba Satellie A65-1662 under 5.3 Responsible-Changed-From-To: freebsd-i386->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Thu Nov 4 07:41:49 GMT 2004 Responsible-Changed-Why: Reassign to appropriate mailing list. http://www.freebsd.org/cgi/query-pr.cgi?pr=73421 From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 16:37: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 9D0E916A4CE; Thu, 4 Nov 2004 16:37:53 +0000 (GMT) Received: from vimes.aminor.no (vimes.aminor.no [213.187.177.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4016643D49; Thu, 4 Nov 2004 16:37:53 +0000 (GMT) (envelope-from eivind@aminor.no) Received: from [10.122.7.50] (nextra-3-243.nextra.no [148.122.3.243]) by vimes.aminor.no (Postfix) with ESMTP id 6C3A81700C; Thu, 4 Nov 2004 17:37:52 +0100 (CET) Message-ID: <418A5ADF.1050609@aminor.no> Date: Thu, 04 Nov 2004 17:37:51 +0100 From: Eivind Olsen Organization: Aminor User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.3) Gecko/20040910 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ceri Davies , freebsd-i386@FreeBSD.org References: <200411032157.iA3LvTRD055911@freefall.freebsd.org> In-Reply-To: <200411032157.iA3LvTRD055911@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: i386/61443: FreeBSD 5.2-RELEASE installation stops at /stand/sysinstall 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: Thu, 04 Nov 2004 16:37:53 -0000 Ceri Davies wrote: > Synopsis: FreeBSD 5.2-RELEASE installation stops at /stand/sysinstall > > State-Changed-From-To: open->feedback > State-Changed-By: ceri > State-Changed-When: Wed Nov 3 21:57:06 GMT 2004 > State-Changed-Why: > Is this reproducible with a 5.3-RC ? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=61443 I have now tested this on the same computer and I don't see the problem anymore (testing with 5.3-RC2 now), so something seems to have been fixed since 5.2-RELEASE. :) -- Regards / Hilsen Eivind Olsen From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 16:45: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 0633A16A4CE; Thu, 4 Nov 2004 16:45:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7FB043D48; Thu, 4 Nov 2004 16:45:51 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) iA4Gjp8m021348; Thu, 4 Nov 2004 16:45:51 GMT (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA4GjpRY021344; Thu, 4 Nov 2004 16:45:51 GMT (envelope-from ceri) Date: Thu, 4 Nov 2004 16:45:51 GMT From: Ceri Davies Message-Id: <200411041645.iA4GjpRY021344@freefall.freebsd.org> To: eivind@aminor.no, ceri@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/61443: FreeBSD 5.2-RELEASE installation stops at /stand/sysinstall 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: Thu, 04 Nov 2004 16:45:52 -0000 Synopsis: FreeBSD 5.2-RELEASE installation stops at /stand/sysinstall State-Changed-From-To: feedback->closed State-Changed-By: ceri State-Changed-When: Thu Nov 4 16:45:07 GMT 2004 State-Changed-Why: No longer a problem in 5.3-RC2. Many thanks to the submitter for checking this out for us. http://www.freebsd.org/cgi/query-pr.cgi?pr=61443 From owner-freebsd-i386@FreeBSD.ORG Thu Nov 4 16:50:34 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 AA90116A4CE for ; Thu, 4 Nov 2004 16:50:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7686E43D46 for ; Thu, 4 Nov 2004 16:50:34 +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 iA4GoYeV021549 for ; Thu, 4 Nov 2004 16:50:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA4GoYNi021548; Thu, 4 Nov 2004 16:50:34 GMT (envelope-from gnats) Date: Thu, 4 Nov 2004 16:50:34 GMT Message-Id: <200411041650.iA4GoYNi021548@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Ceri Davies Subject: Re: i386/61443: FreeBSD 5.2-RELEASE installation stops at /stand/sysinstall X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ceri Davies List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 16:50:34 -0000 The following reply was made to PR i386/61443; it has been noted by GNATS. From: Ceri Davies To: FreeBSD Gnats Submit Cc: Subject: Re: i386/61443: FreeBSD 5.2-RELEASE installation stops at /stand/sysinstall Date: Thu, 4 Nov 2004 16:45:01 +0000 Adding to audit trail: On Thu, Nov 04, 2004 at 05:37:51PM +0100, Eivind Olsen wrote: Ceri Davies wrote: >Synopsis: FreeBSD 5.2-RELEASE installation stops at /stand/sysinstall > >State-Changed-From-To: open->feedback >State-Changed-By: ceri >State-Changed-When: Wed Nov 3 21:57:06 GMT 2004 >State-Changed-Why: >Is this reproducible with a 5.3-RC ? > >http://www.freebsd.org/cgi/query-pr.cgi?pr=61443 I have now tested this on the same computer and I don't see the problem anymore (testing with 5.3-RC2 now), so something seems to have been fixed since 5.2-RELEASE. :) -- Regards / Hilsen Eivind Olsen From owner-freebsd-i386@FreeBSD.ORG Sat Nov 6 09:09: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 5A0F216A4CE; Sat, 6 Nov 2004 09:09:06 +0000 (GMT) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2AF143D5E; Sat, 6 Nov 2004 09:09:05 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smarthost1.sentex.ca (8.13.1/8.13.1) with ESMTP id iA69952r060578; Sat, 6 Nov 2004 04:09:05 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.13.1/8.13.1) with ESMTP id iA6994ZF088997; Sat, 6 Nov 2004 04:09:04 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 13C257306E; Sat, 6 Nov 2004 04:09:05 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20041106090905.13C257306E@freebsd-current.sentex.ca> Date: Sat, 6 Nov 2004 04:09:05 -0500 (EST) X-Virus-Scanned: ClamAV 0.80/574/Thu Nov 4 19:12:58 2004 clamav-milter version 0.80j on clamscanner3.sentex.ca X-Virus-Scanned: ClamAV 0.80/574/Thu Nov 4 19:12:58 2004 clamav-milter version 0.80j on clamscanner2.sentex.ca X-Virus-Status: Clean X-Virus-Status: Clean Subject: [current tinderbox] failure on i386/i386 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: Sat, 06 Nov 2004 09:09:06 -0000 TB --- 2004-11-06 07:36:30 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2004-11-06 07:36:30 - starting CURRENT tinderbox run for i386/i386 TB --- 2004-11-06 07:36:30 - checking out the source tree TB --- 2004-11-06 07:36:30 - cd /home/tinderbox/CURRENT/i386/i386 TB --- 2004-11-06 07:36:30 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2004-11-06 07:42:49 - building world (CFLAGS=-O2 -pipe) TB --- 2004-11-06 07:42:49 - cd /home/tinderbox/CURRENT/i386/i386/src TB --- 2004-11-06 07:42:49 - /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-11-06 09:01:10 - building generic kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-11-06 09:01:10 - cd /home/tinderbox/CURRENT/i386/i386/src TB --- 2004-11-06 09:01:10 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Sat Nov 6 09:01: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 [...] 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 -g -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/i386/src/sys -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/i386/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 -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror /tinderbox/CURRENT/i386/i386/src/sys/vm/vm_page.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 -g -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/i386/src/sys -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/i386/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 -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror /tinderbox/CURRENT/i386/i386/src/sys/vm/vm_pageq.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 -g -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/i386/src/sys -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/i386/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 -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror /tinderbox/CURRENT/i386/i386/src/sys/vm/vm_contig.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 -g -nostdinc -I- -I. -I/tinderbox/CURRENT/i386/i386/src/sys -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/dev/acpica -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/altq -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/ipfilter -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/pf -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/dev/ath -I/tinderbox/CURRENT/i386/i386/src/sys/contrib/dev/ath/freebsd -I/tinderbox/CURRENT/i386/i386/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 -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror /tinderbox/CURRENT/i386/i386/src/sys/vm/vm_zeroidle.c /tinderbox/CURRENT/i386/i386/src/sys/vm/vm_zeroidle.c: In function `vm_pagezero': /tinderbox/CURRENT/i386/i386/src/sys/vm/vm_zeroidle.c:164: error: `pages' undeclared (first use in this function) /tinderbox/CURRENT/i386/i386/src/sys/vm/vm_zeroidle.c:164: error: (Each undeclared identifier is reported only once /tinderbox/CURRENT/i386/i386/src/sys/vm/vm_zeroidle.c:164: error: for each function it appears in.) *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/obj/tinderbox/CURRENT/i386/i386/src/sys/GENERIC. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src. *** Error code 1 Stop in /tinderbox/CURRENT/i386/i386/src. TB --- 2004-11-06 09:09:04 - WARNING: /usr/bin/make returned exit code 1 TB --- 2004-11-06 09:09:04 - ERROR: failed to build generic kernel TB --- 2004-11-06 09:09:04 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Sat Nov 6 10:37: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 85F9816A4CE; Sat, 6 Nov 2004 10:37:01 +0000 (GMT) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1888C43D64; Sat, 6 Nov 2004 10:37:01 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2.sentex.ca [199.212.134.9]) by smarthost2.sentex.ca (8.13.1/8.13.1) with ESMTP id iA6Ab0dE068140; Sat, 6 Nov 2004 05:37:00 -0500 (EST) (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 iA6Ab0DA039233; Sat, 6 Nov 2004 05:37:00 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id F40E77306E; Sat, 6 Nov 2004 05:36:59 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20041106103659.F40E77306E@freebsd-current.sentex.ca> Date: Sat, 6 Nov 2004 05:36:59 -0500 (EST) X-Virus-Scanned: ClamAV 0.80/574/Thu Nov 4 19:12:58 2004 clamav-milter version 0.80j on clamscanner2.sentex.ca X-Virus-Scanned: ClamAV 0.80/574/Thu Nov 4 19:12:58 2004 clamav-milter version 0.80j on clamscanner3.sentex.ca X-Virus-Status: Clean X-Virus-Status: Clean 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: Sat, 06 Nov 2004 10:37:01 -0000 TB --- 2004-11-06 09:09:05 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2004-11-06 09:09:05 - starting CURRENT tinderbox run for i386/pc98 TB --- 2004-11-06 09:09:05 - checking out the source tree TB --- 2004-11-06 09:09:05 - cd /home/tinderbox/CURRENT/i386/pc98 TB --- 2004-11-06 09:09:05 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2004-11-06 09:15:30 - building world (CFLAGS=-O2 -pipe) TB --- 2004-11-06 09:15:30 - cd /home/tinderbox/CURRENT/i386/pc98/src TB --- 2004-11-06 09:15:30 - /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-11-06 10:30:51 - building generic kernel (COPTFLAGS=-O2 -pipe) TB --- 2004-11-06 10:30:51 - cd /home/tinderbox/CURRENT/i386/pc98/src TB --- 2004-11-06 10:30:51 - /usr/bin/make buildkernel KERNCONF=GENERIC >>> Kernel build for GENERIC started on Sat Nov 6 10:30:51 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 -g -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 -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror /tinderbox/CURRENT/i386/pc98/src/sys/vm/vm_page.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 -g -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 -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror /tinderbox/CURRENT/i386/pc98/src/sys/vm/vm_pageq.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 -g -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 -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror /tinderbox/CURRENT/i386/pc98/src/sys/vm/vm_contig.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 -g -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 -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror /tinderbox/CURRENT/i386/pc98/src/sys/vm/vm_zeroidle.c /tinderbox/CURRENT/i386/pc98/src/sys/vm/vm_zeroidle.c: In function `vm_pagezero': /tinderbox/CURRENT/i386/pc98/src/sys/vm/vm_zeroidle.c:164: error: `pages' undeclared (first use in this function) /tinderbox/CURRENT/i386/pc98/src/sys/vm/vm_zeroidle.c:164: error: (Each undeclared identifier is reported only once /tinderbox/CURRENT/i386/pc98/src/sys/vm/vm_zeroidle.c:164: error: for each function it appears in.) *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/obj/pc98/tinderbox/CURRENT/i386/pc98/src/sys/GENERIC. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. *** Error code 1 Stop in /tinderbox/CURRENT/i386/pc98/src. TB --- 2004-11-06 10:36:59 - WARNING: /usr/bin/make returned exit code 1 TB --- 2004-11-06 10:36:59 - ERROR: failed to build generic kernel TB --- 2004-11-06 10:36:59 - tinderbox aborted From owner-freebsd-i386@FreeBSD.ORG Sat Nov 6 15:10:27 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 EA2F216A4CE for ; Sat, 6 Nov 2004 15:10:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C870343D3F for ; Sat, 6 Nov 2004 15:10:27 +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 iA6FARYY020769 for ; Sat, 6 Nov 2004 15:10:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA6FARfJ020768; Sat, 6 Nov 2004 15:10:27 GMT (envelope-from gnats) Date: Sat, 6 Nov 2004 15:10:27 GMT Message-Id: <200411061510.iA6FARfJ020768@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Sebastian Schulze Struchtrup Subject: Re: i386/69945: "Page fault" while shutting down on VIA KT600 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sebastian Schulze Struchtrup List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Nov 2004 15:10:28 -0000 The following reply was made to PR i386/69945; it has been noted by GNATS. From: Sebastian Schulze Struchtrup To: freebsd-gnats-submit@FreeBSD.org, intron@intron.ac Cc: delphij@freebsd.org Subject: Re: i386/69945: "Page fault" while shutting down on VIA KT600 Date: Sat, 06 Nov 2004 16:04:42 +0100 This is probably a duplicate of kern/62889: panic: in vr(4): interrupt related Fix is in RELENG_5. From owner-freebsd-i386@FreeBSD.ORG Sat Nov 6 18:50:29 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 45D6516A4CE for ; Sat, 6 Nov 2004 18:50:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A70243D54 for ; Sat, 6 Nov 2004 18:50:29 +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 iA6IoSXV041698 for ; Sat, 6 Nov 2004 18:50:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA6IoS0q041693; Sat, 6 Nov 2004 18:50:28 GMT (envelope-from gnats) Resent-Date: Sat, 6 Nov 2004 18:50:28 GMT Resent-Message-Id: <200411061850.iA6IoS0q041693@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, Ian MacDonald Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8806716A4CE for ; Sat, 6 Nov 2004 18:45:29 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B2EB43D48 for ; Sat, 6 Nov 2004 18:45:29 +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 iA6IjTkZ068111 for ; Sat, 6 Nov 2004 18:45:29 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id iA6IjTkh068110; Sat, 6 Nov 2004 18:45:29 GMT (envelope-from nobody) Message-Id: <200411061845.iA6IjTkh068110@www.freebsd.org> Date: Sat, 6 Nov 2004 18:45:29 GMT From: Ian MacDonald To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: i386/73624: Vinum not detecting drives on 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: Sat, 06 Nov 2004 18:50:29 -0000 >Number: 73624 >Category: i386 >Synopsis: Vinum not detecting drives on reboot >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 06 18:50:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Ian MacDonald >Release: 5.3 RELEASE >Organization: >Environment: FreeBSD 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Fri Nov 5 04:19:18 UTC 2004 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/ sys/GENERIC i386 >Description: Following http://devel.reinikainen.net/docs/how-to/Vinum/ to create a root mirror. /boot/loader.conf: vinum_load="YES" vinum.autostart="YES" Loader prompt "lsmod" lists vinum.ko as loaded and "show" lists vinum.autostart=YES. Vinum: loaded message appears followed by "vinum: no drives found". Setting root to da0s1a and doing a vinum start and vinum works. Tried on 2 different boxes (single and dual cpu (with GENERIC and SMP kerns)). Both had 2 scsi disks with fresh installs. Single cpu box could boot vinum mirror without issue on 5.2.1R >How-To-Repeat: Follow http://devel.reinikainen.net/docs/how-to/Vinum/ with 5.3R. I have managed to repeat 2 times. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Sat Nov 6 19:49: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 A0DE616A4D0; Sat, 6 Nov 2004 19:49:44 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8263B43D31; Sat, 6 Nov 2004 19:49:44 +0000 (GMT) (envelope-from le@FreeBSD.org) Received: from freefall.freebsd.org (le@localhost [127.0.0.1]) iA6Jnidu048104; Sat, 6 Nov 2004 19:49:44 GMT (envelope-from le@freefall.freebsd.org) Received: (from le@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA6Jnied048100; Sat, 6 Nov 2004 19:49:44 GMT (envelope-from le) Date: Sat, 6 Nov 2004 19:49:44 GMT From: Lukas Ertl Message-Id: <200411061949.iA6Jnied048100@freefall.freebsd.org> To: le@FreeBSD.org, freebsd-i386@FreeBSD.org, le@FreeBSD.org Subject: Re: i386/73624: Vinum not detecting drives on 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: Sat, 06 Nov 2004 19:49:44 -0000 Synopsis: Vinum not detecting drives on reboot Responsible-Changed-From-To: freebsd-i386->le Responsible-Changed-By: le Responsible-Changed-When: Sat Nov 6 19:48:31 GMT 2004 Responsible-Changed-Why: Take another vinum PR. Could you please try geom_vinum and report how it behaves? Put this in your /boot/loader.conf: geom_vinum_load="YES" and change your /etc/fstab to point to /dev/gvinum instead of /dev/vinum. http://www.freebsd.org/cgi/query-pr.cgi?pr=73624