From owner-freebsd-bugs Sun Jan 19 7:30:10 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3FBF37B401 for ; Sun, 19 Jan 2003 07:30:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57F7043F1E for ; Sun, 19 Jan 2003 07:30:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h0JFU6NS091856 for ; Sun, 19 Jan 2003 07:30:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h0JFU6Pm091855; Sun, 19 Jan 2003 07:30:06 -0800 (PST) Date: Sun, 19 Jan 2003 07:30:06 -0800 (PST) Message-Id: <200301191530.h0JFU6Pm091855@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Hiten Pandya Subject: Re: misc/44361: possible raw socket bug Reply-To: Hiten Pandya Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/44361; it has been noted by GNATS. From: Hiten Pandya To: Kelly Yancey , bug-followup@FreeBSD.ORG Cc: alfred@FreeBSD.ORG Subject: Re: misc/44361: possible raw socket bug Date: Sun, 19 Jan 2003 15:25:50 +0000 This is a multi-part message in MIME format. --------------030508090504070801080703 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit --- Kelly Yancey wrote: > On Sat, 18 Jan 2003, Alfred Perlstein wrote: > > : It appears that we expect the ip_len and ip_off feilds to : > be sent in host byte order as the stack will fix it to : > network byte order in ip_output. : : Is this a bug or feature? > :) > > Both, no? :) It's a bug documented in Stevens TCP/IP > Illustrated 2 as being around since 4.4BSD, but I would expect > that fixing it would break a good bit. On the other hand, it > is supposedly fixed in OpenBSD. We should follow the OpenBSD behaviour [1], which is what the submitter has told us (using ntohs() for both ip_len, and ip_off). It was fixed 5 years ago in OpenBSD by deraadt@. Doing some research shows that NetBSD use HTONS(), because of an mbuf optimization they made [2] (it was fixed 5 months ago in their raw_ip.c); I.e. they convert m->m_pkthdr.len to host order for ip_len, and htons(0) for ip_off: \begin{verbatim} /* From: NetBSD src/sys/netinet/raw_ip.c */ ip->ip_off = htons(0); /* ... */ ip->ip_len = htons(m->m_pkthdr.len); /* XXX userland passes ip_len and ip_off in host order */ if (m->m_pkthdr.len != ip->ip_len) { m_freem(m); return (EINVAL); } HTONS(ip->ip_len); HTONS(ip->ip_off); \end{verbatim} For the reference, two Problem Reports were submitted to NetBSD for this same problem. [3] I have attached a fix to HEAD with this mail. It should be MFC'ed, if possible. It is also available from: http://www.unixdaemons.com/~hiten/work/diffs/netinet+ip_fields-fix.patch Reference: [1] - diff(1) rev. 1.8 and 1.9 of OpenBSD raw_ip.c [2] - diff(1) rev. 1.61 and 1.62 of NetBSD raw_ip.c [3] - NetBSD PR: 17867 and 10195 Index: sys/netinet/raw_ip.c =================================================================== RCS file: /home/ncvs/src/sys/netinet/raw_ip.c,v retrieving revision 1.108 diff -u -r1.108 raw_ip.c --- sys/netinet/raw_ip.c 2003/01/18 01:10:55 1.108 +++ sys/netinet/raw_ip.c 2003/01/19 15:15:09 @@ -302,6 +302,8 @@ return(EMSGSIZE); } ip = mtod(m, struct ip *); + ntohs(ip->ip_len); + ntohs(ip->ip_off); /* don't allow both user specified and setsockopt options, and don't allow packet length sizes that will crash */ if (((ip->ip_hl != (sizeof (*ip) >> 2)) Cheers. -- Hiten Pandya http://www.unixdaemons.com/~hiten hiten@uk.FreeBSD.org, hiten@unixdaemons.com --------------030508090504070801080703 Content-Type: text/plain; name="netinet+ip_fields-fix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="netinet+ip_fields-fix.patch" Index: sys/netinet/raw_ip.c =================================================================== RCS file: /home/ncvs/src/sys/netinet/raw_ip.c,v retrieving revision 1.108 diff -u -r1.108 raw_ip.c --- sys/netinet/raw_ip.c 2003/01/18 01:10:55 1.108 +++ sys/netinet/raw_ip.c 2003/01/19 15:15:09 @@ -302,6 +302,8 @@ return(EMSGSIZE); } ip = mtod(m, struct ip *); + ntohs(ip->ip_len); + ntohs(ip->ip_off); /* don't allow both user specified and setsockopt options, and don't allow packet length sizes that will crash */ if (((ip->ip_hl != (sizeof (*ip) >> 2)) --------------030508090504070801080703-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jan 19 7:43:44 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 850EA37B413 for ; Sun, 19 Jan 2003 07:43:42 -0800 (PST) Received: from postbode02.zonnet.nl (postbode02.zonnet.nl [62.58.50.89]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C62643FD3 for ; Sun, 19 Jan 2003 07:43:28 -0800 (PST) (envelope-from lijst10sec@hotmail.com) Received: (qmail 25769 invoked by uid 0); 19 Jan 2003 15:43:25 -0000 Received: from unknown (HELO smtp.com) ([62.59.141.29]) (envelope-sender ) by postbode02.zonnet.nl (qmail-ldap-1.03) with SMTP for ; 19 Jan 2003 15:43:25 -0000 Date: Sun, 19 Jan 2003 15:54:13 +0100 From: lijst10sec@hotmail.com Subject: First Seconds: 40+ dating To: lijst10sec@hotmail.com Reply-To: info@firstseconds.nl X-Bulkmail: 2.05 Message-Id: <20030119154329.8C62643FD3@mx1.FreeBSD.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org L.s. Onder single dertigers is "speeddating" een trend. Het snelle daten is een vrolijke en spannende manier om in korte tijd veel mensen te ontmoeten. First Seconds organiseert deze vorm van kennismaken voor alleenstaanden van begin 40 tot eind 50. In Hotel New York te Rotterdam op 23 februari zullen 25 dames 25 heren ontmoeten. Gedurende enkele minuten knopen zij een gesprekje aan, stellen wat vragen, beslissen of ze hun gespreksparter nog eens willen ontmoeten en gaan naar de volgende persoon. Aan het einde van de middag geeft men aan First Seconds door wie men leuk genoeg vindt voor een vervolg. Als er een 'match' is, ontvangen deelnemers de volgende dag het e-mailadres of telefoonnummer van de andere partij. Interesse in een vrolijk en spannend middagje uit? Bezoek onze site: http://www.firstseconds.nl Met vriendelijke groet, First Seconds To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jan 19 8: 0:21 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB0E137B401 for ; Sun, 19 Jan 2003 08:00:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BA5143ED8 for ; Sun, 19 Jan 2003 08:00:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h0JG0KNS006469 for ; Sun, 19 Jan 2003 08:00:20 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h0JG0K2J006468; Sun, 19 Jan 2003 08:00:20 -0800 (PST) Date: Sun, 19 Jan 2003 08:00:20 -0800 (PST) Message-Id: <200301191600.h0JG0K2J006468@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Hiten Pandya Subject: Re: misc/44361: possible raw socket bug Reply-To: Hiten Pandya Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/44361; it has been noted by GNATS. From: Hiten Pandya To: bug-followup@FreeBSD.ORG Cc: Subject: Re: misc/44361: possible raw socket bug Date: Sun, 19 Jan 2003 15:53:12 +0000 Ignore my request for commit to HEAD and MFC in the previous follow-up, as this would not be the best time for it. Cheers. -- Hiten Pandya http://www.unixdaemons.com/~hiten hiten@uk.FreeBSD.org, hiten@unixdaemons.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jan 19 8:10: 7 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6AD537B405 for ; Sun, 19 Jan 2003 08:10:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 678E443F43 for ; Sun, 19 Jan 2003 08:10:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h0JGA6NS014399 for ; Sun, 19 Jan 2003 08:10:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h0JGA6rQ014398; Sun, 19 Jan 2003 08:10:06 -0800 (PST) Date: Sun, 19 Jan 2003 08:10:06 -0800 (PST) Message-Id: <200301191610.h0JGA6rQ014398@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Alexander Langer Subject: Re: misc/44361: possible raw socket bug Reply-To: Alexander Langer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/44361; it has been noted by GNATS. From: Alexander Langer To: freebsd-gnats-submit@FreeBSD.org, junwen_lai@yahoo.com Cc: Subject: Re: misc/44361: possible raw socket bug Date: Sun, 19 Jan 2003 17:01:59 +0100 This particular bug or feature causes more problems. compare http://docs.freebsd.org/cgi/getmsg.cgi?fetch=238175+0+archive/2002/freebsd-hackers/20021215.freebsd-hackers which is not yet committed. Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jan 19 8:50: 6 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C44E37B401 for ; Sun, 19 Jan 2003 08:50:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA22A43F3F for ; Sun, 19 Jan 2003 08:50:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h0JGo4NS074314 for ; Sun, 19 Jan 2003 08:50:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h0JGo4qb074313; Sun, 19 Jan 2003 08:50:04 -0800 (PST) Date: Sun, 19 Jan 2003 08:50:04 -0800 (PST) Message-Id: <200301191650.h0JGo4qb074313@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Alexander Langer Subject: Re: misc/44361: possible raw socket bug Reply-To: Alexander Langer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/44361; it has been noted by GNATS. From: Alexander Langer To: freebsd-gnats-submit@FreeBSD.org, junwen_lai@yahoo.com Cc: Subject: Re: misc/44361: possible raw socket bug Date: Sun, 19 Jan 2003 17:41:54 +0100 nerver mind, as maxim pointed out, Ian already fixed this. I must have overlooked that, sorry. Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jan 19 10:31: 8 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1415A37B401 for ; Sun, 19 Jan 2003 10:31:06 -0800 (PST) Received: from web10703.mail.yahoo.com (web10703.mail.yahoo.com [216.136.130.211]) by mx1.FreeBSD.org (Postfix) with SMTP id 954A343EB2 for ; Sun, 19 Jan 2003 10:31:05 -0800 (PST) (envelope-from jjramsey_6x9eq42@yahoo.com) Message-ID: <20030119183105.67054.qmail@web10703.mail.yahoo.com> Received: from [66.219.135.59] by web10703.mail.yahoo.com via HTTP; Sun, 19 Jan 2003 10:31:05 PST Date: Sun, 19 Jan 2003 10:31:05 -0800 (PST) From: "James J. Ramsey" Reply-To: jjramsey@pobox.com Subject: Re: Possible bugs in setting UDMA speed (Re: Semirandom bug in FreeBSD's ATA querying) To: David Schultz Cc: freebsd-bugs@freebsd.org In-Reply-To: <20030119064755.GA362@HAL9000.homeunix.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-bugs@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: > Probing ATA devices is really simple: you issue a > command to the > device to identify itself, and it obliges. From what I've heard, it's simpler in theory than in practice because ATA is a rather crufty, clumsy standard. Now what if FreeBSD is 1) failing to detect that the IDE cable is not fit for UDMA66, or 2) issues the identify command before it detects that the cable isn't fit for UDMA66? Those are concrete possibilities that can be checked out, either by having the maintainers check the code, or by having someone with slightly different hardware try to duplicate that might produce the error. > So even > though > something only goes wrong as a result of a bad cable > or drive, the > reason that the problem affects only FreeBSD is that > FreeBSD does > its delay differently after issuing a command than > Linux and > Windows do. If the cable were flaky, Linux and Windows would likely show ugly things like data corruption. The only possibility I can think of where the cable could be at fault would be 1) if the cable were nominally designed for ATA66 but couldn't really handle it, and 2) if Linux and Windows were both conservative about disk I/O speed, thus masking the cable's unfitness. > Moreover, FreeBSD's approach seems to > work for > everyone's hardware but yours. Don't be so sure that the problem is quite so specific to my hardware. Bear in mind that most of those who can't get FreeBSD to install cleanly on their hardware will not bother, or even have the time to bother, with conducting experiments to try to narrow down the problem. Never assume that because only one person reports a problem that only one person has the problem, especially if the problem leaves behind few and cryptic clues. > Since you're the only one who can reproduce the > problem, I'm the only one who has so far reproduced and documented the problem. It seems to me that a smart move would be to try to duplicate the problem on slightly different hardware. Now that I've got a working before-and-after scenario, the most difficult parts of reproducing the problem would be 1) finding the spare machine, 2) finding the spare time, and 3) finding a spare IDE cable that is not meant handle ATA66. > it would > be helpful if you could try Bruce's suggestions of > adding delays. > A kludgy but reliable way to do this is with the > statement > tsleep(NULL, PRIBIO, "atawt", hz / 20); > Another thing you might try before you do that is to > modify the > ata_command() call in ata_getparam() so that the > last argument > is ATA_WAIT_READY instead of ATA_IMMEDIATE or > ATA_WAIT_INTR. I'd rather wait until someone else has done some bug checking or testing before doing something as drastic as installing FreeBSD just to try to debug it. Even if the checks or tests turned out to be a bust, that would at least a sign that somebody else is really trying to figure out where the problem lies instead of just assuming it's a hardware issue. __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jan 19 10:57:35 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C345437B401; Sun, 19 Jan 2003 10:57:34 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65A9743E4A; Sun, 19 Jan 2003 10:57:34 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h0JIvYNS011874; Sun, 19 Jan 2003 10:57:34 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h0JIvY38011870; Sun, 19 Jan 2003 10:57:34 -0800 (PST) Date: Sun, 19 Jan 2003 10:57:34 -0800 (PST) From: Tilman Linneweh Message-Id: <200301191857.h0JIvY38011870@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: misc/34759: Phantasia does not accept [enter] key Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Phantasia does not accept [enter] key Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: arved Responsible-Changed-When: Sun Jan 19 10:56:23 PST 2003 Responsible-Changed-Why: phantasia is now part of the freebsd-games port. http://www.freebsd.org/cgi/query-pr.cgi?pr=34759 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jan 19 12:50: 7 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38CE737B401 for ; Sun, 19 Jan 2003 12:50:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E81D43F5B for ; Sun, 19 Jan 2003 12:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h0JKo2NS047202 for ; Sun, 19 Jan 2003 12:50:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h0JKo2CV047201; Sun, 19 Jan 2003 12:50:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90DDE37B401 for ; Sun, 19 Jan 2003 12:47:06 -0800 (PST) Received: from community6.interfree.it (community6.interfree.it [213.158.72.46]) by mx1.FreeBSD.org (Postfix) with SMTP id 8DA2543E4A for ; Sun, 19 Jan 2003 12:47:01 -0800 (PST) (envelope-from nivit@libero.it) Received: (qmail 3798 invoked from network); 19 Jan 2003 20:46:59 -0000 Received: from unknown (HELO coryphantha) (151.35.185.162) by mail.interfree.it with SMTP; 19 Jan 2003 20:46:59 -0000 Received: (qmail 428 invoked by uid 1002); 19 Jan 2003 12:56:47 -0000 Message-Id: <20030119125647.427.qmail@Coryphantha.DOMO.SVA> Date: 19 Jan 2003 12:56:47 -0000 From: nivit@libero.it (Nicola Vitale) Reply-To: Nicola Vitale To: FreeBSD-gnats-submit@FreeBSD.org Cc: Nicola Vitale X-Send-Pr-Version: 3.113 Subject: i386/47223: [PATCH] pcvt(4), ESC sequences do not change colors correctly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 47223 >Category: i386 >Synopsis: [PATCH] pcvt(4), ESC sequences do not change colors correctly >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 19 12:50:01 PST 2003 >Closed-Date: >Last-Modified: >Originator: Nicola Vitale >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD Coryphantha.DOMO.SVA 4.7-STABLE FreeBSD 4.7-STABLE #221: Sun Jan 19 10:31:38 CET 2003 stan@Coryphantha.DOMO.SVA:/usr/obj/usr/src/sys/Coryphantha i386 Console driver: pcvt(4) >Description: The pcvt driver changes the foreground and background colors correctly, only if you send one escape sequence with two parameters: ESC[;m If you change only one color at the time, e.g., with: ESC[m (or both colors with two separate escape sequences) the driver resets the other one (in this case foreground) to black. So it is impossible to display/use colors with programs such as mutt, midc, lynx, etc, which send a separate sequence for each color. >How-To-Repeat: [In a csh] alias esc[p 'printf "\033[%sm%s\n"' alias esc[pp 'printf "\033[%s;%sm%s\n"' scon -pbrown,63,63,21 [the following commands print 'querty' with yellow/blue colors (correctly), and then reset attributes] esc[pp 33 44 qwerty ; esc[p [Now repeat changing, for example, only the foreground to yellow] esc[p 33 [then, background to blue and printing 'qwerty'] esc[p 45 qwerty ; esc[p [you get 'qwerty' in black/blue, not yellow/blue]. scon -p default You can see also strange effects with mutt, lynx, etc. (TERM=vt220-color). >Fix: --- src/sys/i386/isa/pcvt/pcvt_vtf.c Thu Dec 30 17:17:11 1999 +++ src/sys/i386/isa/pcvt/pcvt_vtf.c.new Sun Jan 19 10:17:14 2003 @@ -120,7 +120,8 @@ vt_sgr(struct video_state *svsp) { register int i = 0; - u_short setcolor = 0; + u_short fg_color = svsp->c_attr & (7 << 8); + u_short bg_color = svsp->c_attr & (0xF0 << 8); char colortouched = 0; do @@ -174,7 +175,7 @@ if(color) { colortouched = 1; - setcolor |= ((fgansitopc[(svsp->parms[i-1]-30) & 7]) << 8); + fg_color = ((fgansitopc[(svsp->parms[i-1]-30) & 7]) << 8); } break; @@ -189,7 +190,7 @@ if(color) { colortouched = 1; - setcolor |= ((bgansitopc[(svsp->parms[i-1]-40) & 7]) << 8); + bg_color = ((bgansitopc[(svsp->parms[i-1]-40) ] & 0xF0 ) << 8); } break; } @@ -198,7 +199,7 @@ if(color) { if(colortouched) - svsp->c_attr = setcolor; + svsp->c_attr = fg_color | bg_color; else svsp->c_attr = ((sgr_tab_color[svsp->vtsgr]) << 8); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jan 19 13:20:16 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8372737B401 for ; Sun, 19 Jan 2003 13:20:13 -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 8888443F18 for ; Sun, 19 Jan 2003 13:20:12 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h0JLKBsC000893; Sun, 19 Jan 2003 13:20:11 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h0JLKBUP000892; Sun, 19 Jan 2003 13:20:11 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Date: Sun, 19 Jan 2003 13:20:11 -0800 From: David Schultz To: jjramsey@pobox.com Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: Possible bugs in setting UDMA speed (Re: Semirandom bug in FreeBSD's ATA querying) Message-ID: <20030119212011.GA794@HAL9000.homeunix.com> Mail-Followup-To: jjramsey@pobox.com, freebsd-bugs@FreeBSD.ORG References: <20030119064755.GA362@HAL9000.homeunix.com> <20030119183105.67054.qmail@web10703.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030119183105.67054.qmail@web10703.mail.yahoo.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Thus spake James J. Ramsey : > --- David Schultz > wrote: > > > Probing ATA devices is really simple: you issue a > > command to the > > device to identify itself, and it obliges. > > >From what I've heard, it's simpler in theory than in > practice because ATA is a rather crufty, clumsy > standard. > > Now what if FreeBSD is 1) failing to detect that the > IDE cable is not fit for UDMA66, or 2) issues the > identify command before it detects that the cable > isn't fit for UDMA66? Those are concrete possibilities > that can be checked out, either by having the > maintainers check the code, or by having someone with > slightly different hardware try to duplicate that > might produce the error. No, you don't understand. The IDENTIFY DEVICE command does not use UDMA; it's a simple packet command. The device itself is responsible for detecting the cable type by determining how long it takes for a particular capacitor to charge, and it reports the result as part of the response to the IDENTIFY DEVICE command. The only caveat mentioned in the standard is that for obscure reasons, the driver needs to probe the slave before probing the master, and the FreeBSD driver does that. So to address the possibilities you mention: 1) FreeBSD looks at the correct bit to see what kind of cable is in use. This isn't rocket science, and it actually works on all of the devices I have used. (The ATA standard warns that the device's detection mechanism isn't 100% reliable; however, you have a different problem. See (2).) 2) The IDENTIFY (PACKET) DEVICE command works with both types of cable and on any device that supports packet mode. Also, I *have* tried to duplicate your problem. When I use 40-pin cables, my Quantum FB+ 20.5 still works and the driver reports ``DMA limited to UDMA33, non-ATA66 cable or device''. When I attach a CD-ROM to the same channel, it still works. > > So even > > though > > something only goes wrong as a result of a bad cable > > or drive, the > > reason that the problem affects only FreeBSD is that > > FreeBSD does > > its delay differently after issuing a command than > > Linux and > > Windows do. > > If the cable were flaky, Linux and Windows would > likely show ugly things like data corruption. The only > possibility I can think of where the cable could be at > fault would be > > 1) if the cable were nominally designed for ATA66 but > couldn't really handle it, and > > 2) if Linux and Windows were both conservative about > disk I/O speed, thus masking the cable's unfitness. As I said, the distinction between a 40-pin and 80-pin cable is not relevant from the point of view of identifying the device correctly. That's why I think the problem may have been the CD-ROM. > > Moreover, FreeBSD's approach seems to > > work for > > everyone's hardware but yours. > > Don't be so sure that the problem is quite so specific > to my hardware. [...] > > Since you're the only one who can reproduce the > > problem, What I meant is, you seem to be the only person who can reproduce this problem right now. Therefore, I think it would be most helpful to Soeren (the ATA driver maintainer) if you could do a little bit of testing. Saying ``the code is broken'' doesn't help when there is no indication as to what might be wrong, or why even similar hardware (such as mine) doesn't have any problems. > I'd rather wait until someone else has done some bug > checking or testing before doing something as drastic > as installing FreeBSD just to try to debug it. Even if > the checks or tests turned out to be a bust, that > would at least a sign that somebody else is really > trying to figure out where the problem lies instead of > just assuming it's a hardware issue. Okay, okay...I'll try the old Promise controller and a CD-ROM that only supports PIO mode to see if either of those make a difference. Fingers crossed... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jan 19 14:50: 5 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4C8D37B405 for ; Sun, 19 Jan 2003 14:50:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 802A843ED8 for ; Sun, 19 Jan 2003 14:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h0JMo3NS080126 for ; Sun, 19 Jan 2003 14:50:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h0JMo3DV080125; Sun, 19 Jan 2003 14:50:03 -0800 (PST) Date: Sun, 19 Jan 2003 14:50:03 -0800 (PST) Message-Id: <200301192250.h0JMo3DV080125@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Mark Hannon Subject: Re: bin/47140: 5.0 with rc_ng and nis hangs at startup Reply-To: Mark Hannon Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/47140; it has been noted by GNATS. From: Mark Hannon To: Mike Makonnen Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/47140: 5.0 with rc_ng and nis hangs at startup Date: Mon, 20 Jan 2003 09:43:16 +1100 This is a multi-part message in MIME format. --------------020203020609030204030803 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hello, Some more clues. Deleting /etc/nsswitch.conf and rebooting works fine. A dummy /etc/nsswitch.conf is created and the bootup continues. My /etc/nsswitch.conf is attached. /mark --------------020203020609030204030803 Content-Type: text/plain; name="nsswitch.conf" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="nsswitch.conf" group: nis files passwd: nis files --------------020203020609030204030803-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jan 19 16:22:49 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABE2537B401; Sun, 19 Jan 2003 16:22:48 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DC9C43ED8; Sun, 19 Jan 2003 16:22:48 -0800 (PST) (envelope-from mtm@FreeBSD.org) Received: from freefall.freebsd.org (mtm@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h0K0MmNS010266; Sun, 19 Jan 2003 16:22:48 -0800 (PST) (envelope-from mtm@freefall.freebsd.org) Received: (from mtm@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h0K0MmKo010262; Sun, 19 Jan 2003 16:22:48 -0800 (PST) Date: Sun, 19 Jan 2003 16:22:48 -0800 (PST) From: Mike Makonnen Message-Id: <200301200022.h0K0MmKo010262@freefall.freebsd.org> To: mtm@FreeBSD.org, freebsd-bugs@FreeBSD.org, mtm@FreeBSD.org Subject: Re: bin/47140: 5.0 with rc_ng and nis hangs at startup Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: 5.0 with rc_ng and nis hangs at startup Responsible-Changed-From-To: freebsd-bugs->mtm Responsible-Changed-By: mtm Responsible-Changed-When: Sun Jan 19 16:21:37 PST 2003 Responsible-Changed-Why: I'm working on this. Thanks for providing the extra info. http://www.freebsd.org/cgi/query-pr.cgi?pr=47140 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jan 19 17:50: 6 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D745837B401 for ; Sun, 19 Jan 2003 17:50:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D310243F13 for ; Sun, 19 Jan 2003 17:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h0K1o2NS032643 for ; Sun, 19 Jan 2003 17:50:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h0K1o2k3032642; Sun, 19 Jan 2003 17:50:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB61237B401 for ; Sun, 19 Jan 2003 17:42:39 -0800 (PST) Received: from gromit.multiplay.co.uk (dsl-212-135-219-185.dsl.easynet.co.uk [212.135.219.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97E7043F18 for ; Sun, 19 Jan 2003 17:42:38 -0800 (PST) (envelope-from killing@gromit.multiplay.co.uk) Received: from gromit.multiplay.co.uk (localhost.multiplay.co.uk [127.0.0.1]) by gromit.multiplay.co.uk (8.12.6/8.12.6) with ESMTP id h0K1f5aE016436 for ; Mon, 20 Jan 2003 01:41:05 GMT (envelope-from killing@gromit.multiplay.co.uk) Received: (from root@localhost) by gromit.multiplay.co.uk (8.12.6/8.12.6/Submit) id h0K1f4lu016401; Mon, 20 Jan 2003 01:41:04 GMT Message-Id: <200301200141.h0K1f4lu016401@gromit.multiplay.co.uk> Date: Mon, 20 Jan 2003 01:41:04 GMT From: killing@multiplay.co.uk Reply-To: killing@multiplay.co.uk To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/47235: top reports inaccurate cpu usage Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 47235 >Category: bin >Synopsis: top reports inaccurate cpu usage >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 19 17:50:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Steven Hartland & >Release: FreeBSD 5.0-RELEASE i386 >Organization: Multiplay UK >Environment: System: FreeBSD gromit.multiplay.co.uk 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Thu Jan 16 22:16:53 GMT 2003 root@hollin.btc.adaptec.com:/usr/obj/usr/src/sys/GENERIC i386 Ibm 370 thinkpad 450Mhz 128MB RAM >Description: When using top the totals at the top and the totals of the processes differ wildy e.g last pid: 13371; load averages: 1.02, 0.88, 0.51 up 0+02:22:35 01:33:35 35 processes: 2 running, 33 sleeping CPU states: 100% user, 0.0% nice, 0.0% system, 0.0% interrupt, 0.0% idle Mem: 27M Active, 58M Inact, 24M Wired, 5220K Cache, 22M Buf, 5324K Free Swap: 235M Total, 48K Used, 235M Free PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND 13370 root 132 0 10616K 10084K RUN 0:02 55.35% 5.27% cc1 13367 root 8 0 576K 444K wait 0:00 1.54% 0.15% make 456 killing 96 0 5372K 1936K select 0:04 0.00% 0.00% sshd 1962 root 96 0 2140K 1172K RUN 0:02 0.00% 0.00% top 385 root 96 0 2628K 1644K select 0:01 0.00% 0.00% sshd 10489 root 8 0 4080K 3976K wait 0:01 0.00% 0.00% make 661 killing 96 0 5372K 1960K select 0:01 0.00% 0.00% sshd 390 root 96 0 3124K 1872K select 0:00 0.00% 0.00% sendmail 618 root 20 0 1472K 964K pause 0:00 0.00% 0.00% csh 233 root 96 0 1172K 664K select 0:00 0.00% 0.00% syslogd 434 root 8 0 1236K 812K nanslp 0:00 0.00% 0.00% cron 454 root 4 0 5380K 1872K sbwait 0:00 0.00% 0.00% sshd 659 root 4 0 5380K 1920K sbwait 0:00 0.00% 0.00% sshd 457 killing 8 0 1260K 808K wait 0:00 0.00% 0.00% bash 665 root 20 0 1420K 884K pause 0:00 0.00% 0.00% csh 13371 root -8 0 1096K 904K piperd 0:00 0.00% 0.00% as 617 killing 8 0 1536K 984K wait 0:00 0.00% 0.00% su 664 killing 8 0 1536K 984K wait 0:00 0.00% 0.00% su 12803 root 8 0 876K 436K wait 0:00 0.00% 0.00% sh 327 root 96 0 1144K 604K select 0:00 0.00% 0.00% usbd 662 killing 8 0 1256K 804K wait 0:00 0.00% 0.00% bash 12802 root 8 0 588K 464K wait 0:00 0.00% 0.00% make 393 smmsp 20 0 2996K 1772K pause 0:00 0.00% 0.00% sendmail 444 root 5 0 1184K 736K ttyin 0:00 0.00% 0.00% getty 445 root 5 0 1184K 736K ttyin 0:00 0.00% 0.00% getty 447 root 5 0 1184K 736K ttyin 0:00 0.00% 0.00% getty 451 root 5 0 1184K 736K ttyin 0:00 0.00% 0.00% getty 446 root 5 0 1184K 736K ttyin 0:00 0.00% 0.00% getty 449 root 5 0 1184K 736K ttyin 0:00 0.00% 0.00% getty 448 root 5 0 1184K 736K ttyin 0:00 0.00% 0.00% getty 450 root 5 0 1184K 736K ttyin 0:00 0.00% 0.00% getty 13369 root 8 0 316K 216K wait 0:00 0.00% 0.00% cc 13368 root 8 0 864K 420K wait 0:00 0.00% 0.00% sh 12801 root 8 0 860K 416K wait 0:00 0.00% 0.00% sh 124 root 20 0 220K 76K pause 0:00 0.00% 0.00% adjkerntz Sometimes the machine is busy according to the process total yet 100% idle in the CPU states other times its 0% idle and the process totals add to nothing. >How-To-Repeat: run top while doing a kernel compile >Fix: Unknown >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jan 19 18: 0:25 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4BA6037B406 for ; Sun, 19 Jan 2003 18:00:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36D0743F5B for ; Sun, 19 Jan 2003 18:00:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h0K20JNS034860 for ; Sun, 19 Jan 2003 18:00:19 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h0K20J4Z034859; Sun, 19 Jan 2003 18:00:19 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B40E537B405 for ; Sun, 19 Jan 2003 18:00:07 -0800 (PST) Received: from kevinday.com (dsl092-133-142.chi1.dsl.speakeasy.net [66.92.133.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19D5543E4A for ; Sun, 19 Jan 2003 18:00:05 -0800 (PST) (envelope-from toasty@kevinday.com) Received: from kevinday.com (localhost [127.0.0.1]) by kevinday.com (8.12.6/8.12.6) with ESMTP id h0K1o8c9057091 for ; Sun, 19 Jan 2003 19:50:08 -0600 (CST) (envelope-from toasty@kevinday.com) Received: (from toasty@localhost) by kevinday.com (8.12.6/8.12.6/Submit) id h0K1o7Hq057090; Sun, 19 Jan 2003 19:50:07 -0600 (CST) Message-Id: <200301200150.h0K1o7Hq057090@kevinday.com> Date: Sun, 19 Jan 2003 19:50:07 -0600 (CST) From: Kevin Day Reply-To: Kevin Day To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: i386/47236: Console missing during bootup on Sony Picturebook in 5.0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 47236 >Category: i386 >Synopsis: Console missing during bootup on Sony Picturebook in 5.0 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 19 18:00:18 PST 2003 >Closed-Date: >Last-Modified: >Originator: Kevin Day >Release: FreeBSD 5.0-RELEASE i386 >Organization: Your.org, Inc. >Environment: System: FreeBSD pb.kevinday.com 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Sun Jan 19 09:51:33 CST 2003 root@pb.kevinday.com:/usr/src/sys/i386/compile/PB i386 Sony PCG-C1MZX subnotebook Dmesg: 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-RELEASE #0: Sun Jan 19 09:51:33 CST 2003 root@pb.kevinday.com:/usr/src/sys/i386/compile/PB Preloaded elf kernel "/boot/kernel/kernel" at 0xc053f000. Timecounter "i8254" frequency 1193182 Hz CPU: Transmeta(tm) Crusoe(tm) Processor TM5800 (926.34-MHz 586-class CPU) Origin = "GenuineTMx86" Id = 0x543 real memory = 243269632 (232 MB) avail memory = 230670336 (219 MB) Initializing GEOMetry subsystem acpi0: Other PM system enabled. npx0: on motherboard npx0: INT 16 interface Using $PIR table, 13 entries at 0xc00fdef0 apm0: on motherboard apm0: found APM BIOS v1.2, connected at v1.2 pcib0: at pcibus 0 on motherboard pci0: on pcib0 pci0: at device 0.1 (no driver attached) pci0: at device 0.2 (no driver attached) pcm0: port 0x1800-0x18ff mem 0xe8100000-0xe8100fff irq 9 at device 6.0 on pci0 isab0: at device 7.0 on pci0 isa0: on isab0 pci0: at device 8.0 (no driver attached) fwohci0: mem 0xe8104000-0xe8107fff,0xe8102000-0xe81027ff irq 9 at device 9.0 on pci0 fwohci0: PCI bus latency was changing to 250. fwohci0: OHCI version 1.10 (ROM=1) fwohci0: No. of Isochronous channel is 4. fwohci0: EUI64 08:00:46:03:00:de:4a:50 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: 0a:00:46:de:4a:50 sbp0: on firewire0 pci0: at device 10.0 (no driver attached) rl0: port 0x2400-0x24ff mem 0xe8102800-0xe81028ff irq 9 at device 11.0 on pci0 rl0: Realtek 8139B detected. Warning, this may be unstable in autoselect mode rl0: Ethernet address: 08:00:46:47:6f:9d miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pci0: at device 12.0 (no driver attached) ohci0: mem 0xe8103000-0xe8103fff irq 9 at device 15.0 on pci0 usb0: OHCI version 1.0, legacy support usb0: on ohci0 usb0: USB revision 1.0 uhub0: AcerLabs OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhub0: device problem, disabling port 1 atapci0: port 0x1400-0x140f,0x374-0x377,0x170-0x17f,0x3f4-0x3f7,0x1f0-0x1ff at device 16.0 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at device 17.0 (no driver attached) cbb0: at device 18.0 on pci0 cardbus0: on cbb0 pccard0: <16-bit PCCard bus> on cbb0 pci_cfgintr: 0:18 INTA routed to irq 9 ohci1: mem 0xe0000-0xe0fff irq 9 at device 20.0 on pci0 usb1: OHCI version 1.0, legacy support usb1: SMM does not respond, resetting usb1: on ohci1 usb1: USB revision 1.0 uhub1: AcerLabs OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered umass0: PHILIPS USB Storage Device, rev 2.00/11.06, addr 2 eisa0: on motherboard eisa0: unknown card @@@0000 (0x00000000) at slot 1 orm0: