From owner-freebsd-alpha@FreeBSD.ORG Sun Aug 7 08:10:53 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5771D16A439; Sun, 7 Aug 2005 08:10:53 +0000 (GMT) (envelope-from thierry@herbelot.com) Received: from postfix3-2.free.fr (postfix3-2.free.fr [213.228.0.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id D25D144014; Sun, 7 Aug 2005 07:38:10 +0000 (GMT) (envelope-from thierry@herbelot.com) Received: from herbelot.dyndns.org (bne75-4-82-227-159-103.fbx.proxad.net [82.227.159.103]) by postfix3-2.free.fr (Postfix) with ESMTP id 6BC7FC0B9; Sun, 7 Aug 2005 09:38:07 +0200 (CEST) Received: from diversion.herbelot.nom (diversion.herbelot.nom [192.168.2.6]) by herbelot.dyndns.org (8.13.3/8.13.3) with ESMTP id j777bwQN018684; Sun, 7 Aug 2005 09:38:03 +0200 (CEST) From: Thierry Herbelot To: freebsd-current@freebsd.org Date: Sun, 7 Aug 2005 09:37:48 +0200 User-Agent: KMail/1.8.2 References: <200508041255.05839.jhb@FreeBSD.org> <20050804212718.GD852@zaphod.nitro.dk> <200508051040.05333.jhb@FreeBSD.org> In-Reply-To: <200508051040.05333.jhb@FreeBSD.org> X-Warning: Windows can lose your files X-Op-Sys: Le FriBi de la mort qui tue X-Org: TfH&Co X-MailScanner: Found to be clean MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 8bit Content-Disposition: inline Message-Id: <200508070937.51119.thierry@herbelot.com> Cc: freebsd-alpha@freebsd.org Subject: Re: Locking fixes for dc(4): please test! X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: thierry@herbelot.com List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Aug 2005 08:10:53 -0000 Le Friday 5 August 2005 16:40, John Baldwin a écrit : > > Ok. Try changing the IS_MPSAFE at around line 348 flag from 0 to 1 and see > if it blows up then. :) Thanks for testing. it does blow up with the following message (GENERIC -current on an SMP, non-ACPI BP6, with your patch and IS_MPSAFE=1) no kernel dump as the dump device is not yet defined (TBD through a loader tunable ?) TfH console panic log : dc0: <82c169 PNIC 10/100BaseTX> port 0x9400-0x94ff mem 0xd9000000-0xd90000ff irq 19 at device 9.0 on pci0 panic: lock (sleep mutex) dc0 not locked @ /usr/src/sys/pci/if_dc.c:839 cpuid = 0 KDB: enter: panic [thread pid 0 tid 0 ] Stopped at kdb_enter+0x2b: nop db> where Tracing pid 0 tid 0 td 0xc0921e40 kdb_enter(c085a72f) at kdb_enter+0x2b panic(c085e4b0,c0875971,c1365710,c086dc10,347) at panic+0x127 witness_unlock(c1373af0,8,c086dc10,347) at witness_unlock+0xbc _mtx_unlock_flags(c1373af0,0,c086dc10,347) at _mtx_unlock_flags+0x5b dc_miibus_readreg(c12a8d80,0,1) at dc_miibus_readreg+0x176 mii_phy_probe(c12a8d80,c137303c,c072a7e0,c072a85c,0) at mii_phy_probe+0x8e dc_attach(c12a8d80) at dc_attach+0xb67 device_attach(c12a8d80,e,c12a8d80,c135f580,c135f580) at device_attach+0x58 device_probe_and_attach(c12a8d80) at device_probe_and_attach+0xe0 bus_generic_attach(c135f580,c135f580,0,7c,0) at bus_generic_attach+0x16 pci_attach(c135f580) at pci_attach+0x7f device_attach(c135f580,c1273600,c135f580,c135f600,c135f600) at device_attach+0x58 device_probe_and_attach(c135f580) at device_probe_and_attach+0xe0 bus_generic_attach(c135f600,c135f600,c087c1e4,0,0) at bus_generic_attach+0x16 mptable_hostb_attach(c135f600) at mptable_hostb_attach+0x69 device_attach(c135f600,c09065a0,c135f600,1,c1273600) at device_attach+0x58 device_probe_and_attach(c135f600) at device_probe_and_attach+0xe0 bus_generic_attach(c1273600,c1273600,c1273600,c1273600,0) at bus_generic_attach+0x16 legacy_attach(c1273600) at legacy_attach+0x8e device_attach(c1273600,0,c1273600,c1273b80,0) at device_attach+0x58 device_probe_and_attach(c1273600) at device_probe_and_attach+0xe0 bus_generic_attach(c1273b80,c1273b80,c1273b80,c0c20d40,c064847c) at bus_generic_attach+0x16 nexus_attach(c1273b80) at nexus_attach+0x13 device_attach(c1273b80,c092e4a8,c1273b80,c08f9e50,c28000) at device_attach+0x58 device_probe_and_attach(c1273b80) at device_probe_and_attach+0xe0 root_bus_configure(c0c20d88,c060bdb2,0,c1ec00,c1e000) at root_bus_configure+0x16 configure(0,c1ec00,c1e000,0,c04457a5) at configure+0x9 mi_startup() at mi_startup+0x96 begin() at begin+0x2c db> From owner-freebsd-alpha@FreeBSD.ORG Mon Aug 8 11:01:48 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C20D16A41F for ; Mon, 8 Aug 2005 11:01:48 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 640D343D46 for ; Mon, 8 Aug 2005 11:01:48 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j78B1mvH006732 for ; Mon, 8 Aug 2005 11:01:48 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j78B1ljp006726 for freebsd-alpha@freebsd.org; Mon, 8 Aug 2005 11:01:47 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 8 Aug 2005 11:01:47 GMT Message-Id: <200508081101.j78B1ljp006726@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: freebsd-alpha@FreeBSD.org Cc: Subject: Current problem reports assigned to you X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Aug 2005 11:01:48 -0000 Current FreeBSD problem reports Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2004/12/20] alpha/75317 alpha ATA DMA broken on PCalpha 1 problem total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/02/05] alpha/47952 alpha DEFPA causes machine check with V5.0-rele o [2003/11/10] alpha/59116 alpha [ntfs] mount_ntfs of a Windows 2000-forma o [2004/01/26] alpha/61940 alpha Can't disklabel new disk from FreeBSD/alp o [2004/01/27] alpha/61973 alpha Machine Check on boot-up of AlphaServer 2 f [2004/06/06] alpha/67626 alpha X crashes an alpha machine, resulting reb 5 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/02/22] alpha/25284 alpha PC164 won't reboot with graphics console f [2001/07/29] alpha/29299 alpha FreeBSD 4.3 Alpha + Tekram SCSI adapter p o [2002/05/13] alpha/38031 alpha osf1.ko not loaded during boot-time of li o [2003/02/25] alpha/48676 alpha Changing the baud rate of serial consoles o [2003/04/12] alpha/50868 alpha fd0 floppy device is not mapped into /dev o [2004/05/10] alpha/66478 alpha unexpected machine check: panic for 4.9, o [2004/06/13] alpha/67903 alpha hw.chipset.memory: 1099511627776 - thats 7 problems total. From owner-freebsd-alpha@FreeBSD.ORG Mon Aug 8 15:34:21 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5F2716A420 for ; Mon, 8 Aug 2005 15:34:21 +0000 (GMT) (envelope-from sammyshome@gmx.net) Received: from mailout04.sul.t-online.com (mailout04.sul.t-online.com [194.25.134.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ABFA43D5A for ; Mon, 8 Aug 2005 15:34:21 +0000 (GMT) (envelope-from sammyshome@gmx.net) Received: from fwd21.aul.t-online.de by mailout04.sul.t-online.com with smtp id 1E29aN-0003Rt-00; Mon, 08 Aug 2005 17:30:43 +0200 Received: from pentacon.gov (GiUsUmZSZe7wKmIl1l1i-4au6bn5N3HMJmJYtJKDb236wI2CqyYps3@[217.248.50.47]) by fwd21.sul.t-online.de with esmtp id 1E29aG-0tj9WK0; Mon, 8 Aug 2005 17:30:36 +0200 Received: from [192.168.1.231] (uranos.pentacon.gov [192.168.1.231]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pentacon.gov (Postfix) with ESMTP id 9E074261B1 for ; Mon, 8 Aug 2005 19:32:47 +0200 (CEST) From: sp4rc To: freebsd-alpha@FreeBSD.org Content-Type: text/plain Message-Id: <1123515474.15192.2.camel@uranos.pentacon.gov> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Mon, 08 Aug 2005 17:37:54 +0200 Content-Transfer-Encoding: 7bit X-ID: GiUsUmZSZe7wKmIl1l1i-4au6bn5N3HMJmJYtJKDb236wI2CqyYps3@t-dialin.net X-TOI-MSGID: 729ed103-17ee-44b7-b228-e4e26a146b94 Cc: Subject: (no subject) X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Aug 2005 15:34:22 -0000 From owner-freebsd-alpha@FreeBSD.ORG Mon Aug 8 17:39:03 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00A8416A424; Mon, 8 Aug 2005 17:39:02 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DA67440E7; Mon, 8 Aug 2005 17:27:29 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from [10.50.40.201] (Not Verified[65.202.103.25]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Mon, 08 Aug 2005 13:42:15 -0400 From: John Baldwin To: thierry@herbelot.com Date: Mon, 8 Aug 2005 13:27:56 -0400 User-Agent: KMail/1.8 References: <200508041255.05839.jhb@FreeBSD.org> <200508051040.05333.jhb@FreeBSD.org> <200508070937.51119.thierry@herbelot.com> In-Reply-To: <200508070937.51119.thierry@herbelot.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200508081327.57864.jhb@FreeBSD.org> Cc: freebsd-current@freebsd.org, freebsd-alpha@freebsd.org Subject: Re: Locking fixes for dc(4): please test! X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Aug 2005 17:39:03 -0000 On Sunday 07 August 2005 03:37 am, Thierry Herbelot wrote: > Le Friday 5 August 2005 16:40, John Baldwin a =E9crit : > > Ok. Try changing the IS_MPSAFE at around line 348 flag from 0 to 1 and > > see if it blows up then. :) Thanks for testing. > > it does blow up with the following message > (GENERIC -current on an SMP, non-ACPI BP6, with your patch and IS_MPSAFE= =3D1) > > no kernel dump as the dump device is not yet defined (TBD through a loader > tunable ?) Ok, I forgot to remove an instance of DC_UNLOCK(). Thanks for the report. I've updated the patch at www.freebsd.org/~jhb/patches/dc_locking.patch Ca= n=20 you try it again? =2D-=20 John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" =3D http://www.FreeBSD.org From owner-freebsd-alpha@FreeBSD.ORG Mon Aug 8 18:54:46 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0534816A41F for ; Mon, 8 Aug 2005 18:54:46 +0000 (GMT) (envelope-from harrisb@rcisd.org) Received: from mail.rcisd.org (mail.rcisd.org [207.235.198.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4D6543D48 for ; Mon, 8 Aug 2005 18:54:41 +0000 (GMT) (envelope-from harrisb@rcisd.org) Received: from [10.0.4.131] (helo=[10.0.4.131]) by mail.rcisd.org with esmtp (Exim 4.42) id 1E2Clk-0005zu-VJ for freebsd-alpha@freebsd.org; Mon, 08 Aug 2005 13:54:41 -0500 Mime-Version: 1.0 (Apple Message framework v622) Content-Transfer-Encoding: 7bit Message-Id: Content-Type: text/plain; charset=US-ASCII; format=flowed To: freebsd-alpha@freebsd.org From: Bill Harris Date: Mon, 8 Aug 2005 13:54:41 -0500 X-Mailer: Apple Mail (2.622) Subject: Broken Netstat -rn in 5.4 X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Aug 2005 18:54:46 -0000 I was busily trimming down my kernel, and accidently broke Netstat.. # netstat -rn netstat: kvm not available Routing tables rt_tables: symbol not in namelist What do I need to turn back on in my kernel config to properly build in the symbol tables for a working 'netstat' Bill From owner-freebsd-alpha@FreeBSD.ORG Mon Aug 8 20:50:51 2005 Return-Path: X-Original-To: freebsd-alpha@FreeBSD.org Delivered-To: freebsd-alpha@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 617ED16A41F for ; Mon, 8 Aug 2005 20:50:51 +0000 (GMT) (envelope-from sysop@mlpark.ru) Received: from smtpout.azz.ru (smtpout.azz.ru [84.252.140.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C75E43D45 for ; Mon, 8 Aug 2005 20:50:47 +0000 (GMT) (envelope-from sysop@mlpark.ru) Received: (qmail 4371 invoked by uid 511); 8 Aug 2005 20:48:12 -0000 Received: from unknown (HELO mlpark.ru) (allmail@mlpark.ru@82.138.35.129) by 0 with SMTP; 8 Aug 2005 20:48:12 -0000 Received: from serverp [192.168.100.1] by mlp.ru [192.168.100.1] with ESMTP; Tue 09 Aug 2005 00:50:03 +0400 From: "Michael Wolohov" To: Date: Tue, 9 Aug 2005 00:50:00 +0400 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcWcRa7DRLDE/KbOTByJyL48R+wZ2A== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.1039 Message-Id: <20050808205047.6C75E43D45@mx1.FreeBSD.org> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: what about compaq alphaserver ds20 X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Aug 2005 20:50:51 -0000 Hi I have a Compaq Alphaserver DS20 server. Is there a FreeBSD version to run on it? From owner-freebsd-alpha@FreeBSD.ORG Mon Aug 8 21:05:06 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0CB316A41F for ; Mon, 8 Aug 2005 21:05:06 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from smtp-vbr6.xs4all.nl (smtp-vbr6.xs4all.nl [194.109.24.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id D20D343D45 for ; Mon, 8 Aug 2005 21:05:05 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr6.xs4all.nl (8.13.3/8.13.3) with ESMTP id j78L532S087998; Mon, 8 Aug 2005 23:05:03 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.13.3/8.13.3) with ESMTP id j78L53cP002883; Mon, 8 Aug 2005 23:05:03 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.13.3/8.13.1/Submit) id j78L53Ot002882; Mon, 8 Aug 2005 23:05:03 +0200 (CEST) (envelope-from wb) Date: Mon, 8 Aug 2005 23:05:03 +0200 From: Wilko Bulte To: Michael Wolohov Message-ID: <20050808210503.GB2843@freebie.xs4all.nl> References: <20050808205047.6C75E43D45@mx1.FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050808205047.6C75E43D45@mx1.FreeBSD.org> X-OS: FreeBSD 5.4-STABLE User-Agent: Mutt/1.5.9i X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-alpha@freebsd.org Subject: Re: what about compaq alphaserver ds20 X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Aug 2005 21:05:06 -0000 On Tue, Aug 09, 2005 at 12:50:00AM +0400, Michael Wolohov wrote.. > Hi > I have a Compaq Alphaserver DS20 server. Is there a FreeBSD version to run > on it? Sure, there are a number of FreeBSD developers running DS20s so.. -- Wilko Bulte wilko@FreeBSD.org From owner-freebsd-alpha@FreeBSD.ORG Mon Aug 8 21:11:27 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA41A16A41F; Mon, 8 Aug 2005 21:11:27 +0000 (GMT) (envelope-from thierry@herbelot.com) Received: from postfix3-2.free.fr (postfix3-2.free.fr [213.228.0.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44EEB43D45; Mon, 8 Aug 2005 21:11:27 +0000 (GMT) (envelope-from thierry@herbelot.com) Received: from herbelot.dyndns.org (bne75-4-82-227-159-103.fbx.proxad.net [82.227.159.103]) by postfix3-2.free.fr (Postfix) with ESMTP id 4A4EAC0CF; Mon, 8 Aug 2005 23:11:26 +0200 (CEST) Received: from diversion.herbelot.nom (diversion.herbelot.nom [192.168.2.6]) by herbelot.dyndns.org (8.13.3/8.13.3) with ESMTP id j78LBHjh025883; Mon, 8 Aug 2005 23:11:24 +0200 (CEST) From: Thierry Herbelot To: freebsd-current@freebsd.org Date: Mon, 8 Aug 2005 23:11:07 +0200 User-Agent: KMail/1.8.2 References: <200508041255.05839.jhb@FreeBSD.org> <200508070937.51119.thierry@herbelot.com> <200508081327.57864.jhb@FreeBSD.org> In-Reply-To: <200508081327.57864.jhb@FreeBSD.org> X-Warning: Windows can lose your files X-Op-Sys: Le FriBi de la mort qui tue X-Org: TfH&Co X-MailScanner: Found to be clean MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 8bit Content-Disposition: inline Message-Id: <200508082311.09721.thierry@herbelot.com> Cc: freebsd-alpha@freebsd.org Subject: Re: Locking fixes for dc(4): please test! X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: thierry@herbelot.com List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Aug 2005 21:11:27 -0000 Le Monday 8 August 2005 19:27, John Baldwin a écrit : > > Ok, I forgot to remove an instance of DC_UNLOCK(). Thanks for the report. > I've updated the patch at www.freebsd.org/~jhb/patches/dc_locking.patch > Can you try it again? So far so good : a patched kernel is currently running ("cvs up" over NFS). We'll see if the builworld goes to the end ;-) Thanks TfH From owner-freebsd-alpha@FreeBSD.ORG Mon Aug 8 22:31:07 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 713E116A41F for ; Mon, 8 Aug 2005 22:31:07 +0000 (GMT) (envelope-from sammyshome@gmx.net) Received: from mailout05.sul.t-online.com (mailout05.sul.t-online.com [194.25.134.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C56F43D45 for ; Mon, 8 Aug 2005 22:31:06 +0000 (GMT) (envelope-from sammyshome@gmx.net) Received: from fwd35.aul.t-online.de by mailout05.sul.t-online.com with smtp id 1E2G9B-0004jx-01; Tue, 09 Aug 2005 00:31:05 +0200 Received: from pentacon.gov (Saf25YZ-ge0sYezV58J2YDWXx+zgrSwcpSRNpD86q3eYNKJ+hEHcs5@[217.248.50.213]) by fwd35.sul.t-online.de with esmtp id 1E2G96-0MNYmm0; Tue, 9 Aug 2005 00:31:00 +0200 Received: from [192.168.1.231] (uranos.pentacon.gov [192.168.1.231]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pentacon.gov (Postfix) with ESMTP id ED802261B1 for ; Tue, 9 Aug 2005 02:33:11 +0200 (CEST) From: sp4rc To: freebsd-alpha@freebsd.org Content-Type: text/plain Message-Id: <1123540691.16459.1.camel@uranos.pentacon.gov> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 09 Aug 2005 00:38:16 +0200 Content-Transfer-Encoding: 7bit X-ID: Saf25YZ-ge0sYezV58J2YDWXx+zgrSwcpSRNpD86q3eYNKJ+hEHcs5@t-dialin.net X-TOI-MSGID: 2288c89e-9a89-40d9-9593-3c3c7cf6d4c0 Subject: AS1200 Question X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Aug 2005 22:31:07 -0000 Hi folks, has anyone been able to install FreeBSd 5.4 on a Alpha Server 1200? The bootprocess from cd hangs. Greets From owner-freebsd-alpha@FreeBSD.ORG Mon Aug 8 23:12:25 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4BC7516A41F for ; Mon, 8 Aug 2005 23:12:25 +0000 (GMT) (envelope-from ticso@cicely12.cicely.de) Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EDF443D48 for ; Mon, 8 Aug 2005 23:12:24 +0000 (GMT) (envelope-from ticso@cicely12.cicely.de) Received: from cicely5.cicely.de (cicely5.cicely.de [10.1.1.7]) (authenticated bits=0) by srv1.cosmo-project.de (8.12.10/8.12.10) with ESMTP id j78NCKBS001146 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Tue, 9 Aug 2005 01:12:22 +0200 (CEST) (envelope-from ticso@cicely12.cicely.de) Received: from cicely12.cicely.de (cicely12.cicely.de [10.1.1.14]) by cicely5.cicely.de (8.12.10/8.12.10) with ESMTP id j78NC7J7073569 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 9 Aug 2005 01:12:08 +0200 (CEST) (envelope-from ticso@cicely12.cicely.de) Received: from cicely12.cicely.de (localhost [127.0.0.1]) by cicely12.cicely.de (8.12.11/8.12.11) with ESMTP id j78NC7uj018737; Tue, 9 Aug 2005 01:12:07 +0200 (CEST) (envelope-from ticso@cicely12.cicely.de) Received: (from ticso@localhost) by cicely12.cicely.de (8.12.11/8.12.11/Submit) id j78NC6Go018736; Tue, 9 Aug 2005 01:12:06 +0200 (CEST) (envelope-from ticso) Date: Tue, 9 Aug 2005 01:12:06 +0200 From: Bernd Walter To: sp4rc Message-ID: <20050808231206.GB94041@cicely12.cicely.de> References: <1123540691.16459.1.camel@uranos.pentacon.gov> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1123540691.16459.1.camel@uranos.pentacon.gov> X-Operating-System: FreeBSD cicely12.cicely.de 5.2-CURRENT alpha User-Agent: Mutt/1.5.9i X-Spam-Status: No, hits=-4.9 required=3.0 tests=BAYES_00 autolearn=ham version=2.64 X-Spam-Report: * -4.9 BAYES_00 BODY: Bayesian spam probability is 0 to 1% * [score: 0.0000] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on cicely12.cicely.de Cc: freebsd-alpha@freebsd.org Subject: Re: AS1200 Question X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ticso@cicely.de List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Aug 2005 23:12:25 -0000 On Tue, Aug 09, 2005 at 12:38:16AM +0200, sp4rc wrote: > Hi folks, > > has anyone been able to install FreeBSd 5.4 on a Alpha Server 1200? The > bootprocess from cd hangs. An AS1200 should run just fine. At which point does it hang? Complete boot messages would be great. -- B.Walter BWCT http://www.bwct.de bernd@bwct.de info@bwct.de From owner-freebsd-alpha@FreeBSD.ORG Tue Aug 9 00:36:33 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23E8F16A420 for ; Tue, 9 Aug 2005 00:36:33 +0000 (GMT) (envelope-from sammyshome@gmx.net) Received: from mailout11.sul.t-online.com (mailout11.sul.t-online.com [194.25.134.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2A5643D55 for ; Tue, 9 Aug 2005 00:36:31 +0000 (GMT) (envelope-from sammyshome@gmx.net) Received: from fwd21.aul.t-online.de by mailout11.sul.t-online.com with smtp id 1E2I6Y-0002nF-00; Tue, 09 Aug 2005 02:36:30 +0200 Received: from pentacon.gov (T53H5EZaYe4f27fggnnfDX0EDId0n2dzwjsujG9A2Gk8oFSLXtO80Y@[217.248.52.80]) by fwd21.sul.t-online.de with esmtp id 1E2I6W-2GgzRI0; Tue, 9 Aug 2005 02:36:28 +0200 Received: from [192.168.1.231] (uranos.pentacon.gov [192.168.1.231]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pentacon.gov (Postfix) with ESMTP id 72AB6261B1 for ; Tue, 9 Aug 2005 04:38:40 +0200 (CEST) From: sp4rc To: freebsd-alpha@freebsd.org In-Reply-To: <20050808231206.GB94041@cicely12.cicely.de> References: <1123540691.16459.1.camel@uranos.pentacon.gov> <20050808231206.GB94041@cicely12.cicely.de> Content-Type: text/plain Message-Id: <1123548229.16459.32.camel@uranos.pentacon.gov> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 09 Aug 2005 02:43:49 +0200 Content-Transfer-Encoding: 7bit X-ID: T53H5EZaYe4f27fggnnfDX0EDId0n2dzwjsujG9A2Gk8oFSLXtO80Y@t-dialin.net X-TOI-MSGID: b0dc761f-4f9f-455e-8dd0-8dd234c93f72 Subject: Re: AS1200 Question X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Aug 2005 00:36:33 -0000 > > has anyone been able to install FreeBSd 5.4 on a Alpha Server 1200? The > > bootprocess from cd hangs. > > An AS1200 should run just fine. > At which point does it hang? > Complete boot messages would be great. oh, sorry for that, after 17h infront of my terminal i became a bit forgetfully. P00>>>boot dka500 Initializing... SROM V3.0 on cpu0 XSROM V6.0 on cpu0 BCache testing complete on cpu0 mem_pair0 - 256 MB mem_pair1 - 256 MB mem_pair2 - 256 MB mem_pair3 - 256 MB mem_pair4 - 256 MB mem_pair5 - 256 MB 20..21..23.. please wait 54 seconds for T24 to complete 24.. Memory testing complete on cpu0 starting console on CPU 0 sizing memory 0 256 MB DIMM 1 256 MB DIMM 2 256 MB DIMM 3 256 MB DIMM 4 256 MB DIMM 5 256 MB DIMM probing IOD1 hose 1 bus 0 slot 1 - NCR 53C810 bus 0 slot 4 - QLogic ISP10X0 probing IOD0 hose 0 PCI device in hose 0 slot 2 incorrectly decodes Type 1 configuration cycles, may interfere with subordinate PCI buses. bus 0 slot 1 - PCEB probing EISA Bridge, bus 1 bus 0 slot 2 - Digital 2T-PMPAA/Pixelwork bus 0 slot 4 - DECchip 21140-AA mouse test 4 failed configuring I/O adapters... ncr0, hose 1, bus 0, slot 1 isp0, hose 1, bus 0, slot 4 floppy0, hose 0, bus 1, slot 0 tulip0, hose 0, bus 0, slot 4 System temperature is 24 degrees C AlphaServer 1200 Console V6.0-4, 10-MAY-2001 10:11:42 CPU 0 booting (boot dka500.5.0.1.1 -flags a) block 0 of dka500.5.0.1.1 is a valid boot block reading 410 blocks from dka500.5.0.1.1 bootstrap code read in Building FRU table base = 200000, image_start = 0, image_bytes = 33400 initializing HWRPB at 2000 initializing page table at 1f2000 initializing machine state setting affinity to the primary CPU jumping to bootstrap code Console: SRM firmware console VMS PAL rev: 0x4000200010115 OSF PAL rev: 0x4000200020117 Switch to OSF PAL code succeeded. FreeBSD/alpha SRM CD9660 boot, Revision 1.2 (root@ds10.freebie.xs4all.nl, Mon May 9 13:32:23 UTC 2005) Memory: 1572864 k Loading /boot/defaults/loader.conf /boot/kernel/kernel data=0x5e8d60+0x3d720 syms=[0x8+0x669a8+0x8+0x54f0f] \ Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel]... Entering /boot/kernel/kernel at 0xfffffc0000345de0... Copyright (c) 1992-2005 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.4-RELEASE #0: Mon May 9 21:18:39 UTC 2005 root@ds10.freebie.xs4all.nl:/usr/obj/usr/src/sys/GENERIC never mind about the -a flag, i have also tried without it... any hints would be greatly appreciated. /sp4rc From owner-freebsd-alpha@FreeBSD.ORG Tue Aug 9 01:26:26 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F53316A41F for ; Tue, 9 Aug 2005 01:26:26 +0000 (GMT) (envelope-from ticso@cicely12.cicely.de) Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A97B43D46 for ; Tue, 9 Aug 2005 01:26:25 +0000 (GMT) (envelope-from ticso@cicely12.cicely.de) Received: from cicely5.cicely.de (cicely5.cicely.de [10.1.1.7]) (authenticated bits=0) by srv1.cosmo-project.de (8.12.10/8.12.10) with ESMTP id j791QLBS004096 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK) for ; Tue, 9 Aug 2005 03:26:22 +0200 (CEST) (envelope-from ticso@cicely12.cicely.de) Received: from cicely12.cicely.de (cicely12.cicely.de [10.1.1.14]) by cicely5.cicely.de (8.12.10/8.12.10) with ESMTP id j791PgJ7074485 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 9 Aug 2005 03:25:43 +0200 (CEST) (envelope-from ticso@cicely12.cicely.de) Received: from cicely12.cicely.de (localhost [127.0.0.1]) by cicely12.cicely.de (8.12.11/8.12.11) with ESMTP id j791PgIW019635 for ; Tue, 9 Aug 2005 03:25:42 +0200 (CEST) (envelope-from ticso@cicely12.cicely.de) Received: (from ticso@localhost) by cicely12.cicely.de (8.12.11/8.12.11/Submit) id j791PgOL019634 for freebsd-alpha@freebsd.org; Tue, 9 Aug 2005 03:25:42 +0200 (CEST) (envelope-from ticso) Resent-From: ticso@cicely12.cicely.de Resent-Date: Tue, 9 Aug 2005 03:25:42 +0200 Resent-Message-ID: <20050809012542.GD94041@cicely12.cicely.de> Resent-To: freebsd-alpha@freebsd.org Received: from cicely5.cicely.de ([unix socket]) by cicely5.cicely.de (Cyrus v2.1.9) with LMTP; Tue, 09 Aug 2005 03:21:21 +0200 X-Sieve: CMU Sieve 2.2 Received: from cicely12.cicely.de (cicely12.cicely.de [10.1.1.14]) by cicely5.cicely.de (8.12.10/8.12.10) with ESMTP id j791LCJ7074453 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 9 Aug 2005 03:21:13 +0200 (CEST) (envelope-from ticso@cicely12.cicely.de) Received: from cicely12.cicely.de (localhost [127.0.0.1]) by cicely12.cicely.de (8.12.11/8.12.11) with ESMTP id j791LCmE019599; Tue, 9 Aug 2005 03:21:12 +0200 (CEST) (envelope-from ticso@cicely12.cicely.de) Received: (from ticso@localhost) by cicely12.cicely.de (8.12.11/8.12.11/Submit) id j791LBMJ019598; Tue, 9 Aug 2005 03:21:11 +0200 (CEST) (envelope-from ticso) Date: Tue, 9 Aug 2005 03:21:11 +0200 From: Bernd Walter To: sp4rc Message-ID: <20050809012111.GC94041@cicely12.cicely.de> References: <1123540691.16459.1.camel@uranos.pentacon.gov> <20050808231206.GB94041@cicely12.cicely.de> <1123548133.16459.29.camel@uranos.pentacon.gov> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1123548133.16459.29.camel@uranos.pentacon.gov> X-Operating-System: FreeBSD cicely12.cicely.de 5.2-CURRENT alpha User-Agent: Mutt/1.5.9i X-Spam-Status: No, hits=-4.9 required=3.0 tests=BAYES_00 autolearn=no version=2.64 X-Spam-Report: * -4.9 BAYES_00 BODY: Bayesian spam probability is 0 to 1% * [score: 0.0000] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on cicely12.cicely.de Cc: ticso@cicely.de Subject: Re: AS1200 Question X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ticso@cicely.de List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Aug 2005 01:26:26 -0000 On Tue, Aug 09, 2005 at 02:42:18AM +0200, sp4rc wrote: > > > has anyone been able to install FreeBSd 5.4 on a Alpha Server 1200? The > > > bootprocess from cd hangs. > > > > An AS1200 should run just fine. > > At which point does it hang? > > Complete boot messages would be great. > > oh, sorry for that, after 17h infront of my terminal i became a bit > forgetfully. > > P00>>>boot dka500 > Initializing... > > SROM V3.0 on cpu0 > XSROM V6.0 on cpu0 > BCache testing complete on cpu0 > mem_pair0 - 256 MB > mem_pair1 - 256 MB > mem_pair2 - 256 MB > mem_pair3 - 256 MB > mem_pair4 - 256 MB > mem_pair5 - 256 MB > 20..21..23.. > please wait 54 seconds for T24 to complete > 24.. > Memory testing complete on cpu0 > starting console on CPU 0 > sizing memory > 0 256 MB DIMM > 1 256 MB DIMM > 2 256 MB DIMM > 3 256 MB DIMM > 4 256 MB DIMM > 5 256 MB DIMM > probing IOD1 hose 1 > bus 0 slot 1 - NCR 53C810 > bus 0 slot 4 - QLogic ISP10X0 > probing IOD0 hose 0 > PCI device in hose 0 slot 2 incorrectly decodes Type 1 configuration > cycles, Interesting. > may interfere with subordinate PCI buses. > bus 0 slot 1 - PCEB > probing EISA Bridge, bus 1 > bus 0 slot 2 - Digital 2T-PMPAA/Pixelwork Please try without that card. The problem, that the message shows, shouldn't be problem as long as you don't try a bridged card in that hose, but it looks as if its the only specific component that might have an influence at the early kernel state. Not shure about what kind of card it is - maybe it's not supported by FreeBSD anyway. > bus 0 slot 4 - DECchip 21140-AA > mouse test 4 failed > configuring I/O adapters... > ncr0, hose 1, bus 0, slot 1 > isp0, hose 1, bus 0, slot 4 > floppy0, hose 0, bus 1, slot 0 > tulip0, hose 0, bus 0, slot 4 > System temperature is 24 degrees C > > AlphaServer 1200 Console V6.0-4, 10-MAY-2001 10:11:42 > > CPU 0 booting [...] > Entering /boot/kernel/kernel at 0xfffffc0000345de0... > Copyright (c) 1992-2005 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.4-RELEASE #0: Mon May 9 21:18:39 UTC 2005 > root@ds10.freebie.xs4all.nl:/usr/obj/usr/src/sys/GENERIC It hangs _very_ early. It is before the PCI scan, but the graficcard still sounds like a good candidate for problems. > never mind about the -a flag, i have also tried without it... FreeBSD ignores the -a flag -v for verbose booting may have been iuntersting, but I doubt that there are much differences at this stage. -- B.Walter BWCT http://www.bwct.de bernd@bwct.de info@bwct.de From owner-freebsd-alpha@FreeBSD.ORG Tue Aug 9 05:38:37 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3FF916A41F for ; Tue, 9 Aug 2005 05:38:37 +0000 (GMT) (envelope-from sten@blinkenlights.nl) Received: from ford.blinkenlights.nl (ford.blinkenlights.nl [213.204.211.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DED543D45 for ; Tue, 9 Aug 2005 05:38:37 +0000 (GMT) (envelope-from sten@blinkenlights.nl) Received: from tea.blinkenlights.nl (tea.blinkenlights.nl [IPv6:2001:980:ffe:3:a00:20ff:fe85:fa39]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ford.blinkenlights.nl (Postfix) with ESMTP id 9FBAC179CFA; Tue, 9 Aug 2005 07:38:38 +0200 (CEST) Received: by tea.blinkenlights.nl (Postfix, from userid 101) id 46A2227D; Tue, 9 Aug 2005 07:38:38 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by tea.blinkenlights.nl (Postfix) with ESMTP id 41A4817B; Tue, 9 Aug 2005 07:38:38 +0200 (CEST) Date: Tue, 9 Aug 2005 07:38:38 +0200 (CEST) From: Sten Spans To: Bill Harris In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-alpha@freebsd.org Subject: Re: Broken Netstat -rn in 5.4 X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Aug 2005 05:38:37 -0000 On Mon, 8 Aug 2005, Bill Harris wrote: > I was busily trimming down my kernel, and accidently broke > Netstat.. > > > # netstat -rn > netstat: kvm not available > Routing tables > rt_tables: symbol not in namelist > > > What do I need to turn back on in my kernel config to > properly build in the symbol tables for a working 'netstat' device mem # Memory and kernel memory devices probably. -- Sten Spans "There is a crack in everything, that's how the light gets in." Leonard Cohen - Anthem From owner-freebsd-alpha@FreeBSD.ORG Tue Aug 9 08:26:34 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43FB216A41F for ; Tue, 9 Aug 2005 08:26:34 +0000 (GMT) (envelope-from sammyshome@gmx.net) Received: from mailout01.sul.t-online.com (mailout01.sul.t-online.com [194.25.134.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9839B43D46 for ; Tue, 9 Aug 2005 08:26:33 +0000 (GMT) (envelope-from sammyshome@gmx.net) Received: from fwd34.aul.t-online.de by mailout01.sul.t-online.com with smtp id 1E2POK-0007ix-02; Tue, 09 Aug 2005 10:23:20 +0200 Received: from pentacon.gov (rffjROZdreW89fNqBcLtVLKHdEvym4HGybdMxp01FT75R2XwM8ZUcw@[217.248.50.82]) by fwd34.sul.t-online.de with esmtp id 1E2POA-0wBDZA0; Tue, 9 Aug 2005 10:23:10 +0200 Received: from [192.168.1.231] (uranos.pentacon.gov [192.168.1.231]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pentacon.gov (Postfix) with ESMTP id A2ED317A20 for ; Tue, 9 Aug 2005 12:25:21 +0200 (CEST) From: sp4rc To: freebsd-alpha@freebsd.org In-Reply-To: <20050809012111.GC94041@cicely12.cicely.de> References: <1123540691.16459.1.camel@uranos.pentacon.gov> <20050808231206.GB94041@cicely12.cicely.de> <1123548133.16459.29.camel@uranos.pentacon.gov> <20050809012111.GC94041@cicely12.cicely.de> Content-Type: text/plain Message-Id: <1123576228.689.14.camel@uranos.pentacon.gov> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 09 Aug 2005 10:30:28 +0200 Content-Transfer-Encoding: 7bit X-ID: rffjROZdreW89fNqBcLtVLKHdEvym4HGybdMxp01FT75R2XwM8ZUcw@t-dialin.net X-TOI-MSGID: 90f98a2c-f88d-454b-adbd-e7fe108e4b7b Subject: Re: AS1200 Question X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Aug 2005 08:26:34 -0000 > Please try without that card. > The problem, that the message shows, shouldn't be problem as long as > you don't try a bridged card in that hose, but it looks as if its the > only specific component that might have an influence at the early kernel > state. just removed the card but he same hang occured > Not shure about what kind of card it is - maybe it's not supported by > FreeBSD anyway. it's S3 vision968 graphics card > FreeBSD ignores the -a flag -v for verbose booting may have been > iuntersting, but I doubt that there are much differences at this > stage. P00>>>set boot_osflags v P00>>>boot dka500 Initializing... SROM V3.0 on cpu0 XSROM V6.0 on cpu0 [...] (boot dka500.5.0.1.1 -flags v) [...] FreeBSD/alpha SRM CD9660 boot, Revision 1.2 (root@ds10.freebie.xs4all.nl, Mon May 9 13:32:23 UTC 2005) Memory: 1572864 k Loading /boot/defaults/loader.conf /boot/kernel/kernel data=0x5e8d60+0x3d720 syms=[0x8+0x669a8+0x8+0x54f0f] \ Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel]... Entering /boot/kernel/kernel at 0xfffffc0000345de0... Copyright (c) 1992-2005 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.4-RELEASE #0: Mon May 9 21:18:39 UTC 2005 root@ds10.freebie.xs4all.nl:/usr/obj/usr/src/sys/GENERIC and here it stucks again :( thx for your help. Maybee you have other hints for me? greets /sp4rc From owner-freebsd-alpha@FreeBSD.ORG Wed Aug 10 20:57:38 2005 Return-Path: X-Original-To: alpha@FreeBSD.org Delivered-To: freebsd-alpha@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67FEB16A41F; Wed, 10 Aug 2005 20:57:38 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9EE743D46; Wed, 10 Aug 2005 20:57:37 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from [10.50.40.201] (Not Verified[65.202.103.25]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Wed, 10 Aug 2005 17:12:26 -0400 From: John Baldwin To: current@FreeBSD.org, alpha@FreeBSD.org Date: Wed, 10 Aug 2005 16:56:21 -0400 User-Agent: KMail/1.8 References: <200508041255.05839.jhb@FreeBSD.org> <20050804212718.GD852@zaphod.nitro.dk> In-Reply-To: <20050804212718.GD852@zaphod.nitro.dk> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200508101656.23255.jhb@FreeBSD.org> Cc: "Simon L. Nielsen" , Alec Berryman Subject: Re: Locking fixes for dc(4): please test! X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Aug 2005 20:57:38 -0000 On 2005.08.04 12:55:05 -0400, John Baldwin wrote: > I have some fixes for the locking in the dc(4) driver, please test them > if you have some dc(4) hardware, thanks! > > http://www.FreeBSD.org/~jhb/patches/dc_locking.patch I've updated the patch to use callout_init_mtx() and would appreciate it if the folks who tested it earlier could retest it. Also, can someone with an Alpha please test this as I messed around with the SRM_MEDIA code some in order to make the locking in dc_init_locked() sane and it needs testing on an Alpha. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-freebsd-alpha@FreeBSD.ORG Thu Aug 11 04:24:58 2005 Return-Path: X-Original-To: alpha@freebsd.org Delivered-To: freebsd-alpha@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9059016A41F; Thu, 11 Aug 2005 04:24:58 +0000 (GMT) (envelope-from thierry@herbelot.com) Received: from postfix4-2.free.fr (postfix4-2.free.fr [213.228.0.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id 297C743D46; Thu, 11 Aug 2005 04:24:57 +0000 (GMT) (envelope-from thierry@herbelot.com) Received: from herbelot.dyndns.org (bne75-4-82-227-159-103.fbx.proxad.net [82.227.159.103]) by postfix4-2.free.fr (Postfix) with ESMTP id 26008322D14; Thu, 11 Aug 2005 06:24:57 +0200 (CEST) Received: from diversion.herbelot.nom (diversion.herbelot.nom [192.168.2.6]) by herbelot.dyndns.org (8.13.3/8.13.3) with ESMTP id j7B4Omvf010067; Thu, 11 Aug 2005 06:24:54 +0200 (CEST) From: Thierry Herbelot Date: Thu, 11 Aug 2005 06:24:37 +0200 User-Agent: KMail/1.8.2 References: <200508041255.05839.jhb@FreeBSD.org> <20050804212718.GD852@zaphod.nitro.dk> <200508101656.23255.jhb@FreeBSD.org> In-Reply-To: <200508101656.23255.jhb@FreeBSD.org> X-Warning: Windows can lose your files X-Op-Sys: Le FriBi de la mort qui tue X-Org: TfH&Co X-MailScanner: Found to be clean MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 8bit Content-Disposition: inline To: "Undisclosed.Recipients": ; Message-Id: <200508110624.40732.thierry@herbelot.com> Cc: alpha@freebsd.org, current@freebsd.org Subject: Re: Locking fixes for dc(4): please test! X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: thierry@herbelot.com List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Aug 2005 04:24:58 -0000 Le Wednesday 10 August 2005 22:56, John Baldwin a écrit : > On 2005.08.04 12:55:05 -0400, John Baldwin wrote: > > I have some fixes for the locking in the dc(4) driver, please test them > > if you have some dc(4) hardware, thanks! > > > > http://www.FreeBSD.org/~jhb/patches/dc_locking.patch > > I've updated the patch to use callout_init_mtx() and would appreciate it if > the folks who tested it earlier could retest it. Also, can someone with an > Alpha please test this as I messed around with the SRM_MEDIA code some in > order to make the locking in dc_init_locked() sane and it needs testing on > an Alpha. Hello, well, your latest dc patch just survived a make buildworld (same conditions : SMP 386 machine) TfH From owner-freebsd-alpha@FreeBSD.ORG Thu Aug 11 14:14:44 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73D8516A41F for ; Thu, 11 Aug 2005 14:14:44 +0000 (GMT) (envelope-from harrisb@rcisd.org) Received: from mail.rcisd.org (mail.rcisd.org [207.235.198.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2770C43D45 for ; Thu, 11 Aug 2005 14:14:44 +0000 (GMT) (envelope-from harrisb@rcisd.org) Received: from [207.235.198.14] (helo=notes1.rcisd.org) by mail.rcisd.org with esmtp (Exim 4.42) id 1E3DpS-000MJ2-SM; Thu, 11 Aug 2005 09:14:42 -0500 In-Reply-To: To: Sten Spans MIME-Version: 1.0 X-Mailer: Lotus Notes Release 6.5.4 March 27, 2005 Message-ID: From: harrisb@rcisd.org Date: Thu, 11 Aug 2005 09:17:23 -0500 X-MIMETrack: Serialize by Router on notes1/rcisd(Release 6.5.4FP1|June 19, 2005) at 08/11/2005 09:17:23 AM, Serialize complete at 08/11/2005 09:17:23 AM Content-Type: text/plain; charset="US-ASCII" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-alpha@freebsd.org Subject: Re: Broken Netstat -rn in 5.4 X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Aug 2005 14:14:44 -0000 That was it. Thanks. Bill Harris Director of Technology Royse City ISD (972)-635-5050 Sten Spans 08/09/05 12:38 AM To Bill Harris cc freebsd-alpha@freebsd.org Subject Re: Broken Netstat -rn in 5.4 On Mon, 8 Aug 2005, Bill Harris wrote: > I was busily trimming down my kernel, and accidently broke > Netstat.. > > > # netstat -rn > netstat: kvm not available > Routing tables > rt_tables: symbol not in namelist > > > What do I need to turn back on in my kernel config to > properly build in the symbol tables for a working 'netstat' device mem # Memory and kernel memory devices probably. -- Sten Spans "There is a crack in everything, that's how the light gets in." Leonard Cohen - Anthem From owner-freebsd-alpha@FreeBSD.ORG Thu Aug 11 18:40:35 2005 Return-Path: X-Original-To: alpha@FreeBSD.org Delivered-To: freebsd-alpha@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5F5E16A41F; Thu, 11 Aug 2005 18:40:35 +0000 (GMT) (envelope-from simon@zaphod.nitro.dk) Received: from zaphod.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6463043D45; Thu, 11 Aug 2005 18:40:35 +0000 (GMT) (envelope-from simon@zaphod.nitro.dk) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id 678DA119EB; Thu, 11 Aug 2005 20:40:33 +0200 (CEST) Date: Thu, 11 Aug 2005 20:40:33 +0200 From: "Simon L. Nielsen" To: John Baldwin Message-ID: <20050811184032.GH863@zaphod.nitro.dk> References: <200508041255.05839.jhb@FreeBSD.org> <20050804212718.GD852@zaphod.nitro.dk> <200508101656.23255.jhb@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="H4SyuGOnfnj3aJqJ" Content-Disposition: inline In-Reply-To: <200508101656.23255.jhb@FreeBSD.org> User-Agent: Mutt/1.5.9i Cc: alpha@FreeBSD.org, current@FreeBSD.org, Alec Berryman Subject: Re: Locking fixes for dc(4): please test! X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Aug 2005 18:40:36 -0000 --H4SyuGOnfnj3aJqJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2005.08.10 16:56:21 -0400, John Baldwin wrote: > On 2005.08.04 12:55:05 -0400, John Baldwin wrote: > > I have some fixes for the locking in the dc(4) driver, please test them > > if you have some dc(4) hardware, thanks! > > > > http://www.FreeBSD.org/~jhb/patches/dc_locking.patch >=20 > I've updated the patch to use callout_init_mtx() and would appreciate it = if=20 > the folks who tested it earlier could retest it. Also, can someone with = an=20 > Alpha please test this as I messed around with the SRM_MEDIA code some in= =20 > order to make the locking in dc_init_locked() sane and it needs testing o= n an=20 > Alpha. This version also seems to work fine on my i386 UP test system. --=20 Simon L. Nielsen --H4SyuGOnfnj3aJqJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFC+5ugh9pcDSc1mlERAnSAAKCb8RHfuajCEmUPdWTpsgbAgdCkDQCgrrSx itmyY2tjZDQN4ofP3ISA7KY= =ibPt -----END PGP SIGNATURE----- --H4SyuGOnfnj3aJqJ-- From owner-freebsd-alpha@FreeBSD.ORG Thu Aug 11 20:27:12 2005 Return-Path: X-Original-To: alpha@freebsd.org Delivered-To: freebsd-alpha@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0585916A41F; Thu, 11 Aug 2005 20:27:12 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76F1543D48; Thu, 11 Aug 2005 20:27:11 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from [192.168.4.250] (dhcp50.pn.xcllnt.net [192.168.4.250]) by ns1.xcllnt.net (8.13.4/8.13.4) with ESMTP id j7BKRBqQ005054; Thu, 11 Aug 2005 13:27:11 -0700 (PDT) (envelope-from marcel@xcllnt.net) In-Reply-To: <200508101656.23255.jhb@FreeBSD.org> References: <200508041255.05839.jhb@FreeBSD.org> <20050804212718.GD852@zaphod.nitro.dk> <200508101656.23255.jhb@FreeBSD.org> Mime-Version: 1.0 (Apple Message framework v733) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Marcel Moolenaar Date: Thu, 11 Aug 2005 13:27:09 -0700 To: John Baldwin X-Mailer: Apple Mail (2.733) Cc: alpha@freebsd.org, current@freebsd.org Subject: Re: Locking fixes for dc(4): please test! X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Aug 2005 20:27:12 -0000 On Aug 10, 2005, at 1:56 PM, John Baldwin wrote: > On 2005.08.04 12:55:05 -0400, John Baldwin wrote: > >> I have some fixes for the locking in the dc(4) driver, please test >> them >> if you have some dc(4) hardware, thanks! >> >> http://www.FreeBSD.org/~jhb/patches/dc_locking.patch >> > > I've updated the patch to use callout_init_mtx() and would > appreciate it if > the folks who tested it earlier could retest it. Also, can someone > with an > Alpha please test this as I messed around with the SRM_MEDIA code > some in > order to make the locking in dc_init_locked() sane and it needs > testing on an > Alpha. It doesn't build on alpha: ds10% cd /sys/alpha/compile/DS10 ds10% make cc -c -O -pipe -mcpu=ev6 -mieee -Wall -Wredundant-decls -Wnested- externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith - Winline -Wcast-qual -fformat-extensions -std=c99 -g -nostdinc -I- - I. -I../../.. -I../../../contrib/dev/acpica -I../../../contrib/altq - I../../../contrib/ipfilter -I../../../contrib/pf -I../../../contrib/ dev/ath -I../../../contrib/dev/ath/freebsd -I../../../contrib/ngatm - I../../../dev/twa -D_KERNEL -include opt_global.h -fno-common - finline-limit=15000 --param inline-unit-growth=100 --param large- function-growth=1000 -mno-fp-regs -ffixed-8 -Wa,-mev6 -ffreestanding -Werror ../../../pci/if_dc.c ../../../pci/if_dc.c: In function `dc_init': ../../../pci/if_dc.c:3407: error: `ifp' undeclared (first use in this function) ../../../pci/if_dc.c:3407: error: (Each undeclared identifier is reported only once ../../../pci/if_dc.c:3407: error: for each function it appears in.) ../../../pci/if_dc.c:3407: error: `mii' undeclared (first use in this function) *** Error code 1 ...The SRM_MEDIA macro is probably only defined on alpha... -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-freebsd-alpha@FreeBSD.ORG Thu Aug 11 21:22:57 2005 Return-Path: X-Original-To: alpha@freebsd.org Delivered-To: freebsd-alpha@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F106E16A41F; Thu, 11 Aug 2005 21:22:57 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7742443D45; Thu, 11 Aug 2005 21:22:57 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from [10.50.40.201] (Not Verified[65.202.103.25]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Thu, 11 Aug 2005 17:37:40 -0400 From: John Baldwin To: Marcel Moolenaar Date: Thu, 11 Aug 2005 17:22:07 -0400 User-Agent: KMail/1.8 References: <200508041255.05839.jhb@FreeBSD.org> <200508101656.23255.jhb@FreeBSD.org> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200508111722.09584.jhb@FreeBSD.org> Cc: alpha@freebsd.org, current@freebsd.org Subject: Re: Locking fixes for dc(4): please test! X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Aug 2005 21:22:58 -0000 On Thursday 11 August 2005 04:27 pm, Marcel Moolenaar wrote: > On Aug 10, 2005, at 1:56 PM, John Baldwin wrote: > > On 2005.08.04 12:55:05 -0400, John Baldwin wrote: > >> I have some fixes for the locking in the dc(4) driver, please test > >> them > >> if you have some dc(4) hardware, thanks! > >> > >> http://www.FreeBSD.org/~jhb/patches/dc_locking.patch > > > > I've updated the patch to use callout_init_mtx() and would > > appreciate it if > > the folks who tested it earlier could retest it. Also, can someone > > with an > > Alpha please test this as I messed around with the SRM_MEDIA code > > some in > > order to make the locking in dc_init_locked() sane and it needs > > testing on an > > Alpha. > > It doesn't build on alpha: > > ds10% cd /sys/alpha/compile/DS10 > ds10% make > cc -c -O -pipe -mcpu=ev6 -mieee -Wall -Wredundant-decls -Wnested- > externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith - > Winline -Wcast-qual -fformat-extensions -std=c99 -g -nostdinc -I- - > I. -I../../.. -I../../../contrib/dev/acpica -I../../../contrib/altq - > I../../../contrib/ipfilter -I../../../contrib/pf -I../../../contrib/ > dev/ath -I../../../contrib/dev/ath/freebsd -I../../../contrib/ngatm - > I../../../dev/twa -D_KERNEL -include opt_global.h -fno-common - > finline-limit=15000 --param inline-unit-growth=100 --param large- > function-growth=1000 -mno-fp-regs -ffixed-8 -Wa,-mev6 -ffreestanding > -Werror ../../../pci/if_dc.c > ../../../pci/if_dc.c: In function `dc_init': > ../../../pci/if_dc.c:3407: error: `ifp' undeclared (first use in this > function) > ../../../pci/if_dc.c:3407: error: (Each undeclared identifier is > reported only once > ../../../pci/if_dc.c:3407: error: for each function it appears in.) > ../../../pci/if_dc.c:3407: error: `mii' undeclared (first use in this > function) > *** Error code 1 > > ...The SRM_MEDIA macro is probably only defined on alpha... Yeah it is, which is why I wanted someone with an Alpha to test it. You should be able to replace 'ifp' with 'sc->dc_ifp' on line 3407. I'll fix the patch and re-upload it as well. Thanks. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-freebsd-alpha@FreeBSD.ORG Fri Aug 12 04:37:59 2005 Return-Path: X-Original-To: alpha@FreeBSD.org Delivered-To: freebsd-alpha@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A7CE16A41F; Fri, 12 Aug 2005 04:37:59 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E7F543D66; Fri, 12 Aug 2005 04:37:55 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from [192.168.4.250] (dhcp50.pn.xcllnt.net [192.168.4.250]) by ns1.xcllnt.net (8.13.4/8.13.4) with ESMTP id j7C4bt5A014934; Thu, 11 Aug 2005 21:37:55 -0700 (PDT) (envelope-from marcel@xcllnt.net) In-Reply-To: <200508111722.09584.jhb@FreeBSD.org> References: <200508041255.05839.jhb@FreeBSD.org> <200508101656.23255.jhb@FreeBSD.org> <200508111722.09584.jhb@FreeBSD.org> Mime-Version: 1.0 (Apple Message framework v733) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Marcel Moolenaar Date: Thu, 11 Aug 2005 21:37:53 -0700 To: John Baldwin X-Mailer: Apple Mail (2.733) Cc: alpha@FreeBSD.org, current@FreeBSD.org Subject: Re: Locking fixes for dc(4): please test! X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Aug 2005 04:37:59 -0000 On Aug 11, 2005, at 2:22 PM, John Baldwin wrote: >> ds10% cd /sys/alpha/compile/DS10 >> ds10% make >> cc -c -O -pipe -mcpu=ev6 -mieee -Wall -Wredundant-decls -Wnested- >> externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith - >> Winline -Wcast-qual -fformat-extensions -std=c99 -g -nostdinc -I- - >> I. -I../../.. -I../../../contrib/dev/acpica -I../../../contrib/altq - >> I../../../contrib/ipfilter -I../../../contrib/pf -I../../../contrib/ >> dev/ath -I../../../contrib/dev/ath/freebsd -I../../../contrib/ngatm - >> I../../../dev/twa -D_KERNEL -include opt_global.h -fno-common - >> finline-limit=15000 --param inline-unit-growth=100 --param large- >> function-growth=1000 -mno-fp-regs -ffixed-8 -Wa,-mev6 -ffreestanding >> -Werror ../../../pci/if_dc.c >> ../../../pci/if_dc.c: In function `dc_init': >> ../../../pci/if_dc.c:3407: error: `ifp' undeclared (first use in this >> function) >> ../../../pci/if_dc.c:3407: error: (Each undeclared identifier is >> reported only once >> ../../../pci/if_dc.c:3407: error: for each function it appears in.) >> ../../../pci/if_dc.c:3407: error: `mii' undeclared (first use in this >> function) >> *** Error code 1 >> >> ...The SRM_MEDIA macro is probably only defined on alpha... >> > > Yeah it is, which is why I wanted someone with an Alpha to test > it. You > should be able to replace 'ifp' with 'sc->dc_ifp' on line 3407. > I'll fix the > patch and re-upload it as well. Thanks. Yup, that fixes half the problems. I added the following at line 3403 to fix the other half: struct mii_data *mii; mii = device_get_softc(sc->dc_miibus); With that, if_dc seems to work fine. haven't pushed it though... FYI, -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-freebsd-alpha@FreeBSD.ORG Fri Aug 12 08:10:32 2005 Return-Path: X-Original-To: alpha@freebsd.org Delivered-To: freebsd-alpha@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05F0516A41F; Fri, 12 Aug 2005 08:10:32 +0000 (GMT) (envelope-from rbyrnes@mailshack.com) Received: from karen.nerdshack.com (karen.nerdshack.com [209.189.235.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAF1D43D46; Fri, 12 Aug 2005 08:10:31 +0000 (GMT) (envelope-from rbyrnes@mailshack.com) Received: from dispatchd.nerdshack.com (jean.nerdshack.com [209.189.235.38]) by karen.nerdshack.com (Postfix) with SMTP id 7F8851E37EE; Fri, 12 Aug 2005 03:06:18 -0500 (CDT) Received: from cartman.mailshack.com (dsl-235.47.221.203.lns02-kent-syd.dsl.comindico.com.au [203.221.47.235]) by mail.nerdshack.com with ESMTP Fri, 12 Aug 2005 03:09:01 -0500 Message-Id: <6.2.3.4.2.20050812175719.029b56a8@127.0.0.1> X-Mailer: QUALCOMM Windows Eudora Version 6.2.3.4 Date: Fri, 12 Aug 2005 18:10:22 +1000 To: alpha@freebsd.org From: Rob B Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Cc: stable@freebsd.org Subject: Crash on Alpha - 4.11-STABLE X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Aug 2005 08:10:32 -0000 Hi there, This is the second time I've seen this crash in the past three weeks. I'm not sure what the root cause either. This box is just a home server with a single NFS exported directory and one NFS client. It is also a caching http proxy server for my home LAN (three machines). The crash is not occurring during busy times for the proxy side of things, as it happened at 2:01am. FreeBSD erwin.number6 4.11-STABLE FreeBSD 4.11-STABLE #9: Mon Jun 13 23:54:13 EST 2005 root@erwin.number6:/usr/obj/usr/src/sys/ERWIN alpha panic: ffs_write: dir_write panic Stopped at Debugger+02xc: ldq ra,0(sp) <0xfffffe000bab5988> db> trace Debugger() at Debugger+02xc panic() at panic+0x2c ffs_write() at ffs_write+0x120 vnode_pager_generic_putpages() at vnode_pager_generic_putpages+0x21c ffs_putpages() at ffs_putpages+0x30 vnode_pager_putpages() at vnode_pager_putpages+0x9c vm_pageout_flush() at vm_pageout_flush+0x15c cheers, Rob -- A husband is what is left of a man after the nerve is extracted. This is random quote 159 of 1268. Distance from the centre of the brewing universe [15200.8 km (8207.8 mi), 262.8 deg](Apparent) Rennerian Public Key fingerprint = 6219 33BD A37B 368D 29F5 19FB 945D C4D7 1F66 D9C5 From owner-freebsd-alpha@FreeBSD.ORG Fri Aug 12 12:58:48 2005 Return-Path: X-Original-To: freebsd-alpha@freebsd.org Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9694416A41F for ; Fri, 12 Aug 2005 12:58:48 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30A6843D46 for ; Fri, 12 Aug 2005 12:58:47 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from [10.50.40.201] (Not Verified[65.202.103.25]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 12 Aug 2005 09:13:38 -0400 From: John Baldwin To: freebsd-alpha@freebsd.org Date: Fri, 12 Aug 2005 08:59:24 -0400 User-Agent: KMail/1.8 References: <200508041255.05839.jhb@FreeBSD.org> <200508111722.09584.jhb@FreeBSD.org> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200508120859.25404.jhb@FreeBSD.org> Cc: Subject: Re: Locking fixes for dc(4): please test! X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Aug 2005 12:58:48 -0000 On Friday 12 August 2005 12:37 am, Marcel Moolenaar wrote: > On Aug 11, 2005, at 2:22 PM, John Baldwin wrote: > >> ds10% cd /sys/alpha/compile/DS10 > >> ds10% make > >> cc -c -O -pipe -mcpu=ev6 -mieee -Wall -Wredundant-decls -Wnested- > >> externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith - > >> Winline -Wcast-qual -fformat-extensions -std=c99 -g -nostdinc -I- - > >> I. -I../../.. -I../../../contrib/dev/acpica -I../../../contrib/altq - > >> I../../../contrib/ipfilter -I../../../contrib/pf -I../../../contrib/ > >> dev/ath -I../../../contrib/dev/ath/freebsd -I../../../contrib/ngatm - > >> I../../../dev/twa -D_KERNEL -include opt_global.h -fno-common - > >> finline-limit=15000 --param inline-unit-growth=100 --param large- > >> function-growth=1000 -mno-fp-regs -ffixed-8 -Wa,-mev6 -ffreestanding > >> -Werror ../../../pci/if_dc.c > >> ../../../pci/if_dc.c: In function `dc_init': > >> ../../../pci/if_dc.c:3407: error: `ifp' undeclared (first use in this > >> function) > >> ../../../pci/if_dc.c:3407: error: (Each undeclared identifier is > >> reported only once > >> ../../../pci/if_dc.c:3407: error: for each function it appears in.) > >> ../../../pci/if_dc.c:3407: error: `mii' undeclared (first use in this > >> function) > >> *** Error code 1 > >> > >> ...The SRM_MEDIA macro is probably only defined on alpha... > > > > Yeah it is, which is why I wanted someone with an Alpha to test > > it. You > > should be able to replace 'ifp' with 'sc->dc_ifp' on line 3407. > > I'll fix the > > patch and re-upload it as well. Thanks. > > Yup, that fixes half the problems. I added the following at line 3403 > to fix the other half: > > struct mii_data *mii; > mii = device_get_softc(sc->dc_miibus); > > With that, if_dc seems to work fine. haven't pushed it though... > FYI, Does it respect any media settings from SRM? -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-freebsd-alpha@FreeBSD.ORG Fri Aug 12 22:37:17 2005 Return-Path: X-Original-To: freebsd-alpha@FreeBSD.org Delivered-To: freebsd-alpha@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0BB816A420; Fri, 12 Aug 2005 22:37:17 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19DE743D46; Fri, 12 Aug 2005 22:37:16 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from [192.168.4.250] (dhcp50.pn.xcllnt.net [192.168.4.250]) by ns1.xcllnt.net (8.13.4/8.13.4) with ESMTP id j7CMbGZV019742; Fri, 12 Aug 2005 15:37:16 -0700 (PDT) (envelope-from marcel@xcllnt.net) In-Reply-To: <200508120859.25404.jhb@FreeBSD.org> References: <200508041255.05839.jhb@FreeBSD.org> <200508111722.09584.jhb@FreeBSD.org> <200508120859.25404.jhb@FreeBSD.org> Mime-Version: 1.0 (Apple Message framework v733) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Marcel Moolenaar Date: Fri, 12 Aug 2005 15:37:14 -0700 To: John Baldwin X-Mailer: Apple Mail (2.733) Cc: freebsd-alpha@FreeBSD.org Subject: Re: Locking fixes for dc(4): please test! X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Aug 2005 22:37:17 -0000 On Aug 12, 2005, at 5:59 AM, John Baldwin wrote: >> With that, if_dc seems to work fine. haven't pushed it though... >> FYI, > > Does it respect any media settings from SRM? No. The media is always auto-select in FreeBSD, even when I change it to Twisted-Pair or BNC in SRM. Note that the particular I/F had no cable attached or was otherwise connected in anyway. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net