From owner-freebsd-current Sun Mar 16 0:14:38 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EE9637B401; Sun, 16 Mar 2003 00:14:36 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BFAA43FA3; Sun, 16 Mar 2003 00:14:35 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h2G8EWO76711; Sun, 16 Mar 2003 03:14:32 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Sun, 16 Mar 2003 03:14:32 -0500 (EST) From: Jeff Roberson To: Morten Rodal Cc: Doug Barton , Attila Nagy , Subject: Re: kern/49079: panic: bwrite: buffer is not busy In-Reply-To: <20030316075920.GA5468@slurp.rodal.no> Message-ID: <20030316031330.O41845-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Based on this output from your gdb session it looks like the code in boot() did run and potentially alter this buffer. panic: bwrite: buffer is not busy??? panic messages: --- panic: bwrite: buffer is not busy??? cpuid = 1; lapic.id = 00000000 Stack backtrace: boot() called on cpu#1 Can you disable sync on panic? The buf must have been modified. That section of code is never entered with b_xflags == 0. The contents of the buf just dont make sense with the panic.. Cheers, Jeff On Sun, 16 Mar 2003, Morten Rodal wrote: > On Sun, Mar 16, 2003 at 02:46:13AM -0500, Jeff Roberson wrote: > > On Sat, 15 Mar 2003, Morten Rodal wrote: > > > > > On Fri, Mar 14, 2003 at 06:47:27PM +0100, Morten Rodal wrote: > > > [snip the parent post] > > > > > > I just got another one of these. This time it didn't double panic > > > while syncing the disks. I've been getting this quite often now, > > > almost daily. If there is anything else I can help you with to get to > > > the bottom of this problem don't hesitate to ask. > > > > > > Attached is a the gdb output and the backtrace from DDB. > > > > Excelent, can you open up the kernel in gdb again. Then do the following: > > > > frame 3 > > print bp > > > > With this information I should be able to find the problem. > > > > -- > Morten Rodal > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Mar 16 0:29:21 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E16837B404 for ; Sun, 16 Mar 2003 00:29:19 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD10643F85 for ; Sun, 16 Mar 2003 00:29:18 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.8/8.12.8) with ESMTP id h2G8TFDs004709; Sun, 16 Mar 2003 09:29:16 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: Bryan Liesner Cc: Shizuka Kudo , freebsd-current@FreeBSD.ORG Subject: Re: panic on boot (devfs_find) From: "Poul-Henning Kamp" In-Reply-To: Your message of "Sun, 16 Mar 2003 01:36:48 EST." <20030316012828.Q460@gravy.kishka.net> Date: Sun, 16 Mar 2003 09:29:15 +0100 Message-ID: <4708.1047803355@critter.freebsd.dk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20030316012828.Q460@gravy.kishka.net>, Bryan Liesner writes: >> >> > Revision 1.20 / (download) - annotate - [select for diffs], Mon Mar 10 23:41:41 2003 UTC (5 days, 5 hours ago) by phk >> > Branch: MAIN >> > CVS Tags: HEAD >> > Changes since 1.19: +5 -0 lines >> > Diff to previous 1.19 (colored) >> > >> > If we run out of consumers while orphaning them, and the provider's geom >> > is withering, destroy the provider when done. >> > >> > This was exposed by the recent change to geom_dev's orphaning logic >> >> If I reverted it back to a previous version (1.19) then the machine booted OK. >> >> BTW, I also found that adding INVARIANTS options into the kernel can prevent this problem as well. >> >> Regards, > >I have reverted back to rev 1.19 and all seems to be running OK. I >have /dev/null, /dev/stderr, /dev/apm, and /dev/mixer back. >When the faulty kernel _did_ boot (after about a million retries to >coax a core dump), these devices were missing at boot, or would >disappear shortly after. > >Thanks. >I think Poul-Henning will have enough information to go with now... You guys _way_ overestimate my abilities here. Right now I have a hard time imagining what geom's eventhandling for "withering" geoms can possibly have to do with any non-geom device node being present in /dev or not, and even more so how INVARIANTS could affect that. The only influence I can imagine is one of timing... I don't think I'll stand a chance on this one until I can reproduce it on one of my machines :-( One thing I'd like you to try is to remove any trace of USB from your systems. USB does some ugly VOP_REVOKES which I am not happy about, and I would like to exclude them from the list of suspects. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Mar 16 0:43:31 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3ED5737B404 for ; Sun, 16 Mar 2003 00:43:29 -0800 (PST) Received: from out003.verizon.net (out003pub.verizon.net [206.46.170.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0FEF43F75 for ; Sun, 16 Mar 2003 00:43:27 -0800 (PST) (envelope-from bleez@verizon.net) Received: from gravy.kishka.net ([151.197.249.111]) by out003.verizon.net (InterMail vM.5.01.05.27 201-253-122-126-127-20021220) with ESMTP id <20030316084327.JFUB3697.out003.verizon.net@gravy.kishka.net>; Sun, 16 Mar 2003 02:43:27 -0600 Received: from localhost (localhost [127.0.0.1]) by gravy.kishka.net (8.12.8/8.12.8) with ESMTP id h2G8hPtn028457; Sun, 16 Mar 2003 03:43:26 -0500 (EST) (envelope-from bleez@verizon.net) Date: Sun, 16 Mar 2003 03:43:25 -0500 (EST) From: Bryan Liesner X-X-Sender: root@gravy.kishka.net To: Poul-Henning Kamp Cc: Bryan Liesner , Shizuka Kudo , freebsd-current@FreeBSD.ORG Subject: Re: panic on boot (devfs_find) In-Reply-To: <4708.1047803355@critter.freebsd.dk> Message-ID: <20030316033553.Y8526@gravy.kishka.net> References: <4708.1047803355@critter.freebsd.dk> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Authentication-Info: Submitted using SMTP AUTH at out003.verizon.net from [151.197.249.111] at Sun, 16 Mar 2003 02:43:27 -0600 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 16 Mar 2003, Poul-Henning Kamp wrote: > >I think Poul-Henning will have enough information to go with now... > > You guys _way_ overestimate my abilities here. > > Right now I have a hard time imagining what geom's eventhandling > for "withering" geoms can possibly have to do with any non-geom > device node being present in /dev or not, and even more so how > INVARIANTS could affect that. > > The only influence I can imagine is one of timing... > > I don't think I'll stand a chance on this one until I can reproduce it > on one of my machines :-( > > One thing I'd like you to try is to remove any trace of USB from your > systems. USB does some ugly VOP_REVOKES which I am not happy about, and > I would like to exclude them from the list of suspects. > I'll try removing USB and report the results back to you. It's 3:30am here and I'm going to try to get some sleep. I'll do it sometime later today. Thanks. -- ========================================================== = Bryan D. Liesner LeezSoft Communications, Inc. = = A subsidiary of LeezSoft Inc. = = bleez@verizon.net Home of the Gipper = ========================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Mar 16 1:57:13 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93F9537B40A; Sun, 16 Mar 2003 01:57:11 -0800 (PST) Received: from MX2.estpak.ee (ld1.estpak.ee [194.126.101.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BDB543F85; Sun, 16 Mar 2003 01:57:09 -0800 (PST) (envelope-from kalts@estpak.ee) Received: from kevad.internal (80-235-37-144-dsl.mus.estpak.ee [80.235.37.144]) by MX2.estpak.ee (Postfix) with ESMTP id 25679734A6; Sun, 16 Mar 2003 11:46:39 +0200 (EET) Received: (from vallo@localhost) by kevad.internal (8.12.6/8.12.6/Submit) id h2G9ltX6000940; Sun, 16 Mar 2003 11:47:55 +0200 (EET) (envelope-from vallo) Date: Sun, 16 Mar 2003 11:47:54 +0200 From: Vallo Kallaste To: "Greg 'groggy' Lehey" Cc: Darryl Okahata , current@FreeBSD.org Subject: Re: Vinum R5 Message-ID: <20030316094754.GA821@kevad.internal> Reply-To: kalts@estpak.ee References: <200302202228.OAA03775@mina.soco.agilent.com> <20030221080046.GA1103@kevad.internal> <20030227012959.GA89235@wantadilla.lemis.com> <20030227095302.GA1183@kevad.internal> <20030301184310.GA631@kevad.internal> <20030314024602.GL77236@wantadilla.lemis.com> <20030314080528.GA1174@kevad.internal> <20030315013223.GC90698@wantadilla.lemis.com> <20030315083454.GA935@kevad.internal> <20030315225010.GJ92629@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030315225010.GJ92629@wantadilla.lemis.com> User-Agent: Mutt/1.5.1i-ja.1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Mar 16, 2003 at 09:20:10AM +1030, Greg 'groggy' Lehey wrote: > >>> Will it suffice to switch off power for one disk to simulate "more" > >>> real-world disk failure? Are there any hidden pitfalls for failing > >>> and restoring operation of non-hotswap disks? > >> > >> I don't think so. It was more thinking aloud than anything else. As > >> I said above, this is the way I tested things in the first place. > > > > Ok, I'll try to simulate the disk failure by switching off the > > power, then. > > I think you misunderstand. I simulated the disk failures by doing a > "stop -f". I can't see any way that the way they go down can > influence the revive integrity. I can see that powering down might > not do the disks any good. Sorry I didn't make it clear, I did understand everything you said, that you simulated disk failure via "stop -f". What I actually meant to say was that I was going to try it the other way (powering off) as well, to make sure there's no difference. I'll try to be more clear in the future, but sometimes English feels really difficult to elucidate the means of oneself. -- Vallo Kallaste To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Mar 16 2:50:41 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17C0C37B404 for ; Sun, 16 Mar 2003 02:50:36 -0800 (PST) Received: from spider.deepcore.dk (cpe.atm2-0-56339.0x50c6aa0a.abnxx2.customer.tele.dk [80.198.170.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DB4243F85 for ; Sun, 16 Mar 2003 02:50:33 -0800 (PST) (envelope-from sos@spider.deepcore.dk) Received: (from sos@localhost) by spider.deepcore.dk (8.12.8/8.12.8) id h2GAoVor048801; Sun, 16 Mar 2003 11:50:31 +0100 (CET) (envelope-from sos) From: Soeren Schmidt Message-Id: <200303161050.h2GAoVor048801@spider.deepcore.dk> Subject: Re: SiS5591(?) ATA In-Reply-To: To: der_julian@web.de Date: Sun, 16 Mar 2003 11:50:30 +0100 (CET) Cc: freebsd-current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL98b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It seems der_julian@web.de wrote: > On 15-Mar-2003 Soeren Schmidt wrote: > >> atapci0: port 0xff00-0xff0f at device 2.5 on > >> pci0 > >> ata0: at 0x1f0 irq 14 on atapci0 > >> ata1: at 0x170 irq 15 on atapci0 > >> ad0: DMA limited to UDMA33, non-ATA66 cable or device > >> ad0: 78533MB [159560/16/63] at ata0-master UDMA33 > >> ad1: DMA limited to UDMA33, non-ATA66 cable or device > >> ad1: 39266MB [79780/16/63] at ata0-slave UDMA33 > >> ata1-master: DMA limited to UDMA33, non-ATA66 cable or device > >> acd0: DVD-R at ata1-master UDMA33 > > ata0: at 0x1f0 irq 14 on atapci0 > ata1: at 0x170 irq 15 on atapci0 > ad0: DMA limited to UDMA33, non-ATA66 cable or device > ad0: 38166MB [77545/16/63] at ata0-master UDMA33 Could I have you both try this patch and mail me the entire output og dmesg with it applied ? (patch against a clean -current) Index: ata-chipset.c =================================================================== RCS file: /home/ncvs/src/sys/dev/ata/ata-chipset.c,v retrieving revision 1.14 diff -u -r1.14 ata-chipset.c --- ata-chipset.c 12 Mar 2003 15:45:52 -0000 1.14 +++ ata-chipset.c 16 Mar 2003 10:49:02 -0000 @@ -95,8 +95,8 @@ static void ata_sis_setmode(struct ata_device *, int); static int ata_mode2idx(int); static int ata_check_80pin(struct ata_device *, int); -static int ata_find_dev(device_t, u_int32_t, u_int32_t); -static struct ata_chip_id *ata_match_chip(device_t, struct ata_chip_id *); +static int ata_find_dev(device_t, u_int32_t, u_int32_t, int); +static struct ata_chip_id *ata_match_chip(device_t, struct ata_chip_id *, int); static int ata_default_interrupt(device_t); static void ata_pci_serialize(struct ata_channel *, int); @@ -171,7 +171,7 @@ { 0, 0, 0, 0, 0, 0}}; char buffer[64]; - if (!(idx = ata_match_chip(dev, ids))) + if (!(idx = ata_match_chip(dev, ids, pci_get_slot(dev)))) return ENXIO; sprintf(buffer, "%s %s controller", idx->text, ata_mode2str(idx->max_dma)); @@ -321,7 +321,7 @@ { 0, 0, 0, 0, 0, 0}}; char buffer[64]; - if (!(idx = ata_match_chip(dev, ids))) + if (!(idx = ata_match_chip(dev, ids, pci_get_slot(dev)))) return ENXIO; sprintf(buffer, "%s %s controller", idx->text, ata_mode2str(idx->max_dma)); @@ -428,7 +428,7 @@ { 0, 0, 0, 0, 0, 0}}; char buffer[64]; - if (!(idx = ata_match_chip(dev, ids))) + if (!(idx = ata_match_chip(dev, ids, pci_get_slot(dev)))) return ENXIO; sprintf(buffer, "%s %s controller", idx->text, ata_mode2str(idx->max_dma)); @@ -601,7 +601,7 @@ { 0, 0, 0, 0, 0, 0}}; char buffer[64]; - if (!(idx = ata_match_chip(dev, ids))) + if (!(idx = ata_match_chip(dev, ids, pci_get_slot(dev)))) return ENXIO; sprintf(buffer, "%s %s controller", idx->text, ata_mode2str(idx->max_dma)); @@ -768,7 +768,7 @@ { 0, 0, 0, 0, 0, 0}}; char buffer[64]; - if (!(idx = ata_match_chip(dev, ids))) + if (!(idx = ata_match_chip(dev, ids, pci_get_slot(dev)))) return ENXIO; sprintf(buffer, "%s %s controller", idx->text, ata_mode2str(idx->max_dma)); @@ -887,7 +887,7 @@ { 0, 0, 0, 0, 0, 0}}; char buffer[64]; - if (!(idx = ata_match_chip(dev, ids))) + if (!(idx = ata_match_chip(dev, ids, pci_get_slot(dev)))) return ENXIO; sprintf(buffer, "%s %s controller", idx->text, ata_mode2str(idx->max_dma)); @@ -944,7 +944,7 @@ char *desc, buffer[64]; uintptr_t devid = 0; - if (!(idx = ata_match_chip(dev, ids))) + if (!(idx = ata_match_chip(dev, ids, pci_get_slot(dev)))) return ENXIO; /* if we are on a SuperTrak SX6000 dont attach */ @@ -1188,7 +1188,7 @@ { 0, 0, 0, 0, 0, 0}}; char buffer[64]; - if (!(idx = ata_match_chip(dev, ids))) + if (!(idx = ata_match_chip(dev, ids, pci_get_slot(dev)))) return ENXIO; sprintf(buffer, "%s %s controller", idx->text, ata_mode2str(idx->max_dma)); @@ -1276,7 +1276,7 @@ { 0, 0, 0, 0, 0, 0}}; char buffer[64]; - if (!(idx = ata_match_chip(dev, ids))) + if (!(idx = ata_match_chip(dev, ids, pci_get_slot(dev)))) return ENXIO; sprintf(buffer, "%s %s controller", idx->text, ata_mode2str(idx->max_dma)); @@ -1489,9 +1489,9 @@ { ATA_SIS646, 0x00, SIS_SOUTH, 0, ATA_UDMA6, "SiS 645DX" },/* ext south */ { ATA_SIS645, 0x00, SIS_SOUTH, 0, ATA_UDMA6, "SiS 645" }, /* ext south */ { ATA_SIS640, 0x00, SIS_SOUTH, 0, ATA_UDMA4, "SiS 640" }, /* ext south */ - { ATA_SIS635, 0x00, SIS100NEW, 0, ATA_UDMA5, "SiS 635" }, /* unknown */ + { ATA_SIS635, 0x00, SIS100NEW, 0, ATA_UDMA5, "SiS 635" }, /* 1chip */ { ATA_SIS633, 0x00, SIS100NEW, 0, ATA_UDMA5, "SiS 633" }, /* unknown */ - { ATA_SIS630, 0x30, SIS100NEW, 0, ATA_UDMA5, "SiS 630S" }, /* 1chip */ + { ATA_SIS630, 0x30, SIS100OLD, 0, ATA_UDMA5, "SiS 630S" }, /* 1chip */ { ATA_SIS630, 0x00, SIS66, 0, ATA_UDMA4, "SiS 630" }, /* 1chip */ { ATA_SIS620, 0x00, SIS66, 0, ATA_UDMA4, "SiS 620" }, /* 1chip */ @@ -1501,7 +1501,7 @@ { 0, 0, 0, 0, 0, 0 }}; char buffer[64]; - if (!(idx = ata_match_chip(dev, ids))) + if (!(idx = ata_match_chip(dev, ids, -1))) return ENXIO; if (idx->cfg1 == SIS_SOUTH) { @@ -1511,7 +1511,7 @@ sprintf(buffer, "SiS 96X %s controller",ata_mode2str(idx->max_dma)); } else { - if (ata_find_dev(dev, ATA_SISSOUTH, 0x10)) + if (ata_find_dev(dev, ATA_SISSOUTH, 0x10, pci_get_slot(dev))) idx->cfg1 = SIS133OLD; else { idx->max_dma = ATA_UDMA5; @@ -1544,6 +1544,7 @@ break; case SIS100NEW: case SIS133OLD: +printf("0 reg 0x48=%02x\n", pci_read_config(dev, 0x48, 1)); pci_write_config(dev, 0x49, pci_read_config(dev, 0x49, 1) | 0x01, 1); break; case SIS133NEW: @@ -1576,6 +1577,7 @@ } } else { +printf("1 reg 0x48=%02x\n", pci_read_config(dev, 0x48, 1)); if (mode > ATA_UDMA2 && pci_read_config(parent, 0x48, 1) & atadev->channel->unit?0x20:0x10){ ata_prtdev(atadev, @@ -1659,7 +1661,7 @@ { 0, 0, 0, 0, 0, 0 }}; char buffer[64]; - if (!(idx = ata_match_chip(dev, ids))) + if (!(idx = ata_match_chip(dev, ids, pci_get_slot(dev)))) return ENXIO; sprintf(buffer, "%s %s controller", idx->text, ata_mode2str(idx->max_dma)); @@ -1808,16 +1810,16 @@ } static int -ata_find_dev(device_t dev, u_int32_t devid, u_int32_t revid) +ata_find_dev(device_t dev, u_int32_t devid, u_int32_t revid, int slot) { device_t *children; - int nchildren, i, slot = pci_get_slot(dev); + int nchildren, i; if (device_get_children(device_get_parent(dev), &children, &nchildren)) return 0; for (i = 0; i < nchildren; i++) { - if (pci_get_slot(children[i]) == slot && + if (((slot >= 0 && pci_get_slot(children[i]) == slot) || slot < 0) && pci_get_devid(children[i]) == devid && pci_get_revid(children[i]) >= revid) { free(children, M_TEMP); @@ -1829,10 +1831,10 @@ } static struct ata_chip_id * -ata_match_chip(device_t dev, struct ata_chip_id *index) +ata_match_chip(device_t dev, struct ata_chip_id *index, int slot) { while (index->chiptype != 0) { - if (ata_find_dev(dev, index->chiptype, index->chiprev)) + if (ata_find_dev(dev, index->chiptype, index->chiprev, slot)) return index; index++; } -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Mar 16 6:25:42 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D265C37B404 for ; Sun, 16 Mar 2003 06:25:40 -0800 (PST) Received: from pop018.verizon.net (pop018pub.verizon.net [206.46.170.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id 824A943F3F for ; Sun, 16 Mar 2003 06:25:39 -0800 (PST) (envelope-from bleez@verizon.net) Received: from gravy.kishka.net ([151.197.249.111]) by pop018.verizon.net (InterMail vM.5.01.05.27 201-253-122-126-127-20021220) with ESMTP id <20030316142538.OBRH6884.pop018.verizon.net@gravy.kishka.net>; Sun, 16 Mar 2003 08:25:38 -0600 Received: from localhost (localhost [127.0.0.1]) by gravy.kishka.net (8.12.8/8.12.8) with ESMTP id h2GEPb4t000486; Sun, 16 Mar 2003 09:25:37 -0500 (EST) (envelope-from bleez@verizon.net) Date: Sun, 16 Mar 2003 09:25:37 -0500 (EST) From: Bryan Liesner X-X-Sender: root@gravy.kishka.net To: Poul-Henning Kamp Cc: Bryan Liesner , Shizuka Kudo , freebsd-current@FreeBSD.ORG Subject: Re: panic on boot (devfs_find) In-Reply-To: <4708.1047803355@critter.freebsd.dk> Message-ID: <20030316092136.H483@gravy.kishka.net> References: <4708.1047803355@critter.freebsd.dk> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Authentication-Info: Submitted using SMTP AUTH at pop018.verizon.net from [151.197.249.111] at Sun, 16 Mar 2003 08:25:38 -0600 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 16 Mar 2003, Poul-Henning Kamp wrote: > > One thing I'd like you to try is to remove any trace of USB from your > systems. USB does some ugly VOP_REVOKES which I am not happy about, and > I would like to exclude them from the list of suspects. > You can remove USB from your list, I tried building without USB in the kernel, and the panic remains... If you need any more info from me, don't hesitate to ask. Thanks. -- ========================================================== = Bryan D. Liesner LeezSoft Communications, Inc. = = A subsidiary of LeezSoft Inc. = = bleez@verizon.net Home of the Gipper = ========================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Mar 16 6:59: 1 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58FB337B401 for ; Sun, 16 Mar 2003 06:58:57 -0800 (PST) Received: from gate.soum.co.jp (gate.soum.co.jp [202.221.40.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C088F43F93 for ; Sun, 16 Mar 2003 06:58:55 -0800 (PST) (envelope-from fujita@soum.co.jp) Received: from force.soum.co.jp (force.soum.co.jp [IPv6:3ffe:501:80a:1:a00:20ff:fef0:4c9c]) by gate.soum.co.jp (8.12.8/8.12.6) with ESMTP id h2GEwr62036792; Sun, 16 Mar 2003 23:58:54 +0900 (JST) (envelope-from fujita@soum.co.jp) Received: from vanilla.soum.co.jp (vanilla.soum.co.jp [3ffe:501:80a:1:202:b3ff:fe98:8115]) by force.soum.co.jp (8.11.6/3.7W-2001122804) with ESMTP id h2GEwox24525; Sun, 16 Mar 2003 23:58:50 +0900 (JST) Received: from localhost (localhost [::1]) by vanilla.soum.co.jp (Postfix) with ESMTP id C472D5498; Sun, 16 Mar 2003 23:58:49 +0900 (JST) Date: Sun, 16 Mar 2003 23:58:49 +0900 (JST) Message-Id: <20030316.235849.74750864.fujita@soum.co.jp> To: sos@spider.deepcore.dk Cc: der_julian@web.de, freebsd-current@FreeBSD.ORG Subject: Re: SiS5591(?) ATA From: FUJITA Kazutoshi In-Reply-To: <200303161050.h2GAoVor048801@spider.deepcore.dk> References: <200303161050.h2GAoVor048801@spider.deepcore.dk> X-PGP-PublicKey: http://www.soum.co.jp/~fujita/fujita-GnuPG-publickey.txt X-PGP-FingerPrint: 9956 2ECE 7E7D B425 EC2D D49E FEBB 3C5F 2C34 1ECA Organization: SOUM Corporation, JAPAN X-URL: http://www.soum.co.jp/ X-Mailer: Mew version 3.1 on Emacs 21.2 / Mule 5.0 =?iso-2022-jp?B?KBskQjgtTFobKEIvU0FLQUtJKQ==?= Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From: Soeren Schmidt Subject: Re: SiS5591(?) ATA Date: Sun, 16 Mar 2003 11:50:30 +0100 (CET) Message-ID: <200303161050.h2GAoVor048801@spider.deepcore.dk> > Could I have you both try this patch and mail me the entire output og > dmesg with it applied ? (patch against a clean -current) ata-chipset.c can't be compiled which applied your patch ;-) > Index: ata-chipset.c > @@ -1576,6 +1577,7 @@ > } > } > else { > +printf("1 reg 0x48=%02x\n", pci_read_config(dev, 0x48, 1)); => printf("1 reg 0x48=%02x\n", pci_read_config(parent, 0x48, 1)); so I modified like above by hand, and compile & install kernel. The full dmesg output is followings. Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT-20030314-JPSNAP #3: Sun Mar 16 23:32:29 JST 2003 root@faithia:/usr/src/sys/i386/compile/FAITHIA Preloaded elf kernel "/boot/kernel/kernel" at 0xc0802000. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc08020a8. Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 2000083012 Hz CPU: Intel(R) Pentium(R) 4 CPU 2.00GHz (2000.08-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf24 Stepping = 4 Features=0x3febf9ff real memory = 536805376 (511 MB) avail memory = 512778240 (489 MB) Allocating major#253 to "net" Allocating major#252 to "pci" Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard ACPI-0625: *** Info: GPE Block0 defined as GPE0 to GPE15 ACPI-0625: *** Info: GPE Block1 defined as GPE16 to GPE31 pcibios: BIOS version 2.10 Using $PIR table, 8 entries at 0xc00f7ae0 acpi0: power button is handled as a fixed feature programming model. Timecounter "ACPI-fast" frequency 3579545 Hz acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 acpi_cpu0: port 0x530-0x537 on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: mem 0xe0000000-0xe3ffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) isab0: at device 2.0 on pci0 isa0: on isab0 ohci0: mem 0xdfffe000-0xdfffefff irq 11 at device 2.2 on pci0 usb0: OHCI version 1.0, legacy support usb0: on ohci0 usb0: USB revision 1.0 uhub0: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 3 ports with 3 removable, self powered ohci1: mem 0xdffff000-0xdfffffff irq 5 at device 2.3 on pci0 usb1: OHCI version 1.0, legacy support usb1: on ohci1 usb1: USB revision 1.0 uhub1: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 3 ports with 3 removable, self powered atapci0: port 0xff00-0xff0f at device 2.5 on pci0 0 reg 0x48=08 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pcm0: port 0xd800-0xd87f,0xdc00-0xdcff irq 11 at device 2.7 on pci0 pcm0: sis0: port 0xd400-0xd4ff mem 0xdfff9000-0xdfff9fff irq 5 at device 3.0 on pci0 sis0: Ethernet address: 00:07:95:c0:de:e2 miibus0: on sis0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fwohci0: port 0xd000-0xd07f mem 0xdfff8800-0xdfff8fff irq 5 at device 9.0 on pci0 fwohci0: PCI bus latency was changing to 250. fwohci0: OHCI version 1.0 (ROM=1) fwohci0: No. of Isochronous channel is 8. fwohci0: EUI64 00:40:26:01:06:04:21:f1 fwohci0: Phy 1394a available S400, 3 ports. fwohci0: Link S400, max_rec 2048 bytes. firewire0: on fwohci0 if_fwe0: on firewire0 if_fwe0: Fake Ethernet address: 02:40:26:04:21:f1 sbp0: on firewire0 fwohci0: Initiate bus reset fwohci0: BUS reset fwohci0: node_id = 0xc800ffc0, CYCLEMASTER mode firewire0: 1 nodes, maxhop <= 0, cable IRM = 0 (me) em0: port 0xcc00-0xcc3f mem 0xdff80000-0xdff9ffff,0xdffa0000-0xdffbffff irq 11 at device 10.0 on pci0 em0: Speed:100 Mbps Duplex:Full fxp0: port 0xc800-0xc83f mem 0xdff40000-0xdff5ffff,0xdfff7000-0xdfff7fff irq 5 at device 11.0 on pci0 fxp0: Ethernet address 00:02:b3:a6:83:2d inphy0: on miibus1 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto acpi_button1: on acpi0 atkbdc0: port 0x64,0x60 irq 1 on acpi0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model IntelliMouse Explorer, device ID 4 fdc0: cmd 3 failed at out byte 1 of 3 sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A sio1 port 0x2f8-0x2ff irq 3 on acpi0 sio1: type 16550A ppc0 port 0x778-0x77b,0x378-0x37f irq 7 drq 3 on acpi0 ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/16 bytes threshold plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 fdc0: cmd 3 failed at out byte 1 of 3 orm0:
Generic Viagra is now available to consumers
As low as $2.25 per dose (50 mg)
No Doctor's Consutation required
"Silagra is as good as Viagra - just cheaper!"
Costs over 65% less than Brand Name
(Generic Sildenafil Citrate (Silagra)
and Viagra. both consist of 100 mg of
sildenafil citrate)
Private delivery to your home within 14 working days
of payment verification - FREE SHIPPING
100% Money Back Guarantee - The First
Pharmaceutical to ever be guaranteed.

Limited Time Offer: 19 pills for $119.00. Why pay twice as
much when Silagra is the same thing and is only a click away?


Hurry Offer Ends Soon!

Viagra is a trademark of the Pfizer, Inc.
and is not affiliated with Generic Viagra.
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 16:43:50 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CACE37B401 for ; Mon, 17 Mar 2003 16:43:49 -0800 (PST) Received: from smtp.us2.messagingengine.com (ny2.fastmail.fm [66.111.4.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75FA943F3F for ; Mon, 17 Mar 2003 16:43:48 -0800 (PST) (envelope-from freebsd@soith.com) Received: from www.fastmail.fm (server1.internal [10.202.2.132]) by fastmail.fm (Postfix) with ESMTP id ED1D81E308; Mon, 17 Mar 2003 19:43:44 -0500 (EST) Received: from 127.0.0.1 ([127.0.0.1] helo=www.fastmail.fm) by fastmail.fm with SMTP; Mon, 17 Mar 2003 19:43:44 -0500 Received: by www.fastmail.fm (Postfix, from userid 99) id 565162C5D2; Mon, 17 Mar 2003 19:43:44 -0500 (EST) Content-Disposition: inline Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="ISO-8859-1" MIME-Version: 1.0 X-Mailer: MIME::Lite 1.2 (F2.71; T1.001; A1.51; B2.12; Q2.03) From: "Aaron Wohl" To: current@FreeBSD.ORG Date: Mon, 17 Mar 2003 18:43:44 -0600 X-Epoch: 1047948224 X-Sasl-enc: xXS4Ie4FTxke1PSy8to2SQ Subject: pptp mpd under 5.0 Message-Id: <20030318004344.565162C5D2@www.fastmail.fm> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Im trying to run pptp under 5.0 -current. (first time with mpd so probably some config issue) I get these errors: mpd: pid 1102, version 3.13 (root@pasodoble.chessclub.com 09:35 17-Mar-2003) [pptp0] can't create socket node: No such file or directory mpd: local IP address for PPTP is 10.23.0.3 [pptp0] using interface [pptp1] can't create socket node: No such file or directory [pptp1] using interface I tried running mpd under truss to see what its trying to access... im guessing its missing a tun0 or ng0 or some such from /dev, whats the replacement for MAKDEV to mkae them? ... and I cant seem to get truss to run at all on any program... bash-2.05b# truss mpd truss: cannot open /proc/curproc/mem: No such file or directory truss: cannot open /proc/1107/mem: No such file or directory bash-2.05b# To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 16:53:20 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 537D737B401 for ; Mon, 17 Mar 2003 16:53:19 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6190D43F93 for ; Mon, 17 Mar 2003 16:53:18 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.8/8.12.8) with ESMTP id h2I0rHRv006638 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Mon, 17 Mar 2003 19:53:17 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h2I0rCx99121; Mon, 17 Mar 2003 19:53:12 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15990.28152.594563.16107@grasshopper.cs.duke.edu> Date: Mon, 17 Mar 2003 19:53:12 -0500 (EST) To: freebsd-current@freebsd.org Subject: nfs panic: lockmgr: locking against myself X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm seeing the following panic under heavy NFS client usage on an SMP w/kernel sources from Weds. evening. Has this been fixed? Thanks, Drew panic: lockmgr: locking against myself cpuid = 0; lapic.id = 00000000 Debugger("panic") Stopped at Debugger+0x55: xchgl %ebx,in_Debugger.0 db> t Debugger(c0355e8c,0,c0354b5c,d8e2793c,1) at Debugger+0x55 panic(c0354b5c,0,c0354b22,ef,c41d6400) at panic+0x11f lockmgr(ce6abce4,2090022,c470136c,c41d6400,26b) at lockmgr+0x491 BUF_TIMELOCK(ce6abc18,10022,c470136c,c035d2bf,0) at BUF_TIMELOCK+0x80 nfs_flush(c470136c,c443e480,1,c41d6400,1) at nfs_flush+0x607 nfs_fsync(d8e27a9c,0,c035a68f,45a,c1df8858) at nfs_fsync+0x31 vinvalbuf(c470136c,1,c443e480,c41d6400,0) at vinvalbuf+0xe4 nfs_vinvalbuf(c470136c,1,c443e480,c41d6400,1) at nfs_vinvalbuf+0x191 nfs_setattr(d8e27b60,20002,c41d6400,0,0) at nfs_setattr+0x1f5 setutimes(c41d6400,c470136c,d8e27ca8,2,0) at setutimes+0x1c4 kern_utimes(c41d6400,bfbff8e8,0,bfbfece0,0) at kern_utimes+0x9c utimes(c41d6400,d8e27d10,c03667a3,404,2) at utimes+0x31 syscall(2f,2f,2f,bfbff8e8,4) at syscall+0x24e Xint0x80_syscall() at Xint0x80_syscall+0x1d --- syscall (138, FreeBSD ELF32, utimes), eip = 0x8049e8f, esp = 0xbfbfecbc, ebp = 0xbfbfed08 --- db> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 16:54:16 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C309037B401 for ; Mon, 17 Mar 2003 16:54:14 -0800 (PST) Received: from postal2.es.net (postal2.es.net [198.128.3.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01C5943FBD for ; Mon, 17 Mar 2003 16:54:12 -0800 (PST) (envelope-from oberman@es.net) Received: from ptavv.es.net ([198.128.4.29]) by postal2.es.net (Postal Node 2) with ESMTP id MUA74016 for ; Mon, 17 Mar 2003 16:54:11 -0800 Received: from ptavv (localhost [127.0.0.1]) by ptavv.es.net (Tachyon Server) with ESMTP id B56FA5D09 for ; Mon, 17 Mar 2003 16:54:10 -0800 (PST) To: current@freebsd.org Subject: md(4) crashes in current Date: Mon, 17 Mar 2003 16:54:10 -0800 From: "Kevin Oberman" Message-Id: <20030318005410.B56FA5D09@ptavv.es.net> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG After configuring an md in current (as of last Friday), I will later panic. Unfortunately (or not), the kernel on this system was built without symbols, witness, invariants, or debugger. So I built a new kernel with all of those things and...no more panics. Makes debug a bit difficult. I then built a new kernel without debugging and tried again. The panics resumed. The ONLY differences in the kernels were symbols, witness, invariants,and debugger. I can get a dump and I'll try building a kernel with symbols but no WITNESS or INVARIANTS and see if that crashes. In the mean time, has anyone else seen this? % mdconfig -a -t vnode -f /D/file.iso -u 1 % Do some stuff which may or may not involve the md device. I normally mount the device and later dismount it, but I have had panics without doing anything else. Panics often come very soon after I de-configure the device. (mdconfig -d -u 1) I'll submit a PR if I can get enough information to put something that looks useful. R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 16:55:42 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CF3D37B401 for ; Mon, 17 Mar 2003 16:55:41 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42E6143F85 for ; Mon, 17 Mar 2003 16:55:41 -0800 (PST) (envelope-from mux@freebsd.org) Received: by elvis.mu.org (Postfix, from userid 1920) id 2E1A32ED414; Mon, 17 Mar 2003 16:55:41 -0800 (PST) Date: Tue, 18 Mar 2003 01:55:41 +0100 From: Maxime Henrion To: Andrew Gallatin Cc: freebsd-current@freebsd.org Subject: Re: nfs panic: lockmgr: locking against myself Message-ID: <20030318005541.GP3819@elvis.mu.org> References: <15990.28152.594563.16107@grasshopper.cs.duke.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <15990.28152.594563.16107@grasshopper.cs.duke.edu> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Andrew Gallatin wrote: > > I'm seeing the following panic under heavy NFS client usage on an SMP > w/kernel sources from Weds. evening. Has this been fixed? If I'm not mistaken, this is the problem Jeff fixed in revision 1.134 of vfs_cluster.c. Cheers, Maxime To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 17: 0: 6 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48E8837B401 for ; Mon, 17 Mar 2003 17:00:05 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40C3243FD7 for ; Mon, 17 Mar 2003 17:00:04 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h2I103P72003; Mon, 17 Mar 2003 20:00:03 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Mon, 17 Mar 2003 20:00:03 -0500 (EST) From: Jeff Roberson To: Andrew Gallatin Cc: freebsd-current@FreeBSD.ORG Subject: Re: nfs panic: lockmgr: locking against myself In-Reply-To: <15990.28152.594563.16107@grasshopper.cs.duke.edu> Message-ID: <20030317195946.W66343-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 17 Mar 2003, Andrew Gallatin wrote: > > I'm seeing the following panic under heavy NFS client usage on an SMP > w/kernel sources from Weds. evening. Has this been fixed? > > Thanks, > > Drew I believe that is fixed in nfs_vnops.c 1.200. > > panic: lockmgr: locking against myself > cpuid = 0; lapic.id = 00000000 > Debugger("panic") > Stopped at Debugger+0x55: xchgl %ebx,in_Debugger.0 > db> t > Debugger(c0355e8c,0,c0354b5c,d8e2793c,1) at Debugger+0x55 > panic(c0354b5c,0,c0354b22,ef,c41d6400) at panic+0x11f > lockmgr(ce6abce4,2090022,c470136c,c41d6400,26b) at lockmgr+0x491 > BUF_TIMELOCK(ce6abc18,10022,c470136c,c035d2bf,0) at BUF_TIMELOCK+0x80 > nfs_flush(c470136c,c443e480,1,c41d6400,1) at nfs_flush+0x607 > nfs_fsync(d8e27a9c,0,c035a68f,45a,c1df8858) at nfs_fsync+0x31 > vinvalbuf(c470136c,1,c443e480,c41d6400,0) at vinvalbuf+0xe4 > nfs_vinvalbuf(c470136c,1,c443e480,c41d6400,1) at nfs_vinvalbuf+0x191 > nfs_setattr(d8e27b60,20002,c41d6400,0,0) at nfs_setattr+0x1f5 > setutimes(c41d6400,c470136c,d8e27ca8,2,0) at setutimes+0x1c4 > kern_utimes(c41d6400,bfbff8e8,0,bfbfece0,0) at kern_utimes+0x9c > utimes(c41d6400,d8e27d10,c03667a3,404,2) at utimes+0x31 > syscall(2f,2f,2f,bfbff8e8,4) at syscall+0x24e > Xint0x80_syscall() at Xint0x80_syscall+0x1d > --- syscall (138, FreeBSD ELF32, utimes), eip = 0x8049e8f, esp = 0xbfbfecbc, ebp = 0xbfbfed08 --- > db> > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 17: 0:56 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EDF137B404; Mon, 17 Mar 2003 17:00:55 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id A489D43FA3; Mon, 17 Mar 2003 17:00:54 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.8/8.12.8) with ESMTP id h2I10sRv007211 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Mon, 17 Mar 2003 20:00:54 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h2I10nP99165; Mon, 17 Mar 2003 20:00:49 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15990.28609.109237.23198@grasshopper.cs.duke.edu> Date: Mon, 17 Mar 2003 20:00:49 -0500 (EST) To: Maxime Henrion Cc: freebsd-current@freebsd.org Subject: Re: nfs panic: lockmgr: locking against myself In-Reply-To: <20030318005541.GP3819@elvis.mu.org> References: <15990.28152.594563.16107@grasshopper.cs.duke.edu> <20030318005541.GP3819@elvis.mu.org> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Maxime Henrion writes: > Andrew Gallatin wrote: > > > > I'm seeing the following panic under heavy NFS client usage on an SMP > > w/kernel sources from Weds. evening. Has this been fixed? > > If I'm not mistaken, this is the problem Jeff fixed in revision 1.134 of > vfs_cluster.c. > Great! Thanks! Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 19: 4:13 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03FE737B401 for ; Mon, 17 Mar 2003 19:04:11 -0800 (PST) Received: from stork.mail.pas.earthlink.net (stork.mail.pas.earthlink.net [207.217.120.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0439343FA3 for ; Mon, 17 Mar 2003 19:04:10 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0217.cvx22-bradley.dialup.earthlink.net ([209.179.198.217] helo=mindspring.com) by stork.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18v7OK-0004nF-00; Mon, 17 Mar 2003 19:03:53 -0800 Message-ID: <3E768C47.229C1DF0@mindspring.com> Date: Mon, 17 Mar 2003 19:02:31 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: "Andrew P. Lentvorski, Jr." Cc: Steve Sizemore , Dan Nelson , current@FreeBSD.ORG Subject: Re: NFS file unlocking problem References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a4920a202babece4805683f0f86c97d45fa2d4e88014a4647c350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Andrew P. Lentvorski, Jr." wrote: > The dump doesn't seem to be attached. However, I note that the request > being sent is SETLKW which is a blocking wait until lock is granted. If > the server thinks the file is already locked, it will hang *and* that is > the proper behavior. It is, to ensure FIFO ordering of request grants. You could also implement this as a retry. If you do it the first way, you end up potentially deadlocking the server shen a single client has badly behaved code that locks against itself. If you do it the second way, you end up with timing dependent starvation deadlocks for individual client processes. Note that the first deadlock is normal -- it would happen if the file were local, as well... no help for badly written code -- but I mention it as important because we are talking about blocking multiple clients. I don't know what the process is, but a threaded process can cause a deadlock when it should be a grant/upgrade/downgrade of an existing lock overlap. This is because there is no such thing as a thread ID in the NFS protocol, and if process IDs are different for different threads, and the requests come from the same system ID, then you can get a deadlock when none should be present. To avoid this, either manage all locks in an "apartment" or "rental" model (queue all requests to a single thread, and have it do the locking by proxy) OR make sure that all requests from any thread in a given process in fact are given the same proxy process ID on the wire. [ ... This last is not likely your problem, but I mention it, in case you are using rfork() or Linux threads ... ] > What is the result of running this locally on the NFS server and > attempting to lock the underlying file? If rpc.lockd is hanging onto a > lock, running that perl script locally on the actual file (not an NFS > mounted image of it) should also hang. That was my next question, as well: does it happen on a local FS as well as an NFS FS? Personally, I would *NOT* recommend running it on the server, but mount a local FS on the client instead; the less variables, the better. On the other hand, this is clearly a deadlock that requires an existing, conflicting lock -- IFF the you are correct about the delayed locking behaviour. > As a side note, you probably want to create a C executable to do this kind > of fcntl fiddling when attempting to test NFS. That way you can use a > locally mounted binary and you won't wind up with all of the Perl access > calls on the NFS wire. Or, at least, use a local copy of Perl. I recommend a pared down test case. I suspect that the problem is that something that is expected to have the same ID is locking against itself. Does the failure occur with the same values in all cases in the F_RSETLKW? If so, I suggest you capture *all* locking packets on your wire, and then find who is conflicting. This may be a simple lock order reversal (deadly embrace deadlock) due to poor application performance. You may also find that you have multiple process IDs, when it should be a single process ID, for the proxy PID for the conflicting request. At worst, it would be nice to know the system that caused it. Actually, for a lock you know is threre, you *can* diagnose the problem (somewhat) by writing a program on the server, and using F_GETLK on the range for the hanging lock on the server -- this will return a struct flock, which will give you range and PID information. Do it on the Solaris box, though. The reason you want to do this on the Solaris box is that the struct flock on FreeBSD fails to include the l_rsysid -- the remote system ID. Actually, given this, I don't understand how FreeBSD server side proxy locking can actually work at all; it would incorrectly coelesce locks with local locks when the l_pid matched, which would be *all* locks in the lockd, and then incorrectly release them when a local process exited, or any process on any remote system unlocked an overlapping range (possibly in error). You are using FreeBSD as the NFS client in this case, right? If so, that's probably not an issue for you... -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 19:15: 0 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F011C37B401 for ; Mon, 17 Mar 2003 19:14:58 -0800 (PST) Received: from mail.westbend.net (ns1.westbend.net [216.47.253.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDB9E43FA3 for ; Mon, 17 Mar 2003 19:14:57 -0800 (PST) (envelope-from hetzels@westbend.net) Received: from ADMIN00 (WBIw005.westbend.net [216.47.253.25]) by mail.westbend.net (8.12.8/8.12.8) with SMTP id h2I3EhZZ086189; Mon, 17 Mar 2003 21:14:43 -0600 (CST) (envelope-from hetzels@westbend.net) Message-ID: <003c01c2ecfc$8667d2a0$19fd2fd8@westbend.net> From: "Scot Hetzel" To: "Aaron Wohl" , References: <20030318004344.565162C5D2@www.fastmail.fm> Subject: Re: pptp mpd under 5.0 Date: Mon, 17 Mar 2003 21:14:44 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-0.3 required=8.0 tests=QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_00_01, USER_AGENT_OE version=2.43 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From: "Aaron Wohl" > replacement for MAKDEV to mkae them? ... and I cant seem to get truss to > run at all on any program... > bash-2.05b# truss mpd > truss: cannot open /proc/curproc/mem: No such file or directory > truss: cannot open /proc/1107/mem: No such file or directory > bash-2.05b# > The procfs isn't mounted by default on 5-CURRENT, you will need to mount it before running truss. Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 19:43: 9 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D904737B401; Mon, 17 Mar 2003 19:43:03 -0800 (PST) Received: from bluejay.mail.pas.earthlink.net (bluejay.mail.pas.earthlink.net [207.217.120.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08E5B43F3F; Mon, 17 Mar 2003 19:43:03 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0217.cvx22-bradley.dialup.earthlink.net ([209.179.198.217] helo=mindspring.com) by bluejay.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18v806-0000xC-00; Mon, 17 Mar 2003 19:42:55 -0800 Message-ID: <3E76956E.5E0FCC6B@mindspring.com> Date: Mon, 17 Mar 2003 19:41:34 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Bakul Shah Cc: Julian Elischer , FreeBSD current users , fs@FreeBSD.ORG Subject: Re: Anyone working on fsck? References: <200303172126.QAA23205@thunderer.cnchost.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a41dbd95575530f85a57bab592527d699e350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bakul Shah wrote: > UFS is the real problem here, not fsck. Its tradeoffs for > improving normal access latencies may have been right in the > past but not for modern big disks. The seek time & RPM have > not improved very much in the past 20 years while disk > capacity has increased by a factor of about 20,000 (and GB/$ > even more). IMHO there is not much you can do at the fsck > level -- you stil have to visit all the cyl groups and what > not. Even a factor of 10 improvement in fsck means 36 > minutes which is far too long. Keeping track of 67M to 132M > blocks and (assuming avg file size of 8k to 16k) something > like 60M to 80M files takes quite a bit of time when you are > also seeking all over the disk. Sorry, but the track-to-track seek latency optimizations you are referring to are turned off, given the newfs defaults, and have been for a very long time. Please see revision 1.7 of /usr/src/sbin/newfs/newfs.c: revision 1.7 date: 1995/02/05 08:42:31; author: phk; state: Exp; lines: +13 -2 Basically, the problem is that for a BG fsck, it's not possible to lock access on a cylinder group basis, and then there is a hell of a lot of data on that drive. What Julian needs is a Journalling or Log-structured FS. Even that will not save him in some failure cases, unless the hardware has a CMOS data area that can be written with the failure cause, even if it's a double panic (must distinguish power failure from kernel panic, as kernel panics result from corrupt kernel data, which means you must check all files). > When you have about 67M (2^26) files, ideally you want to > *avoid* checking as many as you can. Given access times, you > are only going to be able to do a few hundred disk accesses > at most in a minute. So you are going to have only a few > files/dirs that may be inconsistent in case of a crash. Why > not keep track of that somehow? The BG fsck code specifically *only* checks the CG bitmap allocations. Basically, this means that anything that might be using the CG has to be checked to see if it references blocks in the bitmaps. The easiest way to do this is to provide some sort of domain control, so that you limit the files you have to check to a smaller set of files per CG, so that you don't have to check all the files to check a particular CG -- and then preload the CG's for the sets of files you *do* have to check. Another way of saying this is... don't put all your space in a single FS. 8-). The problem with having to (effectively) read every inode and direct block on the disk is really insurmountable, I think. There are some FS design changes that could be made to "fix" the issue, by partitioning CG's by locality, and then providing locality forward references as a seperate bitmap, and forcing files to stick to their locality until they can't, (basically, the AIX GFS PP and LP voume management trick), but that would require a layout change and an additional dependency insertion. Too bad the soft updates implementation isn't a generic graph dependency mechanism, with node/node dependency resolvers that get registered for edges, or you could do this easily (as well as implying edges between stacking layers, and exporting a transaction interface to user space). > Typically only a few cyl grps may be inconsistent in case of > a crash. May be some info about which cyl groups need to be > checked can be stored so that brute force checking of all > grps can be avoided. This would work well... under laboratory test conditions. In the field, if the machine has a more general workload (or even a heterogeneous workload, but with a hell of a lot of files, like a big mail server), this falls down, as the number of bits marking "unupdated cylinder groups" becomes large. ...AND... The problem is still that you must scan everything on the disk (practically) to identify the inode or indirect block that references the block on the cylinder roup in question, and THAT's the problem. If you knew a small set of CG's, that needed checked, vs. "all of them", it would *still* bust the cache, which is what takes all the time. Assume, on average, each file goes into indirect blocks. That's basically an N^3 algorithm to find a given block for a given CG; and the problem is the cache busting. Reducing this to N^2*M, where M < N, or even M << N, will not significantly speed up the process; e.g.: ,-------.***** |+++++++|***** * Where you miss |+++,--------. + Where you have to repeat `---| | ****| | ****| | ****`--------' ...So even if you pick your repetition area right (you could have accidently picked the big one instead of the small one, if the files were very large, or there was a very large number of small ones), you don't save a lot. > Typically a file will be stored in one or a small number of > cyl groups. If that info. is stored somewhere it can speed > things up. The problem is reverse mapping a bit in a CG bitmap to the file that reference it... 8^p. > Extant based allocation will reduce the number of indirect > blocks. But may be this is not such a big issue if most of > your files fit in a few blocks. Extents would save considerably, since you could target specific cylinger group bitmaps, cached in RAM, by section, for processing, and the amount of references you had to make to know if a given inode had an extent covering a region controlled by a given bitmap would be reduced. However, this would only be a win, if you knew, a priori, that you were storing mostly very big files. Even so, you are still scanning every inode on the system to get the extent list in order to get the CG intersection to verify a given bit. > Anyway, support for all of these have to be done in the > filesystem first before fsck can benefit. > > If instead you spend time "optimizing" just fsck, you will > likely make it far more complex (and potentially harder to > get right). Multithreading fsck would be an incredibly bad idea. Being able to control the locality of the search process is your primary means of controlling the amount of cache busting that can happen (see the "squares" diagram, above). The win you get, if any, has to come from preloading CG bitmaps into RAM, effectively, so that the process doesn't end up swapping. Multithreading this destroys your locality of reference. The 10 second delay in starting fack's on different FS's in fsck right now is probably well past time to be removed. The "-l" option would have been useful here, but it's been removed. If the disks are on the same spindle, you still destroy locality by seeking between regions while it's going. BTW: someone needs to update the man page, particularly the "SYNOPSIS". If this is a BG fsck on an FS, you might want to consider something like an "MADV_WIRE" argument to madvise(2), for the CG bitmaps in core, so that the pages don't end up being forced in and out of swap through normal cache effects. For this to work well, you would want to make it a root-only option, and to restrict its size to a fraction of physical memory. Personally, I recommend using a different FS, if you are going to create a honing big FS as a single partition. 8-(. -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 19:45:43 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2996E37B401; Mon, 17 Mar 2003 19:45:42 -0800 (PST) Received: from bluejay.mail.pas.earthlink.net (bluejay.mail.pas.earthlink.net [207.217.120.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 972EE43FA3; Mon, 17 Mar 2003 19:45:41 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0217.cvx22-bradley.dialup.earthlink.net ([209.179.198.217] helo=mindspring.com) by bluejay.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18v82l-0001Gd-00; Mon, 17 Mar 2003 19:45:40 -0800 Message-ID: <3E769614.B2BC8660@mindspring.com> Date: Mon, 17 Mar 2003 19:44:20 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Julian Elischer Cc: Bakul Shah , FreeBSD current users , fs@FreeBSD.ORG Subject: Re: Anyone working on fsck? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a43f68e6a0fb7949f1ec9797fa53012868350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Julian Elischer wrote: > The problem space is > > Fsck of UFS/FFS partitions is too slow for 200GB+ filesystems. > > The solution space can not contain any answer that includes redefining > UFS/FFS. Welcome to the real world. :-) "Use smaller than 200GB+ filesystems". 8-). -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 19:51: 0 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E391237B401; Mon, 17 Mar 2003 19:50:58 -0800 (PST) Received: from bluejay.mail.pas.earthlink.net (bluejay.mail.pas.earthlink.net [207.217.120.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 277A243F93; Mon, 17 Mar 2003 19:50:58 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0217.cvx22-bradley.dialup.earthlink.net ([209.179.198.217] helo=mindspring.com) by bluejay.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18v87h-0001xJ-00; Mon, 17 Mar 2003 19:50:46 -0800 Message-ID: <3E769745.FA122633@mindspring.com> Date: Mon, 17 Mar 2003 19:49:25 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Bakul Shah Cc: Poul-Henning Kamp , Julian Elischer , FreeBSD current users , fs@FreeBSD.ORG Subject: Re: Anyone working on fsck? References: <200303172205.RAA18117@goliath.cnchost.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a43f68e6a0fb7949f13380241dbafb9eb7350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bakul Shah wrote: > > I have been tending UNIX computers of all sorts for many years and > > there is one bit of wisdom that has yet to fail me: > > > > Every now and then, boot in single-user and run full fsck > > on all filesystems. > > > > If this had failed to be productive, I would have given up the > > habit years ago, but it is still a good idea it seems. > > Even now I use fsck in forground since the background fsck > was not stable enough the last time I used it. But I > remember thinking fsck was taking too long for as long as I > have used it (since 1981). If your problem is "availability", then any "time > 0" counts as "too long". Taking the whole system offline, while the rest of the world has gone into an electronic transaction frenzy because some world event, and running a BG fsck is not really an option. > Anything that runs for half hour or more in fg is likely to > take longer in bg. What happens if the system crashes again > before it finishes? Will bg fsck handle that? Am I right in > thinking that it can not save files in /lost+found? It can, but it has to be changed; it's pretty ugly. Your best bet is to precreate "lost+found", and then modify the code to allow you to ftruncate(2) a directory large, forcibly allocating backing blocks for it (that was my last workaround to the problem). > > Optimizing fsck is a valid project, I just wish it would be somebody > > who would also finish the last 30% who would do it. > > I am skeptical you will get more than a factor of 2 > improvement without changing the FS (but hey, that is 3 hours > for Julian so I am sure he will be happy with that!). I'm skeptical you will get a factor of 2. -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 20: 0:17 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1A7537B404; Mon, 17 Mar 2003 20:00:16 -0800 (PST) Received: from bluejay.mail.pas.earthlink.net (bluejay.mail.pas.earthlink.net [207.217.120.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF97143FB1; Mon, 17 Mar 2003 20:00:15 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0217.cvx22-bradley.dialup.earthlink.net ([209.179.198.217] helo=mindspring.com) by bluejay.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18v8Gg-00036q-00; Mon, 17 Mar 2003 20:00:03 -0800 Message-ID: <3E769970.3A05ECAF@mindspring.com> Date: Mon, 17 Mar 2003 19:58:40 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Jeff Roberson Cc: Brooks Davis , Julian Elischer , Alfred Perlstein , FreeBSD current users , fs@FreeBSD.ORG Subject: Re: Anyone working on fsck? References: <20030317172953.O66343-100000@mail.chesapeake.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a46deee49447c996d677be39db25741d92548b785378294e88350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jeff Roberson wrote: > On Mon, 17 Mar 2003, Brooks Davis wrote: > > I am still intrested in improvements to fsck since I'm planning to buy > > several systems with two 1.4TB IDE RAID5 arrays in them soon. > > For these types of systems doing a block caching layer with a prefetch > that understands how many spindles there are would be a huge benefit. I call that layer "Vinum" or "RAIDFrame", since that's a job I expect that code to do for me. 8-). -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 20: 2:46 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2CE937B401; Mon, 17 Mar 2003 20:02:44 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0309F43F3F; Mon, 17 Mar 2003 20:02:44 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h2I42c868107; Mon, 17 Mar 2003 23:02:39 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Mon, 17 Mar 2003 23:02:38 -0500 (EST) From: Jeff Roberson To: Terry Lambert Cc: Brooks Davis , Julian Elischer , Alfred Perlstein , FreeBSD current users , Subject: Re: Anyone working on fsck? In-Reply-To: <3E769970.3A05ECAF@mindspring.com> Message-ID: <20030317230147.I66343-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 17 Mar 2003, Terry Lambert wrote: > Jeff Roberson wrote: > > On Mon, 17 Mar 2003, Brooks Davis wrote: > > > I am still intrested in improvements to fsck since I'm planning to buy > > > several systems with two 1.4TB IDE RAID5 arrays in them soon. > > > > For these types of systems doing a block caching layer with a prefetch > > that understands how many spindles there are would be a huge benefit. > > I call that layer "Vinum" or "RAIDFrame", since that's a job I > expect that code to do for me. 8-). They are not responsible for data caching. Only informing the upper layers how many spindles they have. Software RAID should be a transform only in my opinion. There is no reason to have duplicate block caches in system memory. Cheers, Jeff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 20:33:55 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6CE137B401; Mon, 17 Mar 2003 20:33:53 -0800 (PST) Received: from bluejay.mail.pas.earthlink.net (bluejay.mail.pas.earthlink.net [207.217.120.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54A2C43F93; Mon, 17 Mar 2003 20:33:53 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0217.cvx22-bradley.dialup.earthlink.net ([209.179.198.217] helo=mindspring.com) by bluejay.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18v8nG-00073H-00; Mon, 17 Mar 2003 20:33:43 -0800 Message-ID: <3E76A151.320A1E12@mindspring.com> Date: Mon, 17 Mar 2003 20:32:17 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Jeff Roberson Cc: Brooks Davis , Julian Elischer , Alfred Perlstein , FreeBSD current users , fs@FreeBSD.ORG Subject: Re: Anyone working on fsck? References: <20030317230147.I66343-100000@mail.chesapeake.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a4797becd7d142051c76c6a303e25dd15f666fa475841a1c7a350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jeff Roberson wrote: > On Mon, 17 Mar 2003, Terry Lambert wrote: > > Jeff Roberson wrote: > > > On Mon, 17 Mar 2003, Brooks Davis wrote: > > > > I am still intrested in improvements to fsck since I'm planning to buy > > > > several systems with two 1.4TB IDE RAID5 arrays in them soon. > > > > > > For these types of systems doing a block caching layer with a prefetch > > > that understands how many spindles there are would be a huge benefit. > > > > I call that layer "Vinum" or "RAIDFrame", since that's a job I > > expect that code to do for me. 8-). > > They are not responsible for data caching. Only informing the upper > layers how many spindles they have. Software RAID should be a transform > only in my opinion. There is no reason to have duplicate block caches in > system memory. Let's turn that around: "There is no reason to have duplicate spindle knowledge". Actually, I was not suggesting duplicate block caches, I was suggesting cache attribution by spindle by the code that knows what block lives on what spindle. Even so, for RAID, this is generally problematic, because there's multiple locations for the block: where it lives, where it's mirrored, where it's parity block lives, etc.. Ideally, these are all different spindles, so the problem can't be fixed by a simple cache. 8-(. You would need a chain of spindle references, supplied by the code that knows the spindle, hung off the cache object. Gets ugly fast. -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 20:35:21 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B29237B401 for ; Mon, 17 Mar 2003 20:35:20 -0800 (PST) Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id 104A643FCB for ; Mon, 17 Mar 2003 20:35:19 -0800 (PST) (envelope-from ken@panzer.kdm.org) Received: from panzer.kdm.org (localhost [127.0.0.1]) by panzer.kdm.org (8.12.6/8.12.5) with ESMTP id h2I4ZI8U075391; Mon, 17 Mar 2003 21:35:18 -0700 (MST) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.12.6/8.12.5/Submit) id h2I4ZHGB075390; Mon, 17 Mar 2003 21:35:18 -0700 (MST) (envelope-from ken) Date: Mon, 17 Mar 2003 21:35:17 -0700 From: "Kenneth D. Merry" To: Jeff Roberson Cc: Terry Lambert , Brooks Davis , Julian Elischer , Alfred Perlstein , FreeBSD current users , fs@FreeBSD.ORG Subject: Re: Anyone working on fsck? Message-ID: <20030317213517.A75211@panzer.kdm.org> References: <3E769970.3A05ECAF@mindspring.com> <20030317230147.I66343-100000@mail.chesapeake.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030317230147.I66343-100000@mail.chesapeake.net>; from jroberson@chesapeake.net on Mon, Mar 17, 2003 at 11:02:38PM -0500 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Mar 17, 2003 at 23:02:38 -0500, Jeff Roberson wrote: > On Mon, 17 Mar 2003, Terry Lambert wrote: > > Jeff Roberson wrote: > > > On Mon, 17 Mar 2003, Brooks Davis wrote: > > > > I am still intrested in improvements to fsck since I'm planning to buy > > > > several systems with two 1.4TB IDE RAID5 arrays in them soon. > > > > > > For these types of systems doing a block caching layer with a prefetch > > > that understands how many spindles there are would be a huge benefit. > > > > I call that layer "Vinum" or "RAIDFrame", since that's a job I > > expect that code to do for me. 8-). > > They are not responsible for data caching. Only informing the upper > layers how many spindles they have. Software RAID should be a transform > only in my opinion. There is no reason to have duplicate block caches in > system memory. There are times when a software RAID layer should do some caching. Hopefully your software RAID layer will be integrated enough into the system that it can avoid doing any copies, though. The place where you really want some sort of caching is when you try to coalesce buffers to get full stripe writes with RAID-5. Otherwise, you have to do read-modify-write, which is more expensive. There are other cases where caching is needed for RAID-1 and RAID-5, but they generally require specialized hardware. (Hint: why do many controllers that support RAID-1 and RAID-5 have battery backed caches?) Other than stripe coalescing, and those cases that come up when you have specialized hardware, you're right, RAID should be a transform that doesn't require copying. (Caching is another story.) Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 20:59:54 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3F8D37B401; Mon, 17 Mar 2003 20:59:50 -0800 (PST) Received: from goliath.cnchost.com (goliath.cnchost.com [207.155.252.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CE2843F75; Mon, 17 Mar 2003 20:59:50 -0800 (PST) (envelope-from bakul@bitblocks.com) Received: from bitblocks.com (adsl-209-204-185-216.sonic.net [209.204.185.216]) by goliath.cnchost.com id XAA15021; Mon, 17 Mar 2003 23:59:46 -0500 (EST) [ConcentricHost SMTP Relay 1.15] Message-ID: <200303180459.XAA15021@goliath.cnchost.com> To: Terry Lambert Cc: Julian Elischer , FreeBSD current users , fs@FreeBSD.ORG Subject: Re: Anyone working on fsck? In-reply-to: Your message of "Mon, 17 Mar 2003 19:41:34 PST." <3E76956E.5E0FCC6B@mindspring.com> Date: Mon, 17 Mar 2003 20:59:45 -0800 From: Bakul Shah Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > UFS is the real problem here, not fsck. Its tradeoffs for > > improving normal access latencies may have been right in the > > past but not for modern big disks. ... > Sorry, but the track-to-track seek latency optimizations you > are referring to are turned off, given the newfs defaults, and > have been for a very long time. I was thinking of the basic idea of cylinder groups as good for normal load, not so good for fsck when you have too many CGs. I wasn't thinking of what fsck does or does not do. > Basically, the problem is that for a BG fsck, it's not possible > to lock access on a cylinder group basis, and then there is a hell > of a lot of data on that drive. Note that Julian said 6 hours to fsck a TB in the normal foreground mode. > What Julian needs is a Journalling or Log-structured FS. All that Julian wants is a faster fsck without mucking with the FS! While I agree with you that you do need a full consistency check, it is worth thinking about how one can avoid that whenever possible. For example, if you can know where the disk head is at the time of crash (based on what blocks were being written) it should be possible to avoid a full check. > The easiest way to do this is to provide some sort of domain > control, so that you limit the files you have to check to a > smaller set of files per CG, so that you don't have to check > all the files to check a particular CG -- and then preload the > CG's for the sets of files you *do* have to check. If you have to visit a CG (during fsck) you have already paid the cost of the seek and rotational latency. Journalling wouldn't help here if you still have a zillion CGs. > Another way of saying this is... don't put all your space in a > single FS. 8-). Or in effect treat each CG (or a group of CGs) as a self contained filesystem (for the purpose of physical allocation) and maintain explicit import/export lists for files that span them. > The problem with having to (effectively) read every inode and > direct block on the disk is really insurmountable, I think. That is why I was suggesting putting them in one (or small number of) contiguous area(s). On a modern ATA100 or better disk you can read a GB in under a minute. Once the data is in-core you can divide up the checking to multiple processors. This is sort of like a distributed graph collection: you only need to worry about graphs that cross a node boundary. Most structures wille contained in one node. Even for UFS it is probably worth dividing fsck in two or more processes, one doing IO, one or more doing computation. > > Typically only a few cyl grps may be inconsistent in case of > > a crash. May be some info about which cyl groups need to be > > checked can be stored so that brute force checking of all > > grps can be avoided. > > This would work well... under laboratory test conditions. In > the field, if the machine has a more general workload (or even > a heterogeneous workload, but with a hell of a lot of files, > like a big mail server), this falls down, as the number of bits > marking "unupdated cylinder groups" becomes large. Possible -- it is one of the ideas I can think of. I'd have to actually model it or simulate it beyond handwaving to know one way or other. May be useful in conjunction with other ideas. > ...AND... The problem is still that you must scan everything on > the disk (practically) to identify the inode or indirect block > that references the block on the cylinder roup in question, and > THAT's the problem. If you knew a small set of CG's, that needed > checked, vs. "all of them", it would *still* bust the cache, which > is what takes all the time. > Assume, on average, each file goes into indirect blocks. On my machine the average file size is 21KB (averaged over 4,000,000 files). Even with 8KB blocksize very few will have indirect blocks. I don't know how typical my file size distribution is but I suspect the average case is probably smaller files (I store lots of datasheets, manuals, databases, PDFs, MP3s, cvs repositories, compressed tars of old stuff). But in any case wouldn't going forward from inodes make more sense? This is like a standard tracing garbage collection algorithm. Blocks that are not reachable are free. Even for a 1 TB system with 8K blocks you need 2^(40-13-3) == 16Mbytes bitmap or some multiple if you want more than 1 bit of state. > The problem is reverse mapping a bit in a CG bitmap to the file > that reference it... 8^p. Why would you want to do that?! > Multithreading fsck would be an incredibly bad idea. It depends on the actual algorithm. > Personally, I recommend using a different FS, if you are going > to create a honing big FS as a single partition. 8-(. There are other issues with smaller partitions. I'd rather have a single logical file system where all the space can be used. If physically it is implemented as a number of smaller systems that is okay. Also note that now people can create big honking files with video streaming at the rate of 2GB per hour and even then you are compromising on quality a bit. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Mar 17 21:51: 8 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D13E37B401 for ; Mon, 17 Mar 2003 21:51:03 -0800 (PST) Received: from gate.soum.co.jp (gate.soum.co.jp [202.221.40.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0619C43FA3 for ; Mon, 17 Mar 2003 21:51:01 -0800 (PST) (envelope-from fujita@soum.co.jp) Received: from force.soum.co.jp (force.soum.co.jp [IPv6:3ffe:501:80a:1:a00:20ff:fef0:4c9c]) by gate.soum.co.jp (8.12.8/8.12.6) with ESMTP id h2I5ox62043591 for ; Tue, 18 Mar 2003 14:50:59 +0900 (JST) (envelope-from fujita@soum.co.jp) Received: from vanilla.soum.co.jp (vanilla.soum.co.jp [3ffe:501:80a:1:202:b3ff:fe98:8115]) by force.soum.co.jp (8.11.6/3.7W-2001122804) with ESMTP id h2I5owx25814; Tue, 18 Mar 2003 14:50:58 +0900 (JST) Received: from localhost (localhost [::1]) by vanilla.soum.co.jp (Postfix) with ESMTP id BD9F45498; Tue, 18 Mar 2003 14:50:57 +0900 (JST) Date: Tue, 18 Mar 2003 14:50:56 +0900 (JST) Message-Id: <20030318.145056.41881240.fujita@soum.co.jp> To: freebsd-current@FreeBSD.ORG Subject: ACPI suspend problem (ThinkPad X23) From: FUJITA Kazutoshi X-PGP-PublicKey: http://www.soum.co.jp/~fujita/fujita-GnuPG-publickey.txt X-PGP-FingerPrint: 9956 2ECE 7E7D B425 EC2D D49E FEBB 3C5F 2C34 1ECA Organization: SOUM Corporation, JAPAN X-URL: http://www.soum.co.jp/ X-Mailer: Mew version 3.1 on Emacs 21.2 / Mule 5.0 =?iso-2022-jp?B?KBskQjgtTFobKEIvU0FLQUtJKQ==?= Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Tue_Mar_18_14:50:56_2003_582)--" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----Next_Part(Tue_Mar_18_14:50:56_2003_582)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, My -CURRENT(2003/03/12) laptop(ThinkPad X23) can't be suspended. When I try # acpiconf -s 1 I have console message 'acpi0: AcpiGetSleepTypeData failed - AE_NOT_FOUND' How can I solve this? dmesg output is attached. Regards, ----Next_Part(Tue_Mar_18_14:50:56_2003_582)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dmesg.boot" Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT-20030312-JPSNAP #1: Tue Mar 18 01:26:29 JST 2003 root@jordan.soum.co.jp:/usr/src/sys/i386/compile/JORDAN Preloaded elf kernel "/boot/kernel/kernel" at 0xc0802000. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc08020a8. Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 865934929 Hz CPU: Intel(R) Pentium(R) III Mobile CPU 866MHz (865.93-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x6b1 Stepping = 1 Features=0x383f9ff real memory = 670498816 (639 MB) avail memory = 642658304 (612 MB) Allocating major#253 to "net" Allocating major#252 to "pci" Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard ACPI-0625: *** Info: GPE Block0 defined as GPE0 to GPE15 ACPI-0625: *** Info: GPE Block1 defined as GPE16 to GPE31 pcibios: BIOS version 2.10 Using $PIR table, 14 entries at 0xc00fdeb0 ACPI-1287: *** Error: Method execution failed, AE_NOT_EXIST ACPI-1287: *** Error: Method execution failed, AE_NOT_EXIST acpi0: power button is handled as a fixed feature programming model. Timecounter "ACPI-fast" frequency 3579545 Hz acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 acpi_cpu0: port 0x530-0x537 on acpi0 acpi_tz0: port 0x530-0x537 on acpi0 acpi_lid0: on acpi0 ACPI-1287: *** Error: Method execution failed, AE_NOT_EXIST acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: mem 0xd0000000-0xdfffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) uhci0: port 0x1800-0x181f irq 11 at device 29.0 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0x1820-0x183f irq 11 at device 29.1 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0x1840-0x185f irq 11 at device 29.2 on pci0 usb2: on uhci2 usb2: USB revision 1.0 uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered pcib2: at device 30.0 on pci0 pci2: on pcib2 cbb0: mem 0x50000000-0x50000fff irq 11 at device 3.0 on pci2 start (50000000) < sc->membase (c0200000) start (50000000) < sc->pmembase (e8000000) cardbus0: on cbb0 pccard0: <16-bit PCCard bus> on cbb0 cbb1: mem 0x50100000-0x50100fff irq 11 at device 3.1 on pci2 start (50100000) < sc->membase (c0200000) start (50100000) < sc->pmembase (e8000000) cardbus1: on cbb1 pccard1: <16-bit PCCard bus> on cbb1 fwohci0: mem 0xc0201000-0xc02017ff irq 11 at device 3.2 on pci2 fwohci0: PCI bus latency was changing to 250. fwohci0: OHCI version 1.0 (ROM=0) fwohci0: No. of Isochronous channel is 4. fwohci0: EUI64 00:06:1b:00:20:01:b0:a0 fwohci0: Phy 1394a available S400, 2 ports. fwohci0: Link S400, max_rec 2048 bytes. firewire0: on fwohci0 if_fwe0: on firewire0 if_fwe0: Fake Ethernet address: 02:06:1b:01:b0:a0 sbp0: on firewire0 fwohci0: Initiate bus reset fwohci0: BUS reset fwohci0: node_id = 0xc800ffc0, CYCLEMASTER mode firewire0: 1 nodes, maxhop <= 0, cable IRM = 0 (me) wi0: mem 0xf0000000-0xf0000fff irq 11 at device 5.0 on pci2 wi0: 802.11 address: 00:20:e0:8a:71:c8 wi0: using RF:PRISM2.5 MAC:ISL3874A(Mini-PCI) wi0: Intersil Firmware: Primary (1.1.0), Station (1.4.2) wi0: supported rates: 1Mbps 2Mbps 5.5Mbps 11Mbps fxp0: port 0x8000-0x803f mem 0xc0200000-0xc0200fff irq 11 at device 8.0 on pci2 fxp0: Ethernet address 00:d0:59:aa:4d:f3 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x1860-0x186f,0x374-0x377,0x170-0x177,0x3f4-0x3f7,0x1f0-0x1f7 at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 ichsmb0: port 0x1880-0x189f irq 11 at device 31.3 on pci0 smbus0: on ichsmb0 smb0: on smbus0 pcm0: port 0x18c0-0x18ff,0x1c00-0x1cff irq 11 at device 31.5 on pci0 pcm0: pci0: at device 31.6 (no driver attached) atkbdc0: port 0x64,0x60 irq 1 on acpi0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 fdc0: port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 Allocating major#251 to "devstat" sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A ppc0 port 0x378-0x37f irq 7 on acpi0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 sio1 port 0x2f8-0x2ff irq 3 drq 3 on acpi0 sio1: type 16550A acpi_ec0: port 0x66,0x62 on acpi0 acpi_cmbat0: on acpi0 acpi_acad0: on acpi0 orm0:
Generic Viagra is now available to consumers
As low as $2.25 per dose (50 mg)
No Doctor's Consutation required
"Silagra is as good as Viagra - just cheaper!"
Costs over 65% less than Brand Name
(Generic Sildenafil Citrate (Silagra)
and Viagra. both consist of 100 mg of
sildenafil citrate)
Private delivery to your home within 14 working days
of payment verification - FREE SHIPPING
100% Money Back Guarantee - The First
Pharmaceutical to ever be guaranteed.

Limited Time Offer: 19 pills for $119.00. Why pay twice as
much when Silagra is the same thing and is only a click away?


Hurry Offer Ends Soon!

Viagra is a trademark of the Pfizer, Inc.
and is not affiliated with Generic Viagra.
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 8: 6:24 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A72B37B401 for ; Wed, 19 Mar 2003 08:06:23 -0800 (PST) Received: from swissgeeks.com (adsl-212-101-16-119.solnet.ch [212.101.16.119]) by mx1.FreeBSD.org (Postfix) with SMTP id B42B543F75 for ; Wed, 19 Mar 2003 08:06:21 -0800 (PST) (envelope-from pbrossin@swissgeeks.com) Received: (qmail 28735 invoked from network); 19 Mar 2003 16:06:20 -0000 Received: from localhost (127.0.0.1) by server.swissgeeks.com (127.0.0.1) with ESMTP; 19 Mar 2003 16:06:20 -0000 Received: from 10.0.1.2 ( [10.0.1.2]) as user pbrossin@localhost by www.swissgeeks.com with HTTP; Wed, 19 Mar 2003 17:06:20 +0100 Message-ID: <1048089980.3e78957c0630e@www.swissgeeks.com> Date: Wed, 19 Mar 2003 17:06:20 +0100 From: Pierrick Brossin To: Joris Vandalon Cc: freebsd-current@freebsd.org Subject: Re: pkg_add segfault References: <20030319151959.GA643@mezzanine.vandalon.nl> In-Reply-To: <20030319151959.GA643@mezzanine.vandalon.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.0 X-Originating-IP: 10.0.1.2 X-Sent-Via: Mitel Networks SME Server Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Quoting Joris Vandalon : > Hi there, > > it seemd that pkg_add coredumps while doing pkg_add -r $package > pkg_add $package seems work ok. > anyone else experiencing the same problem? Yeah! Wanted to pkg_add -r and it coredumped. I tried to cvsup and remake it but it's not any better! -- Pierrick Brossin IT Swiss - QUARK Media House 6a Puits Godet, 2000 Neuchatel, Switzerland Mail Prof: pbrossin@quark.ch Mail Priv: admin@swissgeeks.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 8:19:19 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D57D37B401 for ; Wed, 19 Mar 2003 08:19:17 -0800 (PST) Received: from sbk-gw.sibnet.ru (sbk-gw.sibnet.ru [217.70.96.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97FDC43F93 for ; Wed, 19 Mar 2003 08:19:14 -0800 (PST) (envelope-from stranger@sberbank.sibnet.ru) Received: from sbk-gw.sibnet.ru (localhost.sibnet.ru [127.0.0.1]) by sbk-gw.sibnet.ru (8.12.6/8.12.6) with ESMTP id h2JGJ5uI029613; Wed, 19 Mar 2003 22:19:05 +0600 (NOVT) (envelope-from stranger@sberbank.sibnet.ru) Received: from localhost (stranger@localhost) by sbk-gw.sibnet.ru (8.12.6/8.12.6/Submit) with ESMTP id h2JGJ5bU029610; Wed, 19 Mar 2003 22:19:05 +0600 (NOVT) X-Authentication-Warning: sbk-gw.sibnet.ru: stranger owned process doing -bs Date: Wed, 19 Mar 2003 22:19:05 +0600 (NOVT) From: "Maxim M. Kazachek" X-X-Sender: stranger@sbk-gw.sibnet.ru To: CARTER Anthony Cc: freebsd-current@FreeBSD.ORG, freebsd-ports@sberbank.sibnet.ru Subject: Re: XFree86-4.3.0,1 +wrapper-1.0_2 In-Reply-To: <1048089677.1021.2.camel@intra241.intrasoft.lu> Message-ID: <20030319221607.J29598@sbk-gw.sibnet.ru> References: <3E78740D.6070703@myrealbox.com> <1048089677.1021.2.camel@intra241.intrasoft.lu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wrapper is needed to run script startx by ordinary user, not root... Seems like gdm works well for me without wrapper. Shall we need to make XFree86-4.3.0,1 an option to install without wrapper package? Sincerely, Maxim M. Kazachek mailto:stranger@sberbank.sibnet.ru mailto:stranger@fpm.ami.nstu.ru On Wed, 19 Mar 2003, CARTER Anthony wrote: >Xfree requires wrapper but seems to break GDM for user logins. Is this >normal, and can I force un-install wrapper without breaking anything? > >Anthony > >XFreeOn Wed, 2003-03-19 at 14:43, walt wrote: >> CARTER Anthony wrote: >> > Hi, >> > >> > I updated XFree86 this morning after a cvsup using portupgrade -r...did >> > all packages for XFree86 (Server, libraries etc. etc.) >> > >> > I now have a problem with GDM... >> > >> > I can log in as root using the GDM, but if I log in as another user, it >> > pops a message up about my session not lasting longer than 10 seconds >> > and dumping me back to login. I get a "client 5 rejected from local >> > host" in my logs, and I get a "run_session_chiled: Could not open >> > ~/.xsession-errors" on the console (even though it exists)... >> >> I have vague recollections that your ~/.xsession should be marked >> executable for xdm/gdm/kdm to work properly. Is it? I can't >> recall if there is a special group added to /etc/group for the >> xsession manager but if there is one your users may need to belong >> to that group. Does gdm run SUID? Can't recall, but it may need to. >> If 'startx' works then I assume you have 'wrapper' installed. I'm >> not sure about the interaction of wrapper with gdm but you could >> try de-installing it. Only takes a second to re-install it. >> >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-current" in the body of the message > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-current" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 8:20:16 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 621EC37B401; Wed, 19 Mar 2003 08:20:15 -0800 (PST) Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7050043FAF; Wed, 19 Mar 2003 08:20:14 -0800 (PST) (envelope-from mark@grondar.org) Received: from storm.FreeBSD.org.uk (Ugrondar@localhost [127.0.0.1]) by storm.FreeBSD.org.uk (8.12.7/8.12.7) with ESMTP id h2JGKCIo094003; Wed, 19 Mar 2003 16:20:12 GMT (envelope-from mark@grondar.org) Received: (from Ugrondar@localhost) by storm.FreeBSD.org.uk (8.12.7/8.12.7/Submit) with UUCP id h2JGKCZ2094002; Wed, 19 Mar 2003 16:20:12 GMT X-Authentication-Warning: storm.FreeBSD.org.uk: Ugrondar set sender to mark@grondar.org using -f Received: from grondar.org (localhost [127.0.0.1]) by grimreaper.grondar.org (8.12.8/8.12.7) with ESMTP id h2JGHH4j044723; Wed, 19 Mar 2003 16:17:17 GMT (envelope-from mark@grondar.org) From: Mark Murray Message-Id: <200303191617.h2JGHH4j044723@grimreaper.grondar.org> To: Doug Barton Cc: Ruslan Ermilov , Lev Serebryakov , current@freebsd.org Subject: Re: `make buildworld' failed In-Reply-To: Your message of "Wed, 19 Mar 2003 03:25:45 PST." <20030319032429.N88684@znfgre.tberna.bet> Date: Wed, 19 Mar 2003 16:17:17 +0000 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Doug Barton writes: > > > For you, the easiest way to jump is to remove MAKE_KERBEROS4 > > > from /etc/make.conf. > > > > Yes. You should not be using that; it is well broken now. > > Is it worth putting an #ifdef in /usr/src/Makefile to stop this in its > tracks? Not everyone running -current is on top of this stuff (for better > or worse). No. :-). If you use CURRENT, stay current. We can't prevent _every_ foot-shoot. M -- Mark Murray iumop ap!sdn w,I idlaH To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 8:49:44 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C2FD37B401; Wed, 19 Mar 2003 08:49:43 -0800 (PST) Received: from out001.verizon.net (out001pub.verizon.net [206.46.170.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE38743F75; Wed, 19 Mar 2003 08:49:42 -0800 (PST) (envelope-from mtm@identd.net) Received: from kokeb.ambesa.net ([151.200.237.70]) by out001.verizon.net (InterMail vM.5.01.05.27 201-253-122-126-127-20021220) with ESMTP id <20030319164942.PMMI5518.out001.verizon.net@kokeb.ambesa.net>; Wed, 19 Mar 2003 10:49:42 -0600 Date: Wed, 19 Mar 2003 11:49:41 -0500 From: Mike Makonnen To: Joris Vandalon Cc: freebsd-current@FreeBSD.ORG, des@freebsd.org Subject: Re: pkg_add segfault In-Reply-To: <20030319151959.GA643@mezzanine.vandalon.nl> References: <20030319151959.GA643@mezzanine.vandalon.nl> X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out001.verizon.net from [151.200.237.70] at Wed, 19 Mar 2003 10:49:41 -0600 Message-Id: <20030319164942.PMMI5518.out001.verizon.net@kokeb.ambesa.net> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 19 Mar 2003 16:19:59 +0100 Joris Vandalon wrote: > Hi there, > > it seemd that pkg_add coredumps while doing pkg_add -r $package > pkg_add $package seems work ok. > anyone else experiencing the same problem? > > -example- > > [root@optimus strace]# pkg_add -r lftp > Segmentation fault (core dumped) > [root@optimus strace]# > Use rev. 1.85 of /src/lib/libfetch/ftp.c -- Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc mtm@identd.net | Fingerprint: D228 1A6F C64E 120A A1C9 A3AA DAE1 E2AF DBCC 68B9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 9:28:10 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51A5937B401; Wed, 19 Mar 2003 09:28:09 -0800 (PST) Received: from out002.verizon.net (out002pub.verizon.net [206.46.170.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B10E43F3F; Wed, 19 Mar 2003 09:28:08 -0800 (PST) (envelope-from mtm@identd.net) Received: from kokeb.ambesa.net ([151.200.237.70]) by out002.verizon.net (InterMail vM.5.01.05.27 201-253-122-126-127-20021220) with ESMTP id <20030319172807.KLJI6546.out002.verizon.net@kokeb.ambesa.net>; Wed, 19 Mar 2003 11:28:07 -0600 Date: Wed, 19 Mar 2003 12:28:06 -0500 From: Mike Makonnen To: "Scott Sipe" Cc: des@freebsd.org, joris@vandalon.nl, freebsd-current@FreeBSD.ORG Subject: Re: pkg_add segfault In-Reply-To: <006801c2ee2e$a43099b0$60ee1098@stark> References: <20030319151959.GA643@mezzanine.vandalon.nl> <006801c2ee2e$a43099b0$60ee1098@stark> X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out002.verizon.net from [151.200.237.70] at Wed, 19 Mar 2003 11:28:06 -0600 Message-Id: <20030319172807.KLJI6546.out002.verizon.net@kokeb.ambesa.net> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Here's a patch. Des, is this ok with you? Cheers. -- Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc mtm@identd.net | Fingerprint: D228 1A6F C64E 120A A1C9 A3AA DAE1 E2AF DBCC 68B9 Index: lib/libfetch/ftp.c =================================================================== RCS file: /home/ncvs/src/lib/libfetch/ftp.c,v retrieving revision 1.86 diff -u -r1.86 ftp.c --- lib/libfetch/ftp.c 11 Mar 2003 08:20:58 -0000 1.86 +++ lib/libfetch/ftp.c 19 Mar 2003 17:24:20 -0000 @@ -894,7 +894,7 @@ struct url *purl; char *p; - if (strchr(flags, 'd') != NULL) + if (flags != NULL && strchr(flags, 'd') != NULL) return (NULL); if (((p = getenv("FTP_PROXY")) || (p = getenv("ftp_proxy")) || (p = getenv("HTTP_PROXY")) || (p = getenv("http_proxy"))) && To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 9:32:35 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0B1A37B401; Wed, 19 Mar 2003 09:32:33 -0800 (PST) Received: from mezzanine.vandalon.nl (cp25482-a.gelen1.lb.home.nl [217.120.68.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3670443FA3; Wed, 19 Mar 2003 09:32:32 -0800 (PST) (envelope-from wiebel@mezzanine.vandalon.nl) Received: by mezzanine.vandalon.nl (Postfix, from userid 1000) id C61E92A903; Wed, 19 Mar 2003 18:32:30 +0100 (CET) Date: Wed, 19 Mar 2003 18:32:30 +0100 From: Joris Vandalon To: Mike Makonnen Cc: Scott Sipe , des@freebsd.org, freebsd-current@FreeBSD.ORG Subject: Re: pkg_add segfault Message-ID: <20030319173230.GA72546@mezzanine.vandalon.nl> References: <20030319151959.GA643@mezzanine.vandalon.nl> <006801c2ee2e$a43099b0$60ee1098@stark> <20030319172807.KLJI6546.out002.verizon.net@kokeb.ambesa.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030319172807.KLJI6546.out002.verizon.net@kokeb.ambesa.net> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Mar 19, 2003 at 12:28:06PM -0500, Mike Makonnen wrote: > Here's a patch. Tnx, works fine now Regards, Joris > > Des, > is this ok with you? > > Cheers. > -- > Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc > mtm@identd.net | Fingerprint: D228 1A6F C64E 120A A1C9 A3AA DAE1 E2AF DBCC 68B9 > > Index: lib/libfetch/ftp.c > =================================================================== > RCS file: /home/ncvs/src/lib/libfetch/ftp.c,v > retrieving revision 1.86 > diff -u -r1.86 ftp.c > --- lib/libfetch/ftp.c 11 Mar 2003 08:20:58 -0000 1.86 > +++ lib/libfetch/ftp.c 19 Mar 2003 17:24:20 -0000 > @@ -894,7 +894,7 @@ > struct url *purl; > char *p; > > - if (strchr(flags, 'd') != NULL) > + if (flags != NULL && strchr(flags, 'd') != NULL) > return (NULL); > if (((p = getenv("FTP_PROXY")) || (p = getenv("ftp_proxy")) || > (p = getenv("HTTP_PROXY")) || (p = getenv("http_proxy"))) && > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 9:57: 7 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 437B237B401 for ; Wed, 19 Mar 2003 09:57:04 -0800 (PST) Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1B1343F3F for ; Wed, 19 Mar 2003 09:57:03 -0800 (PST) (envelope-from larse@ISI.EDU) Received: from isi.edu (wl-135-199.wireless.ietf56.ietf.org [130.129.135.199]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id h2JHv3v10647 for ; Wed, 19 Mar 2003 09:57:03 -0800 (PST) Message-ID: <3E78AF66.9050701@isi.edu> Date: Wed, 19 Mar 2003 09:56:54 -0800 From: Lars Eggert Organization: USC Information Sciences Institute User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3) Gecko/20030312 X-Accept-Language: en-us, en MIME-Version: 1.0 To: current Subject: an0 messages Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms010705090209040405070009" Sender: owner-freebsd-current@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 cryptographically signed message in MIME format. --------------ms010705090209040405070009 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi, I'm seeing these messages on a -current from last weekend: an0: discard oversize frame (ether type 0 flags 3 len 1522 > max 1514) an0: discard oversize frame (ether type 0 flags 3 len 1530 > max 1514) an0: record length mismatch -- expected 104, got 852 for Rid ff11 an0: record length mismatch -- expected 132, got 172 for Rid ff00 an0: record length mismatch -- expected 156, got 158 for Rid ff10 The first two may be to weird packets floating around the IETF network, but the "Rid" ones I see on a clean network, too. Lars -- Lars Eggert USC Information Sciences Institute --------------ms010705090209040405070009 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIJtjCC AzgwggKhoAMCAQICEGZFcrfMdPXPY3ZFhNAukQEwDQYJKoZIhvcNAQEEBQAwgdExCzAJBgNV BAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEaMBgG A1UEChMRVGhhd3RlIENvbnN1bHRpbmcxKDAmBgNVBAsTH0NlcnRpZmljYXRpb24gU2Vydmlj ZXMgRGl2aXNpb24xJDAiBgNVBAMTG1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBDQTErMCkG CSqGSIb3DQEJARYccGVyc29uYWwtZnJlZW1haWxAdGhhd3RlLmNvbTAeFw0wMDA4MzAwMDAw MDBaFw0wNDA4MjcyMzU5NTlaMIGSMQswCQYDVQQGEwJaQTEVMBMGA1UECBMMV2VzdGVybiBD YXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xDzANBgNVBAoTBlRoYXd0ZTEdMBsGA1UECxMUQ2Vy dGlmaWNhdGUgU2VydmljZXMxKDAmBgNVBAMTH1BlcnNvbmFsIEZyZWVtYWlsIFJTQSAyMDAw LjguMzAwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAN4zMqZjxwklRT7SbngnZ4HF2ogZ gpcO40QpimM1Km1wPPrcrvfudG8wvDOQf/k0caCjbZjxw0+iZdsN+kvx1t1hpfmFzVWaNRqd knWoJ67Ycvm6AvbXsJHeHOmr4BgDqHxDQlBRh4M88Dm0m1SKE4f/s5udSWYALQmJ7JRr6aFp AgMBAAGjTjBMMCkGA1UdEQQiMCCkHjAcMRowGAYDVQQDExFQcml2YXRlTGFiZWwxLTI5NzAS BgNVHRMBAf8ECDAGAQH/AgEAMAsGA1UdDwQEAwIBBjANBgkqhkiG9w0BAQQFAAOBgQAxsUtH XfkBceX1U2xdedY9mMAmE2KBIqcS+CKV6BtJtyd7BDm6/ObyJOuR+r3sDSo491BVqGz3Da1M G7wD9LXrokefbKIMWI0xQgkRbLAaadErErJAXWr5edDqLiXdiuT82w0fnQLzWtvKPPZE6iZp h39Ins6ln+eE2MliYq0FxjCCAzkwggKioAMCAQICAwglQTANBgkqhkiG9w0BAQQFADCBkjEL MAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3du MQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYD VQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAwMC44LjMwMB4XDTAyMDgyNDE4NTMzOVoX DTAzMDgyNDE4NTMzOVowVDEPMA0GA1UEBBMGRWdnZXJ0MQ0wCwYDVQQqEwRMYXJzMRQwEgYD VQQDEwtMYXJzIEVnZ2VydDEcMBoGCSqGSIb3DQEJARYNbGFyc2VAaXNpLmVkdTCCASIwDQYJ KoZIhvcNAQEBBQADggEPADCCAQoCggEBANI2Rrt4ggaQ/IrOsDeOm2H4/R5FRIL6JjDY3StE aogp1r23WKniQ1Vj98Nu5WxlaZ3Iam3Jen5T66H8u7rtMNpK4qAeAGoBsVeyVr1+CTFeuv+m xCh7BvBJwhLdm0zDaoDT05YKYZaqtsT+F286FWJQg31Xtf+vTKLVVrHcsafnteyal2NEt7Ac yZZfjsVLwxp2Lq3cwYfRQRoo7/yCVzS7HsgM6jmbO4taEMo4yC2rpnUbWEUCDTaCYgpAXzAl oiNk7GDh0wz2s5ZSnHRvNSBMAjCmpNtSYHfXFI1ANwrrrHIJ7Ei83+XN32PWY4OPzO3iown9 VR+vM+8lNx9OX28CAwEAAaNWMFQwKgYFK2UBBAEEITAfAgEAMBowGAIBBAQTTDJ1TXlmZkJO VWJOSkpjZFoyczAYBgNVHREEETAPgQ1sYXJzZUBpc2kuZWR1MAwGA1UdEwEB/wQCMAAwDQYJ KoZIhvcNAQEEBQADgYEAXcrIlKmPLM/r8r3oz2ZLPLaT1AyMjYTZY2qq/R7SUtFa9BNlTIFh DG78QKfJ9lo2LMzTPQqMZgNLmj95GbNPI8P8OIq2K6MeCZWz08ROackqTFP6xWbIFIfXcBVR 1dZnDDyDKBBh05KkvyTPawSQyOBUeNBfQUyO4TE+3o58U8UwggM5MIICoqADAgECAgMIJUEw DQYJKoZIhvcNAQEEBQAwgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MDAeFw0wMjA4MjQxODUzMzlaFw0wMzA4MjQxODUzMzlaMFQxDzANBgNVBAQTBkVnZ2VydDEN MAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dlcnQxHDAaBgkqhkiG9w0BCQEWDWxh cnNlQGlzaS5lZHUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDSNka7eIIGkPyK zrA3jpth+P0eRUSC+iYw2N0rRGqIKda9t1ip4kNVY/fDbuVsZWmdyGptyXp+U+uh/Lu67TDa SuKgHgBqAbFXsla9fgkxXrr/psQoewbwScIS3ZtMw2qA09OWCmGWqrbE/hdvOhViUIN9V7X/ r0yi1Vax3LGn57XsmpdjRLewHMmWX47FS8Madi6t3MGH0UEaKO/8glc0ux7IDOo5mzuLWhDK OMgtq6Z1G1hFAg02gmIKQF8wJaIjZOxg4dMM9rOWUpx0bzUgTAIwpqTbUmB31xSNQDcK66xy CexIvN/lzd9j1mODj8zt4qMJ/VUfrzPvJTcfTl9vAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIB ADAaMBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVk dTAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBBAUAA4GBAF3KyJSpjyzP6/K96M9mSzy2k9QM jI2E2WNqqv0e0lLRWvQTZUyBYQxu/ECnyfZaNizM0z0KjGYDS5o/eRmzTyPD/DiKtiujHgmV s9PETmnJKkxT+sVmyBSH13AVUdXWZww8gygQYdOSpL8kz2sEkMjgVHjQX0FMjuExPt6OfFPF MYID1TCCA9ECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDCCVBMAkGBSsOAwIaBQCgggIPMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZI hvcNAQkFMQ8XDTAzMDMxOTE3NTY1NFowIwYJKoZIhvcNAQkEMRYEFKoS/qYxVov2PCQZ9aN/ 1vXMQ+RvMFIGCSqGSIb3DQEJDzFFMEMwCgYIKoZIhvcNAwcwDgYIKoZIhvcNAwICAgCAMA0G CCqGSIb3DQMCAgFAMAcGBSsOAwIHMA0GCCqGSIb3DQMCAgEoMIGrBgkrBgEEAYI3EAQxgZ0w gZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMAIDCCVBMIGtBgsq hkiG9w0BCRACCzGBnaCBmjCBkjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2Fw ZTESMBAGA1UEBxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsTFENlcnRp ZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAwMC44 LjMwAgMIJUEwDQYJKoZIhvcNAQEBBQAEggEAEPM2xUicndyj1GI6vSvM/xc3qb6K9Ymq7DSk /kyCr7QSxnYjPPl4iqP+ErlcfyQV+dhK1sDGHul0JNEiNSQ1eAl+X309pBkNwvI2hmGpjGi7 W9oxXKzcSoE2MoJWspUUhr0oWIy62dJK1fk/U6BKOxtskBCYhmOoF91sv8/kUrSxYAhY0R+J 5464oTtzF19GdOl/dafgvfXJKQBeWlwv6HyNs0y+8P8pEYZPwe6Ih5dq9ulzpmQJyrv7sWvp ITUMmj1gVDLpo9YVU5IQv2FNMp85i2DhXdmKeJ7tDpiVg572hxzCVx6FX6//fnI6P+gRToe3 e1231dITVS84WoTrGgAAAAAAAA== --------------ms010705090209040405070009-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 10:37:47 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2293237B404 for ; Wed, 19 Mar 2003 10:37:46 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 0698A43FB1 for ; Wed, 19 Mar 2003 10:37:42 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 12347 invoked by uid 1000); 19 Mar 2003 18:37:43 -0000 Date: Wed, 19 Mar 2003 10:37:43 -0800 (PST) From: Nate Lawson To: current@freebsd.org Cc: wpaul@freebsd.org Subject: Updated if_* attach/detach patches Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have updated my patches for: dc pcn rl sf sis sk ste ti tl vr wb xl They have been compile tested but I only have an rl card so I'd appreciate feedback. Patches are at: http://www.root.org/~nate/freebsd/if_pci/ Clean up locking and resource management for pci/if_* - Remove locking of the softc in the attach method, instead depending on ether_ifattach being at the end of attach (delaying interrupt enable) - Call *_detach directly in the error case of attach, depending on checking in detach to only free resources that were allocated. This makes all resource freeing in one place, avoiding thinkos that lead to memory leaks. - dc: move interrupt allocation back where it was before. It was unnecessary to move it - pcn: add missing bzero of softc - rl: move irq allocation before ether_ifattach. Problems could have been caused by allocating the irq after enabling interrupts on the card. - rl: call rl_stop before ether_ifdetach - sf: call sf_stop before ether_ifdetach - sis: add missed free of sis_tag - sis: check errors from tag creation - sk: remove duplicate initialization of sk_dev - ste: add missed bus_generic_detach - ti: call ti_stop before ether_ifdetach - ti: add missed error setting in ti_rdata alloc failure - vr: add missed error setting in I/O, memory mapping cases - wb: add missing bzero of softc - xl: add missed error setting in I/O, memory mapping cases - xl: add missing bzero of softc - xl: remove multi-level goto on attach failure -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 10:39:15 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E61A37B401 for ; Wed, 19 Mar 2003 10:39:14 -0800 (PST) Received: from scl8owa02.int.exodus.net (scl8out02.exodus.net [66.35.230.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB42543F93 for ; Wed, 19 Mar 2003 10:39:07 -0800 (PST) (envelope-from Maksim.Yevmenkin@cw.com) Received: from scl8owa01.int.exodus.net ([66.35.230.241]) by scl8owa02.int.exodus.net with Microsoft SMTPSVC(5.0.2195.5329); Wed, 19 Mar 2003 10:39:07 -0800 Received: from exodus.net ([165.193.27.35]) by scl8owa01.int.exodus.net over TLS secured channel with Microsoft SMTPSVC(5.0.2195.5329); Wed, 19 Mar 2003 10:39:07 -0800 Message-ID: <3E78B88B.8000908@exodus.net> Date: Wed, 19 Mar 2003 10:35:55 -0800 From: Maksim Yevmenkin User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.1) Gecko/20021126 X-Accept-Language: ru, en-us, en MIME-Version: 1.0 To: current@freebsd.org Subject: What is the proper handling for USB IOERRORs Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 19 Mar 2003 18:39:07.0585 (UTC) FILETIME=[D30E5B10:01C2EE46] Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dear Hackers, Does anyone know what is the proper handling for USB IOERROR status in USB transfer callback? here is my problem. the driver opens bulk pipe and submits incoming USB bulk transfer. the USB device is detached while the transfer is still pending and pipe is still open. USB transfer callback gets called with IOERROR status. now how do i handle this? how do i know that this IOERROR is because the device is gone and not because of some other reason? there is a special USB status - CANCELLED and the driver only stops re-submitting the request when it sees CANCELLED status. the problem however is that the driver gets IOERROR *before* it gets CANCELLED and thus keep re-submitting the request over and over again. now eventually the driver will get CANCELLED status and then the whole thing stops. should driver just stop on any error? is there any other way? thanks, max To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 10:39:40 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B78A437B401 for ; Wed, 19 Mar 2003 10:39:38 -0800 (PST) Received: from oasis.quay.com (sub18-59.member.dsl-only.net [63.105.18.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9066843F85 for ; Wed, 19 Mar 2003 10:39:37 -0800 (PST) (envelope-from tod@quay.com) Received: from quay.com (titania.quay.com [192.168.1.63]) by oasis.quay.com (8.12.8/8.12.8) with ESMTP id h2JIdaaU000988 for ; Wed, 19 Mar 2003 10:39:36 -0800 (PST) (envelope-from tod@quay.com) Date: Wed, 19 Mar 2003 10:39:38 -0800 Mime-Version: 1.0 (Apple Message framework v551) Content-Type: text/plain; charset=US-ASCII; format=flowed Subject: Freeze from pppd From: Tod Oace To: freebsd-current@freebsd.org Content-Transfer-Encoding: 7bit Message-Id: <2382CDFA-5A3A-11D7-A07C-00039388DE60@quay.com> X-Mailer: Apple Mail (2.551) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm hoping someone can help me debug the following problem (a fix would be welcome too :) ). I'm using mgetty to receive faxes and to accept a dialup ppp connection. I used to use something called ppplogin to handle the incoming ppp but decided to switch to pppd with FreeBSD 5.0 because my ppplogin is old and I don't even remember where I got it from. So now in /usr/local/etc/mgetty+sendfax/login.config I have: /AutoPPP/ - a_ppp /usr/sbin/pppd auth -chap +pap login debug The problem I'm having is that when an incoming ppp connection attempt is made my FreeBSD 5.0 machine freezes up. I can't even get to the debugger with Ctrl-Alt-Esc like I normally can. Here are the last few /var/log/ppp.log entries from before rebooting (entries are lost after reboot): Mar 19 10:00:46 oasis pppd[620]: sent [LCP TermReq id=0x2 "User request"] Mar 19 10:00:46 oasis pppd[620]: Modem hangup, connected for 1 minutes Mar 19 10:00:46 oasis pppd[620]: Connection terminated, connected for 1 minutes Mar 19 10:00:47 oasis pppd[620]: Exit. I probably don't have /etc/ppp/ configured quite right yet but I expect I'll be able to figure that out later. Right now I'm hoping for help with the system freeze. Maybe a remote gdb? Or maybe it's because I'm using a USB keyboard? (Have atkbd disabled.) System is current as of last night. I cvsup'd and did the steps 1 - 9 of /usr/src/Makefile (kernel stuff, world stuff, mergemaster). I'm using a custom kernel which is almost GENERIC except for addition of ipfw and a couple other tweaks. Diff available on request. Problem is still there. Anyone have any ideas? Thanks... -- Tod Oace To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 11: 6:31 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B01C637B401 for ; Wed, 19 Mar 2003 11:06:30 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 195F643FB1 for ; Wed, 19 Mar 2003 11:06:30 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 12430 invoked by uid 1000); 19 Mar 2003 19:06:30 -0000 Date: Wed, 19 Mar 2003 11:06:30 -0800 (PST) From: Nate Lawson To: current@freebsd.org Subject: Re: Updated if_* attach/detach patches Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I had forgotten to cvsup before generating the diff so I have updated them in place after resolving conflicts. Only rl and xl have changed. -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 11: 9:18 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0448F37B401; Wed, 19 Mar 2003 11:09:16 -0800 (PST) Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBD0743F3F; Wed, 19 Mar 2003 11:09:14 -0800 (PST) (envelope-from jake@k6.locore.ca) Received: from k6.locore.ca (localhost.locore.ca [127.0.0.1]) by k6.locore.ca (8.12.8/8.12.8) with ESMTP id h2JJE6xS058798; Wed, 19 Mar 2003 14:14:06 -0500 (EST) (envelope-from jake@k6.locore.ca) Received: (from jake@localhost) by k6.locore.ca (8.12.8/8.12.8/Submit) id h2JJE6Kd058797; Wed, 19 Mar 2003 14:14:06 -0500 (EST) Date: Wed, 19 Mar 2003 14:14:06 -0500 From: Jake Burkholder To: Nate Lawson Cc: current@FreeBSD.ORG, wpaul@FreeBSD.ORG Subject: Re: Updated if_* attach/detach patches Message-ID: <20030319141406.L76446@locore.ca> 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 nate@root.org on Wed, Mar 19, 2003 at 10:37:43AM -0800 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Apparently, On Wed, Mar 19, 2003 at 10:37:43AM -0800, Nate Lawson said words to the effect of; > I have updated my patches for: > dc pcn rl sf sis sk ste ti tl vr wb xl > They have been compile tested but I only have an rl card so I'd appreciate > feedback. > > Patches are at: > http://www.root.org/~nate/freebsd/if_pci/ > > Clean up locking and resource management for pci/if_* > > - pcn: add missing bzero of softc > - wb: add missing bzero of softc > - xl: add missing bzero of softc FWIW, the softc is allocated with M_ZERO, and probably lots of drivers depend on this already. It might be better to just remove all bzero-ing of the softc. Jake To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 11:16:54 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D12D37B401; Wed, 19 Mar 2003 11:16:53 -0800 (PST) Received: from relay.macomnet.ru (relay.macomnet.ru [195.128.64.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id C09A943FB1; Wed, 19 Mar 2003 11:16:51 -0800 (PST) (envelope-from maxim@macomnet.ru) Received: from news1.macomnet.ru (news1.macomnet.ru [195.128.64.14]) by relay.macomnet.ru (8.11.6/8.11.6) with ESMTP id h2JJGfZ1667912; Wed, 19 Mar 2003 22:16:41 +0300 (MSK) Date: Wed, 19 Mar 2003 22:16:41 +0300 (MSK) From: Maxim Konovalov To: Tod Oace Cc: freebsd-current@FreeBSD.ORG, jlemon@FreeBSD.ORG Subject: Re: Freeze from pppd In-Reply-To: <2382CDFA-5A3A-11D7-A07C-00039388DE60@quay.com> Message-ID: <20030319220903.W55329@news1.macomnet.ru> References: <2382CDFA-5A3A-11D7-A07C-00039388DE60@quay.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 10:39-0800, Mar 19, 2003, Tod Oace wrote: > I'm hoping someone can help me debug the following problem (a fix would > be welcome too :) ). > > I'm using mgetty to receive faxes and to accept a dialup ppp > connection. I used to use something called ppplogin to handle the > incoming ppp but decided to switch to pppd with FreeBSD 5.0 because my > ppplogin is old and I don't even remember where I got it from. So now > in /usr/local/etc/mgetty+sendfax/login.config I have: > > /AutoPPP/ - a_ppp /usr/sbin/pppd auth -chap +pap login debug > > > The problem I'm having is that when an incoming ppp connectionattempt > is made my FreeBSD 5.0 machine freezes up. I can't even get to the > debugger with Ctrl-Alt-Esc like I normally can. Here are the last few Known bug: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=180644+0+archive/2003/freebsd-current/20030316.freebsd-current I suspect that commit: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=1123119+0+archive/2003/cvs-all/20030309.cvs-all [...] -- Maxim Konovalov, maxim@macomnet.ru, maxim@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 11:43:30 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55B9237B404 for ; Wed, 19 Mar 2003 11:43:28 -0800 (PST) Received: from mx0.gmx.net (mx0.gmx.de [213.165.64.100]) by mx1.FreeBSD.org (Postfix) with SMTP id AD80E43FBF for ; Wed, 19 Mar 2003 11:43:26 -0800 (PST) (envelope-from JtRipper@gmx.net) Received: (qmail 18041 invoked by uid 0); 19 Mar 2003 19:43:25 -0000 Date: Wed, 19 Mar 2003 20:43:25 +0100 (MET) From: Andrew Mace To: Kris Kennaway Cc: freebsd-current@FreeBSD.ORG MIME-Version: 1.0 References: <20030319045344.GA5897@rot13.obsecurity.org> Subject: Re: Debugger("panic") on reboot X-Priority: 3 (Normal) X-Authenticated-Sender: #0000353824@gmx.net X-Authenticated-IP: [217.80.105.47] Message-ID: <12005.1048103005@www30.gmx.net> X-Mailer: WWW-Mail 1.6 (Global Message Exchange) X-Flags: 0001 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Wed, Mar 19, 2003 at 05:38:30AM +0100, Andrew Mace wrote: > > Hello there, I recently installed the FreeBSD 5.0 CURRENT (dated > 03/14/03) > > and today I got the following error after I rebooted the system: > > > > syncing disks,buffers remaining... 3 3 > > done > > Slab at 0xc2b84fcc,freei 11=191 > > panic:Duplicate free of item 0xc2b84688 from zone 0xc083a360(VM OBJECT) > > > > Debugger("panic") > > Stopped at Debugger+0x54 xchgl %ebx,inDebugger.0 > > db > > > > > Can anyone tell me what this means? > > It's a kernel bug..read the handbook section on kernel debugging. > BTW, if you're running -CURRENT you're basically expected to be able > to deal with this kind of thing. Are you sure you didn't want to > install -STABLE instead? > > Kris > Thanks for Your reply. Your right, I'm in the wrong league here :-). I had 5.0 RELEASE installed before, but the jdk1.4 port wouldn't compile and there is no binary package. But now that I have it compiled and packaged can I just install it on 5.0 RELEASE or even 4.7 STABLE? Thanks in advance Andrew -- +++ GMX - Mail, Messaging & more http://www.gmx.net +++ Bitte lächeln! Fotogalerie online mit GMX ohne eigene Homepage! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 12: 1:59 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA60637B401 for ; Wed, 19 Mar 2003 12:01:57 -0800 (PST) Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id F03BF43F3F for ; Wed, 19 Mar 2003 12:01:55 -0800 (PST) (envelope-from sheldonh@starjuice.net) Received: from sheldonh by axl.seasidesoftware.co.za with local (Exim 4.12) id 18vjkr-000M11-00; Wed, 19 Mar 2003 22:01:41 +0200 Date: Wed, 19 Mar 2003 22:01:41 +0200 From: Sheldon Hearn To: Andrew Mace Cc: Kris Kennaway , freebsd-current@FreeBSD.ORG Subject: Re: Debugger("panic") on reboot Message-ID: <20030319200141.GA47700@starjuice.net> Mail-Followup-To: Andrew Mace , Kris Kennaway , freebsd-current@FreeBSD.ORG References: <20030319045344.GA5897@rot13.obsecurity.org> <12005.1048103005@www30.gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <12005.1048103005@www30.gmx.net> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On (2003/03/19 20:43), Andrew Mace wrote: > Thanks for Your reply. Your right, I'm in the wrong league here :-). I had > 5.0 RELEASE installed before, but the jdk1.4 port wouldn't compile and there > is no binary package. But now that I have it compiled and packaged can I just > install it on 5.0 RELEASE or even 4.7 STABLE? No. The native jdk1.4.1 depends on a threads support change in libc that was committed after 5.0-RELEASE. You _really_ don't want to upgrade libc to 5.0-CURRENT without upgrading the rest of the system. You could, however, just apply the patch concerned [1] and rebuild world from the 5.0-RELEASE sources. Personally, I'd just update to -CURRENT and enjoy a host of bugfixes, at the risk of catching it at a bad time. You can minimize that risk by using the same FreeBSD source that you used to produce the host environment that successfully built the java/jdk14 port's package, because you've seen it in action. Ciao, Sheldon. [1] You'd have to hunt the freebsd-java mailing list archives for "the libc_r patch", which shouldn't be too hard to find. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 12: 7:39 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3675937B401; Wed, 19 Mar 2003 12:07:38 -0800 (PST) Received: from oasis.quay.com (sub18-59.member.dsl-only.net [63.105.18.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFD0A43F3F; Wed, 19 Mar 2003 12:07:34 -0800 (PST) (envelope-from tod@quay.com) Received: from quay.com (titania.quay.com [192.168.1.63]) by oasis.quay.com (8.12.8/8.12.8) with ESMTP id h2JK7YaU002049; Wed, 19 Mar 2003 12:07:34 -0800 (PST) (envelope-from tod@quay.com) Date: Wed, 19 Mar 2003 12:07:35 -0800 Subject: Re: Freeze from pppd Content-Type: text/plain; delsp=yes; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v551) Cc: freebsd-current@FreeBSD.ORG, jlemon@FreeBSD.ORG To: Maxim Konovalov From: Tod Oace In-Reply-To: <20030319220903.W55329@news1.macomnet.ru> Message-Id: <6D12636D-5A46-11D7-A07C-00039388DE60@quay.com> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.551) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wednesday, March 19, 2003, at 11:16 AM, Maxim Konovalov wrote: > On 10:39-0800, Mar 19, 2003, Tod Oace wrote: > >> The problem I'm having is that when an incoming ppp connectionattempt >> is made my FreeBSD 5.0 machine freezes up. I can't even get to the >> debugger with Ctrl-Alt-Esc like I normally can. Here are the last few > > Known bug: > > http://docs.freebsd.org/cgi/getmsg.cgi?fetch=180644+0+archive/2003/ > freebsd-current/20030316.freebsd-current I'm not getting a panic, but it seems likely I'm having the same problem. Am using a single processor 1GHz Pentium III HP Vectra machine. Left all the GENERIC debugging stuff enabled. > I suspect that commit: > > http://docs.freebsd.org/cgi/getmsg.cgi?fetch=1123119+0+archive/2003/ > cvs-all/20030309.cvs-all Lots of changes, and over my head. Just saw the ISA NMI generation hint in ddb(4) and will try putting one of those together to try and see where my system is wedging (didn't see that in the handbook). Thanks, Maxim. > -- > Maxim Konovalov, maxim@macomnet.ru, maxim@FreeBSD.org -- Tod Oace To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 12:27:35 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9EA137B404 for ; Wed, 19 Mar 2003 12:27:33 -0800 (PST) Received: from mail.speakeasy.net (mail17.speakeasy.net [216.254.0.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id D456143FBF for ; Wed, 19 Mar 2003 12:27:31 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 32088 invoked from network); 19 Mar 2003 20:27:38 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail17.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 19 Mar 2003 20:27:38 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.8/8.12.8) with ESMTP id h2JKRSOv075817; Wed, 19 Mar 2003 15:27:29 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20030318100924.GA47769@mezzanine.vandalon.nl> Date: Wed, 19 Mar 2003 15:27:46 -0500 (EST) From: John Baldwin To: Joris Vandalon Subject: RE: HTT , APIC_IO Cc: current@FreeBSD.ORG Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 18-Mar-2003 Joris Vandalon wrote: > Hi there, > > I'm having a problem compling a current kernel with HTT > it seemd the option APIC_IO gives me some trouwbels (see output below) > is there anyone who had similar problems or even how got HTT working on current? The APIC_IO option is required for SMP on i386. It seems that you do not have APIC_IO in your kernel? > -start output- > cc -c -x assembler-with-cpp -DLOCORE -O -pipe -mcpu=pentiumpro -Wall -Wredundant-decls > -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual > -fformat-extensions -ansi -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/dev > -I/usr/src/sys/contrib/dev/acpica -I/usr/src/sys/contrib/ipfilter -D_KERNEL -include opt_global.h > -fno-common -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror > /usr/src/sys/i386/i386/exception.s > {standard input}: Assembler messages: > {standard input}: Assembler messages: > {standard input}:379: Error: undefined symbol `lapic' in operation > {standard input}:379: Error: undefined symbol `LA_EOI' in operation > {standard input}:403: Error: undefined symbol `lapic' in operation > {standard input}:403: Error: undefined symbol `LA_EOI' in operation > {standard input}:432: Error: undefined symbol `lapic' in operation > {standard input}:432: Error: undefined symbol `LA_EOI' in operation > > and so on... > > {standard input}:653: Error: undefined symbol `LA_EOI' in operation > {standard input}:707: Error: undefined symbol `lapic' in operation > {standard input}:707: Error: undefined symbol `LA_EOI' in operation > *** Error code 1 > > Stop in /usr/obj/usr/src/sys/OPTIMUS. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > -stop output- > > Regards > > Joris > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 12:41:12 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1498C37B401; Wed, 19 Mar 2003 12:41:10 -0800 (PST) Received: from mezzanine.vandalon.nl (cp25482-a.gelen1.lb.home.nl [217.120.68.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B7A043F93; Wed, 19 Mar 2003 12:41:06 -0800 (PST) (envelope-from wiebel@mezzanine.vandalon.nl) Received: by mezzanine.vandalon.nl (Postfix, from userid 1000) id 898C22A903; Wed, 19 Mar 2003 21:40:58 +0100 (CET) Date: Wed, 19 Mar 2003 21:40:58 +0100 From: Joris Vandalon To: John Baldwin Cc: current@FreeBSD.ORG Subject: Re: HTT , APIC_IO Message-ID: <20030319204058.GA18818@mezzanine.vandalon.nl> References: <20030318100924.GA47769@mezzanine.vandalon.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Mar 19, 2003 at 03:27:46PM -0500, John Baldwin wrote: > > On 18-Mar-2003 Joris Vandalon wrote: > > Hi there, > > > > I'm having a problem compling a current kernel with HTT > > it seemd the option APIC_IO gives me some trouwbels (see output below) > > is there anyone who had similar problems or even how got HTT working on current? > > The APIC_IO option is required for SMP on i386. It seems that you do > not have APIC_IO in your kernel? Yes id did, but i hadn't SMP in my kernel :) is tought HTT and APIC_IO where enough, i tought wrong :) but my problem is allready solved. but tnx for the reply. Regards, Joris > > > -start output- > > cc -c -x assembler-with-cpp -DLOCORE -O -pipe -mcpu=pentiumpro -Wall -Wredundant-decls > > -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual > > -fformat-extensions -ansi -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/dev > > -I/usr/src/sys/contrib/dev/acpica -I/usr/src/sys/contrib/ipfilter -D_KERNEL -include opt_global.h > > -fno-common -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror > > /usr/src/sys/i386/i386/exception.s > > {standard input}: Assembler messages: > > {standard input}: Assembler messages: > > {standard input}:379: Error: undefined symbol `lapic' in operation > > {standard input}:379: Error: undefined symbol `LA_EOI' in operation > > {standard input}:403: Error: undefined symbol `lapic' in operation > > {standard input}:403: Error: undefined symbol `LA_EOI' in operation > > {standard input}:432: Error: undefined symbol `lapic' in operation > > {standard input}:432: Error: undefined symbol `LA_EOI' in operation > > > > and so on... > > > > {standard input}:653: Error: undefined symbol `LA_EOI' in operation > > {standard input}:707: Error: undefined symbol `lapic' in operation > > {standard input}:707: Error: undefined symbol `LA_EOI' in operation > > *** Error code 1 > > > > Stop in /usr/obj/usr/src/sys/OPTIMUS. > > *** Error code 1 > > > > Stop in /usr/src. > > *** Error code 1 > > > > Stop in /usr/src. > > -stop output- > > > > Regards > > > > Joris > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-current" in the body of the message > > -- > > John Baldwin <>< http://www.FreeBSD.org/~jhb/ > "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 12:46:56 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D755E37B401 for ; Wed, 19 Mar 2003 12:46:54 -0800 (PST) Received: from ambrisko.com (adsl-64-174-51-42.dsl.snfc21.pacbell.net [64.174.51.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BB0A43F85 for ; Wed, 19 Mar 2003 12:46:52 -0800 (PST) (envelope-from ambrisko@www.ambrisko.com) Received: from www.ambrisko.com (localhost [127.0.0.1]) by ambrisko.com (8.12.6/8.12.6) with ESMTP id h2JKkphZ031008; Wed, 19 Mar 2003 12:46:51 -0800 (PST) (envelope-from ambrisko@www.ambrisko.com) Received: (from ambrisko@localhost) by www.ambrisko.com (8.12.6/8.12.6/Submit) id h2JKkp98031007; Wed, 19 Mar 2003 12:46:51 -0800 (PST) (envelope-from ambrisko) From: Doug Ambrisko Message-Id: <200303192046.h2JKkp98031007@www.ambrisko.com> Subject: Re: pptp mpd under 5.0 In-Reply-To: <20030318004344.565162C5D2@www.fastmail.fm> To: Aaron Wohl Date: Wed, 19 Mar 2003 12:46:51 -0800 (PST) Cc: current@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL94b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Aaron Wohl writes: | Im trying to run pptp under 5.0 -current. (first time with mpd so | probably some config issue) | | I get these errors: | mpd: pid 1102, version 3.13 (root@pasodoble.chessclub.com 09:35 | 17-Mar-2003) | [pptp0] can't create socket node: No such file or directory | mpd: local IP address for PPTP is 10.23.0.3 | [pptp0] using interface | [pptp1] can't create socket node: No such file or directory | [pptp1] using interface | | I tried running mpd under truss to see what its trying to access... im | guessing its missing a tun0 or ng0 or some such from /dev, whats the | replacement for MAKDEV to mkae them? ... and I cant seem to get truss to | run at all on any program... | bash-2.05b# truss mpd | truss: cannot open /proc/curproc/mem: No such file or directory | truss: cannot open /proc/1107/mem: No such file or directory | bash-2.05b# Just a hint. /sys/modules/netgraph/mppc/Makefile and take out the stuff about rc4. When rc4 was made into a module this needed to be removed from mppc. This was done around 5.0 in -current but I forget if it was in 5.0 or not. I did fix this in -current. Then again you might have a totally different problem. I do have it working in -current (for some value of current). Doug A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 13: 7:58 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A1CF37B401 for ; Wed, 19 Mar 2003 13:07:57 -0800 (PST) Received: from wabakimi.chat.carleton.ca (wabakimi.chat.carleton.ca [134.117.1.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DBAB43F3F for ; Wed, 19 Mar 2003 13:07:56 -0800 (PST) (envelope-from creyenga@connectmail.carleton.ca) Received: from fireball (resnet-93-187.cavern.carleton.ca [134.117.93.187]) by wabakimi.chat.carleton.ca (8.12.6/8.12.6) with SMTP id h2JL7msU008043; Wed, 19 Mar 2003 16:07:48 -0500 (EST) Message-ID: <000d01c2d791$ceaf7430$0200000a@sewer.org> From: "Craig Reyenga" To: "Pete Fritchman" Cc: References: <001601c2edf8$3e008910$0200000a@sewer.org> <20030319151656.GB54221@absolutbsd.org> Subject: Re: Gigabit Link slow, until downed and re-uped Date: Tue, 18 Feb 2003 16:07:21 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > | My gigabit link between my Windows XP box and my FreeBSD box is always > | really slow after booting FreeBSD, until I go like this: > | > | ifconfig em0 down ; ifconfig em0 up > | > | ..and then I get top speed again. Ping goes from 9ms+ to 0.2ms-. This > | happens regardless of whether the FreeBSD box is booted first, or > | second, or even across reboots. However, after fixing it manually, doing > > Are you using speed/duplex autonegotiation? Try setting both sides > manually (man 4 em for details on FreeBSD). > > --pete I've tried that, and am still having the exact same problem. Also, looking at it in greater detail, when I do take the link down, then back up, my transfer speed from Windows XP ---> FreeBSD is roughly half of what it was before the whole problem started happening. This was determined using PerformanceTest on the Windows XP box doing disk tests on a Samba share. No samba settings were changed, and disk space hasn't changed by more than about 500 megs. -Craig To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 13:21:59 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 000EA37B401 for ; Wed, 19 Mar 2003 13:21:58 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4CAF43F3F for ; Wed, 19 Mar 2003 13:21:57 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id A6EDD5308; Wed, 19 Mar 2003 22:21:55 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Mike Makonnen Cc: "Scott Sipe" , joris@vandalon.nl, freebsd-current@FreeBSD.ORG Subject: Re: pkg_add segfault From: des@ofug.org (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Wed, 19 Mar 2003 22:21:54 +0100 In-Reply-To: <20030319172807.KLJI6546.out002.verizon.net@kokeb.ambesa.net> (Mike Makonnen's message of "Wed, 19 Mar 2003 12:28:06 -0500") Message-ID: User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: <20030319151959.GA643@mezzanine.vandalon.nl> <006801c2ee2e$a43099b0$60ee1098@stark> <20030319172807.KLJI6546.out002.verizon.net@kokeb.ambesa.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Mike Makonnen writes: > is this ok with you? Ugh, yes. DES --=20 Dag-Erling Sm=F8rgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 13:25:10 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E95837B404; Wed, 19 Mar 2003 13:25:09 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-150.dsl.lsan03.pacbell.net [63.207.60.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F49543FAF; Wed, 19 Mar 2003 13:25:08 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id C73B766BE5; Wed, 19 Mar 2003 13:25:07 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id A2B951016; Wed, 19 Mar 2003 13:25:07 -0800 (PST) Date: Wed, 19 Mar 2003 13:25:07 -0800 From: Kris Kennaway To: Mike Barcroft Cc: Kris Kennaway , current@FreeBSD.org Subject: Re: Ports broken due to -current change (Re: Ports broken on ia64) Message-ID: <20030319212507.GB9878@rot13.obsecurity.org> References: <20030314103543.GB872@rot13.obsecurity.org> <20030314104935.GA1201@rot13.obsecurity.org> <20030314114123.A24654@espresso.bsdmike.org> <20030314170645.GE2611@rot13.obsecurity.org> <20030319022339.GA4946@rot13.obsecurity.org> <20030318213148.H72142@espresso.bsdmike.org> <20030319100721.I72142@espresso.bsdmike.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dTy3Mrz/UPE2dbVg" Content-Disposition: inline In-Reply-To: <20030319100721.I72142@espresso.bsdmike.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --dTy3Mrz/UPE2dbVg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Mar 19, 2003 at 10:07:21AM -0500, Mike Barcroft wrote: > > I think I see the problem. I'll try to get a fix committed by > > tonight. >=20 > Okay, try revision 1.35. Will do, thanks! Kris --dTy3Mrz/UPE2dbVg Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+eOAyWry0BWjoQKURAjnHAJ9DarFYNvlQ0UmazXdfnyrZvewmTQCeM2Vq 4eJpGG6KDSPoRVru+QSGMvg= =aiZZ -----END PGP SIGNATURE----- --dTy3Mrz/UPE2dbVg-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 13:34:27 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0FF237B401 for ; Wed, 19 Mar 2003 13:34:26 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 47E0F43FA3 for ; Wed, 19 Mar 2003 13:34:25 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 12648 invoked by uid 1000); 19 Mar 2003 21:34:26 -0000 Date: Wed, 19 Mar 2003 13:34:26 -0800 (PST) From: Nate Lawson To: current@freebsd.org Cc: acpi-jp@jp.freebsd.org, iwasaki@freebsd.org Subject: ACPI-CA import/new diff? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It's been a while since we've pulled in Intel's acpi-ca work and there are a number of bugs fixed since the October 2002 version in -current. Could someone generate a diff for the latest release and post it for testing? If enough people indicate there are no problems, it would be nice to have an import before 5.1R http://developer.intel.com/technology/iapc/acpi/downloads/CHANGES.txt Thanks, Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 13:36: 5 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01CEC37B404 for ; Wed, 19 Mar 2003 13:36:04 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 4C31F43FAF for ; Wed, 19 Mar 2003 13:36:03 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 12654 invoked by uid 1000); 19 Mar 2003 21:36:04 -0000 Date: Wed, 19 Mar 2003 13:36:04 -0800 (PST) From: Nate Lawson To: Andrew Gallatin Cc: freebsd-current@freebsd.org Subject: Re: secondary ACPI problems In-Reply-To: <15867.45188.294955.716962@grasshopper.cs.duke.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@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 Dec 2002, Andrew Gallatin wrote: > This does not happen if I do not have rp.ko loaded. I suspect that > the rocketport card needs some setup when power is restored. It > polls all its ports, so it makes sense that a swi would get clogged. > > I thought it might be sufficent to unload the driver and reload after > resume. However, it doens't appear to be unloadable now. > > Before I get too far into this, will unloading rp and reloading it > suffice, or is there a better way which could just allow me to save > and restore the card state so I wouldn't have to reload it on resume? See the device_suspend/resume implementations in various drivers (i.e. rl(4)). -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 13:58:54 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 103D137B401 for ; Wed, 19 Mar 2003 13:58:53 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52DEA43F85 for ; Wed, 19 Mar 2003 13:58:49 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.8/8.12.8) with ESMTP id h2JLwmRv010844 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Wed, 19 Mar 2003 16:58:48 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h2JLwhg02568; Wed, 19 Mar 2003 16:58:43 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15992.59411.447270.923913@grasshopper.cs.duke.edu> Date: Wed, 19 Mar 2003 16:58:43 -0500 (EST) To: Nate Lawson Cc: freebsd-current@freebsd.org Subject: Re: secondary ACPI problems In-Reply-To: References: <15867.45188.294955.716962@grasshopper.cs.duke.edu> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Nate Lawson writes: > On Sat, 14 Dec 2002, Andrew Gallatin wrote: > > This does not happen if I do not have rp.ko loaded. I suspect that > > the rocketport card needs some setup when power is restored. It > > polls all its ports, so it makes sense that a swi would get clogged. > > > > I thought it might be sufficent to unload the driver and reload after > > resume. However, it doens't appear to be unloadable now. > > > > Before I get too far into this, will unloading rp and reloading it > > suffice, or is there a better way which could just allow me to save > > and restore the card state so I wouldn't have to reload it on resume? > > See the device_suspend/resume implementations in various drivers > (i.e. rl(4)). Wow, what a blast from the past! ;) Shouldn't a driver without a suspend/resume implementation implicitly veto the suspend? That's how OS-X does it. Anyway, I'll worry about this when/if somebody can tell me how to get my video back after suspending to S3: none2@pci1:0:0: class=0x030000 card=0x7106174b chip=0x54461002 rev=0x00 hdr=0x00 vendor = 'ATI Technologies' device = 'Rage 128 Pro AGP 4x' class = display Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 14:10:32 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBF5137B401 for ; Wed, 19 Mar 2003 14:10:30 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 5D17D43F3F for ; Wed, 19 Mar 2003 14:10:30 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 12716 invoked by uid 1000); 19 Mar 2003 22:10:31 -0000 Date: Wed, 19 Mar 2003 14:10:31 -0800 (PST) From: Nate Lawson To: Andrew Gallatin Cc: freebsd-current@freebsd.org Subject: Re: secondary ACPI problems In-Reply-To: <15992.59411.447270.923913@grasshopper.cs.duke.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 19 Mar 2003, Andrew Gallatin wrote: > Nate Lawson writes: > > On Sat, 14 Dec 2002, Andrew Gallatin wrote: > > > This does not happen if I do not have rp.ko loaded. I suspect that > > > the rocketport card needs some setup when power is restored. It > > > polls all its ports, so it makes sense that a swi would get clogged. > > > > > > I thought it might be sufficent to unload the driver and reload after > > > resume. However, it doens't appear to be unloadable now. > > > > > > Before I get too far into this, will unloading rp and reloading it > > > suffice, or is there a better way which could just allow me to save > > > and restore the card state so I wouldn't have to reload it on resume? > > > > See the device_suspend/resume implementations in various drivers > > (i.e. rl(4)). > > Wow, what a blast from the past! ;) I am trying to eliminate a backlog of email. I can only manage actually reading cvs-src and developers it seems. > Shouldn't a driver without a suspend/resume implementation implicitly > veto the suspend? That's how OS-X does it. Currently the default is null_suspend which returns 0 (i.e. "ok"). You could create a new default, refuse_suspend and then go to all drivers and add an explicit call to null_suspend but I'm not sure this is the best idea. > Anyway, I'll worry about this when/if somebody can tell me how to get > my video back after suspending to S3: > > none2@pci1:0:0: class=0x030000 card=0x7106174b chip=0x54461002 rev=0x00 hdr=0x00 > vendor = 'ATI Technologies' > device = 'Rage 128 Pro AGP 4x' > class = display Sorry, I have no knowledge of video hw except that it does need to be reset on suspend. -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 14:39: 2 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26BBF37B401 for ; Wed, 19 Mar 2003 14:39:01 -0800 (PST) Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id D187943F75 for ; Wed, 19 Mar 2003 14:38:56 -0800 (PST) (envelope-from doconnor@gsoft.com.au) Received: from [127.0.0.1] (localhost [127.0.0.1]) by cain.gsoft.com.au (8.12.4/8.12.6) with ESMTP id h2JMcYjs002503; Thu, 20 Mar 2003 09:08:38 +1030 (CST) (envelope-from doconnor@gsoft.com.au) X-Authentication-Warning: cain.gsoft.com.au: Host localhost [127.0.0.1] claimed to be [127.0.0.1] Subject: Re: secondary ACPI problems From: "Daniel O'Connor" To: Andrew Gallatin Cc: Nate Lawson , freebsd-current@FreeBSD.ORG In-Reply-To: <15992.59411.447270.923913@grasshopper.cs.duke.edu> References: <15867.45188.294955.716962@grasshopper.cs.duke.edu> <15992.59411.447270.923913@grasshopper.cs.duke.edu> Content-Type: text/plain Organization: Message-Id: <1048113514.19095.2.camel@chowder.gsoft.com.au> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 20 Mar 2003 09:08:34 +1030 Content-Transfer-Encoding: 7bit X-Spam-Score: -1 () CARRIAGE_RETURNS,IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_00_01 X-Scanned-By: MIMEDefang 2.16 (www . roaringpenguin . com / mimedefang) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 2003-03-20 at 08:28, Andrew Gallatin wrote: > Shouldn't a driver without a suspend/resume implementation implicitly > veto the suspend? That's how OS-X does it. I don't think so - the reason being that when a lot of this stuff was written it was done for APM. Since the OS doesn't _usually_ have to frob the hardware when using APM the default makes sense. > Anyway, I'll worry about this when/if somebody can tell me how to get > my video back after suspending to S3: > > none2@pci1:0:0: class=0x030000 card=0x7106174b chip=0x54461002 rev=0x00 hdr=0x00 > vendor = 'ATI Technologies' > device = 'Rage 128 Pro AGP 4x' > class = display Restart X? :-) -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 9A8C 569F 685A D928 5140 AE4B 319B 41F4 5D17 FDD5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 14:41:24 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C210137B404 for ; Wed, 19 Mar 2003 14:41:23 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id E14DF43F85 for ; Wed, 19 Mar 2003 14:41:22 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.8/8.12.8) with ESMTP id h2JMfMRv013661 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Wed, 19 Mar 2003 17:41:22 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h2JMfHG02620; Wed, 19 Mar 2003 17:41:17 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15992.61965.276491.823774@grasshopper.cs.duke.edu> Date: Wed, 19 Mar 2003 17:41:17 -0500 (EST) To: "Daniel O'Connor" Cc: Nate Lawson , freebsd-current@FreeBSD.ORG Subject: Re: secondary ACPI problems In-Reply-To: <1048113514.19095.2.camel@chowder.gsoft.com.au> References: <15867.45188.294955.716962@grasshopper.cs.duke.edu> <15992.59411.447270.923913@grasshopper.cs.duke.edu> <1048113514.19095.2.camel@chowder.gsoft.com.au> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Daniel O'Connor writes: > Restart X? :-) I wish. The board seems totally gone after an ACPI suspend. This seems to be a common problem with ATI cards. Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 15:11:14 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FDF037B401 for ; Wed, 19 Mar 2003 15:11:13 -0800 (PST) Received: from postal3.es.net (postal3.es.net [198.128.3.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 779B743F75 for ; Wed, 19 Mar 2003 15:11:10 -0800 (PST) (envelope-from oberman@es.net) Received: from ptavv.es.net ([198.128.4.29]) by postal3.es.net (Postal Node 3) with ESMTP id MUA74016; Wed, 19 Mar 2003 15:11:09 -0800 Received: from ptavv (localhost [127.0.0.1]) by ptavv.es.net (Tachyon Server) with ESMTP id 991625D07; Wed, 19 Mar 2003 15:11:08 -0800 (PST) To: Andrew Gallatin Cc: "Daniel O'Connor" , Nate Lawson , freebsd-current@FreeBSD.ORG Subject: Re: secondary ACPI problems In-reply-to: Your message of "Wed, 19 Mar 2003 17:41:17 EST." <15992.61965.276491.823774@grasshopper.cs.duke.edu> Date: Wed, 19 Mar 2003 15:11:08 -0800 From: "Kevin Oberman" Message-Id: <20030319231108.991625D07@ptavv.es.net> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > From: Andrew Gallatin > Date: Wed, 19 Mar 2003 17:41:17 -0500 (EST) > Sender: owner-freebsd-current@FreeBSD.ORG > > > Daniel O'Connor writes: > > Restart X? :-) > > I wish. The board seems totally gone after an ACPI suspend. This seems to > be a common problem with ATI cards. Work-around for M7 cards (may or may not work for others): Switch to a character display (CTRL-ALT-F2) Turn off the display (Fn-F3 on my ThinkPad) Press any key to turn on display Switch back to X (ALT-F9) R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 16:14:55 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D19B37B401 for ; Wed, 19 Mar 2003 16:14:54 -0800 (PST) Received: from smtp-send.myrealbox.com (smtp-send.myrealbox.com [192.108.102.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3308F43F85 for ; Wed, 19 Mar 2003 16:14:53 -0800 (PST) (envelope-from wa1ter@myrealbox.com) Received: from myrealbox.com wa1ter@smtp-send.myrealbox.com [67.114.253.226] by smtp-send.myrealbox.com with NetMail SMTP Agent $Revision: 3.32 $ on Novell NetWare via secured & encrypted transport (TLS); Wed, 19 Mar 2003 17:14:54 -0700 Message-ID: <3E78FA77.4010900@myrealbox.com> Date: Wed, 19 Mar 2003 15:17:11 -0800 From: walt Organization: none User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.2.1) Gecko/20030319 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: Re: XFree86-4.3.0,1 +wrapper-1.0_2 References: <3E78740D.6070703@myrealbox.com> <1048089677.1021.2.camel@intra241.intrasoft.lu> In-Reply-To: <1048089677.1021.2.camel@intra241.intrasoft.lu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG CARTER Anthony wrote: > Xfree requires wrapper but seems to break GDM for user logins. Is this > normal, and can I force un-install wrapper without breaking anything? Excuse me, I'm a bonehead. You don't need to uninstall wrapper, just change this symbolic link: /usr/X11R6/bin/X@ -> Xwrapper-4 to this: /usr/X11R6/bin/X@ -> XFree86 This *will* break 'startx' for ordinary users. 'Wrapper' is intended to replace xdm and friends to create the .Xauthority in your home directory. If xdm/gdm/kdm don't create the .Xauthority file then something else must do it -- that something else is 'wrapper'. You don't need to use both gdm and wrapper. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 19:21:22 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8638937B401 for ; Wed, 19 Mar 2003 19:21:14 -0800 (PST) Received: from web21504.mail.yahoo.com (web21504.mail.yahoo.com [66.163.169.15]) by mx1.FreeBSD.org (Postfix) with SMTP id F0FD743F75 for ; Wed, 19 Mar 2003 19:21:13 -0800 (PST) (envelope-from rmhlldr@yahoo.co.uk) Message-ID: <20030320032113.71826.qmail@web21504.mail.yahoo.com> Received: from [194.44.215.158] by web21504.mail.yahoo.com via HTTP; Thu, 20 Mar 2003 03:21:13 GMT Date: Thu, 20 Mar 2003 03:21:13 +0000 (GMT) From: =?iso-8859-1?q?RMH?= Reply-To: alasir@supereva.it Subject: buildkernel and gcc2 To: current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello gentlemen, I have to note that currently it isn't really possible to compile -CURRENT by GCC 2.95.x in the way it has to be. Buildkernel is broken in several places by different means, however GCC 3.2.x passes them successfully, even with no warnings shown. Namely, first problem is in bsd.kern.mk, because of compiler flag -mno-align-long-strings, which is not supported by 2.95.x. Should be autodetected. Second problem is periods in two macros of sys/eventhandler.h, that broke depend: #define EVENTHANDLER_FAST_INVOKE(name, ...) #define EVENTHANDLER_INVOKE(name, ...) Might be fixed in the way like: #define EVENTHANDLER_FAST_INVOKE(name) #define EVENTHANDLER_INVOKE(name, arg1, arg2, arg3) This quick hack will help to pass depend, but unfortunately fail later. Note that EVENTHANDLER_INVOKE is called with either 2 or 4 arguments from different places, so this should be taken into account and fixed: ../../../kern/kern_shutdown.c:260: macro `EVENTHANDLER_INVOKE' used with only 2 args ../../../kern/kern_shutdown.c:360: macro `EVENTHANDLER_INVOKE' used with only 2 args ../../../kern/kern_shutdown.c:367: macro `EVENTHANDLER_INVOKE' used with only 2 args ../../../kern/subr_power.c:105: macro `EVENTHANDLER_INVOKE' used with only 2 args ../../../vm/vm_pageout.c:687: macro `EVENTHANDLER_INVOKE' used with only 2 args NULL arguments may be added. Third problem is in asm code of i386 loader: gcc -c -x assembler-with-cpp -DLOCORE -O2 -pipe -march=pentiumpro -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../../.. -I../../../dev -I../../../contrib/dev/acpica -I../../../contrib/ipfilter -D_KERNEL -include opt_global.h -fno-common -mpreferred-stack-boundary=2 -ffreestanding -Werror ../../../i386/i386/locore.s {standard input}: Assembler messages: {standard input}:1752: Warning: rest of line ignored; first ignored character is `t' {standard input}:1754: Error: unknown pseudo-op: `.' {standard input}:1877: Error: missing ')' {standard input}:1877: Error: missing ')' {standard input}:1877: Error: junk `tmpstk)- 0xc0000000)' after expression *** Error code 1 Not funny. [...] 1752: .globl . tmpstk 1753: .space 0x2000 1754:. tmpstk : [...] 1877: movl $(( . tmpstk )- 0xc0000000 ) ,%esp [...] Instead of: [...] 1752: .globl .tmpstk 1753: .space 0x2000 1754:.tmpstk: [...] 1877: movl $(( .tmpstk )- 0xc0000000 ) ,%esp [...] Fourth; isn't critical, but has to be fixed too: ../../../dev/drm/mga_dma.c: In function `mga_do_init_dma': ../../../dev/drm/mga_dma.c:522: syntax error before `)' ../../../dev/drm/mga_dma.c:532: syntax error before `)' ../../../dev/drm/mga_dma.c:540: syntax error before `)' ../../../dev/drm/mga_dma.c:548: syntax error before `)' ../../../dev/drm/mga_dma.c:556: syntax error before `)' ../../../dev/drm/mga_dma.c:564: syntax error before `)' ../../../dev/drm/mga_dma.c:572: syntax error before `)' ../../../dev/drm/mga_dma.c:590: syntax error before `)' ../../../dev/drm/mga_dma.c:599: syntax error before `)' ../../../dev/drm/mga_dma.c:608: syntax error before `)' ../../../dev/drm/mga_dma.c:656: syntax error before `)' ../../../dev/drm/drm_context.h: In function `mga_context_switch': ../../../dev/drm/drm_context.h:239: syntax error before `)' ../../../dev/drm/drm_context.h: In function `mga_context_switch_complete': ../../../dev/drm/drm_context.h:270: syntax error before `)' ../../../dev/drm/drm_drv.h: In function `mga_init': ../../../dev/drm/drm_drv.h:782: syntax error before `)' ../../../dev/drm/drm_drv.h:806: syntax error before `)' ../../../dev/drm/drm_drv.h: In function `mga_unlock': ../../../dev/drm/drm_drv.h:1407: syntax error before `)' *** Error code 1 Broken macro DRM_ERROR. As for now, it's safe to just comment it out. Fifth; these have probably nothing to do with a particular compiler, just bugs. cc1: warnings being treated as errors ../../../dev/pci/pci.c: In function `pci_delete_resource': ../../../dev/pci/pci.c:1341: warning: implicit declaration of function `rman_get_device' ../../../dev/pci/pci.c:1341: warning: comparison between pointer and integer --- pci.c.old Wed Feb 19 07:47:09 2003 +++ pci.c Tue Mar 19 18:42:41 2003 @@ -1338,7 +1338,7 @@ rle = resource_list_find(rl, type, rid); if (rle) { if (rle->res) { - if (rman_get_device(rle->res) != dev || + if (rle->res->r_dev != dev || rman_get_flags(rle->res) & RF_ACTIVE) { device_printf(dev, "delete_resource: " "Resource still owned by child, oops. " ../../../dev/pci/pci_user.c:81: `MAJOR_AUTO' undeclared here (not in a function) ../../../dev/pci/pci_user.c:81: initializer element is not constant ../../../dev/pci/pci_user.c:81: (near initialization for `pcicdev.d_maj') ../../../dev/pci/pci_user.c:82: initializer element is not constant ../../../dev/pci/pci_user.c:82: (near initialization for `pcicdev') *** Error code 1 A quick hack, #define MAJOR_AUTO 78 cc1: warnings being treated as errors ../../../dev/sound/pcm/buffer.c: In function `sndbuf_acquire': ../../../dev/sound/pcm/buffer.c:461: warning: implicit declaration of function `MIN' *** Error code 1 cc1: warnings being treated as errors ../../../dev/sound/pcm/channel.c: In function `chn_dmaupdate': ../../../dev/sound/pcm/channel.c:166: warning: implicit declaration of function `MIN' *** Error code 1 #define MIN(x, y) (((x) < (y))? (x) : (y)) ../../../fs/devfs/devfs_vnops.c: In function `devfs_lookupx': ../../../fs/devfs/devfs_vnops.c:374: `__VA_ARGS__' undeclared (first use in this function) ../../../fs/devfs/devfs_vnops.c:374: (Each undeclared identifier is reported only once ../../../fs/devfs/devfs_vnops.c:374: for each function it appears in.) ../../../fs/devfs/devfs_vnops.c:374: too few arguments to function *** Error code 1 Follows problem #2: __VA_ARGS__ should be defined, NULL as a temporary workaround, but "too few arguments" breaks it all. cc1: warnings being treated as errors ../../../dev/syscons/syscons.c:1469: conflicting types for `sccnputc' ../../../dev/syscons/syscons.c:197: previous declaration of `sccnputc' ../../../dev/syscons/syscons.c:1511: conflicting types for `sccngetc' ../../../dev/syscons/syscons.c:195: previous declaration of `sccngetc' ../../../dev/syscons/syscons.c:1517: conflicting types for `sccncheckc' ../../../dev/syscons/syscons.c:196: previous declaration of `sccncheckc' ../../../dev/syscons/syscons.c:1523: conflicting types for `sccndbctl' ../../../dev/syscons/syscons.c:198: previous declaration of `sccndbctl' ../../../dev/syscons/syscons.c:3369: conflicting types for `scmmap' ../../../dev/syscons/syscons.c:212: previous declaration of `scmmap' ../../../dev/syscons/syscons.c: In function `scmmap': ../../../dev/syscons/syscons.c:3375: warning: passing arg 3 of pointer to function makes integer from pointer without a cast ../../../dev/syscons/syscons.c:3375: too many arguments to function *** Error code 1 ../../../dev/sio/sio.c: In function `sioinput': ../../../dev/sio/sio.c:1591: `tk_nin' undeclared (first use in this function) ../../../dev/sio/sio.c:1591: (Each undeclared identifier is reported only once ../../../dev/sio/sio.c:1591: for each function it appears in.) ../../../dev/sio/sio.c:1592: `tk_rawcc' undeclared (first use in this function) ../../../dev/sio/sio.c: At top level: ../../../dev/sio/sio.c:3136: conflicting types for `siocncheckc' ../../../dev/sio/sio.c:2769: previous declaration of `siocncheckc' ../../../dev/sio/sio.c:3166: conflicting types for `siocngetc' ../../../dev/sio/sio.c:2770: previous declaration of `siocngetc' ../../../dev/sio/sio.c:3194: conflicting types for `siocnputc' ../../../dev/sio/sio.c:2771: previous declaration of `siocnputc' *** Error code 1 Ugh... Seem to be just broken. Though they may be already fixed. Sixth; 3.2.x passes this, but 2.95.x fails. cc1: warnings being treated as errors ../../../geom/geom_bsd.c: In function `g_bsd_dumpconf': ../../../geom/geom_bsd.c:688: warning: unknown conversion type character `j' in format ../../../geom/geom_bsd.c:690: warning: unknown conversion type character `j' in format ../../../geom/geom_bsd.c:692: warning: unknown conversion type character `j' in format ../../../geom/geom_dump.c: In function `g_conftxt_geom': ../../../geom/geom_dump.c:128: warning: unknown conversion type character `j' in format ../../../geom/geom_dump.c:128: warning: unsigned int format, different type arg (arg 6) ../../../geom/geom_dump.c: In function `g_conf_provider': ../../../geom/geom_dump.c:192: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c: In function `g_slice_dumpconf': ../../../geom/geom_slice.c:271: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c:276: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c:281: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c:283: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c:285: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c:287: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c: In function `g_slice_config': ../../../geom/geom_slice.c:340: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c:340: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c:340: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c:352: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c:352: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c:352: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c: In function `g_slice_conf_hot': ../../../geom/geom_slice.c:386: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c:386: warning: unknown conversion type character `j' in format ../../../geom/geom_slice.c:386: warning: unknown conversion type character `j' in format ../../../geom/geom_subr.c: In function `g_handleattr': ../../../geom/geom_subr.c:473: warning: unknown conversion type character `j' in format ../../../geom/geom_subr.c:473: warning: int format, different type arg (arg 2) ../../../kern/subr_disk.c: In function `disk_err': ../../../kern/subr_disk.c:469: warning: unknown conversion type character `j' in format ../../../kern/subr_disk.c:469: warning: format argument is not a pointer (arg 2) ../../../kern/subr_disk.c:474: warning: unknown conversion type character `j' in format ../../../kern/subr_disk.c:477: warning: unknown conversion type character `j' in format ../../../kern/subr_disk.c:477: warning: unknown conversion type character `j' in format ../../../kern/vfs_bio.c: In function `bufdone': ../../../kern/vfs_bio.c:3119: warning: unknown conversion type character `j' in format ../../../kern/vfs_bio.c:3119: warning: long unsigned int format, different type arg (arg 3) ../../../kern/vfs_bio.c:3119: warning: int format, long int arg (arg 4) ../../../kern/vfs_bio.c:3123: warning: unknown conversion type character `j' in format ../../../kern/vfs_bio.c:3123: warning: long unsigned int format, different type arg (arg 2) ../../../kern/vfs_bio.c:3123: warning: int format, long int arg (arg 3) ../../../kern/vfs_bio.c: In function `vm_hold_free_pages': ../../../kern/vfs_bio.c:3514: warning: unknown conversion type character `j' in format ../../../kern/vfs_bio.c:3514: warning: unknown conversion type character `j' in format [...] Please replace those j's for something more appropriate; I've just removed them. Accompanying typedefs uintmax_t\intmax_t were replaced with u_int\int. Finally, this set of hacks was linked and even booted up :) Besides, the same kernel with the same optimisation flags but compiled with GCC 3.2.1 takes 400K more. Summary. Since I have no write access to CVS repository, hope someone who has will consider things noted above and commit changes. I shall be appreciated for some help to set sys/eventhandler.h properly, to avoid screwing up certain things. Thank you for reading! --- Regards, Rhett __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 19:34: 7 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3585C37B404 for ; Wed, 19 Mar 2003 19:34:05 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 286CA43F93 for ; Wed, 19 Mar 2003 19:34:04 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (smmsp@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.7/8.12.7) with ESMTP id h2K3Y3FU075236; Wed, 19 Mar 2003 19:34:03 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.7/8.12.7/Submit) id h2K3Y2ij075235; Wed, 19 Mar 2003 19:34:02 -0800 (PST) Date: Wed, 19 Mar 2003 19:34:02 -0800 From: "David O'Brien" To: alasir@supereva.it Cc: current@freebsd.org Subject: Re: buildkernel and gcc2 Message-ID: <20030320033402.GA75080@dragon.nuxi.com> Reply-To: current@freebsd.org Mail-Followup-To: David O'Brien , alasir@supereva.it, current@freebsd.org References: <20030320032113.71826.qmail@web21504.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030320032113.71826.qmail@web21504.mail.yahoo.com> User-Agent: Mutt/1.4i 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-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Mar 20, 2003 at 03:21:13AM +0000, RMH wrote: > I have to note that currently it isn't really possible to compile > -CURRENT by GCC 2.95.x in the way it has to be. Buildkernel is > broken in several places by different means, however GCC 3.2.x > passes them successfully, even with no warnings shown. Huh?? What do you mean "in the way it has to be"? We purposely upgraded from GCC 2.95.x to 3.2.x and part of that upgrade gave us C99 features. > Namely, first problem is in bsd.kern.mk, because of compiler flag > -mno-align-long-strings, which is not supported by 2.95.x. Should > be autodetected. The patch for doing this? Since the vast majority of 5-CURRENT's users are using the stock 3.2.x compiler, making the kernel build with gcc 2.95.x isn't going to be high on our list of things to do. However, this doesn't prevent you from making a committable patch. > Second problem is periods in two macros of sys/eventhandler.h, > that broke depend: > > #define EVENTHANDLER_FAST_INVOKE(name, ...) > #define EVENTHANDLER_INVOKE(name, ...) > > Might be fixed in the way like: > > #define EVENTHANDLER_FAST_INVOKE(name) > #define EVENTHANDLER_INVOKE(name, arg1, arg2, arg3) We can certainly put in a #ifdef detection on the GCC version. Please submit a patch for this and the other nits you point out. > ../../../kern/vfs_bio.c:3514: warning: unknown conversion type character `j' in > format > ../../../kern/vfs_bio.c:3514: warning: unknown conversion type character `j' in > format > [...] > > Please replace those j's for something more appropriate; I've > just removed them. Accompanying typedefs uintmax_t\intmax_t > were replaced with u_int\int. "%j" and [u]intmax_t *are* appropriate. They are C99 features, and most find them a god-send. > Summary. Since I have no write access to CVS repository, hope > someone who has will consider things noted above and commit > changes. Not being a committer doesn't keep you from being a contributor. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 19:36:25 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D829437B401 for ; Wed, 19 Mar 2003 19:36:23 -0800 (PST) Received: from pop018.verizon.net (pop018pub.verizon.net [206.46.170.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC51643FB1 for ; Wed, 19 Mar 2003 19:36:22 -0800 (PST) (envelope-from kabaev@bellatlantic.net) Received: from kanhome ([141.154.59.145]) by pop018.verizon.net (InterMail vM.5.01.05.27 201-253-122-126-127-20021220) with ESMTP id <20030320033622.PMMN6884.pop018.verizon.net@kanhome>; Wed, 19 Mar 2003 21:36:22 -0600 Date: Wed, 19 Mar 2003 22:36:20 -0500 From: Alexander Kabaev To: rmhlldr@yahoo.co.uk Cc: current@FreeBSD.ORG Subject: Re: buildkernel and gcc2 Message-Id: <20030319223620.57c600b5.kabaev@bellatlantic.net> In-Reply-To: <20030320032113.71826.qmail@web21504.mail.yahoo.com> References: <20030320032113.71826.qmail@web21504.mail.yahoo.com> Reply-To: ak03@gte.com X-Mailer: Sylpheed version 0.8.10claws18 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at pop018.verizon.net from [141.154.59.145] at Wed, 19 Mar 2003 21:36:21 -0600 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Out of curiosity: what on earth makes you think that compiling -current kernel using older build tools has to be supported? On Thu, 20 Mar 2003 03:21:13 +0000 (GMT) RMH wrote: > Hello gentlemen, > > I have to note that currently it isn't really possible to compile > -CURRENT by GCC 2.95.x in the way it has to be. Buildkernel is > broken in several places by different means, however GCC 3.2.x > passes them successfully, even with no warnings shown. > > Thank you for reading! > > --- > Regards, > Rhett -- Alexander Kabaev To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 21:12:49 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C651437B404 for ; Wed, 19 Mar 2003 21:12:47 -0800 (PST) Received: from post-21.mail.nl.demon.net (post-21.mail.nl.demon.net [194.159.73.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5046743F3F for ; Wed, 19 Mar 2003 21:12:46 -0800 (PST) (envelope-from cls@raggedclown.net) Received: from [212.238.197.102] (helo=mailhost.raggedclown.net) by post-21.mail.nl.demon.net with esmtp (Exim 3.36 #1) id 18vsM9-000LQ9-00 for FreeBSD-current@FreeBSD.org; Thu, 20 Mar 2003 05:12:45 +0000 Received: from localhost (localhost [127.0.0.1]) by mailhost.raggedclown.net (Ragged Clown Mail Gateway [dawn]) with ESMTP id 3E945C7C7 for ; Thu, 20 Mar 2003 06:12:44 +0100 (CET) Received: from willow.raggedclown.net (willow.raggedclown.intra [192.168.1.10]) by mailhost.raggedclown.net (Ragged Clown Mail Gateway [dawn]) with ESMTP id E2B70E79 for ; Thu, 20 Mar 2003 06:12:32 +0100 (CET) Received: by willow.raggedclown.net (Ragged Clown Host [willow], from userid 1009) id 4C3C72256A; Thu, 20 Mar 2003 06:12:33 +0100 (CET) Date: Thu, 20 Mar 2003 06:12:33 +0100 From: Cliff Sarginson To: FreeBSD Current Subject: rarraa AAmerica Message-ID: <20030320051233.GA5843@raggedclown.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.3i X-Virus-Scanned: by AMaViS 0.3.12pre8 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Lets all be thankful as hell Because the statuue of the Liberty has began to smell. -- Regards Cliff [ Thi mail has been checked as virus-free ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 21:13: 4 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00B0F37B401 for ; Wed, 19 Mar 2003 21:13:02 -0800 (PST) Received: from web21511.mail.yahoo.com (web21511.mail.yahoo.com [66.163.169.50]) by mx1.FreeBSD.org (Postfix) with SMTP id 89FCE43FA3 for ; Wed, 19 Mar 2003 21:13:01 -0800 (PST) (envelope-from rmhlldr@yahoo.co.uk) Message-ID: <20030320051301.16790.qmail@web21511.mail.yahoo.com> Received: from [194.44.215.148] by web21511.mail.yahoo.com via HTTP; Thu, 20 Mar 2003 05:13:01 GMT Date: Thu, 20 Mar 2003 05:13:01 +0000 (GMT) From: =?iso-8859-1?q?RMH?= Reply-To: alasir@supereva.it Subject: Re: buildkernel and gcc2 To: current@freebsd.org In-Reply-To: <20030319223620.57c600b5.kabaev@bellatlantic.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Thu, Mar 20, 2003 at 03:21:13AM +0000, RMH wrote: > > I have to note that currently it isn't really possible to compile > > -CURRENT by GCC 2.95.x in the way it has to be. Buildkernel is > > broken in several places by different means, however GCC 3.2.x > > passes them successfully, even with no warnings shown. > > Huh?? What do you mean "in the way it has to be"? We purposely upgraded > from GCC 2.95.x to 3.2.x and part of that upgrade gave us C99 features. Well, I probably had to say "in the way it could [should] be". I've passed through a list of C99 features, but only two things I've seen implemented in kernel: a) macros with a variable number of arguments; b) preprocessor arithmetic done in intmax_t/uintmax_t; Maybe I've missed a couple of extra ones, but anyway I suppose they don't make so much difference to put GCC2 into unsupported list. > > > Namely, first problem is in bsd.kern.mk, because of compiler flag > > -mno-align-long-strings, which is not supported by 2.95.x. Should > > be autodetected. > > The patch for doing this? Since the vast majority of 5-CURRENT's users > are using the stock 3.2.x compiler, making the kernel build with gcc > 2.95.x isn't going to be high on our list of things to do. However, this > doesn't prevent you from making a committable patch. It isn't a problem to export an extra variable and make it known to bsd.kern.mk; the question is, do we want GCC2 to be a supported compiler for -CURRENT or not? If not, all efforts to that way make no sense... > > > Second problem is periods in two macros of sys/eventhandler.h, > > that broke depend: > > > > #define EVENTHANDLER_FAST_INVOKE(name, ...) > > #define EVENTHANDLER_INVOKE(name, ...) > > > > Might be fixed in the way like: > > > > #define EVENTHANDLER_FAST_INVOKE(name) > > #define EVENTHANDLER_INVOKE(name, arg1, arg2, arg3) > > We can certainly put in a #ifdef detection on the GCC version. Please > submit a patch for this and the other nits you point out. Actually I've explained it all before. Those two macros with variable arguments have to be changed towards fixed arguments, __VA_ARGS__ should be replaced with some substitute (out of my present knowledge, so I used NULL), plus "%j" and [u]intmax_t. In other words, #ifdef detection isn't enough, we should decide are C99 features so important to break compatibility, or we can live without them. --- Regards, Rhett __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Mar 19 23:28:21 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5037637B401 for ; Wed, 19 Mar 2003 23:28:19 -0800 (PST) Received: from mail.cordis.lu (mail.cordis.lu [212.190.217.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1D4243FE0 for ; Wed, 19 Mar 2003 23:28:05 -0800 (PST) (envelope-from a.carter@cordis.lu) Received: from mailsvr.intrasoft.lu (mail.intrasoft.lu [212.190.217.251]) by mail.cordis.lu (8.12.8/8.12.8) with ESMTP id h2K7SUNu022879; Thu, 20 Mar 2003 08:28:30 +0100 Received: by mail.intrasoft.lu with Internet Mail Service (5.5.2656.59) id ; Thu, 20 Mar 2003 08:25:51 +0100 Received: from [212.190.217.220] (212.190.217.220 [212.190.217.220]) by mailsvr.intrasoft.lu with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2656.59) id HGD67JZW; Thu, 20 Mar 2003 08:25:50 +0100 From: CARTER Anthony To: walt Cc: freebsd-current@freebsd.org Subject: Re: XFree86-4.3.0,1 +wrapper-1.0_2 In-Reply-To: <3E78FA77.4010900@myrealbox.com> References: <3E78740D.6070703@myrealbox.com> <1048089677.1021.2.camel@intra241.intrasoft.lu> <3E78FA77.4010900@myrealbox.com> Content-Type: text/plain Organization: Message-Id: <1048145591.3458.3.camel@intra241.intrasoft.lu> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 20 Mar 2003 08:33:12 +0100 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=-32.4 required=6.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, REPLY_WITH_QUOTES,USER_AGENT_XIMIAN version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I realise what wrapper is for, but if I type pkg_delete wrappe-1.0_2 at the command line, I get: pkg_delete: package 'wrapper-1.0_2' is required by these other packages and may not be deinstalled: XFree86-4.3.0,1 I never installed wrapper, but when I did a portupgrade to the latest XFree, I guess it installed wrapper as a dependency... I will forcably delete wrapper to see if that fixes the problem (although I will try your solution first...I don't like deleting dependencies)... Thanks, Anthony Carter On Thu, 2003-03-20 at 00:17, walt wrote: > CARTER Anthony wrote: > > Xfree requires wrapper but seems to break GDM for user logins. Is this > > normal, and can I force un-install wrapper without breaking anything? > > Excuse me, I'm a bonehead. You don't need to uninstall wrapper, just > change this symbolic link: > > /usr/X11R6/bin/X@ -> Xwrapper-4 > > to this: > > /usr/X11R6/bin/X@ -> XFree86 > > This *will* break 'startx' for ordinary users. 'Wrapper' is intended > to replace xdm and friends to create the .Xauthority in your home > directory. > > If xdm/gdm/kdm don't create the .Xauthority file then something else > must do it -- that something else is 'wrapper'. > > You don't need to use both gdm and wrapper. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 0:16:36 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFE8737B404; Thu, 20 Mar 2003 00:16:34 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB90A43FAF; Thu, 20 Mar 2003 00:16:28 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.8/8.12.8/Sunbay) with ESMTP id h2K8GI0J009825 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 20 Mar 2003 10:16:19 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.8/8.12.8/Submit) id h2K8G9tC009804; Thu, 20 Mar 2003 10:16:09 +0200 (EET) (envelope-from ru) Date: Thu, 20 Mar 2003 10:16:09 +0200 From: Ruslan Ermilov To: Nate Lawson Cc: current@FreeBSD.ORG, acpi-jp@jp.freebsd.org, iwasaki@FreeBSD.ORG Subject: Re: ACPI-CA import/new diff? Message-ID: <20030320081609.GB8560@sunbay.com> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="M9NhX3UHpAaciwkO" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --M9NhX3UHpAaciwkO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Mar 19, 2003 at 01:34:26PM -0800, Nate Lawson wrote: > It's been a while since we've pulled in Intel's acpi-ca work and there are > a number of bugs fixed since the October 2002 version in -current. Could > someone generate a diff for the latest release and post it for > testing? If enough people indicate there are no problems, it would be > nice to have an import before 5.1R >=20 > http://developer.intel.com/technology/iapc/acpi/downloads/CHANGES.txt >=20 Yes, very much please. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --M9NhX3UHpAaciwkO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+eXjJUkv4P6juNwoRAlLJAJ95b59DSho8pt1033qe/6D4cpOmjQCffAXT ugarwqI+ovMxcHp5Ciyw8Yo= =dRH/ -----END PGP SIGNATURE----- --M9NhX3UHpAaciwkO-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 0:17:59 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEC5637B401 for ; Thu, 20 Mar 2003 00:17:58 -0800 (PST) Received: from mail.cordis.lu (mail.cordis.lu [212.190.217.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id B15F543FA3 for ; Thu, 20 Mar 2003 00:17:57 -0800 (PST) (envelope-from a.carter@cordis.lu) Received: from mailsvr.intrasoft.lu (mail.intrasoft.lu [212.190.217.251]) by mail.cordis.lu (8.12.8/8.12.8) with ESMTP id h2K8INNu023982 for ; Thu, 20 Mar 2003 09:18:23 +0100 Received: by mail.intrasoft.lu with Internet Mail Service (5.5.2656.59) id ; Thu, 20 Mar 2003 09:15:44 +0100 Received: from intra241.intrasoft.lu (212.190.217.220 [212.190.217.220]) by mailsvr.intrasoft.lu with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2656.59) id HGD67J9F; Thu, 20 Mar 2003 09:15:40 +0100 From: CARTER Anthony Reply-To: CARTER Anthony To: freebsd-current@freebsd.org Subject: HELP GDM XFree86 Content-Type: text/plain Organization: Intrasoft Message-Id: <1048148582.668.4.camel@intra241.intrasoft.lu> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 20 Mar 2003 09:23:02 +0100 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=-6.3 required=6.0 tests=USER_AGENT_XIMIAN version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Since upgrading to the latest version of XFree86 available on current (using portupgrade -r), I cannot login as any users using GDM. I can login as root... After doing a few things, I have the following: login as user enter password Your session lasted less than 10 seconds. If you didn't log out it could indicate a configuration problem....blah blah... It gives an option to view the ~/.xsession error messages, but there is nothing there...and if I switch to command line (CTRL+ALT+1) then I see: gdm[585]: run_session_child: Could not open ~/.xsession-errors... Any ideas? Anthony Carter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 0:20: 1 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBFE037B401 for ; Thu, 20 Mar 2003 00:19:59 -0800 (PST) Received: from mail.cordis.lu (mail.cordis.lu [212.190.217.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFFDC43F3F for ; Thu, 20 Mar 2003 00:19:58 -0800 (PST) (envelope-from a.carter@cordis.lu) Received: from mailsvr.intrasoft.lu (mail.intrasoft.lu [212.190.217.251]) by mail.cordis.lu (8.12.8/8.12.8) with ESMTP id h2K8KONu024042 for ; Thu, 20 Mar 2003 09:20:24 +0100 Received: by mail.intrasoft.lu with Internet Mail Service (5.5.2656.59) id ; Thu, 20 Mar 2003 09:17:45 +0100 Received: from intra241.intrasoft.lu (212.190.217.220 [212.190.217.220]) by mailsvr.intrasoft.lu with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2656.59) id HGD67J93; Thu, 20 Mar 2003 09:17:44 +0100 From: CARTER Anthony Reply-To: CARTER Anthony To: freebsd-current@FreeBSD.ORG Subject: Re: HELP GDM XFree86 In-Reply-To: <1048148582.668.4.camel@intra241.intrasoft.lu> References: <1048148582.668.4.camel@intra241.intrasoft.lu> Content-Type: text/plain Organization: Intrasoft Message-Id: <1048148706.668.7.camel@intra241.intrasoft.lu> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 20 Mar 2003 09:25:07 +0100 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=-32.4 required=6.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, REPLY_WITH_QUOTES,USER_AGENT_XIMIAN version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG One more thing...I am running gdm as such from my /etc/ttys file: ttyv8 "/usr/X11R6/bin/gdm -nodaemon" xterm on secure Anthony Carter On Thu, 2003-03-20 at 09:23, CARTER Anthony wrote: > Since upgrading to the latest version of XFree86 available on current > (using portupgrade -r), I cannot login as any users using GDM. I can > login as root... > > After doing a few things, I have the following: > > login as user > enter password > > Your session lasted less than 10 seconds. If you didn't log out it could > indicate a configuration problem....blah blah... > > It gives an option to view the ~/.xsession error messages, but there is > nothing there...and if I switch to command line (CTRL+ALT+1) then I see: > > gdm[585]: run_session_child: Could not open ~/.xsession-errors... > > Any ideas? > > Anthony Carter > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 0:23:22 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 223B237B404 for ; Thu, 20 Mar 2003 00:23:22 -0800 (PST) Received: from mail.cordis.lu (mail.cordis.lu [212.190.217.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6A1343F93 for ; Thu, 20 Mar 2003 00:23:20 -0800 (PST) (envelope-from a.carter@cordis.lu) Received: from mailsvr.intrasoft.lu (mail.intrasoft.lu [212.190.217.251]) by mail.cordis.lu (8.12.8/8.12.8) with ESMTP id h2K8NkNu024107 for ; Thu, 20 Mar 2003 09:23:46 +0100 Received: by mail.intrasoft.lu with Internet Mail Service (5.5.2656.59) id ; Thu, 20 Mar 2003 09:21:07 +0100 Received: from intra241.intrasoft.lu (212.190.217.220 [212.190.217.220]) by mailsvr.intrasoft.lu with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2656.59) id HGD67J95; Thu, 20 Mar 2003 09:21:02 +0100 From: CARTER Anthony Reply-To: CARTER Anthony To: freebsd-current@freebsd.org Subject: Info please...xsession Content-Type: text/plain Organization: Intrasoft Message-Id: <1048148905.668.10.camel@intra241.intrasoft.lu> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 20 Mar 2003 09:28:25 +0100 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=-6.3 required=6.0 tests=USER_AGENT_XIMIAN version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Can someone give me their permissions on a users .xsession-errors file? Doesn't this above file get created automatically if it is deleted? Anthony Carter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 0:54:41 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B71037B401 for ; Thu, 20 Mar 2003 00:54:37 -0800 (PST) Received: from mail.cordis.lu (mail.cordis.lu [212.190.217.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id E765143FA3 for ; Thu, 20 Mar 2003 00:54:34 -0800 (PST) (envelope-from a.carter@cordis.lu) Received: from mailsvr.intrasoft.lu (mail.intrasoft.lu [212.190.217.251]) by mail.cordis.lu (8.12.8/8.12.8) with ESMTP id h2K8t0Nu024943 for ; Thu, 20 Mar 2003 09:55:00 +0100 Received: by mail.intrasoft.lu with Internet Mail Service (5.5.2656.59) id ; Thu, 20 Mar 2003 09:52:21 +0100 Received: from [212.190.217.220] (212.190.217.220 [212.190.217.220]) by mailsvr.intrasoft.lu with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2656.59) id HGD67KDH; Thu, 20 Mar 2003 09:52:18 +0100 From: CARTER Anthony To: CARTER Anthony Cc: freebsd-current@freebsd.org Subject: Re: [Fwd: HELP GDM XFree86] In-Reply-To: <1048150428.810.0.camel@intra241.intrasoft.lu> References: <1048150428.810.0.camel@intra241.intrasoft.lu> Content-Type: text/plain Organization: Message-Id: <1048150781.966.4.camel@intra241.intrasoft.lu> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 20 Mar 2003 09:59:41 +0100 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=-32.5 required=6.0 tests=EMAIL_ATTRIBUTION,FWD_MSG,IN_REP_TO,QUOTED_EMAIL_TEXT, REFERENCES,REPLY_WITH_QUOTES,USER_AGENT_XIMIAN version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I can use XDM no problem, so I guess this is really a GDM problem... It is a temporary solution, but it will do. However, it isn't pretty and I would like to use GDM... Even with XDM, i get this in my xsession-errors file: SESSION_MANAGER=local/intra241.intrasoft.lu:/tmp/.ICE-unix/904 Window manager warning: Broken client! Window 0x600010 (xconsole) changed client leader window or SM client ID Gnome-Message: gnome_execute_async_with_env_fds: returning -1 Gnome-Message: gnome_execute_async_with_env_fds: returning -1 Extra content at the end of the document Extra content at the end of the document Extra content at the end of the document Extra content at the end of the document Extra content at the end of the document Extra content at the end of the document Extra content at the end of the document Extra content at the end of the document Extra content at the end of the document Extra content at the end of the document Extra content at the end of the document Extra content at the end of the document Extra content at the end of the document Extra content at the end of the document ** (gnome-panel:935): WARNING **: Unable to load panel stock icon 'go' Extra content at the end of the document I have already portupgrade -f gnome-panel... Anthony Carter On Thu, 2003-03-20 at 09:53, Anthony Carter wrote: > From: CARTER Anthony > To: freebsd-current@FreeBSD.ORG > Subject: HELP GDM XFree86 > Date: 20 Mar 2003 09:23:02 +0100 > > Since upgrading to the latest version of XFree86 available on current > (using portupgrade -r), I cannot login as any users using GDM. I can > login as root... > > After doing a few things, I have the following: > > login as user > enter password > > Your session lasted less than 10 seconds. If you didn't log out it could > indicate a configuration problem....blah blah... > > It gives an option to view the ~/.xsession error messages, but there is > nothing there...and if I switch to command line (CTRL+ALT+1) then I see: > > gdm[585]: run_session_child: Could not open ~/.xsession-errors... > > Any ideas? > > Anthony Carter > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > > ______________________________________________________________________ > > From: CARTER Anthony > To: freebsd-current@FreeBSD.ORG > Subject: Re: HELP GDM XFree86 > Date: 20 Mar 2003 09:25:07 +0100 > > One more thing...I am running gdm as such from my /etc/ttys file: > > ttyv8 "/usr/X11R6/bin/gdm -nodaemon" xterm on secure > > Anthony Carter > > On Thu, 2003-03-20 at 09:23, CARTER Anthony wrote: > > Since upgrading to the latest version of XFree86 available on current > > (using portupgrade -r), I cannot login as any users using GDM. I can > > login as root... > > > > After doing a few things, I have the following: > > > > login as user > > enter password > > > > Your session lasted less than 10 seconds. If you didn't log out it could > > indicate a configuration problem....blah blah... > > > > It gives an option to view the ~/.xsession error messages, but there is > > nothing there...and if I switch to command line (CTRL+ALT+1) then I see: > > > > gdm[585]: run_session_child: Could not open ~/.xsession-errors... > > > > Any ideas? > > > > Anthony Carter > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-current" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > > ______________________________________________________________________ > > From: Sean Chittenden > To: CARTER Anthony > Cc: freebsd-current@freebsd.org > Subject: Re: HELP GDM XFree86 > Date: 20 Mar 2003 00:26:06 -0800 > > > Since upgrading to the latest version of XFree86 available on current > > (using portupgrade -r), I cannot login as any users using GDM. I can > > login as root... > > > > After doing a few things, I have the following: > > > > login as user > > enter password > > > > Your session lasted less than 10 seconds. If you didn't log out it could > > indicate a configuration problem....blah blah... > > > > It gives an option to view the ~/.xsession error messages, but there is > > nothing there...and if I switch to command line (CTRL+ALT+1) then I see: > > > > gdm[585]: run_session_child: Could not open ~/.xsession-errors... > > > > Any ideas? > > portupgrade -f wrapper > > You need to re-install x11/wrapper. -sc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 0:55:26 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DC6037B404 for ; Thu, 20 Mar 2003 00:55:24 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-150.dsl.lsan03.pacbell.net [63.207.60.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7554043FCB for ; Thu, 20 Mar 2003 00:55:23 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 1F19C66B9B for ; Thu, 20 Mar 2003 00:55:23 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 02DE6100F; Thu, 20 Mar 2003 00:55:22 -0800 (PST) Date: Thu, 20 Mar 2003 00:55:22 -0800 From: Kris Kennaway To: current@FreeBSD.org Subject: Port breakage (isnan undeclared) Message-ID: <20030320085522.GA13634@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="gBBFr7Ir9EOA20Yy" Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --gBBFr7Ir9EOA20Yy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Several ports have become broken recently with the following error: ../../../include/osg/Math:149: `isnan' undeclared (first use this function) http://bento.freebsd.org/errorlogs/i386-5-latest/osg-0.9.3.log http://bento.freebsd.org/errorlogs/i386-5-latest/gnucap-0.31.log http://bento.freebsd.org/errorlogs/i386-5-latest/fractorama-1.6.4.log Can someone please investigate? Kris --gBBFr7Ir9EOA20Yy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+eYH6Wry0BWjoQKURAlybAJ49WwAbZS6nkJtCWv20bBHo5VZhMQCg1WXv FinFNpnnGfPfmJ/sP7gThpo= =JyLI -----END PGP SIGNATURE----- --gBBFr7Ir9EOA20Yy-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 1:27:19 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B51837B401 for ; Thu, 20 Mar 2003 01:27:18 -0800 (PST) Received: from smtp02.syd.iprimus.net.au (smtp04.syd.iprimus.net.au [210.50.76.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7179E43F85 for ; Thu, 20 Mar 2003 01:27:17 -0800 (PST) (envelope-from tim@robbins.dropbear.id.au) Received: from dilbert.robbins.dropbear.id.au (210.50.204.200) by smtp02.syd.iprimus.net.au (7.0.008) id 3E796B4300008113; Thu, 20 Mar 2003 20:27:11 +1100 Received: from dilbert.robbins.dropbear.id.au (h3rpt2qst61p9eyl@localhost [127.0.0.1]) by dilbert.robbins.dropbear.id.au (8.12.6/8.12.6) with ESMTP id h2K9R9JK035885; Thu, 20 Mar 2003 20:27:09 +1100 (EST) (envelope-from tim@dilbert.robbins.dropbear.id.au) Received: (from tim@localhost) by dilbert.robbins.dropbear.id.au (8.12.6/8.12.6/Submit) id h2K9R7If035884; Thu, 20 Mar 2003 20:27:07 +1100 (EST) (envelope-from tim) Date: Thu, 20 Mar 2003 20:27:06 +1100 From: Tim Robbins To: Kris Kennaway Cc: current@freebsd.org Subject: Re: Port breakage (isnan undeclared) Message-ID: <20030320202706.A35844@dilbert.robbins.dropbear.id.au> References: <20030320085522.GA13634@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030320085522.GA13634@rot13.obsecurity.org>; from kris@obsecurity.org on Thu, Mar 20, 2003 at 12:55:22AM -0800 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Mar 20, 2003 at 12:55:22AM -0800, Kris Kennaway wrote: > Several ports have become broken recently with the following error: > > ../../../include/osg/Math:149: `isnan' undeclared (first use this function) > > http://bento.freebsd.org/errorlogs/i386-5-latest/osg-0.9.3.log > http://bento.freebsd.org/errorlogs/i386-5-latest/gnucap-0.31.log > http://bento.freebsd.org/errorlogs/i386-5-latest/fractorama-1.6.4.log > > Can someone please investigate? The prototypes for isnan() &c. need to be put back into math.h, and their source files need to be un-deprecated. Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 1:58:25 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2B3D37B401 for ; Thu, 20 Mar 2003 01:58:24 -0800 (PST) Received: from scribble.fsn.hu (scribble.fsn.hu [193.224.40.95]) by mx1.FreeBSD.org (Postfix) with SMTP id BE1AD43F85 for ; Thu, 20 Mar 2003 01:58:22 -0800 (PST) (envelope-from bra@fsn.hu) Received: (qmail 13618 invoked by uid 1000); 20 Mar 2003 09:58:20 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 20 Mar 2003 09:58:20 -0000 Date: Thu, 20 Mar 2003 10:58:20 +0100 (CET) From: Attila Nagy To: Nate Lawson Cc: current@freebsd.org, acpi-jp@jp.freebsd.org, iwasaki@freebsd.org Subject: Re: ACPI-CA import/new diff? In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, > It's been a while since we've pulled in Intel's acpi-ca work and there > are a number of bugs fixed since the October 2002 version in -current. > Could someone generate a diff for the latest release and post it for > testing? If enough people indicate there are no problems, it would be > nice to have an import before 5.1R > http://developer.intel.com/technology/iapc/acpi/downloads/CHANGES.txt I can -at least- report one problem with the current ACPI code. When loaded, the kernel freezes right after APIC_IO: Testing 8254 interrupt delivery When I unset the acpi_load variable (so I don't load ACPI) it works. I'm glad to test any patches. ----------[ Free Software ISOs - http://www.fsn.hu/?f=download ]---------- Attila Nagy e-mail: Attila.Nagy@fsn.hu Free Software Network (FSN.HU) phone @work: +361 210 1415 (194) cell.: +3630 306 6758 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 2: 0:47 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8DD637B401 for ; Thu, 20 Mar 2003 02:00:44 -0800 (PST) Received: from tao.xtaz.co.uk (pc-62-30-69-139-az.blueyonder.co.uk [62.30.69.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5445C43F85 for ; Thu, 20 Mar 2003 02:00:43 -0800 (PST) (envelope-from matt@xtaz.co.uk) Received: from webmail.xtaz.co.uk (matt@localhost.xtaz.co.uk [127.0.0.1]) by tao.xtaz.co.uk (8.12.8/8.12.8) with ESMTP id h2KA0ggd016990 for ; Thu, 20 Mar 2003 10:00:42 GMT (envelope-from matt@xtaz.co.uk) From: "Matt" To: current@freebsd.org Subject: kernel panic Date: Thu, 20 Mar 2003 10:00:42 +0000 Message-Id: <20030320095759.M26217@xtaz.co.uk> X-Mailer: Open WebMail 1.90 20030212 X-OriginatingIP: 193.35.129.161 (matt) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just had a kernel panic. This is the first time I've tried to give you something useful to go on from a dump so if I haven't included all the information you need let me know. FreeBSD aftershock.xtaz.co.uk 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Wed Mar 19 10:53:19 GMT 2003 root@aftershock.xtaz.co.uk:/usr/obj/usr/src/sys/AFTERSHOCK i386 Script started on Thu Mar 20 09:56:12 2003 [root@aftershock crash]# gdb - k /usr/src/sys/obj/usr/src/sys/AFTERSHOCK/kernel.debug vmcore.0 GNU gdb 5.2.1 (FreeBSD) Copyright 2002 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-undermydesk-freebsd"... panic: bremfree: removing a buffer not on a queue panic messages: --- panic: softdep_disk_io_initiation: read syncing disks, buffers remaining... panic: bremfree: removing a buffer not on a queue Uptime: 15h46m0s Dumping 512 MB ata0: resetting devices .. done 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 336 352 368 384 400 416 432 448 464 480 496 --- #0 doadump () at /usr/src/sys/kern/kern_shutdown.c:239 239 dumping++; (kgdb) where #0 doadump () at /usr/src/sys/kern/kern_shutdown.c:239 #1 0xc0223c13 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:371 #2 0xc0223f13 in panic () at /usr/src/sys/kern/kern_shutdown.c:542 #3 0xc0266932 in bremfreel (bp=0xce6169e8) at /usr/src/sys/kern/vfs_bio.c:636 #4 0xc0266815 in bremfree (bp=0x0) at /usr/src/sys/kern/vfs_bio.c:618 #5 0xc0268c18 in vfs_bio_awrite (bp=0x0) at /usr/src/sys/kern/vfs_bio.c:1687 #6 0xc02f4502 in ffs_fsync (ap=0xd7b92a54) at /usr/src/sys/ufs/ffs/ffs_vnops.c:255 #7 0xc02f36de in ffs_sync (mp=0xc433a800, waitfor=2, cred=0xc150af00, td=0xc03d23a0) at vnode_if.h:612 #8 0xc027c63b in sync (td=0xc03d23a0, uap=0x0) at /usr/src/sys/kern/vfs_syscalls.c:138 #9 0xc0223773 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:280 #10 0xc0223f13 in panic () at /usr/src/sys/kern/kern_shutdown.c:542 #11 0xc02ecc0c in softdep_disk_io_initiation (bp=0xce6169e8) at /usr/src/sys/ufs/ffs/ffs_softdep.c:3465 #12 0xc026f87d in cluster_wbuild (vp=0xc50c7000, size=16384, start_lbn=12, len=2) at buf.h:422 #13 0xc0268c09 in vfs_bio_awrite (bp=0xce59ce90) at /usr/src/sys/kern/vfs_bio.c:1681 #14 0xc02f4502 in ffs_fsync (ap=0xd7b92c48) at /usr/src/sys/ufs/ffs/ffs_vnops.c:255 #15 0xc02f36de in ffs_sync (mp=0xc433a800, waitfor=3, cred=0xc150af00, td=0xc43513c0) at vnode_if.h:612 #16 0xc027beda in sync_fsync (ap=0xd7b92cd0) at /usr/src/sys/kern/vfs_subr.c:3493 #17 0xc0278bde in sched_sync () at vnode_if.h:612 #18 0xc02105a4 in fork_exit (callout=0xc0278a60 , arg=0x0, frame=0x0) at /usr/src/sys/kern/kern_fork.c:875 (kgdb) quit [root@aftershock crash]# exit Script done on Thu Mar 20 09:57:20 2003 --- Matt (matt@xtaz.co.uk) http://www.xtaz.co.uk/ --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 2:14: 7 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC77637B401 for ; Thu, 20 Mar 2003 02:14:05 -0800 (PST) Received: from rrcs-se-24-73-205-166.biz.rr.com (rrcs-se-24-73-205-166.biz.rr.com [24.73.205.166]) by mx1.FreeBSD.org (Postfix) with SMTP id 0E9F143F75 for ; Thu, 20 Mar 2003 02:14:05 -0800 (PST) (envelope-from wade@ezri.org) Received: (qmail 59994 invoked from network); 20 Mar 2003 10:14:04 -0000 Received: from unknown (HELO ezri.org) (192.168.0.46) by rrcs-se-24-73-205-166.biz.rr.com with SMTP; 20 Mar 2003 10:14:04 -0000 Message-ID: <3E799468.1050206@ezri.org> Date: Thu, 20 Mar 2003 05:14:00 -0500 From: Wade Majors User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4a) Gecko/20030317 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: audio playback slow Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I just setup FreeBSD 5.0-CURRENT as of last night on my system. I setup the pcm driver and it detected my onboard VIA audio (at least partially), however playback is at about half speed. I am basically running GENERIC with the debug options commented out and "device pcm" added. I suspect it might be because of the AC97 Codec message, but I do get playback, just slowed down. -Wade ----- Some bits from dmesg: pcm0: port 0xe000-0xe0ff irq 12 at device 17.5 on pci0 pcm0: Some bits from pciconf -l -v: pcm0@pci0:17:5: class=0x040100 card=0x47304005 chip=0x30591106 rev=0x40 hdr=0x00 vendor = 'Via Technologies Inc' device = 'VT8233/33A AC97 Enhanced Audio Controller' class = multimedia subclass = audio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 2:31: 3 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5573437B404 for ; Thu, 20 Mar 2003 02:30:57 -0800 (PST) Received: from tao.xtaz.co.uk (pc-62-30-69-139-az.blueyonder.co.uk [62.30.69.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BB0343F3F for ; Thu, 20 Mar 2003 02:30:56 -0800 (PST) (envelope-from matt@xtaz.co.uk) Received: from webmail.xtaz.co.uk (matt@localhost.xtaz.co.uk [127.0.0.1]) by tao.xtaz.co.uk (8.12.8/8.12.8) with ESMTP id h2KAUsgd017401 for ; Thu, 20 Mar 2003 10:30:54 GMT (envelope-from matt@xtaz.co.uk) From: "Matt" To: current@freebsd.org Subject: Re: kernel panic Date: Thu, 20 Mar 2003 10:30:54 +0000 Message-Id: <20030320102910.M62098@xtaz.co.uk> X-Mailer: Open WebMail 1.90 20030212 X-OriginatingIP: 193.35.129.161 (matt) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ok asked somebody in the know and he suggested adding a backtrace so here we go: Incidently this occured as I was using an NFS mount from this server. FreeBSD aftershock.xtaz.co.uk 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Wed Mar 19 10:53:19 GMT 2003 root@aftershock.xtaz.co.uk:/usr/obj/usr/src/sys/AFTERSHOCK i386 Script started on Thu Mar 20 10:26:59 2003 [root@aftershock crash]# gdb -k /usr/obj/usr/src/sys/AFTERSHOCK/kernel.debug vmcore.0 GNU gdb 5.2.1 (FreeBSD) Copyright 2002 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-undermydesk-freebsd"... panic: bremfree: removing a buffer not on a queue panic messages: --- panic: softdep_disk_io_initiation: read syncing disks, buffers remaining... panic: bremfree: removing a buffer not on a queue Uptime: 15h46m0s Dumping 512 MB ata0: resetting devices .. done 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 336 352 368 384 400 416 432 448 464 480 496 --- #0 doadump () at /usr/src/sys/kern/kern_shutdown.c:239 239 dumping++; (kgdb) where #0 doadump () at /usr/src/sys/kern/kern_shutdown.c:239 #1 0xc0223c13 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:371 #2 0xc0223f13 in panic () at /usr/src/sys/kern/kern_shutdown.c:542 #3 0xc0266932 in bremfreel (bp=0xce6169e8) at /usr/src/sys/kern/vfs_bio.c:636 #4 0xc0266815 in bremfree (bp=0x0) at /usr/src/sys/kern/vfs_bio.c:618 #5 0xc0268c18 in vfs_bio_awrite (bp=0x0) at /usr/src/sys/kern/vfs_bio.c:1687 #6 0xc02f4502 in ffs_fsync (ap=0xd7b92a54) at /usr/src/sys/ufs/ffs/ffs_vnops.c:255 #7 0xc02f36de in ffs_sync (mp=0xc433a800, waitfor=2, cred=0xc150af00, td=0xc03d23a0) at vnode_if.h:612 #8 0xc027c63b in sync (td=0xc03d23a0, uap=0x0) at /usr/src/sys/kern/vfs_syscalls.c:138 #9 0xc0223773 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:280 #10 0xc0223f13 in panic () at /usr/src/sys/kern/kern_shutdown.c:542 #11 0xc02ecc0c in softdep_disk_io_initiation (bp=0xce6169e8) at /usr/src/sys/ufs/ffs/ffs_softdep.c:3465 #12 0xc026f87d in cluster_wbuild (vp=0xc50c7000, size=16384, start_lbn=12, len=2) at buf.h:422 #13 0xc0268c09 in vfs_bio_awrite (bp=0xce59ce90) at /usr/src/sys/kern/vfs_bio.c:1681 #14 0xc02f4502 in ffs_fsync (ap=0xd7b92c48) at /usr/src/sys/ufs/ffs/ffs_vnops.c:255 #15 0xc02f36de in ffs_sync (mp=0xc433a800, waitfor=3, cred=0xc150af00, td=0xc43513c0) at vnode_if.h:612 #16 0xc027beda in sync_fsync (ap=0xd7b92cd0) at /usr/src/sys/kern/vfs_subr.c:3493 #17 0xc0278bde in sched_sync () at vnode_if.h:612 #18 0xc02105a4 in fork_exit (callout=0xc0278a60 , arg=0x0, frame=0x0) at /usr/src/sys/kern/kern_fork.c:875 (kgdb) bt full #0 doadump () at /usr/src/sys/kern/kern_shutdown.c:239 No locals. #1 0xc0223c13 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:371 No locals. #2 0xc0223f13 in panic () at /usr/src/sys/kern/kern_shutdown.c:542 td = (struct thread *) 0xc43513c0 bootopt = 260 newpanic = 0 buf = "bremfree: removing a buffer not on a queue", '\0' #3 0xc0266932 in bremfreel (bp=0xce6169e8) at /usr/src/sys/kern/vfs_bio.c:636 old_qindex = 0 #4 0xc0266815 in bremfree (bp=0x0) at /usr/src/sys/kern/vfs_bio.c:618 No locals. #5 0xc0268c18 in vfs_bio_awrite (bp=0x0) at /usr/src/sys/kern/vfs_bio.c:1687 i = 1 j = 0 lblkno = 12 vp = (struct vnode *) 0xc50c7000 ncl = -832476696 nwritten = -832476696 size = 16384 maxcl = 8 #6 0xc02f4502 in ffs_fsync (ap=0xd7b92a54) at /usr/src/sys/ufs/ffs/ffs_vnops.c:255 vp = (struct vnode *) 0x0 ip = (struct inode *) 0xce6169e8 bp = (struct buf *) 0xce6169e8 nbp = (struct buf *) 0xc50c7000 error = 0 wait = 0 passes = 4 skipmeta = 0 lbn = 14 #7 0xc02f36de in ffs_sync (mp=0xc433a800, waitfor=2, cred=0xc150af00, td=0xc03d23a0) at vnode_if.h:612 nvp = (struct vnode *) 0xc5054000 vp = (struct vnode *) 0xc50c7000 devvp = (struct vnode *) 0xc50c7000 ip = (struct inode *) 0x0 ump = (struct ufsmount *) 0xc434dc00 fs = (struct fs *) 0xc4265800 ---Type to continue, or q to quit--- error = 0 count = 0 wait = 0 lockreq = 18 allerror = 0 #8 0xc027c63b in sync (td=0xc03d23a0, uap=0x0) at /usr/src/sys/kern/vfs_syscalls.c:138 mp = (struct mount *) 0xc433a800 nmp = (struct mount *) 0x0 asyncflag = 0 #9 0xc0223773 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:280 bp = (struct buf *) 0x0 iter = -1051614964 nbusy = -1051614976 pbusy = -1070011433 subiter = -1051614976 #10 0xc0223f13 in panic () at /usr/src/sys/kern/kern_shutdown.c:542 td = (struct thread *) 0xc43513c0 bootopt = 256 newpanic = 1 buf = "bremfree: removing a buffer not on a queue", '\0' #11 0xc02ecc0c in softdep_disk_io_initiation (bp=0xce6169e8) at /usr/src/sys/ufs/ffs/ffs_softdep.c:3465 wk = (struct worklist *) 0xce6169e8 nextwk = (struct worklist *) 0xc042dfc0 indirdep = (struct indirdep *) 0xc inodedep = (struct inodedep *) 0x0 #12 0xc026f87d in cluster_wbuild (vp=0xc50c7000, size=16384, start_lbn=12, len=2) at buf.h:422 bp = (struct buf *) 0xce5927d8 tbp = (struct buf *) 0xce6169e8 i = 1 j = 4 totalwritten = 0 dbsize = 32 #13 0xc0268c09 in vfs_bio_awrite (bp=0xce59ce90) at /usr/src/sys/kern/vfs_bio.c:1681 i = 2 j = 0 lblkno = 11 vp = (struct vnode *) 0xc50c7000 ncl = 2 nwritten = 2 ---Type to continue, or q to quit--- size = 16384 maxcl = 8 #14 0xc02f4502 in ffs_fsync (ap=0xd7b92c48) at /usr/src/sys/ufs/ffs/ffs_vnops.c:255 vp = (struct vnode *) 0xce59ce90 ip = (struct inode *) 0x2 bp = (struct buf *) 0x2 nbp = (struct buf *) 0xc50c7000 error = 0 wait = 0 passes = 4 skipmeta = 0 lbn = 14 #15 0xc02f36de in ffs_sync (mp=0xc433a800, waitfor=3, cred=0xc150af00, td=0xc43513c0) at vnode_if.h:612 nvp = (struct vnode *) 0xc5054000 vp = (struct vnode *) 0xc50c7000 devvp = (struct vnode *) 0xc50c7000 ip = (struct inode *) 0x0 ump = (struct ufsmount *) 0xc434dc00 fs = (struct fs *) 0xc4265800 error = 0 count = 0 wait = 0 lockreq = 18 allerror = 0 #16 0xc027beda in sync_fsync (ap=0xd7b92cd0) at /usr/src/sys/kern/vfs_subr.c:3493 syncvp = (struct vnode *) 0x0 mp = (struct mount *) 0xc433a800 td = (struct thread *) 0xc43513c0 error = -675730224 asyncflag = 0 #17 0xc0278bde in sched_sync () at vnode_if.h:612 slp = (struct synclist *) 0xd7b92cd0 vp = (struct vnode *) 0x0 mp = (struct mount *) 0x0 starttime = 1048152974 td = (struct thread *) 0xc43513c0 #18 0xc02105a4 in fork_exit (callout=0xc0278a60 , arg=0x0, frame=0x0) at /usr/src/sys/kern/kern_fork.c:875 td = (struct thread *) 0x0 ---Type to continue, or q to quit--- p = (struct proc *) 0xc434f800 (kgdb) quit [root@aftershock crash]# exit exit Script done on Thu Mar 20 10:27:43 2003 --- Matt (matt@xtaz.co.uk) http://www.xtaz.co.uk/ --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 2:35:50 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13A8E37B401 for ; Thu, 20 Mar 2003 02:35:49 -0800 (PST) Received: from ciistr1.ist.utl.pt (ciistr1.ist.utl.pt [193.136.128.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id D906E43FA3 for ; Thu, 20 Mar 2003 02:35:47 -0800 (PST) (envelope-from brunomiguel@netcabo.pt) Received: from dequim.ist.utl.pt (dequim.ist.utl.pt [193.136.165.110]) by ciistr1.ist.utl.pt (Postfix on SuSE Linux 7.1 (Alpha)) with ESMTP id 943C147EB3 for ; Thu, 20 Mar 2003 10:35:53 +0000 (WET) Received: from netcabo.pt (bio98.ist.utl.pt [193.136.165.131]) by dequim.ist.utl.pt (Postfix) with ESMTP id 7DAD37506 for ; Thu, 20 Mar 2003 10:35:43 +0000 (WET) Message-ID: <3E799998.6020707@netcabo.pt> Date: Thu, 20 Mar 2003 10:36:08 +0000 From: Bruno Afonso User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.2.1) Gecko/20030317 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: Re: audio playback slow References: <3E799468.1050206@ezri.org> In-Reply-To: <3E799468.1050206@ezri.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Wade Majors wrote: Hello, > Some bits from dmesg: > pcm0: port 0xe000-0xe0ff irq 12 at device 17.5 on pci0 > pcm0: > > Some bits from pciconf -l -v: > pcm0@pci0:17:5: class=0x040100 card=0x47304005 chip=0x30591106 rev=0x40 > hdr=0x00 > vendor = 'Via Technologies Inc' > device = 'VT8233/33A AC97 Enhanced Audio Controller' > class = multimedia > subclass = audio none0@pci0:17:5: class=0x040100 card=0x24dc4005 chip=0x30591106 rev=0x10 hdr=0x00 vendor = 'VIA Technologies Inc' device = 'VT8233/33A AC97 Enhanced Audio Controller' class = multimedia subclass = audio Is the 33A expected to be supported in the future? :-) -- Bruno Miguel Afonso Biological Eng. student. brunomiguel@dequim.ist.utl.pt D.E.Q. @ I.S.T. - Portugal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 2:52:39 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E67CB37B405 for ; Thu, 20 Mar 2003 02:52:36 -0800 (PST) Received: from sbk-gw.sibnet.ru (sbk-gw.sibnet.ru [217.70.96.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id C534443F93 for ; Thu, 20 Mar 2003 02:52:33 -0800 (PST) (envelope-from stranger@sberbank.sibnet.ru) Received: from sbk-gw.sibnet.ru (localhost.sibnet.ru [127.0.0.1]) by sbk-gw.sibnet.ru (8.12.6/8.12.6) with ESMTP id h2KAqHuI033590; Thu, 20 Mar 2003 16:52:17 +0600 (NOVT) (envelope-from stranger@sberbank.sibnet.ru) Received: from localhost (stranger@localhost) by sbk-gw.sibnet.ru (8.12.6/8.12.6/Submit) with ESMTP id h2KAqHrW033587; Thu, 20 Mar 2003 16:52:17 +0600 (NOVT) X-Authentication-Warning: sbk-gw.sibnet.ru: stranger owned process doing -bs Date: Thu, 20 Mar 2003 16:52:17 +0600 (NOVT) From: "Maxim M. Kazachek" X-X-Sender: stranger@sbk-gw.sibnet.ru To: CARTER Anthony Cc: freebsd-current@FreeBSD.ORG Subject: Re: XFree86-4.3.0,1 +wrapper-1.0_2 In-Reply-To: <1048145591.3458.3.camel@intra241.intrasoft.lu> Message-ID: <20030320165100.X33575@sbk-gw.sibnet.ru> References: <3E78740D.6070703@myrealbox.com> <1048089677.1021.2.camel@intra241.intrasoft.lu> <3E78FA77.4010900@myrealbox.com> <1048145591.3458.3.camel@intra241.intrasoft.lu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You can forcibly delete wrapper package, and the do pkgdb -F and delete dependency on it... Only XFree metaport is depends on it. Sincerely, Maxim M. Kazachek mailto:stranger@sberbank.sibnet.ru mailto:stranger@fpm.ami.nstu.ru On Thu, 20 Mar 2003, CARTER Anthony wrote: >I realise what wrapper is for, but if I type pkg_delete wrappe-1.0_2 at >the command line, I get: > >pkg_delete: package 'wrapper-1.0_2' is required by these other packages >and may not be deinstalled: >XFree86-4.3.0,1 > >I never installed wrapper, but when I did a portupgrade to the latest >XFree, I guess it installed wrapper as a dependency... > >I will forcably delete wrapper to see if that fixes the problem >(although I will try your solution first...I don't like deleting >dependencies)... > >Thanks, > >Anthony Carter > >On Thu, 2003-03-20 at 00:17, walt wrote: >> CARTER Anthony wrote: >> > Xfree requires wrapper but seems to break GDM for user logins. Is this >> > normal, and can I force un-install wrapper without breaking anything? >> >> Excuse me, I'm a bonehead. You don't need to uninstall wrapper, just >> change this symbolic link: >> >> /usr/X11R6/bin/X@ -> Xwrapper-4 >> >> to this: >> >> /usr/X11R6/bin/X@ -> XFree86 >> >> This *will* break 'startx' for ordinary users. 'Wrapper' is intended >> to replace xdm and friends to create the .Xauthority in your home >> directory. >> >> If xdm/gdm/kdm don't create the .Xauthority file then something else >> must do it -- that something else is 'wrapper'. >> >> You don't need to use both gdm and wrapper. >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-current" in the body of the message > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-current" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 3: 4:42 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 479C037B401 for ; Thu, 20 Mar 2003 03:04:41 -0800 (PST) Received: from mail.dada.it (mail4.dada.it [195.110.100.4]) by mx1.FreeBSD.org (Postfix) with SMTP id DD67143F3F for ; Thu, 20 Mar 2003 03:04:34 -0800 (PST) (envelope-from riccardo@torrini.org) Received: (qmail 6770 invoked from network); 20 Mar 2003 11:04:29 -0000 Received: from unknown (HELO torrini.org) (195.110.114.101) by mail.dada.it with SMTP; 20 Mar 2003 11:04:29 -0000 Received: from trudy.torrini.home (localhost.torrini.home [127.0.0.1]) by torrini.org (8.12.6/8.12.6) with ESMTP id h2KB4UbB015190; Thu, 20 Mar 2003 12:04:30 +0100 (CET) (envelope-from riccardo@trudy.torrini.home) Received: (from riccardo@localhost) by trudy.torrini.home (8.12.6/8.12.6/Submit) id h2KB4TGe015189; Thu, 20 Mar 2003 12:04:29 +0100 (CET) (envelope-from riccardo) Date: Thu, 20 Mar 2003 12:04:29 +0100 From: Riccardo Torrini To: CARTER Anthony Cc: freebsd-current@FreeBSD.ORG Subject: Re: Info please...xsession Message-ID: <20030320110429.GA15020@trudy.torrini.home> References: <1048148905.668.10.camel@intra241.intrasoft.lu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1048148905.668.10.camel@intra241.intrasoft.lu> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Mar 20, 2003 at 09:28:25AM +0100, CARTER Anthony wrote: > Can someone give me their permissions on a users .xsession-errors > file? -rw------- {me} {mygroup} > Doesn't this above file get created automatically if it is deleted? Yes. At least here ;) FYI: I still using XFree86-4.2.1 with wdm started from /etc/ttys. -- Riccardo. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 3:15:10 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B60D37B401 for ; Thu, 20 Mar 2003 03:15:09 -0800 (PST) Received: from mail.cordis.lu (mail.cordis.lu [212.190.217.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id B356F43FA3 for ; Thu, 20 Mar 2003 03:15:07 -0800 (PST) (envelope-from a.carter@cordis.lu) Received: from mailsvr.intrasoft.lu (mail.intrasoft.lu [212.190.217.251]) by mail.cordis.lu (8.12.8/8.12.8) with ESMTP id h2KBFYNu030116 for ; Thu, 20 Mar 2003 12:15:34 +0100 Received: by mail.intrasoft.lu with Internet Mail Service (5.5.2656.59) id ; Thu, 20 Mar 2003 12:12:53 +0100 Received: from [212.190.217.170] (212.190.217.170 [212.190.217.170]) by mailsvr.intrasoft.lu with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2656.59) id HGD67KY4; Thu, 20 Mar 2003 12:12:50 +0100 From: CARTER Anthony To: freebsd-current@freebsd.org Subject: Where is compat4x v 5.0CURRENT-20030218? Content-Type: text/plain Organization: Message-Id: <1048159212.642.16.camel@intra241.intrasoft.lu> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 20 Mar 2003 12:20:13 +0100 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=-6.3 required=6.0 tests=USER_AGENT_XIMIAN version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hey, I am looking for 5.0-CURRENT-20030218 version of compat4x for running ymessenger, but I can only find 20020917 version on 4 different FTP mirrors (including freebsd's main one). Any ideas? Where is this? Also, the 200212xx directory for compat4x is empty...Normal? Anthony Carter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 3:57:30 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7CAB37B401 for ; Thu, 20 Mar 2003 03:57:29 -0800 (PST) Received: from dsl093-019-250.msp1.dsl.speakeasy.net (dsl093-019-250.msp1.dsl.speakeasy.net [66.93.19.250]) by mx1.FreeBSD.org (Postfix) with SMTP id D578443FBD for ; Thu, 20 Mar 2003 03:57:28 -0800 (PST) (envelope-from peter@jocose.org) Received: (qmail 17702 invoked from network); 20 Mar 2003 11:57:28 -0000 Received: from unknown (HELO jocose.org) (10.0.0.198) by 0 with SMTP; 20 Mar 2003 11:57:28 -0000 Message-ID: <3E79ACC2.7000404@jocose.org> Date: Thu, 20 Mar 2003 05:57:54 -0600 From: Peter Schultz User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3b) Gecko/20030226 X-Accept-Language: en-us, en MIME-Version: 1.0 To: CARTER Anthony Cc: freebsd-current@freebsd.org Subject: Re: Where is compat4x v 5.0CURRENT-20030218? References: <1048159212.642.16.camel@intra241.intrasoft.lu> In-Reply-To: <1048159212.642.16.camel@intra241.intrasoft.lu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG CARTER Anthony wrote: > Hey, I am looking for 5.0-CURRENT-20030218 version of compat4x for > running ymessenger, but I can only find 20020917 version on 4 different > FTP mirrors (including freebsd's main one). > > Any ideas? Where is this? > > Also, the 200212xx directory for compat4x is empty...Normal? > > Anthony Carter > why not use make.conf: COMPAT4X= yes After all, you are using CURRENT. ???, Pete... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 5:38:26 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1A7B37B401 for ; Thu, 20 Mar 2003 05:38:25 -0800 (PST) Received: from mailout03.sul.t-online.com (mailout03.sul.t-online.com [194.25.134.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id D71E143F3F for ; Thu, 20 Mar 2003 05:38:24 -0800 (PST) (envelope-from blitz@jmmr.no-ip.com) Received: from fwd09.sul.t-online.de by mailout03.sul.t-online.com with smtp id 18w0FS-0001Zw-00; Thu, 20 Mar 2003 14:38:22 +0100 Received: from jmmr.no-ip.com (520088592922-0001@[217.85.108.184]) by fmrl09.sul.t-online.com with esmtp id 18w0FF-0t6NcmC; Thu, 20 Mar 2003 14:38:09 +0100 Received: from jmmr.no-ip.com (blitz@localhost [127.0.0.1]) by jmmr.no-ip.com (8.12.8/8.12.8) with ESMTP id h2KDbcR9033061 for ; Thu, 20 Mar 2003 14:37:53 +0100 (CET) (envelope-from blitz@jmmr.no-ip.com) Received: (from blitz@localhost) by jmmr.no-ip.com (8.12.8/8.12.8/Submit) id h2KDbZLA033060 for freebsd-current@FreeBSD.ORG; Thu, 20 Mar 2003 14:37:35 +0100 (CET) (envelope-from blitz) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <1048148706.668.7.camel@intra241.intrasoft.lu> Date: Thu, 20 Mar 2003 14:37:34 +0100 (CET) From: der_julian@web.de To: freebsd-current@FreeBSD.ORG Subject: Re: HELP GDM XFree86 X-Sender: 520088592922-0001@t-dialin.net Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 20-Mar-2003 CARTER Anthony wrote: > One more thing...I am running gdm as such from my /etc/ttys file: > > ttyv8 "/usr/X11R6/bin/gdm -nodaemon" xterm on secure I think the GDM documentation says, that you should start it via the supplied rc.d autostart script in order to avoid certain problems. HTH Regards, Julian Stecklina To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 7:59:31 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F02537B401 for ; Thu, 20 Mar 2003 07:59:29 -0800 (PST) Received: from sbk-gw.sibnet.ru (sbk-gw.sibnet.ru [217.70.96.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 357A043FAF for ; Thu, 20 Mar 2003 07:59:27 -0800 (PST) (envelope-from stranger@sberbank.sibnet.ru) Received: from sbk-gw.sibnet.ru (localhost.sibnet.ru [127.0.0.1]) by sbk-gw.sibnet.ru (8.12.6/8.12.6) with ESMTP id h2KFxZuI034417; Thu, 20 Mar 2003 21:59:35 +0600 (NOVT) (envelope-from stranger@sberbank.sibnet.ru) Received: from localhost (stranger@localhost) by sbk-gw.sibnet.ru (8.12.6/8.12.6/Submit) with ESMTP id h2KFxXLo034414; Thu, 20 Mar 2003 21:59:34 +0600 (NOVT) X-Authentication-Warning: sbk-gw.sibnet.ru: stranger owned process doing -bs Date: Thu, 20 Mar 2003 21:59:33 +0600 (NOVT) From: "Maxim M. Kazachek" X-X-Sender: stranger@sbk-gw.sibnet.ru To: der_julian@web.de Cc: freebsd-current@FreeBSD.ORG Subject: Re: HELP GDM XFree86 In-Reply-To: Message-ID: <20030320215717.P34413@sbk-gw.sibnet.ru> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It depends on GNOME version... GNOME-1.4.something installs gdm that is started by init... GNOME-2.2.0 installs gdm that is supposed to start via /usr/X11R6/etc/rc.d/gdm.sh... Sincerely, Maxim M. Kazachek mailto:stranger@sberbank.sibnet.ru mailto:stranger@fpm.ami.nstu.ru On Thu, 20 Mar 2003 der_julian@web.de wrote: >On 20-Mar-2003 CARTER Anthony wrote: >> One more thing...I am running gdm as such from my /etc/ttys file: >> >> ttyv8 "/usr/X11R6/bin/gdm -nodaemon" xterm on secure > >I think the GDM documentation says, that you should start it via the supplied >rc.d autostart script in order to avoid certain problems. HTH > >Regards, >Julian Stecklina > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-current" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 8: 0:44 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41A1337B401; Thu, 20 Mar 2003 08:00:42 -0800 (PST) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAC5D43F85; Thu, 20 Mar 2003 08:00:41 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) by troutmask.apl.washington.edu (8.12.8/8.12.7) with ESMTP id h2KG0fgF067667; Thu, 20 Mar 2003 08:00:41 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.12.8/8.12.8/Submit) id h2KG0ev3067666; Thu, 20 Mar 2003 08:00:40 -0800 (PST) Date: Thu, 20 Mar 2003 08:00:40 -0800 From: Steve Kargl To: Attila Nagy Cc: Nate Lawson , current@FreeBSD.ORG, acpi-jp@jp.freebsd.org, iwasaki@FreeBSD.ORG Subject: Re: ACPI-CA import/new diff? Message-ID: <20030320160040.GA67630@troutmask.apl.washington.edu> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Mar 20, 2003 at 10:58:20AM +0100, Attila Nagy wrote: > Hello, > > > It's been a while since we've pulled in Intel's acpi-ca work and there > > are a number of bugs fixed since the October 2002 version in -current. > > Could someone generate a diff for the latest release and post it for > > testing? If enough people indicate there are no problems, it would be > > nice to have an import before 5.1R > > http://developer.intel.com/technology/iapc/acpi/downloads/CHANGES.txt > I can -at least- report one problem with the current ACPI code. When > loaded, the kernel freezes right after > APIC_IO: Testing 8254 interrupt delivery > > When I unset the acpi_load variable (so I don't load ACPI) it works. > Do you have "option MAXMEM" set in your kernel config file? I had a similar problem and discovered that the MAXMEM setting and acpi's idea of the memory in the system were slightly different. The is on the order of 1 kB. -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 8:36:57 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2ACDC37B401 for ; Thu, 20 Mar 2003 08:36:56 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id C802F43F75 for ; Thu, 20 Mar 2003 08:36:52 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id DAA31068; Fri, 21 Mar 2003 03:36:44 +1100 Date: Fri, 21 Mar 2003 03:36:43 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: current@FreeBSD.ORG Cc: alasir@supereva.it Subject: Re: buildkernel and gcc2 In-Reply-To: <20030320033402.GA75080@dragon.nuxi.com> Message-ID: <20030321032434.U13596@gamplex.bde.org> References: <20030320032113.71826.qmail@web21504.mail.yahoo.com> <20030320033402.GA75080@dragon.nuxi.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 19 Mar 2003, David O'Brien wrote: > On Thu, Mar 20, 2003 at 03:21:13AM +0000, RMH wrote: > > I have to note that currently it isn't really possible to compile > > -CURRENT by GCC 2.95.x in the way it has to be. Buildkernel is > > ... Building -current requires a -current compiler. > Huh?? What do you mean "in the way it has to be"? We purposely upgraded > from GCC 2.95.x to 3.2.x and part of that upgrade gave us C99 features. > > Second problem is periods in two macros of sys/eventhandler.h, > > that broke depend: > > > > #define EVENTHANDLER_FAST_INVOKE(name, ...) > > #define EVENTHANDLER_INVOKE(name, ...) > > > > Might be fixed in the way like: > > > > #define EVENTHANDLER_FAST_INVOKE(name) > > #define EVENTHANDLER_INVOKE(name, arg1, arg2, arg3) > > We can certainly put in a #ifdef detection on the GCC version. Please > submit a patch for this and the other nits you point out. Please don't. Complications to support the old version would defeat the point of purposely regrading from GCC 2.95.x to 3.2.x. But I'd be happy if this wer fixed this by not using variadic macros anywhere. Only the ". tmpstk" syntax error and the macro that produce it are just wrong (RELENG4 and -current have a differently wrong vewrsions that happen to be accepted by gcc-2 and gcc-3, respectively). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 8:48:41 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FAF237B401 for ; Thu, 20 Mar 2003 08:48:36 -0800 (PST) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70BF643F75 for ; Thu, 20 Mar 2003 08:48:32 -0800 (PST) (envelope-from marcus@marcuscom.com) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) by creme-brulee.marcuscom.com (8.12.8/8.12.8) with ESMTP id h2KGknrI060708; Thu, 20 Mar 2003 11:46:49 -0500 (EST) (envelope-from marcus@marcuscom.com) Subject: Re: [Fwd: HELP GDM XFree86] From: Joe Marcus Clarke To: CARTER Anthony Cc: freebsd-current@FreeBSD.ORG In-Reply-To: <1048150781.966.4.camel@intra241.intrasoft.lu> References: <1048150428.810.0.camel@intra241.intrasoft.lu> <1048150781.966.4.camel@intra241.intrasoft.lu> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-VkHypeH7bSf5sI4/YDg1" Organization: MarcusCom, Inc. Message-Id: <1048178890.321.3.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 20 Mar 2003 11:48:10 -0500 X-Spam-Status: No, hits=-39.4 required=5.0 tests=BAYES_01,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,QUOTE_TWICE_1,REFERENCES, REPLY_WITH_QUOTES autolearn=ham version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-VkHypeH7bSf5sI4/YDg1 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2003-03-20 at 03:59, CARTER Anthony wrote: > I can use XDM no problem, so I guess this is really a GDM problem... >=20 > It is a temporary solution, but it will do. However, it isn't pretty and > I would like to use GDM... You cannot start gdm2 out of /etc/ttys. You need to read the gdm2 pkg-message, and use the included rc script to start gdm2. >=20 > Even with XDM, i get this in my xsession-errors file: >=20 > SESSION_MANAGER=3Dlocal/intra241.intrasoft.lu:/tmp/.ICE-unix/904 > Window manager warning: Broken client! Window 0x600010 (xconsole) > changed client leader window or SM client ID > Gnome-Message: gnome_execute_async_with_env_fds: returning -1 > Gnome-Message: gnome_execute_async_with_env_fds: returning -1 > Extra content at the end of the document > Extra content at the end of the document > Extra content at the end of the document > Extra content at the end of the document > Extra content at the end of the document > Extra content at the end of the document > Extra content at the end of the document > Extra content at the end of the document > Extra content at the end of the document > Extra content at the end of the document > Extra content at the end of the document > Extra content at the end of the document > Extra content at the end of the document > Extra content at the end of the document > = =20 > ** (gnome-panel:935): WARNING **: Unable to load panel stock icon 'go' > =20 > Extra content at the end of the document >=20 >=20 > I have already portupgrade -f gnome-panel... These messages are from nautilus and gnome-panel, they are "normal," and non-fatal. You can disregard. Joe >=20 > Anthony Carter >=20 >=20 > On Thu, 2003-03-20 at 09:53, Anthony Carter wrote: > > From: CARTER Anthony > > To: freebsd-current@FreeBSD.ORG > > Subject: HELP GDM XFree86 > > Date: 20 Mar 2003 09:23:02 +0100 > >=20 > > Since upgrading to the latest version of XFree86 available on current > > (using portupgrade -r), I cannot login as any users using GDM. I can > > login as root... > >=20 > > After doing a few things, I have the following: > >=20 > > login as user > > enter password > >=20 > > Your session lasted less than 10 seconds. If you didn't log out it coul= d > > indicate a configuration problem....blah blah... > >=20 > > It gives an option to view the ~/.xsession error messages, but there is > > nothing there...and if I switch to command line (CTRL+ALT+1) then I see= : > >=20 > > gdm[585]: run_session_child: Could not open ~/.xsession-errors... > >=20 > > Any ideas? > >=20 > > Anthony Carter > >=20 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-current" in the body of the message > >=20 > > ______________________________________________________________________ > >=20 > > From: CARTER Anthony > > To: freebsd-current@FreeBSD.ORG > > Subject: Re: HELP GDM XFree86 > > Date: 20 Mar 2003 09:25:07 +0100 > >=20 > > One more thing...I am running gdm as such from my /etc/ttys file: > >=20 > > ttyv8 "/usr/X11R6/bin/gdm -nodaemon" xterm on secure > >=20 > > Anthony Carter > >=20 > > On Thu, 2003-03-20 at 09:23, CARTER Anthony wrote: > > > Since upgrading to the latest version of XFree86 available on current > > > (using portupgrade -r), I cannot login as any users using GDM. I can > > > login as root... > > >=20 > > > After doing a few things, I have the following: > > >=20 > > > login as user > > > enter password > > >=20 > > > Your session lasted less than 10 seconds. If you didn't log out it co= uld > > > indicate a configuration problem....blah blah... > > >=20 > > > It gives an option to view the ~/.xsession error messages, but there = is > > > nothing there...and if I switch to command line (CTRL+ALT+1) then I s= ee: > > >=20 > > > gdm[585]: run_session_child: Could not open ~/.xsession-errors... > > >=20 > > > Any ideas? > > >=20 > > > Anthony Carter > > >=20 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-current" in the body of the message > >=20 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-current" in the body of the message > >=20 > > ______________________________________________________________________ > >=20 > > From: Sean Chittenden > > To: CARTER Anthony > > Cc: freebsd-current@freebsd.org > > Subject: Re: HELP GDM XFree86 > > Date: 20 Mar 2003 00:26:06 -0800 > >=20 > > > Since upgrading to the latest version of XFree86 available on current > > > (using portupgrade -r), I cannot login as any users using GDM. I can > > > login as root... > > >=20 > > > After doing a few things, I have the following: > > >=20 > > > login as user > > > enter password > > >=20 > > > Your session lasted less than 10 seconds. If you didn't log out it co= uld > > > indicate a configuration problem....blah blah... > > >=20 > > > It gives an option to view the ~/.xsession error messages, but there = is > > > nothing there...and if I switch to command line (CTRL+ALT+1) then I s= ee: > > >=20 > > > gdm[585]: run_session_child: Could not open ~/.xsession-errors... > > >=20 > > > Any ideas? > >=20 > > portupgrade -f wrapper > >=20 > > You need to re-install x11/wrapper. -sc >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-VkHypeH7bSf5sI4/YDg1 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+efDKb2iPiv4Uz4cRAl0EAJ41KCF26HBbYdIkqIltz7ZdOxJETACdFRfL IQ0qqmjNXNZpERPcwKj++Bs= =bi/6 -----END PGP SIGNATURE----- --=-VkHypeH7bSf5sI4/YDg1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 8:52:53 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85DC837B401 for ; Thu, 20 Mar 2003 08:52:52 -0800 (PST) Received: from mailgate5.cinetic.de (mailgate5.cinetic.de [217.72.192.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6963643F93 for ; Thu, 20 Mar 2003 08:52:49 -0800 (PST) (envelope-from gerald.mixa@web.de) Received: from web.de (fmomail02.dlan.cinetic.de [172.20.1.46]) by mailgate5.cinetic.de (8.11.6/8.11.2/SuSE Linux 8.11.0-0.4) with SMTP id h2KGql213368; Thu, 20 Mar 2003 17:52:47 +0100 Date: Thu, 20 Mar 2003 17:52:47 +0100 Message-Id: <200303201652.h2KGql213368@mailgate5.cinetic.de> MIME-Version: 1.0 Organization: http://freemail.web.de/ From: "Gerald Mixa" To: freebsd-current@freebsd.org Cc: gerald.mixa@symicon.de Subject: XServer Problem with FreeBSD 5.0-p4 i386 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I have just done a portupgrade and upgraded the XServer to 4.3.0,1 on my PC and do have the following Font problems with KDE3.1 a terminal window just shows little empty square boxes, this can be changed by alternating the font settings. (so far no major problem) but with konqueror I do have the following problem. when i want to visit www.netbsd.org I do have the same problem, but this cant be changed. Strangely enough opera works fine and there is no other web page that results in the same problems, at least as far as I know. Before upgrading to 4.3.0,1 I did not have this problem. Sincerely Gerald Mixa ______________________________________________________________________________ Mit der Multi-SMS von WEB.DE FreeMail koennen Sie 760 Zeichen versenden. Informationen unter http://freemail.web.de/features/?mc=021184 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 10:42:43 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D27737B404; Thu, 20 Mar 2003 10:42:41 -0800 (PST) Received: from lakemtao01.cox.net (lakemtao01.cox.net [68.1.17.244]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17F3043FA3; Thu, 20 Mar 2003 10:42:40 -0800 (PST) (envelope-from franklin@jfranklin.net) Received: from jfranklin.net ([68.10.80.12]) by lakemtao01.cox.net (InterMail vM.5.01.04.05 201-253-122-122-105-20011231) with ESMTP id <20030320184239.NULC14921.lakemtao01.cox.net@jfranklin.net>; Thu, 20 Mar 2003 13:42:39 -0500 Message-ID: <3E7A0BA4.6080501@jfranklin.net> Date: Thu, 20 Mar 2003 13:42:44 -0500 From: Jody Franklin User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.2.1) Gecko/20030302 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-current@FreeBSD.ORG Cc: David Schultz , Andre Guibert de Bruet Subject: Re: OSS SBLive driver causes kernel panic with 5.0 current References: <3E696BD8.4070402@jfranklin.net> <20030316010347.N36274@alpha.siliconlandmark.com> <20030316072837.GA33102@HAL9000.homeunix.com> In-Reply-To: <20030316072837.GA33102@HAL9000.homeunix.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG David Schultz wrote: > Thus spake Andre Guibert de Bruet : > >>On Fri, 7 Mar 2003, Jody Franklin wrote: >> >> >>>I'd been keeping up with current (world/kernel) every other week or so, >>>and until this week I had no real problems. But after the build I did on >>>March 3rd my soundcard driver (4Front's SBLive/Audigy driver) causes a >>>kernel panic on load. If I don't load the driver the system boots fine, >>>and runs with no other problems. >>> >>>This is the message I get from the debugger when I load the driver: >>> >>>panic: Invalid major (-1030904368) in make_dev >>> >>>I've posted this info to their support forums also, their last responce >>>was to "see what they broke". >> >>Please don't cross-post -current and -questions. >> >>Major numbers are now being allocated dynamically. Sounds like the emu10k1 >>driver doesn't like this. My guess is, it's probably in the process of >>being converted over... > > > His post refers to the commercial driver, which still needs to be > converted. > As of the 12th 4Front's last word was that they are using /usr/share/examples/cdev as an example for their code, and that example causes the same panic as their driver. Thus asking that the examples be updated to match the current kernel so that they can update their driver. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 12:10:22 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B267537B401 for ; Thu, 20 Mar 2003 12:10:20 -0800 (PST) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05B0643F75 for ; Thu, 20 Mar 2003 12:10:20 -0800 (PST) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.3/8.12.3) with ESMTP id h2KKAIAT098396; Thu, 20 Mar 2003 12:10:18 -0800 (PST) (envelope-from hodson@puma.icir.org) Message-Id: <200303202010.h2KKAIAT098396@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 From: Orion Hodson To: Wade Majors Cc: freebsd-current@freebsd.org Subject: Re: audio playback slow In-Reply-To: <3E799468.1050206@ezri.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 20 Mar 2003 12:10:18 -0800 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Wade Majors writes: | I just setup FreeBSD 5.0-CURRENT as of last night on my system. I setup | the pcm driver and it detected my onboard VIA audio (at least | partially), however playback is at about half speed. I am basically | running GENERIC with the debug options commented out and "device pcm" added. | | I suspect it might be because of the AC97 Codec message, but I do get | playback, just slowed down. Wade. The AC97 codec message is unrelated, it's just a missing/mis-entered codec id, it's an ALC101. This should now be fixed in the repository. I believe the speed problem lies with the driver mis-reporting of capabilities of the chipset when the ac97 codec does not support on-chip sample rate conversion which the ALC101 does not. Again, this should now fixed in the repository. If you can update and let me know. Should it fail, can you set 'sysctl hw.snd.verbose=3', 'cat /dev/sndstat' while playing the offending audio, and send me the output. Thanks - Orion To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 12:57: 8 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B22D37B404 for ; Thu, 20 Mar 2003 12:57:06 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC33F43F75 for ; Thu, 20 Mar 2003 12:57:04 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.8/8.12.8) with ESMTP id h2KKv11f001287 for ; Thu, 20 Mar 2003 21:57:02 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: current@freebsd.org Subject: Re: cvs commit: src/usr.sbin Makefile src/usr.sbin/gstat Makefile gstat.c From: "Poul-Henning Kamp" In-Reply-To: Your message of "Thu, 20 Mar 2003 12:48:41 PST." <200303202048.h2KKmgOK057174@repoman.freebsd.org> Date: Thu, 20 Mar 2003 21:57:01 +0100 Message-ID: <1286.1048193821@critter.freebsd.dk> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <200303202048.h2KKmgOK057174@repoman.freebsd.org>, Poul-Henning Kamp writes: >phk 2003/03/20 12:48:41 PST > > Log: > Add a rudimentary gstat(8) to the system. The GEOM/devstat statistics has very fine granularity and can be read with very high resolution if one wants to. This means that you can see exactly how much of your disk-I/O comes from for instance your /var filesystem, and you can see how it is distributed over time down to the millisecond level. "This is one of the most significant sources we have on the subject, unfortunately we cannot decipher it, so it is utterly insignificant" -- Robert Storm Petersen This program however, is a just a small, almost minimal, proof-of-concept to show how to pick up the stats and make some amount of sense out of them. I am no great curses programmer[1], and the messes I make increase in size with the distance I move away from the hardware, so I really hope somebody will take a fancy to this gadget and turn it into the tool it should end up as. Poul-Henning [1] see sysinstall's disk editor. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 13: 2:57 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B62C37B401 for ; Thu, 20 Mar 2003 13:02:56 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 393CD43F85 for ; Thu, 20 Mar 2003 13:02:55 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.8/8.12.8) with ESMTP id h2KL2HRv020311 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 20 Mar 2003 16:02:17 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h2KL2Cl04274; Thu, 20 Mar 2003 16:02:12 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15994.11348.197292.644333@grasshopper.cs.duke.edu> Date: Thu, 20 Mar 2003 16:02:12 -0500 (EST) To: "Kevin Oberman" Cc: "Daniel O'Connor" , Nate Lawson , freebsd-current@FreeBSD.ORG Subject: Re: secondary ACPI problems In-Reply-To: <20030319231108.991625D07@ptavv.es.net> References: <15992.61965.276491.823774@grasshopper.cs.duke.edu> <20030319231108.991625D07@ptavv.es.net> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Kevin Oberman writes: > > From: Andrew Gallatin > > Date: Wed, 19 Mar 2003 17:41:17 -0500 (EST) > > Sender: owner-freebsd-current@FreeBSD.ORG > > > > > > Daniel O'Connor writes: > > > Restart X? :-) > > > > I wish. The board seems totally gone after an ACPI suspend. This seems to > > be a common problem with ATI cards. > > Work-around for M7 cards (may or may not work for others): > Switch to a character display (CTRL-ALT-F2) > Turn off the display (Fn-F3 on my ThinkPad) > Press any key to turn on display > Switch back to X (ALT-F9) This solution seems to be dependant on using a laptop. My box is a desktop. I wish there was something I could do to force a reset like this. Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 13:55:59 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EBBA37B401 for ; Thu, 20 Mar 2003 13:55:55 -0800 (PST) Received: from imo-m07.mx.aol.com (imo-m07.mx.aol.com [64.12.136.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0732F43F75 for ; Thu, 20 Mar 2003 13:55:47 -0800 (PST) (envelope-from BelletJr@aol.com) Received: from BelletJr@aol.com by imo-m07.mx.aol.com (mail_out_v34.21.) id n.65.cf505b7 (30960) for ; Thu, 20 Mar 2003 16:55:32 -0500 (EST) From: BelletJr@aol.com Message-ID: <65.cf505b7.2bab92d4@aol.com> Date: Thu, 20 Mar 2003 16:55:32 EST Subject: Can't boot from hard drive (5.0) To: freebsd-current@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: AOL 5.0 for Windows sub 100 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello! Here is a summary of a thread I started on comp.unix.bsd.freebsd.misc to no avail. I hope someone will be able to give me some advice here I've installed FreeBSD 5.0 on the second disk of my PC where I had an old 4.5 working. Unfortunately the install process failed to write the MBR correctly and with the current BootMgr, I can not boot on the FreeBSD disk. I've booted with a floppy and re-run sysinstall. I've tried to mark ad2s2 as bootable but just got: ERROR: Unable to write data to disk ad2! Disk partition write returned an error status! I think it is related to what is written in the "FreeBSD 5.0-RELEASE Errata" about disklabel -B: "The geom(4)-based disk partitioning code in the kernel will not allow an open partition to be overwritten. This usually prevents the use of disklabel -B to update the boot blocks on a disk because the a partition overlaps the space where the boot blocks are stored. A suggested workaround is to boot from an alternate disk, a CDROM, or a fixit floppy." But the workaround does not seem to be efficient with my box. I don't get the previous error message when I mark the second disk as "bootable" with sysinstall/fdisk, but I still can not boot from it. The output of fdisk ad2 is as follows: ----------------------------------------------------------------- >******* Working on device /dev/ad2 ******* >parameters extracted from in-core disklabel are: >cylinders=19852 heads=16 sectors/track=63 (1008 blks/cyl) > >Figures below won't work with BIOS for partitions not in cyl 1 >parameters to be used for BIOS calculations are: >cylinders=19852 heads=16 sectors/track=63 (1008 blks/cyl) > >Media sector size is 512 >Warning: BIOS sector numbering starts with sector 1 >Information from DOS bootblock is: >The data for partition 1 is: >sysid 5 (0x05),(Extended DOS) > start 16065, size 4176900 (2039 Meg), flag 0 > beg: cyl 15/ head 15/ sector 1; > end: cyl 1023/ head 10/ sector 63 >The data for partition 2 is: >sysid 165 (0xa5),(FreeBSD/NetBSD/386BSD) > start 4192965, size 15807960 (7718 Meg), flag 80 (active) > beg: cyl 1023/ head 255/ sector 63; > end: cyl 1023/ head 2/ sector 63 >The data for partition 3 is: > >The data for partition 4 is: > ----------------------------------------------------------------- The problem seems that the number of cylinders is not equal to the one displayed in the BIOS setup: 16320. If I force this geometry value with fdisk via sysinstall, will I have to reinstall completely the system? Here is the output from boot0cfg -v ad0: ----------------------------------------------------------------- ># flag start chs type end chs offset size >1 0x80 0: 1: 1 0x06 618: 63:63 63 2495745 > >version=1.0 drive=0x80 mask=0xf ticks=182 >options=nopacket,update,nosetdrv >default_selection=F1 (Slice 1) ----------------------------------------------------------------- and the output from boot0cfg -v ad2: ----------------------------------------------------------------- ># flag start chs type end chs offset size >1 0x00 15: 15: 1 0x05 1023: 10:63 16065 4176900 >2 0x80 1023:255:63 0xa5 1023: 2:63 4192965 15807960 > >version=1.0 drive=0x82 mask=0xf ticks=182 >options=nopacket,update,nosetdrv >default_selection=F5 (Drive 1) ----------------------------------------------------------------- According to the manual, I may use the 'packet' option of boot0cfg since I have to boot above cylinder 1023, but my BIOS does not seem to be compatible with this option. What can I do? Do I have to go through the process of creating a "dangerously-dedicated" slice? I had no problem to boot on this disk with FreeBSD 4.x. BTW, here's the ouput of disklabel ad2s2: ----------------------------------------------------------------- ># /dev/ad2s2c: >type: ESDI >disk: ad2s2 >label: >flags: >bytes/sector: 512 >sectors/track: 63 >tracks/cylinder: 16 >sectors/cylinder: 1008 >cylinders: 19852 >sectors/unit: 20010816 >rpm: 3600 >interleave: 1 >trackskew: 0 >cylinderskew: 0 >headswitch: 0 # milliseconds >track-to-track seek: 0 # milliseconds >drivedata: 0 > >8 partitions: ># size offset fstype [fsize bsize bps/cpg] > a: 524288 0 4.2BSD 2048 16384 32776 # (Cyl. 0 - 520*) > b: 362176 524288 swap # (Cyl. 520*- 879*) > c: 15807960 0 unused 0 0 # (Cyl. 0 -15682*) > d: 524288 886464 4.2BSD 2048 16384 32776 # (Cyl. 879*-1399*) > e: 524288 1410752 4.2BSD 2048 16384 32776 # (Cyl. 1399*-1919*) > f: 13872920 1935040 4.2BSD 2048 16384 28512 # (Cyl. 1919*-15682*) >Warning, partition c doesn't cover the whole unit! >Warning, An incorrect partition c may cause problems for standard system utilities ----------------------------------------------------------------- and with the -r option, disklabel -r ad2s2: ----------------------------------------------------------------- ># /dev/ad2s2c: >type: ESDI >disk: ad2s2 >label: >flags: >bytes/sector: 512 >sectors/track: 63 >tracks/cylinder: 16 >sectors/cylinder: 1008 >cylinders: 19852 >sectors/unit: 20010816 >rpm: 3600 >interleave: 1 >trackskew: 0 >cylinderskew: 0 >headswitch: 0 # milliseconds >track-to-track seek: 0 # milliseconds >drivedata: 0 > >8 partitions: ># size offset fstype [fsize bsize bps/cpg] > a: 524288 4192965 4.2BSD 2048 16384 32776 # (Cyl. 4159*-679*) > b: 362176 4717253 swap # (Cyl. 4679*- 5039*) > c: 15807960 4192965 unused 0 0 # (Cyl. 4159*-19842*) > d: 524288 5079429 4.2BSD 2048 16384 32776 # (Cyl. 5039*-5559*) > e: 524288 5603717 4.2BSD 2048 16384 32776 # (Cyl. 5559*-6079*) > f: 13872920 6128005 4.2BSD 2048 16384 28512 # (Cyl. 6079*-19842*) >Warning, partition c doesn't start at 0! >Warning, partition c doesn't cover the whole unit! >Warning, An incorrect partition c may cause problems for standard system utilities ----------------------------------------------------------------- Thanks in advance! Jerome To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 15:42: 4 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B2A037B401; Thu, 20 Mar 2003 15:42:03 -0800 (PST) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F02143F75; Thu, 20 Mar 2003 15:42:02 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) by troutmask.apl.washington.edu (8.12.8/8.12.7) with ESMTP id h2KNg2gF070901; Thu, 20 Mar 2003 15:42:02 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.12.8/8.12.8/Submit) id h2KNg28b070900; Thu, 20 Mar 2003 15:42:02 -0800 (PST) Date: Thu, 20 Mar 2003 15:42:02 -0800 From: Steve Kargl To: Nate Lawson Cc: current@FreeBSD.ORG, wpaul@FreeBSD.ORG Subject: Re: Updated if_* attach/detach patches Message-ID: <20030320234202.GA70664@troutmask.apl.washington.edu> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Mar 19, 2003 at 10:37:43AM -0800, Nate Lawson wrote: > I have updated my patches for: > dc pcn rl sf sis sk ste ti tl vr wb xl > They have been compile tested but I only have an rl card so I'd appreciate > feedback. > > - xl: add missed error setting in I/O, memory mapping cases > - xl: add missing bzero of softc > - xl: remove multi-level goto on attach failure > I've tested the xl diff, but only limited internet traffic (i.e., cvsup, browsing, ssh). If high volume traffic is needed to testing, I'm not set up to do that. I haven't seen in problems. -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 15:50:51 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA77637B401 for ; Thu, 20 Mar 2003 15:50:50 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 4402743FBD for ; Thu, 20 Mar 2003 15:50:47 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 14588 invoked by uid 1000); 20 Mar 2003 23:50:47 -0000 Date: Thu, 20 Mar 2003 15:50:47 -0800 (PST) From: Nate Lawson To: Steve Kargl Cc: current@FreeBSD.ORG, wpaul@FreeBSD.ORG Subject: Re: Updated if_* attach/detach patches In-Reply-To: <20030320234202.GA70664@troutmask.apl.washington.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 20 Mar 2003, Steve Kargl wrote: > On Wed, Mar 19, 2003 at 10:37:43AM -0800, Nate Lawson wrote: > > I have updated my patches for: > > dc pcn rl sf sis sk ste ti tl vr wb xl > > They have been compile tested but I only have an rl card so I'd appreciate > > feedback. > > > > - xl: add missed error setting in I/O, memory mapping cases > > - xl: add missing bzero of softc > > - xl: remove multi-level goto on attach failure > > I've tested the xl diff, but only limited internet traffic > (i.e., cvsup, browsing, ssh). If high volume traffic is > needed to testing, I'm not set up to do that. > > I haven't seen in problems. No, the attach/detach routines are only called at boot and shutdown or if you compile it as a module, load/unload. In fact, for people who would like info on how to test it, this would be helpful (replacing the name with your module of course): #!/bin/sh kldload if_xl kldunload if_xl sleep .2 exec $0 Crashing or growing memory use might indicate problems. -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 16:28:12 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB0DB37B405 for ; Thu, 20 Mar 2003 16:28:11 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 5352443F93 for ; Thu, 20 Mar 2003 16:28:11 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 14633 invoked by uid 1000); 21 Mar 2003 00:28:12 -0000 Date: Thu, 20 Mar 2003 16:28:12 -0800 (PST) From: Nate Lawson To: current@freebsd.org Cc: acpi-jp@jp.freebsd.org, iwasaki@freebsd.org Subject: Re: ACPI-CA import/new diff? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I wrote: > > It's been a while since we've pulled in Intel's acpi-ca work and there > > are a number of bugs fixed since the October 2002 version in -current. > > Could someone generate a diff for the latest release and post it for > > testing? If enough people indicate there are no problems, it would be > > nice to have an import before 5.1R > > http://developer.intel.com/technology/iapc/acpi/downloads/CHANGES.txt I'll try to generate a diff soon at post it since I haven't heard from iwasaki@ -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 16:31:50 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DF3637B401 for ; Thu, 20 Mar 2003 16:31:49 -0800 (PST) Received: from rrcs-se-24-73-205-166.biz.rr.com (rrcs-se-24-73-205-166.biz.rr.com [24.73.205.166]) by mx1.FreeBSD.org (Postfix) with SMTP id 8619943F75 for ; Thu, 20 Mar 2003 16:31:45 -0800 (PST) (envelope-from wade@ezri.org) Received: (qmail 65101 invoked from network); 21 Mar 2003 00:31:44 -0000 Received: from unknown (HELO ezri.org) (192.168.0.46) by rrcs-se-24-73-205-166.biz.rr.com with SMTP; 21 Mar 2003 00:31:44 -0000 Message-ID: <3E7A5D6C.9050709@ezri.org> Date: Thu, 20 Mar 2003 19:31:40 -0500 From: Wade Majors User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4a) Gecko/20030317 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Orion Hodson Cc: freebsd-current@freebsd.org Subject: Re: audio playback slow References: <200303202010.h2KKAIAT098396@puma.icir.org> In-Reply-To: <200303202010.h2KKAIAT098396@puma.icir.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > The AC97 codec message is unrelated, it's just a missing/mis-entered codec id, > it's an ALC101. This should now be fixed in the repository. > That message does appear to be fixed now, it reports: pcm0: > I believe the speed problem lies with the driver mis-reporting of capabilities > of the chipset when the ac97 codec does not support on-chip sample rate > conversion which the ALC101 does not. Again, this should now fixed in the > repository. I am still getting slowed down playback :( Here is the output you requested. I didn't think the fileversions were important here. FreeBSD Audio Driver (newpcm) Installed devices: pcm0: at io 0xe000 irq 12 (2p/1r/0v channels duplex default) [pcm0:play:0]: spd 44100/48000, fmt 0x10000010, flags 00003030, pid 457 interrupts 20623, underruns 7, ready 65536 {userland} -> feeder_root(0x10000010) -> {hardware} [pcm0:play:1]: spd 0, fmt 0x00000000/0x00000008, flags 00000000 interrupts 0, underruns 0, ready 0 {userland} -> feeder_root(0x00000000) -> {hardware} [pcm0:record:0]: spd 0, fmt 0x00000000/0x00000008, flags 00000000 interrupts 0, overruns 0, hfree 4096, sfree 0 {hardware} -> feeder_root(0x00000000) -> {userland} Hope this helps. -Wade To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 16:42:11 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85B3337B401; Thu, 20 Mar 2003 16:42:10 -0800 (PST) Received: from hermes.fm.intel.com (fmr01.intel.com [192.55.52.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id B728543F3F; Thu, 20 Mar 2003 16:42:08 -0800 (PST) (envelope-from andrew.grover@intel.com) Received: from petasus.fm.intel.com (petasus.fm.intel.com [10.1.192.37]) by hermes.fm.intel.com (8.11.6/8.11.6/d: outer.mc,v 1.51 2002/09/23 20:43:23 dmccart Exp $) with ESMTP id h2L0cJK24505; Fri, 21 Mar 2003 00:38:31 GMT Received: from fmsmsxvs043.fm.intel.com (fmsmsxvs043.fm.intel.com [132.233.42.129]) by petasus.fm.intel.com (8.11.6/8.11.6/d: inner.mc,v 1.28 2003/01/13 19:44:39 dmccart Exp $) with SMTP id h2L0Zwh29409; Fri, 21 Mar 2003 00:35:58 GMT Received: from fmsmsx019.fm.intel.com ([132.233.42.130]) by fmsmsxvs043.fm.intel.com (NAVGW 2.5.2.11) with SMTP id M2003032016393710569 ; Thu, 20 Mar 2003 16:39:37 -0800 Received: by fmsmsx019.fm.intel.com with Internet Mail Service (5.5.2653.19) id ; Thu, 20 Mar 2003 16:41:39 -0800 Message-ID: From: "Grover, Andrew" To: acpi-jp@jp.FreeBSD.org, current@freebsd.org Cc: iwasaki@freebsd.org Subject: RE: [acpi-jp 2105] Re: ACPI-CA import/new diff? Date: Thu, 20 Mar 2003 16:41:28 -0800 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) content-class: urn:content-classes:message Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > From: Nate Lawson [mailto:nate@root.org] > http://developer.intel.com/technology/iapc/acp> i/downloads/CHANGES.txt > > I'll try to generate a diff soon at post it since I haven't heard from > iwasaki@ Another release is imminent. Or, if you decide to go with what's out there now there is one little patch that would be good to have, if you aren't going to import again for a while. This is against the Linuxized version but you should be able to get the gist of it: --- 2421-pre4-acpi/drivers/acpi/events/evgpeblk.c.orig Wed Mar 5 17:00:15 2003 +++ 2421-pre4-acpi/drivers/acpi/events/evgpeblk.c Wed Mar 5 17:01:30 2003 @@ -131,7 +131,7 @@ /* Ensure that we have a valid GPE number for this GPE block */ if ((gpe_number < gpe_block->block_base_number) || - (gpe_number >= (gpe_block->register_count * 8))) { + (gpe_number - gpe_block->block_base_number >= (gpe_block->register_count * 8))) { Regards -- Andy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 17:16:56 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB82337B401 for ; Thu, 20 Mar 2003 17:16:55 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4481943F93 for ; Thu, 20 Mar 2003 17:16:55 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 5F0F75308; Fri, 21 Mar 2003 02:16:52 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: alasir@supereva.it Cc: current@freebsd.org Subject: Re: buildkernel and gcc2 From: des@ofug.org (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Fri, 21 Mar 2003 02:16:52 +0100 In-Reply-To: <20030320051301.16790.qmail@web21511.mail.yahoo.com> (RMH's message of "Thu, 20 Mar 2003 05:13:01 +0000 (GMT)") Message-ID: User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: <20030320051301.16790.qmail@web21511.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG RMH writes: > It isn't a problem to export an extra variable and make it known > to bsd.kern.mk; the question is, do we want GCC2 to be a supported > compiler for -CURRENT or not? No. DES --=20 Dag-Erling Sm=F8rgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 18: 8:35 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12E1C37B401 for ; Thu, 20 Mar 2003 18:08:34 -0800 (PST) Received: from sana.init-main.com (104.194.138.210.bn.2iij.net [210.138.194.104]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1220543F93 for ; Thu, 20 Mar 2003 18:08:30 -0800 (PST) (envelope-from takawata@init-main.com) Received: from init-main.com (localhost [127.0.0.1]) by sana.init-main.com (8.12.8/8.12.7) with ESMTP id h2L27SKG020546; Fri, 21 Mar 2003 11:07:29 +0900 (JST) (envelope-from takawata@init-main.com) Message-Id: <200303210207.h2L27SKG020546@sana.init-main.com> To: andrew.grover@intel.com Cc: acpi-jp@jp.FreeBSD.org, current@freebsd.org Subject: Re: [acpi-jp 2106] RE: ACPI-CA import/new diff? In-reply-to: Your message of "Thu, 20 Mar 2003 16:41:28 PST." Date: Fri, 21 Mar 2003 11:07:28 +0900 From: Takanori Watanabe Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message , "Gr over, Andrew" wrote: >> From: Nate Lawson [mailto:nate@root.org] >> http://developer.intel.com/technology/iapc/acp> >i/downloads/CHANGES.txt >> >> I'll try to generate a diff soon at post it since I haven't heard from >> iwasaki@ Iwasaki seems to be busy now. > >This is against the Linuxized version but you should be able to get the >gist of it: > >--- 2421-pre4-acpi/drivers/acpi/events/evgpeblk.c.orig Wed Mar 5 >17:00:15 2003 >+++ 2421-pre4-acpi/drivers/acpi/events/evgpeblk.c Wed Mar 5 >17:01:30 2003 >@@ -131,7 +131,7 @@ > /* Ensure that we have a valid GPE number for this GPE block */ > > if ((gpe_number < gpe_block->block_base_number) || >- (gpe_number >= (gpe_block->register_count * 8))) { >+ (gpe_number - gpe_block->block_base_number >= >(gpe_block->register_count * 8))) { > Thanks. I'll apply it. BTW. I noticed that some definition for structure is added and its naming collide to our OS-dependent module. We has been avoided it by using non-linuxlized ACPI-CA that has the naming rule of beggining with 'Acpi' not 'acpi_'. Would you care about it next time? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 19:19: 8 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A940537B401; Thu, 20 Mar 2003 19:19:06 -0800 (PST) Received: from tomts22-srv.bellnexxia.net (tomts22.bellnexxia.net [209.226.175.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61C2143F75; Thu, 20 Mar 2003 19:19:05 -0800 (PST) (envelope-from mike@sparc64.style9.org) Received: from sparc64.style9.org ([65.93.76.196]) by tomts22-srv.bellnexxia.net (InterMail vM.5.01.04.19 201-253-122-122-119-20020516) with ESMTP id <20030321031904.UOWT15855.tomts22-srv.bellnexxia.net@sparc64.style9.org>; Thu, 20 Mar 2003 22:19:04 -0500 Received: (from mike@localhost) by sparc64.style9.org (8.12.6/8.12.6/Submit) id h2L3JtpV081922; Thu, 20 Mar 2003 22:19:55 -0500 (EST) Date: Thu, 20 Mar 2003 22:19:55 -0500 (EST) From: Mike Barcroft Message-Id: <200303210319.h2L3JtpV081922@sparc64.style9.org> To: current@FreeBSD.org, sparc64@FreeBSD.org Subject: sparc64 tinderbox failure Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Tinderbox FAQ: http://people.FreeBSD.org/~mike/tinderbox.html -------------------------------------------------------------- >>> Rebuilding the temporary build tree -------------------------------------------------------------- >>> stage 1: bootstrap tools -------------------------------------------------------------- >>> stage 2: cleaning up the object tree -------------------------------------------------------------- >>> stage 2: rebuilding the object tree -------------------------------------------------------------- >>> stage 2: build tools -------------------------------------------------------------- >>> stage 3: cross tools -------------------------------------------------------------- >>> stage 4: populating /tinderbox/sparc64/obj/tinderbox/sparc64/src/sparc64/usr/include -------------------------------------------------------------- >>> stage 4: building libraries -------------------------------------------------------------- >>> stage 4: make dependencies -------------------------------------------------------------- ===> usr.sbin/gstat make: don't know how to make subr_sbuf.c. Stop *** Error code 2 Stop in /tinderbox/sparc64/src/usr.sbin. *** Error code 1 Stop in /tinderbox/sparc64/src. *** Error code 1 Stop in /tinderbox/sparc64/src. *** Error code 1 Stop in /tinderbox/sparc64/src. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 21:24:11 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16D0A37B401; Thu, 20 Mar 2003 21:24:10 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id E527C43FAF; Thu, 20 Mar 2003 21:24:08 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.8/8.12.3) with ESMTP id h2L5O7A7045550; Thu, 20 Mar 2003 22:24:07 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Thu, 20 Mar 2003 22:23:52 -0700 (MST) Message-Id: <20030320.222352.122290134.imp@bsdimp.com> To: nate@root.org Cc: current@FreeBSD.ORG, wpaul@FreeBSD.ORG Subject: Re: Updated if_* attach/detach patches From: "M. Warner Losh" In-Reply-To: References: X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: Nate Lawson writes: : - dc: move interrupt allocation back where it was before. It was unnecessary : to move it Why's that? If dc is on a shared interrupt line, then dc_intr is going to be called, potentially, before the rest of the attach routine finishes. Keep in mind that attach routines run with interrupts enabled in many interesting cases (including cardbus). You can't call bus_setup_intr until the very end of attach. Since there's no locking here, bad things would happen if an interrupt fired, no? It looks like dc might be safe (since it returns right away if DC_ISR is zero for the bits it knows about)... : - pcn: add missing bzero of softc softc is automatically bzero'd. : - rl: move irq allocation before ether_ifattach. Problems could have been : caused by allocating the irq after enabling interrupts on the card. Same problem as the dc driver. ether_ifattach isn't going to start the interface, so you are safe waiting until after ether_ifattach to do this. And for the rl driver there's no check to see if the RL_ISR has bits set before we acquire the lock... Even with that, it might be safe, but I'm less sure. Why are you checking device_is_alive() in detach? detach won't get called if that isn't the case. Oh, I see, you've added calls... In general, in the drivers I've written I have a foo_alloc() and foo_dealloc() to get and release the resources rather than overloading detach to do this. Well, foo_alloc isn't always possible in the newer world order where locking matters. foo_dalloc can safely be written, however. You want to device_delete_child before calling bus_generic_detatch(). but the old driver does it backwards, so that's not a huge deal. For dc and rl you might want to call bus_child_present(dev) in the detach routines and *NOT* call foo_stop() if the card isn't present. wi actually sets gone in detach: /* check if device was removed */ sc->wi_gone = !bus_child_present(dev); which might not be a horrible idea. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 22:27:55 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D42D637B401 for ; Thu, 20 Mar 2003 22:27:54 -0800 (PST) Received: from wabakimi.chat.carleton.ca (wabakimi.chat.carleton.ca [134.117.1.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D1E543FB1 for ; Thu, 20 Mar 2003 22:27:53 -0800 (PST) (envelope-from creyenga@connectmail.carleton.ca) Received: from fireball (terry.cavern.carleton.ca [134.117.93.187] (may be forged)) by wabakimi.chat.carleton.ca (8.12.6/8.12.6) with SMTP id h2L6RpsU003613 for ; Fri, 21 Mar 2003 01:27:51 -0500 (EST) Message-ID: <000d01c2ef73$02662000$0200000a@sewer.org> From: "Craig Reyenga" To: Subject: Squid + natd. Date: Fri, 21 Mar 2003 01:27:45 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I have a client machine behind my FreeBSD box, which connects to the internet via NAT and Squid. I notice when downloading a file from the internet that squid cpu% goes up, which is cool and all, but natd's does as well. Is there a method using firewall rules in a specific order, or any method for that matter, that allows squid to receive it's data directly, i.e. without natd seeing http or ftp packets? I know that squid may simply be uninstalled, but I like the caching, and I hate banner ads, which I use squid to block. Thanks in advance. -Craig To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 22:46: 7 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83AD437B401 for ; Thu, 20 Mar 2003 22:46:05 -0800 (PST) Received: from Math.Berkeley.EDU (gold.Math.Berkeley.EDU [169.229.58.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id C676E43FAF for ; Thu, 20 Mar 2003 22:46:02 -0800 (PST) (envelope-from steve@Math.Berkeley.EDU) Received: from bootjack.math.berkeley.edu (root@bootjack.Math.Berkeley.EDU [169.229.58.46]) by Math.Berkeley.EDU (8.12.8/8.12.8) with ESMTP id h2L6jweB001067; Thu, 20 Mar 2003 22:45:58 -0800 (PST) Received: from bootjack.math.berkeley.edu (steve@localhost [127.0.0.1]) by bootjack.math.berkeley.edu (8.12.6/8.12.6) with ESMTP id h2L6jrUu040796; Thu, 20 Mar 2003 22:45:53 -0800 (PST) (envelope-from steve@bootjack.math.berkeley.edu) Received: (from steve@localhost) by bootjack.math.berkeley.edu (8.12.6/8.12.6/Submit) id h2L6jmKt040795; Thu, 20 Mar 2003 22:45:48 -0800 (PST) (envelope-from steve) Date: Thu, 20 Mar 2003 22:45:48 -0800 From: Steve Sizemore To: "Andrew P. Lentvorski, Jr." Cc: Dan Nelson , current@freebsd.org Subject: Re: NFS file unlocking problem Message-ID: <20030321064547.GB40697@math.berkeley.edu> Reply-To: Steve Sizemore References: <20030317060216.GB45288@math.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Mar 19, 2003 at 05:15:02PM -0800, Andrew P. Lentvorski, Jr. wrote: > Steve, > > I actually managed to pull down the dump. It doesn't have any lock > requests in it. It looks like it is hanging in the rpcinfo call. > > If you really want to debug this, it's going to take a chunk of work. > > 1) set up two brand new machines > FreeBSD-current for the server > Solaris whatever for the client > Well, I think I found the problem. I had just installed the new FreeBSD machine, not looking forward to finding another Sun to install, when I had the idea to try different nfs protocols. By default, it looks like the NFS mount is version 3 tcp. I specified udp, and both of the test programs (mine and Terry's) work consistently. I've reenabled locking on the Xinet software, and we'll see (tomorrow) whether or not that also works. If I'm right, that means that there is a problem with nfs over tcp with a Solaris client and FreeBSD-5 server. All other combinations of client/server pairs worked with the default (which I assume is version 3 tcp). BTW, Terry's testlock program, when run with the problem configuration, would always return the "There is nothing that would block your lock" message, but it could take anywhere from < 1 second to >45 minutes. I'm not so confident that my perl program would always succeed, because I was never willing to wait longer than overnight before concluding that it was hung. I'll report back on the status of xinet tomorrow, but thanks to all of you for your help and suggestions. If there's any more information I can provide, or testing that I can do, to help fix the NFS/tcp/Solaris problem, let me know. Thanks. Steve -- Steve Sizemore , (510) 642-8570 Unix System Manager Dept. of Mathematics and College of Letters and Science University of California, Berkeley To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Mar 20 23:36:16 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4BF637B401 for ; Thu, 20 Mar 2003 23:36:15 -0800 (PST) Received: from sana.init-main.com (104.194.138.210.bn.2iij.net [210.138.194.104]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A53E43F75 for ; Thu, 20 Mar 2003 23:36:14 -0800 (PST) (envelope-from takawata@init-main.com) Received: from init-main.com (localhost [127.0.0.1]) by sana.init-main.com (8.12.8/8.12.7) with ESMTP id h2L7ZHKG042174; Fri, 21 Mar 2003 16:35:18 +0900 (JST) (envelope-from takawata@init-main.com) Message-Id: <200303210735.h2L7ZHKG042174@sana.init-main.com> To: current@freebsd.org, acpi-jp@jp.freebsd.org Subject: Re: [acpi-jp 2106] RE: ACPI-CA import/new diff? In-reply-to: Your message of "Fri, 21 Mar 2003 11:07:28 JST." <200303210207.h2L27SKG020546@sana.init-main.com> Date: Fri, 21 Mar 2003 16:35:17 +0900 From: Takanori Watanabe Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Would you try it? http://people.freebsd.org/~takawata/acpi-20030321.diff http://people.freebsd.org/~takawata/acpica-freebsd-20030321.tar.gz The OSD interface of void AcpiOsDerivePciId(ACPI_HANDLE Rhandle, ACPI_HANDLE Lhandle, ACPI_PCI_ID **Id) is not impremented yet. (Only Do-Nothing function) If this is impremented, PCI-PCI bridge handling on ACPI-CA is will be better. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 0: 1:12 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85A2B37B404 for ; Fri, 21 Mar 2003 00:01:11 -0800 (PST) Received: from ip68-14-60-78.no.no.cox.net (ip68-14-60-78.no.no.cox.net [68.14.60.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9448943F75 for ; Fri, 21 Mar 2003 00:01:10 -0800 (PST) (envelope-from conrads@ip68-14-60-78.no.no.cox.net) Received: from ip68-14-60-78.no.no.cox.net (localhost [127.0.0.1]) by ip68-14-60-78.no.no.cox.net (8.12.8/8.12.8) with ESMTP id h2L85Pi6046943 for ; Fri, 21 Mar 2003 02:05:25 -0600 (CST) (envelope-from conrads@ip68-14-60-78.no.no.cox.net) Received: (from conrads@localhost) by ip68-14-60-78.no.no.cox.net (8.12.8/8.12.8/Submit) id h2L85Kta046935 for freebsd-current@FreeBSD.ORG; Fri, 21 Mar 2003 02:05:20 -0600 (CST) (envelope-from conrads) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Fri, 21 Mar 2003 02:05:20 -0600 (CST) Organization: A Rag-Tag Band of Drug-Crazed Hippies From: Conrad Sabatier To: freebsd-current@FreeBSD.ORG Subject: options VGA_NO_MODE_CHANGE causes buildkernel failure Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Building a kernel with: options VGA_NO_MODE_CHANGE # don't change video modes cc -c -O -pipe -DNO_WERROR -march=athlon -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -g -nostdinc -I- -I. -I../../.. -I../../../dev -I../../../contrib/dev/acpica -I../../../contrib/ipfilter -D_KERNEL -include opt_global.h -fno-common -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror ../../../dev/fb/vga.c cc1: warnings being treated as errors ../../../dev/fb/vga.c:1331: warning: `filll_io' defined but not used ../../../dev/fb/vga.c:1321: warning: `fill' defined but not used *** Error code 1 Stop in /usr/src/sys/i386/compile/FOO. -- Conrad Sabatier - "In Unix veritas" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 0: 6: 9 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3E6B37B401 for ; Fri, 21 Mar 2003 00:06:08 -0800 (PST) Received: from spider.deepcore.dk (cpe.atm2-0-56339.0x50c6aa0a.abnxx2.customer.tele.dk [80.198.170.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB40143F3F for ; Fri, 21 Mar 2003 00:06:06 -0800 (PST) (envelope-from sos@spider.deepcore.dk) Received: (from sos@localhost) by spider.deepcore.dk (8.12.8/8.12.8) id h2L865rf021613; Fri, 21 Mar 2003 09:06:05 +0100 (CET) (envelope-from sos) From: Soeren Schmidt Message-Id: <200303210806.h2L865rf021613@spider.deepcore.dk> Subject: Re: [acpi-jp 2106] RE: ACPI-CA import/new diff? In-Reply-To: <200303210735.h2L7ZHKG042174@sana.init-main.com> To: Takanori Watanabe Date: Fri, 21 Mar 2003 09:06:05 +0100 (CET) Cc: current@FreeBSD.ORG, acpi-jp@jp.freebsd.org X-Mailer: ELM [version 2.4ME+ PL98b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It seems Takanori Watanabe wrote: > Would you try it? > > http://people.freebsd.org/~takawata/acpi-20030321.diff > http://people.freebsd.org/~takawata/acpica-freebsd-20030321.tar.gz Just did here, ASUS P4S8X board, With the CVS version power off doesnt work, it prints the "power system off using ACPI" waits a couble seconds, prints that the ACPI poweroff function timed out and reboots :( With the above applied it is even worse, it prints the "power system off using ACPI" and then hangs the system without powering off :( :( Besides this both seems to work, except they both find dual CPU's which I dont have :) -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 0:39:50 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6041A37B401 for ; Fri, 21 Mar 2003 00:39:49 -0800 (PST) Received: from alfred.skaarup.org (alfred.skaarup.org [193.111.120.140]) by mx1.FreeBSD.org (Postfix) with SMTP id A809643FA3 for ; Fri, 21 Mar 2003 00:39:47 -0800 (PST) (envelope-from mfbsd@skaarup.org) Received: (qmail 23744 invoked by uid 0); 21 Mar 2003 08:39:45 -0000 Received: from localhost (HELO alfred.skaarup.org) (127.0.0.1) by localhost with SMTP; 21 Mar 2003 08:39:44 -0000 Received: (qmail 23737 invoked by uid 1039); 21 Mar 2003 08:39:44 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 21 Mar 2003 08:39:44 -0000 Date: Fri, 21 Mar 2003 09:39:44 +0100 (CET) From: Rasmus Skaarup To: freebsd-current@freebsd.org Subject: installworld -> /usr/share/info/dir problems Message-ID: <20030321093511.F23682@alfred.skaarup.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS 0.3.12pre8 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I'm having diffculties performing an installworld of the newest sources. *** ===> lib/libcom_err/doc install-info --quiet --defsection="Programming & development tools." --defentry="* libcom_err: (com_err). A Common Error Description Library for UNIX." com_err.info /usr/share/info/dir install-info: /usr/share/info/dir: empty file *** Error code 1 *** After some minor investigation I can complete an installworld if I put some junk into the /usr/share/info/dir file. I may have lost the contents of the file because of a power cut the other day, but I can't seem to find a new one in the src-tree, nor anywhere else. Thanks! Best regards, Rasmus Skaarup To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 0:55:14 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D272337B401; Fri, 21 Mar 2003 00:55:12 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8398043FA3; Fri, 21 Mar 2003 00:55:01 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h2L8sxmR010079; Fri, 21 Mar 2003 00:54:59 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h2L8sxvY010078; Fri, 21 Mar 2003 00:54:59 -0800 (PST) (envelope-from das@FreeBSD.ORG) Date: Fri, 21 Mar 2003 00:54:59 -0800 From: David Schultz To: Tim Robbins Cc: Kris Kennaway , current@FreeBSD.ORG Subject: Re: Port breakage (isnan undeclared) Message-ID: <20030321085459.GA10003@HAL9000.homeunix.com> Mail-Followup-To: Tim Robbins , Kris Kennaway , current@FreeBSD.ORG References: <20030320085522.GA13634@rot13.obsecurity.org> <20030320202706.A35844@dilbert.robbins.dropbear.id.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030320202706.A35844@dilbert.robbins.dropbear.id.au> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Tim Robbins : > On Thu, Mar 20, 2003 at 12:55:22AM -0800, Kris Kennaway wrote: > > > Several ports have become broken recently with the following error: > > > > ../../../include/osg/Math:149: `isnan' undeclared (first use this function) > > > > http://bento.freebsd.org/errorlogs/i386-5-latest/osg-0.9.3.log > > http://bento.freebsd.org/errorlogs/i386-5-latest/gnucap-0.31.log > > http://bento.freebsd.org/errorlogs/i386-5-latest/fractorama-1.6.4.log > > > > Can someone please investigate? > > The prototypes for isnan() &c. need to be put back into math.h, and their > source files need to be un-deprecated. C99 requires that isnan() be a macro, since it can take arguments of multiple types and C doesn't support templates or overloading. Technically, redundant function and macro implementations can coexist, but that's gross. A better solution may be to define _GLIBCPP_USE_C99 to 1 in libstdc++. Among other things, this tells the C++ library to capture standard C99 macros such as isnan() in a wrapper in the std namespace before undefing them as it does now. The appropriate configure option is --enable-c99, BTW. If a real C++ guru could make sure this doesn't break anything else I would be grateful. What I don't understand is why the libstdc++ all-your-macros-are-belong-to-us magic gets pulled in when you say '#include ' instead of . That's going to break programs (such as fractorama) that expect isnan() and friends to be in the global namespace. Again, comments from someone with C++ fu would be appreciated. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 2:27:45 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B796437B401 for ; Fri, 21 Mar 2003 02:27:43 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFCBD43FAF for ; Fri, 21 Mar 2003 02:27:28 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.8/8.12.8/Sunbay) with ESMTP id h2LARO0J079640 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 21 Mar 2003 12:27:24 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.8/8.12.8/Submit) id h2LAROAl079635; Fri, 21 Mar 2003 12:27:24 +0200 (EET) (envelope-from ru) Date: Fri, 21 Mar 2003 12:27:23 +0200 From: Ruslan Ermilov To: Rasmus Skaarup Cc: freebsd-current@FreeBSD.ORG Subject: Re: installworld -> /usr/share/info/dir problems Message-ID: <20030321102723.GC74500@sunbay.com> References: <20030321093511.F23682@alfred.skaarup.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+xNpyl7Qekk2NvDX" Content-Disposition: inline In-Reply-To: <20030321093511.F23682@alfred.skaarup.org> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --+xNpyl7Qekk2NvDX Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Mar 21, 2003 at 09:39:44AM +0100, Rasmus Skaarup wrote: >=20 > Hello, >=20 > I'm having diffculties performing an installworld of the newest sources. >=20 > *** > =3D=3D=3D> lib/libcom_err/doc > install-info --quiet --defsection=3D"Programming & development tools." > --defentry=3D"* libcom_err: (com_err). A Common Error Description > Library for UNIX." com_err.info /usr/share/info/dir > install-info: /usr/share/info/dir: empty file > *** Error code 1 > *** >=20 > After some minor investigation I can complete an installworld if I put > some junk into the /usr/share/info/dir file. >=20 > I may have lost the contents of the file because of a power cut the other > day, but I can't seem to find a new one in the src-tree, nor anywhere > else. >=20 src/share/info/Makefile installs one if the target doesn't exist. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --+xNpyl7Qekk2NvDX Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+eukLUkv4P6juNwoRAjsJAJ9L5T47BsZl+scvNEcqhwQmFNzA0QCdEvxU dmnlat7gfSMXuCJn4i24vwQ= =DuQq -----END PGP SIGNATURE----- --+xNpyl7Qekk2NvDX-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 3: 2:47 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DDA237B404; Fri, 21 Mar 2003 03:02:45 -0800 (PST) Received: from mailgw.cscoms.com (mailgw.cscoms.com [202.183.255.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB95F43F85; Fri, 21 Mar 2003 03:02:43 -0800 (PST) (envelope-from Economic2003@thaimail.com) Received: from cscoms.com (mail.cscoms.com [202.183.255.23]) by mailgw.cscoms.com (8.12.8/8.12.3) with ESMTP id h2LAxYER026693; Fri, 21 Mar 2003 17:59:35 +0700 (ICT) Received: from ME (dial-111.ras-7.bkk.c.cscoms.com [203.170.129.111]) by cscoms.com (8.12.8/8.12.3) with SMTP id h2LAvQwo017751; Fri, 21 Mar 2003 17:57:27 +0700 (GMT) Date: Fri, 21 Mar 2003 17:57:26 +0700 (GMT) Message-Id: <200303211057.h2LAvQwo017751@cscoms.com> From: Economic2003@thaimail.com Subject: ÊËÃÑ° ú¡ÑºÍÔÃÑ¡ àÈÃÉ°¡ÔšÐŽÕ¢Ö鹚ÃÔ§ €ÇÒÁÁÑè¹€§ã¹§Ò¹ÁÕšÃÔ§ËÃ×Í? X-Priority: 1 (Highest) Reply-To: Economic2003@thaimail.com X-Mailer: Microsoft Outlook Express 5.00.2615.200 MIME-Version: 1.0 Content-type: multipart/mixed; boundary="#MYBOUNDARY#" X-Virus-Scanned: by amavisd-milter (http://amavis.org/) To: undisclosed-recipients: ; Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --#MYBOUNDARY# Content-Type: text/plain; charset=ansi Content-Transfer-Encoding: 8bit ÊÀÒŸ€ÇÒÁà»ç¹šÃÔ§¢Í§§Ò¹»ÃКӀ×ÍäÁèÁÕ€ÇÒÁÁÑè¹€§ ã€Ã¡ÅéÒÂ×¹Âѹ áÁéÇèÒ ÊËÃÑ° ú¡ÑºÍÔÃÑ¡ àÈÃÉ°¡ÔšÐŽÕ¢Ö鹚ÃÔ§ €ÇÒÁÁÑè¹€§ã¹§Ò¹ÁÕšÃÔ§ËÃ×Í? - âŽÂÊÀÒÇзÑèÇ仹Ñé¹ §Ò¹»ÃКӚж١šÓ¡ÑŽŽéÇ¢ÑèÇâÁ§·Ó§Ò¹·ÕèÂÒÇ - ·Ñ駹ÕéÂѧšÓ¡ÑŽÃÒÂäŽé·ÕèµèÓàÁ×èÍà·Õº¡Ñº€ÇÒÁ·ØèÁà··ÕèàÃÒãËéá¡è§Ò¹ - ÍÕ¡·Ñ駌ŧҹ¡ç¶Ù¡ÇÔ¹Ôš©ÑÂâŽÂàšéÒ¹Ò ËÃ×ÍàšéҢͧ¡Ôš¡Òà - ·ÕèÊӀѭ¡ç€×Í ŒÅ§Ò¹âŽ¹àºÕÂŽºÑ§ËÃ×ÍÅŽ€ÇÒÁÊӀѭâŽÂàŸ×è͹ ÃèÇÁ§Ò¹ŒÙé«Ö觪èÒ§»ÃКºàšéÒ¹Ò ÍÕ¡àšéÒ¹Ò¡çÁÑ¡ªÍºàÊÕÂŽéÇ - ÀÒŸ€ÇÒÁà»ç¹šÃÔ§ŽÑ§¡ÅèÒÇÊÃéÒ§€ÇÒÁà€ÃÕÂŽ áÅÐźÅéÒ§ÍÔÊÃÀÒŸ - ÊÀÒŸ€ÇÒÁÁÑè¹€§äÁèÁÕ ÁÕàŸÕ§€ÇÒÁÁÑè¹€§¢Í§ºÃÔÉÑ·áÅкҧ€¹¶Ù¡ €ÑŽàÅ×Í¡ãËéà»ç¹ŒÙéàÊÕÂÊÅÐ㹪ÑèÇâÁ§·ÕèºÃÔÉÑ·ÍÂÙèã¹°Ò¹ÐÂèÓáÂè - ÅͧàÃÔèÁ§Ò¹ŸÔàÈÉàŒ×èÍÇèÒÊÑ¡ÇѹšÐäŽéËÅØŽŸé¹ÊÀÒÇЎѧ¡ÅèÒÇ€×Í ÁÕÍÔÊÃÀÒŸ·Ò§ŽéÒ¹ÃÒÂäŽé µÅÍŽš¹¶Ö§ÍÔÊÃÀÒŸ·Ò§àÇÅÒ - ÊÒÁÒöÊÃéÒ§ÃÒÂäŽéàŸÔèÁÍÕ¡àŽ×͹ÅÐ 10,000-20,000 ºÒ·à»ç¹ ¢Ñé¹µèÓâŽÂãªéàÇÅÒÊÑ»ŽÒËìÅÐ 10-12 ªÑèÇâÁ§ - ÊÒÁÒöá»Ãà»ç¹§Ò¹»ÃКÓäÇéÃͧÃѺ㹡óթءà©Ô¹äŽéà»ç¹ÍÂèÒ§ŽÕ - ·Ó§Ò¹âŽÂã¢éÃкº internet,fax ËÃ×ÍÊ×èÍÍÕàÅ瀷Ã͹ԀÊìÍ×è¹ áÅÐÊ×èͪ¹ÔŽÍ×è¹æµÒÁ€ÇÒÁ¶¹ÑŽáµèÅк؀€Å ·ÕèÊӀѭÁÒ¡ÁÒ¡ €×ÍÍÔÊÃÀÒŸ·Ò§šÔµãš ÊÒÁÒö·Ó§Ò¹ŽéÇ€ÇÒÁ àºÔ¡ºÒ¹ ËÒ¡€Ø³á¹èãšÇèÒ€ÔŽàªè¹¹Ñé¹ áÁéÇèҀسÂѧÈÖ¡ÉÒÍÂÙè¡çµÒÁ ÊÒÁÒöàÃÔèÁàµÃÕÂÁµÑÇËÅÕ¡ÊÀÒŸŽÑ§¡ÅèÒÇ ŒÙé·Õè»ÃÐʺÍÂÙèáÅéÇ¡ç ÊÒÁÒö·ÕèšÐàÃÔèÁËÅÕ¡àÅÕè§ àŸ×èÍ¡ÒÃà¡çºÍÍÁ ËÒ¡ÁÕ€ÇÒÁʹãšãËéŽÙÃÒÂÅÐàÍÕÂŽáÅСÃÍ¡ÃÒÂÅÐàÍÕÂŽ·Õè www.geocities.com/thaigetrich/easywork __________________________________________________________________ ËÒ¡·èÒ¹äÁè»ÃÐʧ€ìÃѺÇÒÃÊÒÚҡàÃÒÍÕ¡µèÍä» ¡ÃسÒÊè§ E-Mail Addressä»·Õè : easywork@maildozy.com ÃкºšÐ·Ó¡ÒõÃÇšÊͺáÅÐźª×èͧ͢·èÒ¹ÍÍ¡šÒ¡°Ò¹¢éÍÁÙŷѹ·Õ (¡ÃسÒÊè§à»ç¹ mail address äÁèãªè display name) _____________________________________________________________________ You can unsubscibe by submit your E-mail address at srs_ctcv@yahoo.com. Please give specific address not your display name. --#MYBOUNDARY#-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 3:19:52 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4473A37B401; Fri, 21 Mar 2003 03:19:51 -0800 (PST) Received: from tomts19-srv.bellnexxia.net (tomts19.bellnexxia.net [209.226.175.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4311043FA3; Fri, 21 Mar 2003 03:19:50 -0800 (PST) (envelope-from mike@sparc64.style9.org) Received: from sparc64.style9.org ([65.93.76.196]) by tomts19-srv.bellnexxia.net (InterMail vM.5.01.04.19 201-253-122-122-119-20020516) with ESMTP id <20030321111949.PKRW9574.tomts19-srv.bellnexxia.net@sparc64.style9.org>; Fri, 21 Mar 2003 06:19:49 -0500 Received: (from mike@localhost) by sparc64.style9.org (8.12.6/8.12.6/Submit) id h2LBK4R1053934; Fri, 21 Mar 2003 06:20:04 -0500 (EST) Date: Fri, 21 Mar 2003 06:20:04 -0500 (EST) From: Mike Barcroft Message-Id: <200303211120.h2LBK4R1053934@sparc64.style9.org> To: current@FreeBSD.org, sparc64@FreeBSD.org Subject: sparc64 tinderbox failure Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Tinderbox FAQ: http://people.FreeBSD.org/~mike/tinderbox.html -------------------------------------------------------------- >>> Rebuilding the temporary build tree -------------------------------------------------------------- >>> stage 1: bootstrap tools -------------------------------------------------------------- >>> stage 2: cleaning up the object tree -------------------------------------------------------------- >>> stage 2: rebuilding the object tree -------------------------------------------------------------- >>> stage 2: build tools -------------------------------------------------------------- >>> stage 3: cross tools -------------------------------------------------------------- >>> stage 4: populating /tinderbox/sparc64/obj/tinderbox/sparc64/src/sparc64/usr/include -------------------------------------------------------------- >>> stage 4: building libraries -------------------------------------------------------------- >>> stage 4: make dependencies -------------------------------------------------------------- ===> usr.sbin/gstat make: don't know how to make subr_sbuf.c. Stop *** Error code 2 Stop in /tinderbox/sparc64/src/usr.sbin. *** Error code 1 Stop in /tinderbox/sparc64/src. *** Error code 1 Stop in /tinderbox/sparc64/src. *** Error code 1 Stop in /tinderbox/sparc64/src. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 5: 1:24 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 937DB37B401 for ; Fri, 21 Mar 2003 05:01:23 -0800 (PST) Received: from br.logorrhea.com (3-4-237-24.gci.net [24.237.4.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6020743F3F for ; Fri, 21 Mar 2003 05:01:22 -0800 (PST) (envelope-from ajole-1@gci.net) Received: from ajole (host217-44-124-84.range217-44.btcentralplus.com [217.44.124.84]) by br.logorrhea.com (8.11.3/8.11.3) with SMTP id h2L5URh19121 for ; Fri, 21 Mar 2003 05:30:28 GMT (envelope-from ajole-1@gci.net) From: "Patrick Stinson" To: "freebsd-current" Subject: Date: Fri, 21 Mar 2003 13:00:50 -0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG what's the sitch on pccardd, if adaptors on, /dev/pccard* on 5.0-R? I've got an intel anypoint 2 wireless pcmcia card that is detected as pccard1 by the kernel, but where is the missing link that tells the kernel or rc that it's an ehternet adaptor? As I understand it, pccardd and pccard.conf are all old a/o 5.0. if they are, how is this supposed to work? many thanks and good fishing, -P To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 5:19:55 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 263F537B405 for ; Fri, 21 Mar 2003 05:19:55 -0800 (PST) Received: from scribble.fsn.hu (scribble.fsn.hu [193.224.40.95]) by mx1.FreeBSD.org (Postfix) with SMTP id D882543FBD for ; Fri, 21 Mar 2003 05:19:52 -0800 (PST) (envelope-from bra@fsn.hu) Received: (qmail 2635 invoked by uid 1000); 21 Mar 2003 13:19:51 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 21 Mar 2003 13:19:51 -0000 Date: Fri, 21 Mar 2003 14:19:51 +0100 (CET) From: Attila Nagy To: Steve Kargl Cc: Nate Lawson , current@FreeBSD.ORG, acpi-jp@jp.freebsd.org, iwasaki@FreeBSD.ORG Subject: Re: ACPI-CA import/new diff? In-Reply-To: <20030320160040.GA67630@troutmask.apl.washington.edu> Message-ID: References: <20030320160040.GA67630@troutmask.apl.washington.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, > Do you have "option MAXMEM" set in your kernel config file? No. ----------[ Free Software ISOs - http://www.fsn.hu/?f=download ]---------- Attila Nagy e-mail: Attila.Nagy@fsn.hu Free Software Network (FSN.HU) phone @work: +361 210 1415 (194) cell.: +3630 306 6758 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 6:25: 0 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0842B37B401 for ; Fri, 21 Mar 2003 06:25:00 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20FBE43F93 for ; Fri, 21 Mar 2003 06:24:57 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.8/8.12.3) with ESMTP id h2LEOtA7048065; Fri, 21 Mar 2003 07:24:56 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Fri, 21 Mar 2003 07:24:27 -0700 (MST) Message-Id: <20030321.072427.106718564.imp@bsdimp.com> To: ajole-1@gci.net Cc: freebsd-current@FreeBSD.ORG From: "M. Warner Losh" In-Reply-To: References: X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG devd_enable=yes would be a good start. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 6:58:22 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B8D837B401; Fri, 21 Mar 2003 06:58:21 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id 928E943F3F; Fri, 21 Mar 2003 06:58:20 -0800 (PST) (envelope-from mdodd@FreeBSD.ORG) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.12.8/8.12.8) with ESMTP id h2LEwJCi075752; Fri, 21 Mar 2003 09:58:19 -0500 (EST) (envelope-from mdodd@FreeBSD.ORG) Date: Fri, 21 Mar 2003 09:58:19 -0500 (EST) From: "Matthew N. Dodd" X-X-Sender: winter@sasami.jurai.net To: Nate Lawson Cc: current@FreeBSD.ORG, wpaul@FreeBSD.ORG Subject: Re: Updated if_* attach/detach patches In-Reply-To: Message-ID: <20030321095558.O8716@sasami.jurai.net> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 19 Mar 2003, Nate Lawson wrote: > Patches are at: > http://www.root.org/~nate/freebsd/if_pci/ I'd like to see calls to mtx_destroy() protected by a test for mtx_initialized(). In most cases this isn't strictly necessary but its not bad practice. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 7: 6:52 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B8B437B401 for ; Fri, 21 Mar 2003 07:06:51 -0800 (PST) Received: from demos.su (mx.demos.su [194.87.0.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6820343FB1 for ; Fri, 21 Mar 2003 07:06:47 -0800 (PST) (envelope-from tolyar@mx.ru) Received: from [194.87.2.159] (HELO dwarf.demos.su) by demos.su (CommuniGate Pro SMTP 4.0.6/D2) with SMTP id 64567346 for freebsd-current@FreeBSD.ORG; Fri, 21 Mar 2003 18:06:46 +0300 Date: Fri, 21 Mar 2003 18:06:53 +0300 From: Zherdev Anatoly To: freebsd-current@FreeBSD.ORG Subject: Problem with fsck on -current and ufs1 Message-Id: <20030321180653.520b1ea5.tolyar@mx.ru> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I try make fsck under -current for ufs1 file system (created under -stable) and fsck print out this: >fsck -y /dev/ad0s1a fsck: exec /usr/sbin/fsck_4.2BSD for /dev/ad0s1a: No such file or directory fsck search /usr/sbin/fsck_4.2BSD , but system has only /sbin/fsck_4.2bsd Need change pathnames.h:#define _PATH_USRSBIN "/usr/sbin" or need install fsck's to /usr/sbin and need fsck_4.2BSD instead fsck_4.2bsd (or may be both) --- Zherdev Anatoly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 7:33:24 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8936037B404 for ; Fri, 21 Mar 2003 07:33:23 -0800 (PST) Received: from relay1.ntu-kpi.kiev.ua (oberon.ntu-kpi.kiev.ua [195.245.194.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DA6243F93 for ; Fri, 21 Mar 2003 07:33:09 -0800 (PST) (envelope-from nikolay@asu.ntu-kpi.kiev.ua) Received: by relay1.ntu-kpi.kiev.ua (Postfix, from userid 426) id 0E8BB19C12; Fri, 21 Mar 2003 17:32:46 +0200 (EET) Received: from onyx.asu.ntu-kpi.kiev.ua (eth0.onyx.asu.ntu-kpi.kiev.ua [10.18.16.2]) by relay1.ntu-kpi.kiev.ua (Postfix) with ESMTP id 77A1F19C05 for ; Fri, 21 Mar 2003 17:32:45 +0200 (EET) Received: from drweb by onyx.asu.ntu-kpi.kiev.ua with drweb-scanned (Exim 4.10) id 18wOVh-0002XA-00 for freebsd-current@FreeBSD.ORG; Fri, 21 Mar 2003 17:32:45 +0200 Received: from nikolay by onyx.asu.ntu-kpi.kiev.ua with local (Exim 4.10) id 18wOVh-0002X4-00 for freebsd-current@FreeBSD.ORG; Fri, 21 Mar 2003 17:32:45 +0200 Date: Fri, 21 Mar 2003 17:32:45 +0200 From: "Nikolay Y. Orlyuk" To: freebsd-current@FreeBSD.ORG Subject: Re: Problem with fsck on -current and ufs1 Message-ID: <20030321153245.GP76182@asu.ntu-kpi.kiev.ua> Mail-Followup-To: freebsd-current@FreeBSD.ORG References: <20030321180653.520b1ea5.tolyar@mx.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <20030321180653.520b1ea5.tolyar@mx.ru> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Mar 21, 2003 at 06:06:53PM +0300, Zherdev Anatoly wrote: > I try make fsck under -current for ufs1 file system (created under > -stable) and fsck print out this: > > > >fsck -y /dev/ad0s1a > fsck: exec /usr/sbin/fsck_4.2BSD for /dev/ad0s1a: No such file or > directory > > fsck search /usr/sbin/fsck_4.2BSD , but system has only /sbin/fsck_4.2bsd > > Need change > pathnames.h:#define _PATH_USRSBIN "/usr/sbin" > or need install fsck's to /usr/sbin > > and need fsck_4.2BSD instead fsck_4.2bsd (or may be both) Simply make link by: ln -s /sbin/fsck_4.2bsd /usr/sbin/fsck_4.2BSD I don't think that you must think why fsck search other or why it compiled with name in lower case. If you want this then you must compare sources of fsck and fsck_4.2bsd. > > > > -- With best wishes Nikolay mail: nikolay@asu.ntu-kpi.kiev.ua To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 8:39:41 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A7C637B405; Fri, 21 Mar 2003 08:39:38 -0800 (PST) Received: from mailgw.cscoms.com (mailgw.cscoms.com [202.183.255.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39E2E43F85; Fri, 21 Mar 2003 08:39:37 -0800 (PST) (envelope-from FreeBooklet@thaimail.com) Received: from cscoms.com (mail.cscoms.com [202.183.255.23]) by mailgw.cscoms.com (8.12.8/8.12.3) with ESMTP id h2LGZJER032186; Fri, 21 Mar 2003 23:35:20 +0700 (ICT) Received: from ME (dial-49.ras-7.bkk.c.cscoms.com [203.170.129.49]) by cscoms.com (8.12.8/8.12.3) with SMTP id h2LGV5wo017089; Fri, 21 Mar 2003 23:31:08 +0700 (GMT) Date: Fri, 21 Mar 2003 23:31:05 +0700 (GMT) Message-Id: <200303211631.h2LGV5wo017089@cscoms.com> From: FreeBooklet@thaimail.com Subject: áš¡¿ÃÕ ! ˹ѧÊ×Í€ÙèÁ×Í€¹à€Âš¹ ÊÓËÃѺŒÙéʹãš.... X-Priority: 1 (Highest) Reply-To: FreeBooklet@thaimail.com X-Mailer: Microsoft Outlook Express 5.00.2615.200 MIME-Version: 1.0 Content-type: multipart/mixed; boundary="#MYBOUNDARY#" X-Virus-Scanned: by amavisd-milter (http://amavis.org/) To: undisclosed-recipients: ; Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --#MYBOUNDARY# Content-Type: text/plain; charset=ansi Content-Transfer-Encoding: 8bit >>>>·Ó§Ò¹·ÕèÂÒ¡·ÕèÊØŽ¡è͹ >>>> >>ŒÁÂÔè§ÁÕªÕÇÔµÍÂÙè¹Ò¹à·èÒäËÃè ŒÁÂÔè§ÁÑè¹ãšÁÒ¡¢Öé¹à·èÒ¹Ñé¹ >>ÇèÒ€ÇÒÁᵡµèÒ§ÍѹÂÔè§ãË­èÃÐËÇèÒ§Á¹ØÉÂì... >>ÃÐËÇèÒ€¹·ÕèÍè͹áÍáÅЀ¹·ÕÍÓ¹Òš....... >>ÃÐËÇèÒ§€¹·ÕèÂÔè§ãË­èáÅЀ¹·ÕèäÁèÊӀѭ ¡ç€×Í >>àÃÕèÂÇáç¢Í§....€ÇÒÁµÑé§ãšá¹èÇá¹è·ÕèäÁèÍÒš·ÓÅÒÂäŽé.... >>šØŽ»ÃÐʧ€ì·ÕèàÁ×è͵Ñ駢Öé¹áÅéÇ ¶éÒäÁèµÒ¡çµéͧª¹Ð >>-à«ÍÃìâžÁÑÊ ¿ÒÇàÇÅ ºÑê¡«ìµÑ¹ >>˹Öè§ã¹à·€¹Ô€·ÕèŽÕ·ÕèÊ؎㹡ÒÃàÍÒª¹Ð¹ÔÊÑŒюÇѹ»ÃСѹŸÃØè§ >>áÅзӧҹäŽéÁÒ¡¢Öé¹áÅÐàÃçÇ¢Ö鹡ç€×ÍŧÁ×Í·Ó§Ò¹·ÕèÂÒ¡·ÕèÊØŽ¢Í§€Ø³¡è͹ >>¹Õè€×Í¡Òà " ¡Ô¹¡º¢Í§€Ø³ " ·Õèá·éšÃÔ§ Áѹà»ç¹·Ñ¡ÉÐÊèǹºØ€€Å㹡ÒúÃÔËÒà >>·ÕèÂÒ¡·ÕèÊØŽáÅÐÊӀѭ·ÕèÊØŽàÃÔèÁµé¹µÍ¹àªéÒŽéǧҹ·ÕèãË­è·ÕèÊØŽáÅÐÊӀѭ·ÕèÊØŽ >>€×Í ÊÔ觵ç¢éÒÁ¡Ñº·Õ耹ÊèǹãË­è·Ó ÃÐàºÕºÇԹѹÕéšÐ·ÓãËé€Ø³àÅÔ¡¹ÔÊÑ ŒÑŽÇѹ >>»ÃСѹŸÃØè§áÅзÓãËé͹ҀµÍÂÙè㹡ÓÁ×̀س >>>>>>>>¡ÒÃàÃÔèÁµé¹áµèÅÐÇѹŽéǧҹ·ÕèÂÒ¡·ÕèÊØŽà»ç¹¡ÒÃàÃÔèÁµé¹áºº¡éÒÇ¡ÃÐ⎎ >>·ÕèŽÕ €Ø³šÐÁÕä¿ÁÒ¡¢Öé¹ áÅКзӧҹäŽéŒÅŽÕÁÒ¡¢Öé¹ >>>>>>>>ã¹Çѹ·Õè€Ø³àÃÔèÁŧÁ×Í·Ó§Ò¹ÊӀѭâŽÂ·Ñ¹·Õ·Ñ¹€Çѹ €Ø³šÐÃÙéÊÖ¡ŽÕ¡ÑºµÑÇ >>€Ø³àͧáÅСѺ§Ò¹¢Í§€Ø³ÁÒ¡¡ÇèÒ€¹Í×è¹æ €Ø³šÐÃÙéÊÖ¡ÁÕÍÓ¹ÒšÁÒ¡¢Öé¹ €Çº€ØÁ >>µÑÇàͧäŽéÁÒ¡¢Öé¹áÅÐÃѺŒÔŽªÍºŽÙáŪÕÇÔµµÑÇàͧäŽéÁÒ¡¡ÇèÒàÇÅÒÍ×è¹ >>>>>>>ÊÃéÒ§¹ÔÊÑÂàÃÔèÁ·Ó§Ò¹·ÕèÂÒ¡·ÕèÊØŽ¡è͹áÅéǀسšÐäÁèµéͧÁͧÂé͹¡ÅѺ >>€Ø³šÐ¡ÅÒÂà»ç¹ ˹Öè§ã¹€¹·ÕèÁÕ»ÃÐÊÔ·žÔÀÒŸÁÒ¡·ÕèÊØŽã¹€¹ÃØ蹀س............... >>¡Ô¹¡ºµÑǹÑ鹫Ð!!! š§ÁͧµÑÇàͧÇèÒà»ç¹§Ò¹·Õè¡ÓÅѧ€×ºË¹éÒ š§à·ãšãËé¡Ñº¡ÒÃàŸÒйÔÊÑ >>à»ç¹€¹ÁՌŧҹÊÙ§ŽéÇ¡ÒÜ֡«éÓáÅéÇ«éÓàÅèÒš¹¡ÃзÑè§Áѹ¡ÅÒÂà»ç¹àÃ×èͧÍѵâ¹ÁѵÔáÅÐ >>¡ÅÒÂà»ç¹àÃ×èͧ§èÒ >>>>>>>>˹Öè§ã¹ÇÅÕ·ÕèÁÕ͹ØÀÒŸÁÒ¡·ÕèÊØŽ«Ö觀سÊÒÁÒöàÃÕ¹ÃÙéáÅйÓÁÒãªéäŽé¡ç€×Í >>" àŸ×èÍÇѹ¹Õéà·èÒ¹Ñé¹! "ÍÂèÒÇÔµ¡àÃ×èͧ¡ÒÃà»ÅÕè¹á»Å§ªÕÇÔµµÑÇàͧ ¶éÒÁѹ¿Ñ§àËÁ×͹à»ç¹ >>€ÇÒÁ€ÔŽ·ÕèŽÕ š§·ÓÁѹ" àŸ×èÍÇѹ¹Õéà·èÒ¹Ñé¹" >>>>>>>>ºÍ¡¡ÑºµÑÇàͧÇèÒ " àŸ×èÍÇѹ¹Õéà·èÒ¹Ñé¹ ©Ñ¹šÐÇҧጹàµÃÕÂÁ¡Òà áÅÐàÃÔèÁµé¹§Ò¹ >>·ÕèÂÒ¡·ÕèÊØŽ¡è͹šÐ·ÓÍÂèÒ§Í×è¹ "áÅéǀسšÐµéͧ·Ö觡Ѻ€ÇÒÁᵡµèÒ§·Õèà¡ÔŽ¢Öé¹ã¹ªÕÇÔµ€Ø³ ---------------------------------------------------------------------------------------------- €Ø³ ŸÃéÍÁáÅéÇÃÖÂѧ ¡ÑºÃٻẺ¡Ò÷ӧҹ§èÒÂæšÒ¡·ÕèºéÒ¹ Click Here! www.geocities.com/thaigetrich/easywork , ËÃ×Í Tel. 0-2277-7850 ¡Ž 25 ----------------------------------------------------------------------------------------------- ¢ÍÍÀÑÂËÒ¡à»ç¹¡ÒÃú¡Ç¹ áÅÐËÒ¡äÁèµéͧ¡ÒÃãËéÊ觢èÒÇÊÒÃÁÒÂѧ·èÒ¹ÍÕ¡ ¡ÃسÒàÁÅÅìÁÒ·Õè easywork@maildozy.com ËÑÇ¢éÍ unsub --#MYBOUNDARY#-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 9:59:39 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62F5C37B404 for ; Fri, 21 Mar 2003 09:59:38 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 49DDF43FCB for ; Fri, 21 Mar 2003 09:59:37 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 15981 invoked by uid 1000); 21 Mar 2003 17:59:37 -0000 Date: Fri, 21 Mar 2003 09:59:37 -0800 (PST) From: Nate Lawson To: "Matthew N. Dodd" Cc: current@FreeBSD.ORG, wpaul@FreeBSD.ORG Subject: Re: Updated if_* attach/detach patches In-Reply-To: <20030321095558.O8716@sasami.jurai.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 21 Mar 2003, Matthew N. Dodd wrote: > On Wed, 19 Mar 2003, Nate Lawson wrote: > > Patches are at: > > http://www.root.org/~nate/freebsd/if_pci/ > > I'd like to see calls to mtx_destroy() protected by a test for > mtx_initialized(). > > In most cases this isn't strictly necessary but its not bad practice. Perhaps I should add a comment mentioning my assumption: mtx_init is one of the first things called and since detach unconditionally locks the mtx, it should never be called unless the mutex is initialized. -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 10: 3:44 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C0C337B401; Fri, 21 Mar 2003 10:03:44 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id A085843FBD; Fri, 21 Mar 2003 10:03:42 -0800 (PST) (envelope-from mdodd@FreeBSD.ORG) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.12.8/8.12.8) with ESMTP id h2LI3fCi080652; Fri, 21 Mar 2003 13:03:41 -0500 (EST) (envelope-from mdodd@FreeBSD.ORG) Date: Fri, 21 Mar 2003 13:03:41 -0500 (EST) From: "Matthew N. Dodd" X-X-Sender: winter@sasami.jurai.net To: Nate Lawson Cc: current@FreeBSD.ORG, wpaul@FreeBSD.ORG Subject: Re: Updated if_* attach/detach patches In-Reply-To: Message-ID: <20030321130259.E8716@sasami.jurai.net> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 21 Mar 2003, Nate Lawson wrote: > Perhaps I should add a comment mentioning my assumption: mtx_init is > one of the first things called and since detach unconditionally locks > the mtx, it should never be called unless the mutex is initialized. This isn't the case for all drivers and the test would set a good example for people reading the code. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 11:51:16 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31CDD37B401 for ; Fri, 21 Mar 2003 11:51:15 -0800 (PST) Received: from tsunami.platypusgroup.com (tsunami.platypusgroup.com [64.71.174.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92E4843FA3 for ; Fri, 21 Mar 2003 11:51:14 -0800 (PST) (envelope-from ksb@platypusgroup.com) Received: from localhost (localhost.platypusgroup.com [127.0.0.1]) by tsunami.platypusgroup.com (Postfix) with ESMTP id 2B4BB581B for ; Fri, 21 Mar 2003 14:51:29 -0500 (EST) Received: from tsunami.platypusgroup.com ([127.0.0.1]) by localhost (tsunami.platypusgroup.com [127.0.0.1:10024]) (amavisd-new) with ESMTP id 75434-04 for ; Fri, 21 Mar 2003 14:51:18 -0500 (EST) Received: by tsunami.platypusgroup.com (Postfix, from userid 1000) id 8AA40581A; Fri, 21 Mar 2003 14:51:18 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by tsunami.platypusgroup.com (Postfix) with ESMTP id 895A65818 for ; Fri, 21 Mar 2003 14:51:18 -0500 (EST) Date: Fri, 21 Mar 2003 14:51:18 -0500 (EST) From: "Kevin S. Brackett" To: freebsd-current@freebsd.org Subject: IPDIVERT problem? Message-ID: <20030321144208.U96640@tsunami.platypusgroup.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-new Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The system is running FreeBSD 5-current, cvsup'd yesterday. dmesg: Mar 19 13:05:23 hades kernel: ipfw2 initialized, divert enabled, rule-based forwarding enabled, default to accept, logging limited to 100 packets/entry by default Mar 19 13:05:23 hades kernel: DUMMYNET initialized (011031) Mar 19 13:05:23 hades kernel: IPv6 packet filtering initialized, default to accept, logging limited to 100 packets/entry rc.firewall: ${fwcmd} add 50 divert natd all from any to any via ${natd_interface} error: ipfw: opcode 50 size 1 wrong getsockopt(IP_FWD_ADD): something something kernel conf: options IPFIREWALL options IPFIREWALL_VERBOSE options IPFIREWALL_FORWARD options IPFIREWALL_VERBOSE_LIMIT=100 options IPFIREWALL_DEFAULT_TO_ACCEPT options IPFIREWALL_FORWARD options IPV6FIREWALL options IPV6FIREWALL_VERBOSE options IPV6FIREWALL_VERBOSE_LIMIT=100 options IPV6FIREWALL_DEFAULT_TO_ACCEPT options DUMMYNET options IPDIVERT any ideas? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 12: 2:10 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 959D037B401 for ; Fri, 21 Mar 2003 12:02:09 -0800 (PST) Received: from mailout02.sul.t-online.com (mailout02.sul.t-online.com [194.25.134.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7A5443FA3 for ; Fri, 21 Mar 2003 12:02:08 -0800 (PST) (envelope-from blitz@jmmr.no-ip.com) Received: from fwd11.sul.t-online.de by mailout02.sul.t-online.com with smtp id 18wSiO-0004cg-01; Fri, 21 Mar 2003 21:02:08 +0100 Received: from jmmr.no-ip.com (520088592922-0001@[80.135.58.122]) by fmrl11.sul.t-online.com with esmtp id 18wSi9-29OMwCC; Fri, 21 Mar 2003 21:01:53 +0100 Received: from jmmr.no-ip.com (blitz@localhost [127.0.0.1]) by jmmr.no-ip.com (8.12.8/8.12.8) with ESMTP id h2LK1Xj2000659 for ; Fri, 21 Mar 2003 21:01:42 +0100 (CET) (envelope-from blitz@jmmr.no-ip.com) Received: (from blitz@localhost) by jmmr.no-ip.com (8.12.8/8.12.8/Submit) id h2LK1VeA000658 for freebsd-current@FreeBSD.ORG; Fri, 21 Mar 2003 21:01:31 +0100 (CET) (envelope-from blitz) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Fri, 21 Mar 2003 21:01:30 +0100 (CET) From: der_julian@web.de To: freebsd-current@FreeBSD.ORG Subject: MIDI on SB Live! ? X-Sender: 520088592922-0001@t-dialin.net Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, just out of curiosity: Is someone working in MIDI support for Creative EMU10K1 based sound cards (aka Soundblaster Live!) ? Regards, Julian Stecklina To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 12:12:19 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2833337B404 for ; Fri, 21 Mar 2003 12:12:18 -0800 (PST) Received: from oasis.quay.com (sub18-59.member.dsl-only.net [63.105.18.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B0BE43FAF for ; Fri, 21 Mar 2003 12:12:17 -0800 (PST) (envelope-from tod@quay.com) Received: from quay.com (titania-wl.quay.com [192.168.2.8]) by oasis.quay.com (8.12.8/8.12.8) with ESMTP id h2LKCGoC063446; Fri, 21 Mar 2003 12:12:16 -0800 (PST) (envelope-from tod@quay.com) Date: Fri, 21 Mar 2003 12:12:18 -0800 Subject: Re: IPDIVERT problem? Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v551) Cc: freebsd-current@FreeBSD.ORG To: "Kevin S. Brackett" From: Tod Oace In-Reply-To: <20030321144208.U96640@tsunami.platypusgroup.com> Message-Id: <6ABE7822-5BD9-11D7-A07C-00039388DE60@quay.com> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.551) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday, March 21, 2003, at 11:51 AM, Kevin S. Brackett wrote: > Mar 19 13:05:23 hades kernel: ipfw2 initialized, divert enabled, > rule-based forwarding enabled, default to accept, logging limited to > 100 > packets/entry by default > Mar 19 13:05:23 hades kernel: DUMMYNET initialized (011031) > Mar 19 13:05:23 hades kernel: IPv6 packet filtering initialized, > default > to accept, logging limited to 100 packets/entry It's been working fine for me although I'm not using DUMMYNET or IPv6 firewall, and my default is to deny. Last cvsup was a couple days ago. > ${fwcmd} add 50 divert natd all from any to any via ${natd_interface} Same here. Was it working before or is this a new setup? Have you verified natd is running, natd_interface is defined to your public interface and all that? > ipfw: opcode 50 size 1 wrong > getsockopt(IP_FWD_ADD): something something Maybe try without IPv6 firewall and DUMMYNET to help narrow the problem down. -- Tod Oace To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 12:19:31 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E541137B401 for ; Fri, 21 Mar 2003 12:19:30 -0800 (PST) Received: from tsunami.platypusgroup.com (tsunami.platypusgroup.com [64.71.174.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DFA543FA3 for ; Fri, 21 Mar 2003 12:19:30 -0800 (PST) (envelope-from ksb@platypusgroup.com) Received: from localhost (localhost.platypusgroup.com [127.0.0.1]) by tsunami.platypusgroup.com (Postfix) with ESMTP id 9A9B95817; Fri, 21 Mar 2003 15:19:44 -0500 (EST) Received: from tsunami.platypusgroup.com ([127.0.0.1]) by localhost (tsunami.platypusgroup.com [127.0.0.1:10024]) (amavisd-new) with ESMTP id 75434-09; Fri, 21 Mar 2003 15:19:34 -0500 (EST) Received: by tsunami.platypusgroup.com (Postfix, from userid 1000) id 0D8635810; Fri, 21 Mar 2003 15:19:34 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by tsunami.platypusgroup.com (Postfix) with ESMTP id 0C04C5208; Fri, 21 Mar 2003 15:19:34 -0500 (EST) Date: Fri, 21 Mar 2003 15:19:34 -0500 (EST) From: "Kevin S. Brackett" To: Tod Oace Cc: freebsd-current@FreeBSD.ORG Subject: Re: IPDIVERT problem? In-Reply-To: <6ABE7822-5BD9-11D7-A07C-00039388DE60@quay.com> Message-ID: <20030321151639.K96640@tsunami.platypusgroup.com> References: <6ABE7822-5BD9-11D7-A07C-00039388DE60@quay.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-new Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 21 Mar 2003, Tod Oace wrote: > Same here. Was it working before or is this a new setup? Have you > verified natd is running, natd_interface is defined to your public > interface and all that? Everything was working fine a few weeks ago, and the system has been running 5 about a month prior -release... i'll try removing the ipv6 and dummynet options since i'm not using either right now, and let you know. - kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 12:40: 4 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFFB337B401 for ; Fri, 21 Mar 2003 12:40:03 -0800 (PST) Received: from arthur.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id D15A143F75 for ; Fri, 21 Mar 2003 12:40:02 -0800 (PST) (envelope-from simon@arthur.nitro.dk) Received: by arthur.nitro.dk (Postfix, from userid 1000) id C545010BF94; Fri, 21 Mar 2003 21:40:00 +0100 (CET) Date: Fri, 21 Mar 2003 21:40:00 +0100 From: "Simon L. Nielsen" To: "Kevin S. Brackett" Cc: freebsd-current@freebsd.org Subject: Re: IPDIVERT problem? Message-ID: <20030321203959.GC389@nitro.dk> References: <20030321144208.U96640@tsunami.platypusgroup.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="liOOAslEiF7prFVr" Content-Disposition: inline In-Reply-To: <20030321144208.U96640@tsunami.platypusgroup.com> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2003.03.21 14:51:18 -0500, Kevin S. Brackett wrote: > ipfw: opcode 50 size 1 wrong > getsockopt(IP_FWD_ADD): something something Are you really sure that your kernel/world is in sync? This is the kind of error you can get if they are not in sync. --=20 Simon L. Nielsen --liOOAslEiF7prFVr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+e3if8kocFXgPTRwRAjj3AKDUzXdgpmhQz5GSS6oUfXzf1DzCtACgpP4I P+1O/vblSczGOXqwsxV/1as= =mWsa -----END PGP SIGNATURE----- --liOOAslEiF7prFVr-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 13: 7:35 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5882337B405 for ; Fri, 21 Mar 2003 13:07:25 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C95044305 for ; Fri, 21 Mar 2003 13:00:26 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id HAA30248; Sat, 22 Mar 2003 07:58:23 +1100 Date: Sat, 22 Mar 2003 07:58:22 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Jake Burkholder Cc: FreeBSD current users Subject: Re: question on profiling code In-Reply-To: <20030217173211.G81102@locore.ca> Message-ID: <20030322062729.C3753@gamplex.bde.org> References: <20030217021512.O63597@locore.ca> <20030218075519.Y7132-100000@gamplex.bde.org> <20030217173211.G81102@locore.ca> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Long ago, On Mon, 17 Feb 2003, Jake Burkholder wrote: [I quoted everything since this thread is so old. My main point is at the end. It restarts and older part of this thread.] > > Can you explain how fuswintr() and suswintr() work on sparc64's? They > > seem to cause traps if the user counter is not mapped, and I can't see > > where the traps are handled. ia64/trap.c has a comment about where these > > traps are handled, but has dummies for fuswintr() and suswintr() so the > > traps never occur. Depending on traps in fast interrupt handlers is > > a bug IMO. It extends the scope of the fast interrupt handler to the > > trap handler, and it is difficult to limit this scope and verify the > > locking for it. > > Ok. Sparc64 uses "lazy trap handling", similar to how I saw you'd done > in your sys.dif. The functions that access user space are delimited by > labels, and in trap and trap_pfault we check to see if the pc is inside > of the labels. fuswintr and suswintr and bracketed by fs_nofault_intr_begin > and fs_nofault_intr_end, which trap_pfault checks for specifically before > doing much of anything: > > if (ctx != TLB_CTX_KERNEL) { > if ((tf->tf_tstate & TSTATE_PRIV) != 0 && > (tf->tf_tpc >= (u_long)fs_nofault_intr_begin && > tf->tf_tpc <= (u_long)fs_nofault_intr_end)) { > tf->tf_tpc = (u_long)fs_fault; > tf->tf_tnpc = tf->tf_tpc + 4; > return (0); > } > ... handle fault > > ctx != TLB_CTX_KERNEL is akin to va < VM_MAXUSER_ADDRESS (the address spaces > overlap on sparc64 so we can only rely on tlb context numbers). Note that > the range bracketed by the fs_nofault_intr_* is included in the fs_nofault > range, which handles alignment or data access exception faults. I see. This is much cleaner than my version, since I use lots of equality checks instead of the range check, and need labels for them all. > It does take some special care in trap() and trap_pfault() not to access > important data, or acquire any locks before this test. Non-trivial > interrupts are still masked here, which buys us something. Probably the > vmspace pointer should not be counted on in this context, but I don't think > it will ever be invalid for the current process, especially since the original > interrupt occured in usermode. The i386 trap() wants to enable interrupts early since this reduces its complications, but this is wrong even for its existing lazy trap handling. My version has even more complications in an attempt to only mask interrupts earlier in the non-lazy trap handling cases. > The only locking that's required that I can see is that PS_PROFIL not be > set when the profiling buffer is invalid. But all that will happen is that > attempts to update the profiling buffer will be ignored. Technically the > process should get a signal but addupc_task doesn't check the return value > of copyin/out (oops). addupc_task still doesn't check. It wouldn't hurt for profil() to check the buffer up front using useracc(). But silly processes could still unmap the buffer, so copyin/out should check too. Strictly, we need enough locking to prevent invalid profiling buffers being used once the process has seen that they have been invalidated. Even silly processes can reasonably expect to use their profiling buffers for something else after they have turned off profiling. Back to an older part of this thread: > On Mon, 17 Feb 2003, Jake Burkholder wrote: > > > Apparently, On Mon, Feb 17, 2003 at 05:35:09PM +1100, > > > Now there is a stronger reason: clock interrupt handling is "fast", > > > so it normally returns to user mode without going near ast(), and the > > > counter is not updated until the next non-fast interrupt or syscall. > > > > In freebsd "fast" interrupts do handle asts, on i386 they return through > > doreti > > Oops. Actually, this doesn't always help. ast() is only called on return to user mode. doreti doesn't check TDF_NEEDRESCHED on return to kernel mode. Thus the following code in ithread_schedule() only works right if the interrupt occurred in user mode: % if (TD_AWAITING_INTR(td)) { % CTR2(KTR_INTR, "%s: setrunqueue %d", __func__, p->p_pid); % TD_CLR_IWAIT(td); % setrunqueue(td); % if (do_switch && % (ctd->td_critnest == 1) ) { % KASSERT((TD_IS_RUNNING(ctd)), % ("ithread_schedule: Bad state for curthread.")); % ctd->td_proc->p_stats->p_ru.ru_nivcsw++; % if (ctd->td_kse->ke_flags & KEF_IDLEKSE) % ctd->td_state = TDS_CAN_RUN; /* XXXKSE */ % mi_switch(); % } else { % curthread->td_flags |= TDF_NEEDRESCHED; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ % } % } else { There is only a problem when we didn't switch immediately because ctd->td_critnest != 1 (apart from the 3 style bugs in the td_critnest test). The most common case is when a fast interrupt handler calls swi_sched(), as happens quite often when hardclock() schedules softclock(). Fast interrupt handlers bump td_critnest (this is part of their locking) and ithread_schedule() bumps it again. Thus td_critnest is always >= 2, and swi_sched() never works right within fast interrupt handlers. It mainly wastes a lot of time to do little more than set TDF_NEEDRESCHED as above, and this setting doesn't work right either unless the fast interrupt occurred in user mode -- then the switch is done in ast() on return to user mode, but if the return is to kernel mode then doreti just returns. At least on i386's, the unpend() stuff at the end of at least the i386 Xfastintr fixes up some of the problems accidentally: if a normal interrupt happened to occur while td_critnest was bumped, then we call i386_unpend() to handle it, and i386_unpend() handles switching to higher-priority runnable tasks as a side effect of switching for the normal interrupts although its support for software interrupts is limited to forwarding clock interrupts in the SMP case. The latencies caused by this bug are probably not easy to measure properly. I just hacked up the following to measure the latency from hardclock() to softclock(): %%% Index: kern_clock.c =================================================================== RCS file: /home/ncvs/src/sys/kern/kern_clock.c,v retrieving revision 1.155 diff -u -2 -r1.155 kern_clock.c --- kern_clock.c 4 Mar 2003 23:19:54 -0000 1.155 +++ kern_clock.c 5 Mar 2003 11:55:15 -0000 @@ -70,4 +70,7 @@ #endif +int softclock_sched_pending; +struct timespec softclock_sched; + #ifdef DEVICE_POLLING extern void hardclock_device_poll(void); @@ -225,6 +228,9 @@ * callout_lock held; incorrect locking order. */ - if (need_softclock) + if (need_softclock) { + softclock_sched_pending = 1; + nanotime(&softclock_sched); swi_sched(softclock_ih, 0); + } } Index: kern_timeout.c =================================================================== RCS file: /home/ncvs/src/sys/kern/kern_timeout.c,v retrieving revision 1.75 diff -u -2 -r1.75 kern_timeout.c --- kern_timeout.c 1 Feb 2003 10:06:40 -0000 1.75 +++ kern_timeout.c 6 Mar 2003 14:33:27 -0000 @@ -47,4 +47,7 @@ #include +extern int softclock_sched_pending; +extern struct timespec softclock_sched; + /* * TODO: @@ -139,4 +142,18 @@ static uint64_t maxdt = 18446744073709551LL; /* 1 msec */ #endif + + mtx_lock_spin(&sched_lock); + if (softclock_sched_pending) { + struct timespec ts; + + nanotime(&ts); + timespecsub(&ts, &softclock_sched); + softclock_sched_pending = 0; + mtx_unlock_spin(&sched_lock); + if (ts.tv_sec > 0 || ts.tv_nsec > 1000000) + printf("large softclock lag %d.%09ld\n", + ts.tv_sec, ts.tv_nsec); + } else + mtx_unlock_spin(&sched_lock); #ifndef MAX_SOFTCLOCK_STEPS %%% This gives results like: % Mar 22 06:19:00 besplex kernel: large softclock lag 0.012118505 % Mar 22 06:19:00 besplex kernel: large softclock lag 0.018373392 % Mar 22 06:20:03 besplex kernel: large softclock lag 0.005993315 % Mar 22 06:20:03 besplex kernel: large softclock lag 0.003627271 % Mar 22 06:20:03 besplex kernel: large softclock lag 0.050219103 % Mar 22 06:20:03 besplex kernel: large softclock lag 0.022892766 % Mar 22 06:20:03 besplex kernel: large softclock lag 0.002526595 % Mar 22 06:20:03 besplex kernel: large softclock lag 0.006122069 % Mar 22 06:20:03 besplex kernel: large softclock lag 0.011606568 % Mar 22 06:20:03 besplex kernel: large softclock lag 0.007590287 softclock() may be delayed legitimately by higher-priority threads running first, but I think all lags shown in the above are caused by the bug since none are reported for my kernel where I think the only significant difference is that clock interrupt handlers are non-fast. Possible fixes: - doing scheduling in fast interrupt handlers is a bug IMO. It is not permitted in my kernel (%fs == 0). (mtx_lock*() is not permitted either.) - requests for things to be done in doreti and/or at the end of X*intr* basically need to set a simple condition that is checked there. In RELENG_4, the condition was (ipending & ~cpl). The condition shouldn't involve searching queues. - crtitical_exit() should run interrupts that it unblocked. It does this for hardware interrupts, but not for SWIs that were scheduled by calling swi_sched() while in the critical region. Hopefully this is never done. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 14:10:21 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE18137B401 for ; Fri, 21 Mar 2003 14:10:19 -0800 (PST) Received: from storming.org (MG034063.user.veloxzone.com.br [200.165.34.63]) by mx1.FreeBSD.org (Postfix) with SMTP id C769A43F75 for ; Fri, 21 Mar 2003 14:10:17 -0800 (PST) (envelope-from fred@storming.org) Received: (qmail 1912 invoked by uid 1000); 21 Mar 2003 19:10:12 -0300 Date: Fri, 21 Mar 2003 19:10:12 -0300 From: Fred Souza To: "Kevin S. Brackett" Cc: freebsd-current@FreeBSD.ORG Subject: Re: IPDIVERT problem? Message-ID: <20030321221012.GA1843@torment.storming.org> Reply-To: fred@storming.org References: <20030321144208.U96640@tsunami.platypusgroup.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bp/iNruPH9dso1Pn" Content-Disposition: inline In-Reply-To: <20030321144208.U96640@tsunami.platypusgroup.com> X-Sender: fred@storming.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable > ipfw: opcode 50 size 1 wrong > getsockopt(IP_FWD_ADD): something something I had this experience a few days ago too. It turned out as being an outdated /sbin/ipfw. cvsup'ing and then `cd /usr/src/sbin/ipfw && make all install clean` solved it. Notice that if you did NOT run a make world _after_ compiling the kernel that gave you that error, you will need to update /usr/include/netinet/ip_fw*.h. Fred --=20 "Show your affection, which will probably meet with pleasant response." --bp/iNruPH9dso1Pn Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+e43EZNmEsrl+ROERAnJRAKCvAWNtXyWD6jDuog7p2oWB5/zq2wCfa8Q5 ybA+jksuI+VsNSU251L5x3I= =upAW -----END PGP SIGNATURE----- --bp/iNruPH9dso1Pn-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 14:42:55 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B32637B401 for ; Fri, 21 Mar 2003 14:42:54 -0800 (PST) Received: from tsunami.platypusgroup.com (tsunami.platypusgroup.com [64.71.174.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FA0743F85 for ; Fri, 21 Mar 2003 14:42:54 -0800 (PST) (envelope-from ksb@platypusgroup.com) Received: from localhost (localhost.platypusgroup.com [127.0.0.1]) by tsunami.platypusgroup.com (Postfix) with ESMTP id 5DD7F51A0; Fri, 21 Mar 2003 17:43:08 -0500 (EST) Received: from tsunami.platypusgroup.com ([127.0.0.1]) by localhost (tsunami.platypusgroup.com [127.0.0.1:10024]) (amavisd-new) with ESMTP id 91218-07; Fri, 21 Mar 2003 17:42:57 -0500 (EST) Received: by tsunami.platypusgroup.com (Postfix, from userid 1000) id BFE3C50A7; Fri, 21 Mar 2003 17:42:57 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by tsunami.platypusgroup.com (Postfix) with ESMTP id BA7D34F61; Fri, 21 Mar 2003 17:42:57 -0500 (EST) Date: Fri, 21 Mar 2003 17:42:57 -0500 (EST) From: "Kevin S. Brackett" To: Fred Souza Cc: freebsd-current@FreeBSD.ORG Subject: Re: IPDIVERT problem? In-Reply-To: <20030321221012.GA1843@torment.storming.org> Message-ID: <20030321174217.S96640@tsunami.platypusgroup.com> References: <20030321144208.U96640@tsunami.platypusgroup.com> <20030321221012.GA1843@torment.storming.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-new Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 21 Mar 2003, Fred Souza wrote: > > ipfw: opcode 50 size 1 wrong > > getsockopt(IP_FWD_ADD): something something > > I had this experience a few days ago too. It turned out as being an > outdated /sbin/ipfw. cvsup'ing and then `cd /usr/src/sbin/ipfw && make > all install clean` solved it. Notice that if you did NOT run a make > world _after_ compiling the kernel that gave you that error, you will > need to update /usr/include/netinet/ip_fw*.h. > ah, I should of known this. Making world now. thanks all :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 14:49:33 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F7AD37B404 for ; Fri, 21 Mar 2003 14:49:31 -0800 (PST) Received: from kirk.sas.upenn.edu (kirk.sas.upenn.edu [130.91.24.119]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27CB043F93 for ; Fri, 21 Mar 2003 14:49:30 -0800 (PST) (envelope-from kirk@kirk.sas.upenn.edu) Received: from kirk.sas.upenn.edu (localhost [127.0.0.1]) by kirk.sas.upenn.edu (8.12.6/8.12.6) with ESMTP id h2LMjedY038375 for ; Fri, 21 Mar 2003 17:45:40 -0500 (EST) (envelope-from kirk@kirk.sas.upenn.edu) Received: (from kirk@localhost) by kirk.sas.upenn.edu (8.12.6/8.12.6/Submit) id h2LMjd6W038374 for freebsd-current@freebsd.org; Fri, 21 Mar 2003 17:45:39 -0500 (EST) Date: Fri, 21 Mar 2003 17:45:39 -0500 From: "Brian J. Kirk" To: freebsd-current@freebsd.org Subject: freebsd 5.0 on hp netserver lf Message-ID: <20030321224539.GC38273@primuul.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Folks, I posted a question earlier on freebsd-questions concerning this, and have since discovered a bit more. Sorry about the cross posting. I'm trying to get 5.0 running on an old hp netserver lf. quoting some random website: "How come FreeBSD does not detect my HP Netserver's SCSI controller? This is basically a known problem. The EISA on-board SCSI controller in the HP Netserver machines occupies EISA slot number 11, so all the "true" EISA slots are in front of it. Alas, the address space for EISA slots >= 10 collides with the address space assigned to PCI, and FreeBSD's auto-configuration currently cannot handle this situation very well. So now, the best you can do is to pretend there is no address range clash :), by bumping the kernel option EISA_SLOTS to a value of 12... Of course, this does present you with a chicken-and-egg problem when installing on such a machine. In order to work around this problem, a special hack is available inside UserConfig. Do not use the "visual" interface, but +the plain command-line interface there. Simply type eisa 12 quit at the prompt, and install your system as usual. While it is recommended you compile and install a custom kernel anyway." The above quoted instructions worked fine when booting with 4.7 floppies, but 5.0 seems to lack the option to boot into UserConfig with a "boot -c" command. Looking at the device.hints options, which seem to be replacing the UserConfig command, I don't see anything listed for eisa slots. With 5.0's boot loader, I've used set EISA_SLOTS=12 set EISA=12 but the dmesg and installer still don't list the scsi controller, and hence no drives. Interestingly, an "lsdev" at the boot prompt correctly lists the floppy and two drives, including the partition information. Any suggestions would be greatly appreciated. thanks, Brian -- Brian Kirk primuul.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 15: 0:39 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A2CF37B401 for ; Fri, 21 Mar 2003 15:00:35 -0800 (PST) Received: from h00609772adf0.ne.client2.attbi.com (h00609772adf0.ne.client2.attbi.com [24.61.43.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEEF743F75 for ; Fri, 21 Mar 2003 15:00:34 -0800 (PST) (envelope-from rodrigc@attbi.com) Received: from h00609772adf0.ne.client2.attbi.com (localhost.ne.attbi.com [127.0.0.1]) by h00609772adf0.ne.client2.attbi.com (8.12.7/8.12.7) with ESMTP id h2LN0ZOM042015 for ; Fri, 21 Mar 2003 18:00:35 -0500 (EST) (envelope-from rodrigc@h00609772adf0.ne.client2.attbi.com) Received: (from rodrigc@localhost) by h00609772adf0.ne.client2.attbi.com (8.12.7/8.12.7/Submit) id h2LN0ZZq042014 for freebsd-current@freebsd.org; Fri, 21 Mar 2003 18:00:35 -0500 (EST) Date: Fri, 21 Mar 2003 18:00:35 -0500 From: Craig Rodrigues To: freebsd-current@freebsd.org Subject: Apache Portable Runtime testcase hangs -current Message-ID: <20030321230035.GA41982@attbi.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="vtzGhvizbBRQ85DL" Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --vtzGhvizbBRQ85DL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, I am using a system which I cvsup'd a few weeks ago: FreeBSD 5.0-CURRENT FreeBSD 5.0-CURRENT #18: Mon Feb 24 06:06:47 EST 2003 rodrigc@h00609772adf0.ne.client2.attbi.com:/usr/obj/usr/src/sys/MYKERNEL1 i386 I tried to compile the latest beta version of the Apache Portable Runtime library. As part of the configure process, the attached testcase is run. When the testcase runs, my machine locks up *HARD*. - keyboard is totally unresponsive - network connectivity to machine is lost and I cannot telnet or ssh into the box Does anyone have any idea what the problem could be? How stable is -current to work with if I cvsup and rebuild? Thanks. -- Craig Rodrigues http://home.attbi.com/~rodrigc rodrigc@attbi.com --vtzGhvizbBRQ85DL Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="apr_network_test.c" #if 0 dnl dnl see if TCP_NODELAY setting is inherited from listening sockets dnl AC_DEFUN(APR_CHECK_TCP_NODELAY_INHERITED,[ AC_CACHE_CHECK(if TCP_NODELAY setting is inherited from listening sockets, ac_cv_tcp_nodelay_inherited,[ AC_TRY_RUN( [ #endif /* if 0 */ #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_SOCKET_H 1 #define HAVE_NETINET_IN_H 1 #define HAVE_NETINET_TCP_H 1 #define HAVE_SOCKLEN_T 1 #include #ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_NETINET_TCP_H #include #endif #ifndef HAVE_SOCKLEN_T typedef int socklen_t; #endif int main(void) { int listen_s, connected_s, client_s; int listen_port, rc; struct sockaddr_in sa; socklen_t sa_len; socklen_t option_len; int option; listen_s = socket(AF_INET, SOCK_STREAM, 0); if (listen_s < 0) { perror("socket"); exit(1); } option = 1; rc = setsockopt(listen_s, IPPROTO_TCP, TCP_NODELAY, &option, sizeof option); if (rc < 0) { perror("setsockopt TCP_NODELAY"); exit(1); } memset(&sa, 0, sizeof sa); sa.sin_family = AF_INET; #ifdef BEOS sa.sin_addr.s_addr = htonl(INADDR_LOOPBACK); #endif /* leave port 0 to get ephemeral */ rc = bind(listen_s, (struct sockaddr *)&sa, sizeof sa); if (rc < 0) { perror("bind for ephemeral port"); exit(1); } /* find ephemeral port */ sa_len = sizeof(sa); rc = getsockname(listen_s, (struct sockaddr *)&sa, &sa_len); if (rc < 0) { perror("getsockname"); exit(1); } listen_port = sa.sin_port; rc = listen(listen_s, 5); if (rc < 0) { perror("listen"); exit(1); } client_s = socket(AF_INET, SOCK_STREAM, 0); if (client_s < 0) { perror("socket"); exit(1); } memset(&sa, 0, sizeof sa); sa.sin_family = AF_INET; sa.sin_port = listen_port; #ifdef BEOS sa.sin_addr.s_addr = htonl(INADDR_LOOPBACK); #endif /* leave sin_addr all zeros to use loopback */ rc = connect(client_s, (struct sockaddr *)&sa, sizeof sa); if (rc < 0) { perror("connect"); exit(1); } sa_len = sizeof sa; connected_s = accept(listen_s, (struct sockaddr *)&sa, &sa_len); if (connected_s < 0) { perror("accept"); exit(1); } option_len = sizeof option; rc = getsockopt(connected_s, IPPROTO_TCP, TCP_NODELAY, &option, &option_len); if (rc < 0) { perror("getsockopt"); exit(1); } if (!option) { fprintf(stderr, "TCP_NODELAY is not set in the child.\n"); exit(1); } return 0; } #if 0 ],[ ac_cv_tcp_nodelay_inherited="yes" ],[ ac_cv_tcp_nodelay_inherited="no" ],[ ac_cv_tcp_nodelay_inherited="yes" ])]) if test "$ac_cv_tcp_nodelay_inherited" = "yes"; then tcp_nodelay_inherited=1 else tcp_nodelay_inherited=0 fi ]) #endif --vtzGhvizbBRQ85DL-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 15: 2:11 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6CEE37B401 for ; Fri, 21 Mar 2003 15:02:09 -0800 (PST) Received: from tomts22-srv.bellnexxia.net (tomts22.bellnexxia.net [209.226.175.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFCB243FA3 for ; Fri, 21 Mar 2003 15:02:06 -0800 (PST) (envelope-from matt@gsicomp.on.ca) Received: from gabby.gsicomp.on.ca ([65.95.176.5]) by tomts22-srv.bellnexxia.net (InterMail vM.5.01.04.19 201-253-122-122-119-20020516) with ESMTP id <20030321230206.EFI15855.tomts22-srv.bellnexxia.net@gabby.gsicomp.on.ca>; Fri, 21 Mar 2003 18:02:06 -0500 Received: from hermes (hermes.gsicomp.on.ca [192.168.0.18]) by gabby.gsicomp.on.ca (8.12.6/8.12.6) with SMTP id h2LMx2iG088909; Fri, 21 Mar 2003 17:59:02 -0500 (EST) (envelope-from matt@gsicomp.on.ca) Message-ID: <000501c2effd$ab6ac220$1200a8c0@gsicomp.on.ca> From: "Matthew Emmerton" To: "Brian J. Kirk" , References: <20030321224539.GC38273@primuul.com> Subject: Re: freebsd 5.0 on hp netserver lf Date: Fri, 21 Mar 2003 18:00:29 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----- Original Message ----- From: "Brian J. Kirk" To: Sent: Friday, March 21, 2003 5:45 PM Subject: freebsd 5.0 on hp netserver lf > Folks, > > I posted a question earlier on freebsd-questions concerning this, and have since discovered a bit more. Sorry about the cross posting. > > I'm trying to get 5.0 running on an old hp netserver lf. quoting some random website: > "How come FreeBSD does not detect my HP Netserver's SCSI controller? This is basically a known problem. The EISA on-board SCSI controller in the HP Netserver machines occupies EISA slot number 11, so all the "true" EISA slots are in front of it. Alas, the address space for EISA slots >= 10 collides with the address space assigned to PCI, and FreeBSD's auto-configuration currently cannot handle this situation very well. > > So now, the best you can do is to pretend there is no address range clash :), by bumping the kernel option EISA_SLOTS to a value of 12... > > Of course, this does present you with a chicken-and-egg problem when installing on such a machine. In order to work around this problem, a special hack is available inside UserConfig. Do not use the "visual" interface, but > +the plain command-line interface there. Simply type > eisa 12 quit > at the prompt, and install your system as usual. While it is recommended you compile and install a custom kernel anyway." > > The above quoted instructions worked fine when booting with 4.7 floppies, but 5.0 seems to lack the option to boot into UserConfig with a "boot -c" command. Looking at the device.hints options, which seem to be replacing the UserConfig command, I don't see anything listed for eisa slots. With 5.0's boot loader, I've used > set EISA_SLOTS=12 > set EISA=12 > but the dmesg and installer still don't list the scsi controller, and hence no drives. > > Interestingly, an "lsdev" at the boot prompt correctly lists the floppy and two drives, including the partition information. > > Any suggestions would be greatly appreciated. > thanks, > Brian > > -- > Brian Kirk > primuul.com Try using hw.eisa_slots = 12. -- Matt Emmerton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 15: 6:48 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AB4837B404 for ; Fri, 21 Mar 2003 15:06:47 -0800 (PST) Received: from freebsd.org.ru (freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D40143F93 for ; Fri, 21 Mar 2003 15:06:46 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 8E4C11D0; Sat, 22 Mar 2003 02:06:45 +0300 (MSK) Date: Sat, 22 Mar 2003 02:06:45 +0300 From: "Sergey A. Osokin" To: Craig Rodrigues Cc: freebsd-current@freebsd.org Subject: Re: Apache Portable Runtime testcase hangs -current Message-ID: <20030321230645.GV49925@freebsd.org.ru> Reply-To: osa@FreeBSD.org.ru References: <20030321230035.GA41982@attbi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030321230035.GA41982@attbi.com> User-Agent: Mutt/1.4.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Mar 21, 2003 at 06:00:35PM -0500, Craig Rodrigues wrote: > > I am using a system which I cvsup'd a few weeks ago: > > FreeBSD 5.0-CURRENT FreeBSD 5.0-CURRENT #18: Mon Feb 24 06:06:47 EST 2003 rodrigc@h00609772adf0.ne.client2.attbi.com:/usr/obj/usr/src/sys/MYKERNEL1 i386 > > > I tried to compile the latest beta version of the Apache Portable Runtime > library. As part of the configure process, the attached testcase > is run. When the testcase runs, my machine locks up *HARD*. > > - keyboard is totally unresponsive > - network connectivity to machine is lost and I cannot telnet or ssh into > the box > > Does anyone have any idea what the problem could be? > > How stable is -current to work with if I cvsup and rebuild? -CURRENT still isn't for production, but more bugs fixed and now it more stable, then one month ago. Please update your system and try to reproduce your bug. -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 15:15:13 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3CFE37B401 for ; Fri, 21 Mar 2003 15:15:10 -0800 (PST) Received: from nazare.cin.ufpe.br (nazare.cin.ufpe.br [150.161.2.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17EA643F75 for ; Fri, 21 Mar 2003 15:15:09 -0800 (PST) (envelope-from rss@cin.ufpe.br) Received: (from root@localhost) by nazare.cin.ufpe.br (8.11.6/8.11.6) id h2LNF0N77426; Fri, 21 Mar 2003 20:15:00 -0300 (BRT) (envelope-from rss@nazare.cin.ufpe.br) Received: from jurema.cin.ufpe.br (jurema [172.17.33.106]) by nazare.cin.ufpe.br (8.11.6/8.11.6) with ESMTP id h2LNExN36982; Fri, 21 Mar 2003 20:14:59 -0300 (BRT) (envelope-from rss@nazare.cin.ufpe.br) Received: from rss (helo=localhost) by jurema.cin.ufpe.br with local-esmtp (Exim 3.35 #1 (Debian)) id 18wUES-0001L1-00; Fri, 21 Mar 2003 18:39:20 -0300 Date: Fri, 21 Mar 2003 18:39:20 -0300 (BRT) From: Rossam Souza Silva To: Chris Fowler Cc: David Leimbach , Subject: Re: IP over IEEE1394? In-Reply-To: <1048284124.1788.8.camel@hp.outpostsentinel.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 21 Mar 2003, Chris Fowler wrote: > I'm not sure I understand the motivations of running IP over firewire > vs. ethernet. Sure I think its cool but will the speed be there with > firewire2? On Windows, It is P-t-P is it not? I would prefer a real > live network. Hi, I don't know about the Mac's implementation, but yes, Windows has IP over Firewire, like NetBSD. The good reason for IP over Firewire: because it's a standard, you can connect Macs, Win Boxes and BSDs! :) Rossam. > On Wed, 2003-03-05 at 08:25, David Leimbach wrote: > > Interesting... I didn't even know we had Ethernet over firewire :). > > > > Mac OS X and Windows XP both have IP over firewire either working or > > in the works and somewhat usable. The only one I can claim any > > experience > > with is Mac OS X. It's somewhat flaky though and you get unreliable > > spikes > > in some basic performance tests I have done with it. > > > > It would be a really interesting value added feature for FreeBSD 5.x > > and could potentially open FBSD up even more to the "cluster" market > > which is somewhere its not as proliferated as linux. > > > > With the advent of firewire2 on the horizon it may be even more > > impressive. > > > > I believe there is even an Oracle product for linux which can cluster > > databases > > over firewire now. [I don't know if its IP though] > > > > > > Dave > > On Wednesday, March 5, 2003, at 01:43 AM, Rossam Souza Silva wrote: > > > > > > > > Hi, there is some plan to port NetBSD's implementation of IP over > > > Firewire? I know, we have "Ethernet over Firewire", but like the Linux > > > one, isn't a standard... > > > > > > Just curious. > > > > > > ----------------------------------------------------------------------- > > > ------- > > > (_ ) "Contrary to popular belief, UNIX is user friendly. It just > > > happens > > > \\\'',) ^ to be very selective about who it decides to make friends > > > with." > > > \/ \( > > > .\._/_) Rossam Souza Silva (rss@cin.ufpe.br) > > > ----------------------------------------------------------------------- > > > ------ > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-current" in the body of the message > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-current" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 15:18:55 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02AE137B401 for ; Fri, 21 Mar 2003 15:18:53 -0800 (PST) Received: from kirk.sas.upenn.edu (kirk.sas.upenn.edu [130.91.24.119]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F2A043FAF for ; Fri, 21 Mar 2003 15:18:52 -0800 (PST) (envelope-from kirk@kirk.sas.upenn.edu) Received: from kirk.sas.upenn.edu (localhost [127.0.0.1]) by kirk.sas.upenn.edu (8.12.6/8.12.6) with ESMTP id h2LNF1dY038496 for ; Fri, 21 Mar 2003 18:15:01 -0500 (EST) (envelope-from kirk@kirk.sas.upenn.edu) Received: (from kirk@localhost) by kirk.sas.upenn.edu (8.12.6/8.12.6/Submit) id h2LNF15Z038495 for freebsd-current@freebsd.org; Fri, 21 Mar 2003 18:15:01 -0500 (EST) Date: Fri, 21 Mar 2003 18:15:01 -0500 From: "Brian J. Kirk" To: freebsd-current@freebsd.org Subject: Re: freebsd 5.0 on hp netserver lf Message-ID: <20030321231501.GA38455@primuul.com> References: <20030321224539.GC38273@primuul.com> <000501c2effd$ab6ac220$1200a8c0@gsicomp.on.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000501c2effd$ab6ac220$1200a8c0@gsicomp.on.ca> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG set hw.eisa_slots=12 works, it recognizes the controller and drives, then panics. I think I'll settle for 4.7 on here fow now. thanks for your help, Brian On Fri, Mar 21, 2003 at 06:00:29PM -0500, Matthew Emmerton wrote: > > ----- Original Message ----- > From: "Brian J. Kirk" > To: > Sent: Friday, March 21, 2003 5:45 PM > Subject: freebsd 5.0 on hp netserver lf > > > > Folks, > > > > I posted a question earlier on freebsd-questions concerning this, and have > since discovered a bit more. Sorry about the cross posting. > > > > I'm trying to get 5.0 running on an old hp netserver lf. quoting some > random website: > > "How come FreeBSD does not detect my HP Netserver's SCSI controller? This > is basically a known problem. The EISA on-board SCSI controller in the HP > Netserver machines occupies EISA slot number 11, so all the "true" EISA > slots are in front of it. Alas, the address space for EISA slots >= 10 > collides with the address space assigned to PCI, and FreeBSD's > auto-configuration currently cannot handle this situation very well. > > > > So now, the best you can do is to pretend there is no address range clash > :), by bumping the kernel option EISA_SLOTS to a value of 12... > > > > Of course, this does present you with a chicken-and-egg problem when > installing on such a machine. In order to work around this problem, a > special hack is available inside UserConfig. Do not use the "visual" > interface, but > > +the plain command-line interface there. Simply type > > eisa 12 quit > > at the prompt, and install your system as usual. While it is recommended > you compile and install a custom kernel anyway." > > > > The above quoted instructions worked fine when booting with 4.7 floppies, > but 5.0 seems to lack the option to boot into UserConfig with a "boot -c" > command. Looking at the device.hints options, which seem to be replacing > the UserConfig command, I don't see anything listed for eisa slots. With > 5.0's boot loader, I've used > > set EISA_SLOTS=12 > > set EISA=12 > > but the dmesg and installer still don't list the scsi controller, and > hence no drives. > > > > Interestingly, an "lsdev" at the boot prompt correctly lists the floppy > and two drives, including the partition information. > > > > Any suggestions would be greatly appreciated. > > thanks, > > Brian > > > > -- > > Brian Kirk > > primuul.com > > Try using hw.eisa_slots = 12. > > -- > Matt Emmerton > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message -- Brian Kirk primuul.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 15:26:28 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B82A37B401 for ; Fri, 21 Mar 2003 15:26:27 -0800 (PST) Received: from freebsd.org.ru (sweet.etrust.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85D3D43FAF for ; Fri, 21 Mar 2003 15:26:26 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id C9A101E2; Sat, 22 Mar 2003 02:26:24 +0300 (MSK) Date: Sat, 22 Mar 2003 02:26:24 +0300 From: "Sergey A. Osokin" To: "Brian J. Kirk" Cc: freebsd-current@freebsd.org Subject: Re: freebsd 5.0 on hp netserver lf Message-ID: <20030321232624.GW49925@freebsd.org.ru> Reply-To: osa@FreeBSD.org.ru References: <20030321224539.GC38273@primuul.com> <000501c2effd$ab6ac220$1200a8c0@gsicomp.on.ca> <20030321231501.GA38455@primuul.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030321231501.GA38455@primuul.com> User-Agent: Mutt/1.4.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Mar 21, 2003 at 06:15:01PM -0500, Brian J. Kirk wrote: > set hw.eisa_slots=12 works, it recognizes the controller and drives, then panics. I think I'll settle for 4.7 on here fow now. Try disable ACPI with unset acpi_load at boot prompt. Maybe its help you. > On Fri, Mar 21, 2003 at 06:00:29PM -0500, Matthew Emmerton wrote: > > > > > I posted a question earlier on freebsd-questions concerning this, and have > > since discovered a bit more. Sorry about the cross posting. > > > > > > I'm trying to get 5.0 running on an old hp netserver lf. quoting some > > random website: > > > "How come FreeBSD does not detect my HP Netserver's SCSI controller? This > > is basically a known problem. The EISA on-board SCSI controller in the HP > > Netserver machines occupies EISA slot number 11, so all the "true" EISA > > slots are in front of it. Alas, the address space for EISA slots >= 10 > > collides with the address space assigned to PCI, and FreeBSD's > > auto-configuration currently cannot handle this situation very well. > > > > > > So now, the best you can do is to pretend there is no address range clash > > :), by bumping the kernel option EISA_SLOTS to a value of 12... > > > > > > Of course, this does present you with a chicken-and-egg problem when > > installing on such a machine. In order to work around this problem, a > > special hack is available inside UserConfig. Do not use the "visual" > > interface, but > > > +the plain command-line interface there. Simply type > > > eisa 12 quit > > > at the prompt, and install your system as usual. While it is recommended > > you compile and install a custom kernel anyway." > > > > > > The above quoted instructions worked fine when booting with 4.7 floppies, > > but 5.0 seems to lack the option to boot into UserConfig with a "boot -c" > > command. Looking at the device.hints options, which seem to be replacing > > the UserConfig command, I don't see anything listed for eisa slots. With > > 5.0's boot loader, I've used > > > set EISA_SLOTS=12 > > > set EISA=12 > > > but the dmesg and installer still don't list the scsi controller, and > > hence no drives. > > > > > > Interestingly, an "lsdev" at the boot prompt correctly lists the floppy > > and two drives, including the partition information. > > > > > > > Try using hw.eisa_slots = 12. -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 15:32:43 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED79637B401 for ; Fri, 21 Mar 2003 15:32:42 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3608843F75 for ; Fri, 21 Mar 2003 15:32:42 -0800 (PST) (envelope-from mdodd@FreeBSD.ORG) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.12.8/8.12.8) with ESMTP id h2LNWfCi089236; Fri, 21 Mar 2003 18:32:41 -0500 (EST) (envelope-from mdodd@FreeBSD.ORG) Date: Fri, 21 Mar 2003 18:32:41 -0500 (EST) From: "Matthew N. Dodd" X-X-Sender: winter@sasami.jurai.net To: "Brian J. Kirk" Cc: freebsd-current@FreeBSD.ORG Subject: Re: freebsd 5.0 on hp netserver lf In-Reply-To: <20030321224539.GC38273@primuul.com> Message-ID: <20030321183213.B8716@sasami.jurai.net> References: <20030321224539.GC38273@primuul.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 21 Mar 2003, Brian J. Kirk wrote: > but the dmesg and installer still don't list the scsi controller, and > hence no drives. set hw.eisa_slots="12" from the loader. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 15:53:11 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC3BA37B401; Fri, 21 Mar 2003 15:53:10 -0800 (PST) Received: from mailgate.rz.uni-karlsruhe.de (mailgate.rz.uni-karlsruhe.de [129.13.64.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 096AF43F85; Fri, 21 Mar 2003 15:53:10 -0800 (PST) (envelope-from till@f111.hadiko.de) Received: from f111.hadiko.de (hadif111.hadiko.uni-karlsruhe.de [172.20.42.141]) by mailgate.rz.uni-karlsruhe.de with esmtp (Exim 3.36 #1) id 18wWJx-0006gX-00; Sat, 22 Mar 2003 00:53:09 +0100 Received: from f111.hadiko.de (localhost [127.0.0.1]) by f111.hadiko.de (8.12.7/8.12.8) with ESMTP id h2LNqcNN008153; Fri, 21 Mar 2003 23:52:38 GMT (envelope-from till@f111.hadiko.de) Received: (from till@localhost) by f111.hadiko.de (8.12.7/8.12.8/Submit) id h2LNqb64008152; Sat, 22 Mar 2003 00:52:37 +0100 (CET) Date: Sat, 22 Mar 2003 00:52:37 +0100 From: Till Riedel To: freebsd-current@FreeBSD.ORG Cc: David Schultz Subject: Re: libm problem Message-ID: <20030321235237.GA8097@f111.hadiko.de> References: <20030318173051.GA2322@f111.hadiko.de> <20030319131317.GA670@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030319131317.GA670@HAL9000.homeunix.com> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > res=pow((float)base,(float)dim); this is actually not a smart thing. it was cut and paste from libvorbis. pow is a function for doubles. if you i use powf everything works fine. res=pow((double)base,(double)dim) however still gives 1 > the output of 'print/x {int}&res' right after the call to pow(). that means 0x0 if i use double for res (, or 0x3f800000 if i stay with the float example.) till ps: i am pretty sure that my -O2 is turned off in my world, because that was my first guess as well. However, i will recompile tomorrow ... and hopefully all trouble is gone. At least after using powf i can listen to my music again :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 16:29:31 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9FAC37B401; Fri, 21 Mar 2003 16:29:29 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0323143FBD; Fri, 21 Mar 2003 16:29:26 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id LAA13411; Sat, 22 Mar 2003 11:29:19 +1100 Date: Sat, 22 Mar 2003 11:29:18 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Till Riedel Cc: freebsd-current@FreeBSD.ORG, David Schultz Subject: Re: libm problem In-Reply-To: <20030321235237.GA8097@f111.hadiko.de> Message-ID: <20030322111233.F4471@gamplex.bde.org> References: <20030318173051.GA2322@f111.hadiko.de> <20030319131317.GA670@HAL9000.homeunix.com> <20030321235237.GA8097@f111.hadiko.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 22 Mar 2003, Till Riedel wrote: > > > res=pow((float)base,(float)dim); > this is actually not a smart thing. it was cut and paste from libvorbis. > pow is a function for doubles. if you i use powf everything works fine. This should work OK. The casts to float should have no effect except to lose precision is the operands don't fit in about 24 bits. OTOH, powf() is known to be broken. I haven't committed a fix like the following for too long: %%% Index: e_powf.c =================================================================== RCS file: /home/ncvs/src/lib/msun/src/e_powf.c,v retrieving revision 1.9 diff -u -2 -r1.9 e_powf.c --- e_powf.c 17 Jun 2002 15:28:59 -0000 1.9 +++ e_powf.c 17 Jun 2002 15:41:06 -0000 @@ -45,5 +45,9 @@ lg2 = 6.9314718246e-01, /* 0x3f317218 */ lg2_h = 6.93145752e-01, /* 0x3f317200 */ +#if 0 +lg2_l = 1.42860677e-06, /* 0x35bfbe8e */ +#else lg2_l = 1.42860654e-06, /* 0x35bfbe8c */ +#endif ovt = 4.2995665694e-08, /* -(128-log2(ovfl+.5ulp)) */ cp = 9.6179670095e-01, /* 0x3f76384f =2/(3ln2) */ @@ -160,7 +164,7 @@ s_h = s; GET_FLOAT_WORD(is,s_h); - SET_FLOAT_WORD(s_h,is&0xfffff000); + SET_FLOAT_WORD(s_h,is&0xfffc0000); /* t_h=ax+bp[k] High */ - SET_FLOAT_WORD(t_h,((ix>>1)|0x20000000)+0x0040000+(k<<21)); + SET_FLOAT_WORD(t_h,((ix>>1)|0x20000000)+0x00400000+(k<<21)); t_l = ax - (t_h-bp[k]); s_l = v*((u-s_h*t_h)-s_h*t_l); @@ -229,5 +233,5 @@ t = p_l+p_h; GET_FLOAT_WORD(is,t); - SET_FLOAT_WORD(t,is&0xfffff000); + SET_FLOAT_WORD(t,is&0xfffffff8); u = t*lg2_h; v = (p_l-(t-p_h))*lg2+t*lg2_l; %%% The change to lg2_l just fixes a tiny error. We gain precision by representing log(2) as approximately (lg2_h + lg2_l) in infinite precision. The bits in lg2_l are relatively uncritical since most of them are to give more than float precision. But they sometimes matter. The Cygnus extensions to support float precision have a number of off by 1 or 2 bit errors converting the low values. I fixed a couple of these, but IIRC there was only one that caused an error that was reported by ucbtest (not this one). The changes in the magic numbers are too fix larger errors. I don't rememebr anything else about them except that the errors were reported by ucbtest and the changes made ucbtest happy. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 16:34:28 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27AD337B401 for ; Fri, 21 Mar 2003 16:34:27 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1010743F75 for ; Fri, 21 Mar 2003 16:34:26 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id CC5A35308; Sat, 22 Mar 2003 01:34:22 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Rossam Souza Silva Cc: Chris Fowler , David Leimbach , Subject: Re: IP over IEEE1394? From: des@ofug.org (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Sat, 22 Mar 2003 01:34:21 +0100 In-Reply-To: (Rossam Souza Silva's message of "Fri, 21 Mar 2003 18:39:20 -0300 (BRT)") Message-ID: User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Rossam Souza Silva writes: > Hi, I don't know about the Mac's implementation, but yes, Windows has IP > over Firewire, like NetBSD. The good reason for IP over Firewire: > because it's a standard, you can connect Macs, Win Boxes and BSDs! :) Gee, well, I guess we can all get rid of that nasty non-standard Ethernet hardware now! DES --=20 Dag-Erling Sm=F8rgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 16:55: 9 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3C1B37B401 for ; Fri, 21 Mar 2003 16:55:08 -0800 (PST) Received: from mailgate.rz.uni-karlsruhe.de (mailgate.rz.uni-karlsruhe.de [129.13.64.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ED2E43FAF for ; Fri, 21 Mar 2003 16:55:08 -0800 (PST) (envelope-from till@f111.hadiko.de) Received: from f111.hadiko.de (hadif111.hadiko.uni-karlsruhe.de [172.20.42.141]) by mailgate.rz.uni-karlsruhe.de with esmtp (Exim 3.36 #1) id 18wXHv-0000XB-00; Sat, 22 Mar 2003 01:55:07 +0100 Received: from f111.hadiko.de (localhost [127.0.0.1]) by f111.hadiko.de (8.12.7/8.12.8) with ESMTP id h2M0saNN008434 for ; Sat, 22 Mar 2003 00:54:36 GMT (envelope-from till@f111.hadiko.de) Received: (from till@localhost) by f111.hadiko.de (8.12.7/8.12.8/Submit) id h2M0sZ8n008433 for freebsd-current@freebsd.org; Sat, 22 Mar 2003 01:54:35 +0100 (CET) Date: Sat, 22 Mar 2003 01:54:35 +0100 From: Till Riedel To: freebsd-current@freebsd.org Subject: Re: libm problem Message-ID: <20030322005435.GA8393@f111.hadiko.de> References: <20030318173051.GA2322@f111.hadiko.de> <20030319131317.GA670@HAL9000.homeunix.com> <20030321235237.GA8097@f111.hadiko.de> <20030322111233.F4471@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030322111233.F4471@gamplex.bde.org> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I now know the thing that makes it break. cc -O2 -pipe -mcpu=pentiumpro -c /usr/src/lib/msun/src/e_pow.c works fine! cc -O0 -pipe -march=pentium4 -c /usr/src/lib/msun/src/e_pow.c ... works but... cc -O -pipe -march=pentium4 -c /usr/src/lib/msun/src/e_pow.c breaks it. Hey its only gcc :-), nothing to worry about. I think that 0 is nice number: so why don't optimize everithing to down it. -O seems to minimize numbers not calculation time. Does anyone know the flag to turn that off. till To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 17: 7:44 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB13E37B401 for ; Fri, 21 Mar 2003 17:07:43 -0800 (PST) Received: from mailgate.rz.uni-karlsruhe.de (mailgate.rz.uni-karlsruhe.de [129.13.64.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0802243FB1 for ; Fri, 21 Mar 2003 17:07:43 -0800 (PST) (envelope-from till@f111.hadiko.de) Received: from f111.hadiko.de (hadif111.hadiko.uni-karlsruhe.de [172.20.42.141]) by mailgate.rz.uni-karlsruhe.de with esmtp (Exim 3.36 #1) id 18wXU6-0000wV-00; Sat, 22 Mar 2003 02:07:42 +0100 Received: from f111.hadiko.de (localhost [127.0.0.1]) by f111.hadiko.de (8.12.7/8.12.8) with ESMTP id h2M17BNN008475 for ; Sat, 22 Mar 2003 01:07:11 GMT (envelope-from till@f111.hadiko.de) Received: (from till@localhost) by f111.hadiko.de (8.12.7/8.12.8/Submit) id h2M17AH8008474 for freebsd-current@freebsd.org; Sat, 22 Mar 2003 02:07:10 +0100 (CET) Date: Sat, 22 Mar 2003 02:07:10 +0100 From: Till Riedel To: freebsd-current@freebsd.org Subject: Re: libm problem Message-ID: <20030322010710.GB8393@f111.hadiko.de> References: <20030318173051.GA2322@f111.hadiko.de> <20030319131317.GA670@HAL9000.homeunix.com> <20030321235237.GA8097@f111.hadiko.de> <20030322111233.F4471@gamplex.bde.org> <20030322005435.GA8393@f111.hadiko.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030322005435.GA8393@f111.hadiko.de> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Mar 22, 2003 at 01:54:35AM +0100, Till Riedel wrote: > cc -O -pipe -march=pentium4 -c /usr/src/lib/msun/src/e_pow.c OK, I found PR 43299. Why do I never find them in first place. till To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 17:30:44 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BBA437B401 for ; Fri, 21 Mar 2003 17:30:44 -0800 (PST) Received: from web20701.mail.yahoo.com (web20701.mail.yahoo.com [216.136.226.174]) by mx1.FreeBSD.org (Postfix) with SMTP id D210243F3F for ; Fri, 21 Mar 2003 17:30:43 -0800 (PST) (envelope-from csujun@yahoo.com) Message-ID: <20030322013043.46050.qmail@web20701.mail.yahoo.com> Received: from [211.161.222.191] by web20701.mail.yahoo.com via HTTP; Sat, 22 Mar 2003 09:30:43 CST Date: Sat, 22 Mar 2003 09:30:43 +0800 (CST) From: =?gb2312?q?Jun=20Sue?= Subject: Re: [acpi-jp 2106] RE: ACPI-CA import/new diff? To: current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=gb2312 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I tested it in my laptop. Everything works however just as the previous version. I didn't see any bug in my machine fixed. Anyway I think it is worth to check in. Jun Su _________________________________________________________ Do You Yahoo!? žü¶àŸªÏ²£¬Í¬ÑùŸ«²Ê£¬NetVista A30 ÈÈÂô http://ad.cn.doubleclick.net/clk;5313999;7930402;p?http://www.ibm.com/cn/promotion/pc/netvista_a30/index.shtml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 20: 5:31 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 437FC37B401 for ; Fri, 21 Mar 2003 20:05:30 -0800 (PST) Received: from nazare.cin.ufpe.br (nazare.cin.ufpe.br [150.161.2.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0B4D43FB1 for ; Fri, 21 Mar 2003 20:05:25 -0800 (PST) (envelope-from rss@cin.ufpe.br) Received: (from root@localhost) by nazare.cin.ufpe.br (8.11.6/8.11.6) id h2M452w19831; Sat, 22 Mar 2003 01:05:02 -0300 (BRT) (envelope-from rss@nazare.cin.ufpe.br) Received: from buique.cin.ufpe.br (buique [172.17.33.108]) by nazare.cin.ufpe.br (8.11.6/8.11.6) with ESMTP id h2M450N83636; Sat, 22 Mar 2003 01:05:01 -0300 (BRT) (envelope-from rss@nazare.cin.ufpe.br) Received: from rss (helo=localhost) by buique.cin.ufpe.br with local-esmtp (Exim 3.35 #1 (Debian)) id 18waFg-0001Rm-00; Sat, 22 Mar 2003 01:05:00 -0300 Date: Sat, 22 Mar 2003 01:05:00 -0300 (BRST) From: Rossam Souza Silva To: Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?= Cc: Chris Fowler , David Leimbach , Subject: Re: IP over IEEE1394? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 22 Mar 2003, Dag-Erling Sm=F8rgrav wrote: > Rossam Souza Silva writes: > > Hi, I don't know about the Mac's implementation, but yes, Windows has I= P > > over Firewire, like NetBSD. The good reason for IP over Firewire: > > because it's a standard, you can connect Macs, Win Boxes and BSDs! :) > > Gee, well, I guess we can all get rid of that nasty non-standard > Ethernet hardware now! No one asks for removing, if we can have both. Rossam. > DES > -- > Dag-Erling Sm=F8rgrav - des@ofug.org > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 20:23:31 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8792037B401 for ; Fri, 21 Mar 2003 20:23:29 -0800 (PST) Received: from smtp1.Stanford.EDU (smtp1.Stanford.EDU [171.64.14.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 057F143F75 for ; Fri, 21 Mar 2003 20:23:29 -0800 (PST) (envelope-from jstockdale@stanford.edu) Received: from quenya (quenya.Stanford.EDU [128.12.44.61]) by smtp1.Stanford.EDU (8.12.8/8.12.8) with ESMTP id h2M4NQ5u025607 for ; Fri, 21 Mar 2003 20:23:27 -0800 (PST) From: "John Stockdale" To: Subject: RE: mdconfig/mdmfs problems -> kernel panic Date: Fri, 21 Mar 2003 20:23:16 -0800 Message-ID: <000801c2f02a$c3ab47b0$3d2c0c80@quenya> 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 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Importance: Normal In-Reply-To: Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ok, I tried to recompile with the max users set to 256 to see if that would help things and while I was copying over the /src/sys tree to /mnt (the md0 device, 512MB) I got: panic: kmem_malloc(4096): kmem_map too small: 296222720 total allocated cpuid = 3; lapic.id = 070000000 Debugger("panic") Any suggestions? -----Original Message----- From: John Stockdale [mailto:jstockdale@stanford.edu] Sent: Monday, March 17, 2003 11:41 AM To: 'freebsd-current@FreeBSD.ORG' Subject: RE: mdconfig/mdmfs problems -> kernel panic Ahh, that explains why the multiple /dev/md* didn't help the problem. I'm looking into the vmstat options, but can't figure out how to extract the malloc-per-bucket-quota limit for the system (I've read man vmstat, and tried vmstat -z and vmstat -m, but the only "Limit" listed is under vmstat -z, and nothing indicates if any displayed limits are relavent to this discussion). Additionally, if I am hitting this limit, how can I increase the limit/what kind of impact would increasing the impact have on the system except in allowing me to user larger /dev/md*? Thanks. -John -----Original Message----- From: Poul-Henning Kamp [mailto:phk@phk.freebsd.dk] Sent: Monday, March 17, 2003 11:27 AM To: John Stockdale Cc: freebsd-current@FreeBSD.ORG Subject: Re: mdconfig/mdmfs problems -> kernel panic In message <000b01c2ecb7$1c089510$3d2c0c80@quenya>, "John Stockdale" writes: >OS: FreeBSD 5.0-CURRENT, JPSNAP20030314 > >I'm running a Dual Xeon system with 1GB DDRRAM, and trying to create a >ram disk to compile under, specifically to compile the kernel. > >I've tried several methods, involving either creating one 512MB disk >with mdconfig or mdmfs. No matter what options I specify, the mounted >mfs works fine until I start filling it up more. For instance, I can >usually copy the entire /usr/src/sys to /mnt and make depend, but a >while after I make the kernel panics as a result of the ram disk. >(specifically citing malloc errors, one time it speicifically spat out >a number in the order of 251XXXXXX and indicated a malloc bucket limit >exceeded or something like that) quote from md(4): malloc Backing store is allocated using malloc(9). Only one malloc- bucket is used, which means that all md devices with malloc backing must share the malloc-per-bucket-quota. The exact size of this quota varies, in particular with the amount of RAM in the system. The exact value can be determined with vmstat(8). -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 21:14:50 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FEFD37B404 for ; Fri, 21 Mar 2003 21:14:49 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4615B43FAF for ; Fri, 21 Mar 2003 21:14:48 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h2M5EimR013900; Fri, 21 Mar 2003 21:14:44 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h2M5EhvU013899; Fri, 21 Mar 2003 21:14:43 -0800 (PST) (envelope-from das@FreeBSD.ORG) Date: Fri, 21 Mar 2003 21:14:43 -0800 From: David Schultz To: Till Riedel Cc: freebsd-current@FreeBSD.ORG Subject: Re: libm problem Message-ID: <20030322051443.GA13854@HAL9000.homeunix.com> Mail-Followup-To: Till Riedel , freebsd-current@FreeBSD.ORG References: <20030318173051.GA2322@f111.hadiko.de> <20030319131317.GA670@HAL9000.homeunix.com> <20030321235237.GA8097@f111.hadiko.de> <20030322111233.F4471@gamplex.bde.org> <20030322005435.GA8393@f111.hadiko.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030322005435.GA8393@f111.hadiko.de> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Till Riedel : > I now know the thing that makes it break. > > cc -O2 -pipe -mcpu=pentiumpro -c /usr/src/lib/msun/src/e_pow.c > works fine! > cc -O0 -pipe -march=pentium4 -c /usr/src/lib/msun/src/e_pow.c > ... works > but... > cc -O -pipe -march=pentium4 -c /usr/src/lib/msun/src/e_pow.c > breaks it. Hey its only gcc :-), nothing to worry about. > I think that 0 is nice number: so why don't optimize everithing to down it. > -O seems to minimize numbers not calculation time. Does anyone know the > flag to turn that off. If you have the time and inclination, I suggest reporting this problem to the gcc folks. For now, don't use Pentium 4 optimizations. Not only are they apparently broken, they also generate slower code than you get by optimizing for a PPro, or even a 386. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Mar 21 21:49:42 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ABB737B404 for ; Fri, 21 Mar 2003 21:49:40 -0800 (PST) Received: from web20703.mail.yahoo.com (web20703.mail.yahoo.com [216.136.226.176]) by mx1.FreeBSD.org (Postfix) with SMTP id CD2A443F75 for ; Fri, 21 Mar 2003 21:49:39 -0800 (PST) (envelope-from csujun@yahoo.com) Message-ID: <20030322054939.51478.qmail@web20703.mail.yahoo.com> Received: from [207.46.71.12] by web20703.mail.yahoo.com via HTTP; Sat, 22 Mar 2003 13:49:39 CST Date: Sat, 22 Mar 2003 13:49:39 +0800 (CST) From: =?gb2312?q?Jun=20Su?= Reply-To: csujun@21cn.com Subject: IRQs' Dispatch problem To: current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=gb2312 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi All, Since the sound in my lap (SONY R505) doesn't work, I did some troubleshooting. This problem was reported several times in the -mobile. The sound has delay normally. Most interesting thing is when the I move usb mouse fast or has a high network load, the sound become better. I think the problem is related to the IRQ dispatch. When I use systat->vmstat, I found the interrupt number for pcm0 is large when I move mouse fast. Who can give me some advice? Or produce a path I can try. BTW: I can not find the usb driver and fxp0 in the list of the systat-vmstat. In my machine, IRQ 9 is shared with several devices, as listed in the following dmesg. agp0: mem 0xe0000000-0xe007ffff,0xe8000000-0xefffffff irq 9 at device 2.0 on pci0 uhci0: port 0x1800-0x181f irq 9 at device 29.0 on pci0 uhci1: port 0x1820-0x183f irq 9 at device 29.1 on pci0 uhci2: port 0x1840-0x185f at device 29.2 on pci0 pcib0: possible interrupts: 9 fxp0: port 0x3000-0x303f mem 0xe0204000-0xe0204fff irq 9 at device 8.0 on pci2 pcm0: port 0x18c0-0x18ff,0x1c00-0x1cff irq 9 at device 31.5 on pci0 uname -v FreeBSD 5.0-CURRENT #14: Sat Mar 15 18:28:01 CST 2003 junsu@junsufr.gwbn.sh.cn:/usr/obj/usr/src/sys/VAIO Jun Su _________________________________________________________ Do You Yahoo!? žü¶àŸªÏ²£¬Í¬ÑùŸ«²Ê£¬NetVista A30 ÈÈÂô http://ad.cn.doubleclick.net/clk;5313999;7930402;p?http://www.ibm.com/cn/promotion/pc/netvista_a30/index.shtml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 2: 9:57 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01DFB37B404 for ; Sat, 22 Mar 2003 02:09:55 -0800 (PST) Received: from mail2.tpgi.com.au (mail.tpgi.com.au [203.12.160.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 924D043F93 for ; Sat, 22 Mar 2003 02:09:53 -0800 (PST) (envelope-from agh@tpg.com.au) Received: from pen-ts3-2600-066.tpgi.com.au (pen-ts3-2600-066.tpgi.com.au [203.213.6.66]) (authenticated (0 bits)) by mail2.tpgi.com.au (8.11.6/8.11.6) with ESMTP id h2MA9e909741 (using TLSv1/SSLv3 with cipher RC4-MD5 (128 bits) verified NO) for ; Sat, 22 Mar 2003 21:09:49 +1100 From: "Alastair G. Hogge" To: current@freebsd.org Subject: Trouble building XFree86-4-Clients. Date: Sat, 22 Mar 2003 21:08:59 +1100 User-Agent: KMail/1.5 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200303222108.59805.agh@tpg.com.au> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I've been able to portupgrade my XFree86-4.2.1 system[1] to 4.3.0 expect the 4.3.0 clients port. I've tried completely removing and building it manuly thru "make install" but I get the same. The log from the build can be found here: http://www4.tpg.com.au/users/jhogge/log But here is the tail++ end: cc -O -pipe -mcpu=pentiumpro -ansi -Dasm=__asm -Wall -Wpointer-arith -Wundef -I/usr/X11R6/include -I/usr/local/include/ freetype2 -I/usr/local/include -I/usr/ports/x11/XFree86-4-clients/work/xc -I/usr/ports/x11/XFree86-4-clients/work/xc/ex ports/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -DMITSHM -DXFT -DXRENDER -c do_text.c do_text.c:403:25: X11/Xft/Xft.h: No such file or directory do_text.c:405: syntax error before '*' token do_text.c:405: warning: type defaults to `int' in declaration of `aafont' do_text.c:405: warning: data definition has no type or storage class do_text.c:406: syntax error before '*' token do_text.c:406: warning: type defaults to `int' in declaration of `aadraw' do_text.c:406: warning: data definition has no type or storage class do_text.c:407: syntax error before "aacolor" do_text.c:407: warning: type defaults to `int' in declaration of `aacolor' do_text.c:407: warning: data definition has no type or storage class do_text.c: In function `InitAAText': do_text.c:416: warning: implicit declaration of function `XftFontOpenName' do_text.c:416: warning: assignment makes pointer from integer without a cast do_text.c:425: warning: implicit declaration of function `XftDrawCreate' do_text.c:427: warning: assignment makes pointer from integer without a cast do_text.c:432: warning: implicit declaration of function `XftFontClose' do_text.c:439: warning: implicit declaration of function `XftColorAllocValue' do_text.c:446: warning: implicit declaration of function `XftDrawDestroy' do_text.c:453: request for member `height' in something not a structure or union do_text.c: In function `DoAAText': do_text.c:483: warning: implicit declaration of function `XftDrawString8' do_text.c: In function `EndAAText': do_text.c:508: warning: implicit declaration of function `XftColorFree' *** Error code 1 Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs/x11perf. *** Error code 1 Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs. *** Error code 1 Stop in /usr/ports/x11/XFree86-4-clients. Thanks in advance -Al 1]X system: /var/db/pkg/XFree86-4.3.0,1 /var/db/pkg/XFree86-FontServer-4.3.0 /var/db/pkg/XFree86-Server-4.3.0_2 /var/db/pkg/XFree86-VirtualFramebufferServer-4.3.0 /var/db/pkg/XFree86-documents-4.3.0 /var/db/pkg/XFree86-font100dpi-4.3.0 /var/db/pkg/XFree86-font75dpi-4.3.0 /var/db/pkg/XFree86-fontCyrillic-4.3.0 /var/db/pkg/XFree86-fontDefaultBitmaps-4.3.0 /var/db/pkg/XFree86-fontEncodings-4.3.0 /var/db/pkg/XFree86-fontScalable-4.3.0 /var/db/pkg/XFree86-libraries-4.3.0_1 /var/db/pkg/XFree86-manuals-4.3.0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 3:17:35 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32EB437B401 for ; Sat, 22 Mar 2003 03:17:33 -0800 (PST) Received: from fep.internode.on.net (smtp0.adl1.internode.on.net [203.16.214.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4E5A43F3F for ; Sat, 22 Mar 2003 03:17:31 -0800 (PST) (envelope-from doconnor@gsoft.com.au) Received: from midget.dons.net.au (ppp2104.sa.padsl.internode.on.net [150.101.28.55]) by fep.internode.on.net (8.12.4/8.12.4) with ESMTP id h2MBHSul097156; Sat, 22 Mar 2003 21:47:29 +1030 (CST) Received: (from root@localhost) by midget.dons.net.au (8.12.2/8.12.2) id h2MBHRlO053315; Sat, 22 Mar 2003 21:47:27 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Received: from [127.0.0.1] (root@localhost [127.0.0.1]) by midget.dons.net.au (8.12.2/8.12.2av) with ESMTP id h2MBHOOm053303; Sat, 22 Mar 2003 21:47:24 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Subject: Re: Trouble building XFree86-4-Clients. From: "Daniel O'Connor" To: "Alastair G. Hogge" Cc: current@freebsd.org In-Reply-To: <200303222108.59805.agh@tpg.com.au> References: <200303222108.59805.agh@tpg.com.au> Content-Type: text/plain Organization: Message-Id: <1048331843.39751.20.camel@chowder.dons.net.au> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 22 Mar 2003 21:47:24 +1030 Content-Transfer-Encoding: 7bit X-Spam-Score: -0.8 () IN_REP_TO,REFERENCES,SIGNATURE_SHORT_DENSE,SPAM_PHRASE_00_01 X-Scanned-By: MIMEDefang 2.26 (www . roaringpenguin . com / mimedefang) X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 2003-03-22 at 20:38, Alastair G. Hogge wrote: > I've been able to portupgrade my XFree86-4.2.1 system[1] to 4.3.0 expect the > 4.3.0 clients port. I've tried completely removing and building it manuly > thru "make install" but I get the same. > -DMITSHM -DXFT -DXRENDER -c do_text.c > do_text.c:403:25: X11/Xft/Xft.h: No such file or directory Tried making sure Xft and fontconfig are up to date? I had trouble with that when I updated. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 9A8C 569F 685A D928 5140 AE4B 319B 41F4 5D17 FDD5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 3:40:30 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E69637B401 for ; Sat, 22 Mar 2003 03:40:29 -0800 (PST) Received: from mail1.tpgi.com.au (mail.tpgi.com.au [203.12.160.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id D607643FB1 for ; Sat, 22 Mar 2003 03:40:27 -0800 (PST) (envelope-from agh@tpg.com.au) Received: from pen-ts3-2600-066.tpgi.com.au (pen-ts3-2600-066.tpgi.com.au [203.213.6.66]) (authenticated (0 bits)) by mail1.tpgi.com.au (8.11.6/8.11.6) with ESMTP id h2MBe8708024 (using TLSv1/SSLv3 with cipher RC4-MD5 (128 bits) verified NO); Sat, 22 Mar 2003 22:40:16 +1100 From: "Alastair G. Hogge" To: "Daniel O'Connor" Subject: Re: Trouble building XFree86-4-Clients. Date: Sat, 22 Mar 2003 22:39:30 +1100 User-Agent: KMail/1.5 Cc: current@FreeBSD.ORG References: <200303222108.59805.agh@tpg.com.au> <1048331843.39751.20.camel@chowder.dons.net.au> In-Reply-To: <1048331843.39751.20.camel@chowder.dons.net.au> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200303222239.30616.agh@tpg.com.au> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Saturday, 22 March 2003 22:17, Daniel O'Connor wrote: > On Sat, 2003-03-22 at 20:38, Alastair G. Hogge wrote: > > I've been able to portupgrade my XFree86-4.2.1 system[1] to 4.3.0 expect > > the 4.3.0 clients port. I've tried completely removing and building it > > manuly thru "make install" but I get the same. > > -DMITSHM -DXFT -DXRENDER -c do_text.c > > do_text.c:403:25: X11/Xft/Xft.h: No such file or directory > > Tried making sure Xft and fontconfig are up to date? Both were updated with portupgrade. > I had trouble with that when I updated. Wait...blast Xft doesn't appear to be installed anymore. I know I updated to Xft-2.1_3 before the X-4.3.0 upgrade. Well I'll try clients again now, that I re-reinstall Xft. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 3:46:15 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 870ED37B401 for ; Sat, 22 Mar 2003 03:46:14 -0800 (PST) Received: from mail3.tpgi.com.au (mail.tpgi.com.au [203.12.160.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BBB043FA3 for ; Sat, 22 Mar 2003 03:46:13 -0800 (PST) (envelope-from agh@tpg.com.au) Received: from pen-ts3-2600-066.tpgi.com.au (pen-ts3-2600-066.tpgi.com.au [203.213.6.66]) (authenticated (0 bits)) by mail3.tpgi.com.au (8.11.6/8.11.6) with ESMTP id h2MBjqu10202 (using TLSv1/SSLv3 with cipher RC4-MD5 (128 bits) verified NO); Sat, 22 Mar 2003 22:46:06 +1100 From: "Alastair G. Hogge" To: current@FreeBSD.ORG Subject: Followup to: Trouble building XFree86-4-Clients. Date: Sat, 22 Mar 2003 22:45:14 +1100 User-Agent: KMail/1.5 References: <200303222108.59805.agh@tpg.com.au> In-Reply-To: <200303222108.59805.agh@tpg.com.au> Cc: "Daniel O'Connor" MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200303222245.14017.agh@tpg.com.au> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Well it was Xft. I feel stupid, sorry for wasting peoples time. Anyways I think I recall what happened, during the portupgrade I was playing around with X and caused a system crash. This may have happened during the Xft removal/upgrade stage of portupgrade. All is well now, thanks Daniel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 4:37:50 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A214137B404 for ; Sat, 22 Mar 2003 04:37:48 -0800 (PST) Received: from harrier.mail.pas.earthlink.net (harrier.mail.pas.earthlink.net [207.217.120.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96C9043FA3 for ; Sat, 22 Mar 2003 04:37:46 -0800 (PST) (envelope-from rsidd@online.fr) Received: from user-0cev132.cable.mindspring.com ([24.239.132.98] helo=bluerondo.a.la.turk) by harrier.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 18wiFu-0002xM-00 for current@freebsd.org; Sat, 22 Mar 2003 04:37:46 -0800 Received: (qmail 49515 invoked by uid 1001); 22 Mar 2003 12:37:39 -0000 Date: Sat, 22 Mar 2003 07:37:39 -0500 From: Rahul Siddharthan To: "Alastair G. Hogge" Cc: Daniel O'Connor , ports@freebsd.org Subject: Re: Trouble building XFree86-4-Clients. Message-ID: <20030322123739.GA49452@online.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200303222239.30616.agh@tpg.com.au> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG [moving to -ports, I'm not sure it's a -current issue] "Alastair G. Hogge" wrote: > On Saturday, 22 March 2003 22:17, Daniel O'Connor wrote: > > On Sat, 2003-03-22 at 20:38, Alastair G. Hogge wrote: > > > I've been able to portupgrade my XFree86-4.2.1 system[1] to 4.3.0 expect > > > the 4.3.0 clients port. I've tried completely removing and building it > > > manuly thru "make install" but I get the same. > > > -DMITSHM -DXFT -DXRENDER -c do_text.c > > > do_text.c:403:25: X11/Xft/Xft.h: No such file or directory > > > > Tried making sure Xft and fontconfig are up to date? > > Both were updated with portupgrade. I was bitten by this too, as reported here: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=369839+0+current/freebsd-ports and someone posted a follow-up reporting the same issue. I think this happened with the Xft2->Xft rename -- the upgrade clobbered the original libxft and xft.h from XFree86-4-libs v 4.2, but they were still in the +CONTENTS of XFree86-4-libs, and then the portupgrade of XFree86-4-libs to 4.3 removed both these files. This should be fixed. Already files aren't deleted if their original checksums don't match, unfortunately I think this is overruled with pkg_delete -f ... perhaps one needs an option which forces deleting if there are dependencies, but doesn't delete if there's a checksum mismatch? - Rahul To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 5:51:50 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9768A37B401 for ; Sat, 22 Mar 2003 05:51:49 -0800 (PST) Received: from dsl093-019-250.msp1.dsl.speakeasy.net (dsl093-019-250.msp1.dsl.speakeasy.net [66.93.19.250]) by mx1.FreeBSD.org (Postfix) with SMTP id 6550343F3F for ; Sat, 22 Mar 2003 05:51:48 -0800 (PST) (envelope-from peter@jocose.org) Received: (qmail 24185 invoked from network); 22 Mar 2003 13:51:47 -0000 Received: from unknown (HELO jocose.org) (10.0.0.198) by 0 with SMTP; 22 Mar 2003 13:51:47 -0000 Message-ID: <3E7C6A8D.7070409@jocose.org> Date: Sat, 22 Mar 2003 07:52:13 -0600 From: Peter Schultz User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3b) Gecko/20030226 X-Accept-Language: en-us, en MIME-Version: 1.0 To: der_julian@web.de Cc: freebsd-current@freebsd.org Subject: Need ALSA [was: Re: MIDI on SB Live! ?] References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG der_julian@web.de wrote: > Hello, > > just out of curiosity: Is someone working in MIDI support for Creative EMU10K1 > based sound cards (aka Soundblaster Live!) ? > > Regards, > Julian Stecklina > Having a port of ALSA would sure round out 5.2 nicely, and would get you MIDI support: http://www.alsa-project.org/ This can easily happen if we get behind a developer. ALSA has been sponsored by SuSE for the benefit of Linux, and there's no reason we can't pull together our resources to do the same for our OS. I'm sure someone will step forward to do the port if we have the cash for them to comfortably sit in front of their computer until the port is complete. I'd certainly be more than willing to throw some money into a paypal account or whatever, and I think there are others who would too. OSS is so 20th century, lets get FreeBSD into 21st century sound architecture design. :-) If you're a developer seriously interested in this, lets talk. So much of FreeBSD development is sponsored by Universities and whatnot that we take it for granted. When stuff like ALSA doesn't get ported right away, I feel we need to realize our responsibility to contribute to the project as well. Sincerely, Pete... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 6:27:13 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE35537B401 for ; Sat, 22 Mar 2003 06:27:12 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id E450643F93 for ; Sat, 22 Mar 2003 06:27:11 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 737C85308; Sat, 22 Mar 2003 15:27:08 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Peter Schultz Cc: der_julian@web.de, freebsd-current@freebsd.org Subject: Re: Need ALSA From: des@ofug.org (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Sat, 22 Mar 2003 15:27:08 +0100 In-Reply-To: <3E7C6A8D.7070409@jocose.org> (Peter Schultz's message of "Sat, 22 Mar 2003 07:52:13 -0600") Message-ID: User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: <3E7C6A8D.7070409@jocose.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Peter Schultz writes: > Having a port of ALSA would sure round out 5.2 nicely, and would get > you MIDI support: http://www.alsa-project.org/ > > This can easily happen if we get behind a developer.=20 Not so. ALSA is poorly designed (there is no hardware abstraction layer below the driver layer) and would represent a significant challenge to port, not to mention maintain once ported. DES --=20 Dag-Erling Sm=F8rgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 6:35:35 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0344837B401 for ; Sat, 22 Mar 2003 06:35:34 -0800 (PST) Received: from mailout07.sul.t-online.com (mailout07.sul.t-online.com [194.25.134.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE9B043FAF for ; Sat, 22 Mar 2003 06:35:32 -0800 (PST) (envelope-from blitz@jmmr.no-ip.com) Received: from fwd02.sul.t-online.de by mailout07.sul.t-online.com with smtp id 18wk5r-0005Th-01; Sat, 22 Mar 2003 15:35:31 +0100 Received: from jmmr.no-ip.com (520088592922-0001@[217.85.102.185]) by fmrl02.sul.t-online.com with esmtp id 18wk5f-1gFSZEC; Sat, 22 Mar 2003 15:35:19 +0100 Received: from jmmr.no-ip.com (blitz@localhost [127.0.0.1]) by jmmr.no-ip.com (8.12.8/8.12.8) with ESMTP id h2MEXqQI088444 for ; Sat, 22 Mar 2003 15:34:02 +0100 (CET) (envelope-from blitz@jmmr.no-ip.com) Received: (from blitz@localhost) by jmmr.no-ip.com (8.12.8/8.12.8/Submit) id h2MEXi9O087596 for freebsd-current@FreeBSD.ORG; Sat, 22 Mar 2003 15:33:44 +0100 (CET) (envelope-from blitz) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <3E7C6A8D.7070409@jocose.org> Date: Sat, 22 Mar 2003 15:33:42 +0100 (CET) From: der_julian@web.de To: freebsd-current@FreeBSD.ORG Subject: RE: Need ALSA [was: Re: MIDI on SB Live! ?] X-Sender: 520088592922-0001@t-dialin.net Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, > Having a port of ALSA would sure round out 5.2 nicely, and would get you > MIDI support: http://www.alsa-project.org/ Quote from this page: "Known bugs - MIDI on SB live drive not working properly." Seems MIDI is not a great priority anymore. But I would certainly greet a new sound architecture. Broken MIDI is at least better than no MIDI. ;) [porting] > I'd certainly be more than willing to throw some money into a paypal > account or whatever, and I think there are others who would too. OSS is > so 20th century, lets get FreeBSD into 21st century sound architecture > design. :-) I would have no objections. > If you're a developer seriously interested in this, lets talk. So much > of FreeBSD development is sponsored by Universities and whatnot that we > take it for granted. When stuff like ALSA doesn't get ported right > away, I feel we need to realize our responsibility to contribute to the > project as well. Uh... Ok, I have C experience, but my insight into FreeBSD and sound card programming (I remember some experiments with soundblasters in DOS times) is quite limited. Regards, Julian Stecklina To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 6:44:39 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 299AA37B401 for ; Sat, 22 Mar 2003 06:44:37 -0800 (PST) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AE5943F85 for ; Sat, 22 Mar 2003 06:44:36 -0800 (PST) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id BD3A116768C; Sat, 22 Mar 2003 14:42:45 +0100 (CET) Received: from kiste.my.domain (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.6/8.12.6) with ESMTP id h2MEiX27001519 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Sat, 22 Mar 2003 15:44:34 +0100 (CET) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Peter Schultz , der_julian@web.de Subject: Re: Need ALSA [was: Re: MIDI on SB Live! ?] Date: Sat, 22 Mar 2003 15:44:29 +0100 User-Agent: KMail/1.5 Cc: freebsd-current@freebsd.org References: <3E7C6A8D.7070409@jocose.org> In-Reply-To: <3E7C6A8D.7070409@jocose.org> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_RbHf+28nvl34so2"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200303221544.33648.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --Boundary-02=_RbHf+28nvl34so2 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Description: signed data Content-Disposition: inline On Saturday 22 March 2003 14:52, Peter Schultz wrote: > der_julian@web.de wrote: > > Hello, > > > > just out of curiosity: Is someone working in MIDI support for Creative > > EMU10K1 based sound cards (aka Soundblaster Live!) ? > > > > Regards, > > Julian Stecklina > > Having a port of ALSA would sure round out 5.2 nicely, and would get you > MIDI support: http://www.alsa-project.org/ I think you wouldn't really do anyone a favour, including the ALSA folks, i= f=20 you went and made a port right now. The ALSA project is still not at 1.00=20 status and still quite in-flux. > This can easily happen if we get behind a developer. ALSA has been > sponsored by SuSE for the benefit of Linux, and there's no reason we > can't pull together our resources to do the same for our OS. I'm sure > someone will step forward to do the port if we have the cash for them to > comfortably sit in front of their computer until the port is complete. I'd appreciate sponsoring somebody to work on our existing newpcm stuff and= =20 add the missing bits and pieces much more. Donating hardware (soundcards an= d=20 MIDI-devices) would probably help very much already. =2D-=20 Regards, Michael Nottebrock --Boundary-02=_RbHf+28nvl34so2 Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+fHbRXhc68WspdLARAoxIAJoCOIXFOKDoC1q/rpUd2jhmAk1PQwCeOCh9 hKOiRkzgMB++eAmd9AaYdGg= =cpXj -----END PGP SIGNATURE----- --Boundary-02=_RbHf+28nvl34so2-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 6:45:35 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E30BC37B404 for ; Sat, 22 Mar 2003 06:45:33 -0800 (PST) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0549543F85 for ; Sat, 22 Mar 2003 06:45:33 -0800 (PST) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 52FE216768C; Sat, 22 Mar 2003 14:43:43 +0100 (CET) Received: from kiste.my.domain (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.6/8.12.6) with ESMTP id h2MEjV27001532 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Sat, 22 Mar 2003 15:45:31 +0100 (CET) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: der_julian@web.de, freebsd-current@freebsd.org Subject: Re: MIDI on SB Live! ? Date: Sat, 22 Mar 2003 15:45:31 +0100 User-Agent: KMail/1.5 References: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_LcHf+RRvjC2SO9s"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200303221545.31700.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --Boundary-02=_LcHf+RRvjC2SO9s Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Description: signed data Content-Disposition: inline On Friday 21 March 2003 21:01, der_julian@web.de wrote: > Hello, > > just out of curiosity: Is someone working in MIDI support for Creative > EMU10K1 based sound cards (aka Soundblaster Live!) ? On and off, as far as I can tell. If you want MIDI right now, take a look a= t=20 what 4Front Technologies offers in their commercial OSS package. =2D-=20 Regards, Michael Nottebrock --Boundary-02=_LcHf+RRvjC2SO9s Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+fHcLXhc68WspdLARAo1BAKCWKHS+tdvMnufjX+EFtvJZz3LjKwCeJJmQ tPDg0WoCaT/bbRCxHyDMlvc= =EQpY -----END PGP SIGNATURE----- --Boundary-02=_LcHf+RRvjC2SO9s-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 6:52:30 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF1F637B404 for ; Sat, 22 Mar 2003 06:52:28 -0800 (PST) Received: from dsl093-019-250.msp1.dsl.speakeasy.net (dsl093-019-250.msp1.dsl.speakeasy.net [66.93.19.250]) by mx1.FreeBSD.org (Postfix) with SMTP id CC6A743FAF for ; Sat, 22 Mar 2003 06:52:27 -0800 (PST) (envelope-from peter@jocose.org) Received: (qmail 24307 invoked from network); 22 Mar 2003 14:52:27 -0000 Received: from unknown (HELO jocose.org) (10.0.0.198) by 0 with SMTP; 22 Mar 2003 14:52:27 -0000 Message-ID: <3E7C78C4.3060102@jocose.org> Date: Sat, 22 Mar 2003 08:52:52 -0600 From: Peter Schultz User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3b) Gecko/20030226 X-Accept-Language: en-us, en MIME-Version: 1.0 To: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= Cc: der_julian@web.de, freebsd-current@freebsd.org Subject: Re: Need ALSA References: <3E7C6A8D.7070409@jocose.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smørgrav wrote: > Peter Schultz writes: > >>Having a port of ALSA would sure round out 5.2 nicely, and would get >>you MIDI support: http://www.alsa-project.org/ >> >>This can easily happen if we get behind a developer. > > > Not so. ALSA is poorly designed (there is no hardware abstraction > layer below the driver layer) and would represent a significant > challenge to port, not to mention maintain once ported. > > DES I didn't mean to imply that it would be trivial or that it would be complete after the initial port, but I still hold fast that it's easily possible. There's certainly no lack in talent around here, it's just a matter of the group's will to get it done. Pete... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 7:15:34 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDEEA37B404 for ; Sat, 22 Mar 2003 07:15:32 -0800 (PST) Received: from dsl093-019-250.msp1.dsl.speakeasy.net (dsl093-019-250.msp1.dsl.speakeasy.net [66.93.19.250]) by mx1.FreeBSD.org (Postfix) with SMTP id E840E43FBF for ; Sat, 22 Mar 2003 07:15:31 -0800 (PST) (envelope-from peter@jocose.org) Received: (qmail 24344 invoked from network); 22 Mar 2003 15:15:31 -0000 Received: from unknown (HELO jocose.org) (10.0.0.198) by 0 with SMTP; 22 Mar 2003 15:15:31 -0000 Message-ID: <3E7C7E2C.9080304@jocose.org> Date: Sat, 22 Mar 2003 09:15:56 -0600 From: Peter Schultz User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3b) Gecko/20030226 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Michael Nottebrock Cc: der_julian@web.de, freebsd-current@freebsd.org Subject: Re: Need ALSA [was: Re: MIDI on SB Live! ?] References: <3E7C6A8D.7070409@jocose.org> <200303221544.33648.michaelnottebrock@gmx.net> In-Reply-To: <200303221544.33648.michaelnottebrock@gmx.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Michael Nottebrock wrote: > On Saturday 22 March 2003 14:52, Peter Schultz wrote: > >>der_julian@web.de wrote: >> >>>Hello, >>> >>>just out of curiosity: Is someone working in MIDI support for Creative >>>EMU10K1 based sound cards (aka Soundblaster Live!) ? >>> >>>Regards, >>>Julian Stecklina >> >>Having a port of ALSA would sure round out 5.2 nicely, and would get you >>MIDI support: http://www.alsa-project.org/ > > > I think you wouldn't really do anyone a favour, including the ALSA folks, if > you went and made a port right now. The ALSA project is still not at 1.00 > status and still quite in-flux. > One could go either way with this. Leave it for after 1.0, or grab it now and help build it up for a better 2.0. Or I guess we could initiate the ABSDSA and have support for both ALSA and OSS. Wouldn't this be even more work though? > >>This can easily happen if we get behind a developer. ALSA has been >>sponsored by SuSE for the benefit of Linux, and there's no reason we >>can't pull together our resources to do the same for our OS. I'm sure >>someone will step forward to do the port if we have the cash for them to >>comfortably sit in front of their computer until the port is complete. > > > I'd appreciate sponsoring somebody to work on our existing newpcm stuff and > add the missing bits and pieces much more. Donating hardware (soundcards and > MIDI-devices) would probably help very much already. > OSS is on the outs. New applications that are ALSA only will soon be common, won't they? Newpcm is what, five years old? Whatever it is, it ain't new anymore. Of course, maybe I'm completely mistaken about the whole situation and all newpcm needs is a boost. What is the right answer? Does OS X have a completely proprietary sound arch? It would be nice to be able to work with what they've got too. Pete... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 8:22:35 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5A7F37B401 for ; Sat, 22 Mar 2003 08:22:34 -0800 (PST) Received: from imo-r08.mx.aol.com (imo-r08.mx.aol.com [152.163.225.104]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBE8A43F85 for ; Sat, 22 Mar 2003 08:22:33 -0800 (PST) (envelope-from BelletJr@aol.com) Received: from BelletJr@aol.com by imo-r08.mx.aol.com (mail_out_v34.21.) id n.28.358293be (4238) for ; Sat, 22 Mar 2003 11:22:29 -0500 (EST) From: BelletJr@aol.com Message-ID: <28.358293be.2bade7c4@aol.com> Date: Sat, 22 Mar 2003 11:22:28 EST Subject: "READ_BIG command timeout" on CDROM drive To: current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: AOL 5.0 for Windows sub 103 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi all! When I read cdroms with fbsd 5.0, the following message appears in the console very often (it seems to happen with every cdrom I try): >acd0: READ_BIG command timeout - resetting >ata0: resetting devices .. >done It is repeated indefinitely and I can't kill -9 the process that is trying to read the cdrom. "umount -f /cdrom" also gets stuck and doesn't write any error messages. The driver in use is cd9660: RockRidge Extension. I have to reboot to have access to the cdrom drive again. And besides, the shutdown process does not end every time when the system is in this state. Is there a means to have access to the cdrom drive again without rebooting? I have not seen any bug report for this problem; am I right? Have a nice week-end! Jerome To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 8:45:16 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3020137B401 for ; Sat, 22 Mar 2003 08:45:14 -0800 (PST) Received: from logopolis.mordacious.net (logopolis.mordacious.net [194.153.168.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A03D43FBF for ; Sat, 22 Mar 2003 08:45:13 -0800 (PST) (envelope-from cg@ijcg.net) Received: from [10.1.0.2] (unknown [81.2.114.200]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by logopolis.mordacious.net (Postfix) with ESMTP id A1FD872F47B; Sat, 22 Mar 2003 16:48:51 +0000 (GMT) Date: Sat, 22 Mar 2003 16:44:55 +0000 From: cameron grant To: Peter Schultz Cc: Michael Nottebrock , der_julian@web.de, freebsd-current@freebsd.org Subject: Re: Need ALSA [was: Re: MIDI on SB Live! ?] Message-ID: <390280884.1048351495@[192.168.48.21]> In-Reply-To: <3E7C7E2C.9080304@jocose.org> References: <3E7C6A8D.7070409@jocose.org> <200303221544.33648.michaelnottebrock@gmx.net> <3E7C7E2C.9080304@jocose.org> X-Mailer: Mulberry/3.0.0 (Win32) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >>> Having a port of ALSA would sure round out 5.2 nicely, and would get you >>> MIDI support: http://www.alsa-project.org/ >> >> I think you wouldn't really do anyone a favour, including the ALSA >> folks, if you went and made a port right now. The ALSA project is still >> not at 1.00 status and still quite in-flux. >> > One could go either way with this. Leave it for after 1.0, or grab it > now and help build it up for a better 2.0. Or I guess we could initiate > the ABSDSA and have support for both ALSA and OSS. Wouldn't this be even > more work though? porting alsa would gain very little and be a huge regression. >>> This can easily happen if we get behind a developer. ALSA has been >>> sponsored by SuSE for the benefit of Linux, and there's no reason we >>> can't pull together our resources to do the same for our OS. I'm sure >>> someone will step forward to do the port if we have the cash for them to >>> comfortably sit in front of their computer until the port is complete. >> >> >> I'd appreciate sponsoring somebody to work on our existing newpcm stuff >> and add the missing bits and pieces much more. Donating hardware >> (soundcards and MIDI-devices) would probably help very much already. >> > OSS is on the outs. New applications that are ALSA only will soon be > common, won't they? Newpcm is what, five years old? Whatever it is, it > ain't new anymore. Of course, maybe I'm completely mistaken about the > whole situation and all newpcm needs is a boost. you are completely mistaken. first, let me correct some of the factual inaccuracies that you are propounding: * newpcm is not even 4 years old yet. * alsa is in no way desireable- it is not a device abstraction system. every app must do userland resampling to play, say 44.1khz sound on a 48khz only chipset. given that it does not provide hardware abstraction, alsa's kernel components are far too complex. * alsa drivers are difficult to write- compare one to its corresponding newpcm driver. * newpcm has a much more advanced architecture than alsa, and is entirely different than oss. the fact that newpcm's dsp and mixer layers implement the oss api is incidental. newpcm v2, which may gain a better name, is under development. i originally hoped to have it ready for 5.0, but very poor health over the last year prevented this. instead, it will be targetted at 6.0 and probably backported to ~5.3+ once feature complete and demonstrably stable. i will not elaborate here on the features planned for v2, but replacing the api is one of them, although oss compatibility will be provided. there are a few people out there who know the plans, but they all know that i want them kept under wraps for now. with only two main developers, you should not expect v2 to be committed much before the end of this year. additional manpower would help, but don't volunteer if i'm going to have to spend time teaching you c, the kernel, kobj or the current design of newpcm. someone well versed in dsp techniques and acquainted with the mathematics of accoustics would be very helpful. money and/or hardware would be nice, but i at least am limited in speed by my body and nothing short of a few million dollars is likely to change that. the single greatest incentive to continue that the community could provide is to refrain from suggesting that newpcm be scrapped or replaced, especially by proponents who are not willing to do the code themselves, do not have a replacement working prior to their proposal, and/or have little to zero knowledge of sound hardware and the requirements of a top-flight audio infrastructure. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 9:31:52 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 314EA37B401 for ; Sat, 22 Mar 2003 09:31:51 -0800 (PST) Received: from mail.gmx.net (pop.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id E963F43FA3 for ; Sat, 22 Mar 2003 09:31:49 -0800 (PST) (envelope-from mdcki@gmx.net) Received: (qmail 18912 invoked by uid 0); 22 Mar 2003 17:31:48 -0000 Received: from Bc1a8.pppool.de (HELO gmx.net) (213.7.193.168) by mail.gmx.net (mp012-rz3) with SMTP; 22 Mar 2003 17:31:48 -0000 Message-ID: <3E7C9E44.2000107@gmx.net> Date: Sat, 22 Mar 2003 18:32:52 +0100 From: Marcin Dalecki User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3b) Gecko/20030219 X-Accept-Language: en-us, en, pl, ru MIME-Version: 1.0 To: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= Cc: Peter Schultz , der_julian@web.de, freebsd-current@freebsd.org Subject: Re: Need ALSA References: <3E7C6A8D.7070409@jocose.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smørgrav wrote: > Peter Schultz writes: > >>Having a port of ALSA would sure round out 5.2 nicely, and would get >>you MIDI support: http://www.alsa-project.org/ >> >>This can easily happen if we get behind a developer. > > > Not so. ALSA is poorly designed (there is no hardware abstraction Amen. It belongs in to the same catheogry as /proc and v4l - Linux kind of interface invention disaster. > layer below the driver layer) and would represent a significant > challenge to port, not to mention maintain once ported. > > DES To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 9:34:50 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49FB837B401 for ; Sat, 22 Mar 2003 09:34:48 -0800 (PST) Received: from mail.gmx.net (imap.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id D4D3C43FBD for ; Sat, 22 Mar 2003 09:34:46 -0800 (PST) (envelope-from mdcki@gmx.net) Received: (qmail 6997 invoked by uid 0); 22 Mar 2003 17:34:43 -0000 Received: from Bc1a8.pppool.de (HELO gmx.net) (213.7.193.168) by mail.gmx.net (mp023-rz3) with SMTP; 22 Mar 2003 17:34:43 -0000 Message-ID: <3E7C9EE3.4020406@gmx.net> Date: Sat, 22 Mar 2003 18:35:31 +0100 From: Marcin Dalecki User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3b) Gecko/20030219 X-Accept-Language: en-us, en, pl, ru MIME-Version: 1.0 To: Peter Schultz Cc: Michael Nottebrock , der_julian@web.de, freebsd-current@freebsd.org Subject: Re: Need ALSA [was: Re: MIDI on SB Live! ?] References: <3E7C6A8D.7070409@jocose.org> <200303221544.33648.michaelnottebrock@gmx.net> <3E7C7E2C.9080304@jocose.org> In-Reply-To: <3E7C7E2C.9080304@jocose.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Peter Schultz wrote: > Michael Nottebrock wrote: > >> On Saturday 22 March 2003 14:52, Peter Schultz wrote: >> >>> der_julian@web.de wrote: >>> >>>> Hello, >>>> >>>> just out of curiosity: Is someone working in MIDI support for Creative >>>> EMU10K1 based sound cards (aka Soundblaster Live!) ? >>>> >>>> Regards, >>>> Julian Stecklina >>> >>> >>> Having a port of ALSA would sure round out 5.2 nicely, and would get you >>> MIDI support: http://www.alsa-project.org/ >> >> >> >> I think you wouldn't really do anyone a favour, including the ALSA >> folks, if you went and made a port right now. The ALSA project is >> still not at 1.00 status and still quite in-flux. >> > One could go either way with this. Leave it for after 1.0, or grab it > now and help build it up for a better 2.0. Or I guess we could initiate > the ABSDSA and have support for both ALSA and OSS. Wouldn't this be > even more work though? > >> >>> This can easily happen if we get behind a developer. ALSA has been >>> sponsored by SuSE for the benefit of Linux, and there's no reason we >>> can't pull together our resources to do the same for our OS. I'm sure >>> someone will step forward to do the port if we have the cash for them to >>> comfortably sit in front of their computer until the port is complete. >> >> >> >> I'd appreciate sponsoring somebody to work on our existing newpcm >> stuff and add the missing bits and pieces much more. Donating hardware >> (soundcards and MIDI-devices) would probably help very much already. >> > OSS is on the outs. New applications that are ALSA only will soon be > common, won't they? Alsa is condemned to driver + some silly user space daemon with naive signal filter anyway. So no problem here. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 10:28:51 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FA8E37B401; Sat, 22 Mar 2003 10:28:50 -0800 (PST) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F76F43F75; Sat, 22 Mar 2003 10:28:49 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) by troutmask.apl.washington.edu (8.12.8/8.12.7) with ESMTP id h2MISlgF081649; Sat, 22 Mar 2003 10:28:47 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.12.8/8.12.8/Submit) id h2MISkNF081648; Sat, 22 Mar 2003 10:28:46 -0800 (PST) Date: Sat, 22 Mar 2003 10:28:46 -0800 From: Steve Kargl To: David Schultz Cc: Till Riedel , freebsd-current@FreeBSD.ORG Subject: Re: libm problem Message-ID: <20030322182846.GA81615@troutmask.apl.washington.edu> References: <20030318173051.GA2322@f111.hadiko.de> <20030319131317.GA670@HAL9000.homeunix.com> <20030321235237.GA8097@f111.hadiko.de> <20030322111233.F4471@gamplex.bde.org> <20030322005435.GA8393@f111.hadiko.de> <20030322051443.GA13854@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030322051443.GA13854@HAL9000.homeunix.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Mar 21, 2003 at 09:14:43PM -0800, David Schultz wrote: > Thus spake Till Riedel : > > I now know the thing that makes it break. > > > > cc -O2 -pipe -mcpu=pentiumpro -c /usr/src/lib/msun/src/e_pow.c > > works fine! > > cc -O0 -pipe -march=pentium4 -c /usr/src/lib/msun/src/e_pow.c > > ... works > > but... > > cc -O -pipe -march=pentium4 -c /usr/src/lib/msun/src/e_pow.c > > breaks it. Hey its only gcc :-), nothing to worry about. > > I think that 0 is nice number: so why don't optimize everithing to down it. > > -O seems to minimize numbers not calculation time. Does anyone know the > > flag to turn that off. > > If you have the time and inclination, I suggest reporting this > problem to the gcc folks. For now, don't use Pentium 4 > optimizations. Not only are they apparently broken, they also > generate slower code than you get by optimizing for a PPro, or > even a 386. > Pentium 4 is definitely broken on 5.x. Perhaps, we should remove the footshooting. --- bsd.cpu.mk.orig Sat Mar 22 10:23:42 2003 +++ bsd.cpu.mk Sat Mar 22 10:27:11 2003 @@ -62,7 +62,9 @@ . elif ${CPUTYPE} == "k5" _CPUCFLAGS = -march=pentium . elif ${CPUTYPE} == "p4" -_CPUCFLAGS = -march=pentium4 +# XXX gcc 3.2.2 appears to generate bad code on FreeBSD 5.x +#_CPUCFLAGS = -march=pentium4 +_CPUCFLAGS = -march=pentiumpro . elif ${CPUTYPE} == "p3" _CPUCFLAGS = -march=pentium3 . elif ${CPUTYPE} == "p2" -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 10:40:22 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2C8837B407; Sat, 22 Mar 2003 10:40:21 -0800 (PST) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 867D243F93; Sat, 22 Mar 2003 10:40:20 -0800 (PST) (envelope-from fearow@attbi.com) Received: from god.woofcat.com (12-251-110-17.client.attbi.com[12.251.110.17]) by sccrmhc02.attbi.com (sccrmhc02) with SMTP id <2003032218401600200jbd0ne>; Sat, 22 Mar 2003 18:40:16 +0000 Date: Sat, 22 Mar 2003 12:39:51 -0600 From: Anti To: Steve Kargl Cc: das@FreeBSD.ORG, till@f111.hadiko.de, freebsd-current@FreeBSD.ORG Subject: Re: libm problem Message-Id: <20030322123951.67271b29.fearow@attbi.com> In-Reply-To: <20030322182846.GA81615@troutmask.apl.washington.edu> References: <20030318173051.GA2322@f111.hadiko.de> <20030319131317.GA670@HAL9000.homeunix.com> <20030321235237.GA8097@f111.hadiko.de> <20030322111233.F4471@gamplex.bde.org> <20030322005435.GA8393@f111.hadiko.de> <20030322051443.GA13854@HAL9000.homeunix.com> <20030322182846.GA81615@troutmask.apl.washington.edu> Organization: Woofcat X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 22 Mar 2003 10:28:46 -0800 Steve Kargl wrote: > Pentium 4 is definitely broken on 5.x. Perhaps, we should remove > the footshooting. > > --- bsd.cpu.mk.orig Sat Mar 22 10:23:42 2003 > +++ bsd.cpu.mk Sat Mar 22 10:27:11 2003 > @@ -62,7 +62,9 @@ > . elif ${CPUTYPE} == "k5" > _CPUCFLAGS = -march=pentium > . elif ${CPUTYPE} == "p4" > -_CPUCFLAGS = -march=pentium4 > +# XXX gcc 3.2.2 appears to generate bad code on FreeBSD 5.x > +#_CPUCFLAGS = -march=pentium4 > +_CPUCFLAGS = -march=pentiumpro > . elif ${CPUTYPE} == "p3" > _CPUCFLAGS = -march=pentium3 > . elif ${CPUTYPE} == "p2" pentium3 would be better than pentiumpro on a p4 i think... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 10:57:56 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4646237B401; Sat, 22 Mar 2003 10:57:55 -0800 (PST) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id A05D043F3F; Sat, 22 Mar 2003 10:57:54 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) by troutmask.apl.washington.edu (8.12.8/8.12.7) with ESMTP id h2MIvogF081902; Sat, 22 Mar 2003 10:57:50 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.12.8/8.12.8/Submit) id h2MIvoQW081901; Sat, 22 Mar 2003 10:57:50 -0800 (PST) Date: Sat, 22 Mar 2003 10:57:50 -0800 From: Steve Kargl To: Anti Cc: das@FreeBSD.ORG, till@f111.hadiko.de, freebsd-current@FreeBSD.ORG Subject: Re: libm problem Message-ID: <20030322185750.GA81889@troutmask.apl.washington.edu> References: <20030318173051.GA2322@f111.hadiko.de> <20030319131317.GA670@HAL9000.homeunix.com> <20030321235237.GA8097@f111.hadiko.de> <20030322111233.F4471@gamplex.bde.org> <20030322005435.GA8393@f111.hadiko.de> <20030322051443.GA13854@HAL9000.homeunix.com> <20030322182846.GA81615@troutmask.apl.washington.edu> <20030322123951.67271b29.fearow@attbi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030322123951.67271b29.fearow@attbi.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Mar 22, 2003 at 12:39:51PM -0600, Anti wrote: > On Sat, 22 Mar 2003 10:28:46 -0800 > Steve Kargl wrote: > > > Pentium 4 is definitely broken on 5.x. Perhaps, we should remove > > the footshooting. > > > > --- bsd.cpu.mk.orig Sat Mar 22 10:23:42 2003 > > +++ bsd.cpu.mk Sat Mar 22 10:27:11 2003 > > @@ -62,7 +62,9 @@ > > . elif ${CPUTYPE} == "k5" > > _CPUCFLAGS = -march=pentium > > . elif ${CPUTYPE} == "p4" > > -_CPUCFLAGS = -march=pentium4 > > +# XXX gcc 3.2.2 appears to generate bad code on FreeBSD 5.x > > +#_CPUCFLAGS = -march=pentium4 > > +_CPUCFLAGS = -march=pentiumpro > > . elif ${CPUTYPE} == "p3" > > _CPUCFLAGS = -march=pentium3 > > . elif ${CPUTYPE} == "p2" > > pentium3 would be better than pentiumpro on a p4 i think... I know pentium4 produces some strange code and I know my system is quite stable with pentiumpro. I've never tested what happens with pentium3. -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 12: 6: 3 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34BEA37B404 for ; Sat, 22 Mar 2003 12:06:02 -0800 (PST) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21F3843F3F for ; Sat, 22 Mar 2003 12:06:01 -0800 (PST) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 4B364167778; Sat, 22 Mar 2003 20:04:08 +0100 (CET) Received: from kiste.my.domain (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.6/8.12.6) with ESMTP id h2MK5s27003236 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Sat, 22 Mar 2003 21:05:58 +0100 (CET) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Peter Schultz Subject: Re: Need ALSA [was: Re: MIDI on SB Live! ?] Date: Sat, 22 Mar 2003 21:05:50 +0100 User-Agent: KMail/1.5 Cc: der_julian@web.de, freebsd-current@freebsd.org References: <200303221544.33648.michaelnottebrock@gmx.net> <3E7C7E2C.9080304@jocose.org> In-Reply-To: <3E7C7E2C.9080304@jocose.org> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_iIMf+tForfiGoCw"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200303222105.54654.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --Boundary-02=_iIMf+tForfiGoCw Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Description: signed data Content-Disposition: inline On Saturday 22 March 2003 16:15, Peter Schultz wrote: > OSS is on the outs. New applications that are ALSA only will soon be > common, won't they?=20 No. In fact, there is quite an explosion in multimedia middleware projects= =20 right now and people are having heated discussions in other places which on= e=20 is the most promising. :) Don't expect many audio apps in the future to be talking directly to some A= PI=20 exported by a kernel. =2D-=20 Regards, Michael Nottebrock --Boundary-02=_iIMf+tForfiGoCw Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+fMIiXhc68WspdLARAmr6AJ4iiUjWkDkqse3nuBoxz7lrI0S9xACgmE4+ u6Hl1tTYkDQ75hZ6vqqzfak= =Z5Ho -----END PGP SIGNATURE----- --Boundary-02=_iIMf+tForfiGoCw-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 13:27:26 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8C2F37B401 for ; Sat, 22 Mar 2003 13:27:24 -0800 (PST) Received: from hak.cnd.mcgill.ca (hak.cnd.mcgill.ca [132.216.11.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA88743F75 for ; Sat, 22 Mar 2003 13:27:23 -0800 (PST) (envelope-from mat@hak.cnd.mcgill.ca) Received: from hak.cnd.mcgill.ca (localhost.cnd.mcgill.ca [127.0.0.1]) by hak.cnd.mcgill.ca (8.12.3/8.12.3) with ESMTP id h2MLTRHB064756 for ; Sat, 22 Mar 2003 16:29:27 -0500 (EST) (envelope-from mat@hak.cnd.mcgill.ca) Received: (from mat@localhost) by hak.cnd.mcgill.ca (8.12.3/8.12.3/Submit) id h2MLTRJo064755 for freebsd-current@FreeBSD.ORG; Sat, 22 Mar 2003 16:29:27 -0500 (EST) Date: Sat, 22 Mar 2003 16:29:27 -0500 From: Mathew Kanner To: freebsd-current@FreeBSD.ORG Subject: Re: MIDI on SB Live! ? Message-ID: <20030322212927.GB64622@cnd.mcgill.ca> References: <200303221545.31700.michaelnottebrock@gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200303221545.31700.michaelnottebrock@gmx.net> Organization: I speak for myself, operating in Montreal, CANADA User-Agent: Mutt/1.5.3i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mar 22, Michael Nottebrock wrote: > On Friday 21 March 2003 21:01, der_julian@web.de wrote: > > just out of curiosity: Is someone working in MIDI support for Creative > > EMU10K1 based sound cards (aka Soundblaster Live!) ? > On and off, as far as I can tell. If you want MIDI right now, take a look at > what 4Front Technologies offers in their commercial OSS package. Hello Micheal and all, (this is reply targeted at the thread) In not sure about 4front compatability with -current. ALSA would require a complete rewrite to work for multiple platforms because they are intimate with the linux pci interface. IMHO, it would require a fork of their project. MIDI in FreeBSD is highly hackable. It took me only a couple of days to get midi working for an es173x, a made a small web page a few months ago, it was for 5.0-dp2 but would probably work with 5.0-R. As it is, midi can be a kld and all that is required for a particular card is basic IO. The emu10k should be easier than most because we already have code for a generic mpu401. Here are some web links, http://www.cnd.mcgill.ca/~mat/es137xmidi.html (my small es137x midi page, mostly derived from other sources) Nice references for midi hacking: from NetBSD (it's .se.netbsd because .netbsd seems to be down) http://cvsweb.se.netbsd.org/cgi-bin/cvsweb.cgi/src/sys/dev/midi.c http://cvsweb.se.netbsd.org/cgi-bin/cvsweb.cgi/src/sys/dev/midisyn.c http://cvsweb.se.netbsd.org/cgi-bin/cvsweb.cgi/src/sys/dev/sequencer.c http://cvsweb.se.netbsd.org/cgi-bin/cvsweb.cgi/src/sys/dev/pci/esa.c http://cvsweb.se.netbsd.org/cgi-bin/cvsweb.cgi/src/sys/dev/pci/emuxki.c (oops, no midi for emu on netbsd) from ALSA: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/alsa/alsa-kernel/drivers/mpu401/ http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/alsa/alsa-kernel/pci/ http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/alsa/alsa-kernel/pci/emu10k1/ After all of this, the reality is, very few people care about midi for freebsd and it has been neglected for along time. We're lucky that the work done long ago still works. --Mat -- Brain: Pinky, are you pondering what I'm pondering? Pinky: I think so Brain, but pants with horizontal stripes make me look chubby. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 13:55:44 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C59637B401; Sat, 22 Mar 2003 13:55:42 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-150.dsl.lsan03.pacbell.net [63.207.60.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C1CF43F85; Sat, 22 Mar 2003 13:55:41 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id ADC6B66B9B; Sat, 22 Mar 2003 13:55:40 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 934321282; Sat, 22 Mar 2003 13:55:40 -0800 (PST) Date: Sat, 22 Mar 2003 13:55:40 -0800 From: Kris Kennaway To: kirk@mckusick.com, fs@FreeBSD.org, current@FreeBSD.org Subject: panic: softdep_disk_io_initiation: read Message-ID: <20030322215540.GA30318@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Dxnq1zWXvFF0Q93v" Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --Dxnq1zWXvFF0Q93v Content-Type: text/plain; charset=us-ascii Content-Disposition: inline I've got 3 of these so far (2 on alpha, 1 on i386) since updating to current as of 17 March. panic: softdep_disk_io_initiation: read Debugger("panic") Stopped at Debugger+0x54: xchgl %ebx,in_Debugger.0 db> trace Debugger(c041df8a,c04935e0,c0430d64,d7a50b20,1) at Debugger+0x54 panic(c0430d64,d7a50b38,c029caa9,c04b8e80,ce4fa730) at panic+0xab softdep_disk_io_initiation(ce4fa730,10012,c51c936c,34e,20020080) at softdep_disk_io_initiation+0xac cluster_wbuild(c51c936c,4000,53,0,2) at cluster_wbuild+0x3ed vfs_bio_awrite(ce62d5a8,0,c0431afe,d4,c02afa16) at vfs_bio_awrite+0x1f9 ffs_fsync(d7a50c48,12,c41164b0,484,0) at ffs_fsync+0x2b2 ffs_sync(c4128e00,3,c14e7e00,c41164b0,c4128e00) at ffs_sync+0x18e sync_fsync(d7a50cd0,20002,c41164b0,6ae,0) at sync_fsync+0x16a sched_sync(0,d7a50d48,c041ba89,363,0) at sched_sync+0x17e fork_exit(c02aed50,0,d7a50d48) at fork_exit+0xc4 fork_trampoline() at fork_trampoline+0x1a --- trap 0x1, eip = 0, esp = 0xd7a50d7c, ebp = 0 --- db> #0 doadump () at /a/asami/portbuild/i386/src-client/sys/kern/kern_shutdown.c:239 #1 0xc0165bf5 in db_fncall (dummy1=1016, dummy2=0, dummy3=1016, dummy4=0xd7a50948 "") at /a/asami/portbuild/i386/src-client/sys/ddb/db_command.c:546 #2 0xc0165972 in db_command (last_cmdp=0xc0443f60, cmd_table=0x0, aux_cmd_tablep=0xc043dac4, aux_cmd_tablep_end=0xc043dac8) at /a/asami/portbuild/i386/src-client/sys/ddb/db_command.c:346 #3 0xc0165a86 in db_command_loop () at /a/asami/portbuild/i386/src-client/sys/ddb/db_command.c:470 #4 0xc016880a in db_trap (type=3, code=0) at /a/asami/portbuild/i386/src-client/sys/ddb/db_trap.c:72 #5 0xc03c2ab1 in kdb_trap (type=3, code=0, regs=0xd7a50a9c) at /a/asami/portbuild/i386/src-client/sys/i386/i386/db_interface.c:166 #6 0xc03d3d1f in trap (frame= {tf_fs = -1069481960, tf_es = 16, tf_ds = -1068826608, tf_edi = -1005493072, tf_esi = 256, tf_ebp = -677049624, tf_isp = -677049656, tf_ebx = 0, tf_edx = 0, tf_ecx = 1, tf_eax = 18, tf_trapno = 3, tf_err = 0, tf_eip = -1069798060, tf_cs = 8, tf_eflags = 646, tf_esp = -1069321409, tf_ss = -1069424758}) at /a/asami/portbuild/i386/src-client/sys/i386/i386/trap.c:602 #7 0xc03c4408 in calltrap () at {standard input}:96 #8 0xc025a3bb in panic (fmt=0x0) at /a/asami/portbuild/i386/src-client/sys/kern/kern_shutdown.c:528 #9 0xc0367ecc in softdep_disk_io_initiation (bp=0xce4fa730) at /a/asami/portbuild/i386/src-client/sys/ufs/ffs/ffs_softdep.c:3466 #10 0xc02a5b3d in cluster_wbuild (vp=0xc51c936c, size=16384, start_lbn=84, len=2) at buf.h:422 #11 0xc029ee79 in vfs_bio_awrite (bp=0xce62d5a8) at /a/asami/portbuild/i386/src-client/sys/kern/vfs_bio.c:1682 #12 0xc036f872 in ffs_fsync (ap=0xd7a50c48) at /a/asami/portbuild/i386/src-client/sys/ufs/ffs/ffs_vnops.c:255 #13 0xc036ea1e in ffs_sync (mp=0xc4128e00, waitfor=3, cred=0xc14e7e00, td=0xc41164b0) at vnode_if.h:612 #14 0xc02b21ca in sync_fsync (ap=0xd7a50cd0) at /a/asami/portbuild/i386/src-client/sys/kern/vfs_subr.c:3493 #15 0xc02aeece in sched_sync () at vnode_if.h:612 #16 0xc0246ac4 in fork_exit (callout=0xc02aed50 , arg=0x0, frame=0x0) at /a/asami/portbuild/i386/src-client/sys/kern/kern_fork.c:875 (kgdb) Would you like me to examine the contents of the stack frames for you? Kris --Dxnq1zWXvFF0Q93v Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+fNvcWry0BWjoQKURApU6AKCVixd4xrW4WwIH2FO+hec9IITeUACg3amK ys9lzcFpFdhfpZ2H4QK8I4E= =jxu9 -----END PGP SIGNATURE----- --Dxnq1zWXvFF0Q93v-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 14:12:38 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4CEE37B404 for ; Sat, 22 Mar 2003 14:12:37 -0800 (PST) Received: from mailout10.sul.t-online.com (mailout10.sul.t-online.com [194.25.134.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D7B443F3F for ; Sat, 22 Mar 2003 14:12:36 -0800 (PST) (envelope-from blitz@jmmr.no-ip.com) Received: from fwd04.sul.t-online.de by mailout10.sul.t-online.com with smtp id 18wrEB-0004iY-02; Sat, 22 Mar 2003 23:12:35 +0100 Received: from jmmr.no-ip.com (520088592922-0001@[217.85.111.22]) by fmrl04.sul.t-online.com with esmtp id 18wrDx-196F28C; Sat, 22 Mar 2003 23:12:21 +0100 Received: from jmmr.no-ip.com (blitz@localhost [127.0.0.1]) by jmmr.no-ip.com (8.12.8/8.12.8) with ESMTP id h2MMCHN2000711 for ; Sat, 22 Mar 2003 23:12:19 +0100 (CET) (envelope-from blitz@jmmr.no-ip.com) Received: (from blitz@localhost) by jmmr.no-ip.com (8.12.8/8.12.8/Submit) id h2MMCHKW000710 for freebsd-current@FreeBSD.ORG; Sat, 22 Mar 2003 23:12:17 +0100 (CET) (envelope-from blitz) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200303221545.31700.michaelnottebrock@gmx.net> Date: Sat, 22 Mar 2003 23:12:16 +0100 (CET) From: der_julian@web.de To: freebsd-current@FreeBSD.ORG Subject: Re: MIDI on SB Live! ? X-Sender: 520088592922-0001@t-dialin.net Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, no luck here either: http://www.opensound.com/readme/README.SBLive.html -> o EMU Wavetable MIDI synthesizer not yet supported The only thing that is (partially) working seems to be ALSA. Regards, Julian On 22-Mar-2003 Michael Nottebrock wrote: > On Friday 21 March 2003 21:01, der_julian@web.de wrote: >> Hello, >> >> just out of curiosity: Is someone working in MIDI support for Creative >> EMU10K1 based sound cards (aka Soundblaster Live!) ? > > On and off, as far as I can tell. If you want MIDI right now, take a look at > what 4Front Technologies offers in their commercial OSS package. > > -- > Regards, > Michael Nottebrock To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 14:22:28 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 168AA37B404 for ; Sat, 22 Mar 2003 14:22:28 -0800 (PST) Received: from brazil.xobjex.com (24-148-24-45.na.21stcentury.net [24.148.24.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F47A43FBF for ; Sat, 22 Mar 2003 14:22:27 -0800 (PST) (envelope-from dbibbens@xobjex.com) Received: from brazil.xobjex.com.xobjex.com (brazil.xobjex.com [24.148.24.45]) by brazil.xobjex.com (8.12.6/8.12.6) with ESMTP id h2MMMOar048232; Sat, 22 Mar 2003 16:22:25 -0600 (CST) (envelope-from dbibbens@xobjex.com) To: freebsd-current@FreeBSD.org Subject: subscribe X-Url-From: http://www.freebsd.org/doc/handbook/makeworld.html X-Mailer: Emacs-W3/4.0pre.46 From: Daniel Bibbens Date: 22 Mar 2003 16:22:24 -0600 Message-ID: <86adfn11pb.fsf@brazil.xobjex.com> Lines: 1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG subscribe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 14:26:39 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39DA137B401; Sat, 22 Mar 2003 14:26:38 -0800 (PST) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63F7D43FBD; Sat, 22 Mar 2003 14:26:37 -0800 (PST) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.7/8.12.7) id h2MMQWXr078001; Sat, 22 Mar 2003 16:26:32 -0600 (CST) (envelope-from dan) Date: Sat, 22 Mar 2003 16:26:32 -0600 From: Dan Nelson To: Steve Kargl Cc: Anti , das@FreeBSD.ORG, till@f111.hadiko.de, freebsd-current@FreeBSD.ORG Subject: Re: libm problem Message-ID: <20030322222631.GA63147@dan.emsphone.com> References: <20030318173051.GA2322@f111.hadiko.de> <20030319131317.GA670@HAL9000.homeunix.com> <20030321235237.GA8097@f111.hadiko.de> <20030322111233.F4471@gamplex.bde.org> <20030322005435.GA8393@f111.hadiko.de> <20030322051443.GA13854@HAL9000.homeunix.com> <20030322182846.GA81615@troutmask.apl.washington.edu> <20030322123951.67271b29.fearow@attbi.com> <20030322185750.GA81889@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030322185750.GA81889@troutmask.apl.washington.edu> X-OS: FreeBSD 5.0-CURRENT X-message-flag: Outlook Error User-Agent: Mutt/1.5.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In the last episode (Mar 22), Steve Kargl said: > On Sat, Mar 22, 2003 at 12:39:51PM -0600, Anti wrote: > > pentium3 would be better than pentiumpro on a p4 i think... > > I know pentium4 produces some strange code and I know my > system is quite stable with pentiumpro. I've never tested > what happens with pentium3. p3 is quite stable; I've been building current worls and ports with -march=pentium3 for months. -- Dan Nelson dnelson@allantgroup.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 14:35:30 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9C7B37B401 for ; Sat, 22 Mar 2003 14:35:29 -0800 (PST) Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4FE043FBD for ; Sat, 22 Mar 2003 14:35:28 -0800 (PST) (envelope-from vince@oahu.WURLDLINK.NET) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.11.3/8.11.3) with ESMTP id h2MMZPC35869 for ; Sat, 22 Mar 2003 12:35:25 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Sat, 22 Mar 2003 12:35:24 -1000 (HST) From: Vincent Poy To: current@FreeBSD.ORG Subject: February 6, 2003 to March 8, 2003 -CURRENT - Bad System Calls? Message-ID: <20030322123327.C6727-100000@oahu.WURLDLINK.NET> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've recently went from a February 6, 2003 -CURRENT to a March 8, 2003 -CURRENT and for whatever reason, the stuff that used to work installed from ports all broke with Bad System Call (core dump), has anyone else experienced this problem since what happened to all the backwards compatibility of older binaries? Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 14:42:40 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2729437B401 for ; Sat, 22 Mar 2003 14:42:39 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8713F43FCB for ; Sat, 22 Mar 2003 14:42:38 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 62B0F2A8BB; Sat, 22 Mar 2003 14:42:36 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Vincent Poy Cc: current@FreeBSD.ORG Subject: Re: February 6, 2003 to March 8, 2003 -CURRENT - Bad System Calls? In-Reply-To: <20030322123327.C6727-100000@oahu.WURLDLINK.NET> Date: Sat, 22 Mar 2003 14:42:36 -0800 From: Peter Wemm Message-Id: <20030322224236.62B0F2A8BB@canning.wemm.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Vincent Poy wrote: > I've recently went from a February 6, 2003 -CURRENT to a March 8, > 2003 -CURRENT and for whatever reason, the stuff that used to work > installed from ports all broke with Bad System Call (core dump), has > anyone else experienced this problem since what happened to all the > backwards compatibility of older binaries? Old ports? You probably need to add COMPAT_FREEBSD4 to your kernel config. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 15:51:53 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D076E37B404 for ; Sat, 22 Mar 2003 15:51:49 -0800 (PST) Received: from relay9.melbpc.org.au (newglider.melbpc.org.au [203.12.152.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id DECD943F93 for ; Sat, 22 Mar 2003 15:51:47 -0800 (PST) (envelope-from kpeter@melbpc.org.au) Received: from melbpc.org.au (a1-69.melbpc.org.au [203.12.158.69]) by relay9.melbpc.org.au (8.12.8/8.12.6) with ESMTP id h2MNpgZv039274 for ; Sun, 23 Mar 2003 10:51:44 +1100 (EST) (envelope-from kpeter@melbpc.org.au) Message-ID: <3E7CF70E.7060603@melbpc.org.au> Date: Sun, 23 Mar 2003 10:51:42 +1100 From: Peter Kostouros Reply-To: kpeter@melbpc.org.au Organization: Melbourne PC User Group User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3b) Gecko/20030315 X-Accept-Language: en-us, en MIME-Version: 1.0 To: current@FreeBSD.ORG Subject: KSE test code (src/tools/KDE/ksetest) panic References: <20030310164958.U36670@geri.cc.fer.hr> <20030310192239.GA2516@HAL9000.homeunix.com> In-Reply-To: <20030310192239.GA2516@HAL9000.homeunix.com> Content-Type: multipart/mixed; boundary="------------010509040406000908000305" X-RAVMilter-Version: 8.3.4(snapshot 20020706) (relay9) Sender: owner-freebsd-current@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. --------------010509040406000908000305 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi I receive panics when running this test program. The system was cvsup'ed and built on Mar 21. I hope the attached trace is helpful. -- Regards Peter As always the organisation disavows knowledge of this email To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message --------------010509040406000908000305 Content-Type: text/plain; name="12.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="12.txt" Script started on Sat Mar 22 22:56:08 2003 GNU gdb 5.2.1 (FreeBSD) Copyright 2002 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-undermydesk-freebsd"... panic: mi_switch: switch in a critical section panic messages: --- panic: blockable sleep lock (sleep mutex) process lock @ /mnt/cvs/FreeBSD/usr/src/sys/i386/i386/trap.c:728 syncing disks, buffers remaining... panic: mi_switch: switch in a critical section Uptime: 2h5m17s Dumping 511 MB ata0: resetting devices .. done 16 32 48 64[CTRL-C to abort] [CTRL-C to abort] [CTRL-C to abort] 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 336 352 368 384 400 416 432 448 464 480 496 --- Reading symbols from /usr/obj/mnt/cvs/FreeBSD/usr/src/sys/EVA/modules/mnt/cvs/FreeBSD/usr/src/sys/modules/linux/linux.ko.debug...done. Loaded symbols for /usr/obj/mnt/cvs/FreeBSD/usr/src/sys/EVA/modules/mnt/cvs/FreeBSD/usr/src/sys/modules/linux/linux.ko.debug Reading symbols from /usr/obj/mnt/cvs/FreeBSD/usr/src/sys/EVA/modules/mnt/cvs/FreeBSD/usr/src/sys/modules/acpi/acpi.ko.debug...done. Loaded symbols for /usr/obj/mnt/cvs/FreeBSD/usr/src/sys/EVA/modules/mnt/cvs/FreeBSD/usr/src/sys/modules/acpi/acpi.ko.debug Reading symbols from /usr/obj/mnt/cvs/FreeBSD/usr/src/sys/EVA/modules/mnt/cvs/FreeBSD/usr/src/sys/modules/linprocfs/linprocfs.ko.debug...done. Loaded symbols for /usr/obj/mnt/cvs/FreeBSD/usr/src/sys/EVA/modules/mnt/cvs/FreeBSD/usr/src/sys/modules/linprocfs/linprocfs.ko.debug #0 doadump () at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_shutdown.c:239 /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_shutdown.c:239:6799:beg:0xc02397eb (kgdb) bt #0 doadump () at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_shutdown.c:239 #1 0xc0239e13 in boot (howto=260) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_shutdown.c:371 #2 0xc023a113 in panic () at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_shutdown.c:542 #3 0xc0240731 in mi_switch () at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_synch.c:466 #4 0xc0240075 in msleep (ident=0xc0478c14, mtx=0xc0478c20, priority=68, wmesg=0xc03cf9a1 "wdrain", timo=0) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_synch.c:248 #5 0xc027d542 in bwrite (bp=0xcc26bdf0) at /mnt/cvs/FreeBSD/usr/src/sys/kern/vfs_bio.c:357 #6 0xc027dcec in bawrite (bp=0x0) at /mnt/cvs/FreeBSD/usr/src/sys/kern/vfs_bio.c:1143 #7 0xc02858da in cluster_wbuild (vp=0xc40f0b68, size=16384, start_lbn=48, len=8) at /mnt/cvs/FreeBSD/usr/src/sys/kern/vfs_cluster.c:965 #8 0xc027f099 in vfs_bio_awrite (bp=0xcc2a3d68) at /mnt/cvs/FreeBSD/usr/src/sys/kern/vfs_bio.c:1681 #9 0xc032cc72 in ffs_fsync (ap=0xd32029f8) at /mnt/cvs/FreeBSD/usr/src/sys/ufs/ffs/ffs_vnops.c:255 #10 0xc032be1e in ffs_sync (mp=0xc204fa00, waitfor=2, cred=0xc150ae00, td=0xc0417540) at vnode_if.h:612 #11 0xc029242b in sync (td=0xc0417540, uap=0x0) at /mnt/cvs/FreeBSD/usr/src/sys/kern/vfs_syscalls.c:138 #12 0xc0239973 in boot (howto=256) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_shutdown.c:280 #13 0xc023a113 in panic () at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_shutdown.c:542 #14 0xc025bb2f in witness_lock (lock=0xc151ea68, flags=8, file=0xc03e12df "/mnt/cvs/FreeBSD/usr/src/sys/i386/i386/trap.c", line=728) at /mnt/cvs/FreeBSD/usr/src/sys/kern/subr_witness.c:574 #15 0xc02304a1 in _mtx_lock_flags (m=0xc151fa00, opts=0, file=0xc03e12df "/mnt/cvs/FreeBSD/usr/src/sys/i386/i386/trap.c", line=-1051596184) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_mutex.c:336 #16 0xc03868ed in trap_pfault (frame=0xd3202bc0, usermode=0, eva=404) at /mnt/cvs/FreeBSD/usr/src/sys/i386/i386/trap.c:728 #17 0xc038658d in trap (frame= {tf_fs = 24, tf_es = -752877552, tf_ds = -1037565936, tf_edi = 0, tf_esi = 400, tf_ebp = -752866288, tf_isp = -752866324, tf_ebx = 49, tf_edx = -1051592192, tf_ecx = -1040472000, tf_eax = -1069424904, tf_trapno = 12, tf_err = 2, tf_eip = -1071385900, tf_cs = 8, tf_eflags = 66118, tf_esp = -1069765046, tf_ss = -1040472000}) at /mnt/cvs/FreeBSD/usr/src/sys/i386/i386/trap.c:444 #18 0xc0376e48 in calltrap () at {standard input}:96 #19 0xc024be4f in sched_rem (ke=0x31) at /mnt/cvs/FreeBSD/usr/src/sys/kern/sched_ule.c:252 #20 0xc023efe0 in setrunqueue (td=0x31) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_switch.c:345 #21 0xc024b95c in sched_wakeup (td=0xc3c99400) at /mnt/cvs/FreeBSD/usr/src/sys/kern/sched_ule.c:604 #22 0xc02409d0 in setrunnable (td=0xc3c99400) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_synch.c:582 #23 0xc02403ad in endtsleep (arg=0xc3c99400) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_synch.c:339 #24 0xc024842c in softclock (dummy=0x0) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_timeout.c:195 #25 0xc0227732 in ithread_loop (arg=0xc151d180) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_intr.c:536 #26 0xc0226804 in fork_exit (callout=0xc15139c0, arg=0x0, frame=0x0) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_fork.c:875 (kgdb) up 20 #20 0xc023efe0 in setrunqueue (td=0x31) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_switch.c:345 /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_switch.c:345:10789:beg:0xc023efe0 (kgdb) l 340 ke = tda->td_kse; 341 tda->td_kse = NULL; 342 ke->ke_thread = NULL; 343 tda = kg->kg_last_assigned = 344 TAILQ_PREV(tda, threadqueue, td_runq); 345 sched_rem(ke); 346 } 347 } else { 348 /* 349 * Temporarily disassociate so it looks like the other cases. (kgdb) p ke $1 = (struct kse *) 0x0 (kgdb) down 1 #19 0xc024be4f in sched_rem (ke=0x31) at /mnt/cvs/FreeBSD/usr/src/sys/kern/sched_ule.c:252 /mnt/cvs/FreeBSD/usr/src/sys/kern/sched_ule.c:252:8496:beg:0xc024be4f (kgdb) l 247 } 248 static __inline void 249 kseq_rem(struct kseq *kseq, struct kse *ke) 250 { 251 kseq->ksq_load--; 252 runq_remove(ke->ke_runq, ke); 253 #ifdef SMP 254 kseq->ksq_rslices -= ke->ke_slice; 255 #endif 256 } (kgdb) p kseq No symbol "kseq" in current context. (kgdb) p ke $2 = (struct kse *) 0x31 (kgdb) q Script done on Sat Mar 22 23:00:42 2003 --------------010509040406000908000305-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 16:24: 2 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC8B737B401 for ; Sat, 22 Mar 2003 16:24:01 -0800 (PST) Received: from h00609772adf0.ne.client2.attbi.com (h00609772adf0.ne.client2.attbi.com [24.61.43.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF28843F85 for ; Sat, 22 Mar 2003 16:24:00 -0800 (PST) (envelope-from rodrigc@attbi.com) Received: from h00609772adf0.ne.client2.attbi.com (localhost.ne.attbi.com [127.0.0.1]) by h00609772adf0.ne.client2.attbi.com (8.12.7/8.12.7) with ESMTP id h2N0O5le085232 for ; Sat, 22 Mar 2003 19:24:06 -0500 (EST) (envelope-from rodrigc@h00609772adf0.ne.client2.attbi.com) Received: (from rodrigc@localhost) by h00609772adf0.ne.client2.attbi.com (8.12.7/8.12.7/Submit) id h2N0O5xf085227 for freebsd-current@freebsd.org; Sat, 22 Mar 2003 19:24:05 -0500 (EST) Date: Sat, 22 Mar 2003 19:24:04 -0500 From: Craig Rodrigues To: freebsd-current@freebsd.org Subject: Re: Apache Portable Runtime testcase hangs -current Message-ID: <20030323002404.GA83995@attbi.com> References: <20030321230035.GA41982@attbi.com> <20030321230645.GV49925@freebsd.org.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030321230645.GV49925@freebsd.org.ru> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Mar 22, 2003 at 02:06:45AM +0300, Sergey A. Osokin wrote: > -CURRENT still isn't for production, but more bugs fixed and now > it more stable, then one month ago. > Please update your system and try to reproduce your bug. OK, my bug is gone when I update -CURRENT to: FreeBSD rincewind 5.0-CURRENT FreeBSD 5.0-CURRENT #17: Sat Mar 22 12:29:32 EST 2 003 Thanks. -- Craig Rodrigues http://home.attbi.com/~rodrigc rodrigc@attbi.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 18:57:52 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE6B937B401 for ; Sat, 22 Mar 2003 18:57:51 -0800 (PST) Received: from tydfam.jp (ns.tydfam.jp [61.197.228.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69A6343F85 for ; Sat, 22 Mar 2003 18:57:50 -0800 (PST) (envelope-from ken@tydfam.jp) Received: from localhost (tyd3.sub.tydfam.jp [192.168.0.3]) by tydfam.jp (8.12.3/8.11.6) with ESMTP id h2N2vI8u075731 for ; Sun, 23 Mar 2003 11:57:24 +0900 (JST) (envelope-from ken@tydfam.jp) Date: Sun, 23 Mar 2003 11:57:18 +0900 (JST) Message-Id: <20030323.115718.730549986.ken@tydfam.jp> To: current@FreeBSD.ORG Subject: Q) XFree86-4-Server From: Yamada Ken Takeshi X-Mailer: Mew version 2.2 on XEmacs 21.4.9 (Informed Management) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Is it only with me? XFree86-4-Server cannot be compiled on recent -current, FreeBSD 5.0-CURRENT #34: Sat Mar 22 13:21:34 JST 2003, with the following error (patch cannot be applied); >>> ===> Applying FreeBSD patches for XFree86-Server-4.3.0_2 1 out of 2 hunks failed--saving rejects to lib/X11/imLcPrs.c.rej >> Patch patch-imLcPrs.c failed to apply cleanly. >> Patch(es) patch-FreeBSD.cf patch-Imake.cf patch-Imake.rules patch-Imake.tmpl patch-X11.tmpl patch-Xlc-fix patch-c2 patch-dps patch-dpsinfo patch-dri-Imakefile patch-f applied cleanly. *** Error code 1 Stop in /home/ports/x11-servers/XFree86-4-Server. >>> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 20:19:21 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D5BB37B404 for ; Sat, 22 Mar 2003 20:19:20 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-150.dsl.lsan03.pacbell.net [63.207.60.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76D5043FBF for ; Sat, 22 Mar 2003 20:19:19 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 4545166B9B; Sat, 22 Mar 2003 20:19:19 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 326A3127A; Sat, 22 Mar 2003 20:19:19 -0800 (PST) Date: Sat, 22 Mar 2003 20:19:19 -0800 From: Kris Kennaway To: Yamada Ken Takeshi Cc: current@FreeBSD.ORG Subject: Re: Q) XFree86-4-Server Message-ID: <20030323041919.GA33108@rot13.obsecurity.org> References: <20030323.115718.730549986.ken@tydfam.jp> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+HP7ph2BbKc20aGI" Content-Disposition: inline In-Reply-To: <20030323.115718.730549986.ken@tydfam.jp> User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --+HP7ph2BbKc20aGI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Mar 23, 2003 at 11:57:18AM +0900, Yamada Ken Takeshi wrote: > Is it only with me? >=20 > XFree86-4-Server cannot be compiled on recent -current,=20 > FreeBSD 5.0-CURRENT #34: Sat Mar 22 13:21:34 JST 2003,=20 > with the following error (patch cannot be applied); I think it's you :) That patch does not exist in the ports tree. Kris --+HP7ph2BbKc20aGI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+fTXHWry0BWjoQKURAmyKAJ98hAK6CDW3NW5HCgWdh0TR0jS3EACdE2yo S5dzPruIonZtQUwjz8BN35c= =XUWK -----END PGP SIGNATURE----- --+HP7ph2BbKc20aGI-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 20:33:57 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B934237B401 for ; Sat, 22 Mar 2003 20:33:56 -0800 (PST) Received: from tydfam.jp (ns.tydfam.jp [61.197.228.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id D07FA43FB1 for ; Sat, 22 Mar 2003 20:33:55 -0800 (PST) (envelope-from ken@tydfam.jp) Received: from localhost (tyd3.sub.tydfam.jp [192.168.0.3]) by tydfam.jp (8.12.3/8.11.6) with ESMTP id h2N4XE8u081425; Sun, 23 Mar 2003 13:33:19 +0900 (JST) (envelope-from ken@tydfam.jp) Date: Sun, 23 Mar 2003 13:33:14 +0900 (JST) Message-Id: <20030323.133314.846938266.ken@tydfam.jp> To: kris@obsecurity.org Cc: current@FreeBSD.ORG Subject: Re: Q) XFree86-4-Server From: Yamada Ken Takeshi In-Reply-To: <20030323041919.GA33108@rot13.obsecurity.org> References: <20030323.115718.730549986.ken@tydfam.jp> <20030323041919.GA33108@rot13.obsecurity.org> X-Mailer: Mew version 2.2 on XEmacs 21.4.9 (Informed Management) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thank you. I find that I haven't cvsup x11/XFree86-4-libraries for a while. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 20:59:32 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D41B37B401 for ; Sat, 22 Mar 2003 20:59:28 -0800 (PST) Received: from relay9.melbpc.org.au (newglider.melbpc.org.au [203.12.152.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD6C943F85 for ; Sat, 22 Mar 2003 20:59:26 -0800 (PST) (envelope-from kpeter@melbpc.org.au) Received: from melbpc.org.au (a2-61.melbpc.org.au [203.12.157.61]) by relay9.melbpc.org.au (8.12.8/8.12.6) with ESMTP id h2N4xMZv043212 for ; Sun, 23 Mar 2003 15:59:23 +1100 (EST) (envelope-from kpeter@melbpc.org.au) Message-ID: <3E7D3F2A.1020501@melbpc.org.au> Date: Sun, 23 Mar 2003 15:59:22 +1100 From: Private Individual Reply-To: kpeter@melbpc.org.au Organization: Private Individual User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3b) Gecko/20030315 X-Accept-Language: en-us, en MIME-Version: 1.0 To: current@FreeBSD.ORG Subject: panic: blockable sleep lock (sleep mutex); panic: mi_switch: switch in critical section Content-Type: multipart/mixed; boundary="------------060400010207020906000804" X-RAVMilter-Version: 8.3.4(snapshot 20020706) (relay9) Sender: owner-freebsd-current@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. --------------060400010207020906000804 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi I received this panic whilst terminating program sem_d (src/lib/libpthread/test) with Ctrl+C. sem_d seems to stall after the first block of threads have been completed: the system only panics upon issuing a Ctrl+C to sem_d. sem_d successfully ran to completion when compiled with -pthread. My system was cvsup'ed and generated Mar 21. If there is anything else I can provide ... -- Regards Peter As always the organisation disavows knowledge of this email --------------060400010207020906000804 Content-Type: text/plain; name="14.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="14.txt" Script started on Sun Mar 23 14:31:13 2003 GNU gdb 5.2.1 (FreeBSD) Copyright 2002 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-undermydesk-freebsd"... panic: mi_switch: switch in a critical section panic messages: --- panic: blockable sleep lock (sleep mutex) process lock @ /mnt/cvs/FreeBSD/usr/src/sys/i386/i386/trap.c:728 syncing disks, buffers remaining... 3863 3863 panic: mi_switch: switch in a critical section Uptime: 1h32m24s Dumping 511 MB ata0: resetting devices .. ata0: pre reset mask=03 ostat0=50 ostat2=50 ad0: ATAPI 00 00 ad1: ATAPI 00 00 ata0: after reset mask=03 stat0=50 stat1=50 ad0: ATA 01 a5 ad1: ATA 01 a5 ata0: devices=03 ad1: success setting BIOSPIO on Intel ICH4 chip ad0: success setting UDMA100 on Intel ICH4 chip done [CTRL-C to abort] [CTRL-C to abort] [CTRL-C to abort] 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 336 352 368 384 400 416 432 448 464 480 496 --- Reading symbols from /usr/obj/mnt/cvs/FreeBSD/usr/src/sys/EVA/modules/mnt/cvs/FreeBSD/usr/src/sys/modules/linux/linux.ko.debug... done. Loaded symbols for /usr/obj/mnt/cvs/FreeBSD/usr/src/sys/EVA/modules/mnt/cvs/FreeBSD/usr/src/sys/modules/linux/linux.ko.debug Reading symbols from /usr/obj/mnt/cvs/FreeBSD/usr/src/sys/EVA/modules/mnt/cvs/FreeBSD/usr/src/sys/modules/acpi/acpi.ko.debug...done. Loaded symbols for /usr/obj/mnt/cvs/FreeBSD/usr/src/sys/EVA/modules/mnt/cvs/FreeBSD/usr/src/sys/modules/acpi/acpi.ko.debug Reading symbols from /usr/obj/mnt/cvs/FreeBSD/usr/src/sys/EVA/modules/mnt/cvs/FreeBSD/usr/src/sys/modules/linprocfs/linprocfs.ko.debug...done. Loaded symbols for /usr/obj/mnt/cvs/FreeBSD/usr/src/sys/EVA/modules/mnt/cvs/FreeBSD/usr/src/sys/modules/linprocfs/linprocfs.ko.debug #0 doadump () at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_shutdown.c:239 /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_shutdown.c:239:6799:beg:0xc02397eb (kgdb) bt #0 doadump () at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_shutdown.c:239 #1 0xc0239e13 in boot (howto=260) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_shutdown.c:371 #2 0xc023a113 in panic () at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_shutdown.c:542 #3 0xc0240731 in mi_switch () at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_synch.c:466 #4 0xc0239aff in boot (howto=256) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_shutdown.c:311 #5 0xc023a113 in panic () at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_shutdown.c:542 #6 0xc025bb2f in witness_lock (lock=0xc28ae268, flags=8, file=0xc03e12df "/mnt/cvs/FreeBSD/usr/src/sys/i386/i386/trap.c", line=728) at /mnt/cvs/FreeBSD/usr/src/sys/kern/subr_witness.c:574 #7 0xc02304a1 in _mtx_lock_flags (m=0xc2299500, opts=0, file=0xc03e12df "/mnt/cvs/FreeBSD/usr/src/sys/i386/i386/trap.c", line=-1031085464) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_mutex.c:336 #8 0xc03868ed in trap_pfault (frame=0xd8cb5914, usermode=0, eva=220) at /mnt/cvs/FreeBSD/usr/src/sys/i386/i386/trap.c:728 #9 0xc038658d in trap (frame= {tf_fs = -1069219816, tf_es = -1069219824, tf_ds = -1069219824, tf_edi = 0, tf_esi = 216, tf_ebp = -657761948, tf_isp = -657761984, tf_ebx = 26, tf_edx = -1037462272, tf_ecx = -1040471136, tf_eax = -1069425608, tf_trapno = 12, tf_err = 2, tf_eip = -1071385900, tf_cs = 8, tf_eflags = 66118, tf_esp = -1040471136, tf_ss = -1040471136}) at /mnt/cvs/FreeBSD/usr/src/sys/i386/i386/trap.c:444 #10 0xc0376e48 in calltrap () at {standard input}:96 #11 0xc024be4f in sched_rem (ke=0x1a) at /mnt/cvs/FreeBSD/usr/src/sys/kern/sched_ule.c:252 #12 0xc023efe0 in setrunqueue (td=0x1a) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_switch.c:345 #13 0xc024b95c in sched_wakeup (td=0xc28af200) at /mnt/cvs/FreeBSD/usr/src/sys/kern/sched_ule.c:604 #14 0xc02409d0 in setrunnable (td=0xc28af200) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_synch.c:582 #15 0xc024044f in abortsleep (td=0xc28af2ec) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_synch.c:363 #16 0xc023cb5a in tdsignal (td=0xc28af2ec, sig=2, action=0xc28af200) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_sig.c:1606 #17 0xc023c8c6 in psignal (p=0xc28af200, sig=2) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_sig.c:1491 #18 0xc023c359 in pgsignal (pgrp=0xc25a6800, sig=2, checkctty=1) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_sig.c:1252 #19 0xc026952d in ttyinput (c=3, tp=0xc25edc30) at /mnt/cvs/FreeBSD/usr/src/sys/kern/tty.c:424 #20 0xc026f990 in ptcwrite (dev=0x0, uio=0xd8cb5c7c, flag=8323089) at /mnt/cvs/FreeBSD/usr/src/sys/kern/tty_pty.c:607 #21 0xc02023e0 in spec_write (ap=0xd8cb5be0) at /mnt/cvs/FreeBSD/usr/src/sys/fs/specfs/spec_vnops.c:311 #22 0xc0201ce8 in spec_vnoperate (ap=0x0) at /mnt/cvs/FreeBSD/usr/src/sys/fs/specfs/spec_vnops.c:123 #23 0xc029a3fe in vn_write (fp=0xc2311708, uio=0xd8cb5c7c, active_cred=0xc25d3c00, flags=0, td=0xc2299500) at vnode_if.h:417 #24 0xc025e568 in dofilewrite (td=0xc2299500, fp=0xc2311708, fd=0, buf=0x8061dc0, nbyte=0, offset=0, flags=0) at file.h:239 #25 0xc025e3a9 in write (td=0xc2299500, uap=0xd8cb5d10) at /mnt/cvs/FreeBSD/usr/src/sys/kern/sys_generic.c:329 #26 0xc038701e in syscall (frame= {tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = 1, tf_esi = -1077937904, tf_ebp = -1077938200, tf_isp = -657760908, tf_ebx = 1, tf_edx = 1, tf_ecx = 134618560, tf_eax = 4, tf_trapno = 12, tf_err = 2, tf_eip = 672785795, tf_cs = 31, tf_eflags = 643, tf_esp = -1077938228, tf_ss = 47}) at /mnt/cvs/FreeBSD/usr/src/sys/i386/i386/trap.c:1030 #27 0xc0376e9d in Xint0x80_syscall () at {standard input}:138 ---Can't read userspace from dump, or kernel process--- (kgdb) up 11 #11 0xc024be4f in sched_rem (ke=0x1a) at /mnt/cvs/FreeBSD/usr/src/sys/kern/sched_ule.c:252 /mnt/cvs/FreeBSD/usr/src/sys/kern/sched_ule.c:252:8496:beg:0xc024be4f (kgdb) l 247 } 248 static __inline void 249 kseq_rem(struct kseq *kseq, struct kse *ke) 250 { 251 kseq->ksq_load--; 252 runq_remove(ke->ke_runq, ke); 253 #ifdef SMP 254 kseq->ksq_rslices -= ke->ke_slice; 255 #endif 256 } (kgdb) up 1 #12 0xc023efe0 in setrunqueue (td=0x1a) at /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_switch.c:345 /mnt/cvs/FreeBSD/usr/src/sys/kern/kern_switch.c:345:10789:beg:0xc023efe0 (kgdb) l 340 ke = tda->td_kse; 341 tda->td_kse = NULL; 342 ke->ke_thread = NULL; 343 tda = kg->kg_last_assigned = 344 TAILQ_PREV(tda, threadqueue, td_runq); 345 sched_rem(ke); 346 } 347 } else { 348 /* 349 * Temporarily disassociate so it looks like the other cases. (kgdb) l -10 335 kg->kg_idle_kses--; 336 } else if (tda && (tda->td_priority > td->td_priority)) { 337 /* 338 * None free, but there is one we can commandeer. 339 */ 340 ke = tda->td_kse; 341 tda->td_kse = NULL; 342 ke->ke_thread = NULL; 343 tda = kg->kg_last_assigned = 344 TAILQ_PREV(tda, threadqueue, td_runq); (kgdb) p ke $1 = (struct kse *) 0x0 (kgdb) q Script done on Sun Mar 23 14:33:44 2003 --------------060400010207020906000804-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 21: 4:12 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7F0737B401 for ; Sat, 22 Mar 2003 21:04:11 -0800 (PST) Received: from smtpauth2-ext.prodigy.net (smtpauth2-ext.prodigy.net [207.115.63.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id C817043FB1 for ; Sat, 22 Mar 2003 21:04:10 -0800 (PST) (envelope-from jimit@myrealbox.com) Received: from [10.10.10.2] (crtntx1-ar1-4-60-255-009.crtntx1.dsl-verizon.net [4.60.255.9]) (authenticated) by smtpauth2-ext.prodigy.net (8.11.0/8.11.0) with ESMTP id h2N549Q220620 for ; Sun, 23 Mar 2003 00:04:09 -0500 Mime-Version: 1.0 X-Sender: jimit@pop.prodigy.net Message-Id: Disposition-Notification-To: Jimi Thompson Date: Sat, 22 Mar 2003 23:00:23 -0600 To: current@FreeBSD.ORG From: Jimi Thompson Subject: Calcru: Negative Time Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I just loaded 5.0 from a nice new install and I have loads of this stuff scrolling across my screen. I have every process that running scrolling this stuff. I've followed a bunch of the threads, and looked on the FreeBSD site but I can't seem to find out how to make it stop. I've seen lots of posts about it being a problem, but there isn't a blessed thing I can find about a fix. If it's important, the CPU is a celeron 400. I was going to use it as a web server, but I think that this might cause problems. I'll be happy to post whatever other information anyone might wish. Just tell me what you need. Any help greatly appreciated. -- Thanks, Ms. Jimi Thompson, CISSP, Rev. "If the automobile had followed the same development cycle as the computer, a Rolls-Royce would today cost $100, get a million miles per gallon, and explode once a year, killing everyone inside." -- Robert Cringely To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 21:29:52 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 885B737B401 for ; Sat, 22 Mar 2003 21:29:51 -0800 (PST) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 027F843FA3 for ; Sat, 22 Mar 2003 21:29:51 -0800 (PST) (envelope-from junkk@attbi.com) Received: from attbi.com (12-255-17-106.client.attbi.com[12.255.17.106]) by sccrmhc02.attbi.com (sccrmhc02) with SMTP id <2003032305295000200jb9bce>; Sun, 23 Mar 2003 05:29:50 +0000 Message-ID: <3E7D47F2.4080404@attbi.com> Date: Sat, 22 Mar 2003 22:36:50 -0700 From: Matt Edwards Reply-To: junkk@attbi.com User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.2b) Gecko/20021016 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-current@FreeBSD.org Subject: (no subject) Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG subscribe freebsd-current subscribe cvs-all To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 21:56:58 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AEED37B401 for ; Sat, 22 Mar 2003 21:56:55 -0800 (PST) Received: from hun.org (hun.org [216.190.27.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id B649343FDD for ; Sat, 22 Mar 2003 21:56:54 -0800 (PST) (envelope-from attila@hun.org) Received: by hun.org (Postfix, from userid 1001) id F3BC957593; Sun, 23 Mar 2003 05:56:53 +0000 (GMT) Date: Sun, 23 Mar 2003 05:56:53 +0000 (GMT) Message-Id: <20030323055653.gJSP22019@hun.org> From: Daniel Flickinger X-Mailer: AttilaMail with XEmacs & Postfix on FreeBSD 5.0-CURRENT X-Ballistic: N 37.218497 W 113.614979 X-Address: 31 N 700 E, St George UT 84770-3028 X-Squawk: (435) 680-0750 X-No-Archive: yes X-Tags: Sanity is the Playground for the Unimaginative To: FreeBSD-CURRENT Cc: Subject: CNS: UN 'Dying a Slow Death,' Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; name="text" Content-Transfer-Encoding: 8bit Content-Disposition: inline Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 23 Mar 2003
CNSNews
UN 'Dying a Slow Death,' Policy Expert Alleges
The failure of the United Nations to take action against Iraq, combined with President Bush's strong condemnation of the Security Council, has left the international body with little authority and in need of reform, according to several policy experts.

Although some members of the Bush administration were suspicious of the United Nations even before taking their case against Iraq to the Security Council, relations are now likely to worsen, said Nile Gardiner, an Anglo-American policy expert at the conservative Heritage Foundation.

"The United Nations had a final shot of redemption on the Iraq question and they didn't take it," he said. "I believe we are going to see increasing disengagement from the U.N. process by the United States. The United Nations is dying a slow death as a political organization."

In his speech Monday night, Bush recognized the 17 resolutions adopted by the United Nations on Iraqi disarmament. He also chided the Security Council, which never voted on an 18th resolution largely as a result of France's promise to veto it.

"The United Nations Security Council has not lived up to its responsibilities, so we will rise to ours," Bush told the nation.

Although France placed the blame on the United States and United Kingdom for failing to convince a majority of the 15-member Security Council of Iraq's threats, some observers said France's obstructionism was the root of the problem.

James Lindsay, deputy director and senior fellow at the liberal-leaning Brookings Institution, said France's terms for war remain unclear. Given those circumstances, he said, the Bush administration should not be blamed for failed diplomacy.

"I don't think the French have covered themselves in the glory on this issue," Lindsay said. "Was there ever a set of circumstances under which Paris would have gone to war? If the answer to that question is no, it really doesn't matter what kind of diplomatic effort the Bush administration made - it wasn't going to change the outcome."

France's refusal to go along with a U.S. plan to topple Saddam Hussein has created a divisive "trans-Atlantic rift" that is not likely to dissipate as long as Bush, French President Jacques Chirac and German Chancellor Gerhard Schroeder remain in power, Lindsay said. European and American businesses could suffer as a result, he added.

The rift could also signal dramatic changes for the United Nations, said Michael O'Hanlon, a Brookings Institution foreign policy expert. He suggested that discussions are likely to take place inside the Bush administration about reforming the Security Council.

Since its creation in 1946, the U.N. Security Council has included five permanent members and 10 non-permanent rotating countries. France, based on its global standing following World War II, became a permanent member and has veto power along with China, Russia, the United Kingdom and the United States.

O'Hanlon said France's membership on the Security Council has been a long-running debate in academia, but it could gain popularity given the deep divisions over Iraq. Some scholars have suggested India would be better suited for the role.

"I would not be surprised if this administration, maybe not right away, but early in a second term if it wins re-election, thinks of reforming the basic structure of the Security Council," O'Hanlon said. "The broader question of how you dilute the power of France, which has acted in an even more unilateralist way than the Bush administration, has to be one that Washington wants to consider."

The United Nations still has a role with Iraq, just not politically, Gardiner said. He would like to see the body help rebuild Iraq. But he said France, Germany, Russia, China or any other country that refused to support an Iraq war should be excluded.

"The French come out of this as the main villain," Gardiner said. "They have effectively wounded the United Nations, endangered the future of NATO, they have created a major trans-Atlantic rift and the French have shamelessly appeased Saddam Hussein for the last two decades."

Charles Pena, director of defense policy studies at the libertarian Cato Institute, said he disagrees with Bush's approach to a war with Iraq, but he agrees with the president's decision to move forward without backing from the United Nations. He said if Bush has evidence that Iraq poses a security risk, the matter should have never gone to the Security Council.

As a result, the United Nations stands weaker today, which is not necessarily a bad thing, according to Pena.

"The United Nations is relevant when the United States or any other country wants it to be relevant for its own political purposes," he said. "It is irrelevant whenever it is convenient to ignore. That is how the United Nations is treated because no country is ever going to surrender its sovereignty to a super-national organization."

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 22:15:43 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14CBE37B401 for ; Sat, 22 Mar 2003 22:15:42 -0800 (PST) Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70DEA43F85 for ; Sat, 22 Mar 2003 22:15:41 -0800 (PST) (envelope-from vince@oahu.WURLDLINK.NET) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.11.3/8.11.3) with ESMTP id h2N6FQh40077; Sat, 22 Mar 2003 20:15:27 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Sat, 22 Mar 2003 20:15:26 -1000 (HST) From: Vincent Poy To: Peter Wemm Cc: current@FreeBSD.ORG Subject: Re: February 6, 2003 to March 8, 2003 -CURRENT - Bad System Calls? In-Reply-To: <20030322224236.62B0F2A8BB@canning.wemm.org> Message-ID: <20030322201357.G6727-100000@oahu.WURLDLINK.NET> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 22 Mar 2003, Peter Wemm wrote: > Vincent Poy wrote: > > I've recently went from a February 6, 2003 -CURRENT to a March 8, > > 2003 -CURRENT and for whatever reason, the stuff that used to work > > installed from ports all broke with Bad System Call (core dump), has > > anyone else experienced this problem since what happened to all the > > backwards compatibility of older binaries? > > Old ports? You probably need to add COMPAT_FREEBSD4 to your kernel config. Yep... I notice everything from apache 1.2.6 to stuff like tcpwrappers since I couldn't get the banners in the tcpd that comes with -CURRENT to use and display banners. My kernel config does have: options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options COMPAT_FREEBSD4 #Compatible with FreeBSD4 Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 23:14:28 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 459D737B404 for ; Sat, 22 Mar 2003 23:14:27 -0800 (PST) Received: from white.imgsrc.co.jp (ns.imgsrc.co.jp [210.226.20.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1124E43FAF for ; Sat, 22 Mar 2003 23:14:26 -0800 (PST) (envelope-from kuriyama@imgsrc.co.jp) Received: from localhost (localhost [127.0.0.1]) by white.imgsrc.co.jp (Postfix) with ESMTP id 66E9F24DB8 for ; Sun, 23 Mar 2003 16:14:25 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2::130]) by white.imgsrc.co.jp (Postfix) with ESMTP id 3EABF24D02 for ; Sun, 23 Mar 2003 16:14:23 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2::130]) by black.imgsrc.co.jp (Postfix) with ESMTP id C72EB1E460E for ; Sun, 23 Mar 2003 16:14:22 +0900 (JST) Date: Sun, 23 Mar 2003 16:14:22 +0900 Message-ID: <7m1y0yimgh.wl@black.imgsrc.co.jp> From: Jun Kuriyama To: Current Subject: panic: headlocked should be 1 User-Agent: Wanderlust/2.10.0 (Venus) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.4 Emacs/21.2 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by AMaViS snapshot-20020531 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Today's current. I cannot dump core at this time... panic: headlocked should be 1 cpuid = 0; lapic.id = 00000000 Debugger("panic") Stopped at Debugger+0x55: xchgl %ebx,in_Debugger.0 db> trace Debugger(c03bad7e,0,c03c3c6f,e1190b28,1) at Debugger+0x55 panic(c03c3c6f,c47a2034,e1190b74,c3b27200,3fc0) at panic+0x11f tcp_input(c3b27200,14,c04094c0,1,c03bb2b9) at tcp_input+0x2a91 ip_input(c3b27200,0,c03c184d,e9,c3af1e80) at ip_input+0x9aa swi_net(0,0,c03b8c87,217,c3afd3f8) at swi_net+0x112 ithread_loop(c3afc100,e1190d48,c03b8af8,35f,0) at ithread_loop+0x182 fork_exit(c01f8b90,c3afc100,e1190d48) at fork_exit+0xc4 fork_trampoline() at fork_trampoline+0x1a --- trap 0x1, eip = 0, esp = 0xe1190d7c, ebp = 0 --- db> panic panic: from debugger cpuid = 0; lapic.id = 00000000 boot() called on cpu#0 Uptime: 1h41m22s Dumping 2047 MB ata2: resetting devices .. done -- Jun Kuriyama // IMG SRC, Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Mar 22 23:41:17 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F03D37B404 for ; Sat, 22 Mar 2003 23:41:16 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-131.client.attbi.com [12.233.57.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8347D43FB1 for ; Sat, 22 Mar 2003 23:41:14 -0800 (PST) (envelope-from das@FreeBSD.org) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h2N7fEuQ080949; Sat, 22 Mar 2003 23:41:14 -0800 (PST) (envelope-from das@FreeBSD.org) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h2N7fE1u080948; Sat, 22 Mar 2003 23:41:14 -0800 (PST) (envelope-from das@FreeBSD.org) Date: Sat, 22 Mar 2003 23:41:14 -0800 From: David Schultz To: Anti Cc: Steve Kargl , till@f111.hadiko.de, freebsd-current@FreeBSD.org Subject: Re: libm problem Message-ID: <20030323074114.GA80906@HAL9000.homeunix.com> Mail-Followup-To: Anti , Steve Kargl , till@f111.hadiko.de, freebsd-current@FreeBSD.org References: <20030318173051.GA2322@f111.hadiko.de> <20030319131317.GA670@HAL9000.homeunix.com> <20030321235237.GA8097@f111.hadiko.de> <20030322111233.F4471@gamplex.bde.org> <20030322005435.GA8393@f111.hadiko.de> <20030322051443.GA13854@HAL9000.homeunix.com> <20030322182846.GA81615@troutmask.apl.washington.edu> <20030322123951.67271b29.fearow@attbi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030322123951.67271b29.fearow@attbi.com> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Anti : > On Sat, 22 Mar 2003 10:28:46 -0800 > Steve Kargl wrote: > > > Pentium 4 is definitely broken on 5.x. Perhaps, we should remove > > the footshooting. > > > > --- bsd.cpu.mk.orig Sat Mar 22 10:23:42 2003 > > +++ bsd.cpu.mk Sat Mar 22 10:27:11 2003 > > @@ -62,7 +62,9 @@ > > . elif ${CPUTYPE} == "k5" > > _CPUCFLAGS = -march=pentium > > . elif ${CPUTYPE} == "p4" > > -_CPUCFLAGS = -march=pentium4 > > +# XXX gcc 3.2.2 appears to generate bad code on FreeBSD 5.x > > +#_CPUCFLAGS = -march=pentium4 > > +_CPUCFLAGS = -march=pentiumpro > > . elif ${CPUTYPE} == "p3" > > _CPUCFLAGS = -march=pentium3 > > . elif ${CPUTYPE} == "p2" > > > pentium3 would be better than pentiumpro on a p4 i think... You would think so, but in my (limited) testing on a P3, this does not appear to be the case with gcc3 in -CURRENT. Optimizing for a Ppro worked the best, IIRC. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message