From owner-freebsd-alpha Sun Jul 8 9:53:17 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (Postfix) with ESMTP id D337037B401 for ; Sun, 8 Jul 2001 09:53:13 -0700 (PDT) (envelope-from jdp@wall.polstra.com) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.11.3/8.11.1) with ESMTP id f68GrAD90267; Sun, 8 Jul 2001 09:53:11 -0700 (PDT) (envelope-from jdp@wall.polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.11.3/8.11.0) id f68GrAJ24108; Sun, 8 Jul 2001 09:53:10 -0700 (PDT) (envelope-from jdp) Date: Sun, 8 Jul 2001 09:53:10 -0700 (PDT) Message-Id: <200107081653.f68GrAJ24108@vashon.polstra.com> To: alpha@freebsd.org From: John Polstra Cc: mjacob@feral.com Subject: Re: this a gcc bug? In-Reply-To: References: Organization: Polstra & Co., Seattle, WA Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In article , Matthew Jacob wrote: > > I was tracking down unaligned faults in ping... > > They come from an unaligned reference in that: > > struct sockaddr whereto; > ... > bzero((char *)&whereto, sizeof(struct sockaddr)); > to = (struct sockaddr_in *)&whereto; > ... > (void)printf("PING %s (%s)", hostname, > inet_ntoa(to->sin_addr)); > > ... > pid 528 (ping): unaligned access: va=0x120017ad3 pc=0x120003850 ra=0x12000335c > op=ldl > > Why? > > Well, in test compiling ping.c I found: > > yorp.feral.com > nm /tmp/ping |grep where > 0000000120027b0f B whereto > > But was it the linker? > > > No. Assembler output shows: > ... > .comm options,4,4 > .comm rcvd_tbl,128,1 > .comm whereto,16,1 > ... > > > Say &what&? Here we have a structure (struct sockaddr) that has only > byte required alignment? > > Structs, no matter what there contents, have been ALDOUBLE since Portable C > compiler days- or so I thought. Maybe I'm just showing my ignorance/age. Have > I > gone nuts? Well, that's for you and your shrink to decide. But you are wrong about struct alignment. The compiler aligns a struct such that all of its members are properly aligned. In the case of struct sockaddr, every member is a signed or unsigned char, or an array of char. Chars don't have to be aligned at all, so neither does struct sockaddr. I bet that if "whereto" were declared as a struct sockaddr_in, this problem would go away. John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Disappointment is a good sign of basic intelligence." -- Chögyam Trungpa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Jul 8 12: 7:26 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id D175B37B401; Sun, 8 Jul 2001 12:07:21 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo (mjacob@beppo [192.67.166.79]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f68J7KS66395; Sun, 8 Jul 2001 12:07:20 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Sun, 8 Jul 2001 12:07:20 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: "David O'Brien" Cc: alpha@FreeBSD.org Subject: current state of alphaness In-Reply-To: <20010708115504.A66340@dragon.nuxi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org [ moved to alpha, not developers in general ] On Sun, 8 Jul 2001, David O'Brien wrote: >... > data center, not a WC^WBSDi^WWRS facility. Currently, yes. But above mention "and other days before that". So presumably you have knowledge of other crashes, yes? That we haven't gotten data on, yes? So far, the crashes I've encountered are: 1. Hangs. Cannot break into DDB. Observed on: XP1000, Rawhide, PC164 Activities: Varying from nothing to buildworld Frequency: Infrequent (every few days maybe) I've been remote for the Rawhide one, otherwise I would have gone over and gotten the PC at least. 2. Hangs when rebooting Rawhide only. This is clearly an SMP issue. This probably is because we don't stop the other CPUs when rebooting. 3. Random blockable sleep lock panics June 4, Rawhide: panic: blockable sleep lock (sleep mutex) Giant @ ../../vm/vm_fault.c:213 cpuid = 0; panic Stopped at Debugger+0x34: zapnot v0,#0xf,a0 db> t Debugger() at Debugger+0x34 panic() at panic+0x178 witness_lock() at witness_lock+0x240 vm_fault() at vm_fault+0x108 trap() at trap+0xf78 XentMMlgp() at XentMMlgp+0x18 XentMMlgp() at XentMMlgp+0x18 July 5, Rawhide: ppaannpx: ppppmppppupppteexx scchh`x ckereccurusresde da att .../../.././..../6kekernr/n/kkerenrn__ssyynncchh.c.:c8:1816 c pcupiuidd == 0 ;0 ;p paanniicc Line 816, mi_switch: mtx_assert(&sched_lock, MA_OWNED | MA_NOTRECURSED); We're scratching our heads over this one. Others- less complete info.. By and large, the single processor systems now seem to be functional for me. -matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 9 0:12:13 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from postino.fi.infn.it (postino.fi.infn.it [192.84.145.9]) by hub.freebsd.org (Postfix) with ESMTP id 5AE1F37B419 for ; Mon, 9 Jul 2001 00:12:06 -0700 (PDT) (envelope-from Riccardo.Veraldi@fi.infn.it) Received: from nikita.fi.infn.it (nikita.fi.infn.it [192.84.146.189]) by postino.fi.infn.it (8.11.1/8.11.1) with ESMTP id f697Bsm08850 for ; Mon, 9 Jul 2001 09:11:54 +0200 (CEST) From: Riccardo.Veraldi@fi.infn.it Received: by nikita.fi.infn.it (Postfix, from userid 1001) id 1270E18CE9; Mon, 9 Jul 2001 09:11:53 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by nikita.fi.infn.it (Postfix) with ESMTP id B70D815902 for ; Mon, 9 Jul 2001 09:11:53 +0200 (CEST) Date: Mon, 9 Jul 2001 09:11:53 +0200 (CEST) X-X-Sender: To: Subject: system correctable error... Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello friends, what does it mean when the system gives out this warning ?? I just came this morning and I Saw this in /var/log/messages... Jul 7 03:01:36 durlindana /kernel: Warning: received system correctable error. Jul 7 03:04:05 durlindana /kernel: Warning: received system correctable error. Jul 7 03:04:36 durlindana /kernel: Warning: received processor correctable erro FreeBSD 4.3-RELEASE on Miata. thanks Rick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 9 8:31:23 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 1D5B937B401 for ; Mon, 9 Jul 2001 08:31:20 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo (mjacob@beppo [192.67.166.79]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f69FV3S72313; Mon, 9 Jul 2001 08:31:03 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Mon, 9 Jul 2001 08:31:03 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: Riccardo.Veraldi@fi.infn.it Cc: freebsd-alpha@FreeBSD.ORG Subject: Re: system correctable error... In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Usually means corrected memory errors. On Mon, 9 Jul 2001 Riccardo.Veraldi@fi.infn.it wrote: > > Hello friends, > what does it mean when the system gives out this warning ?? > I just came this morning and I Saw this in /var/log/messages... > > Jul 7 03:01:36 durlindana /kernel: Warning: received system correctable > error. > Jul 7 03:04:05 durlindana /kernel: Warning: received system correctable > error. > Jul 7 03:04:36 durlindana /kernel: Warning: received processor > correctable erro > > > FreeBSD 4.3-RELEASE on Miata. > > thanks > > Rick > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-alpha" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 9 13:40:14 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id 0AE8037B409 for ; Mon, 9 Jul 2001 13:40:12 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id OAA10800; Mon, 9 Jul 2001 14:40:11 -0600 (MDT) (envelope-from ken) Date: Mon, 9 Jul 2001 14:40:11 -0600 From: "Kenneth D. Merry" To: alpha@FreeBSD.org Subject: dysfunctional XP1000, suggestions? Message-ID: <20010709144010.A10699@panzer.kdm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I've got an XP1000 box that stopped working last week after I moved it from one table to another. By "stopped working" I mean that it powers up (green LEDs come on), but there's no video, no beeps, nothing. I have tried: - unplugging it from the KVM switch and plugging in a keyboard and monitor directly - reseating the video card (ELSA gloria I think) - reseating the processor/memory board - reseating the memory From what I can tell, nothing is unplugged or unseated. The KVM switch at least sees the power on from a video standpoint, so my guess is the video card is at least getting power. Does anyone have any suggestions on diagnosing this problem? Thanks, Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 9 13:43:55 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 5611237B401 for ; Mon, 9 Jul 2001 13:43:51 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from wonky.feral.com (wonky.feral.com [192.67.166.7]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f69KhnS76823; Mon, 9 Jul 2001 13:43:49 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Mon, 9 Jul 2001 13:43:48 -0700 (PDT) From: Matthew Jacob Reply-To: To: "Kenneth D. Merry" Cc: Subject: Re: dysfunctional XP1000, suggestions? In-Reply-To: <20010709144010.A10699@panzer.kdm.org> Message-ID: <20010709134336.L13487-100000@wonky.feral.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Tried serial connection yet? On Mon, 9 Jul 2001, Kenneth D. Merry wrote: > > I've got an XP1000 box that stopped working last week after I moved it from > one table to another. > > By "stopped working" I mean that it powers up (green LEDs come on), but > there's no video, no beeps, nothing. > > I have tried: > > - unplugging it from the KVM switch and plugging in a keyboard and monitor > directly > - reseating the video card (ELSA gloria I think) > - reseating the processor/memory board > - reseating the memory > > >From what I can tell, nothing is unplugged or unseated. The KVM switch > at least sees the power on from a video standpoint, so my guess is the > video card is at least getting power. > > Does anyone have any suggestions on diagnosing this problem? > > Thanks, > > Ken > -- > Kenneth Merry > ken@kdm.org > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-alpha" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 9 13:57:18 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id BF49637B403 for ; Mon, 9 Jul 2001 13:57:15 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id OAA10967; Mon, 9 Jul 2001 14:57:12 -0600 (MDT) (envelope-from ken) Date: Mon, 9 Jul 2001 14:57:12 -0600 From: "Kenneth D. Merry" To: Matthew Jacob Cc: alpha@FreeBSD.ORG Subject: Re: dysfunctional XP1000, suggestions? Message-ID: <20010709145712.A10936@panzer.kdm.org> References: <20010709144010.A10699@panzer.kdm.org> <20010709134336.L13487-100000@wonky.feral.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20010709134336.L13487-100000@wonky.feral.com>; from mjacob@feral.com on Mon, Jul 09, 2001 at 01:43:48PM -0700 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Jul 09, 2001 at 13:43:48 -0700, Matthew Jacob wrote: > > Tried serial connection yet? Not yet. I suppose it runs at 9600 bps by default? Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 9 13:59:37 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id E793937B407 for ; Mon, 9 Jul 2001 13:59:33 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from wonky.feral.com (wonky.feral.com [192.67.166.7]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f69KxWS77076; Mon, 9 Jul 2001 13:59:32 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Mon, 9 Jul 2001 13:59:30 -0700 (PDT) From: Matthew Jacob Reply-To: To: "Kenneth D. Merry" Cc: Subject: Re: dysfunctional XP1000, suggestions? In-Reply-To: <20010709145712.A10936@panzer.kdm.org> Message-ID: <20010709135925.S13487-100000@wonky.feral.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, 9 Jul 2001, Kenneth D. Merry wrote: > On Mon, Jul 09, 2001 at 13:43:48 -0700, Matthew Jacob wrote: > > > > Tried serial connection yet? > > Not yet. I suppose it runs at 9600 bps by default? I believ eso. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 9 14:32:13 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id DBC4937B403 for ; Mon, 9 Jul 2001 14:32:10 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id PAA11246; Mon, 9 Jul 2001 15:32:08 -0600 (MDT) (envelope-from ken) Date: Mon, 9 Jul 2001 15:32:07 -0600 From: "Kenneth D. Merry" To: Matthew Jacob Cc: alpha@FreeBSD.ORG Subject: Re: dysfunctional XP1000, suggestions? Message-ID: <20010709153207.B10936@panzer.kdm.org> References: <20010709145712.A10936@panzer.kdm.org> <20010709135925.S13487-100000@wonky.feral.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20010709135925.S13487-100000@wonky.feral.com>; from mjacob@feral.com on Mon, Jul 09, 2001 at 01:59:30PM -0700 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Jul 09, 2001 at 13:59:30 -0700, Matthew Jacob wrote: > On Mon, 9 Jul 2001, Kenneth D. Merry wrote: > > On Mon, Jul 09, 2001 at 13:43:48 -0700, Matthew Jacob wrote: > > > > > > Tried serial connection yet? > > > > Not yet. I suppose it runs at 9600 bps by default? > > I believ eso. I tried pulling the keyboard, mouse and video card and then tried both serial ports at 9600bps. No luck. :( Is there some special jumper to enable the serial console? Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 9 14:33:50 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 4FBE537B405 for ; Mon, 9 Jul 2001 14:33:44 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from wonky.feral.com (wonky.feral.com [192.67.166.7]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f69LXgS77660; Mon, 9 Jul 2001 14:33:42 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Mon, 9 Jul 2001 14:33:40 -0700 (PDT) From: Matthew Jacob Reply-To: To: "Kenneth D. Merry" Cc: Subject: Re: dysfunctional XP1000, suggestions? In-Reply-To: <20010709153207.B10936@panzer.kdm.org> Message-ID: <20010709143315.R13487-100000@wonky.feral.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org No, it should just work. I hope your machine ain't toasted... maybe Wilko can help here... On Mon, 9 Jul 2001, Kenneth D. Merry wrote: > On Mon, Jul 09, 2001 at 13:59:30 -0700, Matthew Jacob wrote: > > On Mon, 9 Jul 2001, Kenneth D. Merry wrote: > > > On Mon, Jul 09, 2001 at 13:43:48 -0700, Matthew Jacob wrote: > > > > > > > > Tried serial connection yet? > > > > > > Not yet. I suppose it runs at 9600 bps by default? > > > > I believ eso. > > I tried pulling the keyboard, mouse and video card and then tried both > serial ports at 9600bps. No luck. :( > > Is there some special jumper to enable the serial console? > > Ken > -- > Kenneth Merry > ken@kdm.org > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 9 14:42:23 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from smtp9.xs4all.nl (smtp9.xs4all.nl [194.109.127.135]) by hub.freebsd.org (Postfix) with ESMTP id D950037B401 for ; Mon, 9 Jul 2001 14:42:20 -0700 (PDT) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp9.xs4all.nl (8.9.3/8.9.3) with ESMTP id XAA14272; Mon, 9 Jul 2001 23:42:19 +0200 (CEST) Received: (from wkb@localhost) by freebie.xs4all.nl (8.11.4/8.11.3) id f69LgGq03819; Mon, 9 Jul 2001 23:42:16 +0200 (CEST) (envelope-from wkb) Date: Mon, 9 Jul 2001 23:42:16 +0200 From: Wilko Bulte To: Matthew Jacob Cc: "Kenneth D. Merry" , alpha@FreeBSD.ORG Subject: Re: dysfunctional XP1000, suggestions? Message-ID: <20010709234216.A3777@freebie.xs4all.nl> References: <20010709153207.B10936@panzer.kdm.org> <20010709143315.R13487-100000@wonky.feral.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010709143315.R13487-100000@wonky.feral.com>; from mjacob@feral.com on Mon, Jul 09, 2001 at 02:33:40PM -0700 X-OS: FreeBSD 4.3-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Jul 09, 2001 at 02:33:40PM -0700, Matthew Jacob wrote: > No, it should just work. I hope your machine ain't toasted... maybe Wilko can > help here... Well, let me try. On the MLB there is a row of LEDs. Named D21 til D14 What do they display (on/off wise)? W/ -- | / o / / _ Arnhem, The Netherlands email: wilko@FreeBSD.org |/|/ / / /( (_) Bulte "Youth is not a time in life, it is a state of mind" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 9 14:47: 9 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id B68AA37B405 for ; Mon, 9 Jul 2001 14:47:06 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id PAA11477; Mon, 9 Jul 2001 15:47:00 -0600 (MDT) (envelope-from ken) Date: Mon, 9 Jul 2001 15:47:00 -0600 From: "Kenneth D. Merry" To: Wilko Bulte Cc: Matthew Jacob , alpha@FreeBSD.ORG Subject: Re: dysfunctional XP1000, suggestions? Message-ID: <20010709154700.A11434@panzer.kdm.org> References: <20010709153207.B10936@panzer.kdm.org> <20010709143315.R13487-100000@wonky.feral.com> <20010709234216.A3777@freebie.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20010709234216.A3777@freebie.xs4all.nl>; from wkb@freebie.xs4all.nl on Mon, Jul 09, 2001 at 11:42:16PM +0200 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Jul 09, 2001 at 23:42:16 +0200, Wilko Bulte wrote: > On Mon, Jul 09, 2001 at 02:33:40PM -0700, Matthew Jacob wrote: > > No, it should just work. I hope your machine ain't toasted... maybe Wilko can > > help here... > > Well, let me try. On the MLB there is a row of LEDs. Named D21 til D14 > What do they display (on/off wise)? All are on/green except D16, which is off. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 9 15: 6:35 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from smtp1.xs4all.nl (smtp1.xs4all.nl [194.109.127.131]) by hub.freebsd.org (Postfix) with ESMTP id 03DF537B403 for ; Mon, 9 Jul 2001 15:06:33 -0700 (PDT) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp1.xs4all.nl (8.9.3/8.9.3) with ESMTP id AAA17297; Tue, 10 Jul 2001 00:06:31 +0200 (CEST) Received: (from wkb@localhost) by freebie.xs4all.nl (8.11.4/8.11.3) id f69M6UZ04018; Tue, 10 Jul 2001 00:06:30 +0200 (CEST) (envelope-from wkb) Date: Tue, 10 Jul 2001 00:06:30 +0200 From: Wilko Bulte To: "Kenneth D. Merry" Cc: Matthew Jacob , alpha@FreeBSD.ORG Subject: Re: dysfunctional XP1000, suggestions? Message-ID: <20010710000630.A3994@freebie.xs4all.nl> References: <20010709153207.B10936@panzer.kdm.org> <20010709143315.R13487-100000@wonky.feral.com> <20010709234216.A3777@freebie.xs4all.nl> <20010709154700.A11434@panzer.kdm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010709154700.A11434@panzer.kdm.org>; from ken@kdm.org on Mon, Jul 09, 2001 at 03:47:00PM -0600 X-OS: FreeBSD 4.3-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Jul 09, 2001 at 03:47:00PM -0600, Kenneth D. Merry wrote: > On Mon, Jul 09, 2001 at 23:42:16 +0200, Wilko Bulte wrote: > > On Mon, Jul 09, 2001 at 02:33:40PM -0700, Matthew Jacob wrote: > > > No, it should just work. I hope your machine ain't toasted... maybe Wilko can > > > help here... > > > > Well, let me try. On the MLB there is a row of LEDs. Named D21 til D14 > > What do they display (on/off wise)? > > All are on/green except D16, which is off. Ouch... no good. FB -> Tsunami init/verify error. Listed as a CPU card malfunction. Does it also beep? -- | / o / / _ Arnhem, The Netherlands email: wilko@FreeBSD.org |/|/ / / /( (_) Bulte "Youth is not a time in life, it is a state of mind" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 9 15: 8:27 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id 2198837B405 for ; Mon, 9 Jul 2001 15:08:24 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id QAA11708; Mon, 9 Jul 2001 16:08:17 -0600 (MDT) (envelope-from ken) Date: Mon, 9 Jul 2001 16:08:16 -0600 From: "Kenneth D. Merry" To: Wilko Bulte Cc: Matthew Jacob , alpha@FreeBSD.ORG Subject: Re: dysfunctional XP1000, suggestions? Message-ID: <20010709160816.A11661@panzer.kdm.org> References: <20010709153207.B10936@panzer.kdm.org> <20010709143315.R13487-100000@wonky.feral.com> <20010709234216.A3777@freebie.xs4all.nl> <20010709154700.A11434@panzer.kdm.org> <20010710000630.A3994@freebie.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20010710000630.A3994@freebie.xs4all.nl>; from wkb@freebie.xs4all.nl on Tue, Jul 10, 2001 at 12:06:30AM +0200 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Jul 10, 2001 at 00:06:30 +0200, Wilko Bulte wrote: > On Mon, Jul 09, 2001 at 03:47:00PM -0600, Kenneth D. Merry wrote: > > On Mon, Jul 09, 2001 at 23:42:16 +0200, Wilko Bulte wrote: > > > On Mon, Jul 09, 2001 at 02:33:40PM -0700, Matthew Jacob wrote: > > > > No, it should just work. I hope your machine ain't toasted... maybe Wilko can > > > > help here... > > > > > > Well, let me try. On the MLB there is a row of LEDs. Named D21 til D14 > > > What do they display (on/off wise)? > > > > All are on/green except D16, which is off. > > Ouch... no good. > > FB -> Tsunami init/verify error. Listed as a CPU card malfunction. > Does it also beep? No beeps. Should I try reseating the CPU board or the CPU itself? Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 9 15:23:23 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from smtp3.xs4all.nl (smtp3.xs4all.nl [194.109.127.132]) by hub.freebsd.org (Postfix) with ESMTP id 9D88537B403 for ; Mon, 9 Jul 2001 15:23:20 -0700 (PDT) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp3.xs4all.nl (8.9.3/8.9.3) with ESMTP id AAA26108; Tue, 10 Jul 2001 00:23:18 +0200 (CEST) Received: (from wkb@localhost) by freebie.xs4all.nl (8.11.4/8.11.3) id f69MNHo04146; Tue, 10 Jul 2001 00:23:17 +0200 (CEST) (envelope-from wkb) Date: Tue, 10 Jul 2001 00:23:17 +0200 From: Wilko Bulte To: "Kenneth D. Merry" Cc: Matthew Jacob , alpha@FreeBSD.ORG Subject: Re: dysfunctional XP1000, suggestions? Message-ID: <20010710002317.A4132@freebie.xs4all.nl> References: <20010709153207.B10936@panzer.kdm.org> <20010709143315.R13487-100000@wonky.feral.com> <20010709234216.A3777@freebie.xs4all.nl> <20010709154700.A11434@panzer.kdm.org> <20010710000630.A3994@freebie.xs4all.nl> <20010709160816.A11661@panzer.kdm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010709160816.A11661@panzer.kdm.org>; from ken@kdm.org on Mon, Jul 09, 2001 at 04:08:16PM -0600 X-OS: FreeBSD 4.3-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Jul 09, 2001 at 04:08:16PM -0600, Kenneth D. Merry wrote: > On Tue, Jul 10, 2001 at 00:06:30 +0200, Wilko Bulte wrote: > > On Mon, Jul 09, 2001 at 03:47:00PM -0600, Kenneth D. Merry wrote: > > > On Mon, Jul 09, 2001 at 23:42:16 +0200, Wilko Bulte wrote: > > > > On Mon, Jul 09, 2001 at 02:33:40PM -0700, Matthew Jacob wrote: > > > > > No, it should just work. I hope your machine ain't toasted... maybe Wilko can > > > > > help here... > > > > > > > > Well, let me try. On the MLB there is a row of LEDs. Named D21 til D14 > > > > What do they display (on/off wise)? > > > > > > All are on/green except D16, which is off. > > > > Ouch... no good. > > > > FB -> Tsunami init/verify error. Listed as a CPU card malfunction. > > Does it also beep? > > No beeps. Hmm > Should I try reseating the CPU board or the CPU itself? Always worth trying. Same for the DIMMs. -- | / o / / _ Arnhem, The Netherlands email: wilko@FreeBSD.org |/|/ / / /( (_) Bulte "Youth is not a time in life, it is a state of mind" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 9 15:43:12 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id D2B1637B405 for ; Mon, 9 Jul 2001 15:43:08 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id QAA11908; Mon, 9 Jul 2001 16:43:02 -0600 (MDT) (envelope-from ken) Date: Mon, 9 Jul 2001 16:43:02 -0600 From: "Kenneth D. Merry" To: Wilko Bulte Cc: Matthew Jacob , alpha@FreeBSD.ORG Subject: Re: dysfunctional XP1000, suggestions? Message-ID: <20010709164302.B11661@panzer.kdm.org> References: <20010709153207.B10936@panzer.kdm.org> <20010709143315.R13487-100000@wonky.feral.com> <20010709234216.A3777@freebie.xs4all.nl> <20010709154700.A11434@panzer.kdm.org> <20010710000630.A3994@freebie.xs4all.nl> <20010709160816.A11661@panzer.kdm.org> <20010710002317.A4132@freebie.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20010710002317.A4132@freebie.xs4all.nl>; from wkb@freebie.xs4all.nl on Tue, Jul 10, 2001 at 12:23:17AM +0200 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Jul 10, 2001 at 00:23:17 +0200, Wilko Bulte wrote: > On Mon, Jul 09, 2001 at 04:08:16PM -0600, Kenneth D. Merry wrote: > > On Tue, Jul 10, 2001 at 00:06:30 +0200, Wilko Bulte wrote: > > > On Mon, Jul 09, 2001 at 03:47:00PM -0600, Kenneth D. Merry wrote: > > > > On Mon, Jul 09, 2001 at 23:42:16 +0200, Wilko Bulte wrote: > > > > > On Mon, Jul 09, 2001 at 02:33:40PM -0700, Matthew Jacob wrote: > > > > > > No, it should just work. I hope your machine ain't toasted... maybe Wilko can > > > > > > help here... > > > > > > > > > > Well, let me try. On the MLB there is a row of LEDs. Named D21 til D14 > > > > > What do they display (on/off wise)? > > > > > > > > All are on/green except D16, which is off. > > > > > > Ouch... no good. > > > > > > FB -> Tsunami init/verify error. Listed as a CPU card malfunction. > > > Does it also beep? > > > > No beeps. > > Hmm > > > Should I try reseating the CPU board or the CPU itself? > > Always worth trying. Same for the DIMMs. We tried reseating the CPU board and the DIMMs. We also tried different memory (PC133 instead of PC100). No luck, D16 still isn't lit. Any other ideas? Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Jul 10 0:25:49 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from postino.fi.infn.it (postino.fi.infn.it [192.84.145.9]) by hub.freebsd.org (Postfix) with ESMTP id 7262A37B401 for ; Tue, 10 Jul 2001 00:25:44 -0700 (PDT) (envelope-from Riccardo.Veraldi@fi.infn.it) Received: from nikita.fi.infn.it (nikita.fi.infn.it [192.84.146.189]) by postino.fi.infn.it (8.11.1/8.11.1) with ESMTP id f6A7PXm42089 for ; Tue, 10 Jul 2001 09:25:33 +0200 (CEST) From: Riccardo.Veraldi@fi.infn.it Received: by nikita.fi.infn.it (Postfix, from userid 1001) id DC5AE18CE9; Tue, 10 Jul 2001 09:25:32 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by nikita.fi.infn.it (Postfix) with ESMTP id A73EB15902 for ; Tue, 10 Jul 2001 09:25:32 +0200 (CEST) Date: Tue, 10 Jul 2001 09:25:32 +0200 (CEST) X-X-Sender: To: Subject: passwd problem. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello I Even asked on the freebsd-questions but noone could help me about this. on my Miata I got this error if I try to change password durlindana{fddi}[~]> passwd passwd: Permission denied this does not accour if I am root. The permissions are: -r-sr-xr-x 2 root wheel 46208 Apr 21 23:34 /usr/bin/passwd they look ok. what it could be ?? thanks Rick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Jul 10 3:49:13 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from apotheosis.org.za (apotheosis.org.za [137.158.128.27]) by hub.freebsd.org (Postfix) with ESMTP id 43A5937B405 for ; Tue, 10 Jul 2001 03:49:10 -0700 (PDT) (envelope-from mwest@uct.ac.za) Date: Tue, 10 Jul 2001 12:50:03 +0200 From: Matthew West To: Riccardo.Veraldi@fi.infn.it Cc: freebsd-alpha@freebsd.org Subject: Re: passwd problem. Message-ID: <20010710125003.A1927@apotheosis.org.za> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from "Riccardo.Veraldi@fi.infn.it" on Tue, Jul 10, 2001 at 09:25:32AM Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Jul 10, 2001 at 09:25:32AM +0200, Riccardo.Veraldi@fi.infn.it wrote: > durlindana{fddi}[~]> passwd > passwd: Permission denied Try "passwd username"? I've experienced this before. Some xterm's don't seem to set the USER variable, so passwd assumes that you're trying to set root's password. -- mwest@uct.ac.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Jul 10 3:54:14 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from madeline.boneyard.lawrence.ks.us (madeline.boneyard.lawrence.ks.us [24.124.26.25]) by hub.freebsd.org (Postfix) with ESMTP id 5E46037B403 for ; Tue, 10 Jul 2001 03:54:12 -0700 (PDT) (envelope-from bsd-alpha@boneyard.lawrence.ks.us) Received: from madeline.boneyard.lawrence.ks.us (madeline.boneyard.lawrence.ks.us [24.124.26.25]) by madeline.boneyard.lawrence.ks.us (8.11.1/8.11.1) with ESMTP id f6AAs6u21565 for ; Tue, 10 Jul 2001 05:54:06 -0500 (CDT) (envelope-from bsd-alpha@boneyard.lawrence.ks.us) Date: Tue, 10 Jul 2001 05:54:06 -0500 (CDT) From: "Stephen D. Spencer" To: freebsd-alpha@freebsd.org Subject: Re: passwd problem. In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, 10 Jul 2001 Riccardo.Veraldi@fi.infn.it wrote: > [...] > durlindana{fddi}[~]> passwd > passwd: Permission denied > [...] > Is /usr/bin/passwd suid root? -r-sr-xr-x 2 root wheel 26884 Jun 29 06:36 passwd -- Stephen Spencer UNIX Systems Administrator Electrical Engineering and Computer Science Dept. University of Kansas To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Jul 10 8:10:34 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from shark.flips.net (shark.flips.net [208.214.176.71]) by hub.freebsd.org (Postfix) with ESMTP id C728D37B407 for ; Tue, 10 Jul 2001 08:10:26 -0700 (PDT) (envelope-from bob@sfcei.com) Received: from sf_pdc.schaefer-fagan (host-64-183-103-106.covadbiz.com [64.183.103.106]) by shark.flips.net (Post.Office MTA v3.5.3 release 223 ID# 0-60222U2500L250S0V35) with ESMTP id net for ; Tue, 10 Jul 2001 11:33:09 -0400 Received: by sf_pdc with Internet Mail Service (5.5.2448.0) id <313MNSKA>; Tue, 10 Jul 2001 11:00:24 -0400 Message-ID: From: bob@sfcei.com To: freebsd-alpha@freebsd.org Subject: Newbie help on firmware update, how? Date: Tue, 10 Jul 2001 11:00:23 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I have recently acquired a DEC Alpha 'NoName' mobo with a 166 processor. I have built up a box, but I cannot get the firmware update to properly apply. Upon boot, I can get to the >>> and when I try to apply the firmware update to the SRM console, I get the following : >>>b -fl 0,0 dva0 (boot dva0.0.0.0.1 -flags 0,0) block 0 of dva0.0.0.0.1 is a valid boot block reading 1735 blocks from dva0.0.0.0.1 bootstrap code read in base = 10e000, image_start = 0, image_bytes = d8e00 initializing HWRPB at 2000 initializing page table at 100000 initializing machine state setting affinity to the primary CPU jumping to bootstrap code The system goes for a reboot and then nothing else happens after the blue screen comes up. (I do have the blinking cursor, nothing else.) I have tried booting from the latest Alpha FreeBSD cd and I only get the same as above, except I have a block cursor on the line below jumping to bootstrap code, and nothing ever happens after this. I made a couple of firmware update diskettes on a 4.3 FreeBSD x86 machine and none of them seem to work. Do I need to have the firmware update disk made on a Digital Unix system? If so, could someone make one for me? Does anyone have any other thoughts on this? Thanks much Bob Collins To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Jul 10 9: 2:45 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from mx4.thebiz.net (mx4.thebiz.net [216.238.0.23]) by hub.freebsd.org (Postfix) with SMTP id E895837B405 for ; Tue, 10 Jul 2001 09:02:36 -0700 (PDT) (envelope-from tholmes@thebiz.net) Received: (qmail 32571 invoked from network); 10 Jul 2001 12:02:16 -0400 Received: from unknown (172.16.0.72) by mx4.backend.thebiz.net with QMQP; 10 Jul 2001 12:02:16 -0400 Received: from unknown (HELO staff.noc.thebiz.net) (216.238.1.10) by mail.thebiz.net with SMTP; 10 Jul 2001 12:02:16 -0400 Date: Tue, 10 Jul 2001 12:02:16 -0400 (EDT) From: "Thomas P. Holmes [ Systems ]" X-Sender: tholmes@staff.noc.thebiz.net To: alpha@freebsd.org Subject: Invalidating Pack Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-1942972560-994780936=:28844" Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-1942972560-994780936=:28844 Content-Type: TEXT/PLAIN; charset=US-ASCII I'm at my wits end of this one. I have searched and searched and have not been able to resolve the issue. I'm using a segate baracuda scsi with the stock qlogic controller on a compaq alpha ds-10. The majority of the time when I do any have writing, make emacs this last time, the machine freaks out and gives an error of something like: (isp0.0.0.0) invalidating pack The things I saw referrred to tagged-queing and what not. I've swapped out disk, controller and cable and it still happens. I would like to get the Segate working since we have awhole bunch of them. Any help would be appreciated! I've included a copy of the dmesg. Thanks! -- "What ever you do, take care of your shoes." ________________ http://www.BiznessOnline.com ________________ Thomas Holmes Bizness Online Unix Systems Engineer Suite 1801 tholmes@thebiz.net 11 North Pearl St. (518) 533-6522 Albany, NY, 12207 --0-1942972560-994780936=:28844 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=myfile Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=myfile Q29weXJpZ2h0IChjKSAxOTkyLTIwMDEgVGhlIEZyZWVCU0QgUHJvamVjdC4N CkNvcHlyaWdodCAoYykgMTk3OSwgMTk4MCwgMTk4MywgMTk4NiwgMTk4OCwg MTk4OSwgMTk5MSwgMTk5MiwgMTk5MywgMTk5NA0KCVRoZSBSZWdlbnRzIG9m IHRoZSBVbml2ZXJzaXR5IG9mIENhbGlmb3JuaWEuIEFsbCByaWdodHMgcmVz ZXJ2ZWQuDQpGcmVlQlNEIDQuMy1SRUxFQVNFICMwOiBUdWUgTWF5IDI5IDE2 OjE1OjUxIEVEVCAyMDAxDQogICAgcm9vdEBhbHBoYS50aGViaXoubmV0Oi91 c3Ivc3JjL3RvbXMvY29tcGlsZS9BNDMtRElTS0xFU1MNClNUNjYwMA0KQ09N UEFRIEFscGhhU2VydmVyIERTMTAgNDY2IE1IeiwgNDYyTUh6DQo4MTkyIGJ5 dGUgcGFnZSBzaXplLCAxIHByb2Nlc3Nvci4NCkNQVTogRVY2ICgyMTI2NCkg bWFqb3I9OCBtaW5vcj00IGV4dGVuc2lvbnM9MHgzMDM8QldYLEZJWCxNVkks UFJFQ0lTRT4NCk9TRiBQQUwgcmV2OiAweDEwMDMzMDAwMjAxMzMNCnJlYWwg bWVtb3J5ICA9IDYwMTM4MjkxMiAoNTg3Mjg4SyBieXRlcykNCmF2YWlsIG1l bW9yeSA9IDU3ODkyODY0MCAoNTY1MzYwSyBieXRlcykNClByZWxvYWRlZCBl bGYga2VybmVsICJrZXJuZWwiIGF0IDB4ZmZmZmZjMDAwMDVjYTAwMC4NCm1k MDogTWFsbG9jIGRpc2sNCnBjaWIwOiA8MjEyNzEgUENJIGhvc3QgYnVzIGFk YXB0ZXI+IG9uIHRzdW5hbWkwDQpwY2kwOiA8UENJIGJ1cz4gb24gcGNpYjAN CnBjaTA6IDxBY2VyTGFicyBNNTIzNyAoQWxhZGRpbi1WKSBVU0IgY29udHJv bGxlcj4gYXQgMS4wIGlycSAyMzQNCmlzYWIwOiA8QWNlckxhYnMgTTE1MzMg cG9ydGFibGUgUENJLUlTQSBicmlkZ2U+IGF0IGRldmljZSA3LjAgb24gcGNp MA0KaXNhMDogPElTQSBidXM+IG9uIGlzYWIwDQpkZTA6IDxEaWdpdGFsIDIx MTQzIEZhc3QgRXRoZXJuZXQ+IHBvcnQgMHgxMTAwLTB4MTE3ZiBtZW0gMHgy MGMyMDAwLTB4MjBjMjNmZiBpcnEgMjkgYXQgZGV2aWNlIDkuMCBvbiBwY2kw DQpkZTA6IGludGVycnVwdGluZyBhdCBUU1VOQU1JIGlycSAyOQ0KZGUwOiBE RUMgMjExNDMgWzEwLTEwME1iL3NdIHBhc3MgNC4xDQpkZTA6IGFkZHJlc3Mg MDg6MDA6MmI6ODY6NmQ6ZTkNCmRlMDogZW5hYmxpbmcgMTBiYXNlVCBwb3J0 DQpkZTE6IDxEaWdpdGFsIDIxMTQzIEZhc3QgRXRoZXJuZXQ+IHBvcnQgMHgx MTgwLTB4MTFmZiBtZW0gMHgyMGMyNDAwLTB4MjBjMjdmZiBpcnEgMzAgYXQg ZGV2aWNlIDExLjAgb24gcGNpMA0KZGUxOiBpbnRlcnJ1cHRpbmcgYXQgVFNV TkFNSSBpcnEgMzANCmRlMTogREVDIDIxMTQzIFsxMC0xMDBNYi9zXSBwYXNz IDQuMQ0KZGUxOiBhZGRyZXNzIDA4OjAwOjJiOjg2OjZkOmU4DQpkZTE6IGVu YWJsaW5nIDEwMGJhc2VUWCBwb3J0DQphdGFwY2kwOiA8QWNlckxhYnMgQWxh ZGRpbiBBVEEzMyBjb250cm9sbGVyPiBwb3J0IDB4MTIxMC0weDEyMWYsMHgz NzQtMHgzNzcsMHgxNzAtMHgxN2YsMHgzZjQtMHgzZjcsMHgxZjAtMHgxZmYg aXJxIDIzOCBhdCBkZXZpY2UgMTMuMCBvbiBwY2kwDQphdGExOiBhdCAweDE3 MCBpcnEgMTUgb24gYXRhcGNpMA0KaXNwMDogPFFsb2dpYyBJU1AgMTAyMC8x MDQwIFBDSSBTQ1NJIEFkYXB0ZXI+IHBvcnQgMHgxMDAwLTB4MTBmZiBtZW0g MHgyMGMxMDAwLTB4MjBjMWZmZiBpcnEgMzkgYXQgZGV2aWNlIDE1LjAgb24g cGNpMA0KaXNwMDogaW50ZXJydXB0aW5nIGF0IFRTVU5BTUkgaXJxIDM5DQpw Y2kwOiA8VkdBLWNvbXBhdGlibGUgZGlzcGxheSBkZXZpY2U+IGF0IDE3LjAg aXJxIDQ3DQpmZGMwOiA8TkVDIDcyMDY1QiBvciBjbG9uZT4gYXQgcG9ydCAw eDNmMC0weDNmNSwweDNmNyBpcnEgNiBkcnEgMiBvbiBpc2EwDQpmZGMwOiBp bnRlcnJ1cHRpbmcgYXQgSVNBIGlycSA2DQpmZGMwOiBGSUZPIGVuYWJsZWQs IDggYnl0ZXMgdGhyZXNob2xkDQpmZDA6IDwxNDQwLUtCIDMuNSIgZHJpdmU+ IG9uIGZkYzAgZHJpdmUgMA0KYXRrYmRjMDogPEtleWJvYXJkIGNvbnRyb2xs ZXIgKGk4MDQyKT4gYXQgcG9ydCAweDYwLDB4NjQgb24gaXNhMA0KYXRrYmQw OiA8QVQgS2V5Ym9hcmQ+IGlycSAxIG9uIGF0a2JkYzANCmF0a2JkMDogaW50 ZXJydXB0aW5nIGF0IElTQSBpcnEgMQ0KdmdhMDogPEdlbmVyaWMgSVNBIFZH QT4gYXQgcG9ydCAweDNjMC0weDNkZiBpb21lbSAweGEwMDAwLTB4YmZmZmYg b24gaXNhMA0Kc2MwOiA8U3lzdGVtIGNvbnNvbGU+IG9uIGlzYTANCnNjMDog VkdBIDwxNiB2aXJ0dWFsIGNvbnNvbGVzLCBmbGFncz0weDIwMD4NCm1jY2xv Y2swOiA8TUMxNDY4MThBIHJlYWwgdGltZSBjbG9jaz4gYXQgcG9ydCAweDcw LTB4NzEgb24gaXNhMA0Kc2lvMCBhdCBwb3J0IDB4M2Y4LTB4M2ZmIGlycSA0 IG9uIGlzYTANCnNpbzA6IHR5cGUgMTY1NTBBDQpzaW8wOiBpbnRlcnJ1cHRp bmcgYXQgSVNBIGlycSA0DQpzaW8xOiByZXNlcnZlZCBmb3IgbG93LWxldmVs IGkvbw0KVGltZWNvdW50ZXIgImFscGhhIiAgZnJlcXVlbmN5IDQ2MjM3MTM1 MyBIeg0KSVAgcGFja2V0IGZpbHRlcmluZyBpbml0aWFsaXplZCwgZGl2ZXJ0 IGRpc2FibGVkLCBydWxlLWJhc2VkIGZvcndhcmRpbmcgZGlzYWJsZWQsIGRl ZmF1bHQgdG8gYWNjZXB0LCB1bmxpbWl0ZWQgbG9nZ2luZw0KYXRhMS1zbGF2 ZTogaWRlbnRpZnkgcmV0cmllcyBleGNlZWRlZA0KYWNkMDogQ0RST00gPENP TVBBUSBDRFItODQzNT4gYXQgYXRhMS1tYXN0ZXIgdXNpbmcgUElPNA0KV2Fp dGluZyAyIHNlY29uZHMgZm9yIFNDU0kgZGV2aWNlcyB0byBzZXR0bGUNCk1v dW50aW5nIHJvb3QgZnJvbSB1ZnM6L2Rldi9kYTBhDQpkYTAgYXQgaXNwMCBi dXMgMCB0YXJnZXQgMCBsdW4gMA0KZGEwOiA8U0VBR0FURSBTVDM5MjE2VyAw MDA1PiBGaXhlZCBEaXJlY3QgQWNjZXNzIFNDU0ktMyBkZXZpY2UgDQpkYTA6 IDQwLjAwME1CL3MgdHJhbnNmZXJzICgyMC4wMDBNSHosIG9mZnNldCA4LCAx NmJpdCksIFRhZ2dlZCBRdWV1ZWluZyBFbmFibGVkDQpkYTA6IDg3NjFNQiAo MTc5NDI1ODQgNTEyIGJ5dGUgc2VjdG9yczogMjU1SCA2M1MvVCAxMTE2QykN CldBUk5JTkc6IC8gd2FzIG5vdCBwcm9wZXJseSBkaXNtb3VudGVkDQpXYWl0 aW5nIChtYXggNjAgc2Vjb25kcykgZm9yIHN5c3RlbSBwcm9jZXNzIGBidWZk YWVtb24nIHRvIHN0b3AuLi5zdG9wcGVkDQpXYWl0aW5nIChtYXggNjAgc2Vj b25kcykgZm9yIHN5c3RlbSBwcm9jZXNzIGBzeW5jZXInIHRvIHN0b3AuLi5z dG9wcGVkDQoNCnN5bmNpbmcgZGlza3MuLi4gDQpkb25lDQpVcHRpbWU6IDRt NDZzDQpSZWJvb3RpbmcuLi4NCkNvcHlyaWdodCAoYykgMTk5Mi0yMDAxIFRo ZSBGcmVlQlNEIFByb2plY3QuDQpDb3B5cmlnaHQgKGMpIDE5NzksIDE5ODAs IDE5ODMsIDE5ODYsIDE5ODgsIDE5ODksIDE5OTEsIDE5OTIsIDE5OTMsIDE5 OTQNCglUaGUgUmVnZW50cyBvZiB0aGUgVW5pdmVyc2l0eSBvZiBDYWxpZm9y bmlhLiBBbGwgcmlnaHRzIHJlc2VydmVkLg0KRnJlZUJTRCA0LjMtUkVMRUFT RSAjMDogVHVlIE1heSAyOSAxNjoxNTo1MSBFRFQgMjAwMQ0KICAgIHJvb3RA YWxwaGEudGhlYml6Lm5ldDovdXNyL3NyYy90b21zL2NvbXBpbGUvQTQzLURJ U0tMRVNTDQpTVDY2MDANCkNPTVBBUSBBbHBoYVNlcnZlciBEUzEwIDQ2NiBN SHosIDQ2Mk1Ieg0KODE5MiBieXRlIHBhZ2Ugc2l6ZSwgMSBwcm9jZXNzb3Iu DQpDUFU6IEVWNiAoMjEyNjQpIG1ham9yPTggbWlub3I9NCBleHRlbnNpb25z PTB4MzAzPEJXWCxGSVgsTVZJLFBSRUNJU0U+DQpPU0YgUEFMIHJldjogMHgx MDAzMzAwMDIwMTMzDQpyZWFsIG1lbW9yeSAgPSA2MDEzODI5MTIgKDU4NzI4 OEsgYnl0ZXMpDQphdmFpbCBtZW1vcnkgPSA1Nzg5Mjg2NDAgKDU2NTM2MEsg Ynl0ZXMpDQpQcmVsb2FkZWQgZWxmIGtlcm5lbCAia2VybmVsIiBhdCAweGZm ZmZmYzAwMDA1Y2EwMDAuDQptZDA6IE1hbGxvYyBkaXNrDQpwY2liMDogPDIx MjcxIFBDSSBob3N0IGJ1cyBhZGFwdGVyPiBvbiB0c3VuYW1pMA0KcGNpMDog PFBDSSBidXM+IG9uIHBjaWIwDQpwY2kwOiA8QWNlckxhYnMgTTUyMzcgKEFs YWRkaW4tVikgVVNCIGNvbnRyb2xsZXI+IGF0IDEuMCBpcnEgMjM0DQppc2Fi MDogPEFjZXJMYWJzIE0xNTMzIHBvcnRhYmxlIFBDSS1JU0EgYnJpZGdlPiBh dCBkZXZpY2UgNy4wIG9uIHBjaTANCmlzYTA6IDxJU0EgYnVzPiBvbiBpc2Fi MA0KZGUwOiA8RGlnaXRhbCAyMTE0MyBGYXN0IEV0aGVybmV0PiBwb3J0IDB4 MTEwMC0weDExN2YgbWVtIDB4MjBjMjAwMC0weDIwYzIzZmYgaXJxIDI5IGF0 IGRldmljZSA5LjAgb24gcGNpMA0KZGUwOiBpbnRlcnJ1cHRpbmcgYXQgVFNV TkFNSSBpcnEgMjkNCmRlMDogREVDIDIxMTQzIFsxMC0xMDBNYi9zXSBwYXNz IDQuMQ0KZGUwOiBhZGRyZXNzIDA4OjAwOjJiOjg2OjZkOmU5DQpkZTA6IGVu YWJsaW5nIDEwYmFzZVQgcG9ydA0KZGUxOiA8RGlnaXRhbCAyMTE0MyBGYXN0 IEV0aGVybmV0PiBwb3J0IDB4MTE4MC0weDExZmYgbWVtIDB4MjBjMjQwMC0w eDIwYzI3ZmYgaXJxIDMwIGF0IGRldmljZSAxMS4wIG9uIHBjaTANCmRlMTog aW50ZXJydXB0aW5nIGF0IFRTVU5BTUkgaXJxIDMwDQpkZTE6IERFQyAyMTE0 MyBbMTAtMTAwTWIvc10gcGFzcyA0LjENCmRlMTogYWRkcmVzcyAwODowMDoy Yjo4Njo2ZDplOA0KZGUxOiBlbmFibGluZyAxMDBiYXNlVFggcG9ydA0KYXRh cGNpMDogPEFjZXJMYWJzIEFsYWRkaW4gQVRBMzMgY29udHJvbGxlcj4gcG9y dCAweDEyMTAtMHgxMjFmLDB4Mzc0LTB4Mzc3LDB4MTcwLTB4MTdmLDB4M2Y0 LTB4M2Y3LDB4MWYwLTB4MWZmIGlycSAyMzggYXQgZGV2aWNlIDEzLjAgb24g cGNpMA0KYXRhMTogYXQgMHgxNzAgaXJxIDE1IG9uIGF0YXBjaTANCmlzcDA6 IDxRbG9naWMgSVNQIDEwMjAvMTA0MCBQQ0kgU0NTSSBBZGFwdGVyPiBwb3J0 IDB4MTAwMC0weDEwZmYgbWVtIDB4MjBjMTAwMC0weDIwYzFmZmYgaXJxIDM5 IGF0IGRldmljZSAxNS4wIG9uIHBjaTANCmlzcDA6IGludGVycnVwdGluZyBh dCBUU1VOQU1JIGlycSAzOQ0KcGNpMDogPFZHQS1jb21wYXRpYmxlIGRpc3Bs YXkgZGV2aWNlPiBhdCAxNy4wIGlycSA0Nw0KZmRjMDogPE5FQyA3MjA2NUIg b3IgY2xvbmU+IGF0IHBvcnQgMHgzZjAtMHgzZjUsMHgzZjcgaXJxIDYgZHJx IDIgb24gaXNhMA0KZmRjMDogaW50ZXJydXB0aW5nIGF0IElTQSBpcnEgNg0K ZmRjMDogRklGTyBlbmFibGVkLCA4IGJ5dGVzIHRocmVzaG9sZA0KZmQwOiA8 MTQ0MC1LQiAzLjUiIGRyaXZlPiBvbiBmZGMwIGRyaXZlIDANCmF0a2JkYzA6 IDxLZXlib2FyZCBjb250cm9sbGVyIChpODA0Mik+IGF0IHBvcnQgMHg2MCww eDY0IG9uIGlzYTANCmF0a2JkMDogPEFUIEtleWJvYXJkPiBpcnEgMSBvbiBh dGtiZGMwDQphdGtiZDA6IGludGVycnVwdGluZyBhdCBJU0EgaXJxIDENCnZn YTA6IDxHZW5lcmljIElTQSBWR0E+IGF0IHBvcnQgMHgzYzAtMHgzZGYgaW9t ZW0gMHhhMDAwMC0weGJmZmZmIG9uIGlzYTANCnNjMDogPFN5c3RlbSBjb25z b2xlPiBvbiBpc2EwDQpzYzA6IFZHQSA8MTYgdmlydHVhbCBjb25zb2xlcywg ZmxhZ3M9MHgyMDA+DQptY2Nsb2NrMDogPE1DMTQ2ODE4QSByZWFsIHRpbWUg Y2xvY2s+IGF0IHBvcnQgMHg3MC0weDcxIG9uIGlzYTANCnNpbzAgYXQgcG9y dCAweDNmOC0weDNmZiBpcnEgNCBvbiBpc2EwDQpzaW8wOiB0eXBlIDE2NTUw QQ0Kc2lvMDogaW50ZXJydXB0aW5nIGF0IElTQSBpcnEgNA0Kc2lvMTogcmVz ZXJ2ZWQgZm9yIGxvdy1sZXZlbCBpL28NClRpbWVjb3VudGVyICJhbHBoYSIg IGZyZXF1ZW5jeSA0NjIzNzE0NzkgSHoNCklQIHBhY2tldCBmaWx0ZXJpbmcg aW5pdGlhbGl6ZWQsIGRpdmVydCBkaXNhYmxlZCwgcnVsZS1iYXNlZCBmb3J3 YXJkaW5nIGRpc2FibGVkLCBkZWZhdWx0IHRvIGFjY2VwdCwgdW5saW1pdGVk IGxvZ2dpbmcNCmF0YTEtc2xhdmU6IGlkZW50aWZ5IHJldHJpZXMgZXhjZWVk ZWQNCmFjZDA6IENEUk9NIDxDT01QQVEgQ0RSLTg0MzU+IGF0IGF0YTEtbWFz dGVyIHVzaW5nIFBJTzQNCldhaXRpbmcgMiBzZWNvbmRzIGZvciBTQ1NJIGRl dmljZXMgdG8gc2V0dGxlDQpNb3VudGluZyByb290IGZyb20gdWZzOi9kZXYv ZGEwYQ0KZGEwIGF0IGlzcDAgYnVzIDAgdGFyZ2V0IDAgbHVuIDANCmRhMDog PFNFQUdBVEUgU1QzOTIxNlcgMDAwNT4gRml4ZWQgRGlyZWN0IEFjY2VzcyBT Q1NJLTMgZGV2aWNlIA0KZGEwOiA0MC4wMDBNQi9zIHRyYW5zZmVycyAoMjAu MDAwTUh6LCBvZmZzZXQgOCwgMTZiaXQpLCBUYWdnZWQgUXVldWVpbmcgRW5h YmxlZA0KZGEwOiA4NzYxTUIgKDE3OTQyNTg0IDUxMiBieXRlIHNlY3RvcnM6 IDI1NUggNjNTL1QgMTExNkMpDQo= --0-1942972560-994780936=:28844-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Jul 10 10: 1:52 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AE3837B403; Tue, 10 Jul 2001 10:01:51 -0700 (PDT) (envelope-from iedowse@FreeBSD.org) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f6AGvj098770; Tue, 10 Jul 2001 09:57:45 -0700 (PDT) (envelope-from iedowse) Date: Tue, 10 Jul 2001 09:57:45 -0700 (PDT) From: Message-Id: <200107101657.f6AGvj098770@freefall.freebsd.org> To: root@owca.acn.pl, iedowse@FreeBSD.org, freebsd-alpha@freebsd.org Subject: Re: alpha/20011: trap entry = 0x2 (memory management fault) Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: trap entry = 0x2 (memory management fault) State-Changed-From-To: open->feedback State-Changed-By: iedowse State-Changed-When: Tue Jul 10 09:57:02 PDT 2001 State-Changed-Why: Can you still reproduce this with newer releases? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=20011 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Jul 10 10:35: 9 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from smtp8.xs4all.nl (smtp8.xs4all.nl [194.109.127.134]) by hub.freebsd.org (Postfix) with ESMTP id 7795637B409 for ; Tue, 10 Jul 2001 10:35:05 -0700 (PDT) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp8.xs4all.nl (8.9.3/8.9.3) with ESMTP id TAA21103; Tue, 10 Jul 2001 19:35:02 +0200 (CEST) Received: (from wkb@localhost) by freebie.xs4all.nl (8.11.4/8.11.3) id f6AHZ1U00946; Tue, 10 Jul 2001 19:35:01 +0200 (CEST) (envelope-from wkb) Date: Tue, 10 Jul 2001 19:35:01 +0200 From: Wilko Bulte To: "Kenneth D. Merry" Cc: Matthew Jacob , alpha@FreeBSD.ORG Subject: Re: dysfunctional XP1000, suggestions? Message-ID: <20010710193501.A872@freebie.xs4all.nl> References: <20010709153207.B10936@panzer.kdm.org> <20010709143315.R13487-100000@wonky.feral.com> <20010709234216.A3777@freebie.xs4all.nl> <20010709154700.A11434@panzer.kdm.org> <20010710000630.A3994@freebie.xs4all.nl> <20010709160816.A11661@panzer.kdm.org> <20010710002317.A4132@freebie.xs4all.nl> <20010709164302.B11661@panzer.kdm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010709164302.B11661@panzer.kdm.org>; from ken@kdm.org on Mon, Jul 09, 2001 at 04:43:02PM -0600 X-OS: FreeBSD 4.3-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Jul 09, 2001 at 04:43:02PM -0600, Kenneth D. Merry wrote: > On Tue, Jul 10, 2001 at 00:23:17 +0200, Wilko Bulte wrote: > > On Mon, Jul 09, 2001 at 04:08:16PM -0600, Kenneth D. Merry wrote: > > > On Tue, Jul 10, 2001 at 00:06:30 +0200, Wilko Bulte wrote: > > > > On Mon, Jul 09, 2001 at 03:47:00PM -0600, Kenneth D. Merry wrote: > > > > > On Mon, Jul 09, 2001 at 23:42:16 +0200, Wilko Bulte wrote: > > > > > > On Mon, Jul 09, 2001 at 02:33:40PM -0700, Matthew Jacob wrote: > > > > > > > No, it should just work. I hope your machine ain't toasted... maybe Wilko can > > > > > > > help here... > > > > > > > > > > > > Well, let me try. On the MLB there is a row of LEDs. Named D21 til D14 > > > > > > What do they display (on/off wise)? > > > > > > > > > > All are on/green except D16, which is off. > > > > > > > > Ouch... no good. > > > > > > > > FB -> Tsunami init/verify error. Listed as a CPU card malfunction. > > > > Does it also beep? > > > > > > No beeps. > > > > Hmm > > > > > Should I try reseating the CPU board or the CPU itself? > > > > Always worth trying. Same for the DIMMs. > > We tried reseating the CPU board and the DIMMs. We also tried different > memory (PC133 instead of PC100). No luck, D16 still isn't lit. > > Any other ideas? Hm. Unfortunately not :( -- | / o / / _ Arnhem, The Netherlands email: wilko@FreeBSD.org |/|/ / / /( (_) Bulte "Youth is not a time in life, it is a state of mind" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Jul 10 10:55:31 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 74A5637B401 for ; Tue, 10 Jul 2001 10:55:27 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from wonky.feral.com (wonky.feral.com [192.67.166.7]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6AHtPS92626; Tue, 10 Jul 2001 10:55:25 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Tue, 10 Jul 2001 10:55:22 -0700 (PDT) From: Matthew Jacob Reply-To: To: "Thomas P. Holmes [ Systems ]" Cc: Subject: Re: Invalidating Pack In-Reply-To: Message-ID: <20010710105409.Q99370-100000@wonky.feral.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org You're getting a disk error of some kind. The 'invalidating pack' is the DA driver giving up. You have to do better than 'freaks out' and 'something like'. On Tue, 10 Jul 2001, Thomas P. Holmes [ Systems ] wrote: > > I'm at my wits end of this one. I have searched and searched and have not > been able to resolve the issue. > > I'm using a segate baracuda scsi with the stock qlogic controller on a > compaq alpha ds-10. The majority of the time when I do any have writing, > make emacs this last time, the machine freaks out and gives an error of > something like: > > (isp0.0.0.0) invalidating pack > > The things I saw referrred to tagged-queing and what not. > I've swapped out disk, controller and cable and it still happens. I would > like to get the Segate working since we have awhole bunch of them. > > Any help would be appreciated! I've included a copy of the dmesg. > > Thanks! > > > -- > > "What ever you do, take care of your shoes." > > > ________________ http://www.BiznessOnline.com ________________ > > Thomas Holmes Bizness Online > Unix Systems Engineer Suite 1801 > tholmes@thebiz.net 11 North Pearl St. > (518) 533-6522 Albany, NY, 12207 > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Jul 10 20:27:59 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 3CD6737B403 for ; Tue, 10 Jul 2001 20:27:55 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from wonky.feral.com (wonky.feral.com [192.67.166.7]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6B3RsS00388 for ; Tue, 10 Jul 2001 20:27:54 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Tue, 10 Jul 2001 20:27:50 -0700 (PDT) From: Matthew Jacob Reply-To: To: Subject: Re: [ alpha ] supplement to beast becoming available (fwd) Message-ID: <20010710202536.M9225-100000@wonky.feral.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org following up further on this- make sure you also don't have hints set by the loader. That can also be bad if they get duplicated. -matt ---------- Forwarded message ---------- Date: Sun, 8 Jul 2001 22:13:33 -0700 (PDT) From: Matthew Jacob To: Matt Dillon Cc: David O'Brien , Jordan Hubbard , developers@FreeBSD.org Subject: Re: [ alpha ] supplement to beast becoming available Uh, yeah, what've asked for. Point to note- the RA is also important because if you don't have a DDB stack trace, the RA can tell you where you've come from most reacently. On Sun, 8 Jul 2001, Matt Dillon wrote: > > :isp0: port 0x8000-0x80ff mem 0x81010000- > :0x81010fff irq 16 at device 9.0 on pci1 > :isp0: interrupting at CIA irq 16 > :atkbdc0: at port 0x60,0x64 on isa0 > :atkbd0: irq 1 on atkbdc0 > :atkbd0: interrupting at ISA irq 1 > :atkbd1: irq 1 on atkbdc0 > : > :fatal kernel trap: > : > : trap entry = 0x2 (memory management fault) > : faulting va = 0x60 > : type = access violation > : cause = load instructon > : pc = 0xfffffc00003f599c > : ra = 0xfffffc0000549b5c > : sp = 0xfffffc0000693408 > : usp = 0x0 > : curproc = 0xfffffc00006122e0 > : pid = 0, comm = swapper > : > :panic: trap > :Uptime: 0s > :Automatic reboot in 15 seconds - press a key on the console to abort > > This sure likes it ought to be easy to track down... you have what > looks to be a null pointer dereference and a good PC. Just take the > nm kernel.debug | sort output and locate the routine that pc resides > in... > > -Matt > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 12 6:13:28 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from VL-MS-MR002.sc1.videotron.ca (relais.videotron.ca [24.201.245.36]) by hub.freebsd.org (Postfix) with ESMTP id DBB7437B405 for ; Thu, 12 Jul 2001 06:13:24 -0700 (PDT) (envelope-from leclercn@videotron.ca) Received: from atom.quanta.ca ([24.202.188.149]) by VL-MS-MR002.sc1.videotron.ca (Netscape Messaging Server 4.15) with ESMTP id GGD3EB00.XAG for ; Thu, 12 Jul 2001 09:13:23 -0400 Received: from videotron.ca (wave.quanta.ca [192.168.56.24]) by atom.quanta.ca (8.12.0.Beta12/8.12.0.Beta7) with ESMTP id f6CDDTAL014261 (using TLSv1/SSLv3 with cipher RC4-MD5 (128 bits) verified NO) for ; Thu, 12 Jul 2001 09:13:50 -0400 (EDT) Message-ID: <3B4DA279.43E95E1D@videotron.ca> Date: Thu, 12 Jul 2001 09:13:29 -0400 From: Normand Leclerc X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-alpha@freebsd.org Subject: lpd problems... Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I am having a small problem with lpd... My alpha is a printer server. Every configuration works locally (I can print). The printer is configured as being lp. Whenever another FreeBSD machine tries to send a job into the queue, I get an error: "Unknown printer lp" in the log. I can do an lpc status on lp locally. Any ideas? Normand Leclerc leclercn@videotron.ca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 12 7:38:16 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by hub.freebsd.org (Postfix) with ESMTP id C264A37B403 for ; Thu, 12 Jul 2001 07:38:12 -0700 (PDT) (envelope-from ticso@mail.cicely.de) Received: from mail.cicely.de (cicely20 [10.1.1.22]) by srv1.cosmo-project.de (8.11.0/8.11.0) with ESMTP id f6CEcAV61485; Thu, 12 Jul 2001 16:38:10 +0200 (CEST) Received: (from ticso@localhost) by mail.cicely.de (8.11.0/8.11.0) id f6CEd0015134; Thu, 12 Jul 2001 16:39:00 +0200 (CEST) Date: Thu, 12 Jul 2001 16:38:59 +0200 From: Bernd Walter To: "Thomas P. Holmes [ Systems ]" Cc: alpha@FreeBSD.ORG Subject: Re: Invalidating Pack Message-ID: <20010712163858.B14384@cicely20.cicely.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from tholmes@thebiz.net on Tue, Jul 10, 2001 at 12:02:16PM -0400 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Jul 10, 2001 at 12:02:16PM -0400, Thomas P. Holmes [ Systems ] wrote: > > I'm at my wits end of this one. I have searched and searched and have not > been able to resolve the issue. > > I'm using a segate baracuda scsi with the stock qlogic controller on a > compaq alpha ds-10. The majority of the time when I do any have writing, > make emacs this last time, the machine freaks out and gives an error of > something like: > > (isp0.0.0.0) invalidating pack > > The things I saw referrred to tagged-queing and what not. > I've swapped out disk, controller and cable and it still happens. I would > like to get the Segate working since we have awhole bunch of them. > > Any help would be appreciated! I've included a copy of the dmesg. If your drives firmware is old enough it may have a broken write cache. You should either disable write caching on the drive or update it's firmware. > da0: Fixed Direct Access SCSI-3 device ^^^^ I'm not shure but it looks older than the fixed version. -- B.Walter COSMO-Project http://www.cosmo-project.de ticso@cicely.de Usergroup info@cosmo-project.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 12 8: 7:57 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from postino.fi.infn.it (postino.fi.infn.it [192.84.145.9]) by hub.freebsd.org (Postfix) with ESMTP id 5110937B401 for ; Thu, 12 Jul 2001 08:07:52 -0700 (PDT) (envelope-from Riccardo.Veraldi@fi.infn.it) Received: from nikita.fi.infn.it (nikita.fi.infn.it [192.84.146.189]) by postino.fi.infn.it (8.11.1/8.11.1) with ESMTP id f6CF7jm18984 for ; Thu, 12 Jul 2001 17:07:45 +0200 (CEST) From: Riccardo.Veraldi@fi.infn.it Received: by nikita.fi.infn.it (Postfix, from userid 1001) id 979C618CE9; Thu, 12 Jul 2001 17:07:44 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by nikita.fi.infn.it (Postfix) with ESMTP id 460B215902 for ; Thu, 12 Jul 2001 17:07:44 +0200 (CEST) Date: Thu, 12 Jul 2001 17:07:43 +0200 (CEST) X-X-Sender: To: Subject: Miata motherboard. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello I Wanted to ask your opinion... Do u think I can remove 64MB of DRAM on my miata on the socket numer 1 and replace it with 256 MB (2 modules 128 each) of no parity DRAM ?? do u think it will work ?? in this case I would have : socket 0 64 MB DRAM parity socket 1 256 MB DRAM noparity socket 2 128 MB DRAM parity May this work ?? Anyway I Wanted to ask another thing. I saw that going to manage on the DIMM sockets it looks like very dangerous because the motherboard flexes very much curving itself dangerously !! Do u think there is really any danger ?? I mean seems like there is nothing under the motherboard to support the pressure of plugging new DIMM modules on the sockets. thanks Rick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 12 16:34:23 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 1F3DF37B405 for ; Thu, 12 Jul 2001 16:34:21 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo (mjacob@beppo [192.67.166.79]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6CNYJS63072; Thu, 12 Jul 2001 16:34:19 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Thu, 12 Jul 2001 16:34:19 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: alpha@FreeBSD.ORG Cc: "David O'Brien" Subject: well, at least one panic... Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is the first panic or freeze this week for me on Alpha. panic: blockable sleep lock (sleep mutex) Giant @ ../../../alpha/alpha/trap.c:469 cpuid = 0; panic Stopped at Debugger+0x34: zapnot v0,#0xf,a0 db> t Debugger() at Debugger+0x34 panic() at panic+0x178 witness_lock() at witness_lock+0x250 trap() at trap+0xbd8 XentMM() at XentMM+0x2c --- memory management fault (from ipl 7) --- pmap_activate() at pmap_activate+0xc0 Lcs6() at Lcs6+0xc --- root of call graph --- db> -matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 12 17:19:39 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 9F7B137B401; Thu, 12 Jul 2001 17:19:36 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo (mjacob@beppo [192.67.166.79]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6D0JaS63687; Thu, 12 Jul 2001 17:19:36 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Thu, 12 Jul 2001 17:19:32 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: sos@freebsd.org Cc: alpha@freebsd.org Subject: ATA not resetting... power cycle needed... Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Soren- Sometimes, when an Alpha of mine crashes, it leaves the ATA drives in a very wierd state.. It's able to boot from them, but it cannot mountroot on them because: ata0-master: ata_command: timeout waiting for intr ata0-master: identify failed Even an 'init' at the SRM prompt doesn't clear this up and I have to power-cycle. You could consider this a PROM problem, but it might also be an easy thing to check for and fix in the driver? -matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 12 17:42:16 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from sneakerz.org (sneakerz.org [216.33.66.254]) by hub.freebsd.org (Postfix) with ESMTP id 97DB337B401 for ; Thu, 12 Jul 2001 17:42:11 -0700 (PDT) (envelope-from bright@sneakerz.org) Received: by sneakerz.org (Postfix, from userid 1092) id 81BE15D010; Thu, 12 Jul 2001 19:41:57 -0500 (CDT) Date: Thu, 12 Jul 2001 19:41:57 -0500 From: Alfred Perlstein To: alpha@freebsd.org Subject: WTB: decent speed alpha Message-ID: <20010712194157.M4589@sneakerz.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I'm looking to purchase an alpha system for FreeBSD development. If anyone has a decent system, 21264 at or above 500mhz in the US that they want to unload please email me privately with a price. I don't really need most of the peripherals, however, memory, cpu, motherboard and some form of output would be desireable. If you're in the SF Bay area I can even pick it up. :) -- -Alfred Perlstein [alfred@freebsd.org] Ok, who wrote this damn function called '??'? And why do my programs keep crashing in it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 12 17:51: 1 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id A6E4437B401 for ; Thu, 12 Jul 2001 17:50:59 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo (mjacob@beppo [192.67.166.79]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6D0ovS64059; Thu, 12 Jul 2001 17:50:57 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Thu, 12 Jul 2001 17:50:57 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: Alfred Perlstein Cc: alpha@FreeBSD.ORG Subject: Re: WTB: decent speed alpha In-Reply-To: <20010712194157.M4589@sneakerz.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org http://cgi.ebay.com/aw-cgi/eBayISAPI.dll?ViewItem&item=1254880498 639$ for this, but it's not clear whether this one has SRM or not http://cgi.ebay.com/aw-cgi/eBayISAPI.dll?ViewItem&item=1254409914 Current bid is 739$ for this.. also not clear whether it has SRM or not. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 13 4:21: 4 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from smtp4.xs4all.nl (smtp4.xs4all.nl [194.109.6.50]) by hub.freebsd.org (Postfix) with ESMTP id 6231D37B405 for ; Fri, 13 Jul 2001 04:21:01 -0700 (PDT) (envelope-from wkb@xs4all.nl) Received: from webmail4.xs4all.nl (webmail4.xs4all.nl [194.109.127.38]) by smtp4.xs4all.nl (8.9.3/8.9.3) with ESMTP id NAA13573; Fri, 13 Jul 2001 13:20:48 +0200 (CEST) Received: (from nobody@localhost) by webmail4.xs4all.nl (8.11.1/8.11.1) id f6DBMIa45513; Fri, 13 Jul 2001 13:22:18 +0200 (CEST) (envelope-from wkb@xs4all.nl) X-Authentication-Warning: webmail4.xs4all.nl: nobody set sender to wkb@xs4all.nl using -f Received: from 161.114.88.71 (SquirrelMail authenticated user wkb) by webmail.xs4all.nl with HTTP; Fri, 13 Jul 2001 13:22:18 +0200 (CEST) Message-ID: <34607.161.114.88.71.995023338.squirrel@webmail.xs4all.nl> Date: Fri, 13 Jul 2001 13:22:18 +0200 (CEST) Subject: Re: WTB: decent speed alpha From: "Wilko Bulte" To: In-Reply-To: References: Cc: , X-Mailer: SquirrelMail (version 1.1.3 [cvs]) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > > http://cgi.ebay.com/aw-cgi/eBayISAPI.dll?ViewItem&item=1254880498 > > 639$ for this, but it's not clear whether this one has SRM or not That is a Miata, which has SRM available. Is a 21164, not a 21264 CPU. But a decent machine (I have one) > > http://cgi.ebay.com/aw-cgi/eBayISAPI.dll?ViewItem&item=1254409914 > > Current bid is 739$ for this.. also not clear whether it has SRM or > not. XP1000, really nice. EV6. Has SRM code > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-alpha" in the body of the message -- | / o / / _ Arnhem, The Netherlands email: wilko@FreeBSD.org |/|/ / / /( (_) Bulte http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 13 10:31:39 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [206.40.252.115]) by hub.freebsd.org (Postfix) with ESMTP id ACA5237B403 for ; Fri, 13 Jul 2001 10:31:37 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.3/8.11.1) id f6DHVO467319; Fri, 13 Jul 2001 10:31:24 -0700 (PDT) (envelope-from obrien) Date: Fri, 13 Jul 2001 10:31:24 -0700 From: "David O'Brien" To: Matthew Jacob Cc: Alfred Perlstein , alpha@FreeBSD.ORG Subject: Re: WTB: decent speed alpha Message-ID: <20010713103124.A66961@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <20010712194157.M4589@sneakerz.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from mjacob@feral.com on Thu, Jul 12, 2001 at 05:50:57PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Jul 12, 2001 at 05:50:57PM -0700, Matthew Jacob wrote: > http://cgi.ebay.com/aw-cgi/eBayISAPI.dll?ViewItem&item=1254880498 > 639$ for this, but it's not clear whether this one has SRM or not Way, way over priced. I wouldn't pay more than $350 for this. > http://cgi.ebay.com/aw-cgi/eBayISAPI.dll?ViewItem&item=1254409914 > Current bid is 739$ for this.. also not clear whether it has SRM or not. It does. now at $810 and still a good price. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 13 10:36:56 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from web14807.mail.yahoo.com (web14807.mail.yahoo.com [216.136.224.223]) by hub.freebsd.org (Postfix) with SMTP id D9BD237B406 for ; Fri, 13 Jul 2001 10:36:54 -0700 (PDT) (envelope-from rhamming2001@yahoo.com) Message-ID: <20010713173652.73685.qmail@web14807.mail.yahoo.com> Received: from [24.248.85.196] by web14807.mail.yahoo.com via HTTP; Fri, 13 Jul 2001 10:36:52 PDT Date: Fri, 13 Jul 2001 10:36:52 -0700 (PDT) From: John Doe Subject: conftest core dumps To: alpha@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I just got -current running on the AlphaPC DS20 today. It looks like conftest core dumped for some unkonw reason... SMP: AP CPU #1 Launched! pid 41225 (conftest), uid 0: exited on signal 11 (core dumped) pid 41226 (conftest), uid 0: exited on signal 11 (core dumped) what is conftest ? __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 13 10:41:54 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [206.40.252.115]) by hub.freebsd.org (Postfix) with ESMTP id 68DA337B401 for ; Fri, 13 Jul 2001 10:41:52 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.3/8.11.1) id f6DHfoN67521; Fri, 13 Jul 2001 10:41:50 -0700 (PDT) (envelope-from obrien) Date: Fri, 13 Jul 2001 10:41:50 -0700 From: "David O'Brien" To: Matthew Jacob Cc: alpha@FreeBSD.ORG Subject: Re: [ alpha ] supplement to beast becoming available (fwd) Message-ID: <20010713104150.B66961@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <20010710202536.M9225-100000@wonky.feral.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010710202536.M9225-100000@wonky.feral.com>; from mjacob@feral.com on Tue, Jul 10, 2001 at 08:27:50PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Jul 10, 2001 at 08:27:50PM -0700, Matthew Jacob wrote: > following up further on this- make sure you also don't have hints > set by the loader. That can also be bad if they get duplicated. Actually this was not Peter's suggestion. His suggestion was don't have the kernel providing hints. Rather let the loader do it. For GENERIC this means either rm'ing GENERIC.hints, or cp /dev/null GENERIC.hints (will survive a `cvs up' better than rm'ing the hints). -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 13 10:51:47 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id CCE5E37B403; Fri, 13 Jul 2001 10:51:43 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo (mjacob@beppo [192.67.166.79]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6DHpfS75761; Fri, 13 Jul 2001 10:51:41 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Fri, 13 Jul 2001 10:51:41 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: "David O'Brien" , Peter Wemm Cc: alpha@FreeBSD.ORG Subject: Re: [ alpha ] supplement to beast becoming available (fwd) In-Reply-To: <20010713104150.B66961@dragon.nuxi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org We could, but: #To statically compile in device wiring instead of /boot/device.hints #hints "GENERIC.hints" is the default as well. I found, btw, that hint.atkbdc.0.at="isa" hint.atkbdc.0.port="0x060" hint.atkbd.0.at="atkbdc" hint.atkbd.0.irq="1" in my loader hints file caused a panic on the 4100 similar to yours. When the atkbd controlle actually tries to attach, it prints out: atkbdc0: at port 0x60,0x64 on isa0 So, I commented out the hints file entirely. So- without digging into the details, it seems to me that the port hint and something else deciding there could be a second port, was also a cause of confusion and panic. -matt On Fri, 13 Jul 2001, David O'Brien wrote: > On Tue, Jul 10, 2001 at 08:27:50PM -0700, Matthew Jacob wrote: > > following up further on this- make sure you also don't have hints > > set by the loader. That can also be bad if they get duplicated. > > Actually this was not Peter's suggestion. His suggestion was don't have > the kernel providing hints. Rather let the loader do it. For GENERIC > this means either rm'ing GENERIC.hints, or cp /dev/null GENERIC.hints > (will survive a `cvs up' better than rm'ing the hints). > > -- > -- David (obrien@FreeBSD.org) > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 13 11:42:16 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from web14807.mail.yahoo.com (web14807.mail.yahoo.com [216.136.224.223]) by hub.freebsd.org (Postfix) with SMTP id 65D5937B401 for ; Fri, 13 Jul 2001 11:42:02 -0700 (PDT) (envelope-from rhamming2001@yahoo.com) Message-ID: <20010713184201.85324.qmail@web14807.mail.yahoo.com> Received: from [24.248.85.196] by web14807.mail.yahoo.com via HTTP; Fri, 13 Jul 2001 11:42:01 PDT Date: Fri, 13 Jul 2001 11:42:01 -0700 (PDT) From: John Doe Subject: Hmm...another panic To: alpha@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Mounting root from ufs:/dev/da0a SMP: AP CPU #1 Launched! pid 41225 (conftest), uid 0: exited on signal 11 (core dumped) pid 41226 (conftest), uid 0: exited on signal 11 (core dumped) fxp0: promiscuous mode enabled pid 55810 (tcpdump), uid 0: exited on signal 11 (core dumped) fxp0: promiscuous mode disabled panic: mutex Giant not owned at /usr/src/sys/vm/vm_map.c:2473 cpuid = 0; panic panic: from debugger cpuid = 0; panic -- i tried running tcpdump(8) ...and tcpdump core dumped and then the machine panicked :)..anyone have this problem ? here is the dmesg Unrecognized boot flag '0'. Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #0: Thu Jul 12 14:10:49 GMT 2001 root@bcast.bgmulti.com:/usr/obj/usr/src/sys/TEST ST6600 AlphaPC 264DP 500 MHz, 500MHz 8192 byte page size, 2 processors. CPU: EV6 (21264) major=8 minor=4 extensions=0x303 OSF PAL rev: 0x200290002012d real memory = 534233088 (521712K bytes) avail memory = 513982464 (501936K bytes) smp_start_secondary: can't send START command FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs Preloaded elf kernel "kernel" at 0xfffffc000078a000. tsunami0: <21271 Core Logic chipset> pcib0: <21271 PCI host bus adapter> on tsunami0 pci0: on pcib0 isab0: at device 5.0 on pci0 isa0: on isab0 atapci0: port 0x10200-0x1020f,0x3f4-0x3f7,0x1f0- 0x1f7 irq 238 at device 5.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata0: interrupting at ISA irq 14 ata1: at 0x170 irq 15 on atapci0 ata1: interrupting at ISA irq 15 atapci1: port 0x374-0x377,0x170-0x177 irq 239 at device 5.2 on pci0 atapci1: Busmastering DMA not configured pci0: at 5.3 (no driver attached) ahc0: port 0x10000-0x100ff mem 0x2321000-0x 2321fff irq 19 at device 6.0 on pci0 aic7895C: Ultra Wide Channel A, SCSI Id=7, 255 SCBs ahc0: interrupting at TSUNAMI irq 19 ahc1: port 0x10100-0x101ff mem 0x2322000-0x 2322fff irq 18 at device 6.1 on pci0 aic7895C: Ultra Wide Channel B, SCSI Id=7, 255 SCBs ahc1: interrupting at TSUNAMI irq 18 pcib2: at device 7.0 on pci0 pci1: on pcib2 pci1: at 4.0 (no driver attached) fxp0: port 0x1000-0x101f mem 0x2000000-0x20fff ff,0x2230000-0x2230fff irq 30 at device 5.0 on pci1 fxp0: interrupting at TSUNAMI irq 30 fxp0: Ethernet address 00:06:2b:00:76:2d inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pcib1: <21271 PCI host bus adapter> on tsunami0 pci2: on pcib1 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 atkbd0: interrupting at ISA irq 1 atkbd1: irq 1 on atkbdc0 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: interrupting at ISA irq 6 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 fd1: <1440-KB 3.5" drive> on fdc0 drive 0 mcclock0: at port 0x70-0x71 on isa0 ppc0: at port 0x3bc-0x3c3 irq 7 on isa0 ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode plip0: cannot reserve interrupt, failed. lpt0: on ppbus0 lpt0: Polled port ppi0: on ppbus0 ppc0: interrupting at ISA irq 7 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> sio0 at port 0x3f8-0x3ff irq 4 on isa0 sio0: type 16550A sio0: interrupting at ISA irq 4 sio1: reserved for low-level i/o vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 fdc1: cannot reserve I/O port range (6 ports) sio3: reserved for low-level i/o ppc1: cannot reserve I/O port range Timecounter "i8254" frequency 1193182 Hz Waiting 15 seconds for SCSI devices to settle pass3 at ahc0 bus 0 target 6 lun 0 pass3: Fixed Processor SCSI-2 device pass3: 3.300MB/s transfers da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled da0: 8678MB (17773524 512 byte sectors: 255H 63S/T 1106C) da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled da1: 8678MB (17773524 512 byte sectors: 255H 63S/T 1106C) da2 at ahc0 bus 0 target 2 lun 0 da2: Fixed Direct Access SCSI-2 device da2: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled da2: 8678MB (17773524 512 byte sectors: 255H 63S/T 1106C) Mounting root from ufs:/dev/da0a WARNING: / was not properly dismounted lock order reversal 1st 0xfffffc0000701830 clk @ /usr/src/sys/alpha/alpha/clock.c:702 2nd 0xfffffc00006fa248 callout @ /usr/src/sys/kern/kern_timeout.c:184 Bruce\ __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 13 11:43:26 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [206.40.252.115]) by hub.freebsd.org (Postfix) with ESMTP id 82AF737B405 for ; Fri, 13 Jul 2001 11:43:24 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.3/8.11.1) id f6DIh9r68355; Fri, 13 Jul 2001 11:43:09 -0700 (PDT) (envelope-from obrien) Date: Fri, 13 Jul 2001 11:43:04 -0700 From: "David O'Brien" To: Matthew Jacob Cc: Peter Wemm , alpha@FreeBSD.ORG Subject: Re: [ alpha ] supplement to beast becoming available (fwd) Message-ID: <20010713114304.A68294@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <20010713104150.B66961@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from mjacob@feral.com on Fri, Jul 13, 2001 at 10:51:41AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, Jul 13, 2001 at 10:51:41AM -0700, Matthew Jacob wrote: > We could, but: We could what? > #To statically compile in device wiring instead of /boot/device.hints > #hints "GENERIC.hints" Note that hints are still compiled into the kernel even with the above line commented out, if GENERIC.hints in the directory with GENERIC (or maybe it is `.'). The hints compiled in this way, have a "lower priority" associated with them; but they can still get in the way. I really don't like this 'feature' of including hints if the file exists w/o a "hints" include directive. But it seems Peter got bullied into doing things this way. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 13 12:34: 6 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from mail.gamersgarrison.com (ftp.gamersgarrison.com [63.231.177.113]) by hub.freebsd.org (Postfix) with ESMTP id 2420237B403 for ; Fri, 13 Jul 2001 12:34:00 -0700 (PDT) (envelope-from buzzwang@gamersgarrison.com) Received: from ecknick (router2.gamersgarrison.com [63.231.177.117]) by mail.gamersgarrison.com (8.11.3/8.11.3) with SMTP id f6DJZhL71569 for ; Fri, 13 Jul 2001 14:35:44 -0500 (CDT) (envelope-from buzzwang@gamersgarrison.com) Reply-To: From: "Group Captain Buzzwang" To: Subject: FW: FreeBSD install on AlphaBios equipped DEC Alpha's Date: Fri, 13 Jul 2001 14:33:20 -0500 Message-ID: <013601c10bd2$acc65000$0501010a@gamersgarrison.com> MIME-Version: 1.0 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) Importance: Normal Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=SHA1; boundary="----=_NextPart_000_012C_01C10BA8.C3486F40" X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_012C_01C10BA8.C3486F40 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Forwarding as suggested (didn't know the -alpha list existed). See below. -----Original Message----- From: Terry Lambert [mailto:tlambert2@mindspring.com] Sent: Friday, July 13, 2001 1:34 PM To: buzzwang@gamersgarrison.com Cc: freebsd-hackers@FreeBSD.ORG Subject: Re: FreeBSD install on AlphaBios equipped DEC Alpha's Group Captain Buzzwang wrote: > > I have 4 DEC Alpha XLT's here (all are 300mhz 256m ram) that I have > wanted to put to use for some time. I really, really wanted to install > FBSD on them but FBSD doesn't support an Alpha that isn't using SRM > firmware. All 4 of mine are equipped with the latest (v5.66) AlphaBIOS > as that is all that is available anymore from Digital/Compaq. I queried > them about it a couple months ago and the reply was rather abrupt: "It's > not available." > > I just finished installing Debian GNU/Linux on one of them. I tried it > because I was told that Debian has a method of using the AlphaBIOS (made > for installing WinNT only) to install and run Linux. > > It seems Debian uses to files: linload.exe and another referred to as > MILO (Mini Loader) to bootstrap the OS into operation. It actually works > out quite well, and I was a little surprised to see things running in a > short time. Problem is that I want to use FBSD, not Linux, on these > boxes. I have nothing against Linux, but I figure that it's better to > run FBSD with Linux support than just straight Linux. That and I find > that I really like FBSD anyway. MILO loads it's own firmware, which the Linux people wrote from scratch. You are lucky it works on your particular hardware. FreeBSD has a more sophisticated VM model than Linux, and the Linux-written firmware is missing a number of crucial instructions which are not missing from SRM, and so can not use the Linux firmware, without modifications which no one has written yet. You should post your question to the -alpha mailing list, instead of -hackers, since there has been some work on making the AlphaBIOS work natively (e.g. without replacing it with hand written and incomplete firmware which may not be appropriate, or may damage your machine irreparably, if there is too great a mismatch). I believe they had it to the point of being able to load the kernel into memory, and start up some of the memory management, last time they posted about it, but that was some time ago. You may also find that they know where you can find an SRM firmware for the machine, if it isn't one of the ones where the necessary chip gate has been lasered to death to keep people from using SRM with the chip. -- Terry ------=_NextPart_000_012C_01C10BA8.C3486F40 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIII8jCCApAw ggH5oAMCAQICAwQuMjANBgkqhkiG9w0BAQQFADCBkjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdl c3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsT FENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAw MC44LjMwMB4XDTAxMDIxNDAyMzA1OFoXDTAyMDIxNDAyMzA1OFowTTEfMB0GA1UEAxMWVGhhd3Rl IEZyZWVtYWlsIE1lbWJlcjEqMCgGCSqGSIb3DQEJARYbYnV6endhbmdAZ2FtZXJzZ2Fycmlzb24u Y29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDMJ+tGm/DN/RuNC1H83hhKY5F5GzALIIib dWxnHb2T7ZaEamoTDNmCGVutRfBttZ2MAWpJCVk1WXOi1U09kiNVGoFnh8T3EynLE42qoIl2zdud 32eK1FHrFKYAYXWn0Zib9ZSuo87KPy1FleyV5AdoNb0Q3Lk35OF5cNOuGk+XfQIDAQABozgwNjAm BgNVHREEHzAdgRtidXp6d2FuZ0BnYW1lcnNnYXJyaXNvbi5jb20wDAYDVR0TAQH/BAIwADANBgkq hkiG9w0BAQQFAAOBgQApuc3K/gETYp+y/HMmlZpVOurfap+ZjKTV9QMfuIgaQwlni/Rw9ht+nk8I ToDlSJ9YUUfotckbM5wrMcl/oxaddIt4O5R13e8e21v7EkPdGOx35eDnHV4Xs6RVLMp5XT92RyQP uEGJayEzaaMl06sBCrW5xPRgHWMbw3KTwQqtyDCCAykwggKSoAMCAQICAQwwDQYJKoZIhvcNAQEE BQAwgdExCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUg VG93bjEaMBgGA1UEChMRVGhhd3RlIENvbnN1bHRpbmcxKDAmBgNVBAsTH0NlcnRpZmljYXRpb24g U2VydmljZXMgRGl2aXNpb24xJDAiBgNVBAMTG1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBDQTEr MCkGCSqGSIb3DQEJARYccGVyc29uYWwtZnJlZW1haWxAdGhhd3RlLmNvbTAeFw0wMDA4MzAwMDAw MDBaFw0wMjA4MjkyMzU5NTlaMIGSMQswCQYDVQQGEwJaQTEVMBMGA1UECBMMV2VzdGVybiBDYXBl MRIwEAYDVQQHEwlDYXBlIFRvd24xDzANBgNVBAoTBlRoYXd0ZTEdMBsGA1UECxMUQ2VydGlmaWNh dGUgU2VydmljZXMxKDAmBgNVBAMTH1BlcnNvbmFsIEZyZWVtYWlsIFJTQSAyMDAwLjguMzAwgZ8w DQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAN4zMqZjxwklRT7SbngnZ4HF2ogZgpcO40QpimM1Km1w PPrcrvfudG8wvDOQf/k0caCjbZjxw0+iZdsN+kvx1t1hpfmFzVWaNRqdknWoJ67Ycvm6AvbXsJHe HOmr4BgDqHxDQlBRh4M88Dm0m1SKE4f/s5udSWYALQmJ7JRr6aFpAgMBAAGjTjBMMCkGA1UdEQQi MCCkHjAcMRowGAYDVQQDExFQcml2YXRlTGFiZWwxLTI5NzASBgNVHRMBAf8ECDAGAQH/AgEAMAsG A1UdDwQEAwIBBjANBgkqhkiG9w0BAQQFAAOBgQBzG28mZYv/FTRLWWKK7US+ScfoDbuPuQ1qJipi hB+4h2N0HG23zxpTkUvhzeY42e1Q9DpsNJKs5pKcbsEjAcIJp+9LrnLdBmf1UG8uWLi2C8FQV7Xs HNfvF7bViJu3ooga7TlbOX00/LaWGCVNavSdxcORL6mWuAU8Uvzd6WIDSDCCAy0wggKWoAMCAQIC AQAwDQYJKoZIhvcNAQEEBQAwgdExCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEaMBgGA1UEChMRVGhhd3RlIENvbnN1bHRpbmcxKDAmBgNVBAsT H0NlcnRpZmljYXRpb24gU2VydmljZXMgRGl2aXNpb24xJDAiBgNVBAMTG1RoYXd0ZSBQZXJzb25h bCBGcmVlbWFpbCBDQTErMCkGCSqGSIb3DQEJARYccGVyc29uYWwtZnJlZW1haWxAdGhhd3RlLmNv bTAeFw05NjAxMDEwMDAwMDBaFw0yMDEyMzEyMzU5NTlaMIHRMQswCQYDVQQGEwJaQTEVMBMGA1UE CBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAYBgNVBAoTEVRoYXd0ZSBDb25z dWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMSQwIgYDVQQD ExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG9w0BCQEWHHBlcnNvbmFsLWZy ZWVtYWlsQHRoYXd0ZS5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBANRp19SwlGRbcelH 2AxRtupykbCEXn0tDY97Et+FJXUodDpCLGMnn5V7S+9+GYcdhuqj3bnOlmQawhRuRKx85o/oTQ9x H0A4pgCjh3j2+ZSGXq3qwF5269kUo11uenwMpUtVfwYZKX+emibVars4JAhqmMex2qOYkf152+Va xBy5AgMBAAGjEzARMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEEBQADgYEAx+ySfk749Zal Z2IqpPBNEWDQb41gWGGsJrtSNVwIzzD7qEqWih9iQiOMFw/0umScF6xHKd+dmF7SbGBxXKKs3Hnj 524ARx+1DSjoAp3kmv0T9KbZfLH43F8jJgmRgHPQFBveQ6mDJfLmnC8Vyv6mq4oHdYsM3VGEa+T4 0c53ooExggKOMIICigIBATCBmjCBkjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2Fw ZTESMBAGA1UEBxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsTFENlcnRpZmlj YXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAwMC44LjMwAgME LjIwCQYFKw4DAhoFAKCCAUkwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUx DxcNMDEwNzEzMTkzMzIwWjAjBgkqhkiG9w0BCQQxFgQUsSc1Hh4WfxogKDO4CCubqYncty8wPAYJ KoZIhvcNAQkPMS8wLTAHBgUrDgMCBzANBggqhkiG9w0DAgIBKDAHBgUrDgMCGjAKBggqhkiG9w0C BTCBqwYJKwYBBAGCNxAEMYGdMIGaMIGSMQswCQYDVQQGEwJaQTEVMBMGA1UECBMMV2VzdGVybiBD YXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xDzANBgNVBAoTBlRoYXd0ZTEdMBsGA1UECxMUQ2VydGlm aWNhdGUgU2VydmljZXMxKDAmBgNVBAMTH1BlcnNvbmFsIEZyZWVtYWlsIFJTQSAyMDAwLjguMzAC AwQuMjANBgkqhkiG9w0BAQEFAASBgECd6rgp5PhHMt7EKYxyS38sJfOfZEHNB+PlaTJ+NkMIH18n bb8dmOEz+2QUKNd+czzaJTPsNuoh1oDImK3Rz9rR0i7EX/uJNFfLYmO2Wbbhtu2NGVNNxEQuFRPi 8cLRlVWZw4XfRZBtaFRS8ikkp61JyA1zKx7TrZ8dMA2fZi8sAAAAAAAA ------=_NextPart_000_012C_01C10BA8.C3486F40-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 13 14: 9:51 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id A2A8E37B401; Fri, 13 Jul 2001 14:09:41 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo (mjacob@beppo [192.67.166.79]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6DL9aS77288; Fri, 13 Jul 2001 14:09:36 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Fri, 13 Jul 2001 14:09:36 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: "David O'Brien" Cc: Peter Wemm , alpha@FreeBSD.ORG Subject: Re: [ alpha ] supplement to beast becoming available (fwd) In-Reply-To: <20010713114304.A68294@dragon.nuxi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 13 Jul 2001, David O'Brien wrote: > On Fri, Jul 13, 2001 at 10:51:41AM -0700, Matthew Jacob wrote: > > We could, but: > > We could what? Nuke GENERIC.hints. > > > #To statically compile in device wiring instead of /boot/device.hints > > #hints "GENERIC.hints" > > Note that hints are still compiled into the kernel even with the above > line commented out, if GENERIC.hints in the directory with GENERIC (or > maybe it is `.'). The hints compiled in this way, have a "lower > priority" associated with them; but they can still get in the way. I > really don't like this 'feature' of including hints if the file exists > w/o a "hints" include directive. But it seems Peter got bullied into > doing things this way. > That I didn't know. I guess your way is right then. -matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 13 14:14:50 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 1480E37B401 for ; Fri, 13 Jul 2001 14:14:45 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo (mjacob@beppo [192.67.166.79]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6DLEgS77401; Fri, 13 Jul 2001 14:14:42 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Fri, 13 Jul 2001 14:14:42 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: John Doe Cc: alpha@FreeBSD.ORG Subject: Re: Hmm...another panic In-Reply-To: <20010713184201.85324.qmail@web14807.mail.yahoo.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Is that actually a DDB trace? How up to date are you? There were a lot of ip6 problems that were fixed over he last couple of days... I see you've been booting linux too, you bad, bad, boy! On Fri, 13 Jul 2001, John Doe wrote: > Mounting root from ufs:/dev/da0a > SMP: AP CPU #1 Launched! > pid 41225 (conftest), uid 0: exited on signal 11 (core dumped) > pid 41226 (conftest), uid 0: exited on signal 11 (core dumped) > fxp0: promiscuous mode enabled > pid 55810 (tcpdump), uid 0: exited on signal 11 (core dumped) > fxp0: promiscuous mode disabled > panic: mutex Giant not owned at /usr/src/sys/vm/vm_map.c:2473 > cpuid = 0; panic > panic: from debugger > cpuid = 0; panic > -- > > i tried running tcpdump(8) ...and tcpdump core dumped and then the machine panicked > :)..anyone have this problem ? here is the dmesg > > Unrecognized boot flag '0'. > Copyright (c) 1992-2001 The FreeBSD Project. > Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 > The Regents of the University of California. All rights reserved. > FreeBSD 5.0-CURRENT #0: Thu Jul 12 14:10:49 GMT 2001 > root@bcast.bgmulti.com:/usr/obj/usr/src/sys/TEST > ST6600 > AlphaPC 264DP 500 MHz, 500MHz > 8192 byte page size, 2 processors. > CPU: EV6 (21264) major=8 minor=4 extensions=0x303 > OSF PAL rev: 0x200290002012d > real memory = 534233088 (521712K bytes) > avail memory = 513982464 (501936K bytes) > smp_start_secondary: can't send START command > FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs > Preloaded elf kernel "kernel" at 0xfffffc000078a000. > tsunami0: <21271 Core Logic chipset> > pcib0: <21271 PCI host bus adapter> on tsunami0 > pci0: on pcib0 > isab0: at device 5.0 on pci0 > isa0: on isab0 > atapci0: port 0x10200-0x1020f,0x3f4-0x3f7,0x1f0- > 0x1f7 irq 238 at device 5.1 on pci0 > ata0: at 0x1f0 irq 14 on atapci0 > ata0: interrupting at ISA irq 14 > ata1: at 0x170 irq 15 on atapci0 > ata1: interrupting at ISA irq 15 > atapci1: port 0x374-0x377,0x170-0x177 irq 239 at > device 5.2 on pci0 > atapci1: Busmastering DMA not configured > pci0: at 5.3 (no driver attached) > ahc0: port 0x10000-0x100ff mem 0x2321000-0x > 2321fff irq 19 at device 6.0 on pci0 > aic7895C: Ultra Wide Channel A, SCSI Id=7, 255 SCBs > ahc0: interrupting at TSUNAMI irq 19 > ahc1: port 0x10100-0x101ff mem 0x2322000-0x > 2322fff irq 18 at device 6.1 on pci0 > aic7895C: Ultra Wide Channel B, SCSI Id=7, 255 SCBs > ahc1: interrupting at TSUNAMI irq 18 > pcib2: at device 7.0 on pci0 > pci1: on pcib2 > pci1: at 4.0 (no driver attached) > fxp0: port 0x1000-0x101f mem 0x2000000-0x20fff > ff,0x2230000-0x2230fff irq 30 at device 5.0 on pci1 > fxp0: interrupting at TSUNAMI irq 30 > fxp0: Ethernet address 00:06:2b:00:76:2d > inphy0: on miibus0 > inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > pcib1: <21271 PCI host bus adapter> on tsunami0 > pci2: on pcib1 > atkbdc0: at port 0x60,0x64 on isa0 > atkbd0: irq 1 on atkbdc0 > atkbd0: interrupting at ISA irq 1 > atkbd1: irq 1 on atkbdc0 > fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 > fdc0: interrupting at ISA irq 6 > fdc0: FIFO enabled, 8 bytes threshold > fd0: <1440-KB 3.5" drive> on fdc0 drive 0 > fd1: <1440-KB 3.5" drive> on fdc0 drive 0 > mcclock0: at port 0x70-0x71 on isa0 > ppc0: at port 0x3bc-0x3c3 irq 7 on isa0 > ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode > plip0: cannot reserve interrupt, failed. > lpt0: on ppbus0 > lpt0: Polled port > ppi0: on ppbus0 > ppc0: interrupting at ISA irq 7 > sc0: on isa0 > sc0: VGA <16 virtual consoles, flags=0x200> > sio0 at port 0x3f8-0x3ff irq 4 on isa0 > sio0: type 16550A > sio0: interrupting at ISA irq 4 > sio1: reserved for low-level i/o > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > fdc1: cannot reserve I/O port range (6 ports) > sio3: reserved for low-level i/o > ppc1: cannot reserve I/O port range > Timecounter "i8254" frequency 1193182 Hz > Waiting 15 seconds for SCSI devices to settle > pass3 at ahc0 bus 0 target 6 lun 0 > pass3: Fixed Processor SCSI-2 device > pass3: 3.300MB/s transfers > da0 at ahc0 bus 0 target 0 lun 0 > da0: Fixed Direct Access SCSI-2 device > da0: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled > da0: 8678MB (17773524 512 byte sectors: 255H 63S/T 1106C) > da1 at ahc0 bus 0 target 1 lun 0 > da1: Fixed Direct Access SCSI-2 device > da1: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled > da1: 8678MB (17773524 512 byte sectors: 255H 63S/T 1106C) > da2 at ahc0 bus 0 target 2 lun 0 > da2: Fixed Direct Access SCSI-2 device > da2: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled > da2: 8678MB (17773524 512 byte sectors: 255H 63S/T 1106C) > Mounting root from ufs:/dev/da0a > WARNING: / was not properly dismounted > lock order reversal > 1st 0xfffffc0000701830 clk @ /usr/src/sys/alpha/alpha/clock.c:702 > 2nd 0xfffffc00006fa248 callout @ /usr/src/sys/kern/kern_timeout.c:184 > > Bruce\ > > __________________________________________________ > Do You Yahoo!? > Get personalized email addresses from Yahoo! Mail > http://personal.mail.yahoo.com/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-alpha" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 13 18:35:19 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from web14801.mail.yahoo.com (web14801.mail.yahoo.com [216.136.224.217]) by hub.freebsd.org (Postfix) with SMTP id 222E437B403 for ; Fri, 13 Jul 2001 18:35:14 -0700 (PDT) (envelope-from rhamming2001@yahoo.com) Message-ID: <20010714013513.55978.qmail@web14801.mail.yahoo.com> Received: from [24.248.85.196] by web14801.mail.yahoo.com via HTTP; Fri, 13 Jul 2001 18:35:13 PDT Date: Fri, 13 Jul 2001 18:35:13 -0700 (PDT) From: John Doe Subject: Re: Hmm...another panic To: alpha@FreeBSD.ORG In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org HEHE, what are you talkin gabout matt ;)..i am not running linux :) bruce\ --- Matthew Jacob wrote: > > Is that actually a DDB trace? > > How up to date are you? There were a lot of ip6 problems that were fixed over > he last couple of days... > > I see you've been booting linux too, you bad, bad, boy! > > On Fri, 13 Jul 2001, John Doe wrote: > > > Mounting root from ufs:/dev/da0a > > SMP: AP CPU #1 Launched! > > pid 41225 (conftest), uid 0: exited on signal 11 (core dumped) > > pid 41226 (conftest), uid 0: exited on signal 11 (core dumped) > > fxp0: promiscuous mode enabled > > pid 55810 (tcpdump), uid 0: exited on signal 11 (core dumped) > > fxp0: promiscuous mode disabled > > panic: mutex Giant not owned at /usr/src/sys/vm/vm_map.c:2473 > > cpuid = 0; panic > > panic: from debugger > > cpuid = 0; panic > > -- > > > > i tried running tcpdump(8) ...and tcpdump core dumped and then the machine panicked > > :)..anyone have this problem ? here is the dmesg > > > > Unrecognized boot flag '0'. > > Copyright (c) 1992-2001 The FreeBSD Project. > > Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 > > The Regents of the University of California. All rights reserved. > > FreeBSD 5.0-CURRENT #0: Thu Jul 12 14:10:49 GMT 2001 > > root@bcast.bgmulti.com:/usr/obj/usr/src/sys/TEST > > ST6600 > > AlphaPC 264DP 500 MHz, 500MHz > > 8192 byte page size, 2 processors. > > CPU: EV6 (21264) major=8 minor=4 extensions=0x303 > > OSF PAL rev: 0x200290002012d > > real memory = 534233088 (521712K bytes) > > avail memory = 513982464 (501936K bytes) > > smp_start_secondary: can't send START command > > FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs > > Preloaded elf kernel "kernel" at 0xfffffc000078a000. > > tsunami0: <21271 Core Logic chipset> > > pcib0: <21271 PCI host bus adapter> on tsunami0 > > pci0: on pcib0 > > isab0: at device 5.0 on pci0 > > isa0: on isab0 > > atapci0: port 0x10200-0x1020f,0x3f4-0x3f7,0x1f0- > > 0x1f7 irq 238 at device 5.1 on pci0 > > ata0: at 0x1f0 irq 14 on atapci0 > > ata0: interrupting at ISA irq 14 > > ata1: at 0x170 irq 15 on atapci0 > > ata1: interrupting at ISA irq 15 > > atapci1: port 0x374-0x377,0x170-0x177 irq 239 at > > device 5.2 on pci0 > > atapci1: Busmastering DMA not configured > > pci0: at 5.3 (no driver attached) > > ahc0: port 0x10000-0x100ff mem 0x2321000-0x > > 2321fff irq 19 at device 6.0 on pci0 > > aic7895C: Ultra Wide Channel A, SCSI Id=7, 255 SCBs > > ahc0: interrupting at TSUNAMI irq 19 > > ahc1: port 0x10100-0x101ff mem 0x2322000-0x > > 2322fff irq 18 at device 6.1 on pci0 > > aic7895C: Ultra Wide Channel B, SCSI Id=7, 255 SCBs > > ahc1: interrupting at TSUNAMI irq 18 > > pcib2: at device 7.0 on pci0 > > pci1: on pcib2 > > pci1: at 4.0 (no driver attached) > > fxp0: port 0x1000-0x101f mem 0x2000000-0x20fff > > ff,0x2230000-0x2230fff irq 30 at device 5.0 on pci1 > > fxp0: interrupting at TSUNAMI irq 30 > > fxp0: Ethernet address 00:06:2b:00:76:2d > > inphy0: on miibus0 > > inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > > pcib1: <21271 PCI host bus adapter> on tsunami0 > > pci2: on pcib1 > > atkbdc0: at port 0x60,0x64 on isa0 > > atkbd0: irq 1 on atkbdc0 > > atkbd0: interrupting at ISA irq 1 > > atkbd1: irq 1 on atkbdc0 > > fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 > > fdc0: interrupting at ISA irq 6 > > fdc0: FIFO enabled, 8 bytes threshold > > fd0: <1440-KB 3.5" drive> on fdc0 drive 0 > > fd1: <1440-KB 3.5" drive> on fdc0 drive 0 > > mcclock0: at port 0x70-0x71 on isa0 > > ppc0: at port 0x3bc-0x3c3 irq 7 on isa0 > > ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode > > plip0: cannot reserve interrupt, failed. > > lpt0: on ppbus0 > > lpt0: Polled port > > ppi0: on ppbus0 > > ppc0: interrupting at ISA irq 7 > > sc0: on isa0 > > sc0: VGA <16 virtual consoles, flags=0x200> > > sio0 at port 0x3f8-0x3ff irq 4 on isa0 > > sio0: type 16550A > > sio0: interrupting at ISA irq 4 > > sio1: reserved for low-level i/o > > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > > fdc1: cannot reserve I/O port range (6 ports) > > sio3: reserved for low-level i/o > > ppc1: cannot reserve I/O port range > > Timecounter "i8254" frequency 1193182 Hz > > Waiting 15 seconds for SCSI devices to settle > > pass3 at ahc0 bus 0 target 6 lun 0 > > pass3: Fixed Processor SCSI-2 device > > pass3: 3.300MB/s transfers > > da0 at ahc0 bus 0 target 0 lun 0 > > da0: Fixed Direct Access SCSI-2 device > > da0: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled > > da0: 8678MB (17773524 512 byte sectors: 255H 63S/T 1106C) > > da1 at ahc0 bus 0 target 1 lun 0 > > da1: Fixed Direct Access SCSI-2 device > > da1: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled > > da1: 8678MB (17773524 512 byte sectors: 255H 63S/T 1106C) > > da2 at ahc0 bus 0 target 2 lun 0 > > da2: Fixed Direct Access SCSI-2 device > > da2: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled > > da2: 8678MB (17773524 512 byte sectors: 255H 63S/T 1106C) > > Mounting root from ufs:/dev/da0a > > WARNING: / was not properly dismounted > > lock order reversal > > 1st 0xfffffc0000701830 clk @ /usr/src/sys/alpha/alpha/clock.c:702 > > 2nd 0xfffffc00006fa248 callout @ /usr/src/sys/kern/kern_timeout.c:184 > > > > Bruce\ > > > > __________________________________________________ > > Do You Yahoo!? > > Get personalized email addresses from Yahoo! Mail > > http://personal.mail.yahoo.com/ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-alpha" in the body of the message > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-alpha" in the body of the message __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 13 22:36: 4 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 32C3537B401 for ; Fri, 13 Jul 2001 22:35:58 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo (mjacob@beppo [192.67.166.79]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6E5ZrS82218; Fri, 13 Jul 2001 22:35:53 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Fri, 13 Jul 2001 22:35:53 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: John Doe Cc: alpha@FreeBSD.ORG Subject: Re: Hmm...another panic In-Reply-To: <20010714013513.55978.qmail@web14801.mail.yahoo.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org the 'flags 0' is a dead giveaway for aboot... On Fri, 13 Jul 2001, John Doe wrote: > HEHE, what are you talkin gabout matt ;)..i am not running linux :) > > bruce\ > > --- Matthew Jacob wrote: > > > > Is that actually a DDB trace? > > > > How up to date are you? There were a lot of ip6 problems that were fixed over > > he last couple of days... > > > > I see you've been booting linux too, you bad, bad, boy! > > > > On Fri, 13 Jul 2001, John Doe wrote: > > > > > Mounting root from ufs:/dev/da0a > > > SMP: AP CPU #1 Launched! > > > pid 41225 (conftest), uid 0: exited on signal 11 (core dumped) > > > pid 41226 (conftest), uid 0: exited on signal 11 (core dumped) > > > fxp0: promiscuous mode enabled > > > pid 55810 (tcpdump), uid 0: exited on signal 11 (core dumped) > > > fxp0: promiscuous mode disabled > > > panic: mutex Giant not owned at /usr/src/sys/vm/vm_map.c:2473 > > > cpuid = 0; panic > > > panic: from debugger > > > cpuid = 0; panic > > > -- > > > > > > i tried running tcpdump(8) ...and tcpdump core dumped and then the machine panicked > > > :)..anyone have this problem ? here is the dmesg > > > > > > Unrecognized boot flag '0'. > > > Copyright (c) 1992-2001 The FreeBSD Project. > > > Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 > > > The Regents of the University of California. All rights reserved. > > > FreeBSD 5.0-CURRENT #0: Thu Jul 12 14:10:49 GMT 2001 > > > root@bcast.bgmulti.com:/usr/obj/usr/src/sys/TEST > > > ST6600 > > > AlphaPC 264DP 500 MHz, 500MHz > > > 8192 byte page size, 2 processors. > > > CPU: EV6 (21264) major=8 minor=4 extensions=0x303 > > > OSF PAL rev: 0x200290002012d > > > real memory = 534233088 (521712K bytes) > > > avail memory = 513982464 (501936K bytes) > > > smp_start_secondary: can't send START command > > > FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs > > > Preloaded elf kernel "kernel" at 0xfffffc000078a000. > > > tsunami0: <21271 Core Logic chipset> > > > pcib0: <21271 PCI host bus adapter> on tsunami0 > > > pci0: on pcib0 > > > isab0: at device 5.0 on pci0 > > > isa0: on isab0 > > > atapci0: port 0x10200-0x1020f,0x3f4-0x3f7,0x1f0- > > > 0x1f7 irq 238 at device 5.1 on pci0 > > > ata0: at 0x1f0 irq 14 on atapci0 > > > ata0: interrupting at ISA irq 14 > > > ata1: at 0x170 irq 15 on atapci0 > > > ata1: interrupting at ISA irq 15 > > > atapci1: port 0x374-0x377,0x170-0x177 irq 239 at > > > device 5.2 on pci0 > > > atapci1: Busmastering DMA not configured > > > pci0: at 5.3 (no driver attached) > > > ahc0: port 0x10000-0x100ff mem 0x2321000-0x > > > 2321fff irq 19 at device 6.0 on pci0 > > > aic7895C: Ultra Wide Channel A, SCSI Id=7, 255 SCBs > > > ahc0: interrupting at TSUNAMI irq 19 > > > ahc1: port 0x10100-0x101ff mem 0x2322000-0x > > > 2322fff irq 18 at device 6.1 on pci0 > > > aic7895C: Ultra Wide Channel B, SCSI Id=7, 255 SCBs > > > ahc1: interrupting at TSUNAMI irq 18 > > > pcib2: at device 7.0 on pci0 > > > pci1: on pcib2 > > > pci1: at 4.0 (no driver attached) > > > fxp0: port 0x1000-0x101f mem 0x2000000-0x20fff > > > ff,0x2230000-0x2230fff irq 30 at device 5.0 on pci1 > > > fxp0: interrupting at TSUNAMI irq 30 > > > fxp0: Ethernet address 00:06:2b:00:76:2d > > > inphy0: on miibus0 > > > inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > > > pcib1: <21271 PCI host bus adapter> on tsunami0 > > > pci2: on pcib1 > > > atkbdc0: at port 0x60,0x64 on isa0 > > > atkbd0: irq 1 on atkbdc0 > > > atkbd0: interrupting at ISA irq 1 > > > atkbd1: irq 1 on atkbdc0 > > > fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 > > > fdc0: interrupting at ISA irq 6 > > > fdc0: FIFO enabled, 8 bytes threshold > > > fd0: <1440-KB 3.5" drive> on fdc0 drive 0 > > > fd1: <1440-KB 3.5" drive> on fdc0 drive 0 > > > mcclock0: at port 0x70-0x71 on isa0 > > > ppc0: at port 0x3bc-0x3c3 irq 7 on isa0 > > > ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode > > > plip0: cannot reserve interrupt, failed. > > > lpt0: on ppbus0 > > > lpt0: Polled port > > > ppi0: on ppbus0 > > > ppc0: interrupting at ISA irq 7 > > > sc0: on isa0 > > > sc0: VGA <16 virtual consoles, flags=0x200> > > > sio0 at port 0x3f8-0x3ff irq 4 on isa0 > > > sio0: type 16550A > > > sio0: interrupting at ISA irq 4 > > > sio1: reserved for low-level i/o > > > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > > > fdc1: cannot reserve I/O port range (6 ports) > > > sio3: reserved for low-level i/o > > > ppc1: cannot reserve I/O port range > > > Timecounter "i8254" frequency 1193182 Hz > > > Waiting 15 seconds for SCSI devices to settle > > > pass3 at ahc0 bus 0 target 6 lun 0 > > > pass3: Fixed Processor SCSI-2 device > > > pass3: 3.300MB/s transfers > > > da0 at ahc0 bus 0 target 0 lun 0 > > > da0: Fixed Direct Access SCSI-2 device > > > da0: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled > > > da0: 8678MB (17773524 512 byte sectors: 255H 63S/T 1106C) > > > da1 at ahc0 bus 0 target 1 lun 0 > > > da1: Fixed Direct Access SCSI-2 device > > > da1: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled > > > da1: 8678MB (17773524 512 byte sectors: 255H 63S/T 1106C) > > > da2 at ahc0 bus 0 target 2 lun 0 > > > da2: Fixed Direct Access SCSI-2 device > > > da2: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled > > > da2: 8678MB (17773524 512 byte sectors: 255H 63S/T 1106C) > > > Mounting root from ufs:/dev/da0a > > > WARNING: / was not properly dismounted > > > lock order reversal > > > 1st 0xfffffc0000701830 clk @ /usr/src/sys/alpha/alpha/clock.c:702 > > > 2nd 0xfffffc00006fa248 callout @ /usr/src/sys/kern/kern_timeout.c:184 > > > > > > Bruce\ > > > > > > __________________________________________________ > > > Do You Yahoo!? > > > Get personalized email addresses from Yahoo! Mail > > > http://personal.mail.yahoo.com/ > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-alpha" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-alpha" in the body of the message > > > __________________________________________________ > Do You Yahoo!? > Get personalized email addresses from Yahoo! Mail > http://personal.mail.yahoo.com/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-alpha" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 1:11:34 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from smtp9.xs4all.nl (smtp9.xs4all.nl [194.109.127.135]) by hub.freebsd.org (Postfix) with ESMTP id 88CA537B403 for ; Sat, 14 Jul 2001 01:11:31 -0700 (PDT) (envelope-from mpkisbkl@xs4all.nl) Received: from xs3.xs4all.nl (xs3.xs4all.nl [194.109.6.44]) by smtp9.xs4all.nl (8.9.3/8.9.3) with ESMTP id KAA14626; Sat, 14 Jul 2001 10:11:29 +0200 (CEST) Received: from localhost (mpkisbkl@localhost) by xs3.xs4all.nl (8.9.0/8.9.0) with ESMTP id KAA29355; Sat, 14 Jul 2001 10:11:29 +0200 (CEST) Date: Sat, 14 Jul 2001 10:11:29 +0200 (CEST) From: Martijn Pronk To: Matthew Jacob Cc: John Doe , alpha@FreeBSD.ORG Subject: Re: Hmm...another panic In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 13 Jul 2001, Matthew Jacob wrote: > > the 'flags 0' is a dead giveaway for aboot... > I don't think so... I had the 'flags 0' also on my NoName, and this machine has never seen a linux aboot loader... I think these flags are used by (Open)VMS. Someone on this list may already have pointed this out. HTH, Martijn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 1:47:38 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from smtp8.xs4all.nl (smtp8.xs4all.nl [194.109.127.134]) by hub.freebsd.org (Postfix) with ESMTP id 68EDA37B405 for ; Sat, 14 Jul 2001 01:47:31 -0700 (PDT) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp8.xs4all.nl (8.9.3/8.9.3) with ESMTP id KAA13299; Sat, 14 Jul 2001 10:47:30 +0200 (CEST) Received: (from wkb@localhost) by freebie.xs4all.nl (8.11.4/8.11.3) id f6E8lTi59612; Sat, 14 Jul 2001 10:47:29 +0200 (CEST) (envelope-from wkb) Date: Sat, 14 Jul 2001 10:47:29 +0200 From: Wilko Bulte To: Martijn Pronk Cc: Matthew Jacob , John Doe , alpha@FreeBSD.ORG Subject: Re: Hmm...another panic Message-ID: <20010714104729.A59585@freebie.xs4all.nl> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from mpkisbkl@xs4all.nl on Sat, Jul 14, 2001 at 10:11:29AM +0200 X-OS: FreeBSD 4.3-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, Jul 14, 2001 at 10:11:29AM +0200, Martijn Pronk wrote: > > > On Fri, 13 Jul 2001, Matthew Jacob wrote: > > > > > the 'flags 0' is a dead giveaway for aboot... > > > I don't think so... > I had the 'flags 0' also on my NoName, and this machine > has never seen a linux aboot loader... > I think these flags are used by (Open)VMS. Someone on this > list may already have pointed this out. IIRC VMS uses 0,0 but I could be wrong. Maybe 0 is also VMS usage. -- | / o / / _ Arnhem, The Netherlands email: wilko@FreeBSD.org |/|/ / / /( (_) Bulte "Youth is not a time in life, it is a state of mind" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 1:58: 8 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from peter3.wemm.org (c1315225-a.plstn1.sfba.home.com [24.14.150.180]) by hub.freebsd.org (Postfix) with ESMTP id 2033237B401; Sat, 14 Jul 2001 01:58:06 -0700 (PDT) (envelope-from peter@wemm.org) Received: from overcee.netplex.com.au (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id f6E8w6M02187; Sat, 14 Jul 2001 01:58:06 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id D440538CC; Sat, 14 Jul 2001 01:58:05 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: Doug Rabson Cc: Matthew Jacob , John Baldwin , alpha@FreeBSD.ORG Subject: Re: pmap_emulate_reference() In-Reply-To: Date: Sat, 14 Jul 2001 01:58:05 -0700 From: Peter Wemm Message-Id: <20010714085805.D440538CC@overcee.netplex.com.au> Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Doug Rabson wrote: > On Thu, 28 Jun 2001, Matthew Jacob wrote: > > > > > > > Can somebody fix: > > > > + if (all_cpus & 1 << i) > > > > > > Oops. That shouldn't even be part of the patch. Ignore everything except > trap.c and pmap.c. The patch seems to work, but there are some stray loose ends still.. There are still references to PV_TABLE_REF and PV_TABLE_MOD where things are testing them but nothing ever sets them. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 3:15: 4 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by hub.freebsd.org (Postfix) with ESMTP id E089837B403 for ; Sat, 14 Jul 2001 03:15:00 -0700 (PDT) (envelope-from ticso@mail.cicely.de) Received: from mail.cicely.de (cicely20 [10.1.1.22]) by srv1.cosmo-project.de (8.11.0/8.11.0) with ESMTP id f6EAEsV78189; Sat, 14 Jul 2001 12:14:56 +0200 (CEST) Received: (from ticso@localhost) by mail.cicely.de (8.11.0/8.11.0) id f6EAFd722881; Sat, 14 Jul 2001 12:15:39 +0200 (CEST) Date: Sat, 14 Jul 2001 12:15:38 +0200 From: Bernd Walter To: Martijn Pronk Cc: Matthew Jacob , John Doe , alpha@FreeBSD.ORG Subject: Re: Hmm...another panic Message-ID: <20010714121538.A22609@cicely20.cicely.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from mpkisbkl@xs4all.nl on Sat, Jul 14, 2001 at 10:11:29AM +0200 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, Jul 14, 2001 at 10:11:29AM +0200, Martijn Pronk wrote: > > > On Fri, 13 Jul 2001, Matthew Jacob wrote: > > > > > the 'flags 0' is a dead giveaway for aboot... > > > I don't think so... > I had the 'flags 0' also on my NoName, and this machine > has never seen a linux aboot loader... > I think these flags are used by (Open)VMS. Someone on this > list may already have pointed this out. I'm also used to see them while I never bootet anything else than FreeBSD on them. I reflashed them all from ARC to SRM and at least one board was unused. -- B.Walter COSMO-Project http://www.cosmo-project.de ticso@cicely.de Usergroup info@cosmo-project.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 4:48:59 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from krypton.melitaonline.net (ns.melitaonline.net [212.56.128.132]) by hub.freebsd.org (Postfix) with ESMTP id 9729C37B403 for ; Sat, 14 Jul 2001 04:48:55 -0700 (PDT) (envelope-from jjf@onvol.net) Received: from wintel ([212.56.156.35]) by krypton.melitaonline.net (Post.Office MTA v3.5.1 release 219 ID# 0-71853U4000L400S0V35) with SMTP id net for ; Fri, 13 Jul 2001 21:30:31 +0200 Message-ID: <000801c10bd1$c27914b0$fd01187d@onvol.net> From: "jason" To: Subject: digital server 5300 Date: Fri, 13 Jul 2001 21:26:47 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C10BE2.85694E30" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C10BE2.85694E30 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable i wish to know if freebsd runs on the digital server 5300. thank you. regards jason ------=_NextPart_000_0005_01C10BE2.85694E30 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
i wish to know if freebsd runs on the = digital=20 server 5300. thank you.
 
regards
jason
------=_NextPart_000_0005_01C10BE2.85694E30-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 5:17:58 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from smtp3.xs4all.nl (smtp3.xs4all.nl [194.109.127.132]) by hub.freebsd.org (Postfix) with ESMTP id 8454237B401 for ; Sat, 14 Jul 2001 05:17:55 -0700 (PDT) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp3.xs4all.nl (8.9.3/8.9.3) with ESMTP id OAA18263; Sat, 14 Jul 2001 14:16:52 +0200 (CEST) Received: (from wkb@localhost) by freebie.xs4all.nl (8.11.4/8.11.3) id f6ECGf760225; Sat, 14 Jul 2001 14:16:41 +0200 (CEST) (envelope-from wkb) Date: Sat, 14 Jul 2001 14:16:41 +0200 From: Wilko Bulte To: Bernd Walter Cc: Martijn Pronk , Matthew Jacob , John Doe , alpha@FreeBSD.ORG Subject: Re: Hmm...another panic Message-ID: <20010714141641.B60188@freebie.xs4all.nl> References: <20010714121538.A22609@cicely20.cicely.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010714121538.A22609@cicely20.cicely.de>; from ticso@mail.cicely.de on Sat, Jul 14, 2001 at 12:15:38PM +0200 X-OS: FreeBSD 4.3-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, Jul 14, 2001 at 12:15:38PM +0200, Bernd Walter wrote: > On Sat, Jul 14, 2001 at 10:11:29AM +0200, Martijn Pronk wrote: > > > > > > On Fri, 13 Jul 2001, Matthew Jacob wrote: > > > > > > > > the 'flags 0' is a dead giveaway for aboot... > > > > > I don't think so... > > I had the 'flags 0' also on my NoName, and this machine > > has never seen a linux aboot loader... > > I think these flags are used by (Open)VMS. Someone on this > > list may already have pointed this out. > > I'm also used to see them while I never bootet anything else than > FreeBSD on them. > I reflashed them all from ARC to SRM and at least one board was > unused. SET BOOTOS_FLAGS (IIRC the syntax of the SRM) Or something close -- | / o / / _ Arnhem, The Netherlands email: wilko@FreeBSD.org |/|/ / / /( (_) Bulte "Youth is not a time in life, it is a state of mind" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 5:18:51 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from smtp3.xs4all.nl (smtp3.xs4all.nl [194.109.127.132]) by hub.freebsd.org (Postfix) with ESMTP id 1AE7337B405 for ; Sat, 14 Jul 2001 05:18:49 -0700 (PDT) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp3.xs4all.nl (8.9.3/8.9.3) with ESMTP id OAA18328; Sat, 14 Jul 2001 14:17:40 +0200 (CEST) Received: (from wkb@localhost) by freebie.xs4all.nl (8.11.4/8.11.3) id f6ECHcJ60241; Sat, 14 Jul 2001 14:17:38 +0200 (CEST) (envelope-from wkb) Date: Sat, 14 Jul 2001 14:17:38 +0200 From: Wilko Bulte To: jason Cc: freebsd-alpha@FreeBSD.ORG Subject: Re: digital server 5300 Message-ID: <20010714141738.C60188@freebie.xs4all.nl> References: <000801c10bd1$c27914b0$fd01187d@onvol.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000801c10bd1$c27914b0$fd01187d@onvol.net>; from jjf@onvol.net on Fri, Jul 13, 2001 at 09:26:47PM +0200 X-OS: FreeBSD 4.3-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, Jul 13, 2001 at 09:26:47PM +0200, jason wrote: Read HARDWARE.TXT, I think the answer is yes BTW. W/ > i wish to know if freebsd runs on the digital server 5300. thank you. > > regards > jason ---end of quoted text--- -- | / o / / _ Arnhem, The Netherlands email: wilko@FreeBSD.org |/|/ / / /( (_) Bulte "Youth is not a time in life, it is a state of mind" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 5:36:37 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from smtp9.xs4all.nl (smtp9.xs4all.nl [194.109.127.135]) by hub.freebsd.org (Postfix) with ESMTP id 4216B37B403 for ; Sat, 14 Jul 2001 05:36:34 -0700 (PDT) (envelope-from mpkisbkl@xs4all.nl) Received: from xs3.xs4all.nl (xs3.xs4all.nl [194.109.6.44]) by smtp9.xs4all.nl (8.9.3/8.9.3) with ESMTP id OAA11656; Sat, 14 Jul 2001 14:36:33 +0200 (CEST) Received: from localhost (mpkisbkl@localhost) by xs3.xs4all.nl (8.9.0/8.9.0) with ESMTP id OAA12212; Sat, 14 Jul 2001 14:36:33 +0200 (CEST) Date: Sat, 14 Jul 2001 14:36:33 +0200 (CEST) From: Martijn Pronk To: Wilko Bulte Cc: alpha@FreeBSD.ORG Subject: Re: Hmm...another panic In-Reply-To: <20010714141641.B60188@freebie.xs4all.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, 14 Jul 2001, Wilko Bulte wrote: > SET BOOTOS_FLAGS > > (IIRC the syntax of the SRM) > > Or something close Checking AXPpci33 manual... SET BOOT_OSFLAGS Default is according to this manual "0,0" One Question: How can I interrupt the bootsequence from a serial console before the FreeBSD boot loader kicks in? Thanks, Martijn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 5:59:14 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from peter3.wemm.org (c1315225-a.plstn1.sfba.home.com [24.14.150.180]) by hub.freebsd.org (Postfix) with ESMTP id 947C337B401 for ; Sat, 14 Jul 2001 05:59:07 -0700 (PDT) (envelope-from peter@wemm.org) Received: from overcee.netplex.com.au (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id f6ECx7M05234 for ; Sat, 14 Jul 2001 05:59:07 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 79389380B for ; Sat, 14 Jul 2001 05:59:07 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: alpha@freebsd.org Subject: For those with persistant alpha trouble.... Date: Sat, 14 Jul 2001 05:59:07 -0700 From: Peter Wemm Message-Id: <20010714125907.79389380B@overcee.netplex.com.au> Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This appears to have fixed beast.freebsd.org: Index: interrupt.c =================================================================== RCS file: /home/ncvs/src/sys/alpha/alpha/interrupt.c,v retrieving revision 1.53 diff -u -r1.53 interrupt.c --- interrupt.c 2001/06/04 00:52:09 1.53 +++ interrupt.c 2001/07/14 11:56:37 @@ -444,7 +444,7 @@ "alpha_dispatch_intr: disabling vector 0x%x", i->vector); ithd->it_disable(ithd->it_vector); } - error = ithread_schedule(ithd, !cold); + error = ithread_schedule(ithd, 0); KASSERT(error == 0, ("got an impossible stray interrupt")); } The other alpha I have access to right now (UP2000 - SMP 2x21264) doesn't seem to care either way - it seems to work ok. beast.freebsd.org (Miata MX5 - PWS500au) absolutely will not build world without it. I would be curious to know if this solves any other persistant crashing machines. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 9:11:34 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 8465837B401 for ; Sat, 14 Jul 2001 09:11:30 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo (mjacob@beppo [192.67.166.79]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6EGArS87031; Sat, 14 Jul 2001 09:10:54 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Sat, 14 Jul 2001 09:10:53 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: Martijn Pronk Cc: John Doe , alpha@FreeBSD.ORG Subject: Re: Hmm...another panic In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Oh, well, maybe.... :-) On Sat, 14 Jul 2001, Martijn Pronk wrote: > > > On Fri, 13 Jul 2001, Matthew Jacob wrote: > > > > > the 'flags 0' is a dead giveaway for aboot... > > > I don't think so... > I had the 'flags 0' also on my NoName, and this machine > has never seen a linux aboot loader... > I think these flags are used by (Open)VMS. Someone on this > list may already have pointed this out. > > HTH, > > Martijn > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 9:22: 2 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by hub.freebsd.org (Postfix) with ESMTP id 8D97337B401 for ; Sat, 14 Jul 2001 09:21:57 -0700 (PDT) (envelope-from ticso@mail.cicely.de) Received: from mail.cicely.de (cicely20 [10.1.1.22]) by srv1.cosmo-project.de (8.11.0/8.11.0) with ESMTP id f6EGLtV79593 for ; Sat, 14 Jul 2001 18:21:55 +0200 (CEST) Received: (from ticso@localhost) by mail.cicely.de (8.11.0/8.11.0) id f6EGMiV23529 for freebsd-alpha@freebsd.org; Sat, 14 Jul 2001 18:22:44 +0200 (CEST) Date: Sat, 14 Jul 2001 18:22:44 +0200 From: Bernd Walter To: freebsd-alpha@freebsd.org Subject: fstat pointersize patch Message-ID: <20010714182244.B23031@cicely20.cicely.de> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="u3/rZRmxL6MmkK24" Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --u3/rZRmxL6MmkK24 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Compiling fstat produced a lot of warning and printed only the lower part of the addresses. The patch was made on -current as of 2001-03-28 on alpha and test applied to a -current as of 2001-07-04 on i386. The output on i386 looks the same as before. I did the path because I want to see sockstat working on alpha but there seem to be other issues too. -- B.Walter COSMO-Project http://www.cosmo-project.de ticso@cicely.de Usergroup info@cosmo-project.de --u3/rZRmxL6MmkK24 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="fstat.diff" Index: fstat.c =================================================================== RCS file: /vol/freebsd-cvs/src/usr.bin/fstat/fstat.c,v retrieving revision 1.26 diff -u -r1.26 fstat.c --- fstat.c 2001/02/15 22:42:44 1.26 +++ fstat.c 2001/07/14 16:09:49 @@ -661,7 +661,7 @@ goto bad; } - printf("* pipe %8x <-> %8x", (int)pi, (int)pip.pipe_peer); + printf("* pipe %p <-> %p", pi, pip.pipe_peer); printf(" %6d", (int)pip.pipe_buffer.cnt); rw[0] = '\0'; if (flag & FREAD) @@ -759,16 +759,16 @@ (void *)so.so_pcb); goto bad; } - printf(" %x", (int)inpcb.inp_ppcb); + printf(" %p", inpcb.inp_ppcb); } } else if (so.so_pcb) - printf(" %x", (int)so.so_pcb); + printf(" %p", so.so_pcb); break; case AF_UNIX: /* print address of pcb and connected pcb */ if (so.so_pcb) { - printf(" %x", (int)so.so_pcb); + printf(" %p", so.so_pcb); if (kvm_read(kd, (u_long)so.so_pcb, (char *)&unpcb, sizeof(struct unpcb)) != sizeof(struct unpcb)){ dprintf(stderr, "can't read unpcb at %p\n", @@ -785,14 +785,14 @@ if (!(so.so_state & SS_CANTSENDMORE)) *cp++ = '>'; *cp = '\0'; - printf(" %s %x", shoconn, - (int)unpcb.unp_conn); + printf(" %s %p", shoconn, + unpcb.unp_conn); } } break; default: /* print protocol number and socket address */ - printf(" %d %x", proto.pr_protocol, (int)sock); + printf(" %d %p", proto.pr_protocol, sock); } printf("\n"); return; @@ -814,8 +814,8 @@ if (KVM_READ(dev, &si, sizeof si)) { return si.si_udev; } else { - dprintf(stderr, "can't convert dev_t %p to a udev_t\n", - (void *)dev); + dprintf(stderr, "can't convert dev_t %x8 to a udev_t\n", + dev); return -1; } } --u3/rZRmxL6MmkK24-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 9:34:39 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 07E1537B403 for ; Sat, 14 Jul 2001 09:34:37 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo (mjacob@beppo [192.67.166.79]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6EGYTS87141; Sat, 14 Jul 2001 09:34:32 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Sat, 14 Jul 2001 09:34:29 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: Peter Wemm Cc: alpha@FreeBSD.ORG Subject: Re: For those with persistant alpha trouble.... In-Reply-To: <20010714125907.79389380B@overcee.netplex.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Cool. How did you guess this? On Sat, 14 Jul 2001, Peter Wemm wrote: > This appears to have fixed beast.freebsd.org: > > Index: interrupt.c > =================================================================== > RCS file: /home/ncvs/src/sys/alpha/alpha/interrupt.c,v > retrieving revision 1.53 > diff -u -r1.53 interrupt.c > --- interrupt.c 2001/06/04 00:52:09 1.53 > +++ interrupt.c 2001/07/14 11:56:37 > @@ -444,7 +444,7 @@ > "alpha_dispatch_intr: disabling vector 0x%x", i->vector); > ithd->it_disable(ithd->it_vector); > } > - error = ithread_schedule(ithd, !cold); > + error = ithread_schedule(ithd, 0); > KASSERT(error == 0, ("got an impossible stray interrupt")); > } > > > > The other alpha I have access to right now (UP2000 - SMP 2x21264) doesn't > seem to care either way - it seems to work ok. beast.freebsd.org (Miata > MX5 - PWS500au) absolutely will not build world without it. > > I would be curious to know if this solves any other persistant crashing > machines. > > Cheers, > -Peter > -- > Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au > "All of this is for nothing if we don't go to the stars" - JMS/B5 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-alpha" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 9:35:26 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 437FE37B403 for ; Sat, 14 Jul 2001 09:35:24 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo (mjacob@beppo [192.67.166.79]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6EGZNS87156; Sat, 14 Jul 2001 09:35:23 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Sat, 14 Jul 2001 09:35:23 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: Peter Wemm Cc: alpha@FreeBSD.ORG Subject: Re: For those with persistant alpha trouble.... In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > > The other alpha I have access to right now (UP2000 - SMP 2x21264) doesn't > > seem to care either way - it seems to work ok. beast.freebsd.org (Miata > > MX5 - PWS500au) absolutely will not build world without it. What was the crash stack on the Miata? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 9:58: 5 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by hub.freebsd.org (Postfix) with ESMTP id C698937B403 for ; Sat, 14 Jul 2001 09:58:01 -0700 (PDT) (envelope-from ticso@mail.cicely.de) Received: from mail.cicely.de (cicely20 [10.1.1.22]) by srv1.cosmo-project.de (8.11.0/8.11.0) with ESMTP id f6EGvxV79781 for ; Sat, 14 Jul 2001 18:58:00 +0200 (CEST) Received: (from ticso@localhost) by mail.cicely.de (8.11.0/8.11.0) id f6EGwm323626 for freebsd-alpha@freebsd.org; Sat, 14 Jul 2001 18:58:48 +0200 (CEST) Date: Sat, 14 Jul 2001 18:58:47 +0200 From: Bernd Walter To: freebsd-alpha@freebsd.org Subject: Re: fstat pointersize patch Message-ID: <20010714185847.D23031@cicely20.cicely.de> References: <20010714182244.B23031@cicely20.cicely.de> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="kXdP64Ggrk/fb43R" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010714182244.B23031@cicely20.cicely.de>; from ticso on Sat, Jul 14, 2001 at 06:22:44PM +0200 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --kXdP64Ggrk/fb43R Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sat, Jul 14, 2001 at 06:22:44PM +0200, Bernd Walter wrote: > Compiling fstat produced a lot of warning and printed only the > lower part of the addresses. > The patch was made on -current as of 2001-03-28 on alpha and > test applied to a -current as of 2001-07-04 on i386. > The output on i386 looks the same as before. There is one difference I oversaw in the first mail: before each address 0x is printed which breaks sockstat even on i386. Attached is a patch for sockstat which handles alpha and i386 with my fstat patch from the first mail. -- B.Walter COSMO-Project http://www.cosmo-project.de ticso@cicely.de Usergroup info@cosmo-project.de --kXdP64Ggrk/fb43R Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="sockstat.pl.diff" Index: sockstat.pl =================================================================== RCS file: /vol/freebsd-cvs/src/usr.bin/sockstat/sockstat.pl,v retrieving revision 1.13 diff -u -r1.13 sockstat.pl --- sockstat.pl 2001/03/15 20:46:35 1.13 +++ sockstat.pl 2001/07/14 16:54:41 @@ -57,10 +57,10 @@ die("exec(netstat): $!\n"); } while ($line = ) { - next unless ($line =~ m/^[0-9a-f]{8} /); + next unless ($line =~ m/^[0-9a-f]{8,16} /); chomp($line); @fields = split(' ', $line); - $netstat{$fields[0]} = [ @fields ]; + $netstat{"0x".$fields[0]} = [ @fields ]; } close(PIPE) or die("close(netstat): $!\n"); --kXdP64Ggrk/fb43R-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 10:37:53 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from peter3.wemm.org (c1315225-a.plstn1.sfba.home.com [24.14.150.180]) by hub.freebsd.org (Postfix) with ESMTP id 9DB3137B401 for ; Sat, 14 Jul 2001 10:37:50 -0700 (PDT) (envelope-from peter@wemm.org) Received: from overcee.netplex.com.au (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id f6EHboM05818 for ; Sat, 14 Jul 2001 10:37:50 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 63A9F380B; Sat, 14 Jul 2001 10:37:50 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: mjacob@feral.com Cc: alpha@FreeBSD.ORG Subject: Re: For those with persistant alpha trouble.... In-Reply-To: Date: Sat, 14 Jul 2001 10:37:50 -0700 From: Peter Wemm Message-Id: <20010714173750.63A9F380B@overcee.netplex.com.au> Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Matthew Jacob wrote: > > > > The other alpha I have access to right now (UP2000 - SMP 2x21264) doesn't > > > seem to care either way - it seems to work ok. beast.freebsd.org (Miata > > > MX5 - PWS500au) absolutely will not build world without it. > > What was the crash stack on the Miata? Hmm. I thought I had a firmware PC, but instead it appears to be in kernel space... From the conserver log file: halted CPU 0 halt code = 2 kernel stack not valid halt PC = fffffc000056f2a0 CPU 0 booting I'm not sure if I have the kernel that corresponds to that crash. :-( I *think* it is this one: fffffc000056f1a0 T XentRestart fffffc000056f238 T exception_return fffffc000056f23c t Ler1 fffffc000056f268 t Lkernelret fffffc000056f268 t Lrestoreregs fffffc000056f28c t Lnohae fffffc000056f2a0 T exception_save_regs <<<< fffffc000056f310 T exception_restore_regs fffffc000056f380 t fp_add fffffc000056f400 t fp_sub Actually, they are all at this PC. No ra or anything though. On the may 24th kernel, it died with this: fatal kernel trap: trap entry = 0x2 (memory management fault) faulting va = 0x51 type = access violation cause = store instruction pc = 0xfffffc0000521e4c ra = 0xfffffc0000521e60 sp = 0xfffffe000865d9f8 curproc = 0xfffffe0007a33f80 pid = 16, comm = swi3: cambio panic: trap fffffc0000521840 t initiate_write_inodeblock fffffc0000521d00 t softdep_disk_write_complete <<<< in here fffffc00005221a0 t handle_allocdirect_partdone fffffc0000522300 t handle_allocindir_partdone Which I am not sure is useful... I think that was probably one of the softupdates bugs. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 10:46:10 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id C753737B403 for ; Sat, 14 Jul 2001 10:46:06 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo (mjacob@beppo [192.67.166.79]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6EHk1S87575; Sat, 14 Jul 2001 10:46:01 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Sat, 14 Jul 2001 10:46:01 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: Peter Wemm Cc: alpha@FreeBSD.ORG Subject: Re: For those with persistant alpha trouble.... In-Reply-To: <20010714173750.63A9F380B@overcee.netplex.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Very cool. Thank you. I have seen none of these in quite a while. I've tried your change to the call to ithread_schedule on a 4100 and an 8200 (I just 8200s working again- I had to hack on the mbinit and MP startup code slightly) Very interesting. Basically, we're disabling ithread preemption with this change, right? That's really okay with me- I'm one of this who hold with THOTH and other systems that say that code threads should run to natural stopping points anyway. -matt On Sat, 14 Jul 2001, Peter Wemm wrote: > Matthew Jacob wrote: > > > > > > The other alpha I have access to right now (UP2000 - SMP 2x21264) doesn't > > > > seem to care either way - it seems to work ok. beast.freebsd.org (Miata > > > > MX5 - PWS500au) absolutely will not build world without it. > > > > What was the crash stack on the Miata? > > Hmm. I thought I had a firmware PC, but instead it appears to be in > kernel space... From the conserver log file: > > halted CPU 0 > > halt code = 2 > kernel stack not valid halt > PC = fffffc000056f2a0 > > CPU 0 booting > > I'm not sure if I have the kernel that corresponds to that crash. :-( > I *think* it is this one: > fffffc000056f1a0 T XentRestart > fffffc000056f238 T exception_return > fffffc000056f23c t Ler1 > fffffc000056f268 t Lkernelret > fffffc000056f268 t Lrestoreregs > fffffc000056f28c t Lnohae > fffffc000056f2a0 T exception_save_regs <<<< > fffffc000056f310 T exception_restore_regs > fffffc000056f380 t fp_add > fffffc000056f400 t fp_sub > > Actually, they are all at this PC. No ra or anything though. > > On the may 24th kernel, it died with this: > > fatal kernel trap: > > trap entry = 0x2 (memory management fault) > faulting va = 0x51 > type = access violation > cause = store instruction > pc = 0xfffffc0000521e4c > ra = 0xfffffc0000521e60 > sp = 0xfffffe000865d9f8 > curproc = 0xfffffe0007a33f80 > pid = 16, comm = swi3: cambio > > panic: trap > > fffffc0000521840 t initiate_write_inodeblock > fffffc0000521d00 t softdep_disk_write_complete <<<< in here > fffffc00005221a0 t handle_allocdirect_partdone > fffffc0000522300 t handle_allocindir_partdone > > Which I am not sure is useful... I think that was probably one of the > softupdates bugs. > > Cheers, > -Peter > -- > Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au > "All of this is for nothing if we don't go to the stars" - JMS/B5 > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sat Jul 14 17:21:31 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from mail11.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by hub.freebsd.org (Postfix) with SMTP id 63E7637B401 for ; Sat, 14 Jul 2001 17:21:29 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 74061 invoked from network); 15 Jul 2001 00:21:28 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([64.81.54.73]) (envelope-sender ) by mail11.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 15 Jul 2001 00:21:28 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Sat, 14 Jul 2001 17:21:33 -0700 (PDT) From: John Baldwin To: Matthew Jacob Subject: RE: well, at least one panic... Cc: "David O'Brien" , alpha@FreeBSD.ORG Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 12-Jul-01 Matthew Jacob wrote: > > This is the first panic or freeze this week for me on Alpha. > > panic: blockable sleep lock (sleep mutex) Giant @ > ../../../alpha/alpha/trap.c:469 > cpuid = 0; panic > Stopped at Debugger+0x34: zapnot v0,#0xf,a0 > db> t > Debugger() at Debugger+0x34 > panic() at panic+0x178 > witness_lock() at witness_lock+0x250 > trap() at trap+0xbd8 > XentMM() at XentMM+0x2c > --- memory management fault (from ipl 7) --- > pmap_activate() at pmap_activate+0xc0 > Lcs6() at Lcs6+0xc This is in cpu_switch(). I'm guessing that this is a brand new process that has just started after being fork'd and pmap had a fault while trying to switch to its memory space. -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.baldwin.cx/~john/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message