From owner-freebsd-i386@FreeBSD.ORG Sun Dec 28 03:02:56 2003 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5337D16A4CE; Sun, 28 Dec 2003 03:02: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 2014F43D48; Sun, 28 Dec 2003 03:02:54 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id WAA28355; Sun, 28 Dec 2003 22:02:47 +1100 Date: Sun, 28 Dec 2003 22:02:46 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Thomas Moyer In-Reply-To: <200312270529.hBR5TSdQ052829@www.freebsd.org> Message-ID: <20031228214732.S665@gamplex.bde.org> References: <200312270529.hBR5TSdQ052829@www.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-gnats-submit@freebsd.org cc: freebsd-i386@freebsd.org Subject: Re: i386/60603: dd causes error when copying cd from ATA drives X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Dec 2003 11:02:56 -0000 On Fri, 26 Dec 2003, Thomas Moyer wrote: > >Description: > When running the command dd bs=2048 if=/dev/acd0 of=cd.image the following error occurs > acd0:FAILURE - READ_BIG status=51 sensekey=ILLEGAL REQUEST error=4 > dd: /dev/acd0: Input/output error > 250167+0 records in > 250167+0 records out > 512342016 bytes transferred in 841.234361 secs (609036 bytes/sec) > >How-To-Repeat: > Using GENERIC dd bs=2048 if=/dev/acd0 of=cd.image I believe this is caused by a bad table of contents on the media. The TOC sometimes says that there are more blocks than there actually are, and dd handles this perfectly by getting an i/o error attempting to read a nonexistent block. I see this problem deterministically for cd's written by burncd, perhaps because I always create multi-session cd's. Factory-burned cd's mostly don't have it. burncd seems to do the right things, but somehow the TOC always says that the track has more sectors that burncd wrote. Usually only 1 more. but for small writes the minimum track length seems to be 300. This is with "acd0: CDRW at ata1-master UDMA33" I tried to use cdrecord on "cd0: Removable CD-ROM SCSI-0 device" for comparison, but atapicam doesn't seem to support cdrecord. Bruce From owner-freebsd-i386@FreeBSD.ORG Sun Dec 28 03:10:23 2003 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B409916A4CE for ; Sun, 28 Dec 2003 03:10:23 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9C9643D39 for ; Sun, 28 Dec 2003 03:10:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) hBSBAMFR058810 for ; Sun, 28 Dec 2003 03:10:22 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id hBSBAMal058809; Sun, 28 Dec 2003 03:10:22 -0800 (PST) (envelope-from gnats) Date: Sun, 28 Dec 2003 03:10:22 -0800 (PST) Message-Id: <200312281110.hBSBAMal058809@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Bruce Evans Subject: Re: i386/60603: dd causes error when copying cd from ATA drives X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Bruce Evans List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Dec 2003 11:10:23 -0000 The following reply was made to PR i386/60603; it has been noted by GNATS. From: Bruce Evans To: Thomas Moyer Cc: freebsd-gnats-submit@freebsd.org, freebsd-i386@freebsd.org Subject: Re: i386/60603: dd causes error when copying cd from ATA drives Date: Sun, 28 Dec 2003 22:02:46 +1100 (EST) On Fri, 26 Dec 2003, Thomas Moyer wrote: > >Description: > When running the command dd bs=2048 if=/dev/acd0 of=cd.image the following error occurs > acd0:FAILURE - READ_BIG status=51 sensekey=ILLEGAL REQUEST error=4 > dd: /dev/acd0: Input/output error > 250167+0 records in > 250167+0 records out > 512342016 bytes transferred in 841.234361 secs (609036 bytes/sec) > >How-To-Repeat: > Using GENERIC dd bs=2048 if=/dev/acd0 of=cd.image I believe this is caused by a bad table of contents on the media. The TOC sometimes says that there are more blocks than there actually are, and dd handles this perfectly by getting an i/o error attempting to read a nonexistent block. I see this problem deterministically for cd's written by burncd, perhaps because I always create multi-session cd's. Factory-burned cd's mostly don't have it. burncd seems to do the right things, but somehow the TOC always says that the track has more sectors that burncd wrote. Usually only 1 more. but for small writes the minimum track length seems to be 300. This is with "acd0: CDRW at ata1-master UDMA33" I tried to use cdrecord on "cd0: Removable CD-ROM SCSI-0 device" for comparison, but atapicam doesn't seem to support cdrecord. Bruce From owner-freebsd-i386@FreeBSD.ORG Sun Dec 28 10:10:14 2003 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C9CC16A4CE for ; Sun, 28 Dec 2003 10:10:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FE8D43D41 for ; Sun, 28 Dec 2003 10:10:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) hBSIABFR058085 for ; Sun, 28 Dec 2003 10:10:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id hBSIAB5E058084; Sun, 28 Dec 2003 10:10:11 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 28 Dec 2003 10:10:11 -0800 (PST) Resent-Message-Id: <200312281810.hBSIAB5E058084@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, fbsd_user@a1poweruser.com Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5B3A16A4CE for ; Sun, 28 Dec 2003 10:03:45 -0800 (PST) Received: from smtp.a1poweruser.com (oh-chardon-cmts6a-103.clvdoh.adelphia.net [67.20.101.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C6B443D41 for ; Sun, 28 Dec 2003 10:03:43 -0800 (PST) (envelope-from root@a1poweruser.com) Received: by smtp.a1poweruser.com (Postfix, from userid 0) id 91B4510D; Sun, 28 Dec 2003 13:04:16 -0500 (EST) Message-Id: <20031228180416.91B4510D@smtp.a1poweruser.com> Date: Sun, 28 Dec 2003 13:04:16 -0500 (EST) From: fbsd_user@a1poweruser.com To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: i386/60662: 5.2 Anonymous FTP server out dated. X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: fbsd_user@a1poweruser.com List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Dec 2003 18:10:14 -0000 >Number: 60662 >Category: i386 >Synopsis: 5.2 Anonymous FTP server out dated. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Dec 28 10:10:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: fbsd_user@a1poweruser.com >Release: FreeBSD 5.2 RC2 RELEASE i386 >Organization: none >Environment: System: FreeBSD 5.2 RC2 RELEASE i386 >Description: The 5.2 RC2 /stand/sysinstall post install config/networking/anonymous FTP server builder is out of date. The bin and pub directores are nolonger necessary since 4.4. upload/ download directory should be built just like any other user home directory. /etc/ftpchroot file should be auto built with anonymous listed as one of the user ID's to chroot. The -r and -S flag should be added to FTP statment in /etc/inetd.conf file. Turn on Quotas for all /usr/home and preset to some reasonable small size so the anonymous directory can not cause the system problems by warez script kikkies using it as public dumping grounds. >How-To-Repeat: try it your self >Fix: rework sysinstall anonymous install option >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Sun Dec 28 15:10:17 2003 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CD4016A4CE for ; Sun, 28 Dec 2003 15:10:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D030943D1D for ; Sun, 28 Dec 2003 15:10:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) hBSNAEFR081843 for ; Sun, 28 Dec 2003 15:10:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id hBSNAEIZ081842; Sun, 28 Dec 2003 15:10:14 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 28 Dec 2003 15:10:14 -0800 (PST) Resent-Message-Id: <200312282310.hBSNAEIZ081842@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kevin Ross Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E070216A4CE for ; Sun, 28 Dec 2003 15:01:47 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AD5343D49 for ; Sun, 28 Dec 2003 15:01:38 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id hBSN1cdL025352 for ; Sun, 28 Dec 2003 15:01:38 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id hBSN1c27025351; Sun, 28 Dec 2003 15:01:38 -0800 (PST) (envelope-from nobody) Message-Id: <200312282301.hBSN1c27025351@www.freebsd.org> Date: Sun, 28 Dec 2003 15:01:38 -0800 (PST) From: Kevin Ross To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: i386/60671: FreeBSD 5.2RC2 installation process doesn't make it to /stand/sysinstall X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Dec 2003 23:10:17 -0000 >Number: 60671 >Category: i386 >Synopsis: FreeBSD 5.2RC2 installation process doesn't make it to /stand/sysinstall >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 28 15:10:14 PST 2003 >Closed-Date: >Last-Modified: >Originator: Kevin Ross >Release: FreeBSD 5.2RC2 >Organization: >Environment: Toshiba Satellite Laptop model#S255-2435 Intel Pentium 4, 2.4 Ghz Microprocessor 512MB RAM 40 GB HD Multiply partitioned hard drive: Primary partition 1: 10000MB NetBSD partition (NetBSD installed) Primary partition 2: 1024MB Linux Swap Primary partition 3: 16000MB Linux partition (Gentoo installed) Primary partition 4: (intended destination for FreeBSD 5.2) Grub used as bootloader >Description: Transcribed boot messages (shorthand utilized): .. GEOM: Configure ad0s1, start ... .. GEOM: Configure ad0s4, start ... (probe 0: sbp 0:0:0:0): error 22 (probe 0: sbp 0:0:0:0): unretryable error .. (probe 6: sbp 0:0:6:0): error 22 (probe 6: sbp 0:0:6:0): unretryable error mounting root from ufs: /dev/md0 start_init: trying /sbin/init .. start_init: trying /stand/sysinstall (everything stops here with no further messages) IMPACT: FreeBSD5.2RC2 essentially uninstallable using the CD under the aforementioned environment. This problem exists for FreeBSD 5.1 Release CD as well (boot messages may vary). >How-To-Repeat: Obtain and verify good a FreeBSD 5.2RC2 CD. Replicate environment (unsure if partitioning scheme is relevant). Attempt to install FreeBSD 5.2RC2. >Fix: unknown >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Mon Dec 29 00:20:20 2003 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EB6416A4CE for ; Mon, 29 Dec 2003 00:20:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59F2043D39 for ; Mon, 29 Dec 2003 00:20:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) hBT8KGFR029888 for ; Mon, 29 Dec 2003 00:20:16 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id hBT8KGWK029887; Mon, 29 Dec 2003 00:20:16 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 29 Dec 2003 00:20:16 -0800 (PST) Resent-Message-Id: <200312290820.hBT8KGWK029887@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pavel Hubner Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6376B16A4CE for ; Mon, 29 Dec 2003 00:15:08 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2215543D1F for ; Mon, 29 Dec 2003 00:15:06 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id hBT8F5dL009784 for ; Mon, 29 Dec 2003 00:15:05 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id hBT8F5eL009783; Mon, 29 Dec 2003 00:15:05 -0800 (PST) (envelope-from nobody) Message-Id: <200312290815.hBT8F5eL009783@www.freebsd.org> Date: Mon, 29 Dec 2003 00:15:05 -0800 (PST) From: Pavel Hubner To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: i386/60681: wicontrol -L critical crash (sigbus) X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Dec 2003 08:20:20 -0000 >Number: 60681 >Category: i386 >Synopsis: wicontrol -L critical crash (sigbus) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 29 00:20:15 PST 2003 >Closed-Date: >Last-Modified: >Originator: Pavel Hubner >Release: 5.1-RELEASE >Organization: >Environment: FreeBSD router.mikroservis.cz 5.1-RELEASE FreeBSD 5.1-RELEASE #3: Sun Dec 28 21:05:42 CET 2003 root@router.mikroservis.cz:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: Wifi card: Zcomax XI-626, firmware 1.7.4 Card configuration: wi0: flags=8843 mtu 1500 inet 10.0.0.1 netmask 0xffffff00 broadcast 10.0.0.255 inet6 fe80::260:b3ff:fe6a:dc8d%wi0 prefixlen 64 scopeid 0x1 ether 00:60:b3:6a:dc:8d media: IEEE 802.11 Wireless Ethernet DS/11Mbps (DS/2Mbps ) status: associated ssid zasada 1:zasada stationname "FreeBSD WaveLAN/IEEE node" channel 13 authmode OPEN powersavemode OFF powersavesleep 100 wepmode OFF weptxkey 1 -bash-2.05b# gdb wicontrol 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"... (gdb) run wi0 -L Starting program: /usr/src/usr.sbin/wicontrol/wicontrol wi0 -L NIC serial number: [ 99SA01000000 ] Station name: [ FreeBSD WaveLAN/IEEE node ] SSID for IBSS creation: [ zasada ] Current netname (SSID): [ zasada ] Desired netname (SSID): [ zasada ] Current BSSID: [ 00:60:b3:6a:dc:8d ] Channel list: [ 1fff ] IBSS channel: [ 13 ] Current channel: [ 13 ] Comms quality/signal/noise: [ 0 81 27 ] dBm Coms Quality: [ 0 -73 -73 ] Promiscuous mode: [ Off ] Process 802.11b Frame: [ Off ] Intersil-Prism2 based card: [ 1 ] Port type (1=BSS, 3=ad-hoc): [ 6 ] MAC address: [ 00:60:b3:6a:dc:8d ] TX rate (selection): [ 11 ] TX rate (actual speed): [ 2 ] RTS/CTS handshake threshold: [ 2347 ] Create IBSS: [ Off ] Access point density: [ 1 ] Power Mgmt (1=on, 0=off): [ 0 ] Max sleep time: [ 100 ] PRI Identity: [ 21 1 1 1 ] STA Identity: [ 31 4 1 7 ] Card ID register: [ 8013 0 1 0 ] Regulatory Domains: [ eu/au ] Temperature Range: [ 1 ] WEP encryption: [ Off ] TX encryption key: [ 1 ] Encryption keys: [ ][ ][ ][ ] Available APs: 671481857 stations: SSID BSSID Chan SN S N Intrvl Capinfo ĐA( 01:00:00:00:7c:f3 671514624 [ 671514880 671514880 671428121 ] 1 [ WEP ] d0:41:06:28:0d:02 0 [ 671600245 -1077939228 671427486 ] 671498704 [ ] 14:f4:bf:bf:34:fd 671505000 [ 1 1 -1077939196 ] 134523932 [ WEP ] ?]($(ŔöżżxôżżÂ(T&( 01:00:00:00:85:ab 0 [ 2 672343636 -1077938496 ] 672343192 [ ESS WEP ] (÷żż¤($( 3f:5d:11:28:98:24 -1077938448 [ 672343636 10 672174018 ] 0 [ ] 01:00:00:00:ff:ff 2433 [ 2 0 -1077938316 ] 134523781 [ ESS ] 1c:ac:04:08:3a:4a 0 [ 0 -1 0 ] 2578 [ ] ř(( 6c:b0:07:28:9c:07 671498704 [ -1077938780 671522848 0 ] 671498704 [ ESS ] 9c:dd:04:28:a5:90 671499456 [ -1077938708 1 1 ] -1077938748 [ ] 46:23:05:28:22:db 112103621 [ 2155 671494152 671498704 ] 671428378 [ WEP ] 00:81:06:28:d0:41 671844188 [ 671415604 672346644 -1077938556 ] 2 [ ESS ] ( 1c:ac:04:08:01:00 -1077938557 [ 7 1 134523986 ] 672343192 [ ESS ] ÷żż($( 00:81:06:28:a0:f6 0 [ 36 0 672343636 ] 672270360 [ ] 48:f7:bf:bf:b3:8e 672343192 [ 672343636 0 -1077938328 ] -1077937224 [ WEP ] # 10:af:04:08:83:07 95 [ 1510 1980 1844 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] ěűżżĽýżżüżż@÷(( 00:80:06:28:68:00 671420992 [ 3 134523636 -1077937132 ] -1077936928 [ ] 14:fc:bf:bf:0c:fc 134514917 [ -1077937116 3 -1077937132 ] -1077936872 [ ESS ] ţżż8ţżżCţżżKţżżXţżż 67:fd:bf:bf:71:fd -1077936772 [ -1077936650 -1077936751 -1077936731 ] 32 [ ] 06:00:00:00:00:10 8 [ 134514784 0 9 ] 0 [ ] /usr.sbin/wicontrol/wicontrol 00:00:00:00:00:00 0 [ 1920169263 0 0 ] 1380275200 [ WEP ] H_CLIENT=213.180.46.150 1212 22 53:48:45:4c:4c:3d 1815048819 [ 1935761967 1818321775 1852400175 ] 1029264468 [ ESS WEP ] PASSIVE_MODE=YES 70:30:00:55:53:45 1953460082 [ 6648431 1195462656 1832735301 ] 1413566464 [ WEP ] /local/sbin:/usr/local/bin:/usr/X11R6/bin 2f:75:73:72:2f:73 1647262318 [ 980314466 792358505 796029813 ] 1768042294 [ WEP ] PWD=/usr/src/usr.sbin/wicontrol 2f:6c:6f:63:61:6c 1647275625 [ 1514754891 6845281 1129270338 ] 1869754173 [ ] ON=213.180.46.150 1212 213.180.46.153 22 3d:31:00:4c:4f:47 1916618061 [ 1313754947 7630703 1598575443 ] 842145843 [ WEP ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] 00:00:00:00:00:00 0 [ 0 0 0 ] 0 [ ] D$ P÷@T 00:00:00:00:00:00 0 [ 0 0 0 ] 1413543760 [ ESS ] Program received signal SIGBUS, Bus error. wi_printaplist (iface=0xbfbfffc0 "u\003\216h\024¸X\001") at wicontrol.c:626 626 printf("%-20.*s %02x:%02x:%02x:%02x:%02x:%02x %-2d " (gdb) >How-To-Repeat: wicontrol wi0 -L >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Mon Dec 29 06:10:20 2003 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C48C16A4CE for ; Mon, 29 Dec 2003 06:10:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B456243D45 for ; Mon, 29 Dec 2003 06:10:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) hBTEAGFR083307 for ; Mon, 29 Dec 2003 06:10:16 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id hBTEAGLc083306; Mon, 29 Dec 2003 06:10:16 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 29 Dec 2003 06:10:16 -0800 (PST) Resent-Message-Id: <200312291410.hBTEAGLc083306@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Seva Gluschenko Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D548416A4CE for ; Mon, 29 Dec 2003 06:05:02 -0800 (PST) Received: from road.yandex.ru (road.yandex.ru [213.180.193.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id C79D143D41 for ; Mon, 29 Dec 2003 06:05:00 -0800 (PST) (envelope-from gvs@road.yandex.ru) Received: from road.yandex.ru (localhost [127.0.0.1]) by road.yandex.ru (8.12.10/8.12.10) with ESMTP id hBTE7EaT000899 for ; Mon, 29 Dec 2003 17:07:14 +0300 (MSK) (envelope-from gvs@road.yandex.ru) Received: (from gvs@localhost) by road.yandex.ru (8.12.10/8.12.10/Submit) id hBTE7E0r000898; Mon, 29 Dec 2003 17:07:14 +0300 (MSK) (envelope-from gvs) Message-Id: <200312291407.hBTE7E0r000898@road.yandex.ru> Date: Mon, 29 Dec 2003 17:07:14 +0300 (MSK) From: Seva Gluschenko To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: i386/60690: atapicd driver causes spontaneous unconditional reboots after media change X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Dec 2003 14:10:20 -0000 >Number: 60690 >Category: i386 >Synopsis: atapicd driver causes spontaneous unconditional reboots after media change >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 29 06:10:16 PST 2003 >Closed-Date: >Last-Modified: >Originator: Seva Gluschenko >Release: FreeBSD 5.2-CURRENT i386 >Organization: Yandex LLC >Environment: System: FreeBSD road.yandex.ru 5.2-CURRENT FreeBSD 5.2-CURRENT #2: Mon Dec 22 19:53:00 MSK 2003 root@:/local/obj/local/usr/src/sys/ROAD i386 >Description: It looks like incorrect memory handling somewhere in atapicd driver because it causes spontaneous reboots after media change when trying to access media. The typical crash happens when new audio CD is inserted and "play" command issued (e.g. with cdcontrol), once it happened after inserting DVD and mplayer -dvd-device /dev/acd0 ... The last time it happened with AudioCD playback started, so last few seconds before reboot I listened to the music ;>. The /var/run/dmesg.boot shows page fault in kernel mode: acd0: FAILURE - READ_CD status=51 sensekey=ILLEGAL REQUEST error=0 acd0: FAILURE - READ_CD status=51 sensekey=ILLEGAL REQUEST error=0 acd0: FAILURE - READ_CD status=51 sensekey=ILLEGAL REQUEST error=0 Fatal trap 12: page fault while in kernel mode fault virtual address = 0x1c fault code = supervisor read, page not present instruction pointer = 0x8:0xc04fc2ec stack pointer = 0x10:0xd6d49c88 frame pointer = 0x10:0xd6d49c9c code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 2 (g_event) trap number = 12 panic: page fault syncing disks, buffers remaining... 3811 3811 3811 3811 3811 3811 3811 3811 3811 3811 3811 3811 3811 3811 3811 3811 3811 3811 3811 3811 giving up on 303 buffers Uptime: 6d23h43m31s Hardware is: CPU: Intel(R) Pentium(R) 4 CPU 1.80GHz (1795.51-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf27 Stepping = 7 real memory = 527630336 (503 MB) avail memory = 510771200 (487 MB) Pentium Pro MTRR support enabled VESA: v3.0, 8000k memory, flags:0x1, mode table:0xc06a6520 (1000040) VESA: Intel(r)865G Graphics Chip Accelerated VGA BIOS atapci0: port 0xfc00-0xfc0f,0-0x3,0-0x7,0-0x3,0-0x7 at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata0: [MPSAFE] ata1: at 0x170 irq 15 on atapci0 ata1: [MPSAFE] ad0: 38166MB [77545/16/63] at ata0-master UDMA100 acd0: DVDROM at ata1-master UDMA33 (portions from /var/run/dmesg.boot, again). This is ASUS P4-P800 m/b. >How-To-Repeat: Get the same (I think it's important) h/w and run cdcontrol several times, changing media in DVD-ROM. You're likely to catch the trap after 4 or 5 tries. Kscd from KDE caused it at the 2nd disk, though. >Fix: Sorry, no fix available. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Mon Dec 29 11:06:07 2003 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84A4C16A4CE for ; Mon, 29 Dec 2003 11:06:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE77543D39 for ; Mon, 29 Dec 2003 11:02:26 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.10/8.12.10) with ESMTP id hBTJ2QFR041095 for ; Mon, 29 Dec 2003 11:02:26 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id hBTJ2PHL041088 for freebsd-i386@freebsd.org; Mon, 29 Dec 2003 11:02:25 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 29 Dec 2003 11:02:25 -0800 (PST) Message-Id: <200312291902.hBTJ2PHL041088@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: freebsd-i386@FreeBSD.org Subject: Current problem reports assigned to you X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Dec 2003 19:06:07 -0000 Current FreeBSD problem reports Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/05/25] i386/52668 i386 AIC7902 problem when large data transferr o [2003/06/11] i386/53203 i386 "BTX halted" when attempting install of 5 o [2003/06/22] i386/53620 i386 Kernel panics / reboots during install of o [2003/09/16] i386/56933 i386 kernel panic vm_page_remove o [2003/09/16] i386/56937 i386 system panic during high network load o [2003/09/20] i386/57043 i386 ar driver with 2 port PCI card locks up w o [2003/09/22] i386/57097 i386 Promise Ultra 100 TX2 causes lockup on SM o [2003/09/30] i386/57398 i386 Current fails to install on mly(4) based p [2003/10/01] i386/57480 i386 Removing very large files using rm doesn' o [2003/10/05] i386/57632 i386 Dell PowerEdge 4300 is allergic to FreeBS o [2003/10/12] i386/57881 i386 ripping audio CDs causes kernel panic o [2003/10/24] i386/58493 i386 machine page faults for no apparent reaso o [2003/11/13] i386/59253 i386 ata device reset hangs if device is dead o [2003/11/25] i386/59683 i386 panic signal 12 4.9-STABLE - frequent cra o [2003/12/01] i386/59895 i386 system hangs from disk IO errors o [2003/12/02] i386/59897 i386 problems with swap-pager with great datat o [2003/12/02] i386/59898 i386 pxe boot: BTX halted o [2003/12/15] i386/60249 i386 Undefined reference to arp_ifinit while l o [2003/12/17] i386/60344 i386 Intel ICH5 SATA RAID boot problems on bot 19 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/05/18] i386/52392 i386 Password lengths over 8 chracters are ign o [2003/05/21] i386/52556 i386 Syskonnect SK9843SX, sk driver, MII not d o [2003/05/22] i386/52581 i386 Boot loaders reading more than one sector o [2003/05/23] i386/52610 i386 MSI "655 max" (MS-6730, SiS 655/963) MB A o [2003/05/24] i386/52638 i386 SCSI U320 on SMP server won't run faster o [2003/05/31] i386/52822 i386 5.1-BETA2 problems with named/syslogd/if_ o [2003/06/05] i386/52975 i386 CPUTYPE=k7 results in non-functional /boo o [2003/06/10] i386/53137 i386 background fscking causing ffs_valloc pan o [2003/06/16] i386/53382 i386 Repetable panics in ffs_vget() on Prolian o [2003/06/30] i386/53948 i386 console="comconsole" in loader.conf cause o [2003/07/02] i386/54033 i386 Disk lockup. o [2003/07/15] i386/54501 i386 Promise Ultra133 TX2 does not work proper o [2003/07/22] i386/54756 i386 ACPI suspend/resume problem on CF-W2 lapt o [2003/07/23] i386/54781 i386 ACPI prevents psm to detect on Compaq Evo o [2003/08/05] i386/55290 i386 please MFC the PR:22971 (LinuxEmu; Implem o [2003/08/13] i386/55555 i386 system freezes with access to /dev/ums0 o [2003/08/13] i386/55561 i386 SMbus and I2C don't attach when loaded as o [2003/08/15] i386/55614 i386 machine freezes - goes on after key press o [2003/08/15] i386/55615 i386 machine freezes - goes on after key press o [2003/08/23] i386/55908 i386 perl process stuck in pipewr (no pipe bei o [2003/08/24] i386/55930 i386 partly configured serial port freezes sys o [2003/10/06] i386/57673 i386 Odd/dangerous disklabel behaviour on 5.0 o [2003/10/23] i386/58458 i386 ATAPI-CDROM DMA Support on ALi Aladdin V o [2003/10/26] i386/58580 i386 After sysinstall, F2 fails; wrong device o [2003/10/30] i386/58718 i386 need to remove battery before booting lap o [2003/10/30] i386/58749 i386 lock order reversal with heavy IO on ar0 o [2003/11/01] i386/58826 i386 reboot on an IBM PC Server 315 merely hal o [2003/11/03] i386/58870 i386 page fault in kernel mode with ifconfig a o [2003/11/11] i386/59192 i386 ATA drive not spotted with SCSI drive o [2003/11/14] i386/59298 i386 Can't render anything with Blender / RADE o [2003/11/20] i386/59503 i386 kernel routines and drivers don't recogni o [2003/11/26] i386/59701 i386 System hungup, after resume from suspend. o [2003/12/04] i386/59945 i386 nullfs bug: reboot after panic: null_chec o [2003/12/11] i386/60154 i386 ipfw core (crash) o [2003/12/16] i386/60317 i386 FreeBSD 5.2rc1 doesn't boot with ACPI ena o [2003/12/26] i386/60603 i386 dd causes error when copying cd from ATA o [2003/12/27] i386/60641 i386 Sporadic SCSI bus resets with 53C810 unde o [2003/12/28] i386/60671 i386 FreeBSD 5.2RC2 installation process doesn o [2003/12/29] i386/60681 i386 wicontrol -L critical crash (sigbus) o [2003/12/29] i386/60690 i386 atapicd driver causes spontaneous uncondi 40 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/05/14] i386/52249 i386 [PATCH] Bootmanager shows NTFS partitions o [2003/05/18] i386/52401 i386 5.1-BETA syslogd not recording entries fr o [2003/05/18] i386/52408 i386 quitting gnome2-2.2.1_1 results in LOR o [2003/05/18] i386/52416 i386 Requesting ethernet driver for Broadcom 4 o [2003/05/19] i386/52427 i386 DVD replay under MSI "655 MAX" mobo inter o [2003/06/05] i386/52971 i386 bad macro LIST_HEAD in /usr/include/sys/q o [2003/06/11] i386/53200 i386 5.1-RC1 SMP kernel boot gags at "APIC_IO: o [2003/06/14] i386/53324 i386 pam_group problems (PAM_RUSER used instea o [2003/06/30] i386/53930 i386 showmount doesnot show nfs exportlist on o [2003/07/13] i386/54451 i386 [patch] i386_{get|set}_ldt manual page is o [2003/07/17] i386/54595 i386 emu10k1 sound driver locks system o [2003/07/27] i386/54963 i386 Left over/outdated comment in NOTES o [2003/08/11] i386/55473 i386 Mouse broken on some AWARD BIOS with ACPI o [2003/08/13] i386/55523 i386 AGP support for i82845G o [2003/08/26] i386/56012 i386 [patch] MAKEDEV does not allow creation o o [2003/09/23] i386/57125 i386 Comment to IPSEC_FILTERGIF in LINT is now o [2003/09/23] i386/57131 i386 Device ID for Intel 82801DBM IDE Controll o [2003/09/23] i386/57133 i386 PCI device ID for Intel 82801DB/BAM/CAM a o [2003/10/08] i386/57783 i386 UINT32_MAX is missing from FreeBSD 4.X o [2003/10/17] i386/58163 i386 puc driver doesn't recognize MOXA C104H/P o [2003/10/31] i386/58784 i386 ATA DMA fails and vx0 creates panic o [2003/11/10] i386/59147 i386 USB active extension cable not recognized o [2003/11/22] i386/59600 i386 [PATCH] Improved us.emacs.kbd mapping o [2003/11/29] i386/59806 i386 [patch] Suspend/resume breaks em0 o [2003/11/30] i386/59854 i386 System panics when AGP device is loaded o [2003/12/16] i386/60319 i386 read error 34/0 during installation, SYST o [2003/12/22] i386/60500 i386 system hangs on defect pccard o [2003/12/27] i386/60633 i386 It would seem that if you're running a sy o [2003/12/27] i386/60637 i386 /etc/resolv.conf not created after fresh o [2003/12/27] i386/60643 i386 5.2 RC2 disk1 ISO will not boot on an Asu o [2003/12/28] i386/60662 i386 5.2 Anonymous FTP server out dated. 31 problems total. From owner-freebsd-i386@FreeBSD.ORG Mon Dec 29 11:50:19 2003 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33C7F16A4CE for ; Mon, 29 Dec 2003 11:50:19 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA30B43D39 for ; Mon, 29 Dec 2003 11:50:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) hBTJoGFR049333 for ; Mon, 29 Dec 2003 11:50:16 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id hBTJoGn3049332; Mon, 29 Dec 2003 11:50:16 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 29 Dec 2003 11:50:16 -0800 (PST) Resent-Message-Id: <200312291950.hBTJoGn3049332@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Will Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C5D216A4CE for ; Mon, 29 Dec 2003 11:42:47 -0800 (PST) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id C073043D48 for ; Mon, 29 Dec 2003 11:42:45 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.10/8.12.10) with ESMTP id hBTJgjdL040715 for ; Mon, 29 Dec 2003 11:42:45 -0800 (PST) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.10/8.12.10/Submit) id hBTJgjaE040713; Mon, 29 Dec 2003 11:42:45 -0800 (PST) (envelope-from nobody) Message-Id: <200312291942.hBTJgjaE040713@www.freebsd.org> Date: Mon, 29 Dec 2003 11:42:45 -0800 (PST) From: Will To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.0 Subject: i386/60702: can't boot 5.2-RC2 iso's to install X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Dec 2003 19:50:19 -0000 >Number: 60702 >Category: i386 >Synopsis: can't boot 5.2-RC2 iso's to install >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 29 11:50:16 PST 2003 >Closed-Date: >Last-Modified: >Originator: Will >Release: 5.2-RC2 >Organization: just a user >Environment: none - install problem >Description: Have tried to install 5.2-RC2 on 4 boxes. Have tried both the mini-install & the "boot only" iso's. The boot-only disk will crash almost immediately with an error in apic.ko right after BTX loader finishes. The mini-install crashes after selecting to boot anything from the initial startup menu. The box will almost make it through booting the kernel, but crashes hard with a bunch of errors...well the same error that repeats many times. These errors scroll off the screen so fast I can only make out that it is a segmentation fault that caused the problem. I have tried to boot both of these disks on both p3 & p4 based boxes using Asus motherboards. What is really odd is that 5.2-RC1 boots fine on 2 of these boxes (didn't try RC1 on any others) >How-To-Repeat: try to boot from either mini-install or boot-only iso's (after burning them to CD, of course.) >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Mon Dec 29 15:51:07 2003 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17C1416A4CE for ; Mon, 29 Dec 2003 15:51:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 774E243D5E for ; Mon, 29 Dec 2003 15:50:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) hBTNo7FR070517 for ; Mon, 29 Dec 2003 15:50:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id hBTNo7n5070516; Mon, 29 Dec 2003 15:50:07 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 29 Dec 2003 15:50:07 -0800 (PST) Resent-Message-Id: <200312292350.hBTNo7n5070516@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, cesarcrusius@earthlink.net Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30F1216A4CE for ; Mon, 29 Dec 2003 15:48:01 -0800 (PST) Received: from turkey.mail.pas.earthlink.net (turkey.mail.pas.earthlink.net [207.217.120.126]) by mx1.FreeBSD.org (Postfix) with ESMTP id E02A643D2D for ; Mon, 29 Dec 2003 15:47:59 -0800 (PST) (envelope-from cesarcrusius@earthlink.net) Received: from user-38ldt0m.dialup.mindspring.com ([209.86.244.22]) by turkey.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 1Ab76v-0005sh-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 29 Dec 2003 15:47:52 -0800 Message-Id: <200312291546.55215.cesarcrusius@earthlink.net> Date: Mon, 29 Dec 2003 15:46:55 -0800 From: "Cesar A. R. Crusius" To: FreeBSD-gnats-submit@FreeBSD.org Subject: i386/60706: kimdaba standard install is excruciatingly slow X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: cesarcrusius@earthlink.net List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Dec 2003 23:51:07 -0000 >Number: 60706 >Category: i386 >Synopsis: kimdaba standard install is excruciatingly slow >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 29 15:50:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Cesar Crusius >Release: FreeBSD 5.0-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD ventoux 5.0-RELEASE-p8 FreeBSD 5.0-RELEASE-p8 #0: Wed Aug 6 04:44:12 GMT 2003 root@:/usr/obj/usr/src/sys/VENTOUX i386 >Description: The Makefile on the graphics/kimdaba package removes optimization options, resulting in an unuseable executable which is either too slow or hangs. >How-To-Repeat: cd /usr/ports/graphics/kimdaba; make; make install; kimbada >Fix: *** /usr/ports/graphics/kimdaba/Makefile Mon Dec 29 15:39:28 2003 --- /usr/ports/graphics/kimdaba/Makefile.old Mon Dec 29 15:38:55 2003 *************** *** 19,25 **** USE_REINPLACE= yes post-patch: ! @${REINPLACE_CMD} -e 's/-O2/-O3/g' ${WRKSRC}/${CONFIGURE_SCRIPT} post-install: @${RM} ${PREFIX}/share/locale/xx/LC_MESSAGES/kimdaba.mo --- 19,25 ---- USE_REINPLACE= yes post-patch: ! @${REINPLACE_CMD} -e 's/-O2//g' ${WRKSRC}/${CONFIGURE_SCRIPT} post-install: @${RM} ${PREFIX}/share/locale/xx/LC_MESSAGES/kimdaba.mo -- Cesar A. R. Crusius Synthesis Architect, Barcelona Design Inc. The OPS convex optimization system (http://ops.sourceforge.net) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Mon Dec 29 16:24:01 2003 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3707316A4CE; Mon, 29 Dec 2003 16:24:01 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 834A243D2F; Mon, 29 Dec 2003 16:24:00 -0800 (PST) (envelope-from simon@FreeBSD.org) Received: from freefall.freebsd.org (simon@localhost [127.0.0.1]) hBU0O0FR074623; Mon, 29 Dec 2003 16:24:00 -0800 (PST) (envelope-from simon@freefall.freebsd.org) Received: (from simon@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id hBU0O0pZ074619; Mon, 29 Dec 2003 16:24:00 -0800 (PST) (envelope-from simon) Date: Mon, 29 Dec 2003 16:24:00 -0800 (PST) From: "Simon L. Nielsen" Message-Id: <200312300024.hBU0O0pZ074619@freefall.freebsd.org> To: simon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/60706: kimdaba standard install is excruciatingly slow X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Dec 2003 00:24:01 -0000 Synopsis: kimdaba standard install is excruciatingly slow Responsible-Changed-From-To: freebsd-i386->freebsd-ports-bugs Responsible-Changed-By: simon Responsible-Changed-When: Mon Dec 29 16:22:51 PST 2003 Responsible-Changed-Why: Reassign misfiled ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=60706 From owner-freebsd-i386@FreeBSD.ORG Wed Dec 31 10:00:42 2003 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E696116A4D2 for ; Wed, 31 Dec 2003 10:00:42 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19B4A43D54 for ; Wed, 31 Dec 2003 10:00:31 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) hBVI0UFR096470 for ; Wed, 31 Dec 2003 10:00:30 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id hBVI0UC2096469; Wed, 31 Dec 2003 10:00:30 -0800 (PST) (envelope-from gnats) Date: Wed, 31 Dec 2003 10:00:30 -0800 (PST) Message-Id: <200312311800.hBVI0UC2096469@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: John Baldwin Subject: Re: i386/57133: PCI device ID for Intel 82801DB/BAM/CAM and ATI Radeon Mobility 9000 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John Baldwin List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Dec 2003 18:00:43 -0000 The following reply was made to PR i386/57133; it has been noted by GNATS. From: John Baldwin To: freebsd-gnats-submit@FreeBSD.org, avatar@mmlab.cse.yzu.edu.tw Cc: Subject: Re: i386/57133: PCI device ID for Intel 82801DB/BAM/CAM and ATI Radeon Mobility 9000 Date: Wed, 31 Dec 2003 12:59:01 -0500 Current no longer displays strings like these for unprobed devices. Instead, a user can use 'pciconf -lv' to find out what all the unprobed devices on a system are on both 4.x and 5.x. Having the descriptive strings in the chip(4) driver is now obsolete. The pciconf method also has the advantage of not making the kernel larger with all the strings. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-freebsd-i386@FreeBSD.ORG Wed Dec 31 10:07:54 2003 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11BAB16A4CE; Wed, 31 Dec 2003 10:07:54 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C71943D1F; Wed, 31 Dec 2003 10:07:51 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from freefall.freebsd.org (jhb@localhost [127.0.0.1]) hBVI7pFR099967; Wed, 31 Dec 2003 10:07:51 -0800 (PST) (envelope-from jhb@freefall.freebsd.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id hBVI7mOK099963; Wed, 31 Dec 2003 10:07:48 -0800 (PST) (envelope-from jhb) Date: Wed, 31 Dec 2003 10:07:48 -0800 (PST) From: John Baldwin Message-Id: <200312311807.hBVI7mOK099963@freefall.freebsd.org> To: zorick@web.com.ua, jhb@FreeBSD.org, freebsd-i386@FreeBSD.org Subject: Re: i386/58163: puc driver doesn't recognize MOXA C104H/PCI card. X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Dec 2003 18:07:54 -0000 Synopsis: puc driver doesn't recognize MOXA C104H/PCI card. State-Changed-From-To: open->closed State-Changed-By: jhb State-Changed-When: Wed Dec 31 10:07:18 PST 2003 State-Changed-Why: Support for this device was just MFC'd to RELENG_4. http://www.freebsd.org/cgi/query-pr.cgi?pr=58163 From owner-freebsd-i386@FreeBSD.ORG Wed Dec 31 19:40:19 2003 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 052BF16A4CE for ; Wed, 31 Dec 2003 19:40:19 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A7FE43D49 for ; Wed, 31 Dec 2003 19:40:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i013eIFR042252 for ; Wed, 31 Dec 2003 19:40:18 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i013eHOm042251; Wed, 31 Dec 2003 19:40:17 -0800 (PST) (envelope-from gnats) Date: Wed, 31 Dec 2003 19:40:17 -0800 (PST) Message-Id: <200401010340.i013eHOm042251@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Tai-hwa Liang Subject: Re: i386/57133: PCI device ID for Intel 82801DB/BAM/CAM and ATI Radeon Mobility 9000 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Tai-hwa Liang List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jan 2004 03:40:19 -0000 The following reply was made to PR i386/57133; it has been noted by GNATS. From: Tai-hwa Liang To: John Baldwin Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: i386/57133: PCI device ID for Intel 82801DB/BAM/CAM and ATI Radeon Mobility 9000 Date: Thu, 1 Jan 2004 11:36:39 +0800 (CST) On Wed, 31 Dec 2003, John Baldwin wrote: > Current no longer displays strings like these for unprobed devices. Instead, > a user can use 'pciconf -lv' to find out what all the unprobed devices on a > system are on both 4.x and 5.x. Having the descriptive strings in the > chip(4) driver is now obsolete. The pciconf method also has the advantage of > not making the kernel larger with all the strings. Does that mean this PR should be closed?