From owner-freebsd-alpha Sun Jul 15 1: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 F08D837B403 for ; Sun, 15 Jul 2001 01:38:13 -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 f6F8c1V84558; Sun, 15 Jul 2001 10:38:03 +0200 (CEST) Received: (from ticso@localhost) by mail.cicely.de (8.11.0/8.11.0) id f6F8cgX26039; Sun, 15 Jul 2001 10:38:42 +0200 (CEST) Date: Sun, 15 Jul 2001 10:38:41 +0200 From: Bernd Walter To: Martijn Pronk Cc: Wilko Bulte , alpha@FreeBSD.ORG Subject: Re: Hmm...another panic Message-ID: <20010715103841.C24200@cicely20.cicely.de> References: <20010714141641.B60188@freebie.xs4all.nl> 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 02:36:33PM +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 02:36:33PM +0200, Martijn Pronk wrote: > One Question: How can I interrupt the bootsequence from > a serial console before the FreeBSD boot loader kicks in? Press any key very early in the booting process. You need to do this before anything was printed from FreeBSD. -- 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 Sun Jul 15 7:11:47 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from anchor-post-32.mail.demon.net (anchor-post-32.mail.demon.net [194.217.242.90]) by hub.freebsd.org (Postfix) with ESMTP id 82B5337B401; Sun, 15 Jul 2001 07:11:35 -0700 (PDT) (envelope-from dfr@nlsystems.com) Received: from [62.49.251.130] (helo=herring.nlsystems.com) by anchor-post-32.mail.demon.net with esmtp (Exim 2.12 #1) id 15LmcP-000F68-0W; Sun, 15 Jul 2001 15:11:33 +0100 Received: from salmon.nlsystems.com (salmon [10.0.0.3]) by herring.nlsystems.com (8.11.2/8.11.2) with ESMTP id f6FEAI778992; Sun, 15 Jul 2001 15:10:18 +0100 (BST) (envelope-from dfr@nlsystems.com) Date: Sun, 15 Jul 2001 15:10:17 +0100 (BST) From: Doug Rabson To: Peter Wemm Cc: Matthew Jacob , John Baldwin , Subject: Re: pmap_emulate_reference() In-Reply-To: <20010714085805.D440538CC@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 On Sat, 14 Jul 2001, Peter Wemm wrote: > 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. Good point. This version (which I'm just testing now) deals with that and should even give more accurate reports from pmap_mincore(). Index: include/pmap.h =================================================================== RCS file: /home/ncvs/src/sys/alpha/include/pmap.h,v retrieving revision 1.11 diff -u -r1.11 pmap.h --- include/pmap.h 2000/09/23 12:18:05 1.11 +++ include/pmap.h 2001/07/15 12:39:13 @@ -165,15 +165,11 @@ TAILQ_HEAD(,pv_entry) pv_list; }; -#define PV_TABLE_MOD 0x01 /* modified */ -#define PV_TABLE_REF 0x02 /* referenced */ - struct pmap { pt_entry_t *pm_lev1; /* KVA of lev0map */ vm_object_t pm_pteobj; /* Container for pte's */ TAILQ_HEAD(,pv_entry) pm_pvlist; /* list of mappings in pmap */ int pm_count; /* reference count */ - int pm_flags; /* pmap flags */ u_int32_t pm_active; /* active cpus */ struct { u_int32_t asn:8; /* address space number */ Index: alpha/pmap.c =================================================================== RCS file: /home/ncvs/src/sys/alpha/alpha/pmap.c,v retrieving revision 1.60 diff -u -r1.60 pmap.c --- alpha/pmap.c 2001/07/05 17:27:50 1.60 +++ alpha/pmap.c 2001/07/15 12:48:30 @@ -1189,7 +1189,6 @@ int i; pmap->pm_lev1 = Lev1map; - pmap->pm_flags = 0; pmap->pm_count = 1; pmap->pm_ptphint = NULL; pmap->pm_active = 0; @@ -1239,7 +1238,6 @@ pmap->pm_lev1[PTLEV1I] = pmap_phys_to_pte(VM_PAGE_TO_PHYS(lev1pg)) | PG_V | PG_KRE | PG_KWE; - pmap->pm_flags = 0; pmap->pm_count = 1; pmap->pm_ptphint = NULL; pmap->pm_active = 0; @@ -2107,16 +2105,10 @@ newpte = pmap_phys_to_pte(pa) | pte_prot(pmap, prot) | PG_V | managed; if (managed) { - vm_page_t om; - /* * Set up referenced/modified emulation for the new mapping */ - om = PHYS_TO_VM_PAGE(pa); - if ((om->md.pv_flags & PV_TABLE_REF) == 0) - newpte |= PG_FOR | PG_FOW | PG_FOE; - else if ((om->md.pv_flags & PV_TABLE_MOD) == 0) - newpte |= PG_FOW; + newpte |= origpte & (PG_FOR | PG_FOW | PG_FOE); } if (wired) @@ -2745,16 +2737,32 @@ int pmap_ts_referenced(vm_page_t m) { + pv_entry_t pv; + pt_entry_t *pte; + int count; + if (!pmap_initialized || (m->flags & PG_FICTITIOUS)) return 0; - if (m->md.pv_flags & PV_TABLE_REF) { - pmap_changebit(m, PG_FOR|PG_FOE|PG_FOW, TRUE); - m->md.pv_flags &= ~PV_TABLE_REF; - return 1; + /* + * Loop over current mappings looking for any which have don't + * have PG_FOR set (i.e. ones where we have taken an emulate + * reference trap recently). + */ + count = 0; + for (pv = TAILQ_FIRST(&m->md.pv_list); + pv; + pv = TAILQ_NEXT(pv, pv_list)) { + pte = pmap_lev3pte(pv->pv_pmap, pv->pv_va); + + if (!(*pte & PG_FOR)) { + count++; + *pte |= PG_FOR | PG_FOE; + pmap_invalidate_page(pv->pv_pmap, pv->pv_va); + } } - return 0; + return count; } /* @@ -2766,11 +2774,25 @@ boolean_t pmap_is_modified(vm_page_t m) { + pv_entry_t pv; + pt_entry_t *pte; if (!pmap_initialized || (m->flags & PG_FICTITIOUS)) return FALSE; - return (m->md.pv_flags & PV_TABLE_MOD) != 0; + /* + * A page is modified if any mapping has had its PG_FOW flag + * cleared. + */ + for (pv = TAILQ_FIRST(&m->md.pv_list); + pv; + pv = TAILQ_NEXT(pv, pv_list)) { + pte = pmap_lev3pte(pv->pv_pmap, pv->pv_va); + if (!(*pte & PG_FOW)) + return 1; + } + + return 0; } /* @@ -2779,12 +2801,24 @@ void pmap_clear_modify(vm_page_t m) { + pv_entry_t pv; + pt_entry_t *pte; + if (!pmap_initialized || (m->flags & PG_FICTITIOUS)) return; - if (m->md.pv_flags & PV_TABLE_MOD) { - pmap_changebit(m, PG_FOW, TRUE); - m->md.pv_flags &= ~PV_TABLE_MOD; + /* + * Loop over current mappings setting PG_FOW where needed. + */ + for (pv = TAILQ_FIRST(&m->md.pv_list); + pv; + pv = TAILQ_NEXT(pv, pv_list)) { + pte = pmap_lev3pte(pv->pv_pmap, pv->pv_va); + + if (!(*pte & PG_FOW)) { + *pte |= PG_FOW; + pmap_invalidate_page(pv->pv_pmap, pv->pv_va); + } } } @@ -2809,12 +2843,24 @@ void pmap_clear_reference(vm_page_t m) { + pv_entry_t pv; + pt_entry_t *pte; + if (!pmap_initialized || (m->flags & PG_FICTITIOUS)) return; - if (m->md.pv_flags & PV_TABLE_REF) { - pmap_changebit(m, PG_FOR|PG_FOE|PG_FOW, TRUE); - m->md.pv_flags &= ~PV_TABLE_REF; + /* + * Loop over current mappings setting PG_FOR and PG_FOE where needed. + */ + for (pv = TAILQ_FIRST(&m->md.pv_list); + pv; + pv = TAILQ_NEXT(pv, pv_list)) { + pte = pmap_lev3pte(pv->pv_pmap, pv->pv_va); + + if (!(*pte & (PG_FOR | PG_FOE))) { + *pte |= (PG_FOR | PG_FOE); + pmap_invalidate_page(pv->pv_pmap, pv->pv_va); + } } } @@ -2829,7 +2875,6 @@ { pt_entry_t faultoff, *pte; vm_offset_t pa; - vm_page_t m; int user_addr; /* @@ -2883,36 +2928,14 @@ * (1) always mark page as used, and * (2) if it was a write fault, mark page as modified. */ - m = PHYS_TO_VM_PAGE(pa); - m->md.pv_flags |= PV_TABLE_REF; - faultoff = PG_FOR | PG_FOE; - - if (user_addr) { - mtx_lock(&Giant); - vm_page_flag_set(m, PG_REFERENCED); - mtx_unlock(&Giant); - } - if (write) { - m->md.pv_flags |= PV_TABLE_MOD; - vm_page_dirty(m); - faultoff |= PG_FOW; - } - pmap_changebit(m, faultoff, FALSE); - if ((*pte & faultoff) != 0) { -#if 1 - /* - * XXX dfr - don't think its possible in our pmap - */ - /* - * This is apparently normal. Why? -- cgd - * XXX because was being called on unmanaged pages? - */ - panic("warning: pmap_changebit didn't."); -#endif - *pte &= ~faultoff; - ALPHA_TBIS(v); + faultoff = PG_FOR | PG_FOE | PG_FOW; + } else { + faultoff = PG_FOR | PG_FOE; } + + *pte = (*pte & ~faultoff); + ALPHA_TBIS(v); } /* @@ -2975,7 +2998,6 @@ pmap_t pmap; vm_offset_t addr; { - pt_entry_t *pte; int val = 0; @@ -2999,7 +3021,7 @@ /* * Modified by us */ - if (m->md.pv_flags & PV_TABLE_MOD) + if ((*pte & PG_FOW) == 0) val |= MINCORE_MODIFIED|MINCORE_MODIFIED_OTHER; /* * Modified by someone @@ -3009,7 +3031,7 @@ /* * Referenced by us */ - if (m->md.pv_flags & PV_TABLE_REF) + if ((*pte & (PG_FOR | PG_FOE)) == 0) val |= MINCORE_REFERENCED|MINCORE_REFERENCED_OTHER; /* Index: alpha/trap.c =================================================================== RCS file: /home/ncvs/src/sys/alpha/alpha/trap.c,v retrieving revision 1.71 diff -u -r1.71 trap.c --- alpha/trap.c 2001/07/11 02:23:31 1.71 +++ alpha/trap.c 2001/07/15 11:57:12 @@ -434,11 +434,10 @@ case ALPHA_MMCSR_FOR: case ALPHA_MMCSR_FOE: case ALPHA_MMCSR_FOW: - { pmap_emulate_reference(p, a0, user, a1 == ALPHA_MMCSR_FOW); goto out; - } + case ALPHA_MMCSR_INVALTRANS: case ALPHA_MMCSR_ACCESS: { -- Doug Rabson Mail: dfr@nlsystems.com Phone: +44 20 8348 6160 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Jul 15 19:30:34 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id A98E737B401 for ; Sun, 15 Jul 2001 19:30:31 -0700 (PDT) (envelope-from daemon@mips.inka.de) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 15Ly9V-00036O-01; Mon, 16 Jul 2001 04:30:29 +0200 Received: (from daemon@localhost) by kemoauc.mips.inka.de (8.11.4/8.11.1) id f6G1v6382242 for freebsd-alpha@freebsd.org; Mon, 16 Jul 2001 03:57:06 +0200 (CEST) (envelope-from daemon) From: naddy@mips.inka.de (Christian Weisgerber) Subject: ports/devel/glib? Date: Mon, 16 Jul 2001 01:57:04 +0000 (UTC) Message-ID: <9ithlg$2g9o$1@kemoauc.mips.inka.de> Originator: naddy@mips.inka.de (Christian Weisgerber) To: freebsd-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 Does anybody successfully use on CURRENT/alpha any ports that depend on devel/glib12? Basically, what I'm seeing is that the usual autoconf build test, which checks whether linking against libglib works, simply hangs. I'll need to recheck the details, but IIRC it's something related to threads. -- Christian "naddy" Weisgerber naddy@mips.inka.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 16 13:47:36 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from maildrop.dub-t3-1.nwcgroup.com (maildrop.dub-t3-1.nwcgroup.com [195.129.80.17]) by hub.freebsd.org (Postfix) with ESMTP id 53E8237B401 for ; Mon, 16 Jul 2001 13:47:23 -0700 (PDT) (envelope-from customerservice@playnetwork.com) Received: from maildrop (localhost [127.0.0.1]) by maildrop.dub-t3-1.nwcgroup.com (Postfix) with ESMTP id 109BD46CE for ; Mon, 16 Jul 2001 21:47:23 +0100 (IST) Message-ID: <308708600.995316443066.JavaMail.nwdmail@maildrop> Date: Mon, 16 Jul 2001 20:47:23 +0000 (GMT+00:00) From: Reply-To: customerservice@playnetwork.com To: alpha@FreeBSD.org Subject: Save Up To 70% On Music For Your Business! Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_23835_477840632.995316443064" X-mailer: NewWorld Direct Java Mail Program X-uri: http://www.newworldcommerce.com X-Complaints: abuse@nwcgroup.com X-Bounce-Info: A0z9Ek~sb77Zcjz8.8RU~jjipFI~HJPuLA+7A+vW+OY~U3+Gb+xnhAy+n87+9FNd+19fCdYeF~lI~jmaQA+ETb+f2+OP~DeVN~i7Gc+ckH~M3aY~uorc+mrXm Return-Errors-To: customerservice@playnetwork.com X-Errors-To: customerservice@playnetwork.com 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 Dear Are you currently playing the radio as your in-store music source? Are you tired of all the deejay chatter and endless advertising? OR, are you using a CD player - and find your customers and employees hear the same music over and over because you're too busy to change CDs or buy new ones? Are you uncertain about paying ASCAP, BMI, or SESAC music licensing fees? Introducing PlayNetwork Online, a monthly subscription service that resolves all your business music issues. http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNGEIGDGLOYJCHGDFHJhO Best of all it's available to you at an affordable monthly fee. If you'd like to learn more about this exciting new music service, please click on the link below for information regarding the benefits of professionally programmed music and details on our special introductory offer. Add life to your business with music. PlayNetwork Online. Imagine music your way. http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNGEIGDGLOYJCHGDFHJhO Click here to configure your eMail preference: http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNGEIGDGLOYJCHGDFHJXb Click here to unsubscribe: http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNGEIGDGLOYJCHGDFHJfN The following text is for MIME compliant client programs. ------=_Part_23835_477840632.995316443064 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Description: Plain Text mail part Dear Are you currently playing the radio as your in-store music source? Are you tired of all the deejay chatter and endless advertising? OR, are you using a CD player - and find your customers and employees hear the same music over and over because you're too busy to change CDs or buy new ones? Are you uncertain about paying ASCAP, BMI, or SESAC music licensing fees? Introducing PlayNetwork Online, a monthly subscription service that resolves all your business music issues. http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNGEIGDGLOYJCHGDFHJhO Best of all it's available to you at an affordable monthly fee. If you'd like to learn more about this exciting new music service, please click on the link below for information regarding the benefits of professionally programmed music and details on our special introductory offer. Add life to your business with music. PlayNetwork Online. Imagine music your way. http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNGEIGDGLOYJCHGDFHJhO Click here to configure your eMail preference: http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNGEIGDGLOYJCHGDFHJXb Click here to unsubscribe: http://www.nwd42.com/s.asp?N=Zwm8Yq3701v~HNGEIGDGLOYJCHGDFHJfN ------=_Part_23835_477840632.995316443064 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Content-Description: HTML mail part - external links Welcome
=09 =09
=09 =09 =09=09 =09 =09<= td align=3Dleft width=3D"100%">
If you cannot read this eMail, please go to
http://www.nwd42.= com/s.asp?N=3DZwm8Yq3701v~HNGEIGDGLOYJCHGDFHJhO
=09=09=09 =09=09=09=20 =09=09=09 =09=09=09 =09=09=09
3D""
=09=09
Welcome= !
=09=09
FINALLY, AFFORDABLE MUSIC FOR YOUR BUSINESS!
3D""

3D""=
 
<= IMG SRC=3D"http://www.nwd42.com/offer/PlayNetwork/Images/banner5%2ejpg" BOR= DER=3D0 ALT=3D"">
&n= bsp;

Visit our web = site and subscribe today.
Add life to your business with music!
3D""
 
<= TR>
3D""
Or Call Us At 1-866-752-9321 For M= ore Information.
 
Call Me
eMail Us
3D""<= /TD>

=
SUBSCRIBE TODAY AND SAVE!
=09 =09=09 =09

=09 =09=09=20 =09=09=09 =09=09=09=09 =09=09=09 =09=09
=09 =09 =09 =09=09 =09=09=09 =09 =09=09=09 =09=09=09=09 =09=09=09 =09=09
=09=09Click he= re to configure your eMail preference:
http://www.nwd42.com/s.asp?N=3D= Zwm8Yq3701v~HNGEIGDGLOYJCHGDFHJXb
=09
=09=09=09=09=09 =09=09=09=09=09Click here to unsubscribe:
http://www.nwd42.com/s.asp?N=3DZwm8Yq3701v= ~HNGEIGDGLOYJCHGDFHJfN
=09=09=09=09
=09
------=_Part_23835_477840632.995316443064-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Jul 16 16:12: 4 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 D5FDA37B401 for ; Mon, 16 Jul 2001 16:12:00 -0700 (PDT) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id RAA68094; Mon, 16 Jul 2001 17:11:53 -0600 (MDT) (envelope-from ken) Date: Mon, 16 Jul 2001 17:11:52 -0600 From: "Kenneth D. Merry" To: Wilko Bulte Cc: Matthew Jacob , alpha@FreeBSD.ORG Subject: Re: dysfunctional XP1000, suggestions? Message-ID: <20010716171152.A68079@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> <20010709164302.B11661@panzer.kdm.org> <20010710193501.A872@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: <20010710193501.A872@freebie.xs4all.nl>; from wkb@freebie.xs4all.nl on Tue, Jul 10, 2001 at 07:35:01PM +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 19:35:01 +0200, Wilko Bulte wrote: > 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 :( FWIW, we just had a visit from a Compaq service guy. The machine was under parts warranty, not labor. So he gave us a new CPU board and I installed it. The new board works fine. :) 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 17 0: 1:16 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 6643637B401 for ; Tue, 17 Jul 2001 00:01:13 -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 JAA23086; Tue, 17 Jul 2001 09:01:04 +0200 (CEST) Received: (from wkb@localhost) by freebie.xs4all.nl (8.11.4/8.11.4) id f6H713Z04856; Tue, 17 Jul 2001 09:01:03 +0200 (CEST) (envelope-from wkb) Date: Tue, 17 Jul 2001 09:01:03 +0200 From: Wilko Bulte To: "Kenneth D. Merry" Cc: Matthew Jacob , alpha@FreeBSD.ORG Subject: Re: dysfunctional XP1000, suggestions? Message-ID: <20010717090103.A4763@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> <20010710193501.A872@freebie.xs4all.nl> <20010716171152.A68079@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: <20010716171152.A68079@panzer.kdm.org>; from ken@kdm.org on Mon, Jul 16, 2001 at 05:11:52PM -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 16, 2001 at 05:11:52PM -0600, Kenneth D. Merry wrote: > > > 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 :( > > FWIW, we just had a visit from a Compaq service guy. The machine was under > parts warranty, not labor. So he gave us a new CPU board and I installed > it. The new board works fine. :) Right.. dead cpu. Good that it works again :) -- | / 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 17 14:16: 8 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from switch2.switchpwr.com (switch1.switchpwr.com [12.14.48.19]) by hub.freebsd.org (Postfix) with ESMTP id EE0AB37B406 for ; Tue, 17 Jul 2001 14:16:05 -0700 (PDT) (envelope-from melk@switchpwr.com) Received: from switchpwr.com (switch1.switchpwr.com [12.14.48.19]) by switch2.switchpwr.com (8.11.0/8.11.0) with ESMTP id f6HLF3D18589 for ; Tue, 17 Jul 2001 17:15:03 -0400 (EDT) Message-ID: <3B54AB22.1B690122@switchpwr.com> Date: Tue, 17 Jul 2001 17:16:18 -0400 From: mel kravitz Organization: switching power inc X-Mailer: Mozilla 4.77 [en] (X11; U; FreeBSD 4.3-RELEASE alpha) X-Accept-Language: en MIME-Version: 1.0 To: alpha@freebsd.org Subject: make buildworld fails on current? 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 UP2000 machine cvsup sources today, release4.3, make bulildworld in /usr/src fails at:: /usr/src/usr.sbin/inetd/builtins.c: In function `ident_stream': /usr/src/usr.sbin/inetd/.builtins.c:storage size of `uc' isn't known *** Error code 1 -something i did wrong? -Mel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Jul 18 7:15: 8 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 5F5A337B403 for ; Wed, 18 Jul 2001 07:15:05 -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 f6IEF4S45108 for ; Wed, 18 Jul 2001 07:15:04 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Wed, 18 Jul 2001 07:15:04 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: alpha@FreeBSD.ORG Subject: too bad, release mostly worked for alpha... 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 I guess things got too big again: Making the regular boot floppy. Compressing doc files... *** Error code 1 (ignored) rm -rf /R/stage/mfsfd/stand/help/* sh -e /usr/src/release/scripts/doFS.sh -s mfsroot /R/stage /mnt 2880 /R/stage/mfsfd 8000 minimum2 Warning: Block size restricts cylinders per group to 6. Warning: 2432 sector(s) in last cylinder unallocated /dev/md11c: 5760 sectors in 2 cylinders of 1 tracks, 4096 sectors 2.8MB in 1 cyl groups (6 c/g, 12.00MB/g, 384 i/g) super-block backups (for fsck -b #) at: 32 cpio: write error: No space left on device *** Error code 1 Stop in /usr/src/release. *** Error code 1 Stop in /usr/src/release. Oh, well..... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Jul 18 7:54:24 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from mail.shorewood-epc.co.uk (mail.shorewood-epc.co.uk [195.10.240.17]) by hub.freebsd.org (Postfix) with ESMTP id 2F12B37B405 for ; Wed, 18 Jul 2001 07:54:20 -0700 (PDT) (envelope-from bsdalpha@epcdirect.co.uk) Received: (from root@localhost) by mail.shorewood-epc.co.uk (8.11.3/8.11.1) id f6IEs4r04864; Wed, 18 Jul 2001 15:54:04 +0100 (BST) (envelope-from bsdalpha@epcdirect.co.uk) Delivered-To: mjacob@feral.com Received: from lfarr (bka.shorewood-epc.co.uk [192.168.15.200]) by mail.shorewood-epc.co.uk (8.11.3/8.11.1av) with ESMTP id f6IEs0X04848; Wed, 18 Jul 2001 15:54:02 +0100 (BST) (envelope-from bsdalpha@epcdirect.co.uk) From: "Lawrence Farr" To: , Subject: RE: too bad, release mostly worked for alpha... Date: Wed, 18 Jul 2001 15:54:22 +0100 Message-ID: <001a01c10f99$89d81fe0$c80fa8c0@lfarr> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2462.0000 In-Reply-To: X-Virus-Scanned: by AMaViS perl-10 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, Don't know if this is a dumb answer, but I had the same (and reported it to -STABLE) On my automatic i386 builds. Had to remove the CPUTYPE from make.conf to get it to fit. -----Original Message----- From: owner-freebsd-alpha@FreeBSD.ORG [mailto:owner-freebsd-alpha@FreeBSD.ORG] On Behalf Of Matthew Jacob Sent: 18 July 2001 15:15 To: alpha@FreeBSD.ORG Subject: too bad, release mostly worked for alpha... I guess things got too big again: Making the regular boot floppy. Compressing doc files... *** Error code 1 (ignored) rm -rf /R/stage/mfsfd/stand/help/* sh -e /usr/src/release/scripts/doFS.sh -s mfsroot /R/stage /mnt 2880 /R/stage/mfsfd 8000 minimum2 Warning: Block size restricts cylinders per group to 6. Warning: 2432 sector(s) in last cylinder unallocated /dev/md11c: 5760 sectors in 2 cylinders of 1 tracks, 4096 sectors 2.8MB in 1 cyl groups (6 c/g, 12.00MB/g, 384 i/g) super-block backups (for fsck -b #) at: 32 cpio: write error: No space left on device *** Error code 1 Stop in /usr/src/release. *** Error code 1 Stop in /usr/src/release. Oh, well..... 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 Wed Jul 18 11: 5:46 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 F3B3437B401 for ; Wed, 18 Jul 2001 11:05:42 -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 f6II5cS47814; Wed, 18 Jul 2001 11:05:38 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Wed, 18 Jul 2001 11:05:38 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: Lawrence Farr Cc: alpha@freebsd.org Subject: RE: too bad, release mostly worked for alpha... In-Reply-To: <001a01c10f99$89d81fe0$c80fa8c0@lfarr> 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 Wierd. On Wed, 18 Jul 2001, Lawrence Farr wrote: > Matthew, > > Don't know if this is a dumb answer, but I had the same (and reported it > to -STABLE) > On my automatic i386 builds. Had to remove the CPUTYPE from make.conf to > get it to fit. > > -----Original Message----- > From: owner-freebsd-alpha@FreeBSD.ORG > [mailto:owner-freebsd-alpha@FreeBSD.ORG] On Behalf Of Matthew Jacob > Sent: 18 July 2001 15:15 > To: alpha@FreeBSD.ORG > Subject: too bad, release mostly worked for alpha... > > > > I guess things got too big again: > > Making the regular boot floppy. > Compressing doc files... > *** Error code 1 (ignored) > rm -rf /R/stage/mfsfd/stand/help/* > sh -e /usr/src/release/scripts/doFS.sh -s mfsroot /R/stage /mnt > 2880 /R/stage/mfsfd 8000 minimum2 > Warning: Block size restricts cylinders per group to 6. > Warning: 2432 sector(s) in last cylinder unallocated > /dev/md11c: 5760 sectors in 2 cylinders of 1 tracks, 4096 sectors > 2.8MB in 1 cyl groups (6 c/g, 12.00MB/g, 384 i/g) > super-block backups (for fsck -b #) at: 32 > cpio: write error: No space left on device > *** Error code 1 > > Stop in /usr/src/release. > *** Error code 1 > > Stop in /usr/src/release. > > > Oh, well..... > > > > 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 Wed Jul 18 13:18:46 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from visionplanner.com (visionplanner.com [128.121.231.75]) by hub.freebsd.org (Postfix) with ESMTP id 7A25D37B403 for ; Wed, 18 Jul 2001 13:18:27 -0700 (PDT) (envelope-from 87934@ic24.net) Received: from www.hhhsss.com ([208.131.80.180]) by visionplanner.com (8.11.2) id f6IKIMl60156 for ; Wed, 18 Jul 2001 14:18:23 -0600 (MDT) To: freebsd-alpha@freebsd.org Message-Id: <444p8hj16svq45c0n.qtcw5v4t78@www.hhhsss.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7BIT Date: Wed, 18 Jul 2001 21:01:25 +0000 Subject: our computers are the cheapest From: 87934@ic24.net 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 Branded PENTIUM Computer systems WITH Internet , only £195. Call with your fax number and we`ll gladly fax you details....0207 644 3404 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Jul 18 17:22:56 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 2EA5E37B405 for ; Wed, 18 Jul 2001 17:22:53 -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 f6J0MpS52933 for ; Wed, 18 Jul 2001 17:22:52 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Wed, 18 Jul 2001 17:22:51 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: alpha@FreeBSD.ORG Subject: multiple cpus on an 8200... 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 I got multiple CPUs to appear to be available on an 8200... 1. I had to fake past the 'processor available' bit- it wasn't set for the second CPU even though SRM said it was present and availabele... 2. I came up, and it released it: release_aps: releasing secondary CPUs SMP: AP CPU #9 Launched! and I got to a login prompt... but very strangely the system locks up briefly and then runs okay again. It's quite bizaare. One has to wonder whether or not there are some implicit assumptions in the code in places about CPUId. It also might in fact be an efficiency issue. We're using PAL calls for interprocessor interrupts. That *might* be less efficient than using some h/w specific mechanisms for IPIs. Oh- actually, now that I think about it- I might not have enabled IPIs for the CPUs, which means, heh, that IPIs might only be sampled. Yick... I'll go check... -matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Jul 18 21:33:44 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 C825F37B401 for ; Wed, 18 Jul 2001 21:33:39 -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 f6J4XZq68349; Wed, 18 Jul 2001 21:33:35 -0700 (PDT) (envelope-from jdp@wall.polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.11.3/8.11.0) id f6J4XYS23569; Wed, 18 Jul 2001 21:33:34 -0700 (PDT) (envelope-from jdp) Date: Wed, 18 Jul 2001 21:33:34 -0700 (PDT) Message-Id: <200107190433.f6J4XYS23569@vashon.polstra.com> To: alpha@freebsd.org From: John Polstra Cc: bsdalpha@epcdirect.co.uk Subject: Re: too bad, release mostly worked for alpha... In-Reply-To: <001a01c10f99$89d81fe0$c80fa8c0@lfarr> References: <001a01c10f99$89d81fe0$c80fa8c0@lfarr> 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 <001a01c10f99$89d81fe0$c80fa8c0@lfarr>, Lawrence Farr wrote: > > Don't know if this is a dumb answer, but I had the same (and reported it > to -STABLE) > On my automatic i386 builds. Had to remove the CPUTYPE from make.conf to > get it to fit. [...] > -----Original Message----- > I guess things got too big again: > > Making the regular boot floppy. > Compressing doc files... > *** Error code 1 (ignored) > rm -rf /R/stage/mfsfd/stand/help/* > sh -e /usr/src/release/scripts/doFS.sh -s mfsroot /R/stage /mnt > 2880 /R/stage/mfsfd 8000 minimum2 > Warning: Block size restricts cylinders per group to 6. > Warning: 2432 sector(s) in last cylinder unallocated > /dev/md11c: 5760 sectors in 2 cylinders of 1 tracks, 4096 sectors > 2.8MB in 1 cyl groups (6 c/g, 12.00MB/g, 384 i/g) > super-block backups (for fsck -b #) at: 32 > cpio: write error: No space left on device > *** Error code 1 I don't see how changing CPUTYPE in /etc/make.conf can make any difference for make release. As far as I can tell, /etc/make.conf is ignored for make release. That would make sense, since most of it takes place in a chroot environment from which /etc isn't even visible. I have CPUTYPE=ev56 in my /etc/make.conf, and I ran a make release a day or two ago. Mine also died because it wouldn't fit. Grepping the log of the whole thing, I find that -mcpu=ev56 essentially doesn't appear anywhere. What I do see is a lot of -mcpu=ev4. In my experience ev56 generates smaller code, because it takes advantage of the byte load/store instructions. 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 Thu Jul 19 3:35: 6 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from mail.electronicpage.co.uk (mail.electronicpage.co.uk [195.10.240.21]) by hub.freebsd.org (Postfix) with ESMTP id 2BAEC37B401 for ; Thu, 19 Jul 2001 03:35:00 -0700 (PDT) (envelope-from bsdalpha@epcdirect.co.uk) Received: (from root@localhost) by mail.electronicpage.co.uk (8.11.2/8.11.2) id f6JAYmr88054; Thu, 19 Jul 2001 11:34:48 +0100 (BST) (envelope-from bsdalpha@epcdirect.co.uk) Received: from lfarr (bka.electronicpage.co.uk [192.168.7.200]) by mail.electronicpage.co.uk (8.11.2/8.11.2av) with ESMTP id f6JAYk288046; Thu, 19 Jul 2001 11:34:47 +0100 (BST) (envelope-from bsdalpha@epcdirect.co.uk) From: "Lawrence Farr" To: "'John Polstra'" , Subject: RE: too bad, release mostly worked for alpha... Date: Thu, 19 Jul 2001 11:35:09 +0100 Message-ID: <000701c1103e$7c60cce0$c807a8c0@lfarr> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 In-Reply-To: <200107190433.f6J4XYS23569@vashon.polstra.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2462.0000 Importance: Normal X-Virus-Scanned: by AMaViS perl-10 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 So how come it works if I delete it, and fails if I put it back in on i386? (I've stuck my original email below) ---------------------------------------------------------------------- Hi, I make release automatically via a script, that has run happily for months. It empties /obj before it runs, and cvsups. For the last few nights, It has failed at the floppy building stage (Log extract below).=20 Checking with "df -h" gives: /dev/vnn0c 1.4M 1.4M -12.0K 101% /mnt=20 Is there a current problem with GENERIC being too big? Cheers! ------------------------------------------------------- rm -f hack.c sh ../../conf/newvers.sh BOOTMFS=20 cc -c -O -pipe -march=3Dpentiumpro -Wall -Wredundant-decls=20 -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes=20 -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi=20 -nostdinc -I- -I. -I../.. -I../../../include=20 -I../../contrib/ipfilter -D_KERNEL -include opt_global.h -elf =20 -mpreferred-stack-boundary=3D2 vers.c linking BOOTMFS text data bss dec hex filename 2502829 203104 132792 2838725 2b50c5 BOOTMFS install -c -m 555 -o root -g wheel -fschg BOOTMFS=20 /R/stage/kernels/BOOTMFS mv /R/stage/kernels/BOOTMFS /R/stage/image.kern/kernel Setting up /boot directory for kern floppy sh -e /usr/src/release/scripts/doFS.sh=20 /R/stage/floppies/kern.flp /R/stage /mnt 1440=20 /R/stage/image.kern 80000 fd1440 Warning: Block size restricts cylinders per group to 6. Warning: 1216 sector(s) in last cylinder unallocated /dev/rvnn0c: 2880 sectors in 1 cylinders of 1 tracks, 4096 sectors 1.4MB in 1 cyl groups (6 c/g, 12.00MB/g, 32 i/g) super-block backups (for fsck -b #) at: 32 *** Error code 1 Stop in /usr/src/release. *** Error code 1 Stop in /usr/src/release. *** Error code 1 Stop in /usr/src/release. -----Original Message----- From: owner-freebsd-alpha@FreeBSD.ORG=20 [mailto:owner-freebsd-alpha@FreeBSD.ORG] On Behalf Of John Polstra Sent: 19 July 2001 05:34 To: alpha@FreeBSD.ORG Cc: bsdalpha@epcdirect.co.uk Subject: Re: too bad, release mostly worked for alpha... In article <001a01c10f99$89d81fe0$c80fa8c0@lfarr>, Lawrence Farr wrote: >=20 > Don't know if this is a dumb answer, but I had the same (and reported=20 > it to -STABLE) On my automatic i386 builds. Had to remove the CPUTYPE=20 > from make.conf to get it to fit. [...] > -----Original Message----- > I guess things got too big again: >=20 > Making the regular boot floppy. > Compressing doc files... > *** Error code 1 (ignored) > rm -rf /R/stage/mfsfd/stand/help/* > sh -e /usr/src/release/scripts/doFS.sh -s mfsroot /R/stage /mnt > 2880 /R/stage/mfsfd 8000 minimum2 > Warning: Block size restricts cylinders per group to 6. > Warning: 2432 sector(s) in last cylinder unallocated > /dev/md11c: 5760 sectors in 2 cylinders of 1 tracks, 4096 sectors > 2.8MB in 1 cyl groups (6 c/g, 12.00MB/g, 384 i/g)=20 > super-block backups (for fsck -b #) at: 32 > cpio: write error: No space left on device > *** Error code 1 I don't see how changing CPUTYPE in /etc/make.conf can make any=20 difference for make release. As far as I can tell,=20 /etc/make.conf is ignored for make release. That would make=20 sense, since most of it takes place in a chroot environment=20 from which /etc isn't even visible. I have CPUTYPE=3Dev56 in my=20 /etc/make.conf, and I ran a make release a day or two ago. =20 Mine also died because it wouldn't fit. Grepping the log of=20 the whole thing, I find that -mcpu=3Dev56 essentially doesn't=20 appear anywhere. What I do see is a lot of -mcpu=3Dev4. In my experience ev56 generates smaller code, because it takes=20 advantage of the byte load/store instructions. John --=20 John Polstra =20 jdp@polstra.com John D. Polstra & Co., Inc. Seattle,=20 Washington USA "Disappointment is a good sign of basic intelligence." --=20 Ch=F6gyam Trungpa 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 Thu Jul 19 8:25:11 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from mail.disney.com (mail.disney.com [204.128.192.15]) by hub.freebsd.org (Postfix) with ESMTP id 506B337B407 for ; Thu, 19 Jul 2001 08:25:09 -0700 (PDT) (envelope-from Jim.Pirzyk@disney.com) Received: from pain10.corp.disney.com (root@pain10.corp.disney.com [153.7.110.100]) by mail.disney.com (Switch-2.0.1/Switch-2.0.1) with SMTP id f6JFOMI24295 for ; Thu, 19 Jul 2001 08:24:22 -0700 (PDT) Received: from [172.30.50.1] by pain.corp.disney.com with ESMTP for freebsd-alpha@freebsd.org; Thu, 19 Jul 2001 08:26:03 -0700 Received: from plio.fan.fa.disney.com (plio.fan.fa.disney.com [153.7.118.2]) by pecos.fa.disney.com (8.11.3/8.11.3) with ESMTP id f6JFP7s26418 for ; Thu, 19 Jul 2001 08:25:07 -0700 (PDT) Received: from mercury.fan.fa.disney.com (mercury.fan.fa.disney.com [153.7.119.1]) by plio.fan.fa.disney.com (8.9.2/8.9.2) with ESMTP id IAA26124 for ; Thu, 19 Jul 2001 08:25:06 -0700 (PDT) (envelope-from Jim.Pirzyk@disney.com) Received: from snoopy.fan.fa.disney.com by mercury.fan.fa.disney.com for freebsd-alpha@freebsd.org; Thu, 19 Jul 2001 08:25:06 -0700 Content-Type: text/plain; charset="us-ascii" From: Jim Pirzyk Organization: Walt Disney Feature Animation To: freebsd-alpha@freebsd.org Subject: compiling linux kernel module errors Date: Thu, 19 Jul 2001 08:25:06 -0700 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <01071908250602.07804@snoopy> 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 So I am trying to compile -CURRENT's linux module and I get these errors on the alpha: cc -O -pipe -mcpu=ev4 -D_KERNEL -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -DKLD_MODULE -nostdinc -I- -I. -I@ -I@/dev -I@/../include -I/usr/include -mno-fp-regs -Wa,-mev56 -c /auto/fanhome-n1/home/Jim.Pirzyk/tmp/freebsd/src/sys/modules/linux/../../compat/linux/linux_file.c In file included from @/sys/mutex.h:44, from /auto/fanhome-n1/home/Jim.Pirzyk/tmp/freebsd/src/sys/modules/linux/../../compat/linux/linux_file.c:43: machine/globals.h:35: global register variable follows a function definition machine/globals.h:35: warning: call-clobbered register used for global register variable *** Error code 1 Stop in /auto/fanhome-n1/home/Jim.Pirzyk/tmp/freebsd/src/sys/modules/linux. Any ideas? - JimP -- --- @(#) $Id: dot.signature,v 1.10 2001/05/17 23:38:49 Jim.Pirzyk Exp $ __o Jim.Pirzyk@disney.com ------------- pirzyk@freebsd.org _'\<,_ Senior Systems Engineer, Walt Disney Feature Animation (*)/ (*) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 19 11:59:58 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from pike.osd.bsdi.com (pike.osd.bsdi.com [204.216.28.222]) by hub.freebsd.org (Postfix) with ESMTP id 1838D37B405 for ; Thu, 19 Jul 2001 11:59:50 -0700 (PDT) (envelope-from jhb@foo.osd.bsdi.com) Received: from foo.osd.bsdi.com (root@foo.osd.bsdi.com [204.216.28.137]) by pike.osd.bsdi.com (8.11.3/8.9.3) with ESMTP id f6JIxjF65594; Thu, 19 Jul 2001 11:59:45 -0700 (PDT) (envelope-from jhb@foo.osd.bsdi.com) Received: (from jhb@localhost) by foo.osd.bsdi.com (8.11.1/8.11.1) id f6JIxil42122; Thu, 19 Jul 2001 11:59:44 -0700 (PDT) (envelope-from jhb) 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: Thu, 19 Jul 2001 11:59:43 -0700 (PDT) From: John Baldwin To: Matthew Jacob Subject: RE: multiple cpus on an 8200... Cc: 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 19-Jul-01 Matthew Jacob wrote: > > I got multiple CPUs to appear to be available on an 8200... > > 1. I had to fake past the 'processor available' bit- it wasn't set for the > second CPU even though SRM said it was present and availabele... Yuck. > 2. I came up, and it released it: > > release_aps: releasing secondary CPUs > SMP: AP CPU #9 Launched! > > and I got to a login prompt... but very strangely the system locks up briefly > and then runs okay again. It's quite bizaare. One has to wonder whether or > not > there are some implicit assumptions in the code in places about CPUId. > > It also might in fact be an efficiency issue. We're using PAL calls for > interprocessor interrupts. That *might* be less efficient than using some h/w > specific mechanisms for IPIs. Oh- actually, now that I think about it- I > might > not have enabled IPIs for the CPUs, which means, heh, that IPIs might only be > sampled. Yick... I'll go check... If IPI's are sampled, then that would explain the hang, as the vm system uses rendezvous to invalidate mappings, and in a rendezvous we wait for all CPU's to ack the rendezvous before performing the action and returning. I assume you mean enabling IPI's in a hardware specific sense in SRM or some such? > -matt -- 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 From owner-freebsd-alpha Thu Jul 19 12:11: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 65D8137B403; Thu, 19 Jul 2001 12:11:18 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from wonky.feral.com (mjacob@wonky.feral.com [192.67.166.7]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6JJBIS67344; Thu, 19 Jul 2001 12:11:18 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Thu, 19 Jul 2001 12:11:10 -0700 (PDT) From: Matthew Jacob Reply-To: To: John Baldwin Cc: Subject: RE: multiple cpus on an 8200... In-Reply-To: Message-ID: <20010719120433.D50024-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 > > second CPU even though SRM said it was present and availabele... > > Yuck. > > > 2. I came up, and it released it: > > > > release_aps: releasing secondary CPUs > > SMP: AP CPU #9 Launched! > > > > and I got to a login prompt... but very strangely the system locks up briefly > > and then runs okay again. It's quite bizaare. One has to wonder whether or > > not > > there are some implicit assumptions in the code in places about CPUId. > > > > It also might in fact be an efficiency issue. We're using PAL calls for > > interprocessor interrupts. That *might* be less efficient than using some h/w > > specific mechanisms for IPIs. Oh- actually, now that I think about it- I > > might > > not have enabled IPIs for the CPUs, which means, heh, that IPIs might only be > > sampled. Yick... I'll go check... > > If IPI's are sampled, then that would explain the hang, as the vm system uses > rendezvous to invalidate mappings, and in a rendezvous we wait for all CPU's to > ack the rendezvous before performing the action and returning. I assume you > mean enabling IPI's in a hardware specific sense in SRM or some such? > No, actually there's a TLSB register bit for this: #define TLINTRMASK0 0x1100 /* C: Interrupt Mask Register CPU 0 */ #define TLINTRMASK1 0x1140 /* C: Interrupt Mask Register CPU 1 */ .... /* * CPU Interrupt Mask Register * * The PAL code reads this register for each CPU on a TLSB CPU board * to see what is or isn't enabled. */ #define TLINTRMASK_CONHALT 0x100 /* Enable ^P Halt */ #define TLINTRMASK_HALT 0x080 /* Enable Halt */ #define TLINTRMASK_CLOCK 0x040 /* Enable Clock Interrupts */ #define TLINTRMASK_XCALL 0x020 /* Enable Interprocessor Interrupts */ #define TLINTRMASK_IPL17 0x010 /* Enable IPL 17 Interrupts */ #define TLINTRMASK_IPL16 0x008 /* Enable IPL 16 Interrupts */ #define TLINTRMASK_IPL15 0x004 /* Enable IPL 15 Interrupts */ #define TLINTRMASK_IPL14 0x002 /* Enable IPL 14 Interrupts */ #define TLINTRMASK_DUART 0x001 /* Enable GBUS Duart0 Interrupts */ It turns out that the XCALL (IPI) is enabled on both CPUs on jules: TLINTRMASK0 1ff TLINTRMASK1 fe That is, CPU0 has ^P halt set, while CPU1 doesn't have GBUS zs interrupts set. Interestingly enough, both have clock interrupts enabled- I might try fixing that. It's wierd- I had left jules booting yesterday- I was able to log in and run everything up until a ps (see below), whereupon it hangs for a while. -matt --------------------------- ... ---------------------------------------------------------------------- You have new mail. jules# jules# jules# jules# jules# ls .bash_history .cshrc .history .login .be-ok .forward .klogin .profile jules# df Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/da0a 2965910 935498 1793140 34% / devfs 1 1 0 100% /dev procfs 8 8 0 100% /proc sun520:/export/home 41300003 2574027 38312976 6% /home evermeet:/space/distfiles 15352737 7577990 6546529 54% /usr/ports/distfiles evermeet:/space/devel/tstsys 15352737 7577990 6546529 54% /tstsys evermeet:/space/devel/src 15352737 7577990 6546529 54% /usr/src evermeet:/space/FreeBSD-CVS 15352737 7577990 6546529 54% /home/ncvs jules:/var/compile 2965910 935498 1793140 34% /tstsys/alpha/compile jules# sync jules# jules# jules# jules# ls .bash_history .cshrc .history .login .be-ok .forward .klogin .profile jules# ps ax ---------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 19 12:30:54 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from meow.osd.bsdi.com (meow.osd.bsdi.com [204.216.28.88]) by hub.freebsd.org (Postfix) with ESMTP id 6088537B401 for ; Thu, 19 Jul 2001 12:30:50 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from laptop.baldwin.cx (john@jhb-laptop.osd.bsdi.com [204.216.28.241]) by meow.osd.bsdi.com (8.11.4/8.11.2) with ESMTP id f6JJUhv33341; Thu, 19 Jul 2001 12:30:43 -0700 (PDT) (envelope-from jhb@FreeBSD.org) 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: <20010719120433.D50024-100000@wonky.feral.com> Date: Thu, 19 Jul 2001 12:30:52 -0700 (PDT) From: John Baldwin To: Matthew Jacob Subject: RE: multiple cpus on an 8200... Cc: 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 19-Jul-01 Matthew Jacob wrote: > No, actually there's a TLSB register bit for this: > >#define TLINTRMASK0 0x1100 /* C: Interrupt Mask Register CPU 0 */ >#define TLINTRMASK1 0x1140 /* C: Interrupt Mask Register CPU 1 */ > > .... > /* > * CPU Interrupt Mask Register > * > * The PAL code reads this register for each CPU on a TLSB CPU board > * to see what is or isn't enabled. > */ >#define TLINTRMASK_CONHALT 0x100 /* Enable ^P Halt */ >#define TLINTRMASK_HALT 0x080 /* Enable Halt */ >#define TLINTRMASK_CLOCK 0x040 /* Enable Clock Interrupts */ >#define TLINTRMASK_XCALL 0x020 /* Enable Interprocessor Interrupts */ >#define TLINTRMASK_IPL17 0x010 /* Enable IPL 17 Interrupts */ >#define TLINTRMASK_IPL16 0x008 /* Enable IPL 16 Interrupts */ >#define TLINTRMASK_IPL15 0x004 /* Enable IPL 15 Interrupts */ >#define TLINTRMASK_IPL14 0x002 /* Enable IPL 14 Interrupts */ >#define TLINTRMASK_DUART 0x001 /* Enable GBUS Duart0 Interrupts */ > > It turns out that the XCALL (IPI) is enabled on both CPUs on jules: > > TLINTRMASK0 1ff TLINTRMASK1 fe > > That is, CPU0 has ^P halt set, while CPU1 doesn't have GBUS zs interrupts > set. > > Interestingly enough, both have clock interrupts enabled- I might try fixing > that. No, please leave that on. Having the system broadcast clock interrupts is much nice than us having to IPI all the other CPU's when a clock interrupt comes in, and this is how all the other alpha SMP systems seem to be working (and is how the port assumes alpha SMP handles clock interrupts). > It's wierd- I had left jules booting yesterday- I was able to log in and run > everything up until a ps (see below), whereupon it hangs for a while. > > -matt Did it eventually unhang? -- 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 From owner-freebsd-alpha Thu Jul 19 12:33:30 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 E6F7937B406; Thu, 19 Jul 2001 12:33:28 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from wonky.feral.com (mjacob@wonky.feral.com [192.67.166.7]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6JJXSS67679; Thu, 19 Jul 2001 12:33:28 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Thu, 19 Jul 2001 12:33:20 -0700 (PDT) From: Matthew Jacob Reply-To: To: John Baldwin Cc: Subject: RE: multiple cpus on an 8200... In-Reply-To: Message-ID: <20010719123309.O50024-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 > > > It's wierd- I had left jules booting yesterday- I was able to log in and run > > everything up until a ps (see below), whereupon it hangs for a while. > > > > -matt > > Did it eventually unhang? Nope. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 19 12:54:23 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 7B93537B406 for ; Thu, 19 Jul 2001 12:54:20 -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 f6JJsHq74212; Thu, 19 Jul 2001 12:54:17 -0700 (PDT) (envelope-from jdp@wall.polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.11.3/8.11.0) id f6JJsFU27510; Thu, 19 Jul 2001 12:54:15 -0700 (PDT) (envelope-from jdp) Date: Thu, 19 Jul 2001 12:54:15 -0700 (PDT) Message-Id: <200107191954.f6JJsFU27510@vashon.polstra.com> To: alpha@freebsd.org From: John Polstra Cc: bsdalpha@epcdirect.co.uk Subject: Re: too bad, release mostly worked for alpha... In-Reply-To: <000701c1103e$7c60cce0$c807a8c0@lfarr> References: <000701c1103e$7c60cce0$c807a8c0@lfarr> 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 <000701c1103e$7c60cce0$c807a8c0@lfarr>, Lawrence Farr wrote: [Does CPUTYPE in /etc/make.conf affect make release?] > So how come it works if I delete it, and fails if I put it back in > on i386? I don't know. All I know is that on the Alpha, my CPUTYPE setting is not used in any of the commands executed by "make release". John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 19 13:54:20 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from meow.osd.bsdi.com (meow.osd.bsdi.com [204.216.28.88]) by hub.freebsd.org (Postfix) with ESMTP id 70F3237B406 for ; Thu, 19 Jul 2001 13:54:17 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from laptop.baldwin.cx (john@jhb-laptop.osd.bsdi.com [204.216.28.241]) by meow.osd.bsdi.com (8.11.4/8.11.2) with ESMTP id f6JKrMv35018; Thu, 19 Jul 2001 13:53:23 -0700 (PDT) (envelope-from jhb@FreeBSD.org) 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: <200107191954.f6JJsFU27510@vashon.polstra.com> Date: Thu, 19 Jul 2001 13:53:32 -0700 (PDT) From: John Baldwin To: John Polstra Subject: Re: too bad, release mostly worked for alpha... Cc: bsdalpha@epcdirect.co.uk, 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 19-Jul-01 John Polstra wrote: > In article <000701c1103e$7c60cce0$c807a8c0@lfarr>, > Lawrence Farr wrote: > > [Does CPUTYPE in /etc/make.conf affect make release?] It shouldn't. We build a new world in a "clean room" chroot that has a stock /etc/make.conf, so the final bits shouldn't care. >> So how come it works if I delete it, and fails if I put it back in >> on i386? > > I don't know. All I know is that on the Alpha, my CPUTYPE setting is > not used in any of the commands executed by "make release". > > John -- 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 From owner-freebsd-alpha Thu Jul 19 17:37:46 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from netau1.alcanet.com.au (ntp.alcanet.com.au [203.62.196.27]) by hub.freebsd.org (Postfix) with ESMTP id 448FC37B401 for ; Thu, 19 Jul 2001 17:37:37 -0700 (PDT) (envelope-from jeremyp@gsmx07.alcatel.com.au) Received: from mfg1.cim.alcatel.com.au (mfg1.cim.alcatel.com.au [139.188.23.1]) by netau1.alcanet.com.au (8.9.3 (PHNE_22672)/8.9.3) with ESMTP id KAA29469; Fri, 20 Jul 2001 10:37:19 +1000 (EST) Received: from gsmx07.alcatel.com.au by cim.alcatel.com.au (PMDF V5.2-32 #37645) with ESMTP id <01K65G3R0434VO0JLI@cim.alcatel.com.au>; Fri, 20 Jul 2001 10:37:23 +1000 Received: (from jeremyp@localhost) by gsmx07.alcatel.com.au (8.11.1/8.11.1) id f6K0bFF78296; Fri, 20 Jul 2001 10:37:15 +1000 (EST envelope-from jeremyp) Content-return: prohibited Date: Fri, 20 Jul 2001 10:37:15 +1000 From: Peter Jeremy Subject: Re: too bad, release mostly worked for alpha... In-reply-to: ; from mjacob@feral.com on Wed, Jul 18, 2001 at 07:15:04AM -0700 To: Matthew Jacob Cc: alpha@FreeBSD.ORG Mail-Followup-To: Matthew Jacob , alpha@FreeBSD.ORG Message-id: <20010720103715.K506@gsmx07.alcatel.com.au> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline User-Agent: Mutt/1.2.5i References: 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 2001-Jul-18 07:15:04 -0700, Matthew Jacob wrote: >I guess things got too big again: > >Making the regular boot floppy. >Compressing doc files... >*** Error code 1 (ignored) >rm -rf /R/stage/mfsfd/stand/help/* >sh -e /usr/src/release/scripts/doFS.sh -s mfsroot /R/stage /mnt 2880 >/R/stage/mfsfd 8000 minimum2 >Warning: Block size restricts cylinders per group to 6. >Warning: 2432 sector(s) in last cylinder unallocated >/dev/md11c: 5760 sectors in 2 cylinders of 1 tracks, 4096 sectors > 2.8MB in 1 cyl groups (6 c/g, 12.00MB/g, 384 i/g) >super-block backups (for fsck -b #) at: > 32 >cpio: write error: No space left on device >*** Error code 1 This is probably because of the very generous (16 byte) code alignment that gcc enforces. If anyone wants a local solution to this problem, there are a set of patches in gnu/26083 that add a set of alignment contol options for the Alpha (mirroring what's available for i386). David O'Brien is unwilling to commit them for various reasons (which I accept) but this functionality exists in gcc-3. Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 19 17:47:52 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 7281F37B401 for ; Thu, 19 Jul 2001 17:47:49 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from wonky.feral.com (mjacob@wonky.feral.com [192.67.166.7]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f6K0lZS71872; Thu, 19 Jul 2001 17:47:36 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Thu, 19 Jul 2001 17:47:27 -0700 (PDT) From: Matthew Jacob Reply-To: To: Peter Jeremy Cc: Subject: Re: too bad, release mostly worked for alpha... In-Reply-To: <20010720103715.K506@gsmx07.alcatel.com.au> Message-ID: <20010719174638.Y50024-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 Fri, 20 Jul 2001, Peter Jeremy wrote: > On 2001-Jul-18 07:15:04 -0700, Matthew Jacob wrote: > >I guess things got too big again: > > > >Making the regular boot floppy. > >Compressing doc files... > >*** Error code 1 (ignored) > >rm -rf /R/stage/mfsfd/stand/help/* > >sh -e /usr/src/release/scripts/doFS.sh -s mfsroot /R/stage /mnt 2880 > >/R/stage/mfsfd 8000 minimum2 > >Warning: Block size restricts cylinders per group to 6. > >Warning: 2432 sector(s) in last cylinder unallocated > >/dev/md11c: 5760 sectors in 2 cylinders of 1 tracks, 4096 sectors > > 2.8MB in 1 cyl groups (6 c/g, 12.00MB/g, 384 i/g) > >super-block backups (for fsck -b #) at: > > 32 > >cpio: write error: No space left on device > >*** Error code 1 > > This is probably because of the very generous (16 byte) code alignment > that gcc enforces. If anyone wants a local solution to this problem, > there are a set of patches in gnu/26083 that add a set of alignment > contol options for the Alpha (mirroring what's available for i386). > David O'Brien is unwilling to commit them for various reasons (which I > accept) but this functionality exists in gcc-3. That's good to have around. I mostly was trying to run a release crank so there'd be a snapshot newer than several months old, but I guess this won't happen unless I skip floppy creation :-)... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 19 20:45: 2 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 3F97537B407 for ; Thu, 19 Jul 2001 20:45:00 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.3/8.11.1) id f6K3iT794375; Thu, 19 Jul 2001 20:44:29 -0700 (PDT) (envelope-from obrien) Date: Thu, 19 Jul 2001 20:44:29 -0700 From: "David O'Brien" To: Jim Pirzyk Cc: freebsd-alpha@freebsd.org Subject: Re: compiling linux kernel module errors Message-ID: <20010719204429.E94074@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <01071908250602.07804@snoopy> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <01071908250602.07804@snoopy>; from Jim.Pirzyk@disney.com on Thu, Jul 19, 2001 at 08:25:06AM -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 19, 2001 at 08:25:06AM -0700, Jim Pirzyk wrote: > So I am trying to compile -CURRENT's linux module and I get these > errors on the alpha: It built fine for me from sources of this (19th) morning. I am afraid to CVSup right now as I am working on a `make release' and if something has broken since this morning it would derail my effort. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 19 21:53:35 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from mail.matriplex.com (ns1.matriplex.com [208.131.42.8]) by hub.freebsd.org (Postfix) with ESMTP id 6A69937B405 for ; Thu, 19 Jul 2001 21:53:32 -0700 (PDT) (envelope-from rh@matriplex.com) Received: from mail.matriplex.com (mail.matriplex.com [208.131.42.9]) by mail.matriplex.com (8.9.2/8.9.2) with ESMTP id VAA49967 for ; Thu, 19 Jul 2001 21:53:22 -0700 (PDT) (envelope-from rh@matriplex.com) Date: Thu, 19 Jul 2001 21:53:22 -0700 (PDT) From: Richard Hodges To: freebsd-alpha@FreeBSD.ORG Subject: 4.3 GENERIC won't complete 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 I am just getting my feet wet with Alpha, and am having some trouble compiling a kernel from 4.3 release sources... At first, I thought maybe my custom configuration was missing something important, but I am not even able to compile GENERIC. Make depend does not complain, and make produces the kernel, but during the modules, it grinds to a halt right after agp: ... linking kernel text data bss dec hex filename 3625335 324872 174472 4124679 3ef007 kernel cd ../../modules && env MAKEOBJDIRPREFIX=/usr/src/sys/compile/GENERIC/modules make obj all ===> accf_data ===> accf_http ===> agp ===> aha ===> amr ===> an ... ===> wb ===> wx ===> xl ===> osf1 ===> accf_data [compile accf_data.c setdef0.c setdef1.c] ===> accf_http [compile accf_http.c setdef0.c setdef1.c] ===> agp @ -> /usr/src/sys ln: @/sys: File exists *** Error code 1 Stop in /usr/src/sys/modules/agp. *** Error code 1 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/src/sys/compile/GENERIC. I don't know a whole lot about the modules system, but it sure looks like it is trying to do the modules a second time. The clock seems to be running fine on this system, by the way. Any ideas? Thanks! -Richard ------------------------------------------- Richard Hodges | Matriplex, inc. Product Manager | 769 Basque Way rh@matriplex.com | Carson City, NV 89706 775-886-6477 | www.matriplex.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 19 22:29: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 B73BF37B406 for ; Thu, 19 Jul 2001 22:29:29 -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 f6K5T7S75379; Thu, 19 Jul 2001 22:29:11 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Thu, 19 Jul 2001 22:29:07 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: Richard Hodges Cc: freebsd-alpha@FreeBSD.ORG Subject: Re: 4.3 GENERIC won't complete 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 Is this a fresh 4.3 install or a buildworld/installworld system? This sure doesn't happen to me. You can get around this by not building modules by doing make -DNO_MODULES=1 On Thu, 19 Jul 2001, Richard Hodges wrote: > I am just getting my feet wet with Alpha, and am having some > trouble compiling a kernel from 4.3 release sources... > At first, I thought maybe my custom configuration was missing > something important, but I am not even able to compile GENERIC. > > Make depend does not complain, and make produces the kernel, > but during the modules, it grinds to a halt right after agp: > > ... > > linking kernel > text data bss dec hex filename > 3625335 324872 174472 4124679 3ef007 kernel > cd ../../modules && env > MAKEOBJDIRPREFIX=/usr/src/sys/compile/GENERIC/modules make obj all > ===> accf_data > ===> accf_http > ===> agp > ===> aha > ===> amr > ===> an > ... > ===> wb > ===> wx > ===> xl > ===> osf1 > ===> accf_data > [compile accf_data.c setdef0.c setdef1.c] > ===> accf_http > [compile accf_http.c setdef0.c setdef1.c] > ===> agp > @ -> /usr/src/sys > ln: @/sys: File exists > *** Error code 1 > > Stop in /usr/src/sys/modules/agp. > *** Error code 1 > > Stop in /usr/src/sys/modules. > *** Error code 1 > > Stop in /usr/src/sys/compile/GENERIC. > > I don't know a whole lot about the modules system, but it sure looks > like it is trying to do the modules a second time. The clock seems > to be running fine on this system, by the way. > > Any ideas? Thanks! > > -Richard > > ------------------------------------------- > Richard Hodges | Matriplex, inc. > Product Manager | 769 Basque Way > rh@matriplex.com | Carson City, NV 89706 > 775-886-6477 | www.matriplex.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 Thu Jul 19 22:37:49 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from mail.matriplex.com (ns1.matriplex.com [208.131.42.8]) by hub.freebsd.org (Postfix) with ESMTP id 4F1F537B408 for ; Thu, 19 Jul 2001 22:37:44 -0700 (PDT) (envelope-from rh@matriplex.com) Received: from mail.matriplex.com (mail.matriplex.com [208.131.42.9]) by mail.matriplex.com (8.9.2/8.9.2) with ESMTP id WAA50091; Thu, 19 Jul 2001 22:37:41 -0700 (PDT) (envelope-from rh@matriplex.com) Date: Thu, 19 Jul 2001 22:37:41 -0700 (PDT) From: Richard Hodges To: Matthew Jacob Cc: freebsd-alpha@FreeBSD.ORG Subject: Re: 4.3 GENERIC won't complete 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 Thu, 19 Jul 2001, Matthew Jacob wrote: > Is this a fresh 4.3 install or a buildworld/installworld system? This sure > doesn't happen to me. It is a clean 4.3 release from CDROM. > You can get around this by not building modules by doing > > make -DNO_MODULES=1 That's good to know, but it still goes through the modules twice, again choking on agp. I removed the symbolic link @ -> /usr/src/sys from the agp module directory, but then it choked on aha... Sigh. I get the feeling that if I quietly cleaned up those symbolic links manually, it would go on forever :-\ Thanks, -Richard > On Thu, 19 Jul 2001, Richard Hodges wrote: > > > I am just getting my feet wet with Alpha, and am having some > > trouble compiling a kernel from 4.3 release sources... > > At first, I thought maybe my custom configuration was missing > > something important, but I am not even able to compile GENERIC. > > > > Make depend does not complain, and make produces the kernel, > > but during the modules, it grinds to a halt right after agp: > > > > ... > > > > linking kernel > > text data bss dec hex filename > > 3625335 324872 174472 4124679 3ef007 kernel > > cd ../../modules && env > > MAKEOBJDIRPREFIX=/usr/src/sys/compile/GENERIC/modules make obj all > > ===> accf_data > > ===> accf_http > > ===> agp > > ===> aha > > ===> amr > > ===> an > > ... > > ===> wb > > ===> wx > > ===> xl > > ===> osf1 > > ===> accf_data > > [compile accf_data.c setdef0.c setdef1.c] > > ===> accf_http > > [compile accf_http.c setdef0.c setdef1.c] > > ===> agp > > @ -> /usr/src/sys > > ln: @/sys: File exists > > *** Error code 1 > > > > Stop in /usr/src/sys/modules/agp. > > *** Error code 1 > > > > Stop in /usr/src/sys/modules. > > *** Error code 1 > > > > Stop in /usr/src/sys/compile/GENERIC. > > > > I don't know a whole lot about the modules system, but it sure looks > > like it is trying to do the modules a second time. The clock seems > > to be running fine on this system, by the way. > > > > Any ideas? Thanks! > > > > -Richard > > > > ------------------------------------------- > > Richard Hodges | Matriplex, inc. > > Product Manager | 769 Basque Way > > rh@matriplex.com | Carson City, NV 89706 > > 775-886-6477 | www.matriplex.com > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-alpha" in the body of the message > > > ------------------------------------------- Richard Hodges | Matriplex, inc. Product Manager | 769 Basque Way rh@matriplex.com | Carson City, NV 89706 775-886-6477 | www.matriplex.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Jul 19 22:39:22 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 2C17F37B406 for ; Thu, 19 Jul 2001 22:39:17 -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 f6K5dES75539; Thu, 19 Jul 2001 22:39:14 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Thu, 19 Jul 2001 22:39:14 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: Richard Hodges Cc: freebsd-alpha@FreeBSD.ORG Subject: Re: 4.3 GENERIC won't complete 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 Well, you got me on this. I didn't see this behaviour. I is stumped. On Thu, 19 Jul 2001, Richard Hodges wrote: > On Thu, 19 Jul 2001, Matthew Jacob wrote: > > > Is this a fresh 4.3 install or a buildworld/installworld system? This sure > > doesn't happen to me. > > It is a clean 4.3 release from CDROM. > > > You can get around this by not building modules by doing > > > > make -DNO_MODULES=1 > > That's good to know, but it still goes through the modules twice, > again choking on agp. I removed the symbolic link @ -> /usr/src/sys > from the agp module directory, but then it choked on aha... Sigh. > I get the feeling that if I quietly cleaned up those symbolic links > manually, it would go on forever :-\ > > Thanks, > > -Richard > > > On Thu, 19 Jul 2001, Richard Hodges wrote: > > > > > I am just getting my feet wet with Alpha, and am having some > > > trouble compiling a kernel from 4.3 release sources... > > > At first, I thought maybe my custom configuration was missing > > > something important, but I am not even able to compile GENERIC. > > > > > > Make depend does not complain, and make produces the kernel, > > > but during the modules, it grinds to a halt right after agp: > > > > > > ... > > > > > > linking kernel > > > text data bss dec hex filename > > > 3625335 324872 174472 4124679 3ef007 kernel > > > cd ../../modules && env > > > MAKEOBJDIRPREFIX=/usr/src/sys/compile/GENERIC/modules make obj all > > > ===> accf_data > > > ===> accf_http > > > ===> agp > > > ===> aha > > > ===> amr > > > ===> an > > > ... > > > ===> wb > > > ===> wx > > > ===> xl > > > ===> osf1 > > > ===> accf_data > > > [compile accf_data.c setdef0.c setdef1.c] > > > ===> accf_http > > > [compile accf_http.c setdef0.c setdef1.c] > > > ===> agp > > > @ -> /usr/src/sys > > > ln: @/sys: File exists > > > *** Error code 1 > > > > > > Stop in /usr/src/sys/modules/agp. > > > *** Error code 1 > > > > > > Stop in /usr/src/sys/modules. > > > *** Error code 1 > > > > > > Stop in /usr/src/sys/compile/GENERIC. > > > > > > I don't know a whole lot about the modules system, but it sure looks > > > like it is trying to do the modules a second time. The clock seems > > > to be running fine on this system, by the way. > > > > > > Any ideas? Thanks! > > > > > > -Richard > > > > > > ------------------------------------------- > > > Richard Hodges | Matriplex, inc. > > > Product Manager | 769 Basque Way > > > rh@matriplex.com | Carson City, NV 89706 > > > 775-886-6477 | www.matriplex.com > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-alpha" in the body of the message > > > > > > > ------------------------------------------- > Richard Hodges | Matriplex, inc. > Product Manager | 769 Basque Way > rh@matriplex.com | Carson City, NV 89706 > 775-886-6477 | www.matriplex.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 20 0:54:48 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 9838F37B401 for ; Fri, 20 Jul 2001 00:54:44 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.3/8.11.1) id f6K7sRu02740; Fri, 20 Jul 2001 00:54:27 -0700 (PDT) (envelope-from obrien) Date: Fri, 20 Jul 2001 00:54:27 -0700 From: "David O'Brien" To: Richard Hodges Cc: Matthew Jacob , freebsd-alpha@FreeBSD.ORG Subject: Re: 4.3 GENERIC won't complete Message-ID: <20010720005427.A2701@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG 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 rh@matriplex.com on Thu, Jul 19, 2001 at 10:37:41PM -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 19, 2001 at 10:37:41PM -0700, Richard Hodges wrote: > That's good to know, but it still goes through the modules twice, > again choking on agp. That is normal -- once to make the "obj" directory for each module, and the 2nd time is the build (or depend) step. That linking you showed is very weird. I would: cd /usr/src/sys/compile rm -rf GENERIC cd /usr/src/sys/modules make cleandir make cleandir cd /usr/src/sys/alpha/conf config GENERIC cd ../../compile/GENERIC make depend make and see if you still have a problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 20 8:40:56 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from mail.disney.com (mail.disney.com [204.128.192.15]) by hub.freebsd.org (Postfix) with ESMTP id 0044137B407; Fri, 20 Jul 2001 08:40:52 -0700 (PDT) (envelope-from Jim.Pirzyk@disney.com) Received: from pain10.corp.disney.com (root@pain10.corp.disney.com [153.7.110.100]) by mail.disney.com (Switch-2.0.1/Switch-2.0.1) with SMTP id f6KFe6I23231; Fri, 20 Jul 2001 08:40:06 -0700 (PDT) Received: from [172.30.50.1] by pain.corp.disney.com with ESMTP; Fri, 20 Jul 2001 08:41:47 -0700 Received: from plio.fan.fa.disney.com (plio.fan.fa.disney.com [153.7.118.2]) by pecos.fa.disney.com (8.11.3/8.11.3) with ESMTP id f6KFeps04301; Fri, 20 Jul 2001 08:40:51 -0700 (PDT) Received: from mercury.fan.fa.disney.com (mercury.fan.fa.disney.com [153.7.119.1]) by plio.fan.fa.disney.com (8.9.2/8.9.2) with ESMTP id IAA06781; Fri, 20 Jul 2001 08:40:50 -0700 (PDT) (envelope-from Jim.Pirzyk@disney.com) Received: from snoopy.fan.fa.disney.com by mercury.fan.fa.disney.com; Fri, 20 Jul 2001 08:40:50 -0700 Content-Type: text/plain; charset="iso-8859-1" From: Jim Pirzyk Organization: Walt Disney Feature Animation To: "David O'Brien" Subject: Re: compiling linux kernel module errors Date: Fri, 20 Jul 2001 08:40:50 -0700 X-Mailer: KMail [version 1.2] Cc: freebsd-alpha@freebsd.org References: <01071908250602.07804@snoopy> <20010719204429.E94074@dragon.nuxi.com> In-Reply-To: <20010719204429.E94074@dragon.nuxi.com> MIME-Version: 1.0 Message-Id: <0107200840500E.07804@snoopy> 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 On Thursday 19 July 2001 08:44 pm, David O'Brien wrote: > On Thu, Jul 19, 2001 at 08:25:06AM -0700, Jim Pirzyk wrote: > > So I am trying to compile -CURRENT's linux module and I get these > > errors on the alpha: > > It built fine for me from sources of this (19th) morning. > I am afraid to CVSup right now as I am working on a `make release' and if > something has broken since this morning it would derail my effort. I am currently moving an alpha to -CURRENT (it was -RELEASE) so I think it may be that (since you had success). Thanks for the feedback and I will let you know if I solve this. - JimP -- --- @(#) $Id: dot.signature,v 1.10 2001/05/17 23:38:49 Jim.Pirzyk Exp $ __o Jim.Pirzyk@disney.com ------------- pirzyk@freebsd.org _'\<,_ Senior Systems Engineer, Walt Disney Feature Animation (*)/ (*) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 20 11:55:30 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from switch2.switchpwr.com (switch1.switchpwr.com [12.14.48.19]) by hub.freebsd.org (Postfix) with ESMTP id 638A137B405 for ; Fri, 20 Jul 2001 11:55:25 -0700 (PDT) (envelope-from melk@switchpwr.com) Received: from switchpwr.com (switch1.switchpwr.com [12.14.48.19]) by switch2.switchpwr.com (8.11.0/8.11.0) with ESMTP id f6KIsGD27341 for ; Fri, 20 Jul 2001 14:54:17 -0400 (EDT) Message-ID: <3B587E2D.52158FD5@switchpwr.com> Date: Fri, 20 Jul 2001 18:53:33 +0000 From: mel kravitz Organization: switching power inc X-Mailer: Mozilla 4.76 [en] (X11; U; NetBSD 1.5U alpha) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-alpha@freebsd.org Subject: [Fwd: netscape port fails to 'make install' after update to current?] Content-Type: multipart/mixed; boundary="------------0547343722CB5604819212F5" 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. --------------0547343722CB5604819212F5 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Is this an alpha problem or -current update breaking libs? --------------0547343722CB5604819212F5 Content-Type: message/rfc822 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Mozilla-Status2: 00000000 Message-ID: <3B58387E.A35D1437@switchpwr.com> Date: Fri, 20 Jul 2001 13:56:14 +0000 From: mel kravitz Organization: switching power inc X-Mailer: Mozilla 4.76 [en] (X11; U; NetBSD 1.5U alpha) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD-current@freebsd.org Subject: netscape port fails to 'make install' after update to current? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit After upgrading to -current from 4.3 on alpha, netscape dumps core, rebuilding port gives: 'make install' fails at: exception system: exiting due to internal error: out of memory trying to allocate exception system resources. What do i need to rebuild in ports directory first? -Mel --------------0547343722CB5604819212F5-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 20 13:47:41 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from mail.disney.com (mail.disney.com [204.128.192.15]) by hub.freebsd.org (Postfix) with ESMTP id 9FDBC37B405; Fri, 20 Jul 2001 13:47:27 -0700 (PDT) (envelope-from Jim.Pirzyk@disney.com) Received: from pain10.corp.disney.com (root@pain10.corp.disney.com [153.7.110.100]) by mail.disney.com (Switch-2.0.1/Switch-2.0.1) with SMTP id f6KKkeI29533; Fri, 20 Jul 2001 13:46:40 -0700 (PDT) Received: from [172.30.50.1] by pain.corp.disney.com with ESMTP; Fri, 20 Jul 2001 13:48:22 -0700 Received: from plio.fan.fa.disney.com (plio.fan.fa.disney.com [153.7.118.2]) by pecos.fa.disney.com (8.11.3/8.11.3) with ESMTP id f6KKlQs09122; Fri, 20 Jul 2001 13:47:26 -0700 (PDT) Received: from mercury.fan.fa.disney.com (mercury.fan.fa.disney.com [153.7.119.1]) by plio.fan.fa.disney.com (8.9.2/8.9.2) with ESMTP id NAA12798; Fri, 20 Jul 2001 13:47:25 -0700 (PDT) (envelope-from Jim.Pirzyk@disney.com) Received: from snoopy.fan.fa.disney.com by mercury.fan.fa.disney.com; Fri, 20 Jul 2001 13:47:25 -0700 Content-Type: text/plain; charset="iso-8859-1" From: Jim Pirzyk Organization: Walt Disney Feature Animation To: "David O'Brien" Subject: Re: compiling linux kernel module errors Date: Fri, 20 Jul 2001 13:47:25 -0700 X-Mailer: KMail [version 1.2] Cc: freebsd-alpha@freebsd.org References: <01071908250602.07804@snoopy> <20010719204429.E94074@dragon.nuxi.com> In-Reply-To: <20010719204429.E94074@dragon.nuxi.com> MIME-Version: 1.0 Message-Id: <0107201347250K.07804@snoopy> 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 On Thursday 19 July 2001 08:44 pm, David O'Brien wrote: > On Thu, Jul 19, 2001 at 08:25:06AM -0700, Jim Pirzyk wrote: > > So I am trying to compile -CURRENT's linux module and I get these > > errors on the alpha: > > It built fine for me from sources of this (19th) morning. > I am afraid to CVSup right now as I am working on a `make release' and if > something has broken since this morning it would derail my effort. The problem was that I was not running -CURRENT on the system, but I am now. Thanks - JimP -- --- @(#) $Id: dot.signature,v 1.10 2001/05/17 23:38:49 Jim.Pirzyk Exp $ __o Jim.Pirzyk@disney.com ------------- pirzyk@freebsd.org _'\<,_ Senior Systems Engineer, Walt Disney Feature Animation (*)/ (*) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Jul 20 17:30:18 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from smtp4ve.mailsrvcs.net (smtp4vepub.gte.net [206.46.170.25]) by hub.freebsd.org (Postfix) with ESMTP id 6F79337B405 for ; Fri, 20 Jul 2001 17:30:00 -0700 (PDT) (envelope-from info@wpi2001.com) Received: from wpi2001.com (client-141-150-248-226.delval.dialup.bellatlantic.net [141.150.248.226]) by smtp4ve.mailsrvcs.net (8.9.1/8.9.1) with SMTP id AAA55919975 for ; Sat, 21 Jul 2001 00:29:58 GMT Message-Id: <200107210029.AAA55919975@smtp4ve.mailsrvcs.net> From: "Washington Promotions International" To: Subject: Official America's Cup Jubilee Announcement Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Fri, 20 Jul 2001 20:29:07 -0400 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 WASHINGTON PROMOTIONS INTERNATIONAL HONORED BY THE AMERICA'S CUP JUBILEE 2001 The America's Cup Jubilee Governing Committee in Cowes, United Kingdom has selected Washington Promotions International as the official U.S.A. merchandise licensee for the 150th Anniversary of the America's Cup. Please visit this web site to see the array of clothing, compasses, barometers and other commemorative items. http://wpi2001.com/index2.html Individuals, yacht and sailing clubs, and corporations everywhere, currently have the opportunity to acquire special items with ACJ2001 logo. Additionally, you may also choose to add your own logo to these fine items. This is a once in a lifetime opportunity to celebrate an event of this caliber and prestige. Please post to your newsletter or bulletin board. If you have any questions contact: Vassil C. Yanco (281)292-9810 Office (281)292-9331 Fax E-mail: info@wpi2001.com Web Site: http://wpi2001.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message