From owner-freebsd-bugs Sun Jul 30 6:50: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0EBEE37B5D4 for ; Sun, 30 Jul 2000 06:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA51200; Sun, 30 Jul 2000 06:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 30 Jul 2000 06:50:02 -0700 (PDT) Message-Id: <200007301350.GAA51200@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: GeorgE Russell Subject: Re: kern/20296: matcd driver is a) not in GENERIC and b) broken Reply-To: GeorgE Russell Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/20296; it has been noted by GNATS. From: GeorgE Russell To: Bill Fumerola Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/20296: matcd driver is a) not in GENERIC and b) broken Date: Sun, 30 Jul 2000 14:32:00 +0100 Bill Fumerola wrote: > > On Sat, Jul 29, 2000 at 07:18:14PM -0700, george.russell@clara.net wrote: > > > > >Number: 20296 > > >Category: kern > > >Synopsis: matcd driver is a) not in GENERIC and b) broken > > The reason it's not in GENERIC is _because_ it is broken. Great. I thought it was removed for space reasons. Download a fixed version for 4.0 stable from http://www.george.russell.clara.net/matcd.c.gz George Russell (does this mean it'll go back into stable, and say in 4.2 I could actually install without copying XXXMb of files to a disk partition? Good) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jul 30 11:10:13 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9055037B6B7 for ; Sun, 30 Jul 2000 11:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA85128; Sun, 30 Jul 2000 11:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shrike.dti.ad.jp (shrike.dti.ad.jp [202.216.228.218]) by hub.freebsd.org (Postfix) with ESMTP id BF02337B515 for ; Sun, 30 Jul 2000 11:02:10 -0700 (PDT) (envelope-from sakichan@lares.dti.ne.jp) Received: from pleione.sakichan.org (PPP13.kawasaki-ap3.dti.ne.jp [210.170.222.13]) by shrike.dti.ad.jp (8.9.3/3.7W) with ESMTP id DAA19232 for ; Mon, 31 Jul 2000 03:02:08 +0900 (JST) Received: (from sakichan@localhost) by pleione.sakichan.org (8.9.3/3.5Wpl5-ppp) id DAA01423; Mon, 31 Jul 2000 03:02:30 +0900 (JST) Message-Id: <200007301802.DAA19232@shrike.dti.ad.jp> Date: Mon, 31 Jul 2000 03:02:30 +0900 (JST) From: sakichan@lares.dti.ne.jp Reply-To: sakichan@lares.dti.ne.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20300: [Patch] support for Panasonic USB FDD Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20300 >Category: kern >Synopsis: [Patch] support for Panasonic USB FDD >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 Jul 30 11:10:04 PDT 2000 >Closed-Date: >Last-Modified: >Originator: SAKIYAMA Nobuo >Release: FreeBSD 4.1-STABLE i386 >Organization: none >Environment: machines with USB interfaces and a Panasonic USB FDD >Description: Panasonic USB FDD "MATSHITA FDD CF-VFDU03" does not work. The FDD is detected, but when trying to read or write, errors occur. In dmesg: umass0: MATSHITA CF-VFDU03 , rev 1.00/0.00, addr 2 da0 at umass-sim32 bus 0 target 0 lun 0 da0: Removable Direct Access SCSI-0 device da0: 20KB/s transfers da0: 1MB (2880 512 byte sectors: 2H 18S/T 80C) but, when I executed "dd if=/dev/da0 of=/dev/null", umass0: Unsupported UFI command 0x08, 6 byte command should have been converted da0: reading primary partition table: error reading fsbn 0 umass0: Unsupported UFI command 0x35 (da0:umass-sim32:0:0:0): Synchronize cache failed, status == 0x6, scsi status == 0x0 >How-To-Repeat: as described in "Description:" >Fix: I think that the auto detection of UFI based drives in CAM is the best, but I don't know the CAM architecture well. So I wrote a patch similar to the quirks for YE-DATA USB FDD Drives. --- sys/cam/scsi/scsi_da.c.dist Sat Jul 8 23:24:08 2000 +++ sys/cam/scsi/scsi_da.c Mon Jul 31 02:14:50 2000 @@ -198,6 +198,13 @@ */ {T_DIRECT, SIP_MEDIA_REMOVABLE, "Y-E DATA", "USB-FDU", "*"}, /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE + }, + { + /* + * See above. + */ + {T_DIRECT, SIP_MEDIA_REMOVABLE, "MATSHITA", "FDD CF-VFDU*", "*"}, + /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE } }; >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 Jul 30 12:50: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 20AF937B741 for ; Sun, 30 Jul 2000 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA94735; Sun, 30 Jul 2000 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 41E5F37B732; Sun, 30 Jul 2000 12:43:54 -0700 (PDT) Message-Id: <20000730194354.41E5F37B732@hub.freebsd.org> Date: Sun, 30 Jul 2000 12:43:54 -0700 (PDT) From: sluggo@unknown.nu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/20304: man page for fortune(6) should list strfile(8) under "See Also" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20304 >Category: misc >Synopsis: man page for fortune(6) should list strfile(8) under "See Also" >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jul 30 12:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kim Scarborough >Release: 5.0-CURRENT >Organization: >Environment: N/A >Description: Since you need strfile(8) to create new datafiles for fortune(6), and since the man page for strfile(8) lists fortune(6) in its "See Also" section, I think the man page for fortune(6) should reciprocate. >How-To-Repeat: man fortune >Fix: fortune.6 patch: 187c187,188 < .Xr regex 3 --- > .Xr regex 3 , > .Xr strfile 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 Jul 30 12:50:12 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 56DE737B75B for ; Sun, 30 Jul 2000 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA94744; Sun, 30 Jul 2000 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from chg.ru (netserv1.chg.ru [193.233.46.3]) by hub.freebsd.org (Postfix) with ESMTP id 1C40A37B76F for ; Sun, 30 Jul 2000 12:47:05 -0700 (PDT) (envelope-from dima@chg.ru) Received: (from dima@localhost) by chg.ru (8.9.3/8.9.3) id XAA76906; Sun, 30 Jul 2000 23:47:03 +0400 (MSD) (envelope-from dima) Message-Id: <200007301947.XAA76906@chg.ru> Date: Sun, 30 Jul 2000 23:47:03 +0400 (MSD) From: "Dmitry S. Sivachenko" Reply-To: dima@Chg.RU To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/20305: /usr/sbin/mergermaster has incorrect path for `less' Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20305 >Category: bin >Synopsis: /usr/sbin/mergermaster has incorrect path for `less' >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 Jul 30 12:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry S. Sivachenko >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: FreeBSD-4.1-STABLE >Description: Since 'less' is in the base system now, I have no port of 'less' installed. But mergemaster has hardcoded path for it. It should be changed to /usr/bin/less in 4-STABLE and 5-CURRENT. (i.e. for those systems, that have less in the base distribution). >How-To-Repeat: >Fix: --- mergemaster.orig Sun Jul 30 23:34:19 2000 +++ mergemaster Sun Jul 30 23:35:03 2000 @@ -114,8 +114,8 @@ echo " PAGER and EDITOR. Meanwhile, what would you like to do?" echo '' echo " Use 'e' to exit mergemaster and fix your PAGER variable" - if [ -x /usr/local/bin/less ]; then - echo " Use 'l' to set PAGER to /usr/local/bin/less for this run" + if [ -x /usr/bin/less ]; then + echo " Use 'l' to set PAGER to /usr/bin/less for this run" fi echo " Use 'm' to use plain old 'more' as your PAGER for this run" echo '' @@ -127,7 +127,7 @@ exit 0 ;; [lL]*) - PAGER=/usr/local/bin/less + PAGER=/usr/bin/less ;; *) PAGER=more >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 Jul 30 15: 0: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C785637B7A2 for ; Sun, 30 Jul 2000 15:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA07093; Sun, 30 Jul 2000 15:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 0960137B81F; Sun, 30 Jul 2000 14:53:24 -0700 (PDT) Message-Id: <20000730215324.0960137B81F@hub.freebsd.org> Date: Sun, 30 Jul 2000 14:53:24 -0700 (PDT) From: mhenrion@cybercable.fr To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/20308: vidcontrol VESA_800x600 causes a kernel panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20308 >Category: i386 >Synopsis: vidcontrol VESA_800x600 causes a kernel panic >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jul 30 15:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Maxime Henrion >Release: not a release, see environment >Organization: none >Environment: FreeBSD nebula.org 4.1-STABLE FreeBSD 4.1-STABLE #0: Sun Jul 30 15:24:27 CEST 2000 root@nebula.org:/usr/src/sys/compile/NEBULA i386 >Description: My kernel is compiled with VESA support, and with options SC_PIXEL_MODE for the syscons driver. Then, when i want to set the vesa mode in my consol typing "vidcontrol VESA_800x600", I can't see anything. I know it has caused a kernel panic, because it is waiting for two before rebooting. I have a Diamond Viper 550 graphic card, with a NVidia TNT1 chipset. >How-To-Repeat: See the description. >Fix: >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 Jul 30 18:57: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from dt052n3e.san.rr.com (dt052n3e.san.rr.com [204.210.33.62]) by hub.freebsd.org (Postfix) with ESMTP id 1EDD837B95F; Sun, 30 Jul 2000 18:57:00 -0700 (PDT) (envelope-from DougB@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt052n3e.san.rr.com (8.9.3/8.9.3) with ESMTP id SAA29076; Sun, 30 Jul 2000 18:56:48 -0700 (PDT) (envelope-from DougB@gorean.org) Message-ID: <3984DCDF.24BC5A69@gorean.org> Date: Sun, 30 Jul 2000 18:56:47 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: dima@Chg.RU Cc: FreeBSD-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Subject: Re: bin/20305: /usr/sbin/mergermaster has incorrect path for `less' References: <200007301947.XAA76906@chg.ru> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Dmitry S. Sivachenko" wrote: > >Synopsis: /usr/sbin/mergermaster has incorrect path for `less' Please close this one in favor of 19858, whose audit trail has patches to solve this problem. Thanks, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jul 30 19: 0: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 535C537B9AF for ; Sun, 30 Jul 2000 19:00:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA30349; Sun, 30 Jul 2000 19:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 30 Jul 2000 19:00:05 -0700 (PDT) Message-Id: <200007310200.TAA30349@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Doug Barton Subject: Re: bin/20305: /usr/sbin/mergermaster has incorrect path for `less' Reply-To: Doug Barton Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/20305; it has been noted by GNATS. From: Doug Barton To: dima@Chg.RU Cc: FreeBSD-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Subject: Re: bin/20305: /usr/sbin/mergermaster has incorrect path for `less' Date: Sun, 30 Jul 2000 18:56:47 -0700 "Dmitry S. Sivachenko" wrote: > >Synopsis: /usr/sbin/mergermaster has incorrect path for `less' Please close this one in favor of 19858, whose audit trail has patches to solve this problem. Thanks, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jul 30 19:13:44 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 285E737B810; Sun, 30 Jul 2000 19:13:43 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA32963; Sun, 30 Jul 2000 19:13:43 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Sun, 30 Jul 2000 19:13:43 -0700 (PDT) From: Message-Id: <200007310213.TAA32963@freefall.freebsd.org> To: dima@Chg.RU, billf@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/20305: /usr/sbin/mergermaster has incorrect path for `less' Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /usr/sbin/mergermaster has incorrect path for `less' State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Sun Jul 30 19:13:17 PDT 2000 State-Changed-Why: Closed in favor of 19858 http://www.freebsd.org/cgi/query-pr.cgi?pr=20305 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 0:28:58 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 10F8437B8C8; Mon, 31 Jul 2000 00:28:48 -0700 (PDT) (envelope-from mpp@FreeBSD.org) Received: (from mpp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA71003; Mon, 31 Jul 2000 00:28:47 -0700 (PDT) (envelope-from mpp@FreeBSD.org) Date: Mon, 31 Jul 2000 00:28:47 -0700 (PDT) From: Message-Id: <200007310728.AAA71003@freefall.freebsd.org> To: sluggo@unknown.nu, mpp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/20304: man page for fortune(6) should list strfile(8) under "See Also" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: man page for fortune(6) should list strfile(8) under "See Also" State-Changed-From-To: open->closed State-Changed-By: mpp State-Changed-When: Mon Jul 31 00:28:22 PDT 2000 State-Changed-Why: Patch applied. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=20304 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 0:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 438B337BABC for ; Mon, 31 Jul 2000 00:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA72172; Mon, 31 Jul 2000 00:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 31 Jul 2000 00:40:03 -0700 (PDT) Message-Id: <200007310740.AAA72172@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: alex@big.endian.de (Alexander Langer) Subject: Re: i386/20286: FreeBSD installer cannot detect my 3C905B network, so I cannot do network install Reply-To: alex@big.endian.de (Alexander Langer) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/20286; it has been noted by GNATS. From: alex@big.endian.de (Alexander Langer) To: fiucha@crosswinds.net Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: i386/20286: FreeBSD installer cannot detect my 3C905B network, so I cannot do network install Date: Mon, 31 Jul 2000 09:31:35 +0200 Thus spake fiucha@crosswinds.net (fiucha@crosswinds.net): > The network board is fine since I have installed (and working normally) OpenBSD 2.7 on the same machine. Could you maybe send the output of pciconf or the equivalent tools on OpenBSD or Linux, to show which chip-id's the card have? Maybe its a smooth variant our code doesn't know yet. Please send it as reply to freebsd-gnats-submit@freebsd.org, using the same Subject: line. Thanks Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 1:36:28 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from femail1.sdc1.sfba.home.com (femail1.sdc1.sfba.home.com [24.0.95.81]) by hub.freebsd.org (Postfix) with ESMTP id 14B1837BB07 for ; Mon, 31 Jul 2000 01:36:24 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from cx175057b ([24.13.23.147]) by femail1.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20000731083622.CZHM1841.femail1.sdc1.sfba.home.com@cx175057b>; Mon, 31 Jul 2000 01:36:22 -0700 Message-ID: <003e01bffaca$0b9f72c0$93170d18@ocnsd1.sdca.home.com> From: "Brian" To: Cc: Subject: ssh-1.2.30 Date: Mon, 31 Jul 2000 01:33:46 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_003B_01BFFA8F.5EE386A0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_003B_01BFFA8F.5EE386A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable This is the first release I've tried that didn't compile initially and = easily. I wound up using a different ssh server, but here is the debug. = I did a plain ./configure with no options, did a make in freebsd 3.51, = 4.0, and 4.1. They all failed. This is the 3.51 debug. sshd.c: In function `do_authenticated': sshd.c:2972: parse error before `<' sshd.c:3032: break statement not within loop or switch sshd.c:3034: case label not within a switch statement sshd.c:3078: break statement not within loop or switch sshd.c:3088: case label not within a switch statement sshd.c:3105: break statement not within loop or switch sshd.c:3107: case label not within a switch statement sshd.c:3122: break statement not within loop or switch sshd.c:3125: case label not within a switch statement sshd.c:3140: case label not within a switch statement sshd.c:3162: default label not within a switch statement sshd.c:3131: label `do_forced_command' used but not defined sshd.c:2862: label `fail' used but not defined sshd.c: At top level: sshd.c:3171: parse error before `14' sshd.c:3171: conflicting types for `packet_start' packet.h:109: previous declaration of `packet_start' sshd.c:3171: warning: data definition has no type or storage class sshd.c:3172: conflicting types for `packet_send' packet.h:125: previous declaration of `packet_send' sshd.c:3172: warning: data definition has no type or storage class sshd.c:3173: conflicting types for `packet_write_wait' packet.h:191: previous declaration of `packet_write_wait' sshd.c:3173: warning: data definition has no type or storage class sshd.c:3176: parse error before `if' sshd.c:3179: warning: parameter names (without types) in function = declaration sshd.c:3179: conflicting types for `packet_start_compression' packet.h:99: previous declaration of `packet_start_compression' sshd.c:3179: warning: data definition has no type or storage class sshd.c:3180: parse error before `}' sshd.c:3187: parse error before `15' sshd.c:3187: warning: data definition has no type or storage class sshd.c:3188: warning: data definition has no type or storage class sshd.c:3189: warning: data definition has no type or storage class sshd.c:3190: parse error before `continue' *** Error code 1 ------=_NextPart_000_003B_01BFFA8F.5EE386A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
This is the first release I've tried = that didn't=20 compile initially and easily.  I wound up using a different ssh = server, but=20 here is the debug.   I did a plain ./configure with no = options, did a=20 make in freebsd 3.51, 4.0, and 4.1. They all failed. This is the = 3.51=20 debug.
 
sshd.c: In function=20 `do_authenticated':
sshd.c:2972: parse error before = `<'
sshd.c:3032:=20 break statement not within loop or switch
sshd.c:3034: case label not = within=20 a switch statement
sshd.c:3078: break statement not within loop or=20 switch
sshd.c:3088: case label not within a switch = statement
sshd.c:3105:=20 break statement not within loop or switch
sshd.c:3107: case label not = within=20 a switch statement
sshd.c:3122: break statement not within loop or=20 switch
sshd.c:3125: case label not within a switch = statement
sshd.c:3140:=20 case label not within a switch statement
sshd.c:3162: default label = not=20 within a switch statement
sshd.c:3131: label `do_forced_command' used = but not=20 defined
sshd.c:2862: label `fail' used but not defined
sshd.c: At = top=20 level:
sshd.c:3171: parse error before `14'
sshd.c:3171: = conflicting types=20 for `packet_start'
packet.h:109: previous declaration of=20 `packet_start'
sshd.c:3171: warning: data definition has no type or = storage=20 class
sshd.c:3172: conflicting types for = `packet_send'
packet.h:125:=20 previous declaration of `packet_send'
sshd.c:3172: warning: data = definition=20 has no type or storage class
sshd.c:3173: conflicting types for=20 `packet_write_wait'
packet.h:191: previous declaration of=20 `packet_write_wait'
sshd.c:3173: warning: data definition has no type = or=20 storage class
sshd.c:3176: parse error before `if'
sshd.c:3179: = warning:=20 parameter names (without types) in function declaration
sshd.c:3179:=20 conflicting types for `packet_start_compression'
packet.h:99: = previous=20 declaration of `packet_start_compression'
sshd.c:3179: warning: data=20 definition has no type or storage class
sshd.c:3180: parse error = before=20 `}'
sshd.c:3187: parse error before `15'
sshd.c:3187: warning: = data=20 definition has no type or storage class
sshd.c:3188: warning: data = definition=20 has no type or storage class
sshd.c:3189: warning: data definition = has no=20 type or storage class
sshd.c:3190: parse error before = `continue'
*** Error=20 code 1
------=_NextPart_000_003B_01BFFA8F.5EE386A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 1:41:22 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0293737B56C; Mon, 31 Jul 2000 01:41:21 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA79374; Mon, 31 Jul 2000 01:41:20 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 01:41:20 -0700 (PDT) From: Message-Id: <200007310841.BAA79374@freefall.freebsd.org> To: jym@bsdfr.org, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: gnu/20253: [critical] O2 optimization with egcs 2.95.2 (19991024) cause segfault Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [critical] O2 optimization with egcs 2.95.2 (19991024) cause segfault State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Mon Jul 31 01:39:39 PDT 2000 State-Changed-Why: See what /etc/defaults/make.conf has to say about optimization. This is almost certainly something you'd want to take up with the GCC maintainers, but they probably wouldn't be able to help you without specific code. http://www.freebsd.org/cgi/query-pr.cgi?pr=20253 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 1:48:55 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EC38337BB0B; Mon, 31 Jul 2000 01:48:53 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA80343; Mon, 31 Jul 2000 01:48:53 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 01:48:53 -0700 (PDT) From: Message-Id: <200007310848.BAA80343@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, green@FreeBSD.org Subject: Re: kern/20234: panic(): lockmgr: pid 259, not exclusive lock holder 0 unlocking Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: panic(): lockmgr: pid 259, not exclusive lock holder 0 unlocking Responsible-Changed-From-To: freebsd-bugs->green Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Jul 31 01:48:16 PDT 2000 Responsible-Changed-Why: Brian's investigating this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=20234 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 2:27:31 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A1E2D37B8CC; Mon, 31 Jul 2000 02:27:29 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA86607; Mon, 31 Jul 2000 02:27:29 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 02:27:29 -0700 (PDT) From: Message-Id: <200007310927.CAA86607@freefall.freebsd.org> To: marc@tear.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/20292: MAKEDEV does not create RocketPort devices Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MAKEDEV does not create RocketPort devices State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Mon Jul 31 02:26:38 PDT 2000 State-Changed-Why: This was fixed in rev 1.243.2.7 on 2000-06-11. http://www.freebsd.org/cgi/query-pr.cgi?pr=20292 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 2:32: 1 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 407C937B69E; Mon, 31 Jul 2000 02:31:59 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA87446; Mon, 31 Jul 2000 02:31:58 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 02:31:58 -0700 (PDT) From: Message-Id: <200007310931.CAA87446@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, phk@FreeBSD.org Subject: Re: kern/20256: microuptime went backwards message keeps repeating, looks like bad C code Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: microuptime went backwards message keeps repeating, looks like bad C code Responsible-Changed-From-To: freebsd-bugs->phk Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Jul 31 02:31:09 PDT 2000 Responsible-Changed-Why: Poul-Henning knows about this stuff. http://www.freebsd.org/cgi/query-pr.cgi?pr=20256 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 2:35:19 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AA35037B69E; Mon, 31 Jul 2000 02:35:17 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA87885; Mon, 31 Jul 2000 02:35:16 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 02:35:16 -0700 (PDT) From: Message-Id: <200007310935.CAA87885@freefall.freebsd.org> To: david@wisewalk.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/20257: Can't cvsup to 4.0-STABLE without breaking 'make' Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Can't cvsup to 4.0-STABLE without breaking 'make' State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Mon Jul 31 02:34:40 PDT 2000 State-Changed-Why: You need to read the "COMMON ITEMS" section of the file /usr/src/UPDATING on the RELENG_4 branch. http://www.freebsd.org/cgi/query-pr.cgi?pr=20257 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 2:38:43 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D1A3B37B69E; Mon, 31 Jul 2000 02:38:41 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA88458; Mon, 31 Jul 2000 02:38:41 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 02:38:41 -0700 (PDT) From: Message-Id: <200007310938.CAA88458@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, brian@FreeBSD.org Subject: Re: conf/20258: Making user-PPP start as an arbitrary user instead of root Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Making user-PPP start as an arbitrary user instead of root Responsible-Changed-From-To: freebsd-bugs->brian Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Jul 31 02:38:20 PDT 2000 Responsible-Changed-Why: Over to the PPP maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=20258 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 2:39:41 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 51EFC37BAB0; Mon, 31 Jul 2000 02:39:40 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA88586; Mon, 31 Jul 2000 02:39:39 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 02:39:39 -0700 (PDT) From: Message-Id: <200007310939.CAA88586@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, yokota@FreeBSD.org Subject: Re: i386/20308: vidcontrol VESA_800x600 causes a kernel panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: vidcontrol VESA_800x600 causes a kernel panic Responsible-Changed-From-To: freebsd-bugs->yokota Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Jul 31 02:39:22 PDT 2000 Responsible-Changed-Why: Over to the syscons maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=20308 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 2:40:31 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4CBEC37B955; Mon, 31 Jul 2000 02:40:30 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA88756; Mon, 31 Jul 2000 02:40:30 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 02:40:30 -0700 (PDT) From: Message-Id: <200007310940.CAA88756@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, n_hibma@FreeBSD.org Subject: Re: kern/20300: [Patch] support for Panasonic USB FDD Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [Patch] support for Panasonic USB FDD Responsible-Changed-From-To: freebsd-bugs->n_hibma Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Jul 31 02:40:04 PDT 2000 Responsible-Changed-Why: Over to the USB maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=20300 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 2:42:34 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3AD4C37B8CC; Mon, 31 Jul 2000 02:42:33 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA88960; Mon, 31 Jul 2000 02:42:32 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 02:42:32 -0700 (PDT) From: Message-Id: <200007310942.CAA88960@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, cg@FreeBSD.org Subject: Re: kern/20297: Joystick is not enabled with es1370 based soundcard. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Joystick is not enabled with es1370 based soundcard. Responsible-Changed-From-To: freebsd-bugs->cg Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Jul 31 02:42:12 PDT 2000 Responsible-Changed-Why: Cameron, this one contains a patch. :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=20297 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 2:46:41 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2482C37B8CC; Mon, 31 Jul 2000 02:46:40 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA89487; Mon, 31 Jul 2000 02:46:40 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 02:46:40 -0700 (PDT) From: Message-Id: <200007310946.CAA89487@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, joe@FreeBSD.org Subject: Re: bin/20291: [PATCH] ls refuses to output color to anything that's not a tty Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] ls refuses to output color to anything that's not a tty Responsible-Changed-From-To: freebsd-bugs->joe Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Jul 31 02:46:13 PDT 2000 Responsible-Changed-Why: Your mess, you clean it up. :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=20291 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 2:49:16 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 637EB37BC29; Mon, 31 Jul 2000 02:49:14 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA89815; Mon, 31 Jul 2000 02:49:14 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 02:49:14 -0700 (PDT) From: Message-Id: <200007310949.CAA89815@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, jhb@FreeBSD.org Subject: Re: misc/20254: BTX loader 1.00 can not recognize floppy as boot device Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: BTX loader 1.00 can not recognize floppy as boot device Responsible-Changed-From-To: freebsd-bugs->jhb Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Jul 31 02:48:19 PDT 2000 Responsible-Changed-Why: Over to the big knife. :-) John, note that it appears that this is for a 4.x install, not a 3.4-RELEASE install. Also note that the Synopsis gives the wrong loader version. http://www.freebsd.org/cgi/query-pr.cgi?pr=20254 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 2:50:19 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2162E37BE05; Mon, 31 Jul 2000 02:50:18 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA90069; Mon, 31 Jul 2000 02:50:18 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 02:50:18 -0700 (PDT) From: Message-Id: <200007310950.CAA90069@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, jkh@FreeBSD.org Subject: Re: conf/20272: Missing subdirs in the src/usr.sbin src package Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Missing subdirs in the src/usr.sbin src package Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Jul 31 02:49:45 PDT 2000 Responsible-Changed-Why: Release distributions problems really appeal to Jordan. ;-) http://www.freebsd.org/cgi/query-pr.cgi?pr=20272 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 3:50: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B2DC737BC47 for ; Mon, 31 Jul 2000 03:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA96987; Mon, 31 Jul 2000 03:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 31 Jul 2000 03:50:04 -0700 (PDT) Message-Id: <200007311050.DAA96987@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andrew Cagney Subject: Re: misc/15546: Need to enable LBA flag for large IDE disks (40GB Maxtor 94098U8) Reply-To: Andrew Cagney Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/15546; it has been noted by GNATS. From: Andrew Cagney To: freebsd-gnats-submit@FreeBSD.org, tod@quay.com Cc: Subject: Re: misc/15546: Need to enable LBA flag for large IDE disks (40GB Maxtor 94098U8) Date: Mon, 31 Jul 2000 20:48:49 +1000 > How-To-Repeat > > Install a Maxtor 40GB IDE drive without enabling LBA in FreeBSD's > driver, create a label with one filesystem for the whole drive > and attempt to newfs. Newfs will almost finish and then die with > "Read-only file system". Reproduced (3.3). Problem still appears to be in 3.5.1 (if that actually exists?). Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 4: 0:15 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 584D837B62F for ; Mon, 31 Jul 2000 04:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA98004; Mon, 31 Jul 2000 04:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 786EA37BC17; Mon, 31 Jul 2000 03:51:34 -0700 (PDT) Message-Id: <20000731105134.786EA37BC17@hub.freebsd.org> Date: Mon, 31 Jul 2000 03:51:34 -0700 (PDT) From: pmd@amtrax.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/20310: Symbios 53c875j drivers don't work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20310 >Category: kern >Synopsis: Symbios 53c875j drivers don't work >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jul 31 04:00:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Paul Maurice >Release: 4.0 >Organization: >Environment: >Description: FreeBSD 4.0 won't recognize more than two drives with a symbios 53c875j on my Proliant 6500. Under linux everything is fine. >How-To-Repeat: >Fix: >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 Mon Jul 31 4:20: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E02037BCBD for ; Mon, 31 Jul 2000 04:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA03569; Mon, 31 Jul 2000 04:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from castle.jp.freebsd.org (castle.jp.FreeBSD.org [210.226.20.15]) by hub.freebsd.org (Postfix) with ESMTP id 6FA4037BC17 for ; Mon, 31 Jul 2000 04:12:36 -0700 (PDT) (envelope-from matusita@jp.freebsd.org) Received: from localhost (localhost [127.0.0.1]) by castle.jp.freebsd.org (8.9.3+3.2W/8.7.3) with ESMTP id UAA92577 for ; Mon, 31 Jul 2000 20:12:35 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Message-Id: <20000731201222N.matusita@jp.FreeBSD.org> Date: Mon, 31 Jul 2000 20:12:22 +0900 From: Makoto MATSUSHITA To: FreeBSD-gnats-submit@freebsd.org Subject: bin/20311: src/release/Makefile: broken CHECKSUM.MD5 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20311 >Category: bin >Synopsis: src/release/Makefile: broken CHECKSUM.MD5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jul 31 04:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Makoto MATSUSHITA >Release: FreeBSD 5.0-CURRENT i386 >Organization: Japan FreeBSD Users' Group >Environment: Recent 4-stable/-current >Description: target 'release.7' of src/release/Makefile does make a source distributions such as src/sbase.* etc. This target does - Create tarball for earch src/* directory - Do additional tarball listed in EXTRA_SRC - Move crypto-related source to ../crypto ... but all MD5 signature of src/scrypto.* (and crypto-related source file chunks) are still in src/CHECKSUM.MD5. Moreover, crypto/CHECKSUM.MD5 have only *krb5* checksums. >How-To-Repeat: Do 'make buildworld' and see the results. >Fix: CHECKSUM.MD5 should be created *after* all distributions are placed as it is. An example to fix: - stop creating CHECKSUM.MD5 in 'doTARBALL' target - creating CHECKSUM.MD5 in the end of 'release.7' >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 Mon Jul 31 4:48:14 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AE3137BBFD; Mon, 31 Jul 2000 04:48:12 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA06934; Mon, 31 Jul 2000 04:48:12 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 04:48:12 -0700 (PDT) From: Message-Id: <200007311148.EAA06934@freefall.freebsd.org> To: sheldonh@FreeBSD.org, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/16740: The kernel panics with "ffs_clusteralloc: map mismatch" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The kernel panics with "ffs_clusteralloc: map mismatch" Responsible-Changed-From-To: sos->freebsd-bugs Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Jul 31 04:47:14 PDT 2000 Responsible-Changed-Why: Soren is confident that this isn't ATA-related. Brian Feldman has been asked to take a look. Depending on what he finds, this'll probably end up assigned to green, mckusick or dillon. http://www.freebsd.org/cgi/query-pr.cgi?pr=16740 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 5: 0: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A83D37BC08 for ; Mon, 31 Jul 2000 05:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA08001; Mon, 31 Jul 2000 05:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from bbnrel4.net.external.hp.com (bbnrel4.net.external.hp.com [155.208.254.68]) by hub.freebsd.org (Postfix) with ESMTP id 9314E37BC08 for ; Mon, 31 Jul 2000 04:58:24 -0700 (PDT) (envelope-from steve@sse0691.bri.hp.com) Received: from hpcpbla.bri.hp.com (hpcpbla.bri.hp.com [15.144.112.65]) by bbnrel4.net.external.hp.com (Postfix) with ESMTP id CACD011BA7 for ; Mon, 31 Jul 2000 13:58:19 +0200 (METDST) Received: from sse0691.bri.hp.com (sse0691.bri.hp.com [15.144.0.53]) by hpcpbla.bri.hp.com (8.9.3 (PHNE_18979)/8.9.3 SMKit7.0) with ESMTP id MAA23587 for ; Mon, 31 Jul 2000 12:58:18 +0100 (BST) Received: (from steve@localhost) by sse0691.bri.hp.com (8.9.3/8.9.3) id NAA09865; Mon, 31 Jul 2000 13:00:55 +0100 (BST) (envelope-from steve) Message-Id: <200007311200.NAA09865@sse0691.bri.hp.com> Date: Mon, 31 Jul 2000 13:00:55 +0100 (BST) From: Steve Roome Reply-To: steve@sse0691.bri.hp.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20312: IO APIC problems Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20312 >Category: kern >Synopsis: IO APIC problems >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jul 31 05:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Steve Roome >Release: FreeBSD 4.1-RC i386 >Organization: >Environment: MPTABLE output : =============================================================================== MPTable, version 2.0.15 looking for EBDA pointer @ 0x040e, found, searching EBDA @ 0x0009f800 searching CMOS 'top of mem' @ 0x0009f400 (637K) searching default 'top of mem' @ 0x0009fc00 (639K) searching BIOS @ 0x000f0000 MP FPS found in BIOS @ physical addr: 0x000f99a0 ------------------------------------------------------------------------------- MP Floating Pointer Structure: location: BIOS physical address: 0x000f99a0 signature: '_MP_' length: 16 bytes version: 1.1 checksum: 0x4b mode: Virtual Wire ------------------------------------------------------------------------------- MP Config Table Header: physical address: 0x000f99b0 signature: 'PCMP' base table length: 236 version: 1.1 checksum: 0xe0 OEM ID: 'HP ' Product ID: 'XX ' OEM table pointer: 0x00000000 OEM table size: 0 entry count: 21 local APIC address: 0xfee00000 extended table length: 0 extended table checksum: 0 ------------------------------------------------------------------------------- MP Config Base Table Entries: -- Processors: APIC ID Version State Family Model Step Flags 1 0x11 BSP, usable 6 1 0 0xfbff 0 0x11 AP, usable 6 1 0 0xfbff -- Bus: Bus ID Type 1 ISA 0 PCI -- I/O APICs: APIC ID Version State Address 16 0x11 usable 0xfec00000 -- I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# INT conforms conforms 1 1 255 1 INT conforms conforms 1 0 255 2 INT conforms conforms 1 3 255 3 INT conforms conforms 1 4 255 4 INT conforms conforms 1 5 255 5 INT conforms conforms 1 6 255 6 INT conforms conforms 1 7 255 7 INT conforms conforms 1 8 255 8 INT conforms conforms 1 9 255 9 INT conforms conforms 1 10 255 10 INT conforms conforms 1 11 255 11 INT conforms conforms 1 12 255 12 INT conforms conforms 1 13 255 13 INT conforms conforms 1 14 255 14 INT conforms conforms 1 15 255 15 -- Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# NMI conforms conforms 1 2 255 1 ------------------------------------------------------------------------------- # SMP kernel config file options: # Required: options SMP # Symmetric MultiProcessor Kernel options APIC_IO # Symmetric (APIC) I/O # Optional (built-in defaults will work in most cases): #options NCPU=2 # number of CPUs #options NBUS=2 # number of busses #options NAPIC=1 # number of IO APICs #options NINTR=24 # number of INTs =============================================================================== ----- Kernel Config : machine i386 cpu I686_CPU # aka Pentium Pro(tm) ident MOOSE maxusers 64 ## SMP Stuff options SMP # Symmetric MultiProcessor Kernel options APIC_IO # Symmetric (APIC) I/O ## General options options NO_F00F_HACK options COMPAT_43 options SYSVSHM options SYSVSEM options SYSVMSG options KTRACE #kernel tracing options PERFMON options UCONSOLE options INET #Internet communications protocols options ICMP_BANDLIM options FFS #Fast filesystem options MFS #Memory File System options NFS #Network File System options CD9660 #ISO 9660 filesystem options KERNFS #Kernel filesystem options PROCFS #Process filesystem options FFS_ROOT #FFS usable as root device options SOFTUPDATES options P1003_1B options _KPOSIX_PRIORITY_SCHEDULING options _KPOSIX_VERSION=199309L options VESA pseudo-device ether #Generic Ethernet pseudo-device loop #Network loopback device pseudo-device bpf #Berkeley packet filter device scbus #base SCSI code device ch #SCSI media changers device da #SCSI direct access devices (aka disks) device sa #SCSI tapes device cd #SCSI CD-ROMs device pass #CAM passthrough driver pseudo-device pty #Pseudo ttys pseudo-device gzip #Exec gzipped a.out's pseudo-device vn #Vnode driver (turns a file into a device) pseudo-device md #Memory/malloc disk device isa device pci device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 options KBD_INSTALL_CDEV # install a CDEV entry in /dev device psm0 at atkbdc? irq 12 device vga0 at isa? # Splash screen at start up! Screen savers require this too. pseudo-device splash device sc0 at isa? options MAXCONS=16 # number of virtual consoles options SC_DISABLE_REBOOT # disable reboot key sequence options SC_HISTORY_SIZE=200 # number of history buffer lines device npx0 at nexus? port IO_NPX flags 0x0 irq 13 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 device lnc device pcm device sbc0 at isa? port 0x220 irq 5 drq 1 flags 0x15 device ahc # AHA2940 and onboard AIC7xxx devices options AHC_ALLOW_MEMIO device miibus device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 >Description: Panic's like this : Features = 0xfbff <.....CPU features of a PPro.....> real memory = 201326592 (196608K bytes) avail memory = 192376832 (187868K bytes) panic: can't control IO APIC #0 ID, reg : 0x00000000 mp_lock = 0000000a; cpuid = 0; lapic.id = 01000000 Uptime : 0s >How-To-Repeat: Boot a kernel built with the config file supplied on FreeBSD 4.1-RC. Maybe be hardware related, so to repeat you'd need this hardware which is a Dual Pentium Pro at 200MHz in a HP Vectra XU 6/200 (old machine which has worked fine with SMP since 3-0 current or thereabouts.) >Fix: >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 Mon Jul 31 5:10:41 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 20A3137BB2F; Mon, 31 Jul 2000 05:10:40 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA10102; Mon, 31 Jul 2000 05:10:40 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 05:10:40 -0700 (PDT) From: Message-Id: <200007311210.FAA10102@freefall.freebsd.org> To: pmd@amtrax.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, groudier@FreeBSD.org Subject: Re: kern/20310: Symbios 53c875j drivers don't work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Symbios 53c875j drivers don't work State-Changed-From-To: open->feedback State-Changed-By: sheldonh State-Changed-When: Mon Jul 31 05:09:28 PDT 2000 State-Changed-Why: The sym driver maintainer is going to need more detail. Could you send the dmesg(8) output from the box when it is booted with ``boot -v'' at the loader prompt? Responsible-Changed-From-To: freebsd-bugs->groudier Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Jul 31 05:09:28 PDT 2000 Responsible-Changed-Why: Gerard's driver. http://www.freebsd.org/cgi/query-pr.cgi?pr=20310 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 5:31:47 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF76437B62F; Mon, 31 Jul 2000 05:31:45 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA12392; Mon, 31 Jul 2000 05:31:45 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 05:31:45 -0700 (PDT) From: Message-Id: <200007311231.FAA12392@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, markm@FreeBSD.org Subject: Re: bin/20311: src/release/Makefile: broken CHECKSUM.MD5 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: src/release/Makefile: broken CHECKSUM.MD5 Responsible-Changed-From-To: freebsd-bugs->markm Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Jul 31 05:31:16 PDT 2000 Responsible-Changed-Why: Mark, this is the problem that DES complained about recently. http://www.freebsd.org/cgi/query-pr.cgi?pr=20311 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 5:37:32 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B7B937B616; Mon, 31 Jul 2000 05:37:30 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA12890; Mon, 31 Jul 2000 05:37:30 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 05:37:30 -0700 (PDT) From: Message-Id: <200007311237.FAA12890@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: conf/20282: sysinstall does not recover some /etc files Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysinstall does not recover some /etc files Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: sheldonh Responsible-Changed-When: Mon Jul 31 05:37:09 PDT 2000 Responsible-Changed-Why: Over to Mr. Sysinstall Jr. :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=20282 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 5:38:26 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D99937BAC9; Mon, 31 Jul 2000 05:38:25 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA13023; Mon, 31 Jul 2000 05:38:24 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 05:38:24 -0700 (PDT) From: Message-Id: <200007311238.FAA13023@freefall.freebsd.org> To: hvb@dsms.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/20295: fdisk -s give incorrect disk size Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fdisk -s give incorrect disk size State-Changed-From-To: open->feedback State-Changed-By: sheldonh State-Changed-When: Mon Jul 31 05:38:01 PDT 2000 State-Changed-Why: Originator to follow up with results on a 4.1-RELEASE box. http://www.freebsd.org/cgi/query-pr.cgi?pr=20295 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 5:46:45 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B262237BA99; Mon, 31 Jul 2000 05:46:41 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA13963; Mon, 31 Jul 2000 05:46:40 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 05:46:40 -0700 (PDT) From: Message-Id: <200007311246.FAA13963@freefall.freebsd.org> To: george.russell@clara.net, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/20296: matcd driver is a) not in GENERIC and b) broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: matcd driver is a) not in GENERIC and b) broken State-Changed-From-To: open->feedback State-Changed-By: sheldonh State-Changed-When: Mon Jul 31 05:45:34 PDT 2000 State-Changed-Why: Before anyone looks at your alternative matcd.c, could you let us know whether the patch in PR kern/17605 works for you? See http://www.ferebsd.org/cgi/query-pr.cgi?17605 . http://www.freebsd.org/cgi/query-pr.cgi?pr=20296 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 5:59:53 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 74FB637BAB4; Mon, 31 Jul 2000 05:59:52 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA15218; Mon, 31 Jul 2000 05:59:52 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 31 Jul 2000 05:59:52 -0700 (PDT) From: Message-Id: <200007311259.FAA15218@freefall.freebsd.org> To: george.russell@clara.net, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/20155: Matsushita CR 562 CD ROM is not saupported in FreeBSD 4.0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Matsushita CR 562 CD ROM is not saupported in FreeBSD 4.0 State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Mon Jul 31 05:58:33 PDT 2000 State-Changed-Why: Feedback has already been requested on kern/20296, which is a duplicate of this PR. So although duplicates usually get closed in deference to existing PR's, this one should be considered superseded. :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=20155 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 9: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E28337BBBA for ; Mon, 31 Jul 2000 09:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA40867; Mon, 31 Jul 2000 09:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 95CE237BD6A; Mon, 31 Jul 2000 08:52:11 -0700 (PDT) Message-Id: <20000731155211.95CE237BD6A@hub.freebsd.org> Date: Mon, 31 Jul 2000 08:52:11 -0700 (PDT) From: eric@minbari.ods.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/20318: RELENG_4 GENERIC kernel fails on make depend Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20318 >Category: kern >Synopsis: RELENG_4 GENERIC kernel fails on make depend >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jul 31 09:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Eric Fang >Release: 4.0-RELEASE >Organization: >Environment: FreeBSD minbari.ods.org 4.0-RELEASE FreeBSD 4.0-RELEASE #1: Fri Jul 28 00:27:06 EDT 2000 root@minbari.ods.org:/usr/src/sys/compile/MINBARI4 i386 >Description: I cvsup the RELENG_4 (stable) on Jul 28-31. Compiling the GENERIC kernel will fail on agp_if.c. make buildworld will finish properly though. >How-To-Repeat: 1. cvsup with RELENG_4 supfile 2. make buildworld (successful) 3. cd /usr/src/sys/i386/conf 4. config GENERIC; cd ../../compile/GENERIC; make depend output: .... machine -> /usr/src/sys/i386/include rm -f .depend mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -I- -I. -I@ -I@/../include -I/usr/include /usr/src/sys/modules/accf_http/../../netinet/accf_http.c ===> agp @ -> /usr/src/sys machine -> /usr/src/sys/i386/include make: don't know how to make agp_if.c. Stop *** Error code 2 Stop in /usr/src/sys/modules. *** Error code 1 >Fix: >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 Mon Jul 31 13:17:23 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3221637BC22; Mon, 31 Jul 2000 13:17:19 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA82091; Mon, 31 Jul 2000 13:17:18 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Date: Mon, 31 Jul 2000 13:17:18 -0700 (PDT) From: Message-Id: <200007312017.NAA82091@freefall.freebsd.org> To: dada@sbox.tu-graz.ac.at, rwatson@FreeBSD.org, freebsd-bugs@FreeBSD.org, asmodai@FreeBSD.org Subject: Re: conf/9245: obsolete locale setting in /usr/src/etc/{csh.login,profile} Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: obsolete locale setting in /usr/src/etc/{csh.login,profile} State-Changed-From-To: open->closed State-Changed-By: rwatson State-Changed-When: Mon Jul 31 13:15:34 PDT 2000 State-Changed-Why: o change ownership to asmodai o Changes committed to -STABLE now also, so close PR Responsible-Changed-From-To: freebsd-bugs->asmodai Responsible-Changed-By: rwatson Responsible-Changed-When: Mon Jul 31 13:15:34 PDT 2000 Responsible-Changed-Why: Jeroen picked this one up, so change ownership to him http://www.freebsd.org/cgi/query-pr.cgi?pr=9245 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 13:20:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C577D37BCE3 for ; Mon, 31 Jul 2000 13:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA82339; Mon, 31 Jul 2000 13:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by hub.freebsd.org (Postfix) with ESMTP id 02D6937BCCE for ; Mon, 31 Jul 2000 13:18:10 -0700 (PDT) (envelope-from k@numeri.campus.luth.se) Received: (from k@localhost) by numeri.campus.luth.se (8.9.3/8.9.3) id WAA04141; Mon, 31 Jul 2000 22:18:32 +0200 (CEST) (envelope-from k) Message-Id: <200007312018.WAA04141@numeri.campus.luth.se> Date: Mon, 31 Jul 2000 22:18:32 +0200 (CEST) From: Johan Karlsson Reply-To: k@numeri.campus.luth.se To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/20325: [PATCH] allow KERNEL to be set in make.conf when using build/installkernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20325 >Category: misc >Synopsis: [PATCH] allow KERNEL to be set in make.conf when using build/installkernel >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jul 31 13:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Johan Karlsson >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: src/Makefile.inc1: $FreeBSD: src/Makefile.inc1,v 1.163 2000/07/23 21:30:35 marcel Exp $ >Description: If one sets KERNEL=FOO in /etc/make.conf the build/install-kernel targets of src/Makefile.inc1 while create/install a kernel called 'FOO'. From cvs log, i belive marcels intent was to still name it 'kernel' == 1.162 Sun Jul 23 17:38:32 2000 UTC by marcel Diffs to 1.161 Name all kernels 'kernel'. This fixes the incompatible behaviour of the buildkernel and installkernel targets where the kernel was called after the config name. == This was in a way fixed in 1.150 but reverted by accident in 1.162 >How-To-Repeat: #echo 'KERNEL=GENERIC' >> /etc/make.conf #cd /usr/src/ #make buildkernel and see it link a kernel called 'GENERIC' #make installkernel and see it install as 'GENERIC' >Fix: Index: Makefile.inc1 =================================================================== RCS file: /host/queeg.ludd/FreeBSD-mirror/ncvs/src/Makefile.inc1,v retrieving revision 1.163 diff -u -r1.163 Makefile.inc1 --- Makefile.inc1 2000/07/23 21:30:35 1.163 +++ Makefile.inc1 2000/07/31 18:53:58 @@ -403,10 +403,10 @@ ${MAKE} -f ${KRNLSRCDIR}/dev/aic7xxx/Makefile .if !defined(NO_KERNELDEPEND) cd ${KRNLOBJDIR}/${_kernel}; \ - ${WMAKEENV} MACHINE=${MACHINE} KERNEL=kernel ${MAKE} depend + ${WMAKEENV} MACHINE=${MACHINE} ${MAKE} KERNEL=kernel depend .endif cd ${KRNLOBJDIR}/${_kernel}; \ - ${WMAKEENV} MACHINE=${MACHINE} KERNEL=kernel ${MAKE} all + ${WMAKEENV} MACHINE=${MACHINE} ${MAKE} KERNEL=kernel all .endfor # @@ -416,7 +416,7 @@ # installkernel: cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ - ${CROSSENV} MACHINE=${MACHINE} KERNEL=kernel ${MAKE} install + ${CROSSENV} MACHINE=${MACHINE} ${MAKE} KERNEL=kernel install # # update >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 Mon Jul 31 13:30: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 96AD037B7A3 for ; Mon, 31 Jul 2000 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA83594; Mon, 31 Jul 2000 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by hub.freebsd.org (Postfix) with ESMTP id 8F70C37BCD0 for ; Mon, 31 Jul 2000 13:25:19 -0700 (PDT) (envelope-from k@numeri.campus.luth.se) Received: (from k@localhost) by numeri.campus.luth.se (8.9.3/8.9.3) id WAA04304; Mon, 31 Jul 2000 22:25:41 +0200 (CEST) (envelope-from k) Message-Id: <200007312025.WAA04304@numeri.campus.luth.se> Date: Mon, 31 Jul 2000 22:25:41 +0200 (CEST) From: Johan Karlsson Reply-To: k@numeri.campus.luth.se To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/20326: [PATCH] installkernel fails if DESTDIR is empty Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20326 >Category: misc >Synopsis: [PATCH] installkernel fails if DESTDIR is empty >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jul 31 13:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Johan Karlsson >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: src/Makefile.inc1: $FreeBSD: src/Makefile.inc1,v 1.163 2000/07/23 21:30:35 marcel Exp $ >Description: When building/installing world and a kernel by: # make buildworld # make buildkernel # make DESTDIR=foo installkernel # make DESTDIR=foo installworld the installkernel will fail if DESTDIR is an empty directory. Since this is the recomended way by src/UPDATING one would expect this to work. >How-To-Repeat: # make buildworld # make buildkernel # make DESTDIR=path_to_empty_dir installkernel >Fix: Index: Makefile.inc1 =================================================================== RCS file: /host/queeg.ludd/FreeBSD-mirror/ncvs/src/Makefile.inc1,v retrieving revision 1.163 diff -u -r1.163 Makefile.inc1 --- Makefile.inc1 2000/07/23 21:30:35 1.163 +++ Makefile.inc1 2000/07/31 18:55:06 @@ -415,6 +415,9 @@ # Install the kernel defined by INSTALLKERNEL # installkernel: + cd ${.CURDIR}; \ + ${CROSSENV} MACHINE=${MACHINE} \ + ${MAKE} -f Makefile.inc1 hierarchy cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ ${CROSSENV} MACHINE=${MACHINE} KERNEL=kernel ${MAKE} install >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 Mon Jul 31 13:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DAC0C37B6A4 for ; Mon, 31 Jul 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA84914; Mon, 31 Jul 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by hub.freebsd.org (Postfix) with ESMTP id 6BC6037B5F7 for ; Mon, 31 Jul 2000 13:31:18 -0700 (PDT) (envelope-from k@numeri.campus.luth.se) Received: (from k@localhost) by numeri.campus.luth.se (8.9.3/8.9.3) id WAA04460; Mon, 31 Jul 2000 22:31:38 +0200 (CEST) (envelope-from k) Message-Id: <200007312031.WAA04460@numeri.campus.luth.se> Date: Mon, 31 Jul 2000 22:31:38 +0200 (CEST) From: Johan Karlsson Reply-To: k@numeri.campus.luth.se To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/20327: [PATCH] src/sys/conf/Makefile.${MACHINE} should use ${KMODDIR} instead of /modules when backing up modules. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20327 >Category: misc >Synopsis: [PATCH] src/sys/conf/Makefile.${MACHINE} should use ${KMODDIR} instead of /modules when backing up modules. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jul 31 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Johan Karlsson >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: src/sys/conf/Makefile.alpha: $FreeBSD: src/sys/conf/Makefile.alpha,v 1.67 2000/07/27 03:50:25 green Exp $ src/sys/conf/Makefile.i386: $FreeBSD: src/sys/conf/Makefile.i386,v 1.197 2000/07/27 03:50:25 green Exp $ src/sys/conf/Makefile.pc98: $FreeBSD: src/sys/conf/Makefile.pc98,v 1.97 2000/07/27 03:50:25 green Exp $ >Description: When backing-up the module directory while installing modules the target should use ${KMODDIR} to determin where modules are/should be installed. >How-To-Repeat: >Fix: Index: sys/conf/Makefile.alpha =================================================================== RCS file: /host/queeg.ludd/FreeBSD-mirror/ncvs/src/sys/conf/Makefile.alpha,v retrieving revision 1.67 diff -u -r1.67 Makefile.alpha --- sys/conf/Makefile.alpha 2000/07/27 03:50:25 1.67 +++ sys/conf/Makefile.alpha 2000/07/31 19:58:57 @@ -303,12 +303,12 @@ modules-install modules-install.debug: .if !defined(NO_MODULES_OLD) - if [ -d ${DESTDIR}/modules -a -n "`ls ${DESTDIR}/modules`" ]; then \ - mkdir -p ${DESTDIR}/modules.old ; \ - cp -p ${DESTDIR}/modules/* ${DESTDIR}/modules.old ; \ + if [ -d ${DESTDIR}${KMODDIR} -a -n "`ls ${DESTDIR}${KMODDIR}`" ]; then \ + mkdir -p ${DESTDIR}${KMODDIR}.old ; \ + cp -p ${DESTDIR}${KMODDIR}/* ${DESTDIR}${KMODDIR}.old ; \ fi; .endif - -mkdir ${DESTDIR}/modules + -mkdir ${DESTDIR}${KMODDIR} cd $S/modules && env MAKEOBJDIRPREFIX=${.OBJDIR}/modules ${MAKE} install modules-reinstall modules-reinstall.debug: Index: sys/conf/Makefile.i386 =================================================================== RCS file: /host/queeg.ludd/FreeBSD-mirror/ncvs/src/sys/conf/Makefile.i386,v retrieving revision 1.197 diff -u -r1.197 Makefile.i386 --- sys/conf/Makefile.i386 2000/07/27 03:50:25 1.197 +++ sys/conf/Makefile.i386 2000/07/31 19:58:05 @@ -262,12 +262,12 @@ modules-install modules-install.debug: .if !defined(NO_MODULES_OLD) - if [ -d ${DESTDIR}/modules -a -n "`ls ${DESTDIR}/modules`" ]; then \ - mkdir -p ${DESTDIR}/modules.old; \ - cp -p ${DESTDIR}/modules/* ${DESTDIR}/modules.old; \ + if [ -d ${DESTDIR}${KMODDIR} -a -n "`ls ${DESTDIR}${KMODDIR}`" ]; then \ + mkdir -p ${DESTDIR}${KMODDIR}.old; \ + cp -p ${DESTDIR}${KMODDIR}/* ${DESTDIR}${KMODDIR}.old; \ fi; .endif - -mkdir ${DESTDIR}/modules + -mkdir ${DESTDIR}${KMODDIR} cd $S/modules && env MAKEOBJDIRPREFIX=${.OBJDIR}/modules ${MAKE} install modules-reinstall modules-reinstall.debug: Index: sys/conf/Makefile.pc98 =================================================================== RCS file: /host/queeg.ludd/FreeBSD-mirror/ncvs/src/sys/conf/Makefile.pc98,v retrieving revision 1.97 diff -u -r1.97 Makefile.pc98 --- sys/conf/Makefile.pc98 2000/07/27 03:50:25 1.97 +++ sys/conf/Makefile.pc98 2000/07/31 20:00:57 @@ -265,12 +265,12 @@ modules-install modules-install.debug: .if !defined(NO_MODULES_OLD) - if [ -d ${DESTDIR}/modules -a -n "`ls ${DESTDIR}/modules`" ]; then \ - mkdir -p ${DESTDIR}/modules.old; \ - cp -p ${DESTDIR}/modules/* ${DESTDIR}/modules.old; \ + if [ -d ${DESTDIR}${KMODDIR} -a -n "`ls ${DESTDIR}${KMODDIR}`" ]; then \ + mkdir -p ${DESTDIR}${KMODDIR}.old; \ + cp -p ${DESTDIR}${KMODDIR}/* ${DESTDIR}${KMODDIR}.old; \ fi; .endif - -mkdir ${DESTDIR}/modules + -mkdir ${DESTDIR}${KMODDIR} cd $S/modules && env MAKEOBJDIRPREFIX=${.OBJDIR}/modules ${MAKE} install modules-reinstall modules-reinstall.debug: >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 Mon Jul 31 14: 2:36 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D0AAE37B553; Mon, 31 Jul 2000 14:02:34 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA87506; Mon, 31 Jul 2000 14:02:34 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Date: Mon, 31 Jul 2000 14:02:34 -0700 (PDT) From: Message-Id: <200007312102.OAA87506@freefall.freebsd.org> To: marcel@FreeBSD.org, freebsd-bugs@FreeBSD.org, marcel@FreeBSD.org Subject: Re: misc/20325: [PATCH] allow KERNEL to be set in make.conf when using build/installkernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] allow KERNEL to be set in make.conf when using build/installkernel Responsible-Changed-From-To: freebsd-bugs->marcel Responsible-Changed-By: marcel Responsible-Changed-When: Mon Jul 31 14:01:43 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=20325 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 14: 3:26 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC19737BD7A; Mon, 31 Jul 2000 14:03:24 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA87618; Mon, 31 Jul 2000 14:03:24 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Date: Mon, 31 Jul 2000 14:03:24 -0700 (PDT) From: Message-Id: <200007312103.OAA87618@freefall.freebsd.org> To: marcel@FreeBSD.org, freebsd-bugs@FreeBSD.org, marcel@FreeBSD.org Subject: Re: misc/20326: [PATCH] installkernel fails if DESTDIR is empty Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] installkernel fails if DESTDIR is empty Responsible-Changed-From-To: freebsd-bugs->marcel Responsible-Changed-By: marcel Responsible-Changed-When: Mon Jul 31 14:03:06 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=20326 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 14: 3:56 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 18C4737B553; Mon, 31 Jul 2000 14:03:55 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA87724; Mon, 31 Jul 2000 14:03:55 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Date: Mon, 31 Jul 2000 14:03:55 -0700 (PDT) From: Message-Id: <200007312103.OAA87724@freefall.freebsd.org> To: marcel@FreeBSD.org, freebsd-bugs@FreeBSD.org, marcel@FreeBSD.org Subject: Re: misc/20327: [PATCH] src/sys/conf/Makefile.${MACHINE} should use ${KMODDIR} instead of /modules when backing up modules. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] src/sys/conf/Makefile.${MACHINE} should use ${KMODDIR} instead of /modules when backing up modules. Responsible-Changed-From-To: freebsd-bugs->marcel Responsible-Changed-By: marcel Responsible-Changed-When: Mon Jul 31 14:03:36 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=20327 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 14:20: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B04237BD2C for ; Mon, 31 Jul 2000 14:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA90909; Mon, 31 Jul 2000 14:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id D590A37B7D0 for ; Mon, 31 Jul 2000 14:14:30 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id OAA88993; Mon, 31 Jul 2000 14:14:30 -0700 (PDT) (envelope-from obrien) Message-Id: <200007312114.OAA88993@dragon.nuxi.com> Date: Mon, 31 Jul 2000 14:14:30 -0700 (PDT) From: "David O'Brien" Reply-To: obrien@NUXI.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/20328: missing ports categories from Sysinstall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20328 >Category: bin >Synopsis: missing ports categories from Sysinstall >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: Mon Jul 31 14:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: David O'Brien >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: 4.1-R sysinstall >Description: In the package listing, "linux" has "No description provided". Same for "tcl83". >How-To-Repeat: >Fix: >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 Mon Jul 31 14:40:13 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 156C237BA79; Mon, 31 Jul 2000 14:40:09 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA93512; Mon, 31 Jul 2000 14:40:09 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Mon, 31 Jul 2000 14:40:09 -0700 (PDT) From: Message-Id: <200007312140.OAA93512@freefall.freebsd.org> To: sluggo@unknown.nu, jedgar@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/19742: Kernel compile crashes under 3.5 with sbvxi0 added Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Kernel compile crashes under 3.5 with sbvxi0 added State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Mon Jul 31 14:38:46 PDT 2000 State-Changed-Why: Submitter reports compile works when adding sbmidi0 device. http://www.freebsd.org/cgi/query-pr.cgi?pr=19742 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 14:46:20 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A8A737BCB1; Mon, 31 Jul 2000 14:46:18 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA94235; Mon, 31 Jul 2000 14:46:18 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Mon, 31 Jul 2000 14:46:18 -0700 (PDT) From: Message-Id: <200007312146.OAA94235@freefall.freebsd.org> To: sbauer@hardrock.sdsmt.edu, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/5522: [PATCH] ip_input.c & ip_output.c problems when trying to use ipfilter Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] ip_input.c & ip_output.c problems when trying to use ipfilter State-Changed-From-To: suspended->closed State-Changed-By: nbm State-Changed-When: Mon Jul 31 14:44:48 PDT 2000 State-Changed-Why: We're not using remotely the same methods anymore (kld, not lkm), and ipfilter seems to build fine on all recent releases, so this PR can be closed. http://www.freebsd.org/cgi/query-pr.cgi?pr=5522 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 18: 9:27 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B3B837BDB4; Mon, 31 Jul 2000 18:09:24 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA18364; Mon, 31 Jul 2000 18:09:24 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Date: Mon, 31 Jul 2000 18:09:24 -0700 (PDT) From: Message-Id: <200008010109.SAA18364@freefall.freebsd.org> To: obrien@FreeBSD.org, freebsd-bugs@FreeBSD.org, jhb@FreeBSD.org Subject: Re: bin/20328: missing ports categories from Sysinstall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: missing ports categories from Sysinstall Responsible-Changed-From-To: freebsd-bugs->jhb Responsible-Changed-By: obrien Responsible-Changed-When: Mon Jul 31 18:09:07 PDT 2000 Responsible-Changed-Why: he wanted it... :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=20328 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 19:20: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B91537BDCA for ; Mon, 31 Jul 2000 19:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA25812; Mon, 31 Jul 2000 19:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hand.dotat.at (sfo-gw.covalent.net [207.44.198.62]) by hub.freebsd.org (Postfix) with ESMTP id 71E5937BDB4 for ; Mon, 31 Jul 2000 19:16:05 -0700 (PDT) (envelope-from fanf@dotat.at) Received: from fanf by hand.dotat.at with local (Exim 3.15 #3) id 13JRbD-0001xv-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 01 Aug 2000 02:16:07 +0000 Message-Id: Date: Tue, 01 Aug 2000 02:16:07 +0000 From: Tony Finch Reply-To: Tony Finch To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/20331: dhclient configures the broadcast address incorrectly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20331 >Category: bin >Synopsis: dhclient configures the broadcast address incorrectly >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jul 31 19:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Tony Finch >Release: FreeBSD 4.1-STABLE-20000729 i386 >Organization: dotat >Environment: FreeBSD hand.dotat.at 4.1-STABLE-20000729 FreeBSD 4.1-STABLE-20000729 #0: Sun Jul 30 00:30:12 UTC 2000 root@hand.dotat.at:/other/obj/other/src/sys/DELL-Latitude-CPx i386 >Description: dhclient configures the broadcast address of an interface to the subnet's base address >How-To-Repeat: This is the situation on my machine right now. fanf@hand.dotat.at:~ :; ifconfig -a lo0: flags=8049 mtu 16384 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 inet6 ::1 prefixlen 128 inet 127.0.0.1 netmask 0xff000000 ed0: flags=8843 mtu 1500 inet6 fe80::280:c8ff:fe87:ec91%ed0 prefixlen 64 scopeid 0x2 inet 10.0.0.35 netmask 0xffffff00 broadcast 10.0.0.0 ether 00:80:c8:87:ec:91 fanf@hand.dotat.at:~ :; ps aux | grep dhc fanf 7528 0.0 0.4 1036 512 p1 S+ 2:14AM 0:00.00 grep dhc root 1277 0.0 0.2 536 280 ?? Is 4:45AM 0:00.00 /sbin/dhclient ed0 fanf@hand.dotat.at:~ :; >Fix: Fortunately it's just a simple cut & paste coding error. --- dhclient.c.orig Thu Jul 20 20:29:53 2000 +++ dhclient.c Tue Aug 1 02:11:22 2000 @@ -1972,7 +1972,7 @@ if (broadcast.len) { client_envadd (ip -> client, prefix, "broadcast_address", - "%s", piaddr (subnet)); + "%s", piaddr (broadcast)); } } } >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 Mon Jul 31 20:20: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C07F337BDE0 for ; Mon, 31 Jul 2000 20:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA32051; Mon, 31 Jul 2000 20:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 87D7937B7B0; Mon, 31 Jul 2000 20:11:25 -0700 (PDT) Message-Id: <20000801031125.87D7937B7B0@hub.freebsd.org> Date: Mon, 31 Jul 2000 20:11:25 -0700 (PDT) From: mike@sentex.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/20332: http fetch broke with some sites somewhere around 4.1RC3 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20332 >Category: i386 >Synopsis: http fetch broke with some sites somewhere around 4.1RC3 >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: Mon Jul 31 20:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mike Tancsa >Release: 4.1STABLE >Organization: Sentex Communication >Environment: 4.1-STABLE FreeBSD 4.1-STABLE #0: Sun Jul 30 01:52:06 EDT 2000 >Description: newmail% fetch http://www.microsoft.com/default.htm Receiving default.htm (15957 bytes): 100% 15957 bytes transferred in 0.3 seconds (46.87 kBps) newmail% fetch http://www.netscape.com/index.html Receiving index.html (4294967295 bytes): 0% 44914 bytes transferred in 1.1 seconds (38.51 kBps) fetch: index.html appears to be truncated: 44914/4294967295 bytes newmail% From an older RC1 box, (4.1-RC FreeBSD 4.1-RC #0: Fri Jul 14) all is fine. Works with microsoft and a few other locations, but gives this truncated error with other sites. So far, I have only seen it via http and not ftp. I started seeing for a few days. This is a direct connection, no proxies. >How-To-Repeat: newmail% fetch http://www.microsoft.com/default.htm Receiving default.htm (15957 bytes): 100% 15957 bytes transferred in 0.3 seconds (46.87 kBps) newmail% fetch http://www.netscape.com/index.html Receiving index.html (4294967295 bytes): 0% 44914 bytes transferred in 1.1 seconds (38.51 kBps) fetch: index.html appears to be truncated: 44914/4294967295 bytes >Fix: Dont know >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 Mon Jul 31 22:10: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1214037B59B for ; Mon, 31 Jul 2000 22:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA46678; Mon, 31 Jul 2000 22:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 31 Jul 2000 22:10:02 -0700 (PDT) Message-Id: <200008010510.WAA46678@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Florin Iucha Subject: Re: i386/20286: FreeBSD installer cannot detect my 3C905B network, so I cannot do network install Reply-To: Florin Iucha Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/20286; it has been noted by GNATS. From: Florin Iucha To: freebsd-gnats-submit@FreeBSD.ORG Cc: Subject: Re: i386/20286: FreeBSD installer cannot detect my 3C905B network, so I cannot do network install Date: Mon, 31 Jul 2000 23:25:34 -0500 (CDT) On Mon, 31 Jul 2000, Alexander Langer wrote: > Thus spake fiucha@crosswinds.net (fiucha@crosswinds.net): > > > The network board is fine since I have installed (and working normally) OpenBSD 2.7 on the same machine. > > Could you maybe send the output of pciconf or the equivalent tools on > OpenBSD or Linux, to show which chip-id's the card have? > Maybe its a smooth variant our code doesn't know yet. On OpenBSD 2.7 I did a search for "*pci* and I have found /usr/X11/bin/scanpci It's output: --------------cut here--------------------- PCI says configuration type 2 PCI probing configuration type 2 pci bus 0x0 slot at 0xc000, vendor 0x10b9 device 0x1451 ALI M1451 pci bus 0x0 slot at 0xc200, vendor 0x10b9 device 0x1449 ALI M1449 pci bus 0x0 slot at 0xc300, vendor 0x10b7 device 0x9050 3COM 3C905 100bTX pci bus 0x0 slot at 0xc400, vendor 0x1013 device 0x00b8 Cirrus Logic GD 5446 pci bus 0x0 slot at 0xc600, vendor 0x1095 device 0x0640 CMD 640A --------------cut here--------------------- Hope this helps, florin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jul 31 22:40: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EC2BF37BE35 for ; Mon, 31 Jul 2000 22:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA51655; Mon, 31 Jul 2000 22:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 5552637B59B; Mon, 31 Jul 2000 22:38:01 -0700 (PDT) Message-Id: <20000801053801.5552637B59B@hub.freebsd.org> Date: Mon, 31 Jul 2000 22:38:01 -0700 (PDT) From: pscott@the-frontier.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/20333: ftp login fails on unix password when s/key active but not required Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20333 >Category: misc >Synopsis: ftp login fails on unix password when s/key active but not required >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: Mon Jul 31 22:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Paul A. Scott >Release: FreeBSD 4.0-RELEASE i386 >Organization: >Environment: FreeBSD mail 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Sun Jun 4 00:17:00 GMT 2000 root@ns1:/usr/src/sys/compile/MIKETODD >Description: If a userid has an s/key, but s/key is not required for login, ftp should allow a unix password, but it does not; only the s/key password works. This problem does not happen with telnet. telnet allows unix password, ftp does not. Problem first noticed on 4.0 release; another machine running 2.2.8 has no problems with s/key on either ftp or telnet. >How-To-Repeat: Enable s/key for a userid dummy. Set up /etc/skey.access to allow unix passwords from intranet 192.168.168.0 for dummy but not from another network. permit internet 192.168.168.0 255.255.255.0 deny user dummy deny user root permit From another machine on the 192.168.168.0 network, start an ftp client to the FreeBSD machine with an interface on the same network. Log in as userid dummy. The ftp server issues an s/key challenge BUT DOES NOT REQUIRE an skey, so a unix password should be accepted. Type in dummy's unix password. The ftp server barfs, saying login incorrect. That shouldn't happen. Type in dummy's correct s/key. Dummy gets logged in. Try telnet between the same two machines. No problem using a unix password. >Fix: >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 Mon Jul 31 23: 0: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 10CEF37BD81 for ; Mon, 31 Jul 2000 23:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA53472; Mon, 31 Jul 2000 23:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from phoenix.dynamine.net (phoenix.dynamine.net [64.14.25.210]) by hub.freebsd.org (Postfix) with ESMTP id 398FE37B7A7 for ; Mon, 31 Jul 2000 22:53:01 -0700 (PDT) (envelope-from michael@dynamine.net) Received: by phoenix.dynamine.net (Postfix, from userid 1000) id 247AE183939; Mon, 31 Jul 2000 22:53:00 -0700 (PDT) Message-Id: <20000801055300.247AE183939@phoenix.dynamine.net> Date: Mon, 31 Jul 2000 22:53:00 -0700 (PDT) From: michael@dynamine.net Reply-To: "Michael S.Fischer" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/20334: Scripted sysinstall cannot configure interfaces via DHCP Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20334 >Category: misc >Synopsis: Scripted sysinstall cannot configure interfaces via DHCP >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: wish >Submitter-Id: current-users >Arrival-Date: Mon Jul 31 23:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Michael S. Fischer >Release: FreeBSD 4.0-STABLE i386 >Organization: Dynamine Consulting >Environment: >Description: It appears that one cannot use DHCP to configure the system using sysinstall's scripted installation feature. The man page for sysinstall indicates that network configuration parameters must be set manually before calling mediaSetFTP or mediaSetNFS. This means that if I were to roll out a network of, say, 200 FreeBSD boxes, I'd need to have 200 script diskettes, one for each box. This would be terribly inefficient. >How-To-Repeat: >Fix: >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 Mon Jul 31 23:50: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D87B837BA0B for ; Mon, 31 Jul 2000 23:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA59877; Mon, 31 Jul 2000 23:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nau.antar.bryansk.ru (ns2.bryansk.ru [195.239.214.80]) by hub.freebsd.org (Postfix) with ESMTP id 0A6F237BA0B for ; Mon, 31 Jul 2000 23:44:38 -0700 (PDT) (envelope-from hsw@zombie.antar.bryansk.ru) Received: from zombie.antar.bryansk.ru (zombie.antar.bryansk.ru [195.239.214.68]) by nau.antar.bryansk.ru (8.9.3/8.9.1) with ESMTP id KAA57231 for ; Tue, 1 Aug 2000 10:53:31 +0400 (MSD) Received: (from hsw@localhost) by zombie.antar.bryansk.ru (8.9.3/8.9.3) id KAA37334; Tue, 1 Aug 2000 10:44:34 +0400 (MSD) (envelope-from hsw) Message-Id: <200008010644.KAA37334@zombie.antar.bryansk.ru> Date: Tue, 1 Aug 2000 10:44:34 +0400 (MSD) From: hsw@antar.bryansk.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20335: S3Trio64V+ is detected as CGA by syscons Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20335 >Category: kern >Synopsis: S3Trio64V+ is detected as CGA by syscons >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jul 31 23:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Sergey Homenkow >Release: FreeBSD 3.5-STABLE i386 >Organization: >Environment: dmesg extracts: FreeBSD 3.5-STABLE #0: Sat Jul 29 21:30:53 MSD 2000 CPU: Pentium/P54C (199.61-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x52c Stepping = 12 chip0: rev 0x01 on pci0.0.0 chip1: rev 0x01 on pci0.7.0 ide_pci0: rev 0x01 on pci0.7.1 chip2: rev 0x01 on pci0.7.3 vga0: rev 0x00 int a irq 11 on pci0.14.0 Probing for devices on the ISA bus: sc0 on isa sc0: CGA <16 virtual consoles, flags=0x0> vga0 at 0x3d0-0x3db maddr 0xb8000 msize 32768 on isa >Description: I have S3Trio64V+ video adapter but syscons detects it as an old CGA card and I cannot load fonts therefore. >How-To-Repeat: >Fix: >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 Tue Aug 1 1:20: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 702DF37BE3A for ; Tue, 1 Aug 2000 01:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA73584; Tue, 1 Aug 2000 01:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by hub.freebsd.org (Postfix) with ESMTP id EF34637BB5F for ; Tue, 1 Aug 2000 01:14:45 -0700 (PDT) (envelope-from root@crox.cronyx.ru) Received: from crox.cronyx.ru by hanoi.cronyx.ru with ESMTP id MAA01754; (8.9.3/vak/2.1) Tue, 1 Aug 2000 12:19:22 +0400 (MSD) Received: (from root@localhost) by crox.cronyx.ru (8.9.3/8.9.3) id MAA03081; Tue, 1 Aug 2000 12:04:46 +0400 (MSD) (envelope-from root) Message-Id: <200008010819.MAA01754@hanoi.cronyx.ru> Date: Tue, 1 Aug 2000 12:19:22 +0400 (MSD) From: vak@cronyx.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20337: [patch] sio driver, support for PCI multiport cards, part 4/4 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20337 >Category: kern >Synopsis: Support for PCI multiport cards for sio driver >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Aug 01 01:20:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Serge Vakulenko >Release: FreeBSD 4.0-RELEASE i386 >Organization: Cronyx Engineering Ltd. >Environment: FreeBSD 4.0, Cronyx-Omega-PCI serial multiport adapters. >Description: To handle non-intelligent multiport async adapters, the sio driver lacks the PCI detection and attachment routines. Some rearrangment of the sio.c is also required. The patch consists of four parts: 1) sys/isa/siovar.h (new file) 2) sys/isa/sio.c (patch) 3) sys/pci/sio_pci.c (new file) 4) sys/conf/files.i386 (patch) >How-To-Repeat: >Fix: Part 4 of 4. --- files40.i386 Fri Jul 28 17:11:26 2000 +++ files.i386 Fri Jul 28 17:12:17 2000 @@ -389,6 +389,7 @@ isa/ppc.c optional ppc isa/psm.c optional psm isa/sio.c optional sio +pci/sio_pci.c optional sio pci isa/syscons_isa.c optional sc isa/vga_isa.c optional vga kern/subr_diskmbr.c standard >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 Tue Aug 1 1:20:16 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5508337BE2B for ; Tue, 1 Aug 2000 01:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA73575; Tue, 1 Aug 2000 01:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by hub.freebsd.org (Postfix) with ESMTP id 8FD6437B6A0 for ; Tue, 1 Aug 2000 01:14:20 -0700 (PDT) (envelope-from root@crox.cronyx.ru) Received: from crox.cronyx.ru by hanoi.cronyx.ru with ESMTP id MAA01757; (8.9.3/vak/2.1) Tue, 1 Aug 2000 12:19:22 +0400 (MSD) Received: (from root@localhost) by crox.cronyx.ru (8.9.3/8.9.3) id MAA02737; Tue, 1 Aug 2000 12:00:28 +0400 (MSD) (envelope-from root) Message-Id: <200008010819.MAA01757@hanoi.cronyx.ru> Date: Tue, 1 Aug 2000 12:19:22 +0400 (MSD) From: vak@cronyx.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20336: [patch] sio driver, support for PCI multiport cards, part 1/4 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20336 >Category: kern >Synopsis: Support for PCI multiport cards for sio driver >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Aug 01 01:20:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Serge Vakulenko >Release: FreeBSD 4.0-RELEASE i386 >Organization: Cronyx Engineering Ltd. >Environment: FreeBSD 4.0, Cronyx-Omega-PCI serial multiport adapters. >Description: To handle non-intelligent multiport async adapters, the sio driver lacks the PCI detection and attachment routines. Some rearrangment of the sio.c is also required. The patch consists of four parts: 1) sys/isa/siovar.h (new file) 2) sys/isa/sio.c (patch) 3) sys/pci/sio_pci.c (new file) 4) sys/conf/files.i386 (patch) >How-To-Repeat: >Fix: >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 Tue Aug 1 1:20:42 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9DD1637BE3D for ; Tue, 1 Aug 2000 01:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA73593; Tue, 1 Aug 2000 01:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by hub.freebsd.org (Postfix) with ESMTP id 8E36C37BB5F for ; Tue, 1 Aug 2000 01:15:06 -0700 (PDT) (envelope-from root@crox.cronyx.ru) Received: from crox.cronyx.ru by hanoi.cronyx.ru with ESMTP id MAA01755; (8.9.3/vak/2.1) Tue, 1 Aug 2000 12:19:22 +0400 (MSD) Received: (from root@localhost) by crox.cronyx.ru (8.9.3/8.9.3) id MAA02970; Tue, 1 Aug 2000 12:04:14 +0400 (MSD) (envelope-from root) Message-Id: <200008010819.MAA01755@hanoi.cronyx.ru> Date: Tue, 1 Aug 2000 12:19:22 +0400 (MSD) From: vak@cronyx.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20338: [patch] sio driver, support for PCI multiport cards, part 3/4 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20338 >Category: kern >Synopsis: Support for PCI multiport cards for sio driver >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Aug 01 01:20:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Serge Vakulenko >Release: FreeBSD 4.0-RELEASE i386 >Organization: Cronyx Engineering Ltd. >Environment: FreeBSD 4.0, Cronyx-Omega-PCI serial multiport adapters. >Description: To handle non-intelligent multiport async adapters, the sio driver lacks the PCI detection and attachment routines. Some rearrangment of the sio.c is also required. The patch consists of four parts: 1) sys/isa/siovar.h (new file) 2) sys/isa/sio.c (patch) 3) sys/pci/sio_pci.c (new file) 4) sys/conf/files.i386 (patch) >How-To-Repeat: >Fix: Part 3 of 4. --- /dev/null Tue Aug 1 10:55:27 2000 +++ sio_pci.c Tue Aug 1 11:38:12 2000 @@ -0,0 +1,277 @@ +/* + * Serial driver for non-intelligent PCI multiport adapters. + * Implements the probe, attach and interrupt dispatcher, + * and uses sio.c for the most part of work. + * The PCI ports get unit numbers _after_ the ISA sio ports. + * Option COM_MULTIPORT is not necessary. + * + * Copyright (C) 2000 Cronyx Engineering Ltd. + * Author: Serge Vakulenko + * + * Supports: + * Cronyx Omega-PCI adapter, by Serge Vakulenko + * + * This software is distributed with NO WARRANTIES, not even the implied + * warranties for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + * Authors grant any other persons or organisations permission to use + * or modify this software as long as this message is kept with the software, + * all derivative works or modified versions. + */ +#include +#include +#include +#include +#include +#include +#include +#include +#ifndef SMP +#include +#endif +#include +#include +#include +#include +#if __FreeBSD_version >= 400000 +#include +#include +#else +#include +#include +#include +#include +#endif +#include + +#include "sio.h" + +#define MAXCHAN 8 + +#ifndef __i386__ +#define disable_intr() +#define enable_intr() +#endif + +#ifdef SMP +#define disable_intr() COM_DISABLE_INTR() +#define enable_intr() COM_ENABLE_INTR() +#endif /* SMP */ + +typedef struct _sio_pci_t { + int nchan; + int fifo_size; + int base_reg; + int hw_rts_cts; + Port_t iobase; + Port_t iostep; + struct resource *res; + struct resource *irq; + void *intrhand; + struct com_s com [MAXCHAN]; +} sio_pci_t; + +static void sio_pci_intr __P((void *arg)); + +static int sio_pci_numunits = NSIO; + +#if __FreeBSD_version >= 400000 +/* + * FreeBSD version 4.x + */ +static int sio_pci_probe __P((device_t)); +static int sio_pci_attach __P((device_t)); + +static devclass_t siopci_devclass; + +static device_method_t sio_pci_methods[] = { + /* Device interface */ + DEVMETHOD(device_probe, sio_pci_probe), + DEVMETHOD(device_attach, sio_pci_attach), + { 0, 0 } +}; + +static driver_t sio_pci_driver = { + "siopci", + sio_pci_methods, + sizeof(sio_pci_t) +}; +DRIVER_MODULE(sio_pci, pci, sio_pci_driver, siopci_devclass, 0, 0); + +#else +/* + * FreeBSD version 3.x + */ +static const char *sio_pci_probe __P((pcici_t, pcidi_t)); +static void sio_pci_attach __P((pcici_t, int)); + +static u_long sio_pci_count; + +static struct pci_device sio_pci_device = { + "siopci", + sio_pci_probe, + sio_pci_attach, + &sio_pci_count, + NULL +}; +DATA_SET(pcidevice_set, sio_pci_device); + +#endif /* __FreeBSD_version >= 400000 */ + +#if __FreeBSD_version >= 400000 +static int +sio_pci_probe(dev) + device_t dev; +{ + u_long device_id = pci_get_vendor(dev) | pci_get_device(dev) << 16; +#else +static const char * +sio_pci_probe(config_id, device_id) + pcici_t config_id; + pcidi_t device_id; +{ +#endif + const char *desc = 0; + + if (device_id == 0xc00110b5) + desc = "Cronyx-Omega-PCI Serial Adapter"; +#ifdef notyet + /* Add your device here. */ + else if (device_id == 0xXXXXXXXX) + desc = "XXX"; +#endif + +#if __FreeBSD_version >= 400000 + if (! desc) + return ENXIO; + device_set_desc(dev, desc); + return 0; +#else + return desc; +#endif +} + +#if __FreeBSD_version >= 400000 +static int +sio_pci_attach(dev) + device_t dev; +{ + u_long device_id = pci_get_vendor(dev) | + pci_get_device(dev) << 16; + sio_pci_t *d = device_get_softc(dev); + int rid; +#define PCI_READ_CONFIG(reg) pci_read_config(dev, reg, 4) +#else +static void +sio_pci_attach(config_id, unit) + pcici_t config_id; + int unit; +{ + u_long device_id = config_id->vendor | config_id->device << 16; + sio_pci_t *d = malloc(sizeof *d, M_DEVBUF, M_WAITOK); +#define PCI_READ_CONFIG(reg) pci_conf_read(config_id, reg) +#endif + struct com_s *com; + int s, err = 0; + + bzero((char*)d, sizeof(*d)); + s = splimp(); + + /* Default values. */ + d->nchan = 8; /* channels per adapter */ + d->iostep = 8; /* addresses per channel */ + d->base_reg = 0x18; /* pci register: base addr2 */ + + /* Device dependent values. */ + if (device_id == 0xc00110b5) { + d->fifo_size = 64; /* fifo size in bytes */ + d->hw_rts_cts = 1; /* hardware rts/cts support */ + } +#ifdef notyet + else if (device_id == 0xXXXXXXXX) { + /* Add your device here. */ + } +#endif + +#if __FreeBSD_version >= 400000 + /* Allocate i/o region. */ + rid = d->base_reg; + d->res = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, 0, ~0, 1, + RF_ACTIVE); + if (! d->res) { + printf("sio%d: couldn't map ports/memory\n", sio_pci_numunits); + err = ENXIO; + goto fail; + } + + /* Allocate interrupt. */ + rid = 0; + d->irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1, + RF_SHAREABLE | RF_ACTIVE); + if (! d->irq) { + printf("sio%d: couldn't map interrupt\n", sio_pci_numunits); + err = ENXIO; + goto fail; + } + + /* Register the interrupt handler. */ + err = bus_setup_intr(dev, d->irq, INTR_TYPE_TTY | INTR_TYPE_FAST, + sio_pci_intr, d, &d->intrhand); +#else + err = ! pci_map_int_right(config_id, sio_pci_intr, d, &tty_imask, + INTR_FAST); +#endif + if (err) { + printf("sio%d: couldn't set up irq\n", sio_pci_numunits); +#if __FreeBSD_version >= 400000 +fail: if (d->res) + bus_release_resource(dev, SYS_RES_IOPORT, + d->base_reg, d->res); + if (d->irq) + bus_release_resource(dev, SYS_RES_IRQ, 0, d->irq); +#endif + goto done; + } + + /* Attach sio ports. */ + d->iobase = PCI_READ_CONFIG (d->base_reg) & ~3; + for (com=d->com; comcom+d->nchan; ++com) { + com->iobase = d->iobase + (com - d->com) * d->iostep; + + /* Interrupt enable, do it _before_ sio_attach_unit. */ + outb(com->iobase + com_mcr, MCR_IENABLE); + + if (sio_attach_unit(com, sio_pci_numunits++, com->iobase, + d->fifo_size << 24, 0) != 0) + printf("sio%d: cannot attach\n", sio_pci_numunits); + + /* Must do this _after_ sio_attach_unit. */ + com->st16650a = d->hw_rts_cts; + } +done: + splx (s); +#if __FreeBSD_version >= 400000 + return err; +#endif +} + +static void +sio_pci_intr(arg) + void *arg; +{ + sio_pci_t *d = arg; + struct com_s *com; + bool_t possibly_more_intrs; + + disable_intr(); + do { + possibly_more_intrs = FALSE; + for (com=d->com; comcom+d->nchan; ++com) { + if ((inb(com->int_id_port) & IIR_IMASK) != IIR_NOPEND) { + siointr1(com); + possibly_more_intrs = TRUE; + } + } + } while (possibly_more_intrs); + enable_intr(); +} >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 Tue Aug 1 1:20:44 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC9F837BE45 for ; Tue, 1 Aug 2000 01:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA73602; Tue, 1 Aug 2000 01:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by hub.freebsd.org (Postfix) with ESMTP id B5E9937BB5F for ; Tue, 1 Aug 2000 01:15:31 -0700 (PDT) (envelope-from root@crox.cronyx.ru) Received: from crox.cronyx.ru by hanoi.cronyx.ru with ESMTP id MAA01756; (8.9.3/vak/2.1) Tue, 1 Aug 2000 12:19:22 +0400 (MSD) Received: (from root@localhost) by crox.cronyx.ru (8.9.3/8.9.3) id MAA02859; Tue, 1 Aug 2000 12:03:35 +0400 (MSD) (envelope-from root) Message-Id: <200008010819.MAA01756@hanoi.cronyx.ru> Date: Tue, 1 Aug 2000 12:19:22 +0400 (MSD) From: vak@cronyx.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20339: [patch] sio driver, support for PCI multiport cards, part 2/4 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20339 >Category: kern >Synopsis: Support for PCI multiport cards for sio driver >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Aug 01 01:20:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Serge Vakulenko >Release: FreeBSD 4.0-RELEASE i386 >Organization: Cronyx Engineering Ltd. >Environment: FreeBSD 4.0, Cronyx-Omega-PCI serial multiport adapters. >Description: To handle non-intelligent multiport async adapters, the sio driver lacks the PCI detection and attachment routines. Some rearrangment of the sio.c is also required. The patch consists of four parts: 1) sys/isa/siovar.h (new file) 2) sys/isa/sio.c (patch) 3) sys/pci/sio_pci.c (new file) 4) sys/conf/files.i386 (patch) >How-To-Repeat: >Fix: Part 2 of 4. 1) Move the struct com_s definition to separate file siovar.h. 2) Split the sioattach() routine. Leave the isa-dependent part in sioattach(), and build the (public) bus-independent attachment function sio_attach_unit(). 3) Make siointr1 public. --- sio40.c Wed Jul 26 17:32:07 2000 +++ sio.c Fri Jul 28 14:01:54 2000 @@ -82,6 +82,7 @@ #include #include +#include #ifdef COM_ESP #include @@ -167,113 +168,8 @@ "tty-level buffer overflow", }; -#define CE_NTYPES 3 #define CE_RECORD(com, errnum) (++(com)->delta_error_counts[errnum]) -/* types. XXX - should be elsewhere */ -typedef u_int Port_t; /* hardware port */ -typedef u_char bool_t; /* boolean */ - -/* queue of linear buffers */ -struct lbq { - u_char *l_head; /* next char to process */ - u_char *l_tail; /* one past the last char to process */ - struct lbq *l_next; /* next in queue */ - bool_t l_queued; /* nonzero if queued */ -}; - -/* com device structure */ -struct com_s { - u_int flags; /* Copy isa device flags */ - u_char state; /* miscellaneous flag bits */ - bool_t active_out; /* nonzero if the callout device is open */ - u_char cfcr_image; /* copy of value written to CFCR */ -#ifdef COM_ESP - bool_t esp; /* is this unit a hayes esp board? */ -#endif - u_char extra_state; /* more flag bits, separate for order trick */ - u_char fifo_image; /* copy of value written to FIFO */ - bool_t hasfifo; /* nonzero for 16550 UARTs */ - bool_t st16650a; /* Is a Startech 16650A or RTS/CTS compat */ - bool_t loses_outints; /* nonzero if device loses output interrupts */ - u_char mcr_image; /* copy of value written to MCR */ -#ifdef COM_MULTIPORT - bool_t multiport; /* is this unit part of a multiport device? */ -#endif /* COM_MULTIPORT */ - bool_t no_irq; /* nonzero if irq is not attached */ - bool_t gone; /* hardware disappeared */ - bool_t poll; /* nonzero if polling is required */ - bool_t poll_output; /* nonzero if polling for output is required */ - int unit; /* unit number */ - int dtr_wait; /* time to hold DTR down on close (* 1/hz) */ - u_int tx_fifo_size; - u_int wopeners; /* # processes waiting for DCD in open() */ - - /* - * The high level of the driver never reads status registers directly - * because there would be too many side effects to handle conveniently. - * Instead, it reads copies of the registers stored here by the - * interrupt handler. - */ - u_char last_modem_status; /* last MSR read by intr handler */ - u_char prev_modem_status; /* last MSR handled by high level */ - - u_char hotchar; /* ldisc-specific char to be handled ASAP */ - u_char *ibuf; /* start of input buffer */ - u_char *ibufend; /* end of input buffer */ - u_char *ibufold; /* old input buffer, to be freed */ - u_char *ihighwater; /* threshold in input buffer */ - u_char *iptr; /* next free spot in input buffer */ - int ibufsize; /* size of ibuf (not include error bytes) */ - int ierroff; /* offset of error bytes in ibuf */ - - struct lbq obufq; /* head of queue of output buffers */ - struct lbq obufs[2]; /* output buffers */ - - Port_t data_port; /* i/o ports */ -#ifdef COM_ESP - Port_t esp_port; -#endif - Port_t int_id_port; - Port_t iobase; - Port_t modem_ctl_port; - Port_t line_status_port; - Port_t modem_status_port; - Port_t intr_ctl_port; /* Ports of IIR register */ - - struct tty *tp; /* cross reference */ - - /* Initial state. */ - struct termios it_in; /* should be in struct tty */ - struct termios it_out; - - /* Lock state. */ - struct termios lt_in; /* should be in struct tty */ - struct termios lt_out; - - bool_t do_timestamp; - bool_t do_dcd_timestamp; - struct timeval timestamp; - struct timeval dcd_timestamp; - struct pps_state pps; - - u_long bytes_in; /* statistics */ - u_long bytes_out; - u_int delta_error_counts[CE_NTYPES]; - u_long error_counts[CE_NTYPES]; - - struct resource *irqres; - struct resource *ioportres; - void *cookie; - - /* - * Data area for output buffers. Someday we should build the output - * buffer queue without copying data. - */ - u_char obuf1[256]; - u_char obuf2[256]; -}; - #ifdef COM_ESP static int espattach __P((struct com_s *com, Port_t esp_port)); #endif @@ -284,7 +180,6 @@ static timeout_t siodtrwakeup; static void comhardclose __P((struct com_s *com)); static void sioinput __P((struct com_s *com)); -static void siointr1 __P((struct com_s *com)); static void siointr __P((void *arg)); static int commctl __P((struct com_s *com, int bits, int how)); static int comparam __P((struct tty *tp, struct termios *t)); @@ -309,8 +204,8 @@ /* table and macro for fast conversion from a unit number to its com struct */ static devclass_t sio_devclass; -#define com_addr(unit) ((struct com_s *) \ - devclass_get_softc(sio_devclass, unit)) +static struct com_s *p_com_addr[SIO_MAXUNITS]; +#define com_addr(unit) (p_com_addr[unit]) static device_method_t sio_isa_methods[] = { /* Device interface */ @@ -969,32 +864,19 @@ return (sioattach(dev)); } -static int -sioattach(dev) - device_t dev; -{ +int +sio_attach_unit(com, unit, iobase, flags, no_irq) struct com_s *com; + int unit; + Port_t iobase; + u_int flags; + bool_t no_irq; +{ #ifdef COM_ESP Port_t *espp; #endif - Port_t iobase; - int unit; - u_int flags; - int rid; - struct resource *port; - int ret; - - rid = 0; - port = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, - 0, ~0, IO_COMSIZE, RF_ACTIVE); - if (!port) - return (ENXIO); - - iobase = rman_get_start(port); - unit = device_get_unit(dev); - com = device_get_softc(dev); - flags = device_get_flags(dev); - + if (unit >= SIO_MAXUNITS) + return ENXIO; if (unit >= sio_numunits) sio_numunits = unit + 1; /* @@ -1011,11 +893,10 @@ */ bzero(com, sizeof *com); com->unit = unit; - com->ioportres = port; com->cfcr_image = CFCR_8BITS; com->dtr_wait = 3 * hz; com->loses_outints = COM_LOSESOUTINTS(flags) != 0; - com->no_irq = bus_get_resource(dev, SYS_RES_IRQ, 0, NULL, NULL) != 0; + com->no_irq = no_irq; com->tx_fifo_size = 1; com->obufs[0].l_head = com->obuf1; com->obufs[1].l_head = com->obuf2; @@ -1052,12 +933,6 @@ com->it_in.c_ispeed = com->it_in.c_ospeed = TTYDEF_SPEED; if (siosetwater(com, com->it_in.c_ispeed) != 0) { enable_intr(); - /* - * Leave i/o resources allocated if this is a `cn'-level - * console, so that other devices can't snarf them. - */ - if (iobase != siocniobase) - bus_release_resource(dev, SYS_RES_IOPORT, rid, port); return (ENOMEM); } enable_intr(); @@ -1164,17 +1039,11 @@ #ifdef COM_MULTIPORT if (COM_ISMULTIPORT(flags)) { - device_t masterdev; - com->multiport = TRUE; printf(" (multiport"); if (unit == COM_MPMASTER(flags)) printf(" master"); printf(")"); - masterdev = devclass_get_device(sio_devclass, - COM_MPMASTER(flags)); - com->no_irq = (masterdev == NULL || bus_get_resource(masterdev, - SYS_RES_IRQ, 0, NULL, NULL) != 0); } #endif /* COM_MULTIPORT */ if (unit == comconsole) @@ -1183,6 +1052,8 @@ printf(" with a bogus IIR_TXRDY register"); printf("\n"); + com_addr(unit) = com; + if (!sio_registered) { register_swi(SWI_TTY, siopoll); sio_registered = TRUE; @@ -1203,6 +1074,50 @@ com->pps.ppscap = PPS_CAPTUREASSERT | PPS_CAPTURECLEAR; pps_init(&com->pps); + return (0); +} + +static int +sioattach(dev) + device_t dev; +{ + int rid, ret, no_irq; + struct resource *port; + struct com_s *com; + Port_t iobase; + u_int flags; + + rid = 0; + port = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, + 0, ~0, IO_COMSIZE, RF_ACTIVE); + if (!port) + return (ENXIO); + + iobase = rman_get_start(port); + com = device_get_softc(dev); + flags = device_get_flags(dev); + +#ifdef COM_MULTIPORT + if (COM_ISMULTIPORT(flags)) { + device_t masterdev; + + masterdev = devclass_get_device(sio_devclass, + COM_MPMASTER(flags)); + no_irq = (masterdev == NULL || bus_get_resource(masterdev, + SYS_RES_IRQ, 0, NULL, NULL) != 0); + } else +#endif /* COM_MULTIPORT */ + no_irq = bus_get_resource(dev, SYS_RES_IRQ, 0, NULL, NULL) != 0; + + ret = sio_attach_unit(com, device_get_unit(dev), iobase, flags, no_irq); + if (ret != 0) { + /* Leave i/o resources allocated if this is a `cn'-level + * console, so that other devices can't snarf them. */ + if (iobase != siocniobase) + bus_release_resource(dev, SYS_RES_IOPORT, rid, port); + return ret; + } + rid = 0; com->irqres = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0ul, ~0ul, 1, RF_ACTIVE); @@ -1220,8 +1135,8 @@ if (ret) device_printf(dev, "could not activate interrupt\n"); } - - return (0); + com->ioportres = port; + return 0; } static int @@ -1713,7 +1628,7 @@ #endif /* COM_MULTIPORT */ } -static void +void siointr1(com) struct com_s *com; { >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 Tue Aug 1 1:30:50 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4CBAD37B512; Tue, 1 Aug 2000 01:30:49 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA74602; Tue, 1 Aug 2000 01:30:49 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 1 Aug 2000 01:30:49 -0700 (PDT) From: Message-Id: <200008010830.BAA74602@freefall.freebsd.org> To: eric@minbari.ods.org, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/20318: RELENG_4 GENERIC kernel fails on make depend Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: RELENG_4 GENERIC kernel fails on make depend State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Aug 1 01:30:11 PDT 2000 State-Changed-Why: You need to read the "COMMON ITEMS" section (at least) of the src/UPDATING file. In fact, you should really check out the whole thing. :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=20318 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 1:32:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BF31D37B6D3; Tue, 1 Aug 2000 01:32:09 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA74824; Tue, 1 Aug 2000 01:32:09 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 1 Aug 2000 01:32:09 -0700 (PDT) From: Message-Id: <200008010832.BAA74824@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, obrien@FreeBSD.org Subject: Re: bin/20331: dhclient configures the broadcast address incorrectly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: dhclient configures the broadcast address incorrectly Responsible-Changed-From-To: freebsd-bugs->obrien Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Aug 1 01:31:45 PDT 2000 Responsible-Changed-Why: David, this one contains a patch. :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=20331 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 1:32:42 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D087837BF11; Tue, 1 Aug 2000 01:32:40 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA74912; Tue, 1 Aug 2000 01:32:40 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 1 Aug 2000 01:32:40 -0700 (PDT) From: Message-Id: <200008010832.BAA74912@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, des@FreeBSD.org Subject: Re: i386/20332: http fetch broke with some sites somewhere around 4.1RC3 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: http fetch broke with some sites somewhere around 4.1RC3 Responsible-Changed-From-To: freebsd-bugs->des Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Aug 1 01:32:18 PDT 2000 Responsible-Changed-Why: DES maintains fetch(1) now. http://www.freebsd.org/cgi/query-pr.cgi?pr=20332 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 1:40: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3DEDA37BE65 for ; Tue, 1 Aug 2000 01:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA75794; Tue, 1 Aug 2000 01:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 1 Aug 2000 01:40:03 -0700 (PDT) Message-Id: <200008010840.BAA75794@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/20336: [patch] sio driver, support for PCI multiport cards, part 1/4 Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/20336; it has been noted by GNATS. From: Sheldon Hearn To: vak@cronyx.ru Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/20336: [patch] sio driver, support for PCI multiport cards, part 1/4 Date: Tue, 01 Aug 2000 10:35:04 +0200 Just do what everyone else in the known universe does and send the whole patchset in on a single PR, please. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 2:11:19 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8711D37B5E1; Tue, 1 Aug 2000 02:11:17 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA82238; Tue, 1 Aug 2000 02:11:17 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 1 Aug 2000 02:11:17 -0700 (PDT) From: Message-Id: <200008010911.CAA82238@freefall.freebsd.org> To: vak@cronyx.ru, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/20337: Support for PCI multiport cards for sio driver Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Support for PCI multiport cards for sio driver State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Aug 1 02:10:55 PDT 2000 State-Changed-Why: Originator has been asked to send the entire patchkit in a single PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=20337 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 2:11:32 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DFE737B5E1; Tue, 1 Aug 2000 02:11:31 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA82709; Tue, 1 Aug 2000 02:11:31 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 1 Aug 2000 02:11:31 -0700 (PDT) From: Message-Id: <200008010911.CAA82709@freefall.freebsd.org> To: vak@cronyx.ru, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/20336: Support for PCI multiport cards for sio driver Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Support for PCI multiport cards for sio driver State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Aug 1 02:11:24 PDT 2000 State-Changed-Why: Originator has been asked to send the entire patchkit in a single PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=20336 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 2:11:58 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3548C37B5E1; Tue, 1 Aug 2000 02:11:55 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA83290; Tue, 1 Aug 2000 02:11:55 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 1 Aug 2000 02:11:55 -0700 (PDT) From: Message-Id: <200008010911.CAA83290@freefall.freebsd.org> To: vak@cronyx.ru, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/20338: Support for PCI multiport cards for sio driver Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Support for PCI multiport cards for sio driver State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Aug 1 02:11:39 PDT 2000 State-Changed-Why: Originator has been asked to send the entire patchkit in a single PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=20338 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 2:12:15 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 67DA437B5E1; Tue, 1 Aug 2000 02:12:13 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA83442; Tue, 1 Aug 2000 02:12:13 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 1 Aug 2000 02:12:13 -0700 (PDT) From: Message-Id: <200008010912.CAA83442@freefall.freebsd.org> To: vak@cronyx.ru, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/20339: Support for PCI multiport cards for sio driver Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Support for PCI multiport cards for sio driver State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Tue Aug 1 02:12:03 PDT 2000 State-Changed-Why: Originator has been asked to send the entire patchkit in a single PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=20339 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 2:13:32 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 44E5137B5E9; Tue, 1 Aug 2000 02:13:31 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA83691; Tue, 1 Aug 2000 02:13:31 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 1 Aug 2000 02:13:31 -0700 (PDT) From: Message-Id: <200008010913.CAA83691@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: misc/20334: Scripted sysinstall cannot configure interfaces via DHCP Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Scripted sysinstall cannot configure interfaces via DHCP Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Aug 1 02:12:41 PDT 2000 Responsible-Changed-Why: Mr Stokely, this one doesn't contain any possible solutions, but it looks like something worth addressing. http://www.freebsd.org/cgi/query-pr.cgi?pr=20334 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 2:15:54 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A95B37BE09; Tue, 1 Aug 2000 02:15:52 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA84201; Tue, 1 Aug 2000 02:15:52 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 1 Aug 2000 02:15:52 -0700 (PDT) From: Message-Id: <200008010915.CAA84201@freefall.freebsd.org> To: hsw@antar.bryansk.ru, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, yokota@FreeBSD.org Subject: Re: kern/20335: S3Trio64V+ is detected as CGA by syscons Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: S3Trio64V+ is detected as CGA by syscons State-Changed-From-To: open->feedback State-Changed-By: sheldonh State-Changed-When: Tue Aug 1 02:15:00 PDT 2000 State-Changed-Why: Could you send dmesg(8) output from the box after it's been started with ``boot -v'' from the loader prompt? Responsible-Changed-From-To: freebsd-bugs->yokota Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Aug 1 02:15:00 PDT 2000 Responsible-Changed-Why: Yokota-san is the syscons maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=20335 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 2:47:59 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from nau.antar.bryansk.ru (ns2.bryansk.ru [195.239.214.80]) by hub.freebsd.org (Postfix) with ESMTP id D63FE37BE09; Tue, 1 Aug 2000 02:47:46 -0700 (PDT) (envelope-from hsw@antar.bryansk.ru) Received: from referent.intranet.antar.bryansk.ru (cream.antar.bryansk.ru [195.239.214.82]) by nau.antar.bryansk.ru (8.9.3/8.9.1) with ESMTP id NAA99024; Tue, 1 Aug 2000 13:56:41 +0400 (MSD) Date: Tue, 1 Aug 2000 13:47:37 +0400 From: Sergey Homenkow X-Mailer: The Bat! (v1.39) Educational Reply-To: Sergey Homenkow Organization: SSI X-Priority: 3 (Normal) Message-ID: <8574.000801@antar.bryansk.ru> To: sheldonh@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org, yokota@FreeBSD.org Subject: Re[2]: kern/20335: S3Trio64V+ is detected as CGA by syscons In-reply-To: <200008010915.CAA84201@freefall.freebsd.org> References: <200008010915.CAA84201@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello sheldonh, Tuesday, August 01, 2000, 1:15:52 PM, you wrote: sFo> Synopsis: S3Trio64V+ is detected as CGA by syscons sFo> State-Changed-From-To: open->feedback sFo> State-Changed-By: sheldonh sFo> State-Changed-When: Tue Aug 1 02:15:00 PDT 2000 sFo> State-Changed-Why: sFo> Could you send dmesg(8) output from the box after it's been sFo> started with ``boot -v'' from the loader prompt? sFo> Responsible-Changed-From-To: freebsd-bugs->yokota sFo> Responsible-Changed-By: sheldonh sFo> Responsible-Changed-When: Tue Aug 1 02:15:00 PDT 2000 sFo> Responsible-Changed-Why: sFo> Yokota-san is the syscons maintainer. sFo> http://www.freebsd.org/cgi/query-pr.cgi?pr=20335 Copyright (c) 1992-1999 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 3.5-STABLE #0: Sat Jul 29 21:30:53 MSD 2000 root@zombie.antar.bryansk.ru:/usr/local/src/src3/sys/compile/ZOMBIE Calibrating clock(s) ... TSC clock: 199616911 Hz, i8254 clock: 1193210 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz CLK_USE_TSC_CALIBRATION not specified - using old calibration method Timecounter "TSC" frequency 199613058 Hz CPU: Pentium/P54C (199.61-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x52c Stepping = 12 Features=0x1bf real memory = 134217728 (131072K bytes) Physical memory chunk(s): 0x00001000 - 0x0009efff, 647168 bytes (158 pages) 0x002bc000 - 0x07ff5fff, 131309568 bytes (32058 pages) config> di ppc0 config> config> port ed0 0x300 config> di apm0 No such device: apm0 Invalid command or syntax. Type `?' for help. config> fl wdc0 0xa0ffa0ff config> fl wdc1 0xa0ffa0ff config> fl sio0 0x20011 config> fl sio1 0x20001 config> q avail memory = 127356928 (124372K bytes) Found BIOS32 Service Directory header at 0xc00f7730 Entry = 0xfd7c0 (0xc00fd7c0) Rev = 0 Len = 1 PCI BIOS entry at 0x21c DMI header at 0xc00f7720 Version 2.0 Table at 0xf0c90, 36 entries, 1207 bytes Other BIOS signatures found: ACPI: 00000000 $PnP: 000f7760 Preloaded elf kernel "kernel" at 0xc02a3000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc02a309c. pci_open(1): mode 1 addr port (0x0cf8) is 0x80003904 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=71008086) Probing for devices on PCI bus 0: found-> vendor=0x8086, dev=0x7100, revid=0x01 class=06-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 chip0: rev 0x01 on pci0.0.0 found-> vendor=0x8086, dev=0x7110, revid=0x01 class=06-01-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 chip1: rev 0x01 on pci0.7.0 found-> vendor=0x8086, dev=0x7111, revid=0x01 class=01-01-80, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[0]: type 4, range 32, base 0000fcd0, size 4 ide_pci0: rev 0x01 on pci0.7.1 intel_piix_status: primary master sample = 3, master recovery = 1 intel_piix_status: primary master fastDMAonly disabled, pre/post enabled, intel_piix_status: IORDY sampling enabled, intel_piix_status: fast PIO enabled intel_piix_status: primary slave sample = 3, slave recovery = 1 intel_piix_status: primary slave fastDMAonly disabled, pre/post enabled, intel_piix_status: IORDY sampling enabled, intel_piix_status: fast PIO enabled ide_pci: busmaster 0 status: 40 from port: 0000fcd2 ide_pci: ide0:1 has been configured for DMA by BIOS intel_piix_status: secondary master sample = 3, master recovery = 1 intel_piix_status: secondary master fastDMAonly disabled, pre/post enabled, intel_piix_status: IORDY sampling enabled, intel_piix_status: fast PIO enabled intel_piix_status: secondary slave sample = 5, slave recovery = 4 intel_piix_status: secondary slave fastDMAonly disabled, pre/post disabled, intel_piix_status: IORDY sampling disabled, intel_piix_status: fast PIO disabled ide_pci: busmaster 1 status: 20 from port: 0000fcda ide_pci: ide1:0 has been configured for DMA by BIOS found-> vendor=0x8086, dev=0x7112, revid=0x01 class=0c-03-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=d, irq=9 map[0]: type 4, range 32, base 0000fce0, size 5 found-> vendor=0x8086, dev=0x7113, revid=0x01 class=06-80-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 chip2: rev 0x01 on pci0.7.3 found-> vendor=0x5333, dev=0x8811, revid=0x00 class=03-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[0]: type 1, range 32, base fe000000, size 23 vga0: rev 0x00 int a irq 11 on pci0.14.0 found-> vendor=0x11f6, dev=0x2011, revid=0x00 class=02-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=10 map[0]: type 4, range 32, base 0000fc00, size 7 map[1]: type 1, range 32, base fedffc00, size 7 wb0: rev 0x00 int a irq 10 on pci0.15.0 wb0: Ethernet address: 00:80:48:d8:3f:08 wb0: probing for a PHY wb0: checking address: 0 wb0: found PHY at address 0, vendor id: 180 device id: 7731 wb0: PHY type: wb0: PHY status word: 7849 wb0: 10Mbps half-duplex mode supported wb0: 10Mbps full-duplex mode supported wb0: 100Mbps half-duplex mode supported wb0: 100Mbps full-duplex mode supported wb0: autoneg supported wb0: autoneg complete, link status good (full-duplex, 100Mbps) bpf: wb0 attached Initializing PnP override table Probing for PnP devices: Trying Read_Port at 203 PnP: CSN 1 COMP_DEVICE_ID = 0x2fb0d041 CSN 1 Vendor ID: YMH0030 [0x3000a865] Serial 0x80860001 Comp ID: PNPb02f [0x2fb0d041] Called nullpnp_probe with tag 0x00000001, type 0x3000a865 Called nullpnp_probe with tag 0x00000001, type 0x2fb0d041 port 0x0220 0x0530 0x0388 0x0330 irq 5:0 drq 0:1 en 1 port 0x0220 0x0530 0x0388 0x0330 irq 5:0 drq 0:1 en 1 mss_attach 1 at 0x530 irq 5 dma 0:1 flags 0x11 setting up yamaha registers set yamaha master volume to max pcm1 (CS423x/Yamaha/AD1816 sn 0x80860001) at 0x530-0x537 irq 5 drq 0 flags 0x11 on isa Probing for devices on the ISA bus: atkbd: the current kbd controller command byte 0047 atkbd: keyboard ID 0x41ab (2) kbdc: RESET_KBD return code:00fa kbdc: RESET_KBD status:00aa sc0 on isa sc0: fb0 kbd0 sc0: CGA <16 virtual consoles, flags=0x0> ed0 not found at 0x300 atkbdc0 at 0x60-0x6f on motherboard atkbd0 irq 1 on isa kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x3d0000 psm0: current command byte:0047 kbdc: TEST_AUX_PORT status:0000 kbdc: RESET_AUX return code:00fa kbdc: RESET_AUX status:00aa kbdc: RESET_AUX ID:0000 psm: status 00 03 64 psm: status 00 00 64 psm: status 00 03 64 psm: status 00 03 64 psm: data 08 00 00 psm: data 08 00 00 psm: status 00 03 64 psm0 irq 12 on isa psm0: model IntelliMouse, device ID 3-00, 3 buttons psm0: config:00000000, flags:00000000, packet size:4 psm0: syncmask:08, syncbits:08 sio0: irq maps: 0x1 0x11 0x1 0x1 sio0 at 0x3f8-0x3ff irq 4 flags 0x20011 on isa sio0: type ST16650A sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: irq maps: 0x1 0x1 0x1 0x1 sio1: probe failed test(s): 0 1 2 4 6 7 9 sio1 not found at 0x2f8 ppc0: disabled, not probed. pca0 on motherboard pca0: PC speaker audio driver fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa wdc0 at 0x1f0-0x1f7 irq 14 flags 0xa0ffa0ff on isa intel_piix_dmainit: setting ultra DMA mode 2 wd0: wdsetmode() setting transfer mode to 42 intel_piix_status: primary master sample = 3, master recovery = 1 intel_piix_status: primary master fastDMAonly disabled, pre/post enabled, intel_piix_status: IORDY sampling enabled, intel_piix_status: fast PIO enabled wdc0: unit 0 (wd0): , DMA, 32-bit, multi-block-16 wd0: 19470MB (39876480 sectors), 39560 cyls, 16 heads, 63 S/T, 512 B/S wd0: ATA INQUIRE valid = 0007, dmamword = 0007, apio = 0003, udma = 041f wdc0: unit 1 (wd1): , DMA, 32-bit, multi-block-16 wd1: 16555MB (33906432 sectors), 33637 cyls, 16 heads, 63 S/T, 512 B/S wd1: ATA INQUIRE valid = 0007, dmamword = 0007, apio = 0003, udma = 041f wdc1 at 0x170-0x177 irq 15 flags 0xa0ffa0ff on isa wdc1: unit 0 (wd2): , DMA, 32-bit, multi-block-16 wd2: 19470MB (39876480 sectors), 39560 cyls, 16 heads, 63 S/T, 512 B/S wd2: ATA INQUIRE valid = 0007, dmamword = 0007, apio = 0003, udma = 041f vga0 at 0x3d0-0x3db maddr 0xb8000 msize 32768 on isa fb0: vga0, cga, type:CGA (3), flags:0x70041 fb0: port:0x3d0-0x3db, crtc:0x3d4, mem:0xb8000 0x8000 fb0: init mode:3, bios mode:3, current mode:3 fb0: window:0xc00b8000 size:32k gran:32k, buf:0x0 size:0k npx0 on motherboard npx0: INT 16 interface i586_bzero() bandwidth = 174855744 bytes/sec bzero() bandwidth = 88097964 bytes/sec imasks: bio c008c040, tty c0071432, net c0071432 BIOS Geometries: 0:03fefe3f 0..1022=1023 cylinders, 0..254=255 heads, 1..63=63 sectors 1:03fefe3f 0..1022=1023 cylinders, 0..254=255 heads, 1..63=63 sectors 2:03fefe3f 0..1022=1023 cylinders, 0..254=255 heads, 1..63=63 sectors 0 accounted for Device configuration finished. IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to deny, unlimited logging bpf: tun0 attached bpf: tun1 attached bpf: tun2 attached bpf: tun3 attached bpf: tun4 attached bpf: tun5 attached bpf: tun6 attached bpf: tun7 attached bpf: sl0 attached bpf: sl1 attached bpf: sl2 attached bpf: sl3 attached bpf: sl4 attached bpf: sl5 attached bpf: sl6 attached bpf: sl7 attached bpf: ppp0 attached bpf: ppp1 attached bpf: ppp2 attached bpf: ppp3 attached bpf: ppp4 attached bpf: ppp5 attached bpf: ppp6 attached bpf: ppp7 attached new masks: bio c008c040, tty c0071432, net c0071432 bpf: lo0 attached IP Filter: initialized. Default = pass all, Logging = enabled Considering FFS root f/s. changing root device to wd0s1a wd0s1: type 0xa5, start 63, end = 39876479, size 39876417 : OK start_init: trying /sbin/init wd2s1: type 0xa5, start 63, end = 39873329, size 39873267 : OK wd1s1: type 0xa5, start 63, end = 33897149, size 33897087 : OK wd1s1: type 0xa5, start 63, end = 33897149, size 33897087 : OK wd2s1: type 0xa5, start 63, end = 39873329, size 39873267 : OK Linux-ELF exec handler installed splash: image decoder found: star_saver pid 475 (msgs), uid 70: exited on signal 11 (core dumped) sc0: sc_switch_scr() 2 -- Best regards, Sergey mailto:hsw@antar.bryansk.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 5: 0: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4DAC437B886 for ; Tue, 1 Aug 2000 05:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA06490; Tue, 1 Aug 2000 05:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id AC9CB37BCE1; Tue, 1 Aug 2000 04:55:29 -0700 (PDT) Message-Id: <20000801115529.AC9CB37BCE1@hub.freebsd.org> Date: Tue, 1 Aug 2000 04:55:29 -0700 (PDT) From: shirai@nintendo.co.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/20340: SNDCTL_DSP_GETODELAY on pcm device is incorrectly implemented. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20340 >Category: kern >Synopsis: SNDCTL_DSP_GETODELAY on pcm device is incorrectly implemented. >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 01 05:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Takashi SHIRAI >Release: 4-STABLE >Organization: Nintendo, Co., Ltd. >Environment: FreeBSD 4-STABLE >Description: According to OSS Programmer's Guide (http://www.opensound.com/pguide/), SNDCTL_DSP_GETODELAY returns the number of unplayed bytes in the kernel buffer. It means the length of ready areas (rl). But, in the latest implement, this call returns the total bytes played already. It is certainly mis-implement. >How-To-Repeat: Use any audio applications which use SNDCTL_DSP_GETODELAY. e.g. TiMidity++ (>= 3.5.1) >Fix: The following patch will be effective: diff -u dsp.c.old dsp.c --- dsp.c.old Tue Aug 1 04:36:13 2000 +++ dsp.c Tue Aug 1 20:18:08 2000 @@ -587,12 +587,13 @@ case SNDCTL_DSP_GETODELAY: if (wrch) { snd_dbuf *b = &wrch->buffer; + snd_dbuf *bs = &wrch->buffer2nd; if (b->dl) { chn_checkunderflow(wrch); if (!(wrch->flags & CHN_F_MAPPED)) while (chn_wrfeed(wrch) > 0); } - *arg = b->total; + *((int *)arg) = bs->rl; } else ret = EINVAL; break; >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 Tue Aug 1 5: 9:34 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C154037BCEC; Tue, 1 Aug 2000 05:09:32 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA09007; Tue, 1 Aug 2000 05:09:32 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 1 Aug 2000 05:09:32 -0700 (PDT) From: Message-Id: <200008011209.FAA09007@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, cg@FreeBSD.org Subject: Re: kern/20340: SNDCTL_DSP_GETODELAY on pcm device is incorrectly implemented. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: SNDCTL_DSP_GETODELAY on pcm device is incorrectly implemented. Responsible-Changed-From-To: freebsd-bugs->cg Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Aug 1 05:09:02 PDT 2000 Responsible-Changed-Why: Over to the pcm maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=20340 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 5:40:28 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BC1C37BBCA for ; Tue, 1 Aug 2000 05:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA13006; Tue, 1 Aug 2000 05:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by hub.freebsd.org (Postfix) with ESMTP id 81FA137B692 for ; Tue, 1 Aug 2000 05:32:51 -0700 (PDT) (envelope-from root@crox.cronyx.ru) Received: from crox.cronyx.ru by hanoi.cronyx.ru with ESMTP id QAA02219; (8.9.3/vak/2.1) Tue, 1 Aug 2000 16:37:04 +0400 (MSD) Received: by crox.cronyx.ru id QAA00323; (8.9.3/vak/2.1) Tue, 1 Aug 2000 16:26:01 +0400 (MSD) Message-Id: <200008011226.QAA00323@crox.cronyx.ru> Date: Tue, 1 Aug 2000 16:26:01 +0400 (MSD) From: vak@cronyx.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20341: [patch] sio driver, support for PCI multiport cards Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20341 >Category: kern >Synopsis: Support for PCI multiport cards for sio driver >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Aug 01 05:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Serge Vakulenko >Release: FreeBSD 4.0-RELEASE i386 >Organization: Cronyx Engineering Ltd. >Environment: FreeBSD 4.0, Cronyx-Omega-PCI serial multiport adapters. >Description: To handle non-intelligent multiport async adapters, the sio driver lacks the PCI detection and attachment routines. Some rearrangment of the sio.c is also required. The patch consists of four parts: 1) sys/isa/siovar.h (new file) 2) sys/isa/sio.c (patch) 3) sys/pci/sio_pci.c (new file) 4) sys/conf/files.i386 (patch) >How-To-Repeat: >Fix: --- siovar40.h Thu Jul 27 11:46:05 2000 +++ isa/siovar.h Fri Jul 28 14:01:20 2000 @@ -0,0 +1,146 @@ +/*- + * Copyright (c) 1991 The Regents of the University of California. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD: src/sys/isa/sio.c,v 1.291 2000/03/11 20:22:09 imp Exp $ + * from: @(#)com.c 7.5 (Berkeley) 5/16/91 + * from: i386/isa sio.c,v 1.234 + */ +#define SIO_MAXUNITS 64 /* max sio ports */ +#define CE_NTYPES 3 + +/* types. XXX - should be elsewhere */ +typedef u_int Port_t; /* hardware port */ +typedef u_char bool_t; /* boolean */ + +/* queue of linear buffers */ +struct lbq { + u_char *l_head; /* next char to process */ + u_char *l_tail; /* one past the last char to process */ + struct lbq *l_next; /* next in queue */ + bool_t l_queued; /* nonzero if queued */ +}; + +/* com device structure */ +struct com_s { + u_int flags; /* Copy isa device flags */ + u_char state; /* miscellaneous flag bits */ + bool_t active_out; /* nonzero if the callout device is open */ + u_char cfcr_image; /* copy of value written to CFCR */ +#ifdef COM_ESP + bool_t esp; /* is this unit a hayes esp board? */ +#endif + u_char extra_state; /* more flag bits, separate for order trick */ + u_char fifo_image; /* copy of value written to FIFO */ + bool_t hasfifo; /* nonzero for 16550 UARTs */ + bool_t st16650a; /* Is a Startech 16650A or RTS/CTS compat */ + bool_t loses_outints; /* nonzero if device loses output interrupts */ + u_char mcr_image; /* copy of value written to MCR */ +#ifdef COM_MULTIPORT + bool_t multiport; /* is this unit part of a multiport device? */ +#endif /* COM_MULTIPORT */ + bool_t no_irq; /* nonzero if irq is not attached */ + bool_t gone; /* hardware disappeared */ + bool_t poll; /* nonzero if polling is required */ + bool_t poll_output; /* nonzero if polling for output is required */ + int unit; /* unit number */ + int dtr_wait; /* time to hold DTR down on close (* 1/hz) */ + u_int tx_fifo_size; + u_int wopeners; /* # processes waiting for DCD in open() */ + + /* + * The high level of the driver never reads status registers directly + * because there would be too many side effects to handle conveniently. + * Instead, it reads copies of the registers stored here by the + * interrupt handler. + */ + u_char last_modem_status; /* last MSR read by intr handler */ + u_char prev_modem_status; /* last MSR handled by high level */ + + u_char hotchar; /* ldisc-specific char to be handled ASAP */ + u_char *ibuf; /* start of input buffer */ + u_char *ibufend; /* end of input buffer */ + u_char *ibufold; /* old input buffer, to be freed */ + u_char *ihighwater; /* threshold in input buffer */ + u_char *iptr; /* next free spot in input buffer */ + int ibufsize; /* size of ibuf (not include error bytes) */ + int ierroff; /* offset of error bytes in ibuf */ + + struct lbq obufq; /* head of queue of output buffers */ + struct lbq obufs[2]; /* output buffers */ + + Port_t data_port; /* i/o ports */ +#ifdef COM_ESP + Port_t esp_port; +#endif + Port_t int_id_port; + Port_t iobase; + Port_t modem_ctl_port; + Port_t line_status_port; + Port_t modem_status_port; + Port_t intr_ctl_port; /* Ports of IIR register */ + + struct tty *tp; /* cross reference */ + + /* Initial state. */ + struct termios it_in; /* should be in struct tty */ + struct termios it_out; + + /* Lock state. */ + struct termios lt_in; /* should be in struct tty */ + struct termios lt_out; + + bool_t do_timestamp; + bool_t do_dcd_timestamp; + struct timeval timestamp; + struct timeval dcd_timestamp; + struct pps_state pps; + + u_long bytes_in; /* statistics */ + u_long bytes_out; + u_int delta_error_counts[CE_NTYPES]; + u_long error_counts[CE_NTYPES]; + + struct resource *irqres; + struct resource *ioportres; + void *cookie; + + /* + * Data area for output buffers. Someday we should build the output + * buffer queue without copying data. + */ + u_char obuf1[256]; + u_char obuf2[256]; +}; + +int sio_attach_unit (struct com_s *com, int unit, Port_t iobase, + u_int flags, bool_t no_irq); +void siointr1 (struct com_s *com); 1) Move the struct com_s definition to separate file siovar.h. 2) Split the sioattach() routine. Leave the isa-dependent part in sioattach(), and build the (public) bus-independent attachment function sio_attach_unit(). 3) Make siointr1 public. --- sio40.c Wed Jul 26 17:32:07 2000 +++ isa/sio.c Fri Jul 28 14:01:54 2000 @@ -82,6 +82,7 @@ #include #include +#include #ifdef COM_ESP #include @@ -167,113 +168,8 @@ "tty-level buffer overflow", }; -#define CE_NTYPES 3 #define CE_RECORD(com, errnum) (++(com)->delta_error_counts[errnum]) -/* types. XXX - should be elsewhere */ -typedef u_int Port_t; /* hardware port */ -typedef u_char bool_t; /* boolean */ - -/* queue of linear buffers */ -struct lbq { - u_char *l_head; /* next char to process */ - u_char *l_tail; /* one past the last char to process */ - struct lbq *l_next; /* next in queue */ - bool_t l_queued; /* nonzero if queued */ -}; - -/* com device structure */ -struct com_s { - u_int flags; /* Copy isa device flags */ - u_char state; /* miscellaneous flag bits */ - bool_t active_out; /* nonzero if the callout device is open */ - u_char cfcr_image; /* copy of value written to CFCR */ -#ifdef COM_ESP - bool_t esp; /* is this unit a hayes esp board? */ -#endif - u_char extra_state; /* more flag bits, separate for order trick */ - u_char fifo_image; /* copy of value written to FIFO */ - bool_t hasfifo; /* nonzero for 16550 UARTs */ - bool_t st16650a; /* Is a Startech 16650A or RTS/CTS compat */ - bool_t loses_outints; /* nonzero if device loses output interrupts */ - u_char mcr_image; /* copy of value written to MCR */ -#ifdef COM_MULTIPORT - bool_t multiport; /* is this unit part of a multiport device? */ -#endif /* COM_MULTIPORT */ - bool_t no_irq; /* nonzero if irq is not attached */ - bool_t gone; /* hardware disappeared */ - bool_t poll; /* nonzero if polling is required */ - bool_t poll_output; /* nonzero if polling for output is required */ - int unit; /* unit number */ - int dtr_wait; /* time to hold DTR down on close (* 1/hz) */ - u_int tx_fifo_size; - u_int wopeners; /* # processes waiting for DCD in open() */ - - /* - * The high level of the driver never reads status registers directly - * because there would be too many side effects to handle conveniently. - * Instead, it reads copies of the registers stored here by the - * interrupt handler. - */ - u_char last_modem_status; /* last MSR read by intr handler */ - u_char prev_modem_status; /* last MSR handled by high level */ - - u_char hotchar; /* ldisc-specific char to be handled ASAP */ - u_char *ibuf; /* start of input buffer */ - u_char *ibufend; /* end of input buffer */ - u_char *ibufold; /* old input buffer, to be freed */ - u_char *ihighwater; /* threshold in input buffer */ - u_char *iptr; /* next free spot in input buffer */ - int ibufsize; /* size of ibuf (not include error bytes) */ - int ierroff; /* offset of error bytes in ibuf */ - - struct lbq obufq; /* head of queue of output buffers */ - struct lbq obufs[2]; /* output buffers */ - - Port_t data_port; /* i/o ports */ -#ifdef COM_ESP - Port_t esp_port; -#endif - Port_t int_id_port; - Port_t iobase; - Port_t modem_ctl_port; - Port_t line_status_port; - Port_t modem_status_port; - Port_t intr_ctl_port; /* Ports of IIR register */ - - struct tty *tp; /* cross reference */ - - /* Initial state. */ - struct termios it_in; /* should be in struct tty */ - struct termios it_out; - - /* Lock state. */ - struct termios lt_in; /* should be in struct tty */ - struct termios lt_out; - - bool_t do_timestamp; - bool_t do_dcd_timestamp; - struct timeval timestamp; - struct timeval dcd_timestamp; - struct pps_state pps; - - u_long bytes_in; /* statistics */ - u_long bytes_out; - u_int delta_error_counts[CE_NTYPES]; - u_long error_counts[CE_NTYPES]; - - struct resource *irqres; - struct resource *ioportres; - void *cookie; - - /* - * Data area for output buffers. Someday we should build the output - * buffer queue without copying data. - */ - u_char obuf1[256]; - u_char obuf2[256]; -}; - #ifdef COM_ESP static int espattach __P((struct com_s *com, Port_t esp_port)); #endif @@ -284,7 +180,6 @@ static timeout_t siodtrwakeup; static void comhardclose __P((struct com_s *com)); static void sioinput __P((struct com_s *com)); -static void siointr1 __P((struct com_s *com)); static void siointr __P((void *arg)); static int commctl __P((struct com_s *com, int bits, int how)); static int comparam __P((struct tty *tp, struct termios *t)); @@ -309,8 +204,8 @@ /* table and macro for fast conversion from a unit number to its com struct */ static devclass_t sio_devclass; -#define com_addr(unit) ((struct com_s *) \ - devclass_get_softc(sio_devclass, unit)) +static struct com_s *p_com_addr[SIO_MAXUNITS]; +#define com_addr(unit) (p_com_addr[unit]) static device_method_t sio_isa_methods[] = { /* Device interface */ @@ -969,32 +864,19 @@ return (sioattach(dev)); } -static int -sioattach(dev) - device_t dev; -{ +int +sio_attach_unit(com, unit, iobase, flags, no_irq) struct com_s *com; + int unit; + Port_t iobase; + u_int flags; + bool_t no_irq; +{ #ifdef COM_ESP Port_t *espp; #endif - Port_t iobase; - int unit; - u_int flags; - int rid; - struct resource *port; - int ret; - - rid = 0; - port = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, - 0, ~0, IO_COMSIZE, RF_ACTIVE); - if (!port) - return (ENXIO); - - iobase = rman_get_start(port); - unit = device_get_unit(dev); - com = device_get_softc(dev); - flags = device_get_flags(dev); - + if (unit >= SIO_MAXUNITS) + return ENXIO; if (unit >= sio_numunits) sio_numunits = unit + 1; /* @@ -1011,11 +893,10 @@ */ bzero(com, sizeof *com); com->unit = unit; - com->ioportres = port; com->cfcr_image = CFCR_8BITS; com->dtr_wait = 3 * hz; com->loses_outints = COM_LOSESOUTINTS(flags) != 0; - com->no_irq = bus_get_resource(dev, SYS_RES_IRQ, 0, NULL, NULL) != 0; + com->no_irq = no_irq; com->tx_fifo_size = 1; com->obufs[0].l_head = com->obuf1; com->obufs[1].l_head = com->obuf2; @@ -1052,12 +933,6 @@ com->it_in.c_ispeed = com->it_in.c_ospeed = TTYDEF_SPEED; if (siosetwater(com, com->it_in.c_ispeed) != 0) { enable_intr(); - /* - * Leave i/o resources allocated if this is a `cn'-level - * console, so that other devices can't snarf them. - */ - if (iobase != siocniobase) - bus_release_resource(dev, SYS_RES_IOPORT, rid, port); return (ENOMEM); } enable_intr(); @@ -1164,17 +1039,11 @@ #ifdef COM_MULTIPORT if (COM_ISMULTIPORT(flags)) { - device_t masterdev; - com->multiport = TRUE; printf(" (multiport"); if (unit == COM_MPMASTER(flags)) printf(" master"); printf(")"); - masterdev = devclass_get_device(sio_devclass, - COM_MPMASTER(flags)); - com->no_irq = (masterdev == NULL || bus_get_resource(masterdev, - SYS_RES_IRQ, 0, NULL, NULL) != 0); } #endif /* COM_MULTIPORT */ if (unit == comconsole) @@ -1183,6 +1052,8 @@ printf(" with a bogus IIR_TXRDY register"); printf("\n"); + com_addr(unit) = com; + if (!sio_registered) { register_swi(SWI_TTY, siopoll); sio_registered = TRUE; @@ -1203,6 +1074,50 @@ com->pps.ppscap = PPS_CAPTUREASSERT | PPS_CAPTURECLEAR; pps_init(&com->pps); + return (0); +} + +static int +sioattach(dev) + device_t dev; +{ + int rid, ret, no_irq; + struct resource *port; + struct com_s *com; + Port_t iobase; + u_int flags; + + rid = 0; + port = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, + 0, ~0, IO_COMSIZE, RF_ACTIVE); + if (!port) + return (ENXIO); + + iobase = rman_get_start(port); + com = device_get_softc(dev); + flags = device_get_flags(dev); + +#ifdef COM_MULTIPORT + if (COM_ISMULTIPORT(flags)) { + device_t masterdev; + + masterdev = devclass_get_device(sio_devclass, + COM_MPMASTER(flags)); + no_irq = (masterdev == NULL || bus_get_resource(masterdev, + SYS_RES_IRQ, 0, NULL, NULL) != 0); + } else +#endif /* COM_MULTIPORT */ + no_irq = bus_get_resource(dev, SYS_RES_IRQ, 0, NULL, NULL) != 0; + + ret = sio_attach_unit(com, device_get_unit(dev), iobase, flags, no_irq); + if (ret != 0) { + /* Leave i/o resources allocated if this is a `cn'-level + * console, so that other devices can't snarf them. */ + if (iobase != siocniobase) + bus_release_resource(dev, SYS_RES_IOPORT, rid, port); + return ret; + } + rid = 0; com->irqres = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0ul, ~0ul, 1, RF_ACTIVE); @@ -1220,8 +1135,8 @@ if (ret) device_printf(dev, "could not activate interrupt\n"); } - - return (0); + com->ioportres = port; + return 0; } static int @@ -1713,7 +1628,7 @@ #endif /* COM_MULTIPORT */ } -static void +void siointr1(com) struct com_s *com; { --- /dev/null Tue Aug 1 10:55:27 2000 +++ pci/sio_pci.c Tue Aug 1 11:38:12 2000 @@ -0,0 +1,277 @@ +/* + * Serial driver for non-intelligent PCI multiport adapters. + * Implements the probe, attach and interrupt dispatcher, + * and uses sio.c for the most part of work. + * The PCI ports get unit numbers _after_ the ISA sio ports. + * Option COM_MULTIPORT is not necessary. + * + * Copyright (C) 2000 Cronyx Engineering Ltd. + * Author: Serge Vakulenko + * + * Supports: + * Cronyx Omega-PCI adapter, by Serge Vakulenko + * + * This software is distributed with NO WARRANTIES, not even the implied + * warranties for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + * Authors grant any other persons or organisations permission to use + * or modify this software as long as this message is kept with the software, + * all derivative works or modified versions. + */ +#include +#include +#include +#include +#include +#include +#include +#include +#ifndef SMP +#include +#endif +#include +#include +#include +#include +#if __FreeBSD_version >= 400000 +#include +#include +#else +#include +#include +#include +#include +#endif +#include + +#include "sio.h" + +#define MAXCHAN 8 + +#ifndef __i386__ +#define disable_intr() +#define enable_intr() +#endif + +#ifdef SMP +#define disable_intr() COM_DISABLE_INTR() +#define enable_intr() COM_ENABLE_INTR() +#endif /* SMP */ + +typedef struct _sio_pci_t { + int nchan; + int fifo_size; + int base_reg; + int hw_rts_cts; + Port_t iobase; + Port_t iostep; + struct resource *res; + struct resource *irq; + void *intrhand; + struct com_s com [MAXCHAN]; +} sio_pci_t; + +static void sio_pci_intr __P((void *arg)); + +static int sio_pci_numunits = NSIO; + +#if __FreeBSD_version >= 400000 +/* + * FreeBSD version 4.x + */ +static int sio_pci_probe __P((device_t)); +static int sio_pci_attach __P((device_t)); + +static devclass_t siopci_devclass; + +static device_method_t sio_pci_methods[] = { + /* Device interface */ + DEVMETHOD(device_probe, sio_pci_probe), + DEVMETHOD(device_attach, sio_pci_attach), + { 0, 0 } +}; + +static driver_t sio_pci_driver = { + "siopci", + sio_pci_methods, + sizeof(sio_pci_t) +}; +DRIVER_MODULE(sio_pci, pci, sio_pci_driver, siopci_devclass, 0, 0); + +#else +/* + * FreeBSD version 3.x + */ +static const char *sio_pci_probe __P((pcici_t, pcidi_t)); +static void sio_pci_attach __P((pcici_t, int)); + +static u_long sio_pci_count; + +static struct pci_device sio_pci_device = { + "siopci", + sio_pci_probe, + sio_pci_attach, + &sio_pci_count, + NULL +}; +DATA_SET(pcidevice_set, sio_pci_device); + +#endif /* __FreeBSD_version >= 400000 */ + +#if __FreeBSD_version >= 400000 +static int +sio_pci_probe(dev) + device_t dev; +{ + u_long device_id = pci_get_vendor(dev) | pci_get_device(dev) << 16; +#else +static const char * +sio_pci_probe(config_id, device_id) + pcici_t config_id; + pcidi_t device_id; +{ +#endif + const char *desc = 0; + + if (device_id == 0xc00110b5) + desc = "Cronyx-Omega-PCI Serial Adapter"; +#ifdef notyet + /* Add your device here. */ + else if (device_id == 0xXXXXXXXX) + desc = "XXX"; +#endif + +#if __FreeBSD_version >= 400000 + if (! desc) + return ENXIO; + device_set_desc(dev, desc); + return 0; +#else + return desc; +#endif +} + +#if __FreeBSD_version >= 400000 +static int +sio_pci_attach(dev) + device_t dev; +{ + u_long device_id = pci_get_vendor(dev) | + pci_get_device(dev) << 16; + sio_pci_t *d = device_get_softc(dev); + int rid; +#define PCI_READ_CONFIG(reg) pci_read_config(dev, reg, 4) +#else +static void +sio_pci_attach(config_id, unit) + pcici_t config_id; + int unit; +{ + u_long device_id = config_id->vendor | config_id->device << 16; + sio_pci_t *d = malloc(sizeof *d, M_DEVBUF, M_WAITOK); +#define PCI_READ_CONFIG(reg) pci_conf_read(config_id, reg) +#endif + struct com_s *com; + int s, err = 0; + + bzero((char*)d, sizeof(*d)); + s = splimp(); + + /* Default values. */ + d->nchan = 8; /* channels per adapter */ + d->iostep = 8; /* addresses per channel */ + d->base_reg = 0x18; /* pci register: base addr2 */ + + /* Device dependent values. */ + if (device_id == 0xc00110b5) { + d->fifo_size = 64; /* fifo size in bytes */ + d->hw_rts_cts = 1; /* hardware rts/cts support */ + } +#ifdef notyet + else if (device_id == 0xXXXXXXXX) { + /* Add your device here. */ + } +#endif + +#if __FreeBSD_version >= 400000 + /* Allocate i/o region. */ + rid = d->base_reg; + d->res = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, 0, ~0, 1, + RF_ACTIVE); + if (! d->res) { + printf("sio%d: couldn't map ports/memory\n", sio_pci_numunits); + err = ENXIO; + goto fail; + } + + /* Allocate interrupt. */ + rid = 0; + d->irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1, + RF_SHAREABLE | RF_ACTIVE); + if (! d->irq) { + printf("sio%d: couldn't map interrupt\n", sio_pci_numunits); + err = ENXIO; + goto fail; + } + + /* Register the interrupt handler. */ + err = bus_setup_intr(dev, d->irq, INTR_TYPE_TTY | INTR_TYPE_FAST, + sio_pci_intr, d, &d->intrhand); +#else + err = ! pci_map_int_right(config_id, sio_pci_intr, d, &tty_imask, + INTR_FAST); +#endif + if (err) { + printf("sio%d: couldn't set up irq\n", sio_pci_numunits); +#if __FreeBSD_version >= 400000 +fail: if (d->res) + bus_release_resource(dev, SYS_RES_IOPORT, + d->base_reg, d->res); + if (d->irq) + bus_release_resource(dev, SYS_RES_IRQ, 0, d->irq); +#endif + goto done; + } + + /* Attach sio ports. */ + d->iobase = PCI_READ_CONFIG (d->base_reg) & ~3; + for (com=d->com; comcom+d->nchan; ++com) { + com->iobase = d->iobase + (com - d->com) * d->iostep; + + /* Interrupt enable, do it _before_ sio_attach_unit. */ + outb(com->iobase + com_mcr, MCR_IENABLE); + + if (sio_attach_unit(com, sio_pci_numunits++, com->iobase, + d->fifo_size << 24, 0) != 0) + printf("sio%d: cannot attach\n", sio_pci_numunits); + + /* Must do this _after_ sio_attach_unit. */ + com->st16650a = d->hw_rts_cts; + } +done: + splx (s); +#if __FreeBSD_version >= 400000 + return err; +#endif +} + +static void +sio_pci_intr(arg) + void *arg; +{ + sio_pci_t *d = arg; + struct com_s *com; + bool_t possibly_more_intrs; + + disable_intr(); + do { + possibly_more_intrs = FALSE; + for (com=d->com; comcom+d->nchan; ++com) { + if ((inb(com->int_id_port) & IIR_IMASK) != IIR_NOPEND) { + siointr1(com); + possibly_more_intrs = TRUE; + } + } + } while (possibly_more_intrs); + enable_intr(); +} --- files40.i386 Fri Jul 28 17:11:26 2000 +++ conf/files.i386 Fri Jul 28 17:12:17 2000 @@ -389,6 +389,7 @@ isa/ppc.c optional ppc isa/psm.c optional psm isa/sio.c optional sio +pci/sio_pci.c optional sio pci isa/syscons_isa.c optional sc isa/vga_isa.c optional vga kern/subr_diskmbr.c standard >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 Tue Aug 1 6:30: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1427637B531 for ; Tue, 1 Aug 2000 06:30:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA20323; Tue, 1 Aug 2000 06:30:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 1 Aug 2000 06:30:06 -0700 (PDT) Message-Id: <200008011330.GAA20323@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: misc/20333: ftp login fails on unix password when s/key active but not required Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/20333; it has been noted by GNATS. From: Sheldon Hearn To: pscott@the-frontier.org Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/20333: ftp login fails on unix password when s/key active but not required Date: Tue, 01 Aug 2000 15:21:51 +0200 On Mon, 31 Jul 2000 22:38:01 MST, pscott@the-frontier.org wrote: > If a userid has an s/key, but s/key is not required for login, ftp > should allow a unix password, but it does not; only the s/key password > works. You are correct. However, this appears to be the result of two problems. Firstly, ftpd relies on libpam, for which the pam_skey module doesn't appear to handle the return value of skeyaccess(3) correctly. And secondly, ftpd.c itself appears to make the same mistake. The first problem isn't trivial for me to fix. The second is. :-) The following patch to ftpd.c fixes this for the NOPAM case, but there's still breakage in the libpam skey module. You should be able to apply this patch to ftpd.c and then build ftpd with cd /usr/src/libexec/ftpd make -DNOPAM make install clean Ciao, Sheldon. PS: I run a pretty heavily modified ftpd, so you may need to apply the patch by hand. Certainly, the line numbers for the hunk are bogus. Index: ftpd.c =================================================================== RCS file: /home/ncvs/src/libexec/ftpd/ftpd.c,v retrieving revision 1.64 diff -u -d -r1.64 ftpd.c --- ftpd.c 2000/06/26 05:36:09 1.64 +++ ftpd.c 2000/08/01 12:54:47 @@ -1187,12 +1209,13 @@ if (rval >= 0) goto skip; #endif + rval = strcmp(pw->pw_passwd, crypt(passwd, pw->pw_passwd)); #ifdef SKEY - rval = strcmp(skey_crypt(passwd, pw->pw_passwd, pw, pwok), - pw->pw_passwd); - pwok = 0; -#else - rval = strcmp(crypt(passwd, pw->pw_passwd), pw->pw_passwd); + if (rval) { + rval = strcmp(pw->pw_passwd, + skey_crypt(passwd, pw->pw_passwd, pw, pwok)); + pwok = 0; + } #endif /* The strcmp does not catch null passwords! */ if (*pw->pw_passwd == '\0' || To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 7: 0:16 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 89A3C37BCB2 for ; Tue, 1 Aug 2000 07:00:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA54328; Tue, 1 Aug 2000 07:00:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 1 Aug 2000 07:00:14 -0700 (PDT) Message-Id: <200008011400.HAA54328@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: misc/20333: ftp login fails on unix password when s/key active but not required Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/20333; it has been noted by GNATS. From: Sheldon Hearn To: pscott@the-frontier.org Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/20333: ftp login fails on unix password when s/key active but not required Date: Tue, 01 Aug 2000 15:53:21 +0200 On Tue, 01 Aug 2000 15:21:51 +0200, Sheldon Hearn wrote: > The following patch to ftpd.c fixes this for the NOPAM case, but there's > still breakage in the libpam skey module. Please use the following patch instead. Ciao, Sheldon. Index: ftpd.c =================================================================== RCS file: /home/ncvs/src/libexec/ftpd/ftpd.c,v retrieving revision 1.64 diff -u -d -r1.64 ftpd.c --- ftpd.c 2000/06/26 05:36:09 1.64 +++ ftpd.c 2000/08/01 13:49:08 @@ -1188,9 +1210,12 @@ goto skip; #endif #ifdef SKEY - rval = strcmp(skey_crypt(passwd, pw->pw_passwd, pw, pwok), - pw->pw_passwd); - pwok = 0; + if (pwok) + rval = strcmp(pw->pw_passwd, + crypt(passwd, pw->pw_passwd)); + if (rval) + rval = strcmp(pw->pw_passwd, + skey_crypt(passwd, pw->pw_passwd, pw, pwok)); #else rval = strcmp(crypt(passwd, pw->pw_passwd), pw->pw_passwd); #endif @@ -1220,6 +1245,9 @@ return; } } +#ifdef SKEY + pwok = 0; +#endif login_attempts = 0; /* this time successful */ if (setegid((gid_t)pw->pw_gid) < 0) { reply(550, "Can't set gid."); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 7:30: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 73B6937BED4 for ; Tue, 1 Aug 2000 07:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA88885; Tue, 1 Aug 2000 07:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from starbug.ugh.net.au (starbug.ugh.net.au [203.31.238.37]) by hub.freebsd.org (Postfix) with ESMTP id BAA2F37B580 for ; Tue, 1 Aug 2000 07:21:49 -0700 (PDT) (envelope-from andrew@ugh.net.au) Received: by starbug.ugh.net.au (Postfix, from userid 1000) id 954A3A847; Wed, 2 Aug 2000 00:22:20 +1000 (EST) Message-Id: <20000801142220.954A3A847@starbug.ugh.net.au> Date: Wed, 2 Aug 2000 00:22:20 +1000 (EST) From: andrew@ugh.net.au Reply-To: andrew@ugh.net.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/20345: screensaver wont come on if pppctl is running. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20345 >Category: bin >Synopsis: screensaver wont come on if pppctl is running. >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: Tue Aug 01 07:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew >Release: FreeBSD 4.0-STABLE i386 >Organization: UgH! >Environment: 4.0-STABLE of a few weeks ago...around Jul 8. >Description: If I have pppctl running on the console then the screensaver (green) wont come on. It doesn't have to be the currenty vty, just to be running. It must be on the console...running it from an ssh session doesn't trigger the problem. >How-To-Repeat: Run pppctl on the console and wait for seconds. >Fix: >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 Tue Aug 1 7:34:45 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B000A37BEAB; Tue, 1 Aug 2000 07:34:44 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA89660; Tue, 1 Aug 2000 07:34:44 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 1 Aug 2000 07:34:44 -0700 (PDT) From: Message-Id: <200008011434.HAA89660@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, brian@FreeBSD.org Subject: Re: bin/20345: screensaver wont come on if pppctl is running. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: screensaver wont come on if pppctl is running. Responsible-Changed-From-To: freebsd-bugs->brian Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Aug 1 07:34:29 PDT 2000 Responsible-Changed-Why: Brian, could you investigate this one? http://www.freebsd.org/cgi/query-pr.cgi?pr=20345 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 8: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BCC6C37B979 for ; Tue, 1 Aug 2000 08:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA93243; Tue, 1 Aug 2000 08:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 1 Aug 2000 08:00:04 -0700 (PDT) Message-Id: <200008011500.IAA93243@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: andrew@ugh.net.au Subject: Re: kern/18024: when printing through gs: panic: lockmgr: not exclusive lock ho Reply-To: andrew@ugh.net.au Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/18024; it has been noted by GNATS. From: andrew@ugh.net.au To: freebsd-gnats-submit@FreeBSD.org, bn@tellique.de Cc: Subject: Re: kern/18024: when printing through gs: panic: lockmgr: not exclusive lock ho Date: Wed, 2 Aug 2000 00:52:47 +1000 Just a "me to". At the time it was always reproducible although I'm not= sure if I can remeber how atm. I would get a panic on printing from a = mac (in ps format) via lpr. /etc/printcap contains: epson-bw|lp|Epson= Color Stylus 200 (B&W):\ :sh:of=3D/usr/local/libexec/lpr/epson= _bw.sh:\ :lp=3D/dev/lpt0:sd=3D/var/spool/lpd/epson-bw:lf=3D/var= /log/lpd-errs: epson_bw.sh just runs gs with a few arguments. There pa= nic message was: lockmgr: pid 130, not exclusive lock holder 116 unloc= king. The file system was usually pretty sick after this :-( Thanks, = Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 9:22:16 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from bmz096.ust.hk (bmz096.ust.hk [143.89.59.176]) by hub.freebsd.org (Postfix) with ESMTP id 4464E37BF58; Tue, 1 Aug 2000 09:21:58 -0700 (PDT) (envelope-from eric@communication411.com) Received: from host10.4ua.com by bmz096.ust.hk with SMTP (Microsoft Exchange Internet Mail Service Version 5.0.1460.8) id PQ5HL8KA; Wed, 2 Aug 2000 00:37:29 +0800 From: eric@communication411.com Message-Id: <965146409.saxcyt@saxcyt.mail.dover.net> To: saxcyt@dover.net Reply-To: eric@communication411.com X-Mailer: Mozilla 4.51 [en] (Win98; I) X-Accept-Language: en Content-Type: text/html; Charset=us-ascii MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Are you looking for a J.O.B. or Financial Freedom? dkctj Date: Tue, 1 Aug 2000 09:21:58 -0700 (PDT) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org

93% WHO RESPOND TO MY AD DON'T MAKE THE CUT!
(Only highly motivated people should call)

I'm dead serious! Now let me tell you why...

Most people don't have drive! They sit around waiting for something to happen.
They see that other people have nice homes, new cars, and MONEY, but why can't they?
They basically feel sorry for themselves, and I can't help these people!

Another reason people are not qualified...

They are skeptical. BUT, the truth is, they are skeptical of themselves!
They don't have the courage to break their routine.
They are comfortable with their set hours, their set pay, and their set future.
I was not comfortable with someone controlling my future,
and I'm not comfortable working with people who are!


STOP
If you are anything like the above, we won't be able to work together!

WHAT DO THE 7% WHO DO MAKE THE CUT DISCOVER?!

People I select through an "interview like" process are forever changed!
They are opened to a world around them that they didn't know existed.
In fact, it's a world that has existed around them their whole lives,
but was purposely hidden from them!



How would you like to...

- Drastically reduce personal, business and capital gains taxes?
- Protect all assets from any form of seizure, liens, or judgments?
- Create a six figure income every 4 months?

How about...

Restoring and preserving complete personal and financial privacy?
Amassing personal wealth, multiplying it and protecting it?
Realizing a 3 to 6 times greater return on your money?
Legally making yourself and your assets completely judgment-proof,
lien-proof, divorce-proof, attorney-proof, IRS-proof?
I could go on...


TAKE A SERIOUS LOOK AT YOUR LIFE

Do you think you are paid what you are worth?
Will you be set to retire in the next few years?
Do you control the course of your day? ...your life?

The fact is we have many people in our enterprise that earn over 50K per month
from the privacy of their own homes, and are retiring in 2 to 3 years (wealthy)
and have total freedom - both personal and financial!

Many have been conditioned to believe it must be illegal, immoral or unethical
to ever earn any real profits from our efforts.

The sad truth is, it's been designed that way by the ultra-rich
and ultra-powerful since before any of us were born!


Who am I?

I'm a BIG thinker, a BIG dreamer, and I believe that I deserve the best that life has to offer.
I answered an ad much like the one you are reading now,
and was eager to hear what it was about.

I knew that I couldn't invest only a few bucks and spend an hour or two
per week to achieve the results I was looking for. I found the right information
and now I control my own destiny!

If you are interested in radically changing your thoughts and your financial future,
I invite you to call TOLL FREE:


1 800 707 4817

My name is Krystina, and I look forward to working with some of you!

* REMEMBER *

I can't do it for you, but I can show you exactly how I do it.
It's as simple as that!

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 12:10: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B00137BA58 for ; Tue, 1 Aug 2000 12:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA47510; Tue, 1 Aug 2000 12:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 3874037B8D7 for ; Tue, 1 Aug 2000 12:07:35 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by david.siemens.de (8.10.1/8.10.1) with ESMTP id e71J7X611663 for ; Tue, 1 Aug 2000 21:07:33 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail1.siemens.de (8.10.1/8.10.1) with ESMTP id e71J7W122137 for ; Tue, 1 Aug 2000 21:07:32 +0200 (MET DST) Received: (from localhost) by curry.mchp.siemens.de (8.10.2/8.10.2) id e71J7Wa33519 for FreeBSD-gnats-submit@freebsd.org; Tue, 1 Aug 2000 21:07:32 +0200 (CEST) Message-Id: <200008011907.e71J7WU00651@curry.mchp.siemens.de> Date: Tue, 1 Aug 2000 21:07:32 +0200 (CEST) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20347: YAMAHA CDR100 does not like multiple LUN probing Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20347 >Category: kern >Synopsis: YAMAHA CDR100 does not like multiple LUN probing >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 01 12:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: probably all FreeBSD versions >Description: The YAMAHA CDR100 doesn't like multiple LUN probing. If you, for example, wire down your devices like this device pass15 at scbus1 target 5 device cd1 at scbus1 target 5 device pass16 at scbus1 target 6 device cd0 at scbus1 target 6 where target 5 is a "YAMAHA CDR100" and target 6 is another cdrom, the following message appears in dmesg (cd0:ahc1:0:5:0): Duplicate Wired Device entry! (cd0:ahc1:0:5:0): Second device will not be wired (cd0:ahc1:0:5:0): lost device (cd0:ahc1:0:5:0): removing device entry and the other cdrom (target 6) becomes cd1. >How-To-Repeat: Try the above example >Fix: --- sys/cam/cam_xpt.c.ORI Tue Aug 1 20:54:41 2000 +++ sys/cam/cam_xpt.c Tue Aug 1 20:57:00 2000 @@ -418,6 +418,10 @@ CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 }, { + { T_WORM, SIP_MEDIA_REMOVABLE, "YAMAHA", "CDR100*", "*" }, + CAM_QUIRK_NOLUNS, /*mintags*/0, /*maxtags*/0 + }, + { /* * The 8200 doesn't like multi-lun probing, and probably * don't like serial number requests either. >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 Tue Aug 1 12:20: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E0D5537BA9D for ; Tue, 1 Aug 2000 12:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA48367; Tue, 1 Aug 2000 12:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id A4DC737BA22 for ; Tue, 1 Aug 2000 12:11:36 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by david.siemens.de (8.10.1/8.10.1) with ESMTP id e71JBZ612214 for ; Tue, 1 Aug 2000 21:11:35 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail1.siemens.de (8.10.1/8.10.1) with ESMTP id e71JBZ122981 for ; Tue, 1 Aug 2000 21:11:35 +0200 (MET DST) Received: (from localhost) by curry.mchp.siemens.de (8.10.2/8.10.2) id e71JBZa33543 for FreeBSD-gnats-submit@freebsd.org; Tue, 1 Aug 2000 21:11:35 +0200 (CEST) Message-Id: <200008011911.e71JBTv00816@curry.mchp.siemens.de> Date: Tue, 1 Aug 2000 21:11:29 +0200 (CEST) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20348: patch for "fd" is usurping "fd" ... Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20348 >Category: kern >Synopsis: patch for "fd" is usurping "fd" ... >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: Tue Aug 01 12:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: FreeBSD 4.1-STABLE >Description: When using two floppy drives, dmesg tells us >How-To-Repeat: Attach two floppies to a 4.1-STABLE machine and boot. >Fix: Thanks to the hint from Poul-Henning Kamp , the problem could be solved easily: --- sys/isa/fd.c.ORI Mon Jul 31 09:38:59 2000 +++ sys/isa/fd.c Mon Jul 31 09:41:11 2000 @@ -1048,10 +1048,14 @@ int typemynor; int typesize; #endif + static char cdevsw_add_done = 0; fd = device_get_softc(dev); - cdevsw_add(&fd_cdevsw); /* XXX */ + if (!cdevsw_add_done) { + cdevsw_add(&fd_cdevsw); /* XXX */ + cdevsw_add_done++; + } make_dev(&fd_cdevsw, (fd->fdu << 6), UID_ROOT, GID_OPERATOR, 0640, "rfd%d", fd->fdu); >Release-Note: >Audit-Trail: >Unformatted: >WARNING: "fd" is usurping "fd"'s cdevsw[] >WARNING: "fd" is usurping "fd"'s bmaj To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 13:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BCAA37B862 for ; Tue, 1 Aug 2000 13:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA54954; Tue, 1 Aug 2000 13:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 1 Aug 2000 13:10:04 -0700 (PDT) Message-Id: <200008012010.NAA54954@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Kenneth D. Merry" Subject: Re: kern/20347: YAMAHA CDR100 does not like multiple LUN probing Reply-To: "Kenneth D. Merry" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/20347; it has been noted by GNATS. From: "Kenneth D. Merry" To: Andre Albsmeier Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/20347: YAMAHA CDR100 does not like multiple LUN probing Date: Tue, 1 Aug 2000 14:03:09 -0600 On Tue, Aug 01, 2000 at 21:07:32 +0200, Andre Albsmeier wrote: > >Environment: > > probably all FreeBSD versions > > >Description: > > The YAMAHA CDR100 doesn't like multiple LUN probing. If you, for example, > wire down your devices like this > > device pass15 at scbus1 target 5 > device cd1 at scbus1 target 5 > device pass16 at scbus1 target 6 > device cd0 at scbus1 target 6 > > where target 5 is a "YAMAHA CDR100" and target 6 is another cdrom, > the following message appears in dmesg > > (cd0:ahc1:0:5:0): Duplicate Wired Device entry! > (cd0:ahc1:0:5:0): Second device will not be wired > (cd0:ahc1:0:5:0): lost device > (cd0:ahc1:0:5:0): removing device entry > > and the other cdrom (target 6) becomes cd1. This isn't a problem with the drive and multiple-lun probing, but rather a problem with the hard-wiring code. The problem is that the hard-wiring code evidently can't deal with multiple peripheral drivers wired to the same bus/target/lun. A work-around here would be to not hard-wire your pass devices, and just hard-wire your CDROM devices. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 17:40:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A46E37BF88 for ; Tue, 1 Aug 2000 17:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA90709; Tue, 1 Aug 2000 17:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cauchy.math.missouri.edu (cauchy.math.missouri.edu [128.206.49.166]) by hub.freebsd.org (Postfix) with ESMTP id 7229E37BF88 for ; Tue, 1 Aug 2000 17:30:43 -0700 (PDT) (envelope-from stephen@cauchy.math.missouri.edu) Received: (from stephen@localhost) by cauchy.math.missouri.edu (8.9.3/8.9.1) id TAA34138; Tue, 1 Aug 2000 19:30:41 -0500 (CDT) Message-Id: <200008020030.TAA34138@cauchy.math.missouri.edu> Date: Tue, 1 Aug 2000 19:30:41 -0500 (CDT) From: Stephen Montgomery-Smith Reply-To: stephen@math.missouri.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20352: Configuring a synaptics touchpad Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20352 >Category: kern >Synopsis: Configuring a synaptics touchpad >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: wish >Submitter-Id: current-users >Arrival-Date: Tue Aug 01 17:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Stephen Montgomery-Smith >Release: FreeBSD 4.1-STABLE i386 >Organization: University of Missouri >Environment: Trying to configure a synaptics touchpad so that for example tapping the pad is not the same as a mouse button press. >Description: I have a laptop with a synaptics touchpad. I dislike the fact that tapping the mousepad is like pressing a mouse button. So I attempted to port the program tpconfig available at http://www.compass.com/synaptics/ It seems to require a device that is the raw mouse, which as far as I can figure is not available on FreeBSD (it uses /dev/psaux on Linux). >How-To-Repeat: >Fix: I was able to provide a new ioctl for the psm device that was sufficient to get tpconfig to work. Lets face it, I didn't know what I was doing - I just ramaged around the code and scrounged something together. But it really seems to serve my purposes. Maybe it could be done better. Or maybe other people just don't care for it - I put a feeler out on freebsd-mobile and noone else seemed to care. Or maybe there is something already there that will do what I want. But if you should choose to add something like this to the kernel, I will port tpconfig to the ports collection. Here is what I did: --- sys-orig/i386/include/mouse.h Fri Jul 28 20:12:17 2000 +++ sys/i386/include/mouse.h Mon Jul 31 02:28:35 2000 @@ -40,6 +40,7 @@ #define MOUSE_SETVARS _IOW('M', 7, mousevar_t) #define MOUSE_READSTATE _IOWR('M', 8, mousedata_t) #define MOUSE_READDATA _IOWR('M', 9, mousedata_t) +#define MOUSE_SENDREADCMD _IOWR('M', 14, mousedata_t) #if notyet #define MOUSE_SETRESOLUTION _IOW('M', 10, int) --- sys-orig/isa/psm.c Mon Jul 31 12:10:50 2000 +++ sys/isa/psm.c Tue Aug 1 19:18:49 2000 @@ -1546,6 +1546,32 @@ /* Perform IOCTL command */ switch (cmd) { + case MOUSE_SENDREADCMD: + data = (mousedata_t *)addr; + if (data->len > sizeof(data->buf)/sizeof(data->buf[0])) + return EINVAL; + + error = block_mouse_data(sc, &command_byte); + if (error) + return error; + for (s=0; slen && !error; s++) { + if ((send_aux_command(sc->kbdc, data->buf[s])) != PSM_ACK) + error = EIO; + } + if (!error) { + for (s = 0; s < sizeof(data->buf)/sizeof(data->buf[0]); s++) { + data->buf[s] = read_aux_data(sc->kbdc); + if (data->buf[s] < 0) + break; + } + if (s==sizeof(data->buf)/sizeof(data->buf[0])) + error = EIO; + else + data->len=s; + } + unblock_mouse_data(sc, command_byte); + break; + case OLD_MOUSE_GETHWINFO: s = spltty(); ((old_mousehw_t *)addr)->buttons = sc->hw.buttons; >Release-Note: >Audit-Trail: >Unformatted: Stephen Montgomery-Smith To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 19:40: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A76637BFF0 for ; Tue, 1 Aug 2000 19:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA05941; Tue, 1 Aug 2000 19:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 1 Aug 2000 19:40:02 -0700 (PDT) Message-Id: <200008020240.TAA05941@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Paul A. Scott" Subject: Re: misc/20333: ftp login fails on unix password when s/key active but not required Reply-To: "Paul A. Scott" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/20333; it has been noted by GNATS. From: "Paul A. Scott" To: , "Paul A. Scott" Cc: Subject: Re: misc/20333: ftp login fails on unix password when s/key active but not required Date: Tue, 1 Aug 2000 19:35:40 -0700 Patch applied; problem solved. Paul A. Scott mailto:pscott@the-frontier.org http://www.the-frontier.org/pscott/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 20:20: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 08E7F37BF9B for ; Tue, 1 Aug 2000 20:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA10432; Tue, 1 Aug 2000 20:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 67F6937BF6A; Tue, 1 Aug 2000 20:13:28 -0700 (PDT) Message-Id: <20000802031328.67F6937BF6A@hub.freebsd.org> Date: Tue, 1 Aug 2000 20:13:28 -0700 (PDT) From: dhandcoc@jupitersgaming.com.au To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/20353: 4.1 doesn't work on Compaq ML370 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20353 >Category: misc >Synopsis: 4.1 doesn't work on Compaq ML370 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 01 20:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dallas Handcock >Release: 4.1 >Organization: Jupiters >Environment: FreeBSD freeBSD 4.1-RELEASE FreeBSD 4.1-RELEASE #0: Thu Jul 27 04:44:16 GMT 2000 root@usw4.freebsd.org:/usr/src/sys/compile/GENERIC i386 >Description: This is a follow-up to misc20205, but unfortunately for some reason I was unable to email freebsd-gnats-submit@FreeBSD.org (tried several times). Anyway, I have tried to install FreeBSD 4.1 and I can get it to install, but when I reboot, all I get appearing is a flashing minus symbol at the top of the screen, and the following: int=0000000d err=00000000 efl=00030246 eip=00000711 eax=00000801 ebx=00000000 ecx=00000000 edx=00000101 esi=000005cf edi=00000008 ebp=000003cf esp=000003c7 cs=ee00 ds=ee00 es=1200 fs=0000 gs=0000 ss=9e02 cs:iep=of 09 50 53 51 57 b8 08-b1 bb 00 00 bf 73 00 cd ss=esp=0e 10 00 00 00 08 00 00-00 00 44 09 00 43 1f 00 System Halted BUT, if I boot from the install floppies, break before the kernel starts loading, then unload, set currdev=disk1s1a: , load kernel, then boot, it all works. I'm guessing the problem is either something in the Compaq configuration utility, or something in the boot directory (boot0, or mbr perhaps). However, I am unsure, as I am new to FreeBSD (normally I use Linux). Can you offer any suggestions? If it helps, this is the dmesg output I get after I have booted from floppies: Copyright (c) 1992-2000 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 4.1-RELEASE #0: Thu Jul 27 04:44:16 GMT 2000 root@usw4.freebsd.org:/usr/src/sys/compile/GENERIC Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (731.02-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383f9ff real memory = 402636800 (393200K bytes) avail memory = 387252224 (378176K bytes) Preloaded elf kernel "kernel" at 0xc040d000. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 sym0: <1510d> port 0x2000-0x20ff mem 0xb7ffe000-0xb7ffefff,0xb7fffc00-0xb7ffffff irq 5 at device 1.0 on pci0 sym0: No NVRAM, ID 7, Fast-40, LVD, parity checking sym1: <1510d> port 0x2400-0x24ff mem 0xb7ffc000-0xb7ffcfff,0xb7ffdc00-0xb7ffdfff irq 10 at device 1.1 on pci0 sym1: No NVRAM, ID 7, Fast-40, LVD, parity checking fxp0: port 0x2800-0x283f mem 0xb7e00000-0xb7efffff,0xb7ffb000-0xb7ffbfff irq 11 at device 2.0 on pci0 fxp0: Ethernet address 00:50:8b:de:7f:d0 pci0: at 3.0 pci0: (vendor=0x0e11, dev=0xa0f0) at 4.0 isab0: at device 15.0 on pci0 isa0: on isab0 atapci0: port 0x3000-0x300f at device 15.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 pcib3: on motherboard pci3: on pcib3 pcib1: at device 6.0 on pci3 pci4: on pcib1 ida0: port 0x4000-0x40ff mem 0xb8000000-0xbfffffff,0xc6ffff00-0xc6ffffff irq 15 at device 0.0 on pci4 ida0: drives=1 firm_rev=4.32 idad0: on ida0 idad0: 17351MB (35536800 sectors), blocksize=512 eisa0: on motherboard mainboard0: on eisa0 slot 0 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model IntelliMouse, device ID 3 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppi0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 acd0: CDROM at ata0-slave using PIO4 Waiting 15 seconds for SCSI devices to settle no devsw (majdev=0 bootdev=0xa0200000) Mounting root from ufs:/dev/idad0s1a >How-To-Repeat: Install FreeBSD 4.1 on a compaq ML370 >Fix: >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 Tue Aug 1 22: 5:23 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B0D3D37BAFD; Tue, 1 Aug 2000 22:05:22 -0700 (PDT) (envelope-from kbyanc@FreeBSD.org) Received: (from kbyanc@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA23165; Tue, 1 Aug 2000 22:05:22 -0700 (PDT) (envelope-from kbyanc@FreeBSD.org) Date: Tue, 1 Aug 2000 22:05:22 -0700 (PDT) From: Message-Id: <200008020505.WAA23165@freefall.freebsd.org> To: kbyanc@FreeBSD.org, freebsd-bugs@FreeBSD.org, kbyanc@FreeBSD.org Subject: Re: gnu/19638: patch's --skip/-S option doesn't skip when target doesn't exist Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: patch's --skip/-S option doesn't skip when target doesn't exist Responsible-Changed-From-To: freebsd-bugs->kbyanc Responsible-Changed-By: kbyanc Responsible-Changed-When: Tue Aug 1 22:04:47 PDT 2000 Responsible-Changed-Why: Taking my own PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=19638 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 22: 6:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 99B0C37B686; Tue, 1 Aug 2000 22:06:10 -0700 (PDT) (envelope-from kbyanc@FreeBSD.org) Received: (from kbyanc@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA23708; Tue, 1 Aug 2000 22:06:10 -0700 (PDT) (envelope-from kbyanc@FreeBSD.org) Date: Tue, 1 Aug 2000 22:06:10 -0700 (PDT) From: Message-Id: <200008020506.WAA23708@freefall.freebsd.org> To: kbyanc@FreeBSD.org, freebsd-bugs@FreeBSD.org, kbyanc@FreeBSD.org Subject: Re: gnu/19642: patch to merge OpenBSD changes to patch(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: patch to merge OpenBSD changes to patch(1) Responsible-Changed-From-To: freebsd-bugs->kbyanc Responsible-Changed-By: kbyanc Responsible-Changed-When: Tue Aug 1 22:05:33 PDT 2000 Responsible-Changed-Why: Taking my own PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=19642 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 22:10: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3739437BAFD for ; Tue, 1 Aug 2000 22:10:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA24730; Tue, 1 Aug 2000 22:10:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 1 Aug 2000 22:10:05 -0700 (PDT) Message-Id: <200008020510.WAA24730@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Chris Hardie Subject: Re: kern/16740: kernel panics Reply-To: Chris Hardie Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/16740; it has been noted by GNATS. From: Chris Hardie To: freebsd-gnats-submit@FreeBSD.ORG Cc: Sheldon Hearn , Joakim Henriksson Subject: Re: kern/16740: kernel panics Date: Wed, 2 Aug 2000 00:04:33 -0500 (EST) Given the recent prognosis of "this could take a while", we need to take action to make our system more stable, so it is my intention to move from our SCSI drive to an IDE drive sometime in the next few days. I realize this limits opportunities to debug the problem on our system, so I wanted to make sure you didn't need anything else from us before we made the switch. I also wanted to note that we've been able to isolate the panics/crashes to happening 99% of the time during the run of a particular software package which does produce significant disk activity. If examining anything about this software would be useful, please let me know (again, sooner rather than later). Thanks for all your help thus far. Chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Aug 1 23:30: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5603F37B9D2 for ; Tue, 1 Aug 2000 23:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA37190; Tue, 1 Aug 2000 23:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 847CD37B58E; Tue, 1 Aug 2000 23:20:08 -0700 (PDT) Message-Id: <20000802062008.847CD37B58E@hub.freebsd.org> Date: Tue, 1 Aug 2000 23:20:08 -0700 (PDT) From: celacunza@yahoo.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/20354: interrupting burncd with ^C Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20354 >Category: misc >Synopsis: interrupting burncd with ^C >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: Tue Aug 01 23:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Christian Lacunza >Release: 4.1-RELEASE >Organization: >Environment: >Description: interrupting burncd causes future invocations to fail. >How-To-Repeat: 1. run burncd. 2. hit ^C while it's working. 3. try to run burncd again. hp0# burncd -t -e -f /dev/acd0c data 4.1-install.iso fixate next writeable LBA 0 writing from file 4.1-install.iso size 659010 KB ^Citten this track 5408 KB (0%) total 5408 KB hp0# burncd -t -e -f /dev/acd0c data 4.1-install.iso fixate burncd: ioctl(CDRIOCOPENDISK): Invalid argument >Fix: workaround: push the eject button on the cd caddy, re-insert. >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 Wed Aug 2 1:17:51 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A77737B822; Wed, 2 Aug 2000 01:17:50 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA52625; Wed, 2 Aug 2000 01:17:50 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 01:17:50 -0700 (PDT) From: Message-Id: <200008020817.BAA52625@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, peter@FreeBSD.org Subject: Re: kern/20348: patch for "fd" is usurping "fd" ... Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: patch for "fd" is usurping "fd" ... Responsible-Changed-From-To: freebsd-bugs->peter Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Aug 2 01:17:16 PDT 2000 Responsible-Changed-Why: Peter originally introduced the use of cdevsw_add() here as a temporary solution. http://www.freebsd.org/cgi/query-pr.cgi?pr=20348 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 1:18:50 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A74FF37B822; Wed, 2 Aug 2000 01:18:48 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA52742; Wed, 2 Aug 2000 01:18:48 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 01:18:48 -0700 (PDT) From: Message-Id: <200008020818.BAA52742@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, yokota@FreeBSD.org Subject: Re: kern/20352: Configuring a synaptics touchpad Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Configuring a synaptics touchpad Responsible-Changed-From-To: freebsd-bugs->yokota Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Aug 2 01:18:27 PDT 2000 Responsible-Changed-Why: Over to Syscons-san. :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=20352 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 1:20: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D9DE637B822 for ; Wed, 2 Aug 2000 01:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA52889; Wed, 2 Aug 2000 01:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 01:20:04 -0700 (PDT) Message-Id: <200008020820.BAA52889@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: misc/20333: ftp login fails on unix password when s/key active but not required Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/20333; it has been noted by GNATS. From: Sheldon Hearn To: freebsd-gnats-submit@FreeBSD.org Cc: "Paul A. Scott" Subject: Re: misc/20333: ftp login fails on unix password when s/key active but not required Date: Wed, 02 Aug 2000 10:14:44 +0200 On Tue, 01 Aug 2000 19:40:02 MST, "Paul A. Scott" wrote: > Patch applied; problem solved. Just a note to avid PR closers: this PR is not fully addressed. We've fixed ftpd in HEAD only, and only for the NOPAM case. We still need to fix libpam for S/Key by teaching it to honour skeyaccess(3). Once that's done and the changes are merged onto the RELENG_4 branch, we can close this PR. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 1:21:32 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 714F337C07D; Wed, 2 Aug 2000 01:21:30 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA53039; Wed, 2 Aug 2000 01:21:30 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 01:21:30 -0700 (PDT) From: Message-Id: <200008020821.BAA53039@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: misc/20354: interrupting burncd with ^C Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: interrupting burncd with ^C Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Aug 2 01:21:07 PDT 2000 Responsible-Changed-Why: Soren wrote burncd. http://www.freebsd.org/cgi/query-pr.cgi?pr=20354 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 2: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 740A937C099 for ; Wed, 2 Aug 2000 02:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA60312; Wed, 2 Aug 2000 02:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mauve.csi.cam.ac.uk (mauve.csi.cam.ac.uk [131.111.8.38]) by hub.freebsd.org (Postfix) with ESMTP id 87CF437B9C7 for ; Wed, 2 Aug 2000 01:56:46 -0700 (PDT) (envelope-from jpk28@cam.ac.uk) Received: from cookie.csi.cam.ac.uk ([131.111.11.77]) by mauve.csi.cam.ac.uk with esmtp (Exim 3.13 #1) id 13JuKS-0004LW-00 for FreeBSD-gnats-submit@freebsd.org; Wed, 02 Aug 2000 09:56:44 +0100 Received: from jpk28 by cookie.csi.cam.ac.uk with local (Exim 3.13 #1) id 13JuKR-000OGH-00 for FreeBSD-gnats-submit@freebsd.org; Wed, 02 Aug 2000 09:56:43 +0100 Message-Id: Date: Wed, 02 Aug 2000 09:56:43 +0100 From: jpk28@cam.ac.uk Reply-To: jpk28@cam.ac.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20357: 5.0-CURRENT make depend Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20357 >Category: kern >Synopsis: kernel make depend fails >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: Wed Aug 02 02:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: J.P. King >Release: FreeBSD 5.0-CURRENT i386 >Organization: Cambridge University >Environment: Recentish 5.0-CURRENT system, and latest cvsup'ed version of the source. >Description: The make depend for 'GENERIC' fails with ../../dev/isp/isp_freebsd.c:2230: stdarg.h: No such file or directory I can fix this by editing ..../dev/isp/isp_freebsd.c and changing the #include on 2230 to have a fuller path - however I imagine that it shouldn't happen. >How-To-Repeat: cvsup to the current version of the source, cd .../src/sys/i386/conf config GENERIC cd ../../compile/GENERIC make depend >Fix: I would assume that you need a -I../../sys/i386/include/ (or similar) is needed somewhere. >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 Wed Aug 2 2: 9:38 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B5E9537C0A7; Wed, 2 Aug 2000 02:09:36 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA62973; Wed, 2 Aug 2000 02:09:36 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Wed, 2 Aug 2000 02:09:36 -0700 (PDT) From: Message-Id: <200008020909.CAA62973@freefall.freebsd.org> To: oystein@homelien.no, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/20088: 4.0-stable fails to compile, make: don't know how to make agp_if.c. Stop Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 4.0-stable fails to compile, make: don't know how to make agp_if.c. Stop State-Changed-From-To: feedback->closed State-Changed-By: ru State-Changed-When: Wed Aug 2 02:07:09 PDT 2000 State-Changed-Why: Pilot error -- RELENG_4 builds OK. http://www.freebsd.org/cgi/query-pr.cgi?pr=20088 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 2:10:24 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4139A37C099; Wed, 2 Aug 2000 02:10:22 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA63102; Wed, 2 Aug 2000 02:10:21 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 02:10:21 -0700 (PDT) From: Message-Id: <200008020910.CAA63102@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, mjacob@FreeBSD.org Subject: Re: kern/20357: kernel make depend fails Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: kernel make depend fails Responsible-Changed-From-To: freebsd-bugs->mjacob Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Aug 2 02:09:38 PDT 2000 Responsible-Changed-Why: Over to the Qlogic maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=20357 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 2:40:26 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F6EE37C0B1 for ; Wed, 2 Aug 2000 02:40:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA66519; Wed, 2 Aug 2000 02:40:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 02:40:07 -0700 (PDT) Message-Id: <200008020940.CAA66519@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: kern/20127: Update src/sys/i386/conf/LINT INCLUDE_CONFIG_FILE description Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/20127; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/20127: Update src/sys/i386/conf/LINT INCLUDE_CONFIG_FILE description Date: Wed, 02 Aug 2000 11:31:25 +0200 This has been fixed in current rev 1.765 of NOTES (was LINT). Either close or change synopsis to MFC: $synopsis /Johan K -- Johan Karlsson Phone : +46 (0)920 720 16 Systemteknik, Datalogi Fax : +46 (0)920 721 91 Luleå Tekniska Universitet E-mail: Johan.Karlsson@SM.LuTH.SE S-971 87 LULEÅ, SWEDEN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 2:47:43 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CD9D837BF50; Wed, 2 Aug 2000 02:47:40 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA68850; Wed, 2 Aug 2000 02:47:41 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 02:47:41 -0700 (PDT) From: Message-Id: <200008020947.CAA68850@freefall.freebsd.org> To: housley@thehousleys.net, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, brian@FreeBSD.org Subject: Re: kern/20127: Update src/sys/i386/conf/LINT INCLUDE_CONFIG_FILE description Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update src/sys/i386/conf/LINT INCLUDE_CONFIG_FILE description State-Changed-From-To: open->analyzed State-Changed-By: sheldonh State-Changed-When: Wed Aug 2 02:45:10 PDT 2000 State-Changed-Why: Fixed by Brian in rev 1.765. Left for Brian as a reminder. Responsible-Changed-From-To: freebsd-bugs->brian Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Aug 2 02:45:10 PDT 2000 Responsible-Changed-Why: Brian's reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=20127 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 3:12:20 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from dire.bris.ac.uk (dire.bris.ac.uk [137.222.10.60]) by hub.freebsd.org (Postfix) with ESMTP id 40B2E37B822 for ; Wed, 2 Aug 2000 03:12:14 -0700 (PDT) (envelope-from Tim.Williams@bristol.ac.uk) Received: from eis.bris.ac.uk by dire.bris.ac.uk with SMTP-PRIV with ESMTP; Wed, 2 Aug 2000 11:12:03 +0100 Received: from localhost (localhost [127.0.0.1]) by eis.bris.ac.uk (8.9.3/8.9.3) with SMTP id LAA16323 for ; Wed, 2 Aug 2000 11:11:20 +0100 (BST) Date: Wed, 2 Aug 2000 11:11:20 +0100 (BST) From: TP Williams To: freebsd-bugs@freebsd.org Subject: bug in install-time slice editor Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Firstly can I just say how impressed I am with FreeBSD, I've used quite a few commercial nix and RedHat Linux (which has given us no end of problems on our cluster here at work - the NFS is STILL buggy). Everything in FreeBSD that I'm using here just works fine (so far!) and I feel like I can really depend on the system. I really do like the focus of the FreeBSD project and hope it continues to grow. The only extremely minor niggle I came across was a problem with the full-screen visual slice editor which is run during install-time. I feel that a lot of FreeBSD-newbies like myself with Unix experience are likely to select 'A' for some automatic slice sizes and then customize these. Howvever, there seems to be a bug in the code that calculates how much room there is on the disk ... because I can delete a slice of say 2Gb, but I can't then add two slices of size 1Gb ... unless I re-run the installer and make sure I don't select 'A' first. hope this is clear cheers tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 5:30: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BEA6D37B71E for ; Wed, 2 Aug 2000 05:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA91699; Wed, 2 Aug 2000 05:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 05:30:02 -0700 (PDT) Message-Id: <200008021230.FAA91699@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: bin/19957: request for static linked make Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/19957; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org, nm@web.am Cc: Subject: Re: bin/19957: request for static linked make Date: Wed, 02 Aug 2000 14:30:20 +0200 Hi I do not think this will buy us anything since in order to recompile libc, gcc is used which also is dynamic.... Hence alot of programs have to be static :-) I guess if you realy want to you can make all binaries static by make -DNOSHARED buildworld but I think that would increase the size of /usr alot. /Johan K -- Johan Karlsson Phone : +46 (0)920 720 16 Systemteknik, Datalogi Fax : +46 (0)920 721 91 Luleå Tekniska Universitet E-mail: Johan.Karlsson@SM.LuTH.SE S-971 87 LULEÅ, SWEDEN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 5:41:40 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A12C37B8AC; Wed, 2 Aug 2000 05:41:39 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA92987; Wed, 2 Aug 2000 05:41:39 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 05:41:39 -0700 (PDT) From: Message-Id: <200008021241.FAA92987@freefall.freebsd.org> To: nm@web.am, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/19957: request for static linked make Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: request for static linked make State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Wed Aug 2 05:40:08 PDT 2000 State-Changed-Why: As Johan points out, the buildworld target is sensitive to the NOSHARED make variable, which seems to be what you want. I don't think it's feasible for us to introduce a bunch of WANT_STATIC_FOO variables, though. If you find parts of FreeBSD which do not honour NOSHARED, please do let us know. :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=19957 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 6:11:27 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E4CBF37B6BD; Wed, 2 Aug 2000 06:11:25 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA97703; Wed, 2 Aug 2000 06:11:25 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 06:11:25 -0700 (PDT) From: Message-Id: <200008021311.GAA97703@freefall.freebsd.org> To: andre.albsmeier@mchp.siemens.de, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/16941: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 State-Changed-From-To: open->feedback State-Changed-By: sheldonh State-Changed-When: Wed Aug 2 06:10:24 PDT 2000 State-Changed-Why: Andre, if you have access to a -CURRENT box, could you try this with the new routed-2.21 which I just committed? http://www.freebsd.org/cgi/query-pr.cgi?pr=16941 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 6:15:41 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 9493D37B7F3; Wed, 2 Aug 2000 06:15:38 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) X-Envelope-Sender-Is: andre.albsmeier@mchp.siemens.de (at relayer david.siemens.de) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by david.siemens.de (8.10.1/8.10.1) with ESMTP id e72DFb613975; Wed, 2 Aug 2000 15:15:37 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail1.siemens.de (8.10.1/8.10.1) with ESMTP id e72DFYt01292; Wed, 2 Aug 2000 15:15:34 +0200 (MET DST) Received: (from localhost) by curry.mchp.siemens.de (8.10.2/8.10.2) id e72DFYa39521; Date: Wed, 2 Aug 2000 15:15:34 +0200 From: Andre Albsmeier To: sheldonh@FreeBSD.org Cc: andre.albsmeier@mchp.siemens.de, freebsd-bugs@FreeBSD.org Subject: Re: bin/16941: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 Message-ID: <20000802151534.A836@curry.mchp.siemens.de> References: <200008021311.GAA97703@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008021311.GAA97703@freefall.freebsd.org>; from sheldonh@FreeBSD.org on Wed, Aug 02, 2000 at 06:11:25AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 02-Aug-2000 at 06:11:25 -0700, sheldonh@FreeBSD.org wrote: > Synopsis: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 > > State-Changed-From-To: open->feedback > State-Changed-By: sheldonh > State-Changed-When: Wed Aug 2 06:10:24 PDT 2000 > State-Changed-Why: > Andre, if you have access to a -CURRENT box, could you try > this with the new routed-2.21 which I just committed? I am just setting up a 4.1-STABLE machine. I have got the -current routed sources as well. Should it be possible to run your -current routed under 4.1-STABLE ? If yes, I can try this... -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 6:20: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D895C37B63D for ; Wed, 2 Aug 2000 06:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA98966; Wed, 2 Aug 2000 06:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 06:20:02 -0700 (PDT) Message-Id: <200008021320.GAA98966@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/16941: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/16941; it has been noted by GNATS. From: Sheldon Hearn To: Andre Albsmeier Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/16941: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 Date: Wed, 02 Aug 2000 15:18:34 +0200 On Wed, 02 Aug 2000 15:15:34 +0200, Andre Albsmeier wrote: > I am just setting up a 4.1-STABLE machine. I have got the > -current routed sources as well. Should it be possible to > run your -current routed under 4.1-STABLE ? Yes. The necessary newcomers RTM_NEWMADDR and RTM_DELMADDR exist in RELENG_4, so you should have no problems. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 6:30: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F32D37B557 for ; Wed, 2 Aug 2000 06:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA00705; Wed, 2 Aug 2000 06:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 06:30:03 -0700 (PDT) Message-Id: <200008021330.GAA00705@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: bin/16941: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/16941; it has been noted by GNATS. From: Andre Albsmeier To: Sheldon Hearn Cc: Andre Albsmeier , freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/16941: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 Date: Wed, 2 Aug 2000 15:19:57 +0200 On Wed, 02-Aug-2000 at 15:18:34 +0200, Sheldon Hearn wrote: > > > On Wed, 02 Aug 2000 15:15:34 +0200, Andre Albsmeier wrote: > > > I am just setting up a 4.1-STABLE machine. I have got the > > -current routed sources as well. Should it be possible to > > run your -current routed under 4.1-STABLE ? > > Yes. The necessary newcomers RTM_NEWMADDR and RTM_DELMADDR exist in > RELENG_4, so you should have no problems. Great. I will try as soon I have the machine ready and time permits (I am a bit overloaded at the moment :-)). Thanks, -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 7: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 75A5E37B857 for ; Wed, 2 Aug 2000 07:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA66662; Wed, 2 Aug 2000 07:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 07:00:05 -0700 (PDT) Message-Id: <200008021400.HAA66662@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: misc/19447: ALIGN macro undefined in /usr/include/sys/socket.h Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/19447; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: misc/19447: ALIGN macro undefined in /usr/include/sys/socket.h Date: Wed, 02 Aug 2000 15:56:19 +0200 This PR is superseeded by PR 19971 which contains a long discussion of the topic. see http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19971 /Johan K -- Johan Karlsson Phone : +46 (0)920 720 16 Systemteknik, Datalogi Fax : +46 (0)920 721 91 Luleå Tekniska Universitet E-mail: Johan.Karlsson@SM.LuTH.SE S-971 87 LULEÅ, SWEDEN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 7: 5: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D2F0437B7EC; Wed, 2 Aug 2000 07:05:03 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA69204; Wed, 2 Aug 2000 07:05:03 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 07:05:03 -0700 (PDT) From: Message-Id: <200008021405.HAA69204@freefall.freebsd.org> To: john@bartok.lanl.gov, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/19447: ALIGN macro undefined in /usr/include/sys/socket.h Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ALIGN macro undefined in /usr/include/sys/socket.h State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Wed Aug 2 07:03:56 PDT 2000 State-Changed-Why: As pointed out by Johan Karlsson , this PR is superseded by PR 19971. http://www.freebsd.org/cgi/query-pr.cgi?pr=19447 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 7:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DA17037B68A for ; Wed, 2 Aug 2000 07:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA71057; Wed, 2 Aug 2000 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 07:10:02 -0700 (PDT) Message-Id: <200008021410.HAA71057@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: conf/19506: Running /stand/sysinstall can clobber /etc/make.conf Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/19506; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org, gad@eclipse.acs.rpi.edu Cc: Subject: Re: conf/19506: Running /stand/sysinstall can clobber /etc/make.conf Date: Wed, 02 Aug 2000 16:01:04 +0200 Duplicate of PR 19424 Please close http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19424 /Johan K -- Johan Karlsson Phone : +46 (0)920 720 16 Systemteknik, Datalogi Fax : +46 (0)920 721 91 Luleå Tekniska Universitet E-mail: Johan.Karlsson@SM.LuTH.SE S-971 87 LULEÅ, SWEDEN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 7:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A3C7E37B7EC for ; Wed, 2 Aug 2000 07:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA71065; Wed, 2 Aug 2000 07:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 07:10:03 -0700 (PDT) Message-Id: <200008021410.HAA71065@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: bin/19424: /stand/sysinstall wrongly changes /etc/make.conf Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/19424; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org, matt@ARPA.MAIL.NET Cc: Subject: Re: bin/19424: /stand/sysinstall wrongly changes /etc/make.conf Date: Wed, 02 Aug 2000 16:08:23 +0200 Fixed in sysinstall.h 1.194 install.c 1.278 globals.c 1.25 among others Has also been MFC:ed to RELENG_4 /Johan K -- Johan Karlsson Phone : +46 (0)920 720 16 Systemteknik, Datalogi Fax : +46 (0)920 721 91 Luleå Tekniska Universitet E-mail: Johan.Karlsson@SM.LuTH.SE S-971 87 LULEÅ, SWEDEN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 7:18:38 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D6DB637B68A; Wed, 2 Aug 2000 07:18:36 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA72246; Wed, 2 Aug 2000 07:18:37 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 07:18:37 -0700 (PDT) From: Message-Id: <200008021418.HAA72246@freefall.freebsd.org> To: gad@eclipse.acs.rpi.edu, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/19506: Running /stand/sysinstall can clobber /etc/make.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Running /stand/sysinstall can clobber /etc/make.conf State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Wed Aug 2 07:17:51 PDT 2000 State-Changed-Why: As pointed out by Johan Karlsson , this is a duplicate of PR 19424. http://www.freebsd.org/cgi/query-pr.cgi?pr=19506 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 7:22:32 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B78A537B720; Wed, 2 Aug 2000 07:22:30 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA72882; Wed, 2 Aug 2000 07:22:30 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 07:22:30 -0700 (PDT) From: Message-Id: <200008021422.HAA72882@freefall.freebsd.org> To: matt@ARPA.MAIL.NET, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/19424: /stand/sysinstall wrongly changes /etc/make.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /stand/sysinstall wrongly changes /etc/make.conf State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Wed Aug 2 07:18:50 PDT 2000 State-Changed-Why: As pointed out by Johan Karlsson , this has been fixed by jkh in HEAD and RELENG_4. http://www.freebsd.org/cgi/query-pr.cgi?pr=19424 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 7:40: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C448137BA3E for ; Wed, 2 Aug 2000 07:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA75195; Wed, 2 Aug 2000 07:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 07:40:03 -0700 (PDT) Message-Id: <200008021440.HAA75195@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: misc/19130: make reports Makefile error if USA_RESIDENT not set Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/19130; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org, khera@kciLink.com Cc: Subject: Re: misc/19130: make reports Makefile error if USA_RESIDENT not set Date: Wed, 02 Aug 2000 16:30:40 +0200 Hi Vivek Setting USA_RESIDENT is mandantory for this port, but you should not get that error any way. Using FreeBSD 4.2-Stable and with the new Makefile of this port it seems to work. k@numeri /usr/ports/security/gnupg-rsa >ident Makefile Makefile: $FreeBSD: ports/security/gnupg-rsa/Makefile,v 1.3 2000/07/04 02:44:57 kuriyama Exp $ I think this was solved in rev 1.3 but it might be that FreeBSD 3.4-STABLE has some minor differens in its 'make' and if so this needs to be dealt with. Can you please update your ports-tree and try this again. Thanks Johan K -- Johan Karlsson Phone : +46 (0)920 720 16 Systemteknik, Datalogi Fax : +46 (0)920 721 91 Luleå Tekniska Universitet E-mail: Johan.Karlsson@SM.LuTH.SE S-971 87 LULEÅ, SWEDEN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 7:50: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FC9F37B757 for ; Wed, 2 Aug 2000 07:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA77308; Wed, 2 Aug 2000 07:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 07:50:03 -0700 (PDT) Message-Id: <200008021450.HAA77308@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: misc/18934: X11 forwarding not requested with DISPLAY defined Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/18934; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org, larson@pa.dec.com Cc: Subject: Re: misc/18934: X11 forwarding not requested with DISPLAY defined Date: Wed, 02 Aug 2000 16:42:52 +0200 Hi From ssh(1) on a 4.1-Stable "Forwarding of X11 connections weakens the security of ssh and is disabled by default. X11 forwarding can be enabled on the command line or in configuration files." Hence you need to uncomment # ForwardX11 yes in the ssh_config file (in /etc/ssh for 4.2-stable with OpenSSH). /Johan K -- Johan Karlsson Phone : +46 (0)920 720 16 Systemteknik, Datalogi Fax : +46 (0)920 721 91 Luleå Tekniska Universitet E-mail: Johan.Karlsson@SM.LuTH.SE S-971 87 LULEÅ, SWEDEN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 7:50:13 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4661A37B7F4 for ; Wed, 2 Aug 2000 07:50:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA77313; Wed, 2 Aug 2000 07:50:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 07:50:05 -0700 (PDT) Message-Id: <200008021450.HAA77313@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: misc/19130: make reports Makefile error if USA_RESIDENT not set Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/19130; it has been noted by GNATS. From: Sheldon Hearn To: Johan Karlsson Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/19130: make reports Makefile error if USA_RESIDENT not set Date: Wed, 02 Aug 2000 16:44:53 +0200 On Wed, 02 Aug 2000 07:40:03 MST, Johan Karlsson wrote: > I think this was solved in rev 1.3 but it might be that FreeBSD > 3.4-STABLE has some minor differens in its 'make' and if so this > needs to be dealt with. I don't think so. The Makefile rev 1.3 still contains: .if ${USA_RESIDENT} == NO [...] Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 7:50:14 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 59C2537BBAF for ; Wed, 2 Aug 2000 07:50:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA77346; Wed, 2 Aug 2000 07:50:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 07:50:07 -0700 (PDT) Message-Id: <200008021450.HAA77346@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: misc/19130: make reports Makefile error if USA_RESIDENT not set Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/19130; it has been noted by GNATS. From: Sheldon Hearn To: Johan Karlsson Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/19130: make reports Makefile error if USA_RESIDENT not set Date: Wed, 02 Aug 2000 16:47:46 +0200 On Wed, 02 Aug 2000 16:44:53 +0200, Sheldon Hearn wrote: > > I think this was solved in rev 1.3 but it might be that FreeBSD > > 3.4-STABLE has some minor differens in its 'make' and if so this > > needs to be dealt with. > > I don't think so. The Makefile rev 1.3 still contains: > > .if ${USA_RESIDENT} == NO > [...] Hmm, I failed to notice that the ``.if ${USA_RESIDENT} == NO'' is inside an ``.elif defined(USA_RESIDENT)''. I'll take a look. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 8: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 441BC37B984 for ; Wed, 2 Aug 2000 08:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA79725; Wed, 2 Aug 2000 08:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 08:00:03 -0700 (PDT) Message-Id: <200008021500.IAA79725@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Vivek Khera Subject: Re: misc/19130: make reports Makefile error if USA_RESIDENT not set Reply-To: Vivek Khera Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/19130; it has been noted by GNATS. From: Vivek Khera To: Johan Karlsson Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/19130: make reports Makefile error if USA_RESIDENT not set Date: Wed, 2 Aug 2000 10:51:02 -0400 (EDT) >>>>> "JK" == Johan Karlsson writes: JK> k@numeri /usr/ports/security/gnupg-rsa >ident Makefile JK> Makefile: JK> $FreeBSD: ports/security/gnupg-rsa/Makefile,v 1.3 2000/07/04 JK> 02:44:57 kuriyama Exp $ JK> I think this was solved in rev 1.3 but it might be that FreeBSD JK> 3.4-STABLE JK> has some minor differens in its 'make' and if so this needs to be dealt JK> with. Yes; the current makefile does properly report that USA_RESIDENT must be set. This is on 3.5-STABLE. The bug is resolved. [root@onceler]# ident Makefile Makefile: $FreeBSD: ports/security/gnupg-rsa/Makefile,v 1.3 2000/07/04 02:44:57 kuriyama Exp $ [root@onceler]# make You must set variable USA_RESIDENT to YES, if you are USA resident or to NO, if you aren't USA resident to build this package *** Error code 1 Stop. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 8: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ECFFD37B965 for ; Wed, 2 Aug 2000 08:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA79733; Wed, 2 Aug 2000 08:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 08:00:04 -0700 (PDT) Message-Id: <200008021500.IAA79733@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: misc/17962: default release names need updating in src/release/Makefile Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/17962; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: misc/17962: default release names need updating in src/release/Makefile Date: Wed, 02 Aug 2000 16:56:31 +0200 Fixed in 5.0 rev 1.548 4.0 rev 1.469 /Johan K -- Johan Karlsson Phone : +46 (0)920 720 16 Systemteknik, Datalogi Fax : +46 (0)920 721 91 Luleå Tekniska Universitet E-mail: Johan.Karlsson@SM.LuTH.SE S-971 87 LULEÅ, SWEDEN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 8:10: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 171A937C0F4 for ; Wed, 2 Aug 2000 08:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA83873; Wed, 2 Aug 2000 08:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 08:10:03 -0700 (PDT) Message-Id: <200008021510.IAA83873@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: misc/16843: Knob for release/Makefile to prevent deleting docproj distfiles Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/16843; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: misc/16843: Knob for release/Makefile to prevent deleting docproj distfiles Date: Wed, 02 Aug 2000 17:06:08 +0200 Duplicate of PR 16842 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=16842 Please close :-) /K -- Johan Karlsson Phone : +46 (0)920 720 16 Systemteknik, Datalogi Fax : +46 (0)920 721 91 Luleå Tekniska Universitet E-mail: Johan.Karlsson@SM.LuTH.SE S-971 87 LULEÅ, SWEDEN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 8:12:25 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 74E4937BA59; Wed, 2 Aug 2000 08:12:24 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA84471; Wed, 2 Aug 2000 08:12:24 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 08:12:24 -0700 (PDT) From: Message-Id: <200008021512.IAA84471@freefall.freebsd.org> To: khera@kciLink.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/19130: make reports Makefile error if USA_RESIDENT not set Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: make reports Makefile error if USA_RESIDENT not set State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Wed Aug 2 08:11:24 PDT 2000 State-Changed-Why: Yet another close-pr courtesy of Johan Karlsson . http://www.freebsd.org/cgi/query-pr.cgi?pr=19130 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 8:13:31 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8857737B752; Wed, 2 Aug 2000 08:13:29 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA84689; Wed, 2 Aug 2000 08:13:29 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 08:13:29 -0700 (PDT) From: Message-Id: <200008021513.IAA84689@freefall.freebsd.org> To: larson@pa.dec.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/18934: X11 forwarding not requested with DISPLAY defined Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: X11 forwarding not requested with DISPLAY defined State-Changed-From-To: open->feedback State-Changed-By: sheldonh State-Changed-When: Wed Aug 2 08:12:52 PDT 2000 State-Changed-Why: Are you happy with Johan's explanation? http://www.freebsd.org/cgi/query-pr.cgi?pr=18934 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 8:14:28 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A0BFF37B752; Wed, 2 Aug 2000 08:14:27 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA84942; Wed, 2 Aug 2000 08:14:28 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 08:14:28 -0700 (PDT) From: Message-Id: <200008021514.IAA84942@freefall.freebsd.org> To: mkiernan@avantgo.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/17962: default release names need updating in src/release/Makefile Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: default release names need updating in src/release/Makefile State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Wed Aug 2 08:14:14 PDT 2000 State-Changed-Why: Yet another close-pr courtesy of Johan Karlsson . http://www.freebsd.org/cgi/query-pr.cgi?pr=17962 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 8:16:40 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B60BA37B752; Wed, 2 Aug 2000 08:16:38 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA85659; Wed, 2 Aug 2000 08:16:39 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 08:16:39 -0700 (PDT) From: Message-Id: <200008021516.IAA85659@freefall.freebsd.org> To: jack@germanium.xtalwind.net, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/16842: Knob for release/Makefile to prevent deleting docproj distfiles Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Knob for release/Makefile to prevent deleting docproj distfiles State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Wed Aug 2 08:16:20 PDT 2000 State-Changed-Why: Yet another close-pr courtesy of Johan Karlsson . http://www.freebsd.org/cgi/query-pr.cgi?pr=16842 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 8:53:49 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from goliath.siemens.de (goliath.siemens.de [194.138.37.131]) by hub.freebsd.org (Postfix) with ESMTP id B1FC437BC20; Wed, 2 Aug 2000 08:53:41 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) X-Envelope-Sender-Is: andre.albsmeier@mchp.siemens.de (at relayer goliath.siemens.de) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by goliath.siemens.de (8.10.1/8.10.1) with ESMTP id e72Frcc20982; Wed, 2 Aug 2000 17:53:38 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail2.siemens.de (8.10.1/8.10.1) with ESMTP id e72Frb609774; Wed, 2 Aug 2000 17:53:37 +0200 (MET DST) Received: (from localhost) by curry.mchp.siemens.de (8.10.2/8.10.2) id e72Frba41729; Date: Wed, 2 Aug 2000 17:53:37 +0200 From: Andre Albsmeier To: sheldonh@FreeBSD.org Cc: andre.albsmeier@mchp.siemens.de, freebsd-bugs@FreeBSD.org Subject: Re: bin/16941: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 Message-ID: <20000802175337.A17208@curry.mchp.siemens.de> References: <200008021311.GAA97703@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008021311.GAA97703@freefall.freebsd.org>; from sheldonh@FreeBSD.org on Wed, Aug 02, 2000 at 06:11:25AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 02-Aug-2000 at 06:11:25 -0700, sheldonh@FreeBSD.org wrote: > Synopsis: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 > > State-Changed-From-To: open->feedback > State-Changed-By: sheldonh > State-Changed-When: Wed Aug 2 06:10:24 PDT 2000 > State-Changed-Why: > Andre, if you have access to a -CURRENT box, could you try > this with the new routed-2.21 which I just committed? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=16941 I tried the -current routed on 4.1-STABLE, it compiled cleanly. Unfortunately, the error message is still there. I am sure the ip alias is set up properly. The message started to appear when peter made his commit to routed in february, e.g.: ---------------- snip ---------------------- Thu Feb 17 05:26:36 2000 CET (5 months, 2 weeks ago) by peter MFC: all fixes and cleanups - this is the last straw, it has broken one time too many. The 3.4 version has been doing bizzare things while the 4.0 version compiled on 3.4 has worked fine. ---------------- snap ---------------------- Before these commits, routed never complained about the ip alias. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 9:20: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A7CDC37BBEE for ; Wed, 2 Aug 2000 09:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA99960; Wed, 2 Aug 2000 09:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 09:20:03 -0700 (PDT) Message-Id: <200008021620.JAA99960@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: bin/16941: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/16941; it has been noted by GNATS. From: Andre Albsmeier To: sheldonh@FreeBSD.org Cc: andre.albsmeier@mchp.siemens.de, freebsd-bugs@FreeBSD.org Subject: Re: bin/16941: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 Date: Wed, 2 Aug 2000 17:53:37 +0200 On Wed, 02-Aug-2000 at 06:11:25 -0700, sheldonh@FreeBSD.org wrote: > Synopsis: routed: possible netmask problem between fxp0:192.168.1.4/32 and fxp0:192.168.1.0/24 > > State-Changed-From-To: open->feedback > State-Changed-By: sheldonh > State-Changed-When: Wed Aug 2 06:10:24 PDT 2000 > State-Changed-Why: > Andre, if you have access to a -CURRENT box, could you try > this with the new routed-2.21 which I just committed? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=16941 I tried the -current routed on 4.1-STABLE, it compiled cleanly. Unfortunately, the error message is still there. I am sure the ip alias is set up properly. The message started to appear when peter made his commit to routed in february, e.g.: ---------------- snip ---------------------- Thu Feb 17 05:26:36 2000 CET (5 months, 2 weeks ago) by peter MFC: all fixes and cleanups - this is the last straw, it has broken one time too many. The 3.4 version has been doing bizzare things while the 4.0 version compiled on 3.4 has worked fine. ---------------- snap ---------------------- Before these commits, routed never complained about the ip alias. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 9:40: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 83F4C37BAD0 for ; Wed, 2 Aug 2000 09:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA02771; Wed, 2 Aug 2000 09:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 25BF237BC20; Wed, 2 Aug 2000 09:36:27 -0700 (PDT) Message-Id: <20000802163627.25BF237BC20@hub.freebsd.org> Date: Wed, 2 Aug 2000 09:36:27 -0700 (PDT) From: mmyhre@pixstream.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/20361: In in.c:in_addmulti, missing splx when ifma->ifma_protospec is null. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20361 >Category: kern >Synopsis: In in.c:in_addmulti, missing splx when ifma->ifma_protospec is null. >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Aug 02 09:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mark Myhre >Release: 4.0 >Organization: PixStream >Environment: >Description: When this variable is null (ifma->ifma_protospec is null), the function returns without having returned the calling process to its previous priority. >How-To-Repeat: >Fix: Add an splx() before the return statement. >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 Wed Aug 2 9:50: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 309B137B971 for ; Wed, 2 Aug 2000 09:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA04126; Wed, 2 Aug 2000 09:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 09:50:02 -0700 (PDT) Message-Id: <200008021650.JAA04126@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: kern/20347: YAMAHA CDR100 does not like multiple LUN probing Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/20347; it has been noted by GNATS. From: Andre Albsmeier To: "Kenneth D. Merry" Cc: Andre Albsmeier , FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/20347: YAMAHA CDR100 does not like multiple LUN probing Date: Wed, 2 Aug 2000 18:46:31 +0200 On Tue, 01-Aug-2000 at 14:03:09 -0600, Kenneth D. Merry wrote: > On Tue, Aug 01, 2000 at 21:07:32 +0200, Andre Albsmeier wrote: > > >Environment: > > > > probably all FreeBSD versions > > > > >Description: > > > > The YAMAHA CDR100 doesn't like multiple LUN probing. If you, for example, > > wire down your devices like this > > > > device pass15 at scbus1 target 5 > > device cd1 at scbus1 target 5 > > device pass16 at scbus1 target 6 > > device cd0 at scbus1 target 6 > > > > where target 5 is a "YAMAHA CDR100" and target 6 is another cdrom, > > the following message appears in dmesg > > > > (cd0:ahc1:0:5:0): Duplicate Wired Device entry! > > (cd0:ahc1:0:5:0): Second device will not be wired > > (cd0:ahc1:0:5:0): lost device > > (cd0:ahc1:0:5:0): removing device entry > > > > and the other cdrom (target 6) becomes cd1. > > This isn't a problem with the drive and multiple-lun probing, but rather a > problem with the hard-wiring code. > > The problem is that the hard-wiring code evidently can't deal with multiple > peripheral drivers wired to the same bus/target/lun. > > A work-around here would be to not hard-wire your pass devices, and just > hard-wire your CDROM devices. I tried this already with the following entries: #device pass15 at scbus1 target 5 device cd1 at scbus1 target 5 #device pass16 at scbus1 target 6 device cd0 at scbus1 target 6 Same result: andre@bali:~>dmesg | egrep 'cd|pass0' (pass0:ahc0:0:0:0): Duplicate Wired Device entry! (pass0:ahc0:0:0:0): Second device will not be wired (pass0:ahc0:0:0:0): Duplicate Wired Device entry! (pass0:ahc0:0:0:0): Second device will not be wired (cd0:ahc1:0:5:0): lost device (cd0:ahc1:0:5:0): removing device entry cd1 at ahc1 bus 0 target 6 lun 0 cd1: Removable CD-ROM SCSI-2 device cd1: 20.000MB/s transfers (20.000MHz, offset 15) cd1: Attempt to query device size failed: NOT READY, Medium not present - tray closed Another try was this: I removed all wiring entries from the kernel conf (leaving only a "device cd" line): device cd #device pass15 at scbus1 target 5 #device cd1 at scbus1 target 5 #device pass16 at scbus1 target 6 #device cd0 at scbus1 target 6 And the result: andre@bali:~> dmesg | grep cd (cd1:ahc1:0:5:0): lost device (cd1:ahc1:0:5:0): removing device entry cd0 at ahc1 bus 0 target 6 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 20.000MB/s transfers (20.000MHz, offset 15) I have three other Yamaha CD-Writers: CD400, CD4260 and a CD6416. With all of these everything works perfectly. Also, the CDR100 is known to be broken with multiple LUN probing. You can see this if you enable the 'Multiple LUN support' in the Adaptec BIOS: When booting, you will see 8 CDR100 devices appear under the assigned SCSI ID when the controller BIOS scans the bus. All other CD Writers behave normally here... I think, we should consider putting the quirk entry into cam_xpt.c -- sure the hard-wiring code will still have the problems you wrote about but the CDR100 is broken for sure :-( What do you think? Thanks a lot, -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 12: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D64A637BDF2 for ; Wed, 2 Aug 2000 12:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA23640; Wed, 2 Aug 2000 12:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 4FAD937BF25 for ; Wed, 2 Aug 2000 11:57:46 -0700 (PDT) (envelope-from robert@fledge.watson.org) Received: (from robert@localhost) by fledge.watson.org (8.9.3/8.9.3) id OAA94888; Wed, 2 Aug 2000 14:57:41 -0400 (EDT) (envelope-from robert) Message-Id: <200008021857.OAA94888@fledge.watson.org> Date: Wed, 2 Aug 2000 14:57:41 -0400 (EDT) From: rwatson@freebsd.org Reply-To: rwatson@freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/20363: dhclient doesn't know what to do when an interface disappears Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20363 >Category: bin >Synopsis: dhclient doesn't know what to do when an interface disappears >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: Wed Aug 02 12:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Robert Watson >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: pccard environment, DHCP in use to configure IP on card >Description: Leaving the ethernet card in the slot, suspend, then wake up the notebook. if_detach() will free th struct ifnet, and BPF will return an appropriate error to dhclient (I believe, haven't tracked it down quite), but dhclient apparently doesn't know how to deal with that. Aug 1 12:53:35 numocking dhclient: receive_packet failed on wi0: Device not con figured Aug 1 12:53:58 numocking last message repeated 167598 times >How-To-Repeat: suspend notebook, wake it up, watch syslog >Fix: errno checking in the receive packet event loop probably needs to check for ENXIO, which indicates that the device is no longer valid. Not sure what it should do next -- probably exit. >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 Wed Aug 2 12:52:33 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A506F37BB0F; Wed, 2 Aug 2000 12:52:31 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA30360; Wed, 2 Aug 2000 12:52:31 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 12:52:31 -0700 (PDT) From: Message-Id: <200008021952.MAA30360@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, obrien@FreeBSD.org Subject: Re: bin/20363: dhclient doesn't know what to do when an interface disappears Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: dhclient doesn't know what to do when an interface disappears Responsible-Changed-From-To: freebsd-bugs->obrien Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Aug 2 12:51:54 PDT 2000 Responsible-Changed-Why: David seems to have taken dhclient under his wing... http://www.freebsd.org/cgi/query-pr.cgi?pr=20363 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 13: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DB4B637BF75 for ; Wed, 2 Aug 2000 13:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA31133; Wed, 2 Aug 2000 13:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 13:00:03 -0700 (PDT) Message-Id: <200008022000.NAA31133@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/20361: In in.c:in_addmulti, missing splx when ifma->ifma_protospec is null. Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/20361; it has been noted by GNATS. From: Sheldon Hearn To: wollman@FreeBSD.org Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/20361: In in.c:in_addmulti, missing splx when ifma->ifma_protospec is null. Date: Wed, 02 Aug 2000 21:55:45 +0200 On Wed, 02 Aug 2000 09:36:27 MST, mmyhre@pixstream.com wrote: > >Number: 20361 > >Category: kern > >Synopsis: In in.c:in_addmulti, missing splx when > > ifma->ifma_protospec is null. Hi Garret, This one seems to fall inside some code of yours. I know you don't like to have PR's assigned to you, so I'm just calling your attention to it. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 13: 2:52 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FEF537B5D7; Wed, 2 Aug 2000 13:02:51 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA31435; Wed, 2 Aug 2000 13:02:51 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 13:02:51 -0700 (PDT) From: Message-Id: <200008022002.NAA31435@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, dec@FreeBSD.org Subject: Re: kern/20214: kernel routing bug for nexthop is routed over it self Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: kernel routing bug for nexthop is routed over it self Responsible-Changed-From-To: freebsd-bugs->dec Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Aug 2 13:02:21 PDT 2000 Responsible-Changed-Why: David's port (gated). http://www.freebsd.org/cgi/query-pr.cgi?pr=20214 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 13: 5:54 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 45D6A37BD66; Wed, 2 Aug 2000 13:05:53 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA33069; Wed, 2 Aug 2000 13:05:53 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Wed, 2 Aug 2000 13:05:53 -0700 (PDT) From: Message-Id: <200008022005.NAA33069@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, dillon@FreeBSD.org Subject: Re: kern/20273: swap Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: swap Responsible-Changed-From-To: freebsd-bugs->dillon Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Aug 2 13:05:12 PDT 2000 Responsible-Changed-Why: Matt's code, he'll know what questions to ask. http://www.freebsd.org/cgi/query-pr.cgi?pr=20273 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 13:30:12 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 15A5437BD66 for ; Wed, 2 Aug 2000 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35281; Wed, 2 Aug 2000 13:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 8626C37C253; Wed, 2 Aug 2000 13:22:56 -0700 (PDT) Message-Id: <20000802202256.8626C37C253@hub.freebsd.org> Date: Wed, 2 Aug 2000 13:22:56 -0700 (PDT) From: gabriek_ambuehl@root.li To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/20366: Accidentally submitted my temporary directory :-( Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20366 >Category: misc >Synopsis: Accidentally submitted my temporary directory :-( >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Aug 02 13:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gabriel Ambuehl >Release: >Organization: BUZ Internet Services >Environment: >Description: Accidentally submitted my temporary directory :-(, Sorry. This one should be more accurate. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # /usr/ports/security/snort # /usr/ports/security/snort/files # /usr/ports/security/snort/files/md5 # /usr/ports/security/snort/pkg # /usr/ports/security/snort/pkg/COMMENT # /usr/ports/security/snort/pkg/DESCR # /usr/ports/security/snort/pkg/PLIST # /usr/ports/security/snort/Makefile # echo c - /usr/ports/security/snort mkdir -p /usr/ports/security/snort > /dev/null 2>&1 echo c - /usr/ports/security/snort/files mkdir -p /usr/ports/security/snort/files > /dev/null 2>&1 echo x - /usr/ports/security/snort/files/md5 sed 's/^X//' >/usr/ports/security/snort/files/md5 << sed 's/^X//' >'END-of-/usr/ports/security/snort/files/md5' XMD5 (snort-1.6.3.tar.gz) = 5d628b08c0bf42af3affc9fcfca7ea69 END-of-/usr/ports/security/snort/files/md5 echo c - /usr/ports/security/snort/pkg mkdir -p /usr/ports/security/snort/pkg > /dev/null 2>&1 echo x - /usr/ports/security/snort/pkg/COMMENT sed 's/^X//' >/usr/ports/security/snort/pkg/COMMENT << sed 's/^X//' >'END-of-/usr/ports/security/snort/pkg/COMMENT' XLightweight network intrusion detection system END-of-/usr/ports/security/snort/pkg/COMMENT echo x - /usr/ports/security/snort/pkg/DESCR sed 's/^X//' >/usr/ports/security/snort/pkg/DESCR << sed 's/^X//' >'END-of-/usr/ports/security/snort/pkg/DESCR' XSnort is a libpcap-based packet sniffer/logger which can be used as a Xlightweight network intrusion detection system. It features rules based logging Xand can perform content searching/matching in addition to being used to detect Xa variety of other attacks and probes, such as buffer overflows, stealth port Xscans, CGI attacks, SMB probes, and much more. Snort has a real-time alerting Xcapabilty, with alerts being sent to syslog, a seperate "alert" file, or even Xto a Windows computer via Samba. X XPackets are logged in their decoded form to directories which are generated Xbased upon the IP address of the remote peer. This allows Snort to be used as Xa sort of "poor man's intrusion detection system" if you specify what traffic Xyou want to record and what to let through. X XFor instance, I use it to record traffic of interest to the six computers in Xmy office at work while I'm away on travel or gone for the weekend. It's Xalso nice for debugging network code since it shows you most of the Important XStuff(TM) about your packets (as I see it anyway). The code is pretty easy Xto modify to provide more complete packet decoding, so feel free to make Xsuggestions. X XWWW: http://www.snort.org/ END-of-/usr/ports/security/snort/pkg/DESCR echo x - /usr/ports/security/snort/pkg/PLIST sed 's/^X//' >/usr/ports/security/snort/pkg/PLIST << sed 's/^X//' >'END-of-/usr/ports/security/snort/pkg/PLIST' Xbin/snort Xshare/snort/CREDITS Xshare/snort/RULES.SAMPLE Xshare/snort/USAGE Xshare/snort/backdoor-lib Xshare/snort/ddos-lib Xshare/snort/finger-lib Xshare/snort/ftp-lib Xshare/snort/misc-lib Xshare/snort/netbios-lib Xshare/snort/overflow-lib Xshare/snort/ping-lib Xshare/snort/rpc-lib Xshare/snort/scan-lib Xshare/snort/smtp-lib Xshare/snort/snort-lib Xshare/snort/telnet-lib Xshare/snort/webcf-lib Xshare/snort/webcgi-lib Xshare/snort/webfp-lib Xshare/snort/webiis-lib Xshare/snort/webmisc-lib X@dirrm share/snort END-of-/usr/ports/security/snort/pkg/PLIST echo x - /usr/ports/security/snort/Makefile sed 's/^X//' >/usr/ports/security/snort/Makefile << sed 's/^X//' >'END-of-/usr/ports/security/snort/Makefile' X# New ports collection makefile for: snort X# Date created: Mon Aug 2 12:04:08 CEST 1999 X# Whom: Dirk Froemberg X# X# $FreeBSD: ports/security/snort/Makefile,v 1.12 2000/07/10 13:35:51 dirk Exp $ X# X XPORTNAME= snort XPORTVERSION= 1.6.3 XCATEGORIES= security XMASTER_SITES= http://www.snort.org/Files/ \ X http://www.physik.TU-Berlin.DE/~ibex/ports/distfiles/ X XMAINTAINER= dirk@FreeBSD.org X XGNU_CONFIGURE= yes XMAN8= snort.8 X Xpost-install: X ${MKDIR} ${PREFIX}/share/snort X.for i in CREDITS RULES.SAMPLE USAGE backdoor-lib ddos-lib finger-lib ftp-lib \ X misc-lib netbios-lib overflow-lib ping-lib rpc-lib scan-lib smtp-lib \ X snort-lib telnet-lib webcf-lib webcgi-lib webfp-lib webiis-lib webmisc-lib X ${INSTALL_DATA} ${WRKSRC}/$i ${PREFIX}/share/snort X.endfor X X.include END-of-/usr/ports/security/snort/Makefile exit >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 Wed Aug 2 13:50: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 52B3937BE2A for ; Wed, 2 Aug 2000 13:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA37776; Wed, 2 Aug 2000 13:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 13EDE37BC6D; Wed, 2 Aug 2000 13:48:22 -0700 (PDT) Message-Id: <20000802204822.13EDE37BC6D@hub.freebsd.org> Date: Wed, 2 Aug 2000 13:48:22 -0700 (PDT) From: gabriek_ambuehl@root.li To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/20367: Accidentally submitted my temporary directory :-( Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20367 >Category: misc >Synopsis: Accidentally submitted my temporary directory :-( >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Aug 02 13:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gabriel Ambuehl >Release: >Organization: BUZ Internet Services >Environment: >Description: Accidentally submitted my temporary directory :-(, Sorry. This one should be more accurate. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # /usr/ports/security/snort # /usr/ports/security/snort/files # /usr/ports/security/snort/files/md5 # /usr/ports/security/snort/pkg # /usr/ports/security/snort/pkg/COMMENT # /usr/ports/security/snort/pkg/DESCR # /usr/ports/security/snort/pkg/PLIST # /usr/ports/security/snort/Makefile # echo c - /usr/ports/security/snort mkdir -p /usr/ports/security/snort > /dev/null 2>&1 echo c - /usr/ports/security/snort/files mkdir -p /usr/ports/security/snort/files > /dev%2 >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 Wed Aug 2 14:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6941937BC81 for ; Wed, 2 Aug 2000 14:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA43864; Wed, 2 Aug 2000 14:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 14:30:03 -0700 (PDT) Message-Id: <200008022130.OAA43864@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: bin/18827: add truncate(1) Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/18827; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: sheldonh@FreeBSD.org Subject: Re: bin/18827: add truncate(1) Date: Wed, 02 Aug 2000 23:22:35 +0200 truncate has been added to current as of Jul 18th Revision 1.151 of usr.bin/Makefile Please MFC and close this PR. /Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 14:51:59 2000 Delivered-To: freebsd-bugs@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 618) id 70BC037B66E; Wed, 2 Aug 2000 14:51:58 -0700 (PDT) Subject: Re: kern/19726: fatal trap 12 / page fault In-Reply-To: <200007312310.QAA04436@freefall.freebsd.org> from Jeff Blaine at "Jul 31, 2000 04:10:03 pm" To: jeffblaine@mediaone.net (Jeff Blaine) Date: Wed, 2 Aug 2000 14:51:58 -0700 (PDT) Cc: bugs@freebsd.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: <20000802215158.70BC037B66E@hub.freebsd.org> From: wpaul@FreeBSD.ORG (Bill Paul) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > For the sake of thoroughness on my part, I'm following through with > a backtrace and dmesg output as well even though someone else > already has: [chop] I'd really appreciate it if you (and everyone else who's concerned with this PR) would try if_rl.c and if_rlreg.h from 4.1-RELEASE and see if that fixes the problem. I'm sure there were a couple of updates to the RealTek driver since 4.0-RELEASE. -Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 15:20:16 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B9D1A37BFF2 for ; Wed, 2 Aug 2000 15:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA49717; Wed, 2 Aug 2000 15:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id AB15D37B8CE; Wed, 2 Aug 2000 15:17:38 -0700 (PDT) Message-Id: <20000802221738.AB15D37B8CE@hub.freebsd.org> Date: Wed, 2 Aug 2000 15:17:38 -0700 (PDT) From: sschmidt@topnet.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/20368: 4.1-REL bootloader failed to find a kernel to boot after installation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20368 >Category: conf >Synopsis: 4.1-REL bootloader failed to find a kernel to boot after installation >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: Wed Aug 02 15:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Stefan Schmidt >Release: 4.1-REL >Organization: Topnet AG >Environment: nope >Description: just as the subject says: i tried to install FBSD 4.1-REL via FTP and the two floppies. System: dual i686 450mhz / 512MB / SCSI HD / i Etherexpresswhatever everything went just fine just to the point where, after the reboot, bootloader should start loading the kernel. it failed. oh i should say: it has definetly not been a bios setup problem since i installed OpenBSD thereafter and it worked. (though i found out later that OBSD does not yet support SMP *sigh*) >How-To-Repeat: install 4.1-REL via FTP on a SCSI HD ? >Fix: >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 Wed Aug 2 16:57:15 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from web5501.mail.yahoo.com (web5501.mail.yahoo.com [216.115.106.184]) by hub.freebsd.org (Postfix) with SMTP id 6F58437B973 for ; Wed, 2 Aug 2000 16:57:12 -0700 (PDT) (envelope-from james_daniels_1980@yahoo.com) Message-ID: <20000802235711.5334.qmail@web5501.mail.yahoo.com> Received: from [209.247.139.207] by web5501.mail.yahoo.com; Wed, 02 Aug 2000 16:57:11 PDT Date: Wed, 2 Aug 2000 16:57:11 -0700 (PDT) From: James Daniels Subject: Stray IRQ's from parallel port To: bugs@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am running FreeBSD 5.0-20000710-CURRENT. Everytime I print something, the following message appears on the console window: Aug 2 16:52:30 diver /kernel: stray irq 7 Aug 2 16:53:01 diver last message repeated 4 times Aug 2 16:53:01 diver /kernel: too many stray irq 7's; not logging any more James __________________________________________________ Do You Yahoo!? Kick off your party with Yahoo! Invites. http://invites.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 16:58:50 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9961B37B880; Wed, 2 Aug 2000 16:58:48 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA60047; Wed, 2 Aug 2000 16:58:49 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Wed, 2 Aug 2000 16:58:49 -0700 (PDT) From: Message-Id: <200008022358.QAA60047@freefall.freebsd.org> To: gabriek_ambuehl@root.li, jedgar@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/20367: Accidentally submitted my temporary directory :-( Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Accidentally submitted my temporary directory :-( State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Wed Aug 2 16:58:06 PDT 2000 State-Changed-Why: Incomplete duplicate of ports/20366 http://www.freebsd.org/cgi/query-pr.cgi?pr=20367 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 17: 0:47 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 92A1C37BC9B; Wed, 2 Aug 2000 17:00:45 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA60303; Wed, 2 Aug 2000 17:00:46 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Wed, 2 Aug 2000 17:00:46 -0700 (PDT) From: Message-Id: <200008030000.RAA60303@freefall.freebsd.org> To: jedgar@FreeBSD.org, freebsd-bugs@FreeBSD.org, dirk@FreeBSD.org Subject: Re: ports/20366: Update port: security/snort Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: Accidentally submitted my temporary directory :-( New Synopsis: Update port: security/snort Responsible-Changed-From-To: freebsd-bugs->dirk Responsible-Changed-By: jedgar Responsible-Changed-When: Wed Aug 2 16:58:52 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=20366 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 18:59: 2 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from chmls05.mediaone.net (chmls05.mediaone.net [24.147.1.143]) by hub.freebsd.org (Postfix) with ESMTP id CDB5637B531; Wed, 2 Aug 2000 18:58:58 -0700 (PDT) (envelope-from jeffblaine@mediaone.net) Received: from nollie (kickflop.ne.mediaone.net [24.91.56.150]) by chmls05.mediaone.net (8.8.7/8.8.7) with SMTP id VAA11150; Wed, 2 Aug 2000 21:58:56 -0400 (EDT) Message-ID: <001d01bffd07$9b37ff80$02a8a8c0@ne.mediaone.net> From: "Jeff Blaine" To: "Bill Paul" Cc: References: <20000802215158.70BC037B66E@hub.freebsd.org> Subject: Re: kern/19726: fatal trap 12 / page fault Date: Wed, 2 Aug 2000 21:59:29 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Except if_rl.c and if_rlreg.h now reference things that are not in 4.0-RELEASE's /usr/src/sys/net/ethernet.h and such. I started trying to track down all of the dependencies by hand, got tired, and then decided to try to dive into the world of tracking 4.0-STABLE, so I cvsup'd src-sys and tried to compile a new kernel and now 'make depend' fails at ===> agp make: don't know how to make agp_if.c. Stop ...and and and... yes. If only it were that simple. ----- Original Message ----- From: Bill Paul To: Jeff Blaine Cc: Sent: Wednesday, August 02, 2000 2:51 PM Subject: Re: kern/19726: fatal trap 12 / page fault > > > > For the sake of thoroughness on my part, I'm following through with > > a backtrace and dmesg output as well even though someone else > > already has: > [chop] > > I'd really appreciate it if you (and everyone else who's concerned with > this PR) would try if_rl.c and if_rlreg.h from 4.1-RELEASE and see if that > fixes the problem. I'm sure there were a couple of updates to the RealTek > driver since 4.0-RELEASE. > > -Bill > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 21:10:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A03CB37B606 for ; Wed, 2 Aug 2000 21:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA91424; Wed, 2 Aug 2000 21:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from minotaur.bit.net.au (minotaur.bit.net.au [203.18.94.87]) by hub.freebsd.org (Postfix) with ESMTP id 1312037B5D0 for ; Wed, 2 Aug 2000 21:02:25 -0700 (PDT) (envelope-from pdh@minotaur.bit.net.au) Received: (from pdh@localhost) by minotaur.bit.net.au (8.9.3/8.9.3) id OAA02189; Thu, 3 Aug 2000 14:02:18 +1000 (EST) (envelope-from pdh) Message-Id: <200008030402.OAA02189@minotaur.bit.net.au> Date: Thu, 3 Aug 2000 14:02:18 +1000 (EST) From: Phil Homewood Reply-To: pdh@minotaur.bit.net.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/20371: dhclient inserts bogus configurations Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20371 >Category: bin >Synopsis: dhclient inserts bogus configurations >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: Wed Aug 02 21:10:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Phil Homewood >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: RELENG_4, cvsupped within the last 4 hours Bugs not evident as of last cvsup around mid-June. >Description: dhclient seems to have two odd bugs: 1) the broadcast address applied to the interface, if not specified by the DHCP server, is wrong - on this /24 it gets a.b.c.0 instead of a.b.c.255 2) the "domain" specified by the DHCP server somehow gets "\000" (four characters, NOT a literal null) appended to it before dhclient-script uses it to build /etc/resolv.conf. >How-To-Repeat: run dhclient with a DHCP server that doesn't supply broadcast address. (Not sure what triggers the "\000" feature.) >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 Wed Aug 2 21:40:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CC85A37B65C for ; Wed, 2 Aug 2000 21:40:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA93389; Wed, 2 Aug 2000 21:40:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 21:40:07 -0700 (PDT) Message-Id: <200008030440.VAA93389@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Matthew Emmerton" Subject: Re: kern/14590: kernel panic writing to floppy Reply-To: "Matthew Emmerton" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/14590; it has been noted by GNATS. From: "Matthew Emmerton" To: , Cc: Subject: Re: kern/14590: kernel panic writing to floppy Date: Thu, 3 Aug 2000 00:30:00 -0400 This is a multi-part message in MIME format. ------=_NextPart_000_000B_01BFFCE1.F532C6D0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Using 3.4-RELEASE: The dd command using the char device (rfd0) works fine (no panic), but = using the block device (fd0) panics. On to the open->suspend rationale: Mounting a writeable floppy, pulling the disk, write-protecting it, = replacing it, and then writing to the FS results in a console message = complaining about writing to a write-protected media (expected), but = when the FS is unmounted, a kernel panic occurs. Jul 17 19:02:33 styx /kernel: panic: vinvalbuf: dirty bufs Jul 17 19:02:33 styx /kernel: Jul 17 19:02:33 styx /kernel: syncing disks... 1 1 1 1 1 1 1 1 1 1 1 1 1 = 1 1 1 1 1 1 1 giving up [ 1 1 1... may be replaced by 2 2 2...] ------=_NextPart_000_000B_01BFFCE1.F532C6D0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Using 3.4-RELEASE:
 
The dd command using the char device = (rfd0) works=20 fine (no panic), but using the block device (fd0) panics.
 
On to the open->suspend = rationale:
 
Mounting a writeable floppy, pulling the disk, write-protecting it, = replacing it,=20 and then writing to the FS results in a console message complaining = about=20 writing to a write-protected media (expected), but when the FS is = unmounted, a=20 kernel panic occurs.
 
Jul 17 19:02:33 styx /kernel: panic: = vinvalbuf:=20 dirty bufs
Jul 17 19:02:33 styx /kernel:
Jul 17 19:02:33 styx = /kernel:=20 syncing disks... 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 giving=20 up
 
[ 1 1 1... may be replaced by 2 2=20 2...]
 
 
------=_NextPart_000_000B_01BFFCE1.F532C6D0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 22:50: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4570F37B5DC for ; Wed, 2 Aug 2000 22:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA04894; Wed, 2 Aug 2000 22:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Aug 2000 22:50:03 -0700 (PDT) Message-Id: <200008030550.WAA04894@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/18827: add truncate(1) Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/18827; it has been noted by GNATS. From: Sheldon Hearn To: Johan Karlsson Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/18827: add truncate(1) Date: Thu, 03 Aug 2000 07:46:01 +0200 On Wed, 02 Aug 2000 23:22:35 +0200, Johan Karlsson wrote: > truncate has been added to current as of Jul 18th > Revision 1.151 of usr.bin/Makefile > > Please MFC and close this PR. I'll see if I can do that later today. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Aug 2 23:10: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0120537B6FE for ; Wed, 2 Aug 2000 23:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA08715; Wed, 2 Aug 2000 23:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from entoo.connect.com.au (entoo.connect.com.au [192.189.54.8]) by hub.freebsd.org (Postfix) with ESMTP id F148937B6FA for ; Wed, 2 Aug 2000 23:01:50 -0700 (PDT) (envelope-from andy@silverbrook.com.au) Received: from bebop.lan.silverbrook.com.au (CPE-144-132-228-195.nsw.bigpond.net.au [144.132.228.195]) by entoo.connect.com.au (Postfix) with ESMTP id A85A0DD1FE for ; Thu, 3 Aug 2000 16:01:47 +1000 (EST) Received: (from andy@localhost) by bebop.lan.silverbrook.com.au (8.9.3/8.9.3) id QAA20818; Thu, 3 Aug 2000 16:01:42 +1000 (EST) (envelope-from andy) Message-Id: <200008030601.QAA20818@bebop.lan.silverbrook.com.au> Date: Thu, 3 Aug 2000 16:01:42 +1000 (EST) From: Andy Newman Reply-To: andy@silverbrook.com.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/20373: Setting breakpoints in shared objects broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20373 >Category: bin >Synopsis: Setting breakpoints in shared objects broken >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Aug 02 23:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andy Newman >Release: FreeBSD 4.1-STABLE i386 >Organization: Silverbrook Research >Environment: Freshly CVSup'd 4.1-STABLE as of Aug. 3, 13:00 (GMT +10), $ uname -a FreeBSD bebop.lan.silverbrook.com.au 4.1-STABLE FreeBSD 4.1-STABLE #0: Thu Aug 3 13:29:45 EST 2000 toor@bebop.lan.silverbrook.com.au:/usr/obj/usr/src/sys/bebop i386 (i.e., cvsup & make buildworld approx. three hours prior to bug submission) Problem also occurs on a slighly older 4.0-STABLE (post-release CVSup) but *does not* occur on a 3.5-STABLE system. >Description: Setting a breakpoint in an run-time loaded object from a C or C++ program does not work as expected. The breakpoint appears to be set at the end of the function or at least the trap doesn't occur until function exit rather than at the breakpoint position. See following typscript of a debug session using the attached sample program which loads a shared object and calls a function. The sample is C++ (as that is where I first ran into the problem) but compiling it as C (with a couple of little mods) shows the same problem. This behaviour seems to have occurred *after* 4.0-RELEASE. Script started on Thu Aug 3 15:34:59 2000 : bebop; make clean all rm -f tst so.so c++ -g -o tst tst.cpp c++ -g -shared -o so.so so.cpp : bebop; gdb tst GNU gdb 4.18 Copyright 1998 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-unknown-freebsd"... (gdb) set environment LD_LIBRARY_PATH . (gdb) b dlopen Breakpoint 1 at 0x8048814 (gdb) r so.so func Starting program: /home/andy/tmp/bugs/c++-gdb-breakpoint/tst so.so func Breakpoint 1 at 0x280f7c4f Breakpoint 1 at 0x280520dd Breakpoint 1, 0x280520dd in dlopen () from /usr/libexec/ld-elf.so.1 (gdb) fin Run till exit from #0 0x280520dd in dlopen () from /usr/libexec/ld-elf.so.1 0x8048993 in main (argc=3, argv=0xbfbff308) at tst.cpp:14 14 if ((h = dlopen(argv[1], RTLD_NOW)) == NULL) (gdb) shared Symbols already loaded for /usr/lib/libstdc++.so.3 Symbols already loaded for /usr/lib/libm.so.2 Symbols already loaded for /usr/lib/libc.so.4 Symbols already loaded for /home/andy/tmp/bugs/c++-gdb-breakpoint/./so.so Symbols already loaded for /usr/libexec/ld-elf.so.1 (gdb) b func Breakpoint 2 at 0x281554be: file so.cpp, line 12. (gdb) c Continuing. Breakpoint 2, 0x281554be in func () at so.cpp:12 12 } <==== last line of func() (gdb) where #0 0x281554be in func () at so.cpp:12 #1 0x8048a0d in main (argc=3, argv=0xbfbff308) at tst.cpp:18 #2 0x80488f1 in _start () (gdb) step ... func() executes main (argc=3, argv=0xbfbff308) at tst.cpp:19 19 if (dlclose(h) == -1) (gdb) cont (deletia) Script done on Thu Aug 3 15:36:13 2000 >How-To-Repeat: See attached shar file. It has a simple test program that loads a shared object and calls a function in it. If you debug this, set a break point on dlopen and "fin" from it so the loaded object's symbols are loaded, then set a break point on "func" and continue. The break point doesn't occur until the function exits. # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # Makefile # so.cpp # tst.cpp # echo x - Makefile sed 's/^X//' >Makefile << 'END-of-Makefile' Xall: tst so.so X Xtst: tst.cpp X c++ -g -o $@ tst.cpp X Xso.so: so.cpp X c++ -g -shared -o $@ so.cpp X Xtest: X @LD_LIBRARY_PATH=`pwd` ./tst so.so func X Xclean: X rm -f tst so.so END-of-Makefile echo x - so.cpp sed 's/^X//' >so.cpp << 'END-of-so.cpp' X#include X Xextern "C" Xvoid Xfunc() X{ X for (int i = 0; i < 10; ++i) X printf("."); X printf("In function"); X for (int i = 0; i < 10; ++i) X printf("."); X printf("\n"); X} END-of-so.cpp echo x - tst.cpp sed 's/^X//' >tst.cpp << 'END-of-tst.cpp' X#include X#include X#include X Xint Xmain(int argc, char **argv) X{ X void *h; X void (*fn)(); X X if (argc != 3) X errx(1, "usage: %s so ident", argv[0]); X if ((h = dlopen(argv[1], RTLD_NOW)) == NULL) X errx(1, "can't dlopen %s: %s", argv[1], dlerror()); X if ((fn = (void (*)())dlsym(h, argv[2])) == NULL) X errx(2, "can't dlsym %s : %s", argv[2], dlerror()); X (*fn)(); X if (dlclose(h) == -1) X errx(3, "dlclose failed: %s", dlerror()); X return 0; X} END-of-tst.cpp exit >Fix: >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 Thu Aug 3 0: 7:53 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 02EC937B526; Thu, 3 Aug 2000 00:07:51 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA16062; Thu, 3 Aug 2000 00:07:50 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 00:07:50 -0700 (PDT) From: Message-Id: <200008030707.AAA16062@freefall.freebsd.org> To: alex@big.endian.de, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: bin/18827: add truncate(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: add truncate(1) State-Changed-From-To: open->analyzed State-Changed-By: sheldonh State-Changed-When: Thu Aug 3 00:07:19 PDT 2000 State-Changed-Why: This one's already in HEAD and is awaiting MFC. Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Aug 3 00:07:19 PDT 2000 Responsible-Changed-Why: My reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=18827 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 0:10:28 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 1C8CA37B772; Thu, 3 Aug 2000 00:10:19 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.16 #1) id 13KF8p-000CQJ-00; Thu, 03 Aug 2000 09:10:07 +0200 From: Sheldon Hearn To: "Jeff Blaine" Cc: "Bill Paul" , bugs@FreeBSD.ORG Subject: Re: kern/19726: fatal trap 12 / page fault In-reply-to: Your message of "Wed, 02 Aug 2000 21:59:29 MST." <001d01bffd07$9b37ff80$02a8a8c0@ne.mediaone.net> Date: Thu, 03 Aug 2000 09:10:07 +0200 Message-ID: <47758.965286607@axl.ops.uunet.co.za> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 02 Aug 2000 21:59:29 MST, "Jeff Blaine" wrote: > and then decided to try to dive into the world of tracking > 4.0-STABLE, so I cvsup'd src-sys and tried to compile a new > kernel and now 'make depend' fails at Unfortunately, to track -STABLE you need kernel and base source. It's a package deal. :-) Once you have RELENG_4 source for the whole of src/..., take a look at src/UPDATING, which will help you get past this problem: > ===> agp > make: don't know how to make agp_if.c. Stop Of course, I realize that this doesn't sort out the problem you're having. I'm just trying to help you with your problem in tracking STABLE. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 0:14: 0 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3097237B6A2; Thu, 3 Aug 2000 00:13:59 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA16685; Thu, 3 Aug 2000 00:13:59 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 00:13:59 -0700 (PDT) From: Message-Id: <200008030713.AAA16685@freefall.freebsd.org> To: miek@q8.se, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/14590: kernel panic writing to floppy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: kernel panic writing to floppy State-Changed-From-To: suspended->closed State-Changed-By: sheldonh State-Changed-When: Thu Aug 3 00:12:01 PDT 2000 State-Changed-Why: So then we're back to a known problem. Duplicate of kern/11808 and kern/10870 . http://www.freebsd.org/cgi/query-pr.cgi?pr=14590 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 0:15: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 78CE437B81B; Thu, 3 Aug 2000 00:15:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA16934; Thu, 3 Aug 2000 00:15:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 00:15:08 -0700 (PDT) From: Message-Id: <200008030715.AAA16934@freefall.freebsd.org> To: okimoto@mrit.mei.co.jp, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/14918: Write access to write protected media causes system panic. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Write access to write protected media causes system panic. State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Thu Aug 3 00:14:26 PDT 2000 State-Changed-Why: Duplicate of kern/11808 and kern/10870 . http://www.freebsd.org/cgi/query-pr.cgi?pr=14918 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 0:20:56 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E5FB37B526; Thu, 3 Aug 2000 00:20:55 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA17455; Thu, 3 Aug 2000 00:20:55 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 00:20:55 -0700 (PDT) From: Message-Id: <200008030720.AAA17455@freefall.freebsd.org> To: sener@flanker.uubf.itu.edu.tr, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/11808: read/write mounted write-protected floppies cause freeze or panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: read/write mounted write-protected floppies cause freeze or panic State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Thu Aug 3 00:19:57 PDT 2000 State-Changed-Why: This is a different problem from the one reported in kern/10870 but the same problem as the one reported in kern/10959, which includes a patch. http://www.freebsd.org/cgi/query-pr.cgi?pr=11808 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 0:24:47 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CE73537B77F; Thu, 3 Aug 2000 00:24:45 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA17839; Thu, 3 Aug 2000 00:24:45 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 00:24:45 -0700 (PDT) From: Message-Id: <200008030724.AAA17839@freefall.freebsd.org> To: sschmidt@topnet.de, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/20368: 4.1-REL bootloader failed to find a kernel to boot after installation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 4.1-REL bootloader failed to find a kernel to boot after installation State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Thu Aug 3 00:23:51 PDT 2000 State-Changed-Why: Telling us "it failed" gives us nothing to work with. Please send the text that you actually see (which is printed for just this purpose) to . http://www.freebsd.org/cgi/query-pr.cgi?pr=20368 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 0:25:36 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ECD7937B77F; Thu, 3 Aug 2000 00:25:34 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA17972; Thu, 3 Aug 2000 00:25:34 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 00:25:34 -0700 (PDT) From: Message-Id: <200008030725.AAA17972@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, obrien@FreeBSD.org Subject: Re: bin/20371: dhclient inserts bogus configurations Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: dhclient inserts bogus configurations Responsible-Changed-From-To: freebsd-bugs->obrien Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Aug 3 00:25:20 PDT 2000 Responsible-Changed-Why: Over to the maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=20371 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 0:31:40 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mout1.freenet.de (mout1.freenet.de [194.97.50.132]) by hub.freebsd.org (Postfix) with ESMTP id F081637B7B2; Thu, 3 Aug 2000 00:31:36 -0700 (PDT) (envelope-from sschmidt@topnet.de) Received: from [194.97.50.136] (helo=mx3.freenet.de) by mout1.freenet.de with esmtp (Exim 3.16 #2) id 13KFTb-0001NC-00; Thu, 03 Aug 2000 09:31:35 +0200 Received: from ding.topnet.de ([194.97.7.42]) by mx3.freenet.de with esmtp (Exim 3.16 #2) id 13KFTb-0003o1-00; Thu, 03 Aug 2000 09:31:35 +0200 Date: Thu, 3 Aug 2000 09:31:32 +0200 (CEST) From: Stefan Schmidt To: sheldonh@freebsd.org Cc: freebsd-bugs@freebsd.org Subject: Re: conf/20368: 4.1-REL bootloader failed to find a kernel to boot after installation In-Reply-To: <200008030724.AAA17839@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 3 Aug 2000 sheldonh@freebsd.org wrote: > Synopsis: 4.1-REL bootloader failed to find a kernel to boot after instal= lation >=20 > State-Changed-From-To: open->closed > State-Changed-By: sheldonh > State-Changed-When: Thu Aug 3 00:23:51 PDT 2000 > State-Changed-Why:=20 > Telling us "it failed" gives us nothing to work with. Please=20 > send the text that you actually see (which is printed for > just this purpose) to . i cant, the machine is running another os by now -> thread in freebsd-stable thank you --=20 Stefan Schmidt | sschmidt@topnet.de Topnet AG (www.topnet.de) | Tel.: +49 211 53087 433 Willst=E4tterStr. 13, D-40549 D=FCsseldorf | Fax.: +49 211 53087 11= 9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 0:33:22 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 54FE137B797 for ; Thu, 3 Aug 2000 00:33:16 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.16 #1) id 13KFV3-000CXT-00; Thu, 03 Aug 2000 09:33:05 +0200 From: Sheldon Hearn To: Stefan Schmidt Cc: freebsd-bugs@freebsd.org Subject: Re: conf/20368: 4.1-REL bootloader failed to find a kernel to boot after installation In-reply-to: Your message of "Thu, 03 Aug 2000 09:31:32 +0200." Date: Thu, 03 Aug 2000 09:33:05 +0200 Message-ID: <48202.965287985@axl.ops.uunet.co.za> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 03 Aug 2000 09:31:32 +0200, Stefan Schmidt wrote: > i cant, the machine is running another os by now Oh. Well I guess that reduces your need for support. :-) Hope your next encounter will be more fruitful. > -> thread in freebsd-stable I don't read that. Too many folks with loyud, ungrounded opinions. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 0:39:30 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mout0.freenet.de (mout0.freenet.de [194.97.50.131]) by hub.freebsd.org (Postfix) with ESMTP id 73DA837B79C for ; Thu, 3 Aug 2000 00:39:21 -0700 (PDT) (envelope-from sschmidt@topnet.de) Received: from [194.97.50.135] (helo=mx2.freenet.de) by mout0.freenet.de with esmtp (Exim 3.16 #2) id 13KFay-0003ZB-00; Thu, 03 Aug 2000 09:39:12 +0200 Received: from ding.topnet.de ([194.97.7.42]) by mx2.freenet.de with esmtp (Exim 3.16 #2) id 13KFax-0004dB-00; Thu, 03 Aug 2000 09:39:12 +0200 Date: Thu, 3 Aug 2000 09:39:10 +0200 (CEST) From: Stefan Schmidt To: Sheldon Hearn Cc: freebsd-bugs@freebsd.org Subject: Re: conf/20368: 4.1-REL bootloader failed to find a kernel to boot after installation In-Reply-To: <48202.965287985@axl.ops.uunet.co.za> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 3 Aug 2000, Sheldon Hearn wrote: > > i cant, the machine is running another os by now > Oh. Well I guess that reduces your need for support. :-) nope :) Im heading for another run of installing FreeBSD on this machine today since it is a dual PIII and i installed OpenBSD just well in a bad mood :)) > Hope your next encounter will be more fruitful. dito, i hope to be able to install 4.0-REL and then upgrad to 4.0-stable via cvs, we'll see. (Otherwise i'd habe to install a debian :( >=20 > > -> thread in freebsd-stable > I don't read that. Too many folks with loyud, ungrounded opinions. :-) think that is because of the lack of time people are confronted with there :) Stefan --=20 Stefan Schmidt | sschmidt@topnet.de Topnet AG (www.topnet.de) | Tel.: +49 211 53087 433 Willst=E4tterStr. 13, D-40549 D=FCsseldorf | Fax.: +49 211 53087 11= 9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 2: 0:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B89F37B844 for ; Thu, 3 Aug 2000 02:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA31409; Thu, 3 Aug 2000 02:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from genius.systems.pavilion.net (genius.systems.pavilion.net [212.74.1.100]) by hub.freebsd.org (Postfix) with ESMTP id AC4B437B596 for ; Thu, 3 Aug 2000 01:49:59 -0700 (PDT) (envelope-from joe@pavilion.net) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id 3BBA89B28; Thu, 3 Aug 2000 01:44:39 +0100 (BST) Message-Id: <20000803004439.3BBA89B28@genius.systems.pavilion.net> Date: Thu, 3 Aug 2000 01:44:39 +0100 (BST) From: joe@pavilion.net Reply-To: joe@pavilion.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20375: APM doesn't work properly! Suspend/resume/suspend/hang Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20375 >Category: kern >Synopsis: APM doesn't work properly! Suspend/resume/suspend/hang >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Aug 03 02:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Joe Karthauser >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD.Org >Environment: Sony Vaio F290 laptop. % uname -a FreeBSD genius.systems.pavilion.net 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Thu Aug 3 01:24:23 BST 2000 root@genius.systems.pavilion.net:/usr/src/sys/compile/CUTDOWN i386 % dmesg Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #0: Thu Aug 3 01:24:23 BST 2000 root@genius.systems.pavilion.net:/usr/src/sys/compile/CUTDOWN Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Pentium II Xeon/Celeron (397.90-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x66d Stepping = 13 Features=0x183f9ff real memory = 201261056 (196544K bytes) avail memory = 192909312 (188388K bytes) Preloaded elf kernel "kernel" at 0xc0267000. Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 pcib0: on motherboard pci0: on pcib0 pci0: at 0.0 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xfcd0-0xfcdf at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 7.2 irq 9 pci0: at 7.3 pci0: at 8.0 irq 9 pci0: at 8.1 irq 9 pci0: at 9.0 irq 9 pci0: at 10.0 pci0: at 10.1 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 psm0: irq 12 on atkbdc0 psm0: model GlidePoint, device ID 0 unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources ata1-slave: ata_command: timeout waiting for intr ata1-slave: identify failed ad0: 19077MB [38760/16/63] at ata0-master using UDMA33 Mounting root from ufs:/dev/ad0s2a % cat /sys/i386/conf/CUTDOWN machine i386 cpu I586_CPU cpu I686_CPU ident CUTDOWN maxusers 128 hints "CUTDOWN.hints" #Default places to look for devices. makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols options DDB options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] device isa device pci options COMPAT_OLDISA # compatability shims for lnc, fe, le options COMPAT_OLDPCI # compatability shims for lnc, vx # Floppy drives device fdc # ATA and ATAPI devices device ata device atadisk # ATA disk drives # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc 1 device atkbd device psm device vga # splash screen/screen saver device splash # syscons is the default console driver, resembling an SCO console device sc 1 options SC_HISTORY_SIZE=2000 # number of history buffer lines # Floating point support - do not disable. device npx # Power management support (see LINT for more options) device apm # Pseudo devices - the number indicates how many units to allocated. device loop # Network loopback device pty # Pseudo-ttys (telnet etc) >Description: Something has recently broken APM support for me. If I suspend, I can resume, but the machine freezes upon a further suspend. I've tried cutting the kernel config down to remove the possiblity that it's a pccard or pcm problem. >How-To-Repeat: Compile the supplied kernel config on a laptop and try suspend/resume/suspend/resume and see whether you get a hang or not. >Fix: Don't know - I'm going to go back in time and see if I can work out when it broke. It's been broken for a couple of weeks I believe. >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 Thu Aug 3 2:10:41 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 928CC37B578; Thu, 3 Aug 2000 02:10:39 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA37743; Thu, 3 Aug 2000 02:10:39 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 02:10:39 -0700 (PDT) From: Message-Id: <200008030910.CAA37743@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, kris@FreeBSD.org Subject: Re: conf/18238: The default sshd config leaves X11 forwarding off Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The default sshd config leaves X11 forwarding off Responsible-Changed-From-To: freebsd-bugs->kris Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Aug 3 02:10:09 PDT 2000 Responsible-Changed-Why: Over to the maintainer (thanks, Johan). http://www.freebsd.org/cgi/query-pr.cgi?pr=18238 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 2:11:21 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4607F37B58B; Thu, 3 Aug 2000 02:11:20 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA37872; Thu, 3 Aug 2000 02:11:20 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 02:11:20 -0700 (PDT) From: Message-Id: <200008030911.CAA37872@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, kris@FreeBSD.org Subject: Re: bin/17818: ssh X11 forward breaks with X11 not in /usr Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ssh X11 forward breaks with X11 not in /usr Responsible-Changed-From-To: freebsd-bugs->kris Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Aug 3 02:10:46 PDT 2000 Responsible-Changed-Why: Over to the maintainer (thanks, Johan). http://www.freebsd.org/cgi/query-pr.cgi?pr=17818 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 2:53:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 711FE37B86E; Thu, 3 Aug 2000 02:53:06 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA44463; Thu, 3 Aug 2000 02:53:06 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 02:53:06 -0700 (PDT) From: Message-Id: <200008030953.CAA44463@freefall.freebsd.org> To: joe@pavilion.net, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/20375: APM doesn't work properly! Suspend/resume/suspend/hang Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: APM doesn't work properly! Suspend/resume/suspend/hang State-Changed-From-To: open->feedback State-Changed-By: sheldonh State-Changed-When: Thu Aug 3 02:52:25 PDT 2000 State-Changed-Why: Recently broken looks like something you might be able to track down by rolling back apm.c revision by revision. :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=20375 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 3:20:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A84D337B72C for ; Thu, 3 Aug 2000 03:20:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA49264; Thu, 3 Aug 2000 03:20:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 3 Aug 2000 03:20:07 -0700 (PDT) Message-Id: <200008031020.DAA49264@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: bin/19783: make installworld dependencies wrong Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/19783; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: ap@sprouts.org, marcel@FreeBSD.org Subject: Re: bin/19783: make installworld dependencies wrong Date: Thu, 03 Aug 2000 12:10:47 +0200 Hi This was fixed in rev 1.155 of Makefile.inc1 but has not yet been MFC:ed The part that needs to be MFC:ed is --- Makefile.inc1.~1~ Thu Aug 3 12:00:48 2000 +++ Makefile.inc1 Thu Aug 3 12:01:23 2000 @@ -183,7 +183,8 @@ WMAKE= ${WMAKEENV} ${MAKE} -f Makefile.inc1 # install stage -IMAKEENV= ${CROSSENV} +IMAKEENV= ${CROSSENV} \ + PATH=${TMPPATH} IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 USRDIRS= usr/bin usr/lib/compat/aout usr/games usr/libdata/ldscripts \ Marcel, can you please have a look at this and MFC this change. Maybe you also want to MFC rev 1.156 to get all the proper binaries when installing. Please also close this PR when you have MFC:ed http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19783 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 4: 5:34 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2716537B643; Thu, 3 Aug 2000 04:05:33 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA58193; Thu, 3 Aug 2000 04:05:33 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 04:05:33 -0700 (PDT) From: Message-Id: <200008031105.EAA58193@freefall.freebsd.org> To: ap@sprouts.org, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, marcel@FreeBSD.org Subject: Re: bin/19783: make installworld dependencies wrong Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: make installworld dependencies wrong State-Changed-From-To: open->analyzed State-Changed-By: sheldonh State-Changed-When: Thu Aug 3 04:04:51 PDT 2000 State-Changed-Why: Fixed in rev 1.155 of Makefile.inc1 (thanks, Johan). Responsible-Changed-From-To: freebsd-bugs->marcel Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Aug 3 04:04:51 PDT 2000 Responsible-Changed-Why: Marcel's MFC reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=19783 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 6: 0:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B5DC937B80A for ; Thu, 3 Aug 2000 06:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA69598; Thu, 3 Aug 2000 06:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 10E3437B6E5; Thu, 3 Aug 2000 05:54:04 -0700 (PDT) Message-Id: <20000803125404.10E3437B6E5@hub.freebsd.org> Date: Thu, 3 Aug 2000 05:54:04 -0700 (PDT) From: gyula_matics@hp.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/20379: unable to install, monitor goes black during boot (with serial is disabled) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20379 >Category: i386 >Synopsis: unable to install, monitor goes black during boot (with serial is disabled) >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Aug 03 06:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gyula Matics >Release: 4.0-RELEASE, 4.1-RELEASE, >Organization: >Environment: HP LXe PRO, 1xPpro200, 2x AIC7880 SCSI, Mylex DAC960 RAID controller, everything else (IDE, serial etc.) is disabled. Boot from CDROM on one of the aic controllers. Disks only on the RAID. >Description: during installation it successfully boots to UserConfig. Using the visual interface i disable everything that shows up except the keyboard. exit/save. boot continues then within a fraction of second the screen goes black and the machine is dead. I'm not very experienced with freebsd I don't know where to go from there. >How-To-Repeat: try to install 4.0 or 4.1 on an LXe PRO >Fix: >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 Thu Aug 3 6: 0:13 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 139D737B86E for ; Thu, 3 Aug 2000 06:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA69616; Thu, 3 Aug 2000 06:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mx2.ulstu.ru (ns.ulstu.ru [62.76.34.36]) by hub.freebsd.org (Postfix) with ESMTP id 50AB737B663 for ; Thu, 3 Aug 2000 05:56:43 -0700 (PDT) (envelope-from vss@mx2.ulstu.ru) Received: (from vss@localhost) by mx2.ulstu.ru (8.9.3-mfd/8.9.3) id QAA02937; Thu, 3 Aug 2000 16:41:18 +0400 (MSD) Message-Id: <200008031241.QAA02937@mx2.ulstu.ru> Date: Thu, 3 Aug 2000 16:41:18 +0400 (MSD) From: Vlad Skvortsov Reply-To: vss@ulstu.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/20381: portmapper incorrectly checks interfaces with aliases Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20381 >Category: bin >Synopsis: portmapper incorrectly checks interfaces with aliases >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Aug 03 06:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Vlad Skvortsov >Release: FreeBSD 3.4-STABLE i386 >Organization: Ulyanovsk State Technical Universoty >Environment: There is aliased address on lo0 interface (in addition to 127.0.0.1). >Description: /usr/sbin/portmap treats aliased ip addresses on interfaces as non-local thus refusing local daemons to register (for example, mountd). Function find_local() cycles through all interfaces and collects addresses associated with them. Though it only gets one (first) address from each interface. In case when lo0 has aliased ip besides 127.0.0.1, the latter may be not the first associated with lo0 in the list returned by sysctl(NET_RT_IFLIST). That way the aliased ip will be further treated as local and 127.0.0.1 as non-local. >How-To-Repeat: # iconfig lo0 1.2.3.4 netmask 0xfffffff alias # killall -9 portmap # portmap -v # mountd After this portmapper claims to syslog that request from mountd has come not from local address. >Fix: Check if the interface has aliased ip addresses and in that case copy them all to internal local addresses array. >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 Thu Aug 3 6:45:43 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4011D37B687; Thu, 3 Aug 2000 06:45:42 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA76291; Thu, 3 Aug 2000 06:45:42 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 06:45:42 -0700 (PDT) From: Message-Id: <200008031345.GAA76291@freefall.freebsd.org> To: gyula_matics@hp.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/20379: unable to install, monitor goes black during boot (with serial is disabled) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: unable to install, monitor goes black during boot (with serial is disabled) State-Changed-From-To: open->feedback State-Changed-By: sheldonh State-Changed-When: Thu Aug 3 06:44:22 PDT 2000 State-Changed-Why: You disable everything except the keyboard? That sounds like a recipe for disaster. :-) Try not disabling anything. If you believe that there are device probes that get confused by your hardware, disable those. Let us know how it goes. http://www.freebsd.org/cgi/query-pr.cgi?pr=20379 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 7:50: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A0C737B955 for ; Thu, 3 Aug 2000 07:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA85449; Thu, 3 Aug 2000 07:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from lagoon.freebsd.lublin.pl (lagoon.freebsd.lublin.pl [212.182.117.180]) by hub.freebsd.org (Postfix) with SMTP id C063737B98D for ; Thu, 3 Aug 2000 07:49:47 -0700 (PDT) (envelope-from venglin@freebsd.lublin.pl) Received: (qmail 24125 invoked from network); 3 Aug 2000 14:51:18 -0000 Received: from lubi.freebsd.lublin.pl (qmailr@212.182.118.90) by lagoon.freebsd.lublin.pl with SMTP; 3 Aug 2000 14:51:18 -0000 Received: (qmail 76449 invoked from network); 3 Aug 2000 14:49:30 -0000 Received: from own3d.freebsd.lublin.pl (qmailr@212.182.115.2) by mailhost.gadaczka.org with SMTP; 3 Aug 2000 14:49:30 -0000 Received: (qmail 545 invoked by uid 1001); 3 Aug 2000 14:49:19 -0000 Message-Id: <20000803144919.544.qmail@own3d.freebsd.lublin.pl> Date: 3 Aug 2000 14:49:19 -0000 From: venglin@freebsd.lublin.pl Reply-To: venglin@freebsd.lublin.pl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20382: Panic when trying to mount non-fixated CD Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20382 >Category: kern >Synopsis: Panic when trying to mount non-fixated CD >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Aug 03 07:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Przemyslaw Frasunek >Release: FreeBSD 4.1-STABLE i386 >Organization: ISMEDIA >Environment: FreeBSD own3d.freebsd.lublin.pl 4.1-STABLE FreeBSD 4.1-STABLE #0: Sat Jul 29 18:33:05 CEST 2000 root@own3d.freebsd.lublin.pl:/usr/src/sys/compile/OWNED i386 >Description: Kernel panics, when trying to mount written, but non-fixated CD-ROM. >How-To-Repeat: 1. Burn CD-R without fixate command. 2. Leave CD in recorder (CDROMs usually doesn't read non-fixated CDs at all) 3. Mount it. 4. Panic (page fault). >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 Thu Aug 3 8: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 50ADE37B8C6 for ; Thu, 3 Aug 2000 08:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA86573; Thu, 3 Aug 2000 08:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 3 Aug 2000 08:00:03 -0700 (PDT) Message-Id: <200008031500.IAA86573@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: kern/19615: cannot build current kernel (30-june-2000) Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/19615; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: patrick@kessen.yi.org Subject: Re: kern/19615: cannot build current kernel (30-june-2000) Date: Thu, 03 Aug 2000 16:53:47 +0200 Hi Patrick I belive that the problems you have are due to src/sys tree out of sync. Even thou you say in the subject that it is current I belive you use stable-src. Yes, sys/crypto seems to be missing in FreeBSD-Stable src on ftp.freebsd.org and this needs to be fixed. You mention that you copied your old sys/crypto into place which will make that part out of sync with the rest. Please remove src/sys and see the handbook about obtaining FreeBSD http://www.FreeBSD.org/handbook/mirrors.html I recommend using CVSup to fetch your src. This works greate for me and I get sys/crypto as I should. I think that the other PR you submitted is also a problem that comes from this out-of-sync. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19616 Please try to get new src and report back if it works or not. Thanks Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 8: 0: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E50B37B95E for ; Thu, 3 Aug 2000 08:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA86578; Thu, 3 Aug 2000 08:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 3 Aug 2000 08:00:05 -0700 (PDT) Message-Id: <200008031500.IAA86578@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: kern/19616: current kernel build failes on miibus Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/19616; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/19616: current kernel build failes on miibus Date: Thu, 03 Aug 2000 16:57:35 +0200 Probably out-of-sync src/sys see PR 19615 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19615 /Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 8:10: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E3D8437B51D for ; Thu, 3 Aug 2000 08:10:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA89407; Thu, 3 Aug 2000 08:10:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 3 Aug 2000 08:10:05 -0700 (PDT) Message-Id: <200008031510.IAA89407@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: kern/19614: missing blowfish in current kernel tree (30 june 2000) Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/19614; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/19614: missing blowfish in current kernel tree (30 june 2000) Date: Thu, 03 Aug 2000 17:02:39 +0200 Synopsis should be "src/sys/crypto missing on ftp://ftp.freebsd.org/pub/FreeBSD/FreeBSD-stable/" and it should be reported to the maintainer of ftp.freebsd.org or I think jkh could fix it. /Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 8:25:57 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from bbnmg1.net.external.hp.com (bbnmg1.net.external.hp.com [192.6.76.73]) by hub.freebsd.org (Postfix) with ESMTP id 6951F37BA24; Thu, 3 Aug 2000 08:25:49 -0700 (PDT) (envelope-from gyula_matics@hp.com) Received: from hpgva23.gva.hp.com (hpgva23.gva.hp.com [15.152.20.56]) by bbnmg1.net.external.hp.com (Postfix) with ESMTP id EDB5A3A0; Thu, 3 Aug 2000 17:25:36 +0200 (METDST) Received: from pcmatics (hpgva23.gva.hp.com [15.152.20.56]) by hpgva23.gva.hp.com (8.9.3 (PHNE_18979)/8.9.3 SMKit6.0.6 OpenMail) with SMTP id RAA24514; Thu, 3 Aug 2000 17:25:40 +0200 (METDST) Message-ID: <008301bffd5f$149060f0$9049bc0f@hungary.hp.com> From: "Gyula Matics" To: Cc: References: <200008031345.GAA76291@freefall.freebsd.org> Subject: Re: i386/20379: unable to install, monitor goes black during boot (with serial is disabled) Date: Thu, 3 Aug 2000 17:25:37 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > You disable everything except the keyboard? That sounds like a > recipe for disaster. :-) Why? I do not need serial, parallel, IDE, floppy and drivers for all those ISA devices I do not have. > Try not disabling anything. If you believe that there are > device probes that get confused by your hardware, disable those. I tried booting with the default settings. I tried disabling the serial ports as written in the FAQ. I tried disabling devices I know I do not have. I tried disabling everything I know I do not need. I tried disabling random devices. This machine has only 4 EISA slots so I tried to set the ESIA probe range to 4. Finally I tried disabling everything I can (in visual mode) except the keyboard (and console and math coprocessor , of course) Any tips? Gyula To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 8:50: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B106037B57C for ; Thu, 3 Aug 2000 08:50:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA94490; Thu, 3 Aug 2000 08:50:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 3 Aug 2000 08:50:06 -0700 (PDT) Message-Id: <200008031550.IAA94490@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: misc/19487: I can't install my Free BSD 3.2 OS: problem during CD-ROM installation Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/19487; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: r.avanzi@agonet.it Subject: Re: misc/19487: I can't install my Free BSD 3.2 OS: problem during CD-ROM installation Date: Thu, 03 Aug 2000 17:48:37 +0200 Hi Roberto Can you please try out FreeBSD-4.1 since alot has happend in the USB area since FreeBSD-3.2. You can download and ISO-image from ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/4.1-install.iso Please let us know if this still is a problem. Thanks Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 8:56:24 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id F098037B581 for ; Thu, 3 Aug 2000 08:56:17 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.16 #1) id 13KNLt-0000CJ-00; Thu, 03 Aug 2000 17:56:09 +0200 From: Sheldon Hearn To: "Gyula Matics" Cc: freebsd-bugs@FreeBSD.org Subject: Re: i386/20379: unable to install, monitor goes black during boot (with serial is disabled) In-reply-to: Your message of "Thu, 03 Aug 2000 17:25:37 +0200." <008301bffd5f$149060f0$9049bc0f@hungary.hp.com> Date: Thu, 03 Aug 2000 17:56:09 +0200 Message-ID: <762.965318169@axl.ops.uunet.co.za> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 03 Aug 2000 17:25:37 +0200, "Gyula Matics" wrote: > I tried booting with the default settings. Did you also get the "screen goes black" symptom when you did this, or did something else happen? If so, what? Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 9:12:36 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from cytanet.com.cy (platon.cytanet.com.cy [195.14.133.160]) by hub.freebsd.org (Postfix) with ESMTP id AD42837B50D for ; Thu, 3 Aug 2000 09:12:26 -0700 (PDT) (envelope-from christos.e@cytanet.com.cy) Received: from johnsmit (li-4-21.cytanet.com.cy [195.14.137.149]) by cytanet.com.cy (8.9.3/8.9.3) with SMTP id TAA03194 for ; Thu, 3 Aug 2000 19:14:13 +0300 (EET DST) Message-ID: <001a01bffd65$99d8a6e0$95890ec3@johnsmit> From: =?iso-8859-7?B?1/Hf8/Tv8iDF9eHj493r7/UgKENocmlzdG9zIEV2YWdnZWxvdSk=?= To: Subject: Freeze while trying to write partition information Date: Thu, 3 Aug 2000 19:12:16 +0300 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0017_01BFFD7E.BD26B380" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0017_01BFFD7E.BD26B380 Content-Type: text/plain; charset="iso-8859-7" Content-Transfer-Encoding: 7bit I'm trying to install FreeBSD 4.0 but I have a problem. I will try to feed you with as much information as possible so that you can find out what the problem is. I'm also attaching a couple of textfiles which contain my BIOS settings and notes any other variations I unsuccesfully tried some kernel messages and some other BIOS messages I get on startup. QUICK DESCRIPTION ================== After doing all the partition selections, label selections and package selections, when the installation program tries to writes to the partition table the system freezes after the following message appears a couple of times (in virtual screen 2 with DEBUG on). (I don't remember exactly the second line, it says something similar, but I'm 100% sure about the "ad0" part). DEBUG: diskPartitionWrite: Examining 1 devices DEBUG: Notify: Writting partition information to drive ad0 (or something similar) ad0: WRITE command timeout - resetting ata0: resettings devices .. done DETAILED DESCRIPTION ===================== (I'm also attaching a couple of textfiles which contain my) (BIOS settings and notes any other variations I unsuccesfully tried) (some kernel messages and some other BIOS messages I get on startup) 1. I downloaded the floppy disk installation images, wrote them on two disks, verified that they were correctly written, write-protected the disks and used them to boot the the FreeBSD kernel. The kernel boots just fine. 2. I choose the second option from the installation menu and the UserConfig runs. 3. I remove all the networking devices (I don't have any) and all conflicts are resolved now and continue to the next screen. (4. Sometimes while probing, the system freezes (when I press a key I am advanced to the next screen) - this is not the problem anyway) 5. I have partitioned my hard disk to two parts. The active primary partition which is 3500MB is FAT32 and used by Windows 98. The other partition is 600MB FAT32 and it is the one I will have FreeBSD installed on. When fdisk shows the partition information, I go over the second partition, I press DELETE to remove it and then I create a new one of type FreeBSD at the place of the previous one. Please note that I have tried to use a smaller partition size (250MB) instead of 600MB at the BEGINNING of the disk (so that it falls within the first 1024 cylinders) however the problem remains. 6. At this point I get a warning about "only one fat can be used whole" or something similar, but I ignore it. 7. I choose to install the boot manager (note that I've also tried it without installing the boot manager). 8. Then I use the label utility to create mount points etc. I always use the Auto option. 9. The I select installation packages (I use custom) 10. I choose media DOS, and I point to my other FAT32 partition onto which I have a directory c:\freebsd\bin with the basic minimal installation modules. Note that I've tried converting my FAT32 partition to normal FAT (with PartitionMagic) however this does not resolve the problem. So far so good. 11. A confirmation prompt follows warning me that data may be erased etc etc. 12. I press Yes and the installation prog. shows a message box "Writting partition table on ad0" (or something similar) AND THIS IS WHERE IT FREEZES !!!! In virtual screen 2 (with Alt-F2) it says: DEBUG: diskPartitionWrite: Examining 1 devices DEBUG: Notify: Writting partition information to drive ad0 (or something similar) ad0: WRITE command timeout - resetting ata0: resettings devices .. done It may loop the last two lines a couple of times, and that's it. The system hangs for good! There's nothing I can do but press the Reset button. Please note that sometimes the second partition onto which I instructed FreeBSD to be installed is corrupted. I know that because when I get into PartitionMagic to examin the partitions the volume label of the partition is rubbished and it says something about partition error etc. I am a computer science student at the University, and I want to get in touch with FreeBSD and Linux because I consider it a necessity, so plz HELP! ------=_NextPart_000_0017_01BFFD7E.BD26B380 Content-Type: text/plain; name="Biosdos.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="Biosdos.txt" A selective description follows of what BIOS and DOS report. ===================================================================== BIOS reports (in the box it displays on startup) the following: ===================================================================== Primary Master: Cylinders: 8354 Heads: 16 Sectors: 63 LBA Mode: LBA 32bit mode: ON Block mode: 16Sec Size: 4312MB PIO mode: 4 UDMA mode: 2 Primary Slave: None Secondary Master: CDROM PIO mode: 4 UDMA mode: N/A Secondary Slave: CDROM PIO moed: 4 UDMA mode: 2 ==================================== And in the [PCI Devices] section: ==================================== PCI on board IDE, IRQ 14,15 ================================================== However, when I run Norton Diskedit it reports: ================================================== Sides: 255 Cylinders: 524 Sectors per cylinder: 63 Physical sectors: 8418060 ------=_NextPart_000_0017_01BFFD7E.BD26B380 Content-Type: text/plain; name="Kernel.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Kernel.txt" =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D Among many other things, these are detected by the kernel: =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ad0: 4111MB [8354/16/63] at ata0 - master using UDMA-33 acd0: CD-RW at ata1 - master using PIO4 acd1: CDROM at ata1 - slave using PIO4 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 atapci0: port 0xffa0-0xffaf, 0x374-0x377, = 0x170-0x177, 0x3f4-0x3f7, 0x1f0-0x1f7 irq0, at dev 0.1 on pci0 pci0: ------=_NextPart_000_0017_01BFFD7E.BD26B380 Content-Type: text/plain; name="Mybios.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="Mybios.txt" A description of my BIOS settings follows. Selections which are disabled by the BIOS program are enclosed in [brackets]. I have noted cases in which I tried different settings. Standard CMOS Setup =================== (All disk drive detections are set to Auto) 32-Bit mode: ON (tried: OFF) Advanced Setup ============== Shared memory size: 8MB Trend ChipAwayVirus: Enabled (tried: Disabled) 1st Boot device: Floppy 2nd Boot device: IDE-0 Try other boot devices: Yes S.M.A.R.T. for hard disks: Disabled (tried: Enabled) Bootup Num-lock status: On Floppy disk swap: Disabled Floppy disk seek: Disabled Password check: Setup Boot to OS/2 over 64MB: No Internal Cache: Enabled (tried: Disabled) External Cache: Enabled (tried: Disabled) SDRAM speed: 8ns Refresh queue depth: 4 SDRAM CAS Latency: 3T Graphics Window Size: 64M Features Setup ============== Onboard FDC: Enabled Onboard Serial Port 1: 3F8h/COM1 Onboard Serial Port 2: 2F8h/COM2 Onboard IR Port: Disabled IR Duplex: Half Onboard parallel port: 378h Parallel port mode: Normal Parallel port IRQ: 7 Parallel port DMA: [N/A] Onboard PCI IDE: Both (tried: Primary/Disabled) UDMA Support: Enabled (tried: Disabled) USB Function: Disabled USB Function for DOS: [Disabled] PCI/PnP Configuration ===================== Plug & Play aware O/S: Yes (tried: No) Primary graphics adapter: PCI (tried: AGP) PCI VGA Palette Snoop: Disabled Allocate IRQ for VGA: No DMA Reserved for ISA: N/A IRQ Reserved for ISA: N/A Reserved memory size: Disabled Reserved memory address: [C8000] Power Management ================ Power management/APM: Disabled Standby time out (min): [Disabled] Suspend time out (min): [Disabled] Keyboard power-on: Disabled Lan Card power-on: Disabled Ring On power-on: Disabled RTC Alarm power-on: Disabled RTC Alarm Date: [15] RTC Alarm Hour: [12] RTC Alarm Min: [30] RTC Alarm Sec: [30] ------=_NextPart_000_0017_01BFFD7E.BD26B380-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 9:40:16 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C59937B77A for ; Thu, 3 Aug 2000 09:40:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA02758; Thu, 3 Aug 2000 09:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 3 Aug 2000 09:40:03 -0700 (PDT) Message-Id: <200008031640.JAA02758@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: misc/19367: /etc/defaults/make.conf lists wrong value for PERL_THREADED Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/19367; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: patl@phoenix.volant.org, markm@FreeBSD.org Subject: Re: misc/19367: /etc/defaults/make.conf lists wrong value for PERL_THREADED Date: Thu, 03 Aug 2000 18:33:21 +0200 Hi I think a better solution is to change /usr/src/gnu/usr.bin/perl/perl/Makefile:.if ${PERL_THREADED} == "yes" /usr/src/gnu/usr.bin/perl/Makefile.inc:PERL_THREADED?= no /usr/src/gnu/usr.bin/perl/Makefile.inc:.if ${PERL_THREADED} == "yes" to use 'true' instead since our make.conf uses true for every other value. in /usr/src/gnu/usr.bin/perl/perl/ --- Makefile.~1~ Thu Aug 3 18:27:23 2000 +++ Makefile Thu Aug 3 18:28:03 2000 @@ -24,7 +24,7 @@ DYNAMIC_EXT= B/B DB_File/DB_File Data/Dumper/Dumper Fcntl/Fcntl IO/IO \ IPC/SysV/SysV NDBM_File/NDBM_File Opcode/Opcode POSIX/POSIX \ SDBM_File/SDBM_File Socket/Socket attrs/attrs re/re -.if ${PERL_THREADED} == "yes" +.if ${PERL_THREADED} != "no" DYNAMIC_EXT+= Thread/Thread .endif in /usr/src/gnu/usr.bin/perl/ --- Makefile.inc.~1~ Thu Aug 3 18:27:27 2000 +++ Makefile.inc Thu Aug 3 18:28:26 2000 @@ -58,7 +58,7 @@ FARMDIRS= lib ext Porting hints PERL_THREADED?= no -.if ${PERL_THREADED} == "yes" +.if ${PERL_THREADED} != "no" CFLAGS+= -pthread THREAD= threads- .endif Mark (markm), can you please have a look at this since you made the changes. Thanks Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 9:47:24 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6ECD237B51D; Thu, 3 Aug 2000 09:47:23 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA03515; Thu, 3 Aug 2000 09:47:23 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 09:47:23 -0700 (PDT) From: Message-Id: <200008031647.JAA03515@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, markm@FreeBSD.org Subject: Re: misc/19367: /etc/defaults/make.conf lists wrong value for PERL_THREADED Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /etc/defaults/make.conf lists wrong value for PERL_THREADED Responsible-Changed-From-To: freebsd-bugs->markm Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Aug 3 09:46:53 PDT 2000 Responsible-Changed-Why: Johan's feedback will be interesting to the perl5 maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=19367 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 10:20: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5748837B5B9 for ; Thu, 3 Aug 2000 10:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA09284; Thu, 3 Aug 2000 10:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 5D4FB37B547; Thu, 3 Aug 2000 10:12:58 -0700 (PDT) Message-Id: <20000803171258.5D4FB37B547@hub.freebsd.org> Date: Thu, 3 Aug 2000 10:12:58 -0700 (PDT) From: boopboopboop@hotmail.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/20384: Phase errors with Zip650 CD on USB Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20384 >Category: kern >Synopsis: Phase errors with Zip650 CD on USB >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: Thu Aug 03 10:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dan Conti >Release: 4.1, 4.1RC, 4.0 >Organization: >Environment: FreeBSD 4.1-RC1 FreeBSD 4.1-RC1 #0: Fri Jul 14 22:27:29 GMT 2000 root@deimos.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: With the 3 listed kernels and an Iomega ZipCD 650 USB drive, i get repeated Phase errors. I recompiled with all the debugging for umass and usb turned on, and tracked it to a bogus cmd being sent to the device. it was sending an inquiry (12h) with the correct allocation length (36 bytes) which was succeeding, then sending an inquiry with a bogus allocation length (55 bytes) which caused the phase error. I put a quick hack in umass.c to take all inquiry cmds to the device and remap the allocation length to 36 bytes, which seems to have fixed it. sorry i do not have the time to track down the real source and provide a patch. >How-To-Repeat: Purchase Zip650 CD drive. Apply to USB port. Configure kernel for umass support. Achieve Nirvana. >Fix: I didn't take the time to track down the source of the bogus cmd, i just put a filter in the umass layer before the cmd was sent out so it would be structured properly. FYI the drive seems to behave properly now. I might have backlogs of the debug output, if that would be helpful mail me and i can search for them. >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 Thu Aug 3 10:40: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B886637B6CA for ; Thu, 3 Aug 2000 10:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA12016; Thu, 3 Aug 2000 10:40:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 3 Aug 2000 10:40:06 -0700 (PDT) Message-Id: <200008031740.KAA12016@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: bin/20381: portmapper incorrectly checks interfaces with aliases Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/20381; it has been noted by GNATS. From: Sheldon Hearn To: vss@ulstu.ru Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/20381: portmapper incorrectly checks interfaces with aliases Date: Thu, 03 Aug 2000 18:54:57 +0200 On Thu, 03 Aug 2000 16:41:18 +0400, Vlad Skvortsov wrote: > >Number: 20381 > >Category: bin > >Synopsis: portmapper incorrectly checks interfaces with aliases Could you try the last patch provided on PR bin/5139 ? http://www.freebsd.org/cgi/query-pr.cgi?pr=5139 Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 12:30: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AA16737B5D6 for ; Thu, 3 Aug 2000 12:30:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA28381; Thu, 3 Aug 2000 12:30:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 3 Aug 2000 12:30:06 -0700 (PDT) Message-Id: <200008031930.MAA28381@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: misc/19235: building custom release is busted Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/19235; it has been noted by GNATS. From: Johan Karlsson To: bonk1138@msn.com Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/19235: building custom release is busted Date: Thu, 03 Aug 2000 21:21:24 +0200 Hi James In the PR you refer to a Web Page with instructions on how to make a release. I can not find this page can you please give me a pointer to it. Thanks Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 13: 2: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3728C37B53A; Thu, 3 Aug 2000 13:02:05 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA31854; Thu, 3 Aug 2000 13:02:05 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 13:02:05 -0700 (PDT) From: Message-Id: <200008032002.NAA31854@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, n_hibma@FreeBSD.org Subject: Re: kern/20384: Phase errors with Zip650 CD on USB Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Phase errors with Zip650 CD on USB Responsible-Changed-From-To: freebsd-bugs->n_hibma Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Aug 3 13:01:07 PDT 2000 Responsible-Changed-Why: Nick's Mr USB. http://www.freebsd.org/cgi/query-pr.cgi?pr=20384 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 13:14:18 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 33E9937B53A; Thu, 3 Aug 2000 13:14:17 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA34692; Thu, 3 Aug 2000 13:14:17 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 13:14:17 -0700 (PDT) From: Message-Id: <200008032014.NAA34692@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, kris@FreeBSD.org Subject: Re: misc/19636: sshd in STABLE times out on authenticate with Mac F-Secure client 1.0.1 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sshd in STABLE times out on authenticate with Mac F-Secure client 1.0.1 Responsible-Changed-From-To: freebsd-bugs->kris Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Aug 3 13:13:40 PDT 2000 Responsible-Changed-Why: OpenSSH maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=19636 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 13:15:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D81D337B53A; Thu, 3 Aug 2000 13:15:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA34881; Thu, 3 Aug 2000 13:15:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 13:15:08 -0700 (PDT) From: Message-Id: <200008032015.NAA34881@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, obrien@FreeBSD.org Subject: Re: misc/19576: [patch] add magic to file(1) to recognise SID tunes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [patch] add magic to file(1) to recognise SID tunes Responsible-Changed-From-To: freebsd-bugs->obrien Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Aug 3 13:14:39 PDT 2000 Responsible-Changed-Why: David promised to chat to the file(1) maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=19576 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 13:16: 1 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7AFF137B53A; Thu, 3 Aug 2000 13:15:58 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35047; Thu, 3 Aug 2000 13:15:58 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 13:15:58 -0700 (PDT) From: Message-Id: <200008032015.NAA35047@freefall.freebsd.org> To: hannes@pop.nwnexus.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/19568: Running cvsup 3.4->3.5 deletes softupdate sources Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Running cvsup 3.4->3.5 deletes softupdate sources State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Thu Aug 3 13:15:19 PDT 2000 State-Changed-Why: Asked and answered. http://www.freebsd.org/cgi/query-pr.cgi?pr=19568 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 13:17:23 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 67DDF37B79E; Thu, 3 Aug 2000 13:17:21 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35281; Thu, 3 Aug 2000 13:17:21 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 13:17:21 -0700 (PDT) From: Message-Id: <200008032017.NAA35281@freefall.freebsd.org> To: torsten.fahr@vaude.de, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/19543: Problem with Proxy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Problem with Proxy State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Thu Aug 3 13:16:10 PDT 2000 State-Changed-Why: Duplicate of PR 19542. http://www.freebsd.org/cgi/query-pr.cgi?pr=19543 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 13:18:18 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E7B137B7B2; Thu, 3 Aug 2000 13:18:16 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35415; Thu, 3 Aug 2000 13:18:16 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 13:18:16 -0700 (PDT) From: Message-Id: <200008032018.NAA35415@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, luigi@FreeBSD.org Subject: Re: kern/19511: a typo in ip_fw.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: a typo in ip_fw.c Responsible-Changed-From-To: freebsd-bugs->luigi Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Aug 3 13:17:37 PDT 2000 Responsible-Changed-Why: Luigi's code. http://www.freebsd.org/cgi/query-pr.cgi?pr=19511 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 13:21:10 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 94A9437B797; Thu, 3 Aug 2000 13:21:09 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35860; Thu, 3 Aug 2000 13:21:09 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 13:21:09 -0700 (PDT) From: Message-Id: <200008032021.NAA35860@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, reg@FreeBSD.org Subject: Re: conf/19509: Cannot install Netscape from CD at install time Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Cannot install Netscape from CD at install time Responsible-Changed-From-To: freebsd-bugs->reg Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Aug 3 13:18:24 PDT 2000 Responsible-Changed-Why: Jeremy, this looks like a problem with the Xfree86-aoutlibs package. Could you take a look? http://www.freebsd.org/cgi/query-pr.cgi?pr=19509 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 13:25:21 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F39737B79B; Thu, 3 Aug 2000 13:25:20 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA36429; Thu, 3 Aug 2000 13:25:20 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Aug 2000 13:25:20 -0700 (PDT) From: Message-Id: <200008032025.NAA36429@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, kris@FreeBSD.org Subject: Re: misc/19467: OpenSSH (as an rsync tunnel) blocks forever Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: OpenSSH (as an rsync tunnel) blocks forever Responsible-Changed-From-To: freebsd-bugs->kris Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Aug 3 13:21:30 PDT 2000 Responsible-Changed-Why: Kris, although the how-to-repeat is confused, it looks like this is a problem with OpenSSH. Could you take a look? http://www.freebsd.org/cgi/query-pr.cgi?pr=19467 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 13:31:53 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EDD5537B789; Thu, 3 Aug 2000 13:31:51 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Received: (from jdp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA37182; Thu, 3 Aug 2000 13:31:51 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Date: Thu, 3 Aug 2000 13:31:51 -0700 (PDT) From: Message-Id: <200008032031.NAA37182@freefall.freebsd.org> To: jdp@FreeBSD.org, freebsd-bugs@FreeBSD.org, jdp@FreeBSD.org Subject: Re: bin/20373: Setting breakpoints in shared objects broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Setting breakpoints in shared objects broken Responsible-Changed-From-To: freebsd-bugs->jdp Responsible-Changed-By: jdp Responsible-Changed-When: Thu Aug 3 13:31:06 PDT 2000 Responsible-Changed-Why: If the dynamic linker is broken then it is no doubt my fault. http://www.freebsd.org/cgi/query-pr.cgi?pr=20373 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 14:50: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 004A637B85B for ; Thu, 3 Aug 2000 14:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA46399; Thu, 3 Aug 2000 14:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from alcanet.com.au (mail.alcanet.com.au [203.62.196.10]) by hub.freebsd.org (Postfix) with SMTP id 0399D37B843 for ; Thu, 3 Aug 2000 14:40:54 -0700 (PDT) (envelope-from jeremyp@gsmx07.alcatel.com.au) Received: by border.alcanet.com.au id <115686>; Fri, 4 Aug 2000 07:40:43 +1000 Message-Id: <00Aug4.074043est.115686@border.alcanet.com.au> Date: Fri, 04 Aug 2000 07:39:08 +1000 (EST) From: peter.jeremy@alcatel.com.au Reply-To: peter.jeremy@alcatel.com.au To: FreeBSD-gnats-submit@freebsd.org, bug-gnu-utils@gnu.org X-Send-Pr-Version: 3.2 Subject: gnu/20387: ld error messages refers to undocumented option --rpath Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20387 >Category: gnu >Synopsis: ld error messages refers to undocumented option --rpath >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: Thu Aug 03 14:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Peter Jeremy >Release: FreeBSD 5.0-CURRENT i386 >Organization: Alcatel Australia Limited >Environment: FreeBSD 5.0-CURRENT as of 3rd August (cvs-cur 6576) incorporating GNU binutils 2.10.0 targeted to elf_i386 >Description: When linking against a shared library that references another shared library, if the implicitly referenced library cannot be located, ld will report an error like: /usr/libexec/elf/ld: warning: libfoo.so, needed by ./libbar.so, not found (try using --rpath) There is no option `--rpath' documented in either ld.1 or ld.texinfo and the message should refer to `-rpath' and/or `-rpath-link'. (Note that ld parses `--rpath' the same as `-rpath', along with other long options. I'm not sure whether this is a bug or a feature). >How-To-Repeat: echo 'foo() { }' > foo.c echo 'bar() { foo(); }' > bar.c echo 'main() { bar(); }' > main.c cc -c -D_REENTRANT -fpic foo.c cc -o libfoo.so -shared foo.o cc -c -D_REENTRANT -fpic bar.c cc -o libbar.so -shared bar.o -L. -lfoo cc -o main main.c -L. -lbar /usr/libexec/elf/ld: warning: libfoo.so, needed by ./libbar.so, not found (try using --rpath) >Fix: Index: elf32.em =================================================================== RCS file: /home/CVSROOT/src/contrib/binutils/ld/emultempl/elf32.em,v retrieving revision 1.3 diff -u -r1.3 elf32.em --- elf32.em 2000/05/13 17:51:22 1.3 +++ elf32.em 2000/08/03 20:52:35 @@ -451,7 +451,7 @@ if (force < 2) continue; - einfo ("%P: warning: %s, needed by %B, not found (try using --rpath)\n", + einfo ("%P: warning: %s, needed by %B, not found (try using -rpath or -rpath-link)\n", l->name, l->by); } } >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 Thu Aug 3 16:30: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BEE4337B9A1 for ; Thu, 3 Aug 2000 16:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA56706; Thu, 3 Aug 2000 16:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 9391137B8A0; Thu, 3 Aug 2000 16:21:44 -0700 (PDT) Message-Id: <20000803232144.9391137B8A0@hub.freebsd.org> Date: Thu, 3 Aug 2000 16:21:44 -0700 (PDT) From: rone@ennui.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/20389: "device pass" required for CD ripping Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20389 >Category: kern >Synopsis: "device pass" required for CD ripping >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Aug 03 16:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ron Echeverri >Release: 4.0-stable >Organization: >Environment: FreeBSD karach.macromedia.com 4.0-STABLE FreeBSD 4.0-STABLE #9: Mon Jun 5 14:34:36 PDT 2000 root@karach.macromedia.com:/usr/src/sys/compile/KARACH i386 >Description: I tried to rip some CDs with dagrab and failed, so i tried tosha, which gave me a more verbose error message: xptioctl: pass driver is not in the kernel xptioctl: put "device pass0" in your kernel config file It would be nice if LINT threw in a comment near "device pass" indicating that it's necessary for CD ripping. >How-To-Repeat: >Fix: Add comment to LINT. >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 Thu Aug 3 16:30: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 45B2D37BA05 for ; Thu, 3 Aug 2000 16:30:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA56717; Thu, 3 Aug 2000 16:30:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C7D4837B8A0; Thu, 3 Aug 2000 16:24:58 -0700 (PDT) Message-Id: <20000803232458.C7D4837B8A0@hub.freebsd.org> Date: Thu, 3 Aug 2000 16:24:58 -0700 (PDT) From: lobita20170@yupimail.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/20390: bueno yo no se ingles y me sale este mensaje : error 32 y no me funciona mi microfono en el chat Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20390 >Category: misc >Synopsis: bueno yo no se ingles y me sale este mensaje : error 32 y no me funciona mi microfono en el chat >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Aug 03 16:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: marlene erazo >Release: >Organization: casa >Environment: >Description: >How-To-Repeat: >Fix: >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 Thu Aug 3 18:20: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 395A137B98D for ; Thu, 3 Aug 2000 18:20:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA70865; Thu, 3 Aug 2000 18:20:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id DEF6137BA21 for ; Thu, 3 Aug 2000 18:19:35 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id SAA81252; Thu, 3 Aug 2000 18:19:34 -0700 (PDT) (envelope-from obrien) Message-Id: <200008040119.SAA81252@dragon.nuxi.com> Date: Thu, 3 Aug 2000 18:19:34 -0700 (PDT) From: "David O'Brien" Reply-To: obrien@NUXI.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/20391: sysinstall should check debug.boothowto sysctl to determine serial consoel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20391 >Category: bin >Synopsis: sysinstall should check debug.boothowto sysctl to determine serial consoel >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: Thu Aug 03 18:20:05 PDT 2000 >Closed-Date: >Last-Modified: >Originator: David O'Brien >Release: FreeBSD 5.0-CURRENT i386 >Organization: me >Environment: Sysinstall uses incorrectly logic to detect serial console on the Alpha. >Description: in sysinstall/system.c where the 'debug.boothowto' sysctl is checked for verbose boot, it should also check for serial console using the RB_SERIAL bit. Rev 1.105 should be reviewed for applicability after this change. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: Subject: sysinstall should check debug.boothowto sysctl to determine serial consoel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 18:32:14 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 135DC37BC31; Thu, 3 Aug 2000 18:32:11 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA72962; Thu, 3 Aug 2000 18:32:10 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Date: Thu, 3 Aug 2000 18:32:10 -0700 (PDT) From: Message-Id: <200008040132.SAA72962@freefall.freebsd.org> To: obrien@FreeBSD.org, freebsd-bugs@FreeBSD.org, jhb@FreeBSD.org Subject: Re: bin/20391: sysinstall should check debug.boothowto sysctl to determine serial consoel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysinstall should check debug.boothowto sysctl to determine serial consoel Responsible-Changed-From-To: freebsd-bugs->jhb Responsible-Changed-By: obrien Responsible-Changed-When: Thu Aug 3 18:31:57 PDT 2000 Responsible-Changed-Why: he wanted it http://www.freebsd.org/cgi/query-pr.cgi?pr=20391 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Aug 3 23:30: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3709337B890 for ; Thu, 3 Aug 2000 23:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA11557; Thu, 3 Aug 2000 23:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C423B37B7FC; Thu, 3 Aug 2000 23:27:22 -0700 (PDT) Message-Id: <20000804062722.C423B37B7FC@hub.freebsd.org> Date: Thu, 3 Aug 2000 23:27:22 -0700 (PDT) From: bsdx@looksharp.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/20393: processes get stuck in vmwait instead of nanslp with large MAXUSERS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20393 >Category: kern >Synopsis: processes get stuck in vmwait instead of nanslp with large MAXUSERS >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: Thu Aug 03 23:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Adam McDougall >Release: 4.1-STABLE >Organization: >Environment: 4.1-STABLE compiled 31st July or early August. admin with clue about userlimits in login.conf but wants to run more than 2000 processes on a machine which seems reasonable. >Description: rwatson asked me to send a pr for this, so I am trying to help out. Processes hang the system by getting stuck in vmwait instead of nanslp'ing like they should. If you have MAXUSERS set to over 128ish and try to run at least 2000 processes, some will get stuck in vmwait causing the system to become almost unresponsive until they decide to exit. If the number of processes wanting to run is much larger than 2000, the cycle continues. console switching works, typing at a login prompt to log in yeilds no characters on the screen. Any processes running on other terminals (including a rtptio 0 top) freeze. ps in DDB shows a small percent of the children in vmwait instead of whatever they should be doing. >How-To-Repeat: compile kernel on 4.1 with maxusers=200 run a progam(http://www.looksharp.net/~user1/test.c) which tries to fork x children which do the following: print starting time, sleep 20 seconds, print ending time, exit. Note that if x > some number z around 1500, processes stop forking way before maxproc in shell or kernel is reached, and processes hang as described. After a period of time several times longer than 20 seconds, some processes exit and more start. If x > ~2000, the cycle repeats several times. Problem 2: repeat above with maxusers = 600 (> ~512). kernel panics from running out of kernel memory instead of the freezing behavior. (one person I showed this part of the issue to, after inspecting sourcecode, was unsure if it should panic or wait for free mem in fork1 here: MALLOC(p2->p_cred, struct pcred *, sizeof(struct pcred), \n M_SUBPROC, M_WAITOK); >Fix: Let me know if I can help out further with the issue. I have time to test things but I do not know C let alone the kernel. I can provide a scratchbox to demonstrate the problem and any level of access to it if it would be helpful in resolving the issue. >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 Fri Aug 4 0:54:18 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A333D37B8A8; Fri, 4 Aug 2000 00:54:15 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA22869; Fri, 4 Aug 2000 00:54:15 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 4 Aug 2000 00:54:15 -0700 (PDT) From: Message-Id: <200008040754.AAA22869@freefall.freebsd.org> To: ulianov@ns.csm.ro, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/10959: 3.1-STABLE crashes due to a floppy mount problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 3.1-STABLE crashes due to a floppy mount problem State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Fri Aug 4 00:50:36 PDT 2000 State-Changed-Why: This PR really represented two problems; panics on writes to read-only removable media and panics on interaction with msdosfs. The former remains a problem (see kern/10870). The latter was fixed recently (see kern/17347). http://www.freebsd.org/cgi/query-pr.cgi?pr=10959 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 1:40: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 622CB37B669 for ; Fri, 4 Aug 2000 01:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA29188; Fri, 4 Aug 2000 01:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 4 Aug 2000 01:40:02 -0700 (PDT) Message-Id: <200008040840.BAA29188@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/19614: missing blowfish in current kernel tree (30 june 2000) Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/19614; it has been noted by GNATS. From: Sheldon Hearn To: Johan Karlsson Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/19614: missing blowfish in current kernel tree (30 june 2000) Date: Fri, 04 Aug 2000 10:30:59 +0200 On Thu, 03 Aug 2000 08:10:05 MST, Johan Karlsson wrote: > Synopsis should be > "src/sys/crypto missing on ftp://ftp.freebsd.org/pub/FreeBSD/FreeBSD-stable/" > and it should be reported to the maintainer of ftp.freebsd.org > or I think jkh could fix it. Actually, I think that these can be reported to . Could you see if anyone there knows wtf you're talking about? :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 1:48:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EE7B737BC81; Fri, 4 Aug 2000 01:48:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA29975; Fri, 4 Aug 2000 01:48:08 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 4 Aug 2000 01:48:08 -0700 (PDT) From: Message-Id: <200008040848.BAA29975@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, n_hibma@FreeBSD.org Subject: Re: misc/19487: I can't install my Free BSD 3.2 OS: problem during CD-ROM installation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: I can't install my Free BSD 3.2 OS: problem during CD-ROM installation Responsible-Changed-From-To: freebsd-bugs->n_hibma Responsible-Changed-By: sheldonh Responsible-Changed-When: Fri Aug 4 01:47:19 PDT 2000 Responsible-Changed-Why: Nick, any hope for using a USB keyboard to install 3.2-RELEASE, or will this gentleman need to use an AT/PS2 keyboard? http://www.freebsd.org/cgi/query-pr.cgi?pr=19487 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 1:58:35 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6015137B99F; Fri, 4 Aug 2000 01:58:33 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA31314; Fri, 4 Aug 2000 01:58:33 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 4 Aug 2000 01:58:33 -0700 (PDT) From: Message-Id: <200008040858.BAA31314@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, jdp@FreeBSD.org Subject: Re: gnu/20387: ld error messages refers to undocumented option --rpath Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ld error messages refers to undocumented option --rpath Responsible-Changed-From-To: freebsd-bugs->jdp Responsible-Changed-By: sheldonh Responsible-Changed-When: Fri Aug 4 01:58:12 PDT 2000 Responsible-Changed-Why: John's Mr Run-Time-Linker. :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=20387 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 1:59:57 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A57D437B967; Fri, 4 Aug 2000 01:59:55 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA31663; Fri, 4 Aug 2000 01:59:55 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 4 Aug 2000 01:59:55 -0700 (PDT) From: Message-Id: <200008040859.BAA31663@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, ken@FreeBSD.org Subject: Re: kern/20389: "device pass" required for CD ripping Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "device pass" required for CD ripping Responsible-Changed-From-To: freebsd-bugs->ken Responsible-Changed-By: sheldonh Responsible-Changed-When: Fri Aug 4 01:59:31 PDT 2000 Responsible-Changed-Why: Seems like a reasonable request. Over to the pass device's author. http://www.freebsd.org/cgi/query-pr.cgi?pr=20389 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 2: 3:17 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4722137B6EE; Fri, 4 Aug 2000 02:03:14 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA32057; Fri, 4 Aug 2000 02:03:14 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 4 Aug 2000 02:03:14 -0700 (PDT) From: Message-Id: <200008040903.CAA32057@freefall.freebsd.org> To: lobita20170@yupimail.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/20390: bueno yo no se ingles y me sale este mensaje : error 32 y no me funciona mi microfono en el chat Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: bueno yo no se ingles y me sale este mensaje : error 32 y no me funciona mi microfono en el chat State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Fri Aug 4 02:00:12 PDT 2000 State-Changed-Why: Please consider joining the Spanish FreeBSD mailing list. Send an e-mail message with the word ``help'' as the only word in the body of the message to : From: marlene erazo To: majordomo@es.FreeBSD.org Subject: help -- http://www.freebsd.org/cgi/query-pr.cgi?pr=20390 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 2: 4:41 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DCD6237B967; Fri, 4 Aug 2000 02:04:39 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA32256; Fri, 4 Aug 2000 02:04:39 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 4 Aug 2000 02:04:39 -0700 (PDT) From: Message-Id: <200008040904.CAA32256@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, dillon@FreeBSD.org Subject: Re: kern/20393: processes get stuck in vmwait instead of nanslp with large MAXUSERS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: processes get stuck in vmwait instead of nanslp with large MAXUSERS Responsible-Changed-From-To: freebsd-bugs->dillon Responsible-Changed-By: sheldonh Responsible-Changed-When: Fri Aug 4 02:04:23 PDT 2000 Responsible-Changed-Why: This looks like Matt's area. http://www.freebsd.org/cgi/query-pr.cgi?pr=20393 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 2:14:12 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 955D237BA25; Fri, 4 Aug 2000 02:13:53 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA34695; Fri, 4 Aug 2000 02:13:53 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 4 Aug 2000 02:13:53 -0700 (PDT) From: Message-Id: <200008040913.CAA34695@freefall.freebsd.org> To: venglin@freebsd.lublin.pl, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/20382: Panic when trying to mount non-fixated CD Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Panic when trying to mount non-fixated CD State-Changed-From-To: open->feedback State-Changed-By: sheldonh State-Changed-When: Fri Aug 4 02:09:33 PDT 2000 State-Changed-Why: Could you get a backtrace with debugging symbols? You'll need a debugging kernel (``makeoptions DEBUG=-g'' in the kernel config file and config'd with config -g). Once you have one, have a look at the instructions at: http://www.freebsd.org/handbook/kerneldebug.html Be sure to send your follow-up to , preserving the Subject line of this e-mail message. http://www.freebsd.org/cgi/query-pr.cgi?pr=20382 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 2:38:43 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from bbnmg1.net.external.hp.com (bbnmg1.net.external.hp.com [192.6.76.73]) by hub.freebsd.org (Postfix) with ESMTP id 4613137B5C5 for ; Fri, 4 Aug 2000 02:38:40 -0700 (PDT) (envelope-from gyula_matics@hp.com) Received: from hpgva23.gva.hp.com (hpgva23.gva.hp.com [15.152.20.56]) by bbnmg1.net.external.hp.com (Postfix) with ESMTP id D18872C2 for ; Fri, 4 Aug 2000 11:38:31 +0200 (METDST) Received: from pcmatics (hpgva23.gva.hp.com [15.152.20.56]) by hpgva23.gva.hp.com (8.9.3 (PHNE_18979)/8.9.3 SMKit6.0.6 OpenMail) with SMTP id LAA03508 for ; Fri, 4 Aug 2000 11:38:34 +0200 (METDST) Message-ID: <003f01bffdf7$c2c96070$9049bc0f@hungary.hp.com> From: "Gyula Matics" To: Subject: Fw: i386/20379: unable to install, monitor goes black during boot (with serial is disabled) Date: Fri, 4 Aug 2000 11:38:33 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ----- Original Message ----- From: "Gyula Matics" To: Sent: Thursday, August 03, 2000 18:10 Subject: Re: i386/20379: unable to install, monitor goes black during boot (with serial is disabled) > > > I tried booting with the default settings. > > > > Did you also get the "screen goes black" symptom when you did this, or > > did something else happen? If so, what? > > Screen goes black or more specifically loses sync and goes to powersaving > mode. > It happens with all configurations I tried. (both with 4.0 and 4.1). > > Gyula > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 5:20: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 73BDA37B6EE for ; Fri, 4 Aug 2000 05:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA57093; Fri, 4 Aug 2000 05:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 4 Aug 2000 05:20:02 -0700 (PDT) Message-Id: <200008041220.FAA57093@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "James Johnson" Subject: RE: misc/19235: building custom release is busted Reply-To: "James Johnson" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/19235; it has been noted by GNATS. From: "James Johnson" To: "Johan Karlsson" Cc: Subject: RE: misc/19235: building custom release is busted Date: Fri, 4 Aug 2000 05:10:33 -0700 Its under the "For Serious Hackers Only", "Building a custom Release" in any HTML version of the FAQ. Try rebooting, Logging in as root, cd /usr/src/release, make release BUILDNAME=5.0-CURRENT CHROOTDIR=/usr/home/release CVSROOT=/usr/src -----Original Message----- From: Johan Karlsson [mailto:k@numeri.campus.luth.se] Sent: Thursday, August 03, 2000 12:21 PM To: bonk1138@msn.com Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/19235: building custom release is busted Hi James In the PR you refer to a Web Page with instructions on how to make a release. I can not find this page can you please give me a pointer to it. Thanks Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 6:50: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 79C1D37BB21 for ; Fri, 4 Aug 2000 06:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA67133; Fri, 4 Aug 2000 06:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 8858A37B5F6; Fri, 4 Aug 2000 06:49:24 -0700 (PDT) Message-Id: <20000804134924.8858A37B5F6@hub.freebsd.org> Date: Fri, 4 Aug 2000 06:49:24 -0700 (PDT) From: B.Candler@pobox.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/20397: cmp(1) -s fails when comparing a file to stdin Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20397 >Category: bin >Synopsis: cmp(1) -s fails when comparing a file to stdin >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 04 06:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Brian Candler >Release: 4.0-20000718-STABLE >Organization: >Environment: FreeBSD bloodhound.uk.worldonline.com 4.0-20000718-STABLE FreeBSD 4.0-20000718-STABLE #0: Thu Jul 20 15:13:20 BST 2000 root@bloodhound.uk.worldonline.com:/usr/src/sys/compile/BLOODHOUND i386 >Description: cmp gives an exit status of 1 when comparing two identical files, in the case where one is given on stdin (-) and the -s flag is also given. (Aside: this breaks 'make check' for courier-imap) >How-To-Repeat: $ cmp -s /etc/passwd /etc/passwd $ echo $? 0 $ cat /etc/passwd | cmp - /etc/passwd $ echo $? 0 $ cat /etc/passwd | cmp -s - /etc/passwd $ echo $? 1 >Fix: >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 Fri Aug 4 9:44:25 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (Postfix) with ESMTP id DB91137B9A1; Fri, 4 Aug 2000 09:44:20 -0700 (PDT) (envelope-from jdp@polstra.com) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.9.3/8.9.3) with ESMTP id JAA15125; Fri, 4 Aug 2000 09:44:09 -0700 (PDT) (envelope-from jdp@polstra.com) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200008040858.BAA31314@freefall.freebsd.org> Date: Fri, 04 Aug 2000 09:44:09 -0700 (PDT) Organization: Polstra & Co., Inc. From: John Polstra To: sheldonh@FreeBSD.org Subject: Re: gnu/20387: ld error messages refers to undocumented option - Cc: freebsd-bugs@FreeBSD.org Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org sheldonh@FreeBSD.org wrote: > Synopsis: ld error messages refers to undocumented option --rpath > > Responsible-Changed-From-To: freebsd-bugs->jdp > Responsible-Changed-By: sheldonh > Responsible-Changed-When: Fri Aug 4 01:58:12 PDT 2000 > Responsible-Changed-Why: > John's Mr Run-Time-Linker. :-) > > http://www.freebsd.org/cgi/query-pr.cgi?pr=20387 This isn't about the runtime linker, it's about "ld". Could you please take this PR away from me again? John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 10:40: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 839E937BA8B for ; Fri, 4 Aug 2000 10:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA99678; Fri, 4 Aug 2000 10:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from allnet.ne.jp (ntokyo235059.allnet.ne.jp [210.191.235.59]) by hub.freebsd.org (Postfix) with ESMTP id C054937B941 for ; Fri, 4 Aug 2000 10:32:55 -0700 (PDT) (envelope-from usata@allnet.ne.jp) Received: (from usata@localhost) by allnet.ne.jp (8.9.3/8.9.3) id CAA01520; Sat, 5 Aug 2000 02:25:45 +0900 (JST) (envelope-from usata) Message-Id: <200008041725.CAA01520@allnet.ne.jp> Date: Sat, 5 Aug 2000 02:25:45 +0900 (JST) From: mmr@rom.allnet.ne.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/20402: bin/ls Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20402 >Category: bin >Synopsis: 4.1R's ls conflicts with Emacs' dired mode. >Confidential: yes >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 04 10:40:05 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KOMACHI Mamoru >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: Emacs20.6, Emacs19.34(Mule2.3) with FreeBSD 4.1-Release >Description: When I started emacs and got into dired-mode, I couldn't edit files nor directories while I could see the list of files and directories. >How-To-Repeat: Set LANG for ja_JP.EUC and place 4.1-Release's ls in /bin/ls, and use Emacs dired-mode. >Fix: Replace /bin/ls with previous version. >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 Fri Aug 4 11:50: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BD72737BBF8 for ; Fri, 4 Aug 2000 11:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA08706; Fri, 4 Aug 2000 11:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 4 Aug 2000 11:50:03 -0700 (PDT) Message-Id: <200008041850.LAA08706@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: misc/19235: building custom release is busted Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/19235; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: bonk1138@msn.com, doc@FreeBSD.org Subject: Re: misc/19235: building custom release is busted Date: Fri, 04 Aug 2000 20:47:00 +0200 Hi It turned out James is absolutly right :-) One need to # cd /usr/src # make buildworld # cd /usr/src/release # make release BUILDNAME=3.0-MY-SNAP CHROOTDIR=/some/big/filesystem/release for the process to work This was discussed in -stable the last week see mesg-id 20000802051948.B8263@dragon.nuxi.com I think the following patch should be applied to the FAQ Index: doc/en_US.ISO_8859-1/books/faq/book.sgml =================================================================== RCS file: /home/ncvs//doc/en_US.ISO_8859-1/books/faq/book.sgml,v retrieving revision 1.82 diff -u -r1.82 book.sgml --- doc/en_US.ISO_8859-1/books/faq/book.sgml 2000/07/28 01:19:17 1.82 +++ doc/en_US.ISO_8859-1/books/faq/book.sgml 2000/08/04 18:41:21 @@ -9202,6 +9202,8 @@ setenv CVSROOT /home/ncvs # or export CVSROOT=/home/ncvs + cd /usr/src + make buildworld cd /usr/src/release make release BUILDNAME=3.0-MY-SNAP CHROOTDIR=/some/big/filesystem/rele ase Can some kind doc-guru please have a look at this. Thanks Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 12: 0: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A87737BB3D for ; Fri, 4 Aug 2000 12:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA09730; Fri, 4 Aug 2000 12:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 4 Aug 2000 12:00:03 -0700 (PDT) Message-Id: <200008041900.MAA09730@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: kern/19614: missing blowfish in current kernel tree (30 june 2000) Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/19614; it has been noted by GNATS. From: Johan Karlsson To: Sheldon Hearn Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/19614: missing blowfish in current kernel tree (30 june 2000) Date: Fri, 04 Aug 2000 20:55:38 +0200 At Fri, 04 Aug 2000 10:30:59 +0200, Sheldon Hearn wrote: > Actually, I think that these can be reported to > . Could you see if anyone there knows > wtf you're talking about? :-) Ok, I have mailed them and will send a follow-up when I get a reply. /Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 12:10: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3308537BBA4 for ; Fri, 4 Aug 2000 12:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA12007; Fri, 4 Aug 2000 12:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 4 Aug 2000 12:10:03 -0700 (PDT) Message-Id: <200008041910.MAA12007@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: kern/18982: make buildworld freezes my machine with a kernel panic "Fatal trap 12: page fault while in kernel mode..." Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/18982; it has been noted by GNATS. From: Johan Karlsson To: pushf@mail.dotcom.fr Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/18982: make buildworld freezes my machine with a kernel panic "Fatal trap 12: page fault while in kernel mode..." Date: Fri, 04 Aug 2000 21:07:04 +0200 Hi Pierre-Francois A while back you sent a problem report regarding buildworld problems, see http://www.FreeBSD.org/cgi/query-pr.cgi?pr=18982 Did you manage to get things going? If not did you try the suggestions from David Malone, see the PR. Please let us know how things turned out. Thanks Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 12:50: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 385F037BA6A for ; Fri, 4 Aug 2000 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA15364; Fri, 4 Aug 2000 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 69E2037B664 for ; Fri, 4 Aug 2000 12:48:06 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.9.3/1.13) id WAA08285; Fri, 4 Aug 2000 22:48:03 +0300 (EEST) Message-Id: <200008041948.WAA08285@whale.sunbay.crimea.ua> Date: Fri, 4 Aug 2000 22:48:03 +0300 (EEST) From: Ruslan Ermilov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/20403: ata(4) UDMA4 mode does not work on i810 motherboard Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20403 >Category: i386 >Synopsis: ata(4) UDMA4 mode does not work on i810 motherboard >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 04 12:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ruslan Ermilov >Release: FreeBSD 4.1-STABLE i386 >Organization: Sunbay Software AG >Environment: - i810-based motherboard - 80 conductor cable installed >Description: ata(4) driver keeps reporting that I do not have 80 conductor cable installed: $ dmesg | grep ata atapci0: port 0xf000-0xf00f at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata0-master: DMA limitted to UDMA33, non-ATA66 compliant cable ad0: 4133MB [8959/15/63] at ata0-master using UDMA33 >How-To-Repeat: Obvious. >Fix: >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 Fri Aug 4 12:51:47 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C540537B9CE; Fri, 4 Aug 2000 12:51:46 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA15614; Fri, 4 Aug 2000 12:51:46 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Fri, 4 Aug 2000 12:51:46 -0700 (PDT) From: Message-Id: <200008041951.MAA15614@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: i386/20403: ata(4) UDMA4 mode does not work on i810 motherboard Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ata(4) UDMA4 mode does not work on i810 motherboard Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: ru Responsible-Changed-When: Fri Aug 4 12:51:04 PDT 2000 Responsible-Changed-Why: Soren's area. http://www.freebsd.org/cgi/query-pr.cgi?pr=20403 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 13:40: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C0BAE37B75B for ; Fri, 4 Aug 2000 13:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA21274; Fri, 4 Aug 2000 13:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 4 Aug 2000 13:40:03 -0700 (PDT) Message-Id: <200008042040.NAA21274@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: bin/18667: mktemp(1) binary, or manpage / usage() is incorrect Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/18667; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: obrien@NUXI.com Subject: Re: bin/18667: mktemp(1) binary, or manpage / usage() is incorrect Date: Fri, 04 Aug 2000 22:31:02 +0200 Hi David What do you think about the following patch mktemp usage? Am I correct in the assumption that you are obrien@freebsd.org ? If so and the patch seems ok, maybe you can comitt it. Index: mktemp.1 =================================================================== RCS file: /home/ncvs/src/usr.bin/mktemp/mktemp.1,v retrieving revision 1.9 diff -u -r1.9 mktemp.1 --- mktemp.1 2000/06/04 09:11:22 1.9 +++ mktemp.1 2000/08/04 20:22:15 @@ -42,9 +42,14 @@ .Nm mktemp .Op Fl d .Op Fl q -.Op Fl t Ar prefix .Op Fl u +.Ar template .Op Ar template ... +.Nm mktemp +.Op Fl d +.Op Fl q +.Op Fl u +.Fl t Ar prefix .Sh DESCRIPTION The .Nm Index: mktemp.c =================================================================== RCS file: /home/ncvs/src/usr.bin/mktemp/mktemp.c,v retrieving revision 1.2 diff -u -r1.2 mktemp.c --- mktemp.c 1998/05/05 06:13:47 1.2 +++ mktemp.c 2000/08/04 20:20:03 @@ -145,6 +145,8 @@ usage() { fprintf(stderr, - "usage: mktemp [-d] [-q] [-t prefix] [-u] [template ...]\n"); + "usage: mktemp [-d] [-q] [-u] template [template ...]\n"); + fprintf(stderr, + " mktemp [-d] [-q] [-u] -t prefix \n"); exit (1); } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 14:23:50 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B6CD37B96E; Fri, 4 Aug 2000 14:23:49 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA26719; Fri, 4 Aug 2000 14:23:49 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Fri, 4 Aug 2000 14:23:49 -0700 (PDT) From: Message-Id: <200008042123.OAA26719@freefall.freebsd.org> To: sheldonh@FreeBSD.org, jdp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: gnu/20387: ld error messages refers to undocumented option --rpath Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ld error messages refers to undocumented option --rpath Responsible-Changed-From-To: jdp->freebsd-bugs Responsible-Changed-By: sheldonh Responsible-Changed-When: Fri Aug 4 14:22:39 PDT 2000 Responsible-Changed-Why: John doesn't want this. I should smoke less something-or-other. http://www.freebsd.org/cgi/query-pr.cgi?pr=20387 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 14:30:17 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FE9637B953 for ; Fri, 4 Aug 2000 14:30:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA27621; Fri, 4 Aug 2000 14:30:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 4 Aug 2000 14:30:05 -0700 (PDT) Message-Id: <200008042130.OAA27621@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Chris D. Faulhaber" Subject: Re: misc/19235: building custom release is busted Reply-To: "Chris D. Faulhaber" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/19235; it has been noted by GNATS. From: "Chris D. Faulhaber" To: Johan Karlsson Cc: freebsd-gnats-submit@FreeBSD.org, bonk1138@msn.com, doc@FreeBSD.org Subject: Re: misc/19235: building custom release is busted Date: Fri, 4 Aug 2000 17:30:01 -0400 (EDT) On Fri, 4 Aug 2000, Johan Karlsson wrote: > Index: doc/en_US.ISO_8859-1/books/faq/book.sgml > =================================================================== > RCS file: /home/ncvs//doc/en_US.ISO_8859-1/books/faq/book.sgml,v > retrieving revision 1.82 > diff -u -r1.82 book.sgml > --- doc/en_US.ISO_8859-1/books/faq/book.sgml 2000/07/28 01:19:17 1.82 > +++ doc/en_US.ISO_8859-1/books/faq/book.sgml 2000/08/04 18:41:21 > @@ -9202,6 +9202,8 @@ > > > setenv CVSROOT /home/ncvs # or export > CVSROOT=/home/ncvs > + cd /usr/src > + make buildworld > cd /usr/src/release > make release BUILDNAME=3.0-MY-SNAP CHROOTDIR=/some/big/filesystem/rele > ase > > Wouldn't it be more appropriate to simply state that a populated /usr/obj must exist. The is an unnecessary step for those who track a branch with some regularity and keep a populated /usr/obj around. ----- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 14:30:19 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2AE9F37B8C5 for ; Fri, 4 Aug 2000 14:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA27614; Fri, 4 Aug 2000 14:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 4 Aug 2000 14:30:04 -0700 (PDT) Message-Id: <200008042130.OAA27614@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jim Mock Subject: Re: misc/19235: building custom release is busted Reply-To: Jim Mock Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/19235; it has been noted by GNATS. From: Jim Mock To: Johan Karlsson Cc: freebsd-gnats-submit@FreeBSD.ORG, bonk1138@msn.com, doc@FreeBSD.ORG Subject: Re: misc/19235: building custom release is busted Date: Fri, 4 Aug 2000 14:26:48 -0700 On Fri, 04 Aug 2000 at 20:47:00 +0200, Johan Karlsson wrote: > Hi > > It turned out James is absolutly right :-) > > One need to > > # cd /usr/src > # make buildworld > # cd /usr/src/release > # make release BUILDNAME=3.0-MY-SNAP CHROOTDIR=/some/big/filesystem/release > > for the process to work > > This was discussed in -stable the last week > see mesg-id 20000802051948.B8263@dragon.nuxi.com > > I think the following patch should be applied to the FAQ > > Index: doc/en_US.ISO_8859-1/books/faq/book.sgml > =================================================================== > RCS file: /home/ncvs//doc/en_US.ISO_8859-1/books/faq/book.sgml,v > retrieving revision 1.82 > diff -u -r1.82 book.sgml > --- doc/en_US.ISO_8859-1/books/faq/book.sgml 2000/07/28 01:19:17 1.82 > +++ doc/en_US.ISO_8859-1/books/faq/book.sgml 2000/08/04 18:41:21 > @@ -9202,6 +9202,8 @@ > > > setenv CVSROOT /home/ncvs # or export > CVSROOT=/home/ncvs > + cd /usr/src > + make buildworld > cd /usr/src/release > make release BUILDNAME=3.0-MY-SNAP CHROOTDIR=/some/big/filesystem/rele > ase > > > > > Can some kind doc-guru please have a look at this. I just committed this. Thanks, - jim -- jim mock work: jim@osd.bsdi.com | jim@FreeBSD.org http://soupnazi.org/ BSDi Open Source Div | http://bsdi.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 14:40:14 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 35CE237BB4D for ; Fri, 4 Aug 2000 14:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA29076; Fri, 4 Aug 2000 14:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from modemcable127.61-201-24.mtl.mc.videotron.net (modemcable136.200-201-24.mtl.mc.videotron.net [24.201.200.136]) by hub.freebsd.org (Postfix) with SMTP id 91BBF37BA25 for ; Fri, 4 Aug 2000 14:31:10 -0700 (PDT) (envelope-from patrick@mindstep.com) Received: (qmail 9747 invoked by alias); 4 Aug 2000 21:31:07 -0000 Received: (qmail 9743 invoked from network); 4 Aug 2000 21:31:07 -0000 Received: from nitro.local.mindstep.com (qmailr@192.168.10.2) by jacuzzi.local.mindstep.com with SMTP; 4 Aug 2000 21:31:07 -0000 Received: (qmail 47906 invoked by uid 1002); 4 Aug 2000 21:34:10 -0000 Message-Id: <20000804213410.47896.qmail@nitro.local.mindstep.com> Date: 4 Aug 2000 21:34:10 -0000 From: patrick@mindstep.com Reply-To: patrick@mindstep.com To: freefall-gnats@mindstep.com X-Send-Pr-Version: 3.2 Subject: bin/20407: netstat cannot be compiled without IPv6 support Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20407 >Category: bin >Synopsis: netstat cannot be compiled without IPv6 support >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 04 14:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Patrick Bihan-Faou >Release: FreeBSD 4.0-STABLE i386 >Organization: MindStep Corporation >Environment: FreeBSD 4.1-STABLE checked out as of August 2, 2000 >Description: the files inet6.c and mroute6.c do not honour the INET6 compile option. This means that even if INET6 is not enabled in the makefile, it tries to compile IPv6 support. >How-To-Repeat: Remove -DINET6 from the makefile, make. >Fix: This is a crude patch to not compile IPv6 related files if INET6 is not defined. --- inet6.c.orig Fri Aug 4 17:25:16 2000 +++ inet6.c Fri Aug 4 17:24:57 2000 @@ -40,6 +40,7 @@ */ #endif /* not lint */ +#ifdef INET6 #include #include #include @@ -1045,3 +1046,5 @@ sizeof(ntop_buf))); return (line); } +#endif /* INET6 */ + --- mroute6.c.orig Fri Aug 4 17:25:45 2000 +++ mroute6.c Fri Aug 4 17:26:13 2000 @@ -67,6 +67,7 @@ * $FreeBSD$ */ +#ifdef INET6 #include #include #include @@ -247,3 +248,5 @@ (unsigned long long)mrtstat.mrt6s_pkt2large, plural(mrtstat.mrt6s_pkt2large)); } + +#endif /* INET6 */ >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 Fri Aug 4 14:40:17 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 00D6137BB03 for ; Fri, 4 Aug 2000 14:40:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA29089; Fri, 4 Aug 2000 14:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 4 Aug 2000 14:40:05 -0700 (PDT) Message-Id: <200008042140.OAA29089@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jim Mock Subject: Re: misc/19235: building custom release is busted Reply-To: Jim Mock Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/19235; it has been noted by GNATS. From: Jim Mock To: "Chris D. Faulhaber" Cc: Johan Karlsson , freebsd-gnats-submit@FreeBSD.ORG, bonk1138@msn.com, doc@FreeBSD.ORG Subject: Re: misc/19235: building custom release is busted Date: Fri, 4 Aug 2000 14:33:00 -0700 On Fri, 04 Aug 2000 at 17:30:01 -0400, Chris D. Faulhaber wrote: > On Fri, 4 Aug 2000, Johan Karlsson wrote: > > > Index: doc/en_US.ISO_8859-1/books/faq/book.sgml > > =================================================================== > > RCS file: /home/ncvs//doc/en_US.ISO_8859-1/books/faq/book.sgml,v > > retrieving revision 1.82 > > diff -u -r1.82 book.sgml > > --- doc/en_US.ISO_8859-1/books/faq/book.sgml 2000/07/28 01:19:17 1.82 > > +++ doc/en_US.ISO_8859-1/books/faq/book.sgml 2000/08/04 18:41:21 > > @@ -9202,6 +9202,8 @@ > > > > > > setenv CVSROOT /home/ncvs # or export > > CVSROOT=/home/ncvs > > + cd /usr/src > > + make buildworld > > cd /usr/src/release > > make release BUILDNAME=3.0-MY-SNAP CHROOTDIR=/some/big/filesystem/rele > > ase > > > > > > Wouldn't it be more appropriate to simply state that a populated /usr/obj > must exist. The is an unnecessary step for those who track a branch with > some regularity and keep a populated /usr/obj around. Good point, but at some point you need to build world in order to get a populated /usr/obj :-) I'll tweak my commit to include a comment about that though. - jim -- jim mock work: jim@osd.bsdi.com | jim@FreeBSD.org http://soupnazi.org/ BSDi Open Source Div | http://bsdi.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 14:50: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AFD537B898 for ; Fri, 4 Aug 2000 14:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA30102; Fri, 4 Aug 2000 14:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from kzin.es.net (c57340-a.plstn1.sfba.home.com [24.15.221.10]) by hub.freebsd.org (Postfix) with ESMTP id 9BBE137B7D4 for ; Fri, 4 Aug 2000 14:45:06 -0700 (PDT) (envelope-from oberman@kzin.es.net) Received: (from oberman@localhost) by kzin.es.net (8.9.3/8.9.3) id OAA08135; Fri, 4 Aug 2000 14:45:05 -0700 (PDT) (envelope-from oberman) Message-Id: <200008042145.OAA08135@kzin.es.net> Date: Fri, 4 Aug 2000 14:45:05 -0700 (PDT) From: oberman@es.net Reply-To: oberman@es.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/20408: Can't boot FreeBSD release CDs on laptop Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20408 >Category: misc >Synopsis: Distribution CDs will not boot on IBM ThinkPad 600E >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: Fri Aug 04 14:50:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kevin Oberman >Release: FreeBSD 4.1-RELEASE i386 >Organization: Energy Sciences Network >Environment: IBM ThinkPad 600E with Utra Slimbay CD-ROM >Description: When attempting to boot a FreeBSD CD, the boot loads off of the disc, but the bootboot reports: Can't work out which disc we are loading from. Guessed BIOS device 0x8b not found by probes, defaulting to disk0: But, if I boot from floppy, the kernel has no problem locating the CD-ROM. DMESG reports: acd0: DVD-ROM at ata1-master using PIO4 >How-To-Repeat: Boot 4.1, 4.0, or 3.4 CD-ROM >Fix: Work-around by booting from floppy. >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 Fri Aug 4 15: 0:12 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2ED8137BA04 for ; Fri, 4 Aug 2000 15:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA31050; Fri, 4 Aug 2000 15:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hand.dotat.at (sfo-gw.covalent.net [207.44.198.62]) by hub.freebsd.org (Postfix) with ESMTP id 003FD37B51A for ; Fri, 4 Aug 2000 14:59:52 -0700 (PDT) (envelope-from fanf@dotat.at) Received: from fanf by hand.dotat.at with local (Exim 3.15 #3) id 13KpVR-0009Xd-00 for FreeBSD-gnats-submit@freebsd.org; Fri, 04 Aug 2000 21:59:53 +0000 Message-Id: Date: Fri, 04 Aug 2000 21:59:53 +0000 From: Tony Finch Reply-To: Tony Finch To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20409: LINT's cache-colouring comments don't correspond to vm_page.h Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20409 >Category: kern >Synopsis: LINT's cache-colouring comments don't correspond to vm_page.h >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 04 15:00:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Tony Finch >Release: FreeBSD 4.1-STABLE-20000729 i386 >Organization: dotat >Environment: FreeBSD hand.dotat.at 4.1-STABLE-20000729 FreeBSD 4.1-STABLE-20000729 #0: Sun Jul 30 00:30:12 UTC 2000 root@hand.dotat.at:/other/obj/other/src/sys/DELL-Latitude-CPx i386 >Description: The comments regarding the cache sizes that PQ_NORMALCACHE and PQ_MEDIUMCACHE correspond to are diffrerent in LINT and in vm_page.h. It looks like the ones in LINT are the wrong way around. >How-To-Repeat: >Fix: --- LINT.orig Fri Aug 4 21:53:43 2000 +++ LINT Fri Aug 4 21:54:02 2000 @@ -75,8 +75,8 @@ #options PQ_NOOPT # No coloring options PQ_LARGECACHE # color for 512k/16k cache #options PQ_HUGECACHE # color for 1024k/16k cache -#options PQ_MEDIUMCACHE # color for 64k/16k cache -#options PQ_NORMALCACHE # color for 256k/16k cache +#options PQ_MEDIUMCACHE # color for 256k/16k cache +#options PQ_NORMALCACHE # color for 64k/16k cache # This allows you to actually store this configuration file into # the kernel binary itself, where it may be later read by saying: >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 Fri Aug 4 15:24:31 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 682E237B5E2; Fri, 4 Aug 2000 15:24:30 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA34894; Fri, 4 Aug 2000 15:24:30 -0700 (PDT) (envelope-from kris@FreeBSD.org) Date: Fri, 4 Aug 2000 15:24:30 -0700 (PDT) From: Message-Id: <200008042224.PAA34894@freefall.freebsd.org> To: kris@FreeBSD.org, freebsd-bugs@FreeBSD.org, kris@FreeBSD.org Subject: Re: misc/16954: [PATCH] catopen(3) in libc can overflow on $NLSPATH Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] catopen(3) in libc can overflow on $NLSPATH Responsible-Changed-From-To: freebsd-bugs->kris Responsible-Changed-By: kris Responsible-Changed-When: Fri Aug 4 15:23:44 PDT 2000 Responsible-Changed-Why: I'll look at this since I already developed my own patch. http://www.freebsd.org/cgi/query-pr.cgi?pr=16954 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 15:58:23 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6520837B7CD; Fri, 4 Aug 2000 15:58:21 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA38491; Fri, 4 Aug 2000 15:58:21 -0700 (PDT) (envelope-from kris@FreeBSD.org) Date: Fri, 4 Aug 2000 15:58:21 -0700 (PDT) From: Message-Id: <200008042258.PAA38491@freefall.freebsd.org> To: kris@FreeBSD.org, freebsd-bugs@FreeBSD.org, kris@FreeBSD.org Subject: Re: bin/16953: [PATCH] Fix argument overflow in dnsquery Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Fix argument overflow in dnsquery Responsible-Changed-From-To: freebsd-bugs->kris Responsible-Changed-By: kris Responsible-Changed-When: Fri Aug 4 15:57:59 PDT 2000 Responsible-Changed-Why: I'll take this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=16953 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 16: 0:26 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D339D37B90A for ; Fri, 4 Aug 2000 16:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA38708; Fri, 4 Aug 2000 16:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from harzserver1.harz.de (harzserver1.harz.de [193.159.181.124]) by hub.freebsd.org (Postfix) with ESMTP id 1457437B7CD for ; Fri, 4 Aug 2000 15:56:57 -0700 (PDT) (envelope-from frank@vogon.agala.net) Received: (from uucp@localhost) by harzserver1.harz.de (8.9.3/8.9.3) with UUCP id BAA83995 for FreeBSD-gnats-submit@freebsd.org; Sat, 5 Aug 2000 01:00:32 +0200 (CEST) (envelope-from frank@vogon.agala.net) Received: by vogon.agala.net (Postfix, from userid 701) id 0334446167; Sat, 5 Aug 2000 00:51:44 +0200 (CEST) Message-Id: <20000804225144.0334446167@vogon.agala.net> Date: Sat, 5 Aug 2000 00:51:44 +0200 (CEST) From: frank@vogon.agala.net Reply-To: frank@vogon.agala.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20410: sio support for high speed NS16550A, ST16650A and TI16750 cards Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20410 >Category: kern >Synopsis: sio support for high speed NS16550A, ST16650A and TI16750 cards >Confidential: yes >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Aug 04 16:00:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Frank J. Beckmann >Release: FreeBSD 4.1-STABLE i386 >Organization: agala naga doron >Environment: FreeBSD 4.1-STABLE of 2000-08-04, and a high speed NS16550A, ST16650A or TI16750 card like the nice VScom 800 PRO or VScom 800/750 PRO from Vision Systems. >Description: The TI16750 and modern versions of the NS16550A support a higher clock that makes 921600 bps possible. There are 16550A/16750 cards that support up to 115200 bps, 230400 bps, 460800 bps or 921600 bps. Usually the maximum speed is selectable per dip switch or eeprom. The sio driver now supports this speeds, the flags for the device must match the capabilities of the card. The TI16750 supports RTS/CTS handshake in hardware and has 64 byte fifos. The ST16650A has a high speed mode with 460800 bps, the sio driver now enables it. This is untested because i don't own a ST16650A. You can now select any by the hardware supported baud rate. The man page was a bit outdated, now it reflects reality (i hope). >How-To-Repeat: Try to use more than 115200 bps like it is needed for ISDN terminal adapters or laser writers. >Fix: *** /usr/src/gnu/libexec/uucp/libunix/serial.c.orig Sun Feb 27 23:10:04 2000 --- /usr/src/gnu/libexec/uucp/libunix/serial.c Fri Aug 4 21:27:25 2000 *************** *** 920,927 **** --- 920,945 ---- #ifdef B115200 { B115200, 115200 }, #endif + #ifdef B153600 + { B153600, 153600 }, + #endif + #ifdef B184320 + { B184320, 184320 }, + #endif #ifdef B230400 { B230400, 230400 }, + #endif + #ifdef B276480 + { B276480, 276480 }, + #endif + #ifdef B307200 + { B307200, 307200 }, + #endif + #ifdef B460800 + { B460800, 460800 }, + #endif + #ifdef B921600 + { B921600, 921600 }, #endif { B0, 0 } }; *** /usr/src/share/man/man4/sio.4.orig Fri Aug 4 21:18:00 2000 --- /usr/src/share/man/man4/sio.4 Fri Aug 4 21:17:38 2000 *************** *** 52,65 **** .Pp For AST compatible multiport cards with 4 ports: .Cd "options COM_MULTIPORT" ! .Cd "device sio4 at isa? port 0x2a0 flags 0x701" ! .Cd "device sio5 at isa? port 0x2a8 flags 0x701" ! .Cd "device sio6 at isa? port 0x2b0 flags 0x701" .Cd "device sio7 at isa? port 0x2b8 flags 0x701 irq 12" .Pp For Boca Board compatible multiport cards with 8 ports: .Cd "options COM_MULTIPORT" ! .Cd "device sio4 at isa? port 0x100 flags 0xb05" .Cd "..." .Cd "device sio11 at isa? port 0x138 flags 0xb05 irq 12" .Pp --- 52,65 ---- .Pp For AST compatible multiport cards with 4 ports: .Cd "options COM_MULTIPORT" ! .Cd "device sio4 at isa? port 0x2a0 flags 0x701 irq 12" ! .Cd "device sio5 at isa? port 0x2a8 flags 0x701 irq 12" ! .Cd "device sio6 at isa? port 0x2b0 flags 0x701 irq 12" .Cd "device sio7 at isa? port 0x2b8 flags 0x701 irq 12" .Pp For Boca Board compatible multiport cards with 8 ports: .Cd "options COM_MULTIPORT" ! .Cd "device sio4 at isa? port 0x100 flags 0xb05 irq 12" .Cd "..." .Cd "device sio11 at isa? port 0x138 flags 0xb05 irq 12" .Pp *************** *** 69,95 **** .Pp Meaning of .Ar flags : ! .Bl -tag -offset indent -compact -width 0x000000 ! .It 0x00001 shared IRQs ! .It 0x00002 disable FIFO ! .It 0x00004 no AST/4 compatible IRQ control register ! .It 0x00008 recover sooner from lost output interrupts ! .It 0x00010 device is potential system console ! .It 0x00020 device is forced to become system console ! .It 0x00040 device is reserved for low-level IO (e. g. for remote kernel debugging) ! .It 0x00080 use this port for remote kernel debugging ! .It 0x0 Ns Em ?? Ns 00 minor number of master port ! .It 0x20000 ! device is assumed to use a 16650A-type (extended FIFO) chip .El .Pp Minor numbering: --- 69,105 ---- .Pp Meaning of .Ar flags : ! .Bl -tag -offset indent -compact -width 0x00000000 ! .It 0x00000001 shared IRQs ! .It 0x00000002 disable FIFO ! .It 0x00000004 no AST/4 compatible IRQ control register ! .It 0x00000008 recover sooner from lost output interrupts ! .It 0x00000010 device is potential system console ! .It 0x00000020 device is forced to become system console ! .It 0x00000040 device is reserved for low-level IO (e. g. for remote kernel debugging) ! .It 0x00000080 use this port for remote kernel debugging ! .It 0x0000 Ns Em ?? Ns 00 minor number of master port ! .It 0x00010000 ! device is assumed to use a TI16750-type (extended FIFO) chip ! .It 0x00020000 ! device is assumed to use a ST16650A-type (extended FIFO) chip ! .It 0x00100000 ! maximum line speed is 230400 bps (only NS16550A and TI16750) ! .It 0x00200000 ! maximum line speed is 460800 bps (only NS16550A and TI16750) ! .It 0x00300000 ! maximum line speed is 921600 bps (only NS16550A and TI16750) ! .It 0x Ns Em ?? Ns 000000 ! fifo size of NS16550A compatible chip .El .Pp Minor numbering: *************** *** 113,123 **** .Tn V.24 ) communications interfaces. The NS8250 and NS16450 have single character buffers, the NS16550A has 16 character FIFO input and output buffers. .Pp ! Input and output for each line may set to one of following baud rates; ! 50, 75, 110, 134.5, 150, 300, 600, 1200, 1800, 2400, 4800, 9600, ! 19200, 38400, 57600, or 115200. Your hardware may limit your baud ! rate choices. .Pp The driver supports `multiport' cards. Multiport cards are those that have one or more groups of ports --- 123,134 ---- .Tn V.24 ) communications interfaces. The NS8250 and NS16450 have single character buffers, the NS16550A has 16 character FIFO input and output buffers. + The ST16650A and the TI16750 have a buffer size of 32 respectively 64 + characters. .Pp ! Input and output for each line may set to any by the hardware supported ! speed. The ST16650A supports up to 460800 bps, the NS16550A and the ! TI16750 may support up to 921600 bps (see your hardware manual). .Pp The driver supports `multiport' cards. Multiport cards are those that have one or more groups of ports *************** *** 160,171 **** The minor number of the device corresponding a master port for the group is encoded as a bitfield in the high byte. The same master port must be specified for all ports in a group. - .Pp - The - .Em irq - specification must be given for master ports - and for ports that are not part of an IRQ sharing group, - and not for other ports. .Pp In the synopsis, .Em flags 0x701 --- 171,176 ---- *** /usr/src/sys/isa/sio.c.orig Fri Aug 4 20:38:54 2000 --- /usr/src/sys/isa/sio.c Fri Aug 4 23:48:42 2000 *************** *** 128,139 **** #define COM_LLCONSOLE(flags) ((flags) & 0x40) #define COM_DEBUGGER(flags) ((flags) & 0x80) #define COM_LOSESOUTINTS(flags) ((flags) & 0x08) ! #define COM_NOFIFO(flags) ((flags) & 0x02) ! #define COM_ST16650A(flags) ((flags) & 0x20000) ! #define COM_C_NOPROBE (0x40000) ! #define COM_NOPROBE(flags) ((flags) & COM_C_NOPROBE) ! #define COM_C_IIR_TXRDYBUG (0x80000) ! #define COM_IIR_TXRDYBUG(flags) ((flags) & COM_C_IIR_TXRDYBUG) #define COM_FIFOSIZE(flags) (((flags) & 0xff000000) >> 24) #define com_scr 7 /* scratch register for 16450-16550 (R/W) */ --- 128,141 ---- #define COM_LLCONSOLE(flags) ((flags) & 0x40) #define COM_DEBUGGER(flags) ((flags) & 0x80) #define COM_LOSESOUTINTS(flags) ((flags) & 0x08) ! #define COM_NOFIFO(flags) ((flags) & 0x02) ! #define COM_TL16750(flags) ((flags) & 0x10000) ! #define COM_ST16650A(flags) ((flags) & 0x20000) ! #define COM_C_NOPROBE (0x40000) ! #define COM_NOPROBE(flags) ((flags) & COM_C_NOPROBE) ! #define COM_C_IIR_TXRDYBUG (0x80000) ! #define COM_IIR_TXRDYBUG(flags) ((flags) & COM_C_IIR_TXRDYBUG) ! #define COM_CLOCK(flags) (((flags) & 0x00300000) >> 20) #define COM_FIFOSIZE(flags) (((flags) & 0xff000000) >> 24) #define com_scr 7 /* scratch register for 16450-16550 (R/W) */ *************** *** 206,211 **** --- 208,214 ---- u_char fifo_image; /* copy of value written to FIFO */ bool_t hasfifo; /* nonzero for 16550 UARTs */ bool_t st16650a; /* Is a Startech 16650A or RTS/CTS compat */ + bool_t tl16750; /* Is a Texas Instruments TL16750 */ bool_t loses_outints; /* nonzero if device loses output interrupts */ u_char mcr_image; /* copy of value written to MCR */ #ifdef COM_MULTIPORT *************** *** 218,223 **** --- 221,227 ---- int unit; /* unit number */ int dtr_wait; /* time to hold DTR down on close (* 1/hz) */ u_int tx_fifo_size; + u_int clock; /* uart clock speed */ u_int wopeners; /* # processes waiting for DCD in open() */ /* *************** *** 311,316 **** --- 315,321 ---- static timeout_t comwakeup; static void disc_optim __P((struct tty *tp, struct termios *t, struct com_s *com)); + static int getdivisor __P((int clock, speed_t speed)); #if NCARD > 0 static int sio_pccard_attach __P((device_t dev)); *************** *** 419,446 **** = CALLOUT_HANDLE_INITIALIZER(&sio_timeout_handle); static int sio_numunits; - static struct speedtab comspeedtab[] = { - { 0, 0 }, - { 50, COMBRD(50) }, - { 75, COMBRD(75) }, - { 110, COMBRD(110) }, - { 134, COMBRD(134) }, - { 150, COMBRD(150) }, - { 200, COMBRD(200) }, - { 300, COMBRD(300) }, - { 600, COMBRD(600) }, - { 1200, COMBRD(1200) }, - { 1800, COMBRD(1800) }, - { 2400, COMBRD(2400) }, - { 4800, COMBRD(4800) }, - { 9600, COMBRD(9600) }, - { 19200, COMBRD(19200) }, - { 38400, COMBRD(38400) }, - { 57600, COMBRD(57600) }, - { 115200, COMBRD(115200) }, - { -1, -1 } - }; - #ifdef COM_ESP /* XXX configure this properly. */ static Port_t likely_com_ports[] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8, }; --- 424,429 ---- *************** *** 448,453 **** --- 431,476 ---- #endif /* + * get divisor from speed + */ + + static int + getdivisor(int clock, speed_t speed) + { + int divisor; + speed_t diff, ldiff, udiff; + + if (speed == 0) + return 0; + divisor = BPSDIV(clock, speed); + if (divisor == 0) + divisor = 1; + else if (divisor > 0xffff) + divisor = 0xffff; + + /* + * see if we got the requested speed + */ + if ((divisor == 0xffff) || (BPSDIVMOD(clock, speed) != 0)) { + + /* + * no, we didn't, now see if we are close enough + */ + udiff = BPSDIV(clock, divisor) - speed; + ldiff = speed - BPSDIV(clock, divisor + 1); + if ((ldiff < udiff) && (divisor < 0xffff)) { + diff = ldiff; + divisor++; + } else { + diff = udiff; + } + if ((diff > (10 * BPSDIV(clock, 1)) || (diff * 100 / speed) >= 1)) + divisor = -1; + } + return divisor; + } + + /* * handle sysctl read/write requests for console speed * * In addition to setting comdefaultrate for I/O through /dev/console, *************** *** 751,756 **** --- 774,780 ---- u_long xirq; u_int flags = device_get_flags(dev); int rid; + int clock; struct resource *port; rid = xrid; *************** *** 861,872 **** * XXX what about the UART bug avoided by waiting in comparam()? * We don't want to to wait long enough to drain at 2 bps. */ if (iobase == siocniobase) DELAY((16 + 1) * 1000000 / (comdefaultrate / 10)); else { sio_setreg(com, com_cfcr, CFCR_DLAB | CFCR_8BITS); ! sio_setreg(com, com_dlbl, COMBRD(SIO_TEST_SPEED) & 0xff); ! sio_setreg(com, com_dlbh, (u_int) COMBRD(SIO_TEST_SPEED) >> 8); sio_setreg(com, com_cfcr, CFCR_8BITS); DELAY((16 + 1) * 1000000 / (SIO_TEST_SPEED / 10)); } --- 885,902 ---- * XXX what about the UART bug avoided by waiting in comparam()? * We don't want to to wait long enough to drain at 2 bps. */ + if (COM_ST16650A(flags)) { + clock = STDSIOCLOCK * ST16650AMULT; + mcr_image |= MCR_HS; + } else { + clock = STDSIOCLOCK * (1 << COM_CLOCK(flags)); + } if (iobase == siocniobase) DELAY((16 + 1) * 1000000 / (comdefaultrate / 10)); else { sio_setreg(com, com_cfcr, CFCR_DLAB | CFCR_8BITS); ! sio_setreg(com, com_dlbl, BPSDIV(clock, SIO_TEST_SPEED) & 0xff); ! sio_setreg(com, com_dlbh, (u_int) BPSDIV(clock, SIO_TEST_SPEED) >> 8); sio_setreg(com, com_cfcr, CFCR_8BITS); DELAY((16 + 1) * 1000000 / (SIO_TEST_SPEED / 10)); } *************** *** 1142,1147 **** --- 1172,1181 ---- com->tx_fifo_size = 1; com->obufs[0].l_head = com->obuf1; com->obufs[1].l_head = com->obuf2; + if (COM_ST16650A(flags)) + com->clock = STDSIOCLOCK * ST16650AMULT; + else + com->clock = STDSIOCLOCK * (1 << COM_CLOCK(flags)); com->data_port = iobase + com_data; com->int_id_port = iobase + com_iir; *************** *** 1214,1219 **** --- 1248,1254 ---- sio_setreg(com, com_fifo, FIFO_ENABLE | FIFO_RX_HIGH); DELAY(100); com->st16650a = 0; + com->tl16750 = 0; switch (inb(com->int_id_port) & IIR_FIFO_MASK) { case FIFO_RX_LOW: printf(" 16450"); *************** *** 1233,1238 **** --- 1268,1277 ---- com->st16650a = 1; com->tx_fifo_size = 32; printf(" ST16650A"); + } else if (COM_TL16750(flags)) { + com->tl16750 = 1; + com->tx_fifo_size = 64; + printf(" TL16750"); } else { com->tx_fifo_size = COM_FIFOSIZE(flags); printf(" 16550A"); *************** *** 1245,1251 **** break; } #endif ! if (!com->st16650a) { if (!com->tx_fifo_size) com->tx_fifo_size = 16; else --- 1284,1290 ---- break; } #endif ! if (!com->st16650a && !com->tl16750) { if (!com->tx_fifo_size) com->tx_fifo_size = 16; else *************** *** 2297,2311 **** t->c_ispeed = t->c_ospeed; /* check requested parameters */ - divisor = ttspeedtab(t->c_ospeed, comspeedtab); - if (divisor < 0 || (divisor > 0 && t->c_ispeed != t->c_ospeed)) - return (EINVAL); - - /* parameters are OK, convert them to the com struct and the device */ unit = DEV_TO_UNIT(tp->t_dev); com = com_addr(unit); if (com == NULL) return (ENODEV); s = spltty(); if (divisor == 0) (void)commctl(com, TIOCM_DTR, DMBIC); /* hang up line */ --- 2336,2350 ---- t->c_ispeed = t->c_ospeed; /* check requested parameters */ unit = DEV_TO_UNIT(tp->t_dev); com = com_addr(unit); if (com == NULL) return (ENODEV); + divisor = getdivisor(com->clock, t->c_ospeed); + if (divisor < 0 || (divisor > 0 && t->c_ispeed != t->c_ospeed)) + return (EINVAL); + + /* parameters are OK, convert them to the com struct and the device */ s = spltty(); if (divisor == 0) (void)commctl(com, TIOCM_DTR, DMBIC); /* hang up line */ *************** *** 2334,2339 **** --- 2373,2386 ---- if (cflag & CSTOPB) cfcr |= CFCR_STOPB; + /* + * This returns with interrupts disabled so that we can complete + * the speed change atomically. Keeping interrupts disabled is + * especially important while com_data is hidden. + */ + (void) siosetwater(com, t->c_ispeed); + sio_setreg(com, com_cfcr, cfcr | CFCR_DLAB); + if (com->hasfifo && divisor != 0) { /* * Use a fifo trigger level low enough so that the input *************** *** 2345,2350 **** --- 2392,2399 ---- */ com->fifo_image = t->c_ospeed <= 4800 ? FIFO_ENABLE : FIFO_ENABLE | FIFO_RX_HIGH; + if (com->tl16750) + com->fifo_image |= FIFO_BIG; #ifdef COM_ESP /* * The Hayes ESP card needs the fifo DMA mode bit set *************** *** 2357,2371 **** sio_setreg(com, com_fifo, com->fifo_image); } - /* - * This returns with interrupts disabled so that we can complete - * the speed change atomically. Keeping interrupts disabled is - * especially important while com_data is hidden. - */ - (void) siosetwater(com, t->c_ispeed); - if (divisor != 0) { - sio_setreg(com, com_cfcr, cfcr | CFCR_DLAB); /* * Only set the divisor registers if they would change, * since on some 16550 incompatibles (UMC8669F), setting --- 2406,2412 ---- *************** *** 2437,2442 **** --- 2478,2494 ---- } } + /* + * Handle auto-RTS and auto-CTS in case of TL16C750 + */ + if (com->tl16750) { + if ((cflag & CRTS_IFLOW) && (cflag & CCTS_OFLOW)) { + com->mcr_image |= MCR_AFE; + } else { + com->mcr_image &= ~MCR_AFE; + } + } + sio_setreg(com, com_cfcr, com->cfcr_image); /* XXX shouldn't call functions while intrs are disabled. */ *************** *** 2836,2844 **** u_char mcr; }; ! static speed_t siocngetspeed __P((Port_t, struct speedtab *)); static void siocnclose __P((struct siocnstate *sp, Port_t iobase)); ! static void siocnopen __P((struct siocnstate *sp, Port_t iobase, int speed)); static void siocntxwait __P((Port_t iobase)); static cn_probe_t siocnprobe; --- 2888,2897 ---- u_char mcr; }; ! static speed_t siocngetspeed __P((Port_t, int)); static void siocnclose __P((struct siocnstate *sp, Port_t iobase)); ! static void siocnopen __P((struct siocnstate *sp, Port_t iobase, int speed, ! int clock)); static void siocntxwait __P((Port_t iobase)); static cn_probe_t siocnprobe; *************** *** 2884,2892 **** */ static speed_t ! siocngetspeed(iobase, table) Port_t iobase; ! struct speedtab *table; { int code; u_char dlbh; --- 2937,2945 ---- */ static speed_t ! siocngetspeed(iobase, clock) Port_t iobase; ! int clock; { int code; u_char dlbh; *************** *** 2903,2920 **** code = dlbh << 8 | dlbl; ! for (; table->sp_speed != -1; table++) ! if (table->sp_code == code) ! return (table->sp_speed); ! ! return (0); /* didn't match anything sane */ } static void ! siocnopen(sp, iobase, speed) struct siocnstate *sp; Port_t iobase; int speed; { int divisor; u_char dlbh; --- 2956,2973 ---- code = dlbh << 8 | dlbl; ! if (code == 0) ! return 0; ! else ! return BPSDIV(clock, code); /* BPSDIV works in both dirctions */ } static void ! siocnopen(sp, iobase, speed, clock) struct siocnstate *sp; Port_t iobase; int speed; + int clock; { int divisor; u_char dlbh; *************** *** 2938,2944 **** * data input register. This also reduces the effects of the * UMC8669F bug. */ ! divisor = ttspeedtab(speed, comspeedtab); dlbl = divisor & 0xFF; if (sp->dlbl != dlbl) outb(iobase + com_dlbl, dlbl); --- 2991,2997 ---- * data input register. This also reduces the effects of the * UMC8669F bug. */ ! divisor = getdivisor(clock, speed); dlbl = divisor & 0xFF; if (sp->dlbl != dlbl) outb(iobase + com_dlbl, dlbl); *************** *** 2985,2990 **** --- 3038,3044 ---- u_char cfcr; int s, unit; struct siocnstate sp; + int clock; /* * Find our first enabled console, if any. If it is a high-level *************** *** 3019,3026 **** continue; iobase = port; s = spltty(); if (boothowto & RB_SERIAL) { ! boot_speed = siocngetspeed(iobase, comspeedtab); if (boot_speed) comdefaultrate = boot_speed; } --- 3073,3084 ---- continue; iobase = port; s = spltty(); + if (COM_ST16650A(flags)) + clock = STDSIOCLOCK * ST16650AMULT; + else + clock = STDSIOCLOCK * (1 << COM_CLOCK(flags)); if (boothowto & RB_SERIAL) { ! boot_speed = siocngetspeed(iobase, clock); if (boot_speed) comdefaultrate = boot_speed; } *************** *** 3037,3048 **** cfcr = inb(iobase + com_cfcr); outb(iobase + com_cfcr, CFCR_DLAB | cfcr); outb(iobase + com_dlbl, ! COMBRD(comdefaultrate) & 0xff); outb(iobase + com_dlbh, ! (u_int) COMBRD(comdefaultrate) >> 8); outb(iobase + com_cfcr, cfcr); ! siocnopen(&sp, iobase, comdefaultrate); splx(s); if (COM_CONSOLE(flags) && !COM_LLCONSOLE(flags)) { --- 3095,3106 ---- cfcr = inb(iobase + com_cfcr); outb(iobase + com_cfcr, CFCR_DLAB | cfcr); outb(iobase + com_dlbl, ! BPSDIV(clock, comdefaultrate) & 0xff); outb(iobase + com_dlbh, ! (u_int) BPSDIV(clock, comdefaultrate) >> 8); outb(iobase + com_cfcr, cfcr); ! siocnopen(&sp, iobase, comdefaultrate, clock); splx(s); if (COM_CONSOLE(flags) && !COM_LLCONSOLE(flags)) { *************** *** 3092,3100 **** CONS_DRIVER(sio, NULL, NULL, NULL, siocngetc, siocncheckc, siocnputc, NULL); int ! siocnattach(port, speed) int port; int speed; { int s; u_char cfcr; --- 3150,3159 ---- CONS_DRIVER(sio, NULL, NULL, NULL, siocngetc, siocncheckc, siocnputc, NULL); int ! siocnattach(port, speed, clock) int port; int speed; + int clock; { int s; u_char cfcr; *************** *** 3119,3130 **** cfcr = inb(siocniobase + com_cfcr); outb(siocniobase + com_cfcr, CFCR_DLAB | cfcr); outb(siocniobase + com_dlbl, ! COMBRD(comdefaultrate) & 0xff); outb(siocniobase + com_dlbh, ! (u_int) COMBRD(comdefaultrate) >> 8); outb(siocniobase + com_cfcr, cfcr); ! siocnopen(&sp, siocniobase, comdefaultrate); splx(s); cn_tab = &sio_consdev; --- 3178,3189 ---- cfcr = inb(siocniobase + com_cfcr); outb(siocniobase + com_cfcr, CFCR_DLAB | cfcr); outb(siocniobase + com_dlbl, ! BPSDIV(clock, comdefaultrate) & 0xff); outb(siocniobase + com_dlbh, ! (u_int) BPSDIV(clock, comdefaultrate) >> 8); outb(siocniobase + com_cfcr, cfcr); ! siocnopen(&sp, siocniobase, comdefaultrate, clock); splx(s); cn_tab = &sio_consdev; *************** *** 3132,3140 **** } int ! siogdbattach(port, speed) int port; int speed; { int s; u_char cfcr; --- 3191,3200 ---- } int ! siogdbattach(port, speed, clock) int port; int speed; + int clock; { int s; u_char cfcr; *************** *** 3157,3168 **** cfcr = inb(siogdbiobase + com_cfcr); outb(siogdbiobase + com_cfcr, CFCR_DLAB | cfcr); outb(siogdbiobase + com_dlbl, ! COMBRD(gdbdefaultrate) & 0xff); outb(siogdbiobase + com_dlbh, ! (u_int) COMBRD(gdbdefaultrate) >> 8); outb(siogdbiobase + com_cfcr, cfcr); ! siocnopen(&sp, siogdbiobase, gdbdefaultrate); splx(s); return (0); --- 3217,3228 ---- cfcr = inb(siogdbiobase + com_cfcr); outb(siogdbiobase + com_cfcr, CFCR_DLAB | cfcr); outb(siogdbiobase + com_dlbl, ! BPSDIV(clock, gdbdefaultrate) & 0xff); outb(siogdbiobase + com_dlbh, ! (u_int) BPSDIV(clock, gdbdefaultrate) >> 8); outb(siogdbiobase + com_cfcr, cfcr); ! siocnopen(&sp, siogdbiobase, gdbdefaultrate, clock); splx(s); return (0); *************** *** 3185,3197 **** Port_t iobase; int s; struct siocnstate sp; if (minor(dev) == siogdbunit) iobase = siogdbiobase; else iobase = siocniobase; s = spltty(); ! siocnopen(&sp, iobase, comdefaultrate); if (inb(iobase + com_lsr) & LSR_RXRDY) c = inb(iobase + com_data); else --- 3245,3259 ---- Port_t iobase; int s; struct siocnstate sp; + struct com_s *com; if (minor(dev) == siogdbunit) iobase = siogdbiobase; else iobase = siocniobase; + com = com_addr(MINOR_TO_UNIT(minor(dev))); s = spltty(); ! siocnopen(&sp, iobase, comdefaultrate, com->clock); if (inb(iobase + com_lsr) & LSR_RXRDY) c = inb(iobase + com_data); else *************** *** 3210,3222 **** Port_t iobase; int s; struct siocnstate sp; if (minor(dev) == siogdbunit) iobase = siogdbiobase; else iobase = siocniobase; s = spltty(); ! siocnopen(&sp, iobase, comdefaultrate); while (!(inb(iobase + com_lsr) & LSR_RXRDY)) ; c = inb(iobase + com_data); --- 3272,3286 ---- Port_t iobase; int s; struct siocnstate sp; + struct com_s *com; if (minor(dev) == siogdbunit) iobase = siogdbiobase; else iobase = siocniobase; + com = com_addr(MINOR_TO_UNIT(minor(dev))); s = spltty(); ! siocnopen(&sp, iobase, comdefaultrate, com->clock); while (!(inb(iobase + com_lsr) & LSR_RXRDY)) ; c = inb(iobase + com_data); *************** *** 3232,3245 **** { int s; struct siocnstate sp; Port_t iobase; if (minor(dev) == siogdbunit) iobase = siogdbiobase; else iobase = siocniobase; s = spltty(); ! siocnopen(&sp, iobase, comdefaultrate); siocntxwait(iobase); outb(iobase + com_data, c); siocnclose(&sp, iobase); --- 3296,3311 ---- { int s; struct siocnstate sp; + struct com_s *com; Port_t iobase; if (minor(dev) == siogdbunit) iobase = siogdbiobase; else iobase = siocniobase; + com = com_addr(MINOR_TO_UNIT(minor(dev))); s = spltty(); ! siocnopen(&sp, iobase, comdefaultrate, com->clock); siocntxwait(iobase); outb(iobase + com_data, c); siocnclose(&sp, iobase); *************** *** 3254,3263 **** Port_t iobase; int s; struct siocnstate sp; iobase = siogdbiobase; s = spltty(); ! siocnopen(&sp, iobase, gdbdefaultrate); while (!(inb(iobase + com_lsr) & LSR_RXRDY)) ; c = inb(iobase + com_data); --- 3320,3331 ---- Port_t iobase; int s; struct siocnstate sp; + struct com_s *com; iobase = siogdbiobase; + com = com_addr(MINOR_TO_UNIT(minor(dev))); s = spltty(); ! siocnopen(&sp, iobase, gdbdefaultrate, com->clock); while (!(inb(iobase + com_lsr) & LSR_RXRDY)) ; c = inb(iobase + com_data); *************** *** 3272,3280 **** { int s; struct siocnstate sp; s = spltty(); ! siocnopen(&sp, siogdbiobase, gdbdefaultrate); siocntxwait(siogdbiobase); outb(siogdbiobase + com_data, c); siocnclose(&sp, siogdbiobase); --- 3340,3350 ---- { int s; struct siocnstate sp; + struct com_s *com; + com = com_addr(MINOR_TO_UNIT(minor(dev))); s = spltty(); ! siocnopen(&sp, siogdbiobase, gdbdefaultrate, com->clock); siocntxwait(siogdbiobase); outb(siogdbiobase + com_data, c); siocnclose(&sp, siogdbiobase); *** /usr/src/sys/isa/sioreg.h.orig Sun Feb 27 19:09:02 2000 --- /usr/src/sys/isa/sioreg.h Fri Aug 4 19:49:55 2000 *************** *** 40,45 **** --- 40,47 ---- #ifdef PC98 #define COMBRD_RSA(x) (14745600 / (16*(x))) #endif + #define BPSDIV(f,x) (f / (16*(x))) + #define BPSDIVMOD(f,x) (f % (16*(x))) /* interrupt enable register */ #define IER_ERXRDY 0x1 *************** *** 62,67 **** --- 64,70 ---- #define FIFO_RCV_RST 0x02 #define FIFO_XMT_RST 0x04 #define FIFO_DMA_MODE 0x08 + #define FIFO_BIG 0x20 #define FIFO_RX_LOW 0x00 #define FIFO_RX_MEDL 0x40 #define FIFO_RX_MEDH 0x80 *************** *** 82,87 **** --- 85,92 ---- #define CFCR_5BITS 0x00 /* modem control register */ + #define MCR_HS 0x40 + #define MCR_AFE 0x20 #define MCR_LOOPBACK 0x10 #define MCR_IENABLE 0x08 #define MCR_DRS 0x04 *************** *** 126,128 **** --- 131,139 ---- #ifndef CONSPEED #define CONSPEED 9600 #endif + + /* st16650a internal multiplier */ + #define ST16650AMULT 4 + + /* standard sio clock */ + #define STDSIOCLOCK 1843200 *** /usr/src/sys/sys/termios.h.orig Sun Feb 27 23:48:45 2000 --- /usr/src/sys/sys/termios.h Fri Aug 4 21:27:21 2000 *************** *** 225,231 **** --- 225,236 ---- #define B57600 57600 #define B76800 76800 #define B115200 115200 + #define B153600 153600 + #define B184320 184320 #define B230400 230400 + #define B307200 307200 + #define B460800 460800 + #define B921600 921600 #define EXTA 19200 #define EXTB 38400 #endif /* !_POSIX_SOURCE */ >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 Fri Aug 4 16:50: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D49737B952 for ; Fri, 4 Aug 2000 16:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA43719; Fri, 4 Aug 2000 16:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C841137BC06; Fri, 4 Aug 2000 16:45:51 -0700 (PDT) Message-Id: <20000804234551.C841137BC06@hub.freebsd.org> Date: Fri, 4 Aug 2000 16:45:51 -0700 (PDT) From: yurtesen@ispro.net.tr To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/20420: When NIS client enabled machine doesnt boot correctly a line in /etc/rc doesnt work?! Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20420 >Category: conf >Synopsis: When NIS client enabled machine doesnt boot correctly a line in /etc/rc doesnt work?! >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 04 16:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Evren Yurtesen >Release: 4.1-STABLE >Organization: ISPRO Internet Services >Environment: FreeBSD webmaster.ispro.net.tr 4.1-RC FreeBSD 4.1-RC #0: Fri Feb 2 18:19:52 GMT 2001 root@finland.ispro.net.tr:/usr/obj/usr/src/sys/GENERIC i386 >Description: When I have nis_client_enable="YES" in my /etc/rc.conf file the boot process is haning at line chown root:wheel /dev/tty[pqrsPQRS]* of the /etc/rc file when I comment out this line the machine boots correctly. The same happened in 2 different machines I use here. Somebody may lock out himself when rebooting the machine or they might need to go to system room to press ctrl-c to cancel chown and continue booting. After a power failure machines would not boot correctly! So this is kinda serious problem I guess... ? >How-To-Repeat: put nisdomainname="!DOMAINNAMEHERE!" nis_client_enable="YES" in your /etc/rc.conf file. (I hope the problem repeats in your machines too) >Fix: I dont know yet but if you know something please let me know. yurtesen@ispro.net.tr >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 Fri Aug 4 19:25: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from priv-edtnes12-hme0.telusplanet.net (fepout4.telus.net [199.185.220.239]) by hub.freebsd.org (Postfix) with ESMTP id 63D6137B858 for ; Fri, 4 Aug 2000 19:24:59 -0700 (PDT) (envelope-from peter@wirelesssecurity.org) Received: from ricepower ([209.53.59.203]) by priv-edtnes12-hme0.telusplanet.net (InterMail vM.4.01.02.11 201-229-116-111) with SMTP id <20000805022458.LOXD1814.priv-edtnes12-hme0.telusplanet.net@ricepower> for ; Fri, 4 Aug 2000 20:24:58 -0600 Message-ID: <024901bffe84$5c4dbd40$cb3b35d1@bconnected.net> From: "Peter" To: Subject: Date: Fri, 4 Aug 2000 19:25:02 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org SUBSCRIBE freebsd-bugs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 19:26:49 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from host01.netpro.ne.jp (host01.netpro.ne.jp [210.233.96.2]) by hub.freebsd.org (Postfix) with ESMTP id 4524D37B8A2; Fri, 4 Aug 2000 19:26:30 -0700 (PDT) (envelope-from binfo@netpro.ne.jp) Received: from oemcomputer (tk-ns01-216.tk.netpro.ne.jp [210.250.49.216]) by host01.netpro.ne.jp (8.9.3/3.7W) with SMTP id KAA27402; Sat, 5 Aug 2000 10:43:08 +0900 (JST) Message-ID: <016b01bffe7f$bddad480$bd31fad2@oemcomputer> From: =?iso-2022-jp?B?GyRCJVYlQyUvJUolJCVEISYlVyVtJTglJyUvJUgbKEI=?= To: Subject: =?iso-2022-jp?B?GyRCPXFJPjJISmc9OCEqSXs2SDI9JGIyREc9GyhC?= Date: Sat, 5 Aug 2000 09:48:42 +0900 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0147_01BFFEC2.585F14C0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0147_01BFFEC2.585F14C0 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit $B$4<+J,$N$*A&$aK\$r9-$/%"%T!<%k$7$?$$$H$*9M$($N(B $B!VK\$NCn!W!VFI=q$NC#?M!W$rJg=8$7$^$9!#(B $Be$NFI=qNL$r;}$DJ}!#G/Np@-JLITLd(B $B>\:Y$*Ld$$9g$o$;$O%a!<%kBj!V(Binq$B!W$H$7(B booksf@netlimit.com$B$"$F2<5-%"%s%1!<%H$r$*Aw$j$/$@$5$$(B ($BJV?.%\%?%s$O;H$o$J$$$G$/$@$5$$!K(B $B!c(Ba$B!!9%$-$J%8%c%s%k!!J#?t2D!d(B 1$B%_%9%F%j!!(B2$B#S#F!!(B3$B%[%i!.@b!!(B7$B$=$NB>8=Be>.@b(B 8$B41G=>.@b!!(B9$B%N%s%U%#%/%7%g%s(B $B!c(Bb$B!!K~G/Np!d(B $B!c(Bc$B!!@-JL!d!!(B1$B=w@-!!(B2$BCK@-(B $B!c(Bd$B!!=;=j!d!!M9JXHV9f>e#37e$G(B $B!c(Be$B!!%a!<%k%"%I%l%9!d(B $B5-F~$OH>3Q1Q?t;z$G$*4j$$$7$^$9(B $B!JNc!K(Ba 1 2 b 40 c 1 d 514 e aaa@bb.co.jp ------=_NextPart_000_0147_01BFFEC2.585F14C0 Content-Type: text/html; charset="iso-2022-jp" Content-Transfer-Encoding: quoted-printable
=1B$B$4<+J,$N$*A&$aK\$r9-$/%"%T!<%k$7$?$$$H$*9M$($N=1B(B
=1B$= B!VK\$NCn!W!VFI=3Dq$NC#?M!W$rJg=3D8$7$^$9!#=1B(B
=1B$B=1B$B%A%c%s%9$bMQ0U$5$l$^$9=1B(B
 
=1B$B!c;q3J!d=1B(B
=1B$BF|K\8l$rJl8l$H$7!"%(%s%?!<%F%$%a%s%H$= rCf?4$K=1B(B
=1B$B7n#7!$#8:}A08e0J>e$NFI=3DqNL$r;}$DJ}!#G/Np@-JLITLd=1B= (B
 
=1B$B>\:Y$*Ld$$9g$o$;$O%a!<%kBj!V=1B(Binq=1B$B!W$H$7=1B(B
booksf@netlimit.com=1B$B$"$F2<5-%= "%s%1!<%H$r$*Aw$j$/$@$5$$=1B(B
(=1B$BJV?.%\%?%s$O;H$o$J$$$G$/$@$5$$!K=1B(B
 
=1B$B!c=1B(Ba=1B$B!!9%$-$J%8%c%s%k!!J#?t2D!d=1B(B
1=1B$B%_%9%= F%j!!=1B(B2=1B$B#S#F!!=1B(B3=1B$B%[%i!= 5=1B$BNx0&!?%m%^%s%9!!=1B(B6=1B$B;~Be=1B(B/=1B$BNr;K>.@b!!=1B(B7=1B$B$=3D= $NB>8=3DBe>.@b=1B(B
8=1B$B41G=3D>.@b!!=1B(B9=1B$B%N%s%U%#%/%7%g%s=1B(B=
=1B$B!c=1B(Bb=1B$B!!K~G/Np!d=1B(B
=1B$B!c=1B(Bc=1B$B!!@-JL!d!!=1B(= B1=1B$B=3Dw@-!!=1B(B2=1B$BCK@-=1B(B
=1B$B!c=1B(Bd=1B$B!!=3D;=3Dj!d!!M9= JXHV9f>e#37e$G=1B(B
=1B$B!c=1B(Be=1B$B!!%a!<%k%"%I%l%9!d=1B(B
 
=1B$B5-F~$OH>3Q1Q?t;z$G$*4j$$$7$^$9=1B(B
=1B$B!JNc!K=1B(Ba 1 = 2 b 40 c 1 d 514 e aaa@bb.co.jp
------=_NextPart_000_0147_01BFFEC2.585F14C0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Aug 4 23:20:13 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2134337B607 for ; Fri, 4 Aug 2000 23:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA80210; Fri, 4 Aug 2000 23:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 4 Aug 2000 23:20:04 -0700 (PDT) Message-Id: <200008050620.XAA80210@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Tor.Egge@fast.no Subject: Re: kern/20312: IO APIC problems Reply-To: Tor.Egge@fast.no Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/20312; it has been noted by GNATS. From: Tor.Egge@fast.no To: steve@sse0691.bri.hp.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG, msmith@FreeBSD.ORG Subject: Re: kern/20312: IO APIC problems Date: Sat, 05 Aug 2000 08:09:39 +0200 The problem is due to a incomplete fix for panics on machines where the BIOS doesn't set the physical IO APIC ids, cf. PR 18919. msmith 2000/05/31 14:37:29 PDT Revision Changes Path 1.117 +3 -8 src/sys/i386/i386/mp_machdep.c 1.39 +19 -1 src/sys/i386/i386/mpapic.c 1.52 +2 -1 src/sys/i386/include/smp.h Section 3.6.6 of the Intel MP spec describes the operating system as responsible for verifying that the IO APIC ids are unique and acceptable. If also contains a statement restricting the acceptable ids to the lowest possible ids left over after local apic id assignment. Thus the following patch might be applicable. - Tor Egge Index: mp_machdep.c =================================================================== RCS file: /home/ncvs/src/sys/i386/i386/mp_machdep.c,v retrieving revision 1.117 diff -u -r1.117 mp_machdep.c --- mp_machdep.c 2000/05/31 21:37:24 1.117 +++ mp_machdep.c 2000/08/05 05:45:50 @@ -1013,6 +1029,42 @@ } } + +static void +swap_apic_id(int oldid, int newid) +{ + int x; + int apic; + int oapic; + + + if (oldid == newid) + return; + + printf("IOAPIC#%d assigned physical APIC ID %d\n", + ID_TO_IO(oldid), newid); + + /* Swap IOAPIC physical IDs in interrupt entries */ + for (x = 0; x < nintrs; x++) { + if (io_apic_ints[x].dst_apic_id == oldid) + io_apic_ints[x].dst_apic_id = newid; + else if (io_apic_ints[x].dst_apic_id == newid) + io_apic_ints[x].dst_apic_id = oldid; + } + + /* Swap IOAPIC physical IDs in IO_TO_ID and ID_TO_IO mappings */ + apic = ID_TO_IO(oldid); + oapic = ID_TO_IO(newid); + if (oapic >= 0 && IO_TO_ID(oapic) == newid) { + ID_TO_IO(oldid) = oapic; + IO_TO_ID(oapic) = oldid; + } else { + ID_TO_IO(oldid) = -1; + } + ID_TO_IO(newid) = apic; + IO_TO_ID(apic) = newid; +} + /* * parse an Intel MP specification table */ @@ -1024,6 +1076,9 @@ int bus_0 = 0; /* Stop GCC warning */ int bus_pci = 0; /* Stop GCC warning */ int num_pci_bus; + int apic; /* logical IO APIC ID */ + int new_physid; /* Free physical IO APIC ID */ + int max_physid; /* Max physical IO APIC ID */ /* * Fix mis-numbering of the PCI bus and its INT entries if the BIOS @@ -1076,6 +1131,21 @@ } } } + /* Assign IOAPIC ids */ + new_physid = 0; /* Start with first possible APIC ID */ + max_physid = 15; /* physical APIC IDs are in range 0..15 */ + for (apic = 0; apic < mp_napics; ++apic) { /* For all IO APICs */ + /* Find next free APIC ID (not used by any CPU) */ + while (new_physid <= max_physid && + ID_TO_CPU(new_physid) >= 0 && + CPU_TO_ID(ID_TO_CPU(new_physid)) == new_physid) + new_physid++; + + if (new_physid < max_physid) { + swap_apic_id(IO_TO_ID(apic), new_physid); + new_physid++; + } + } } @@ -1602,7 +1672,6 @@ { int ap_cpu_id; #if defined(APIC_IO) - u_int32_t ux; int io_apic_id; int pin; #endif /* APIC_IO */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 2: 0: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8527D37B554 for ; Sat, 5 Aug 2000 02:00:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA92363; Sat, 5 Aug 2000 02:00:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 5 Aug 2000 02:00:07 -0700 (PDT) Message-Id: <200008050900.CAA92363@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: misc/16843: Knob for release/Makefile to prevent deleting docproj distfiles Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/16843; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: misc/16843: Knob for release/Makefile to prevent deleting docproj distfiles Date: Sat, 05 Aug 2000 10:54:28 +0200 Do not close this one, PR 16842 has been closed. /K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 4: 0: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6278237B98F for ; Sat, 5 Aug 2000 04:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA01421; Sat, 5 Aug 2000 04:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from baerle.baerle.new-wen.net (gritixosa.dials.kiosk-online.de [212.72.88.65]) by hub.freebsd.org (Postfix) with ESMTP id C50BB37B8A9 for ; Sat, 5 Aug 2000 03:59:52 -0700 (PDT) (envelope-from deuerl@baerle.baerle.new-wen.net) Received: (from deuerl@localhost) by baerle.baerle.new-wen.net (8.9.3/8.9.3) id MAA00566; Sat, 5 Aug 2000 12:57:18 +0200 (CEST) (envelope-from deuerl) Message-Id: <200008051057.MAA00566@baerle.baerle.new-wen.net> Date: Sat, 5 Aug 2000 12:57:18 +0200 (CEST) From: deuerl@new-wen.net Reply-To: deuerl@new-wen.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20429: flags 0x1 locks keyboard Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20429 >Category: kern >Synopsis: setting flags 0x1 in atkbd0 locks keyboard >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Aug 05 04:00:04 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Robert Deuerling >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: 4.1-Stable as of ctm 6579 Mitsumi KBD KPQ-E99ZC-13 Gigabyte BA-Board >Description: Setting device atkbd0 at atkbdc? irq 1 flags 0x1 in kernel leaves keyboard in an inaccessible state -> no keystrokes are accepted >How-To-Repeat: Compile kernel >Fix: leave out flags 0x1 >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 Sat Aug 5 9:10: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C0D437BA03 for ; Sat, 5 Aug 2000 09:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA32991; Sat, 5 Aug 2000 09:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 6D32437BA03; Sat, 5 Aug 2000 09:03:14 -0700 (PDT) Message-Id: <20000805160314.6D32437BA03@hub.freebsd.org> Date: Sat, 5 Aug 2000 09:03:14 -0700 (PDT) From: dopp@acm.cs.umn.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/20432: agp_if.c missing from kernel source Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20432 >Category: misc >Synopsis: agp_if.c missing from kernel source >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Aug 05 09:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gabe >Release: 4.0-Stable >Organization: >Environment: FreeBSD sorry.cs.umn.edu 4.0-STABLE FreeBSD 4.0-STABLE #0: Sat Jul 1 15:21:41 CDT 2000 root@sorry.cs.umn.edu:/usr/src/sys/compile/SORRY i386 >Description: I just supped down the 4.x stable kernel source 5 mins ago and am trying to build... I can't even get passed "make depend". ===> agp make: don't know how to make agp_if.c. Stop *** Error code 2 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/src/sys/compile/SORRY. Sure enough, agp_if.c is missing from /usr/src/sys/pci. >How-To-Repeat: config cd /usr/src/sys/compile/ make depend >Fix: >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 Sat Aug 5 9:32:26 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from harzserver1.harz.de (harzserver1.harz.de [193.159.181.124]) by hub.freebsd.org (Postfix) with ESMTP id 77A3F37B8CA; Sat, 5 Aug 2000 09:32:20 -0700 (PDT) (envelope-from frank@vogon.agala.net) Received: (from uucp@localhost) by harzserver1.harz.de (8.9.3/8.9.3) with UUCP id SAA17904; Sat, 5 Aug 2000 18:36:02 +0200 (CEST) (envelope-from frank@vogon.agala.net) Received: by vogon.agala.net (Postfix, from userid 701) id AC43F45F42; Sat, 5 Aug 2000 18:27:40 +0200 (CEST) Date: Sat, 5 Aug 2000 18:27:40 +0200 From: "Frank J. Beckmann" To: gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/20410: sio support for high speed NS16550A, ST16650A and TI16750 cards Message-ID: <20000805182740.A4912@vogon.agala.net> References: <20000804225144.0334446167@vogon.agala.net> <200008042300.QAA38704@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=RIPEMD160; protocol="application/pgp-signature"; boundary="YiEDa0DAkWCtVeE4" X-Mailer: Mutt 1.0i In-Reply-To: <200008042300.QAA38704@freefall.freebsd.org>; from gnats-admin@FreeBSD.org on Fri, Aug 04, 2000 at 04:00:03PM -0700 X-Address: Frank J. Beckmann, Steinkampring 16, D-38667 Bad Harzburg X-Phone: +49-5322-80008 X-Fax: +49-5322-80082 X-PGP-Fingerprint-1: (1024R/66DC397D) = 25 34 D7 8A 69 04 12 CA 6E 55 DD 63 F6 A3 0E 06 X-PGP-Fingerprint-2: (1024D/46DE66CA) = 7D06 0DFB 23D9 01BA 11EB 88C3 DE8C C167 46DE 66CA Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --YiEDa0DAkWCtVeE4 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable On Fri, Aug 04, 2000 at 04:00:03PM -0700, gnats-admin@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `kern/20410'. > The individual assigned to look at your > report is: freebsd-bugs.=20 >=20 > You can access the state of your problem report at any time > via this link: >=20 > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D20410 No, I can't, it's confidential. That's what I get from sending prs late at night. > >Category: kern > >Responsible: freebsd-bugs > >Synopsis: sio support for high speed NS16550A, ST16650A and TI1675= 0 cards > >Arrival-Date: Fri Aug 04 16:00:03 PDT 2000 Can you please change it to not confidential? Thank you. Frank --YiEDa0DAkWCtVeE4 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.1 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEAREBAAYFAjmMQHoACgkQ3ozBZ0beZsriugCfa2hOe/WIIPGWAL7xFmmLlCL/ 4gYAn3iefp40MjJasvkk99rLy3QJjHdR =k/ou -----END PGP SIGNATURE----- --YiEDa0DAkWCtVeE4-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 9:46:58 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id DAB9337B685; Sat, 5 Aug 2000 09:46:54 -0700 (PDT) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 5 Aug 2000 17:46:53 +0100 (BST) Date: Sat, 5 Aug 2000 17:46:53 +0100 From: David Malone To: "Frank J. Beckmann" Cc: gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/20410: sio support for high speed NS16550A, ST16650A and TI16750 cards Message-ID: <20000805174653.A5340@walton.maths.tcd.ie> References: <20000804225144.0334446167@vogon.agala.net> <200008042300.QAA38704@freefall.freebsd.org> <20000805182740.A4912@vogon.agala.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.2i In-Reply-To: <20000805182740.A4912@vogon.agala.net>; from frank@vogon.agala.net on Sat, Aug 05, 2000 at 06:27:40PM +0200 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Aug 05, 2000 at 06:27:40PM +0200, Frank J. Beckmann wrote: > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=20410 > > No, I can't, it's confidential. That's what I get from sending prs late > at night. > > > >Category: kern > > >Responsible: freebsd-bugs > > >Synopsis: sio support for high speed NS16550A, ST16650A and TI16750 cards > > >Arrival-Date: Fri Aug 04 16:00:03 PDT 2000 > > Can you please change it to not confidential? I've changed it now. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 13:30: 8 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2EF8937B8E2 for ; Sat, 5 Aug 2000 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA55588; Sat, 5 Aug 2000 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 138CF37B9CA for ; Sat, 5 Aug 2000 13:21:45 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by david.siemens.de (8.10.1/8.10.1) with ESMTP id e75KLh600966 for ; Sat, 5 Aug 2000 22:21:43 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail1.siemens.de (8.10.1/8.10.1) with ESMTP id e75KLhT22531 for ; Sat, 5 Aug 2000 22:21:43 +0200 (MET DST) Received: (from localhost) by curry.mchp.siemens.de (8.10.2/8.10.2) id e75KLgT64583 for FreeBSD-gnats-submit@freebsd.org; Sat, 5 Aug 2000 22:21:42 +0200 (CEST) Message-Id: <200008052021.e75KLgk18978@curry.mchp.siemens.de> Date: Sat, 5 Aug 2000 22:21:42 +0200 (CEST) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/20436: Can't make only cd0 under 4.1-STABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20436 >Category: conf >Synopsis: Can't make only cd0 under 4.1-STABLE >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: Sat Aug 05 13:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: FreeBSD 4.1-STABLE >Description: It is not possible to make only cd0. >How-To-Repeat: as root: mkdir /tmp/x cd /tmp/x cp /dev/MAKEDEV . ./MAKEDEV cd ls -l ./MAKEDEV cd0 produces the same result >Fix: --- /dev/MAKEDEV Tue Aug 1 10:51:44 2000 +++ MAKEDEV Sat Aug 5 22:17:41 2000 @@ -794,8 +794,8 @@ mcd*) units=`expr $i : '...\(.*\)'`; name=mcd; chr=29;; scd*) units=`expr $i : '...\(.*\)'`; name=scd; chr=45;; esac - if [ -z "${units}" -o "${units}" -le 0 ]; then - units=1 + if [ -z "${units}" ]; then + units=0 fi if [ "${units}" -le 31 ]; then i=0 >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 Sat Aug 5 13:33:54 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AEC0B37B51F; Sat, 5 Aug 2000 13:33:52 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA55833; Sat, 5 Aug 2000 13:33:52 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 13:33:52 -0700 (PDT) From: Message-Id: <200008052033.NAA55833@freefall.freebsd.org> To: nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: i386/3962: print disk internal cache size during probing [PATCH] Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: print disk internal cache size during probing [PATCH] Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: nbm Responsible-Changed-When: Sat Aug 5 13:32:55 PDT 2000 Responsible-Changed-Why: Soren can decide if he wants this in his ata code http://www.freebsd.org/cgi/query-pr.cgi?pr=3962 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 13:37:25 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 15C3337B51F; Sat, 5 Aug 2000 13:37:24 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA56083; Sat, 5 Aug 2000 13:37:23 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 13:37:23 -0700 (PDT) From: Message-Id: <200008052037.NAA56083@freefall.freebsd.org> To: jefl@ix.netcom.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/7815: probe can't find wdc0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: probe can't find wdc0 State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 13:35:55 PDT 2000 State-Changed-Why: 2.2.x isn't a supported branch, and no acknowledgement of the advice attached to the PR was received. http://www.freebsd.org/cgi/query-pr.cgi?pr=7815 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 13:47:41 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F128E37B51F; Sat, 5 Aug 2000 13:47:39 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA56878; Sat, 5 Aug 2000 13:47:39 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 13:47:39 -0700 (PDT) From: Message-Id: <200008052047.NAA56878@freefall.freebsd.org> To: yunching@sakura.res.cmu.edu, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/8435: boot.flp does not give shell prompt after mounting fixit.flp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: boot.flp does not give shell prompt after mounting fixit.flp State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 13:47:10 PDT 2000 State-Changed-Why: I remember that problem, and it went away in subsequent releases. http://www.freebsd.org/cgi/query-pr.cgi?pr=8435 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 13:49:17 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1760A37BA82; Sat, 5 Aug 2000 13:49:15 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA57009; Sat, 5 Aug 2000 13:49:15 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 13:49:15 -0700 (PDT) From: Message-Id: <200008052049.NAA57009@freefall.freebsd.org> To: igusarov@crow.mephi.net.ru, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/8571: Bug in config utility in FreeBSD 2.2.6-RELEASE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Bug in config utility in FreeBSD 2.2.6-RELEASE State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 13:48:46 PDT 2000 State-Changed-Why: config's come a long way since 2.2.6. http://www.freebsd.org/cgi/query-pr.cgi?pr=8571 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 13:52:12 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5652B37BAD1; Sat, 5 Aug 2000 13:52:11 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA57247; Sat, 5 Aug 2000 13:52:11 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 13:52:11 -0700 (PDT) From: Message-Id: <200008052052.NAA57247@freefall.freebsd.org> To: tory@cc.ntnu.edu.tw, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/8923: ctm 2.2.5 -> 2.2.7 error hu_HU.ISO_8859-2 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ctm 2.2.5 -> 2.2.7 error hu_HU.ISO_8859-2 State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 13:51:17 PDT 2000 State-Changed-Why: 2.2.x is no longer a supported branch, and provably built world for 2.2.8. http://www.freebsd.org/cgi/query-pr.cgi?pr=8923 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 13:53:46 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DA4137BACB; Sat, 5 Aug 2000 13:53:45 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA57449; Sat, 5 Aug 2000 13:53:45 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 13:53:45 -0700 (PDT) From: Message-Id: <200008052053.NAA57449@freefall.freebsd.org> To: nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: i386/8867: /stand/sysinstall core dumps (signal 11) if you try to allocate 25 partitions at once. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /stand/sysinstall core dumps (signal 11) if you try to allocate 25 partitions at once. Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: nbm Responsible-Changed-When: Sat Aug 5 13:52:46 PDT 2000 Responsible-Changed-Why: sysinstall problems seem to go to murray http://www.freebsd.org/cgi/query-pr.cgi?pr=8867 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 13:55:45 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EA37637BA90; Sat, 5 Aug 2000 13:55:43 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA57670; Sat, 5 Aug 2000 13:55:43 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 13:55:43 -0700 (PDT) From: Message-Id: <200008052055.NAA57670@freefall.freebsd.org> To: admin@imediaconsutants.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/8924: File transfers. Upload is 71Kbs download is 8mbs on a network.??? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: File transfers. Upload is 71Kbs download is 8mbs on a network.??? State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 13:54:49 PDT 2000 State-Changed-Why: 2.2.x is no longer supported, but do file a problem report if this behaviour continues in later releases. http://www.freebsd.org/cgi/query-pr.cgi?pr=8924 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 13:56:35 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4D76F37BA82; Sat, 5 Aug 2000 13:56:34 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA57822; Sat, 5 Aug 2000 13:56:34 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 13:56:34 -0700 (PDT) From: Message-Id: <200008052056.NAA57822@freefall.freebsd.org> To: duane@unt.edu, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/9044: #.0 pkgs require libkrb Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: #.0 pkgs require libkrb State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 13:56:11 PDT 2000 State-Changed-Why: This package-building mistake has since been rectified. http://www.freebsd.org/cgi/query-pr.cgi?pr=9044 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14: 1:23 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D61B37BA90; Sat, 5 Aug 2000 14:01:21 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA58226; Sat, 5 Aug 2000 14:01:21 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:01:21 -0700 (PDT) From: Message-Id: <200008052101.OAA58226@freefall.freebsd.org> To: nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org, jasone@FreeBSD.org Subject: Re: i386/9257: fpathconf() missing from libc_r Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fpathconf() missing from libc_r Responsible-Changed-From-To: freebsd-bugs->jasone Responsible-Changed-By: nbm Responsible-Changed-When: Sat Aug 5 14:00:41 PDT 2000 Responsible-Changed-Why: libc_r is jasone's area, he can decide what to do with it. http://www.freebsd.org/cgi/query-pr.cgi?pr=9257 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14: 3:56 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6917837B872; Sat, 5 Aug 2000 14:03:55 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA58447; Sat, 5 Aug 2000 14:03:55 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:03:55 -0700 (PDT) From: Message-Id: <200008052103.OAA58447@freefall.freebsd.org> To: vons@iname.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/10052: Matrox Millennium II AGP device/model id unknown Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Matrox Millennium II AGP device/model id unknown State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:03:26 PDT 2000 State-Changed-Why: This device has subsequently been recognized. http://www.freebsd.org/cgi/query-pr.cgi?pr=10052 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14:10:42 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B4E937B872; Sat, 5 Aug 2000 14:10:40 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA60226; Sat, 5 Aug 2000 14:10:40 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:10:40 -0700 (PDT) From: Message-Id: <200008052110.OAA60226@freefall.freebsd.org> To: kbird@southwind.net, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/7633: panic: page fault on install with boot.flp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: panic: page fault on install with boot.flp State-Changed-From-To: feedback->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:09:37 PDT 2000 State-Changed-Why: Feedback timeout - 2.2.x bug, plenty of working releases since. http://www.freebsd.org/cgi/query-pr.cgi?pr=7633 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14:25:45 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A18837BA3B; Sat, 5 Aug 2000 14:25:44 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA61062; Sat, 5 Aug 2000 14:25:43 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:25:43 -0700 (PDT) From: Message-Id: <200008052125.OAA61062@freefall.freebsd.org> To: olof@volvo.se, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/10150: Compaq fxp0 Does not work on 3.0 or 3.1 but on 2.2.8 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Compaq fxp0 Does not work on 3.0 or 3.1 but on 2.2.8 State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:25:23 PDT 2000 State-Changed-Why: Is this still the case in later releases? http://www.freebsd.org/cgi/query-pr.cgi?pr=10150 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14:27:16 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4423A37BB05; Sat, 5 Aug 2000 14:27:15 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA61250; Sat, 5 Aug 2000 14:27:14 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:27:14 -0700 (PDT) From: Message-Id: <200008052127.OAA61250@freefall.freebsd.org> To: ikappa@essex.ac.uk, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/10151: ATAPI CD problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ATAPI CD problem State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:26:47 PDT 2000 State-Changed-Why: Is this still the case with later releases? http://www.freebsd.org/cgi/query-pr.cgi?pr=10151 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14:30: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E73A237B642; Sat, 5 Aug 2000 14:30:05 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA61477; Sat, 5 Aug 2000 14:30:05 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:30:05 -0700 (PDT) From: Message-Id: <200008052130.OAA61477@freefall.freebsd.org> To: gnb@itga.com.au, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/10606: Probablue odd error message if LS-120 is not configured Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Probablue odd error message if LS-120 is not configured State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:29:41 PDT 2000 State-Changed-Why: The new ATAPI code doesn't have this possible bug. http://www.freebsd.org/cgi/query-pr.cgi?pr=10606 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14:32:36 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A8DA37BB31; Sat, 5 Aug 2000 14:32:33 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA61650; Sat, 5 Aug 2000 14:32:32 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:32:32 -0700 (PDT) From: Message-Id: <200008052132.OAA61650@freefall.freebsd.org> To: obonilla@fisicc-ufm.edu, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/10623: DFLTPHYS in /usr/src/sys/i386/include/params.h is set too low Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: DFLTPHYS in /usr/src/sys/i386/include/params.h is set too low State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:32:04 PDT 2000 State-Changed-Why: Ken says the default isn't too low, and there was no response. http://www.freebsd.org/cgi/query-pr.cgi?pr=10623 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14:34: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A0C5C37BB37; Sat, 5 Aug 2000 14:34:07 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA61784; Sat, 5 Aug 2000 14:34:07 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:34:07 -0700 (PDT) From: Message-Id: <200008052134.OAA61784@freefall.freebsd.org> To: cfr@pobox.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/10626: RTC BIOS diagnostic error on install Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: RTC BIOS diagnostic error on install State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:33:45 PDT 2000 State-Changed-Why: Are you able to tell us if this behaviour continued in later releases? http://www.freebsd.org/cgi/query-pr.cgi?pr=10626 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14:37:56 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C903037BB68; Sat, 5 Aug 2000 14:37:54 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA62151; Sat, 5 Aug 2000 14:37:54 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:37:54 -0700 (PDT) From: Message-Id: <200008052137.OAA62151@freefall.freebsd.org> To: olof@volvo.se, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/10150: Compaq fxp0 Does not work on 3.0 or 3.1 but on 2.2.8 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Compaq fxp0 Does not work on 3.0 or 3.1 but on 2.2.8 State-Changed-From-To: feedback->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:37:28 PDT 2000 State-Changed-Why: No feedback possible - mail bounces. http://www.freebsd.org/cgi/query-pr.cgi?pr=10150 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14:38:26 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DF6F37BB8F; Sat, 5 Aug 2000 14:38:23 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA62241; Sat, 5 Aug 2000 14:38:23 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:38:23 -0700 (PDT) From: Message-Id: <200008052138.OAA62241@freefall.freebsd.org> To: ikappa@essex.ac.uk, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/10151: ATAPI CD problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ATAPI CD problem State-Changed-From-To: feedback->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:38:08 PDT 2000 State-Changed-Why: No feedback possible - mail bounces. http://www.freebsd.org/cgi/query-pr.cgi?pr=10151 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14:44:11 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 875FB37B5F7; Sat, 5 Aug 2000 14:44:09 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA62959; Sat, 5 Aug 2000 14:44:09 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:44:09 -0700 (PDT) From: Message-Id: <200008052144.OAA62959@freefall.freebsd.org> To: randal@linuxsjt.org, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/10683: I have a buslogic BT-948 FW controller. When the 3.1-RELEASE is installing, the machine freezes at "Waiting 15 seconds for SCSI devices to settle". 3.0-RELEASE had no problem here! Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: I have a buslogic BT-948 FW controller. When the 3.1-RELEASE is installing, the machine freezes at "Waiting 15 seconds for SCSI devices to settle". 3.0-RELEASE had no problem here! State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:43:43 PDT 2000 State-Changed-Why: Does this problem persist with later releases? http://www.freebsd.org/cgi/query-pr.cgi?pr=10683 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14:47:51 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 763A337B708; Sat, 5 Aug 2000 14:47:50 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA63415; Sat, 5 Aug 2000 14:47:50 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:47:50 -0700 (PDT) From: Message-Id: <200008052147.OAA63415@freefall.freebsd.org> To: kagotani@in.it.okayama-u.ac.jp, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/10766: obsolete device name wcd is still left unchanged in kernel code Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: obsolete device name wcd is still left unchanged in kernel code State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:46:31 PDT 2000 State-Changed-Why: That identifying code has been removed since. http://www.freebsd.org/cgi/query-pr.cgi?pr=10766 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14:50:41 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 09C7337BA6E; Sat, 5 Aug 2000 14:50:40 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA63669; Sat, 5 Aug 2000 14:50:39 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:50:39 -0700 (PDT) From: Message-Id: <200008052150.OAA63669@freefall.freebsd.org> To: root@aquezada.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/10928: su reboots the system after one day uptime Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: su reboots the system after one day uptime State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:50:04 PDT 2000 State-Changed-Why: contentless submission about an old release for something that works for me every day. http://www.freebsd.org/cgi/query-pr.cgi?pr=10928 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14:53:57 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EA8D37B5F7; Sat, 5 Aug 2000 14:53:56 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA63881; Sat, 5 Aug 2000 14:53:55 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:53:55 -0700 (PDT) From: Message-Id: <200008052153.OAA63881@freefall.freebsd.org> To: frodef@dslab7.cs.uit.no, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/10983: lnc NIC driver doesn't work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lnc NIC driver doesn't work State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:53:39 PDT 2000 State-Changed-Why: Does this problem persists? http://www.freebsd.org/cgi/query-pr.cgi?pr=10983 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14:55:33 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 239EE37BAF2; Sat, 5 Aug 2000 14:55:32 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA63999; Sat, 5 Aug 2000 14:55:31 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:55:31 -0700 (PDT) From: Message-Id: <200008052155.OAA63999@freefall.freebsd.org> To: randal@linuxsjt.org, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/10683: I have a buslogic BT-948 FW controller. When the 3.1-RELEASE is installing, the machine freezes at "Waiting 15 seconds for SCSI devices to settle". 3.0-RELEASE had no problem here! Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: I have a buslogic BT-948 FW controller. When the 3.1-RELEASE is installing, the machine freezes at "Waiting 15 seconds for SCSI devices to settle". 3.0-RELEASE had no problem here! State-Changed-From-To: feedback->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:55:15 PDT 2000 State-Changed-Why: Feedback not possible - mail bounces. http://www.freebsd.org/cgi/query-pr.cgi?pr=10683 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 14:57:48 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BCA537BA90; Sat, 5 Aug 2000 14:57:47 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA64184; Sat, 5 Aug 2000 14:57:46 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 14:57:46 -0700 (PDT) From: Message-Id: <200008052157.OAA64184@freefall.freebsd.org> To: maris@ciaccess.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/11200: AMD PCnet lnc0/lnc1 problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: AMD PCnet lnc0/lnc1 problem State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 14:57:24 PDT 2000 State-Changed-Why: Does this problem persist? http://www.freebsd.org/cgi/query-pr.cgi?pr=11200 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15: 0:39 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 752AC37BB5E; Sat, 5 Aug 2000 15:00:38 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA64478; Sat, 5 Aug 2000 15:00:37 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:00:37 -0700 (PDT) From: Message-Id: <200008052200.PAA64478@freefall.freebsd.org> To: tanimura@naklab.dnj.ynu.ac.jp, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/11207: sys/i386/isa/rp.c: fixed breaking and warnings on making kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sys/i386/isa/rp.c: fixed breaking and warnings on making kernel State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:00:12 PDT 2000 State-Changed-Why: Fixes to that efefct are in place. http://www.freebsd.org/cgi/query-pr.cgi?pr=11207 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15: 1:28 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8386937BB31; Sat, 5 Aug 2000 15:01:27 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA64598; Sat, 5 Aug 2000 15:01:26 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:01:26 -0700 (PDT) From: Message-Id: <200008052201.PAA64598@freefall.freebsd.org> To: xdice@mindspring.net, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/11291: anic: ffs_alloccg: map corrupted Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: anic: ffs_alloccg: map corrupted State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:01:10 PDT 2000 State-Changed-Why: Does this problem persist? http://www.freebsd.org/cgi/query-pr.cgi?pr=11291 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15: 2:40 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 62BA737BB31; Sat, 5 Aug 2000 15:02:39 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA64710; Sat, 5 Aug 2000 15:02:38 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:02:38 -0700 (PDT) From: Message-Id: <200008052202.PAA64710@freefall.freebsd.org> To: nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: i386/11298: Enabling IDE DMA on Opti Viper-M crashes ENIIRE filesystem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Enabling IDE DMA on Opti Viper-M crashes ENIIRE filesystem Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: nbm Responsible-Changed-When: Sat Aug 5 15:02:08 PDT 2000 Responsible-Changed-Why: Soren responded to this earlier, and maintains this section, so he can decide what to do. http://www.freebsd.org/cgi/query-pr.cgi?pr=11298 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15: 4:29 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4247D37BB0E; Sat, 5 Aug 2000 15:04:28 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA64890; Sat, 5 Aug 2000 15:04:27 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:04:27 -0700 (PDT) From: Message-Id: <200008052204.PAA64890@freefall.freebsd.org> To: jiufa@yahoo.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/11349: Error Mounting /dev/wd0s1 on dist during installation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Error Mounting /dev/wd0s1 on dist during installation State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:03:33 PDT 2000 State-Changed-Why: Can you recreate this problem with later releases? http://www.freebsd.org/cgi/query-pr.cgi?pr=11349 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15: 6:21 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FEEC37BB36; Sat, 5 Aug 2000 15:06:18 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA66375; Sat, 5 Aug 2000 15:06:17 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:06:17 -0700 (PDT) From: Message-Id: <200008052206.PAA66375@freefall.freebsd.org> To: maris@ciaccess.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/11200: AMD PCnet lnc0/lnc1 problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: AMD PCnet lnc0/lnc1 problem State-Changed-From-To: feedback->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:05:56 PDT 2000 State-Changed-Why: Feedback not possible - mail bounces. http://www.freebsd.org/cgi/query-pr.cgi?pr=11200 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15: 7:29 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 53ACD37BB59; Sat, 5 Aug 2000 15:07:28 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA66594; Sat, 5 Aug 2000 15:07:28 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:07:28 -0700 (PDT) From: Message-Id: <200008052207.PAA66594@freefall.freebsd.org> To: jiufa@yahoo.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/11349: Error Mounting /dev/wd0s1 on dist during installation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Error Mounting /dev/wd0s1 on dist during installation State-Changed-From-To: feedback->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:07:12 PDT 2000 State-Changed-Why: Feedback not possible - mail bounces. http://www.freebsd.org/cgi/query-pr.cgi?pr=11349 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:12:48 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 59AC037BB5E; Sat, 5 Aug 2000 15:12:46 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA66961; Sat, 5 Aug 2000 15:12:46 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:12:46 -0700 (PDT) From: Message-Id: <200008052212.PAA66961@freefall.freebsd.org> To: sderdau@ne.mediaone.net, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/11674: can't do make imake build or anything since I did /usr/src make upgrade Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: can't do make imake build or anything since I did /usr/src make upgrade State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:12:04 PDT 2000 State-Changed-Why: Looks more like an application error or overwritten or corrupt bsd.*.mk. http://www.freebsd.org/cgi/query-pr.cgi?pr=11674 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:13:53 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C1A2437BB36; Sat, 5 Aug 2000 15:13:51 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA67084; Sat, 5 Aug 2000 15:13:51 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:13:51 -0700 (PDT) From: Message-Id: <200008052213.PAA67084@freefall.freebsd.org> To: ocrow@bmrc.berkeley.edu, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/11720: FreeBSD 2.2.8 can't load fixit disk Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FreeBSD 2.2.8 can't load fixit disk State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:13:23 PDT 2000 State-Changed-Why: Ther'll be no more 2.2.x releases, and the PR states that 3.x releases work. http://www.freebsd.org/cgi/query-pr.cgi?pr=11720 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:20:24 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C050037BB36; Sat, 5 Aug 2000 15:20:23 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA67664; Sat, 5 Aug 2000 15:20:23 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:20:23 -0700 (PDT) From: Message-Id: <200008052220.PAA67664@freefall.freebsd.org> To: delaroca@ucla.edu, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/11921: /usr/X11R6/lib/aout libraries screwed up Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /usr/X11R6/lib/aout libraries screwed up State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:20:02 PDT 2000 State-Changed-Why: aout library handling has improved since. http://www.freebsd.org/cgi/query-pr.cgi?pr=11921 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:22:51 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C9AC37BB36; Sat, 5 Aug 2000 15:22:50 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA67971; Sat, 5 Aug 2000 15:22:50 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:22:50 -0700 (PDT) From: Message-Id: <200008052222.PAA67971@freefall.freebsd.org> To: niallm@maths.tcd.ie, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/11991: fdisk does not assign slices to unused partitions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fdisk does not assign slices to unused partitions State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:22:14 PDT 2000 State-Changed-Why: I can't follow your problem - can you restate it a bit more verbosely, and if possible, tell me if this problem still occurs for you? http://www.freebsd.org/cgi/query-pr.cgi?pr=11991 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:26:17 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2598937BBB2; Sat, 5 Aug 2000 15:26:15 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA68221; Sat, 5 Aug 2000 15:26:14 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:26:14 -0700 (PDT) From: Message-Id: <200008052226.PAA68221@freefall.freebsd.org> To: jlando@home.net, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/12529: Linksys ether16 NE2000 compat. won't configure under 2.2.8R (device timeout), works OK under 2.1.6R Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Linksys ether16 NE2000 compat. won't configure under 2.2.8R (device timeout), works OK under 2.1.6R State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:25:32 PDT 2000 State-Changed-Why: Does this now work in recent releases like 3.5 or 4.1? http://www.freebsd.org/cgi/query-pr.cgi?pr=12529 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:29: 1 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B88C37B689; Sat, 5 Aug 2000 15:29:00 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA68463; Sat, 5 Aug 2000 15:29:00 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:29:00 -0700 (PDT) From: Message-Id: <200008052229.PAA68463@freefall.freebsd.org> To: greg@infopreneur.net, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/13058: Installation hangs after commit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Installation hangs after commit State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:28:15 PDT 2000 State-Changed-Why: Has this problem disappeared since? Could it be an out-of-memory problem? http://www.freebsd.org/cgi/query-pr.cgi?pr=13058 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:30:59 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 48AA437B689; Sat, 5 Aug 2000 15:30:58 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA68688; Sat, 5 Aug 2000 15:30:57 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:30:57 -0700 (PDT) From: Message-Id: <200008052230.PAA68688@freefall.freebsd.org> To: george+freebsd@m5p.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/13171: "config" not quite right for kernel not named "kernel" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "config" not quite right for kernel not named "kernel" State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:30:19 PDT 2000 State-Changed-Why: 4.0 (at least) and above use a new way to give kernel names, which works for the tests you give. http://www.freebsd.org/cgi/query-pr.cgi?pr=13171 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:31:58 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5927137BB36; Sat, 5 Aug 2000 15:31:56 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA68816; Sat, 5 Aug 2000 15:31:56 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:31:56 -0700 (PDT) From: Message-Id: <200008052231.PAA68816@freefall.freebsd.org> To: PhilmoreW@worldnet.att.net, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/13452: changing to root device wd0s1a \n error 22: panic: cannot mount root (2) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: changing to root device wd0s1a \n error 22: panic: cannot mount root (2) State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:31:32 PDT 2000 State-Changed-Why: Did Sheldon's advice work? http://www.freebsd.org/cgi/query-pr.cgi?pr=13452 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:34: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3851D37BB36; Sat, 5 Aug 2000 15:34:08 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA69004; Sat, 5 Aug 2000 15:34:07 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:34:07 -0700 (PDT) From: Message-Id: <200008052234.PAA69004@freefall.freebsd.org> To: jbrown3@cfl.rr.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/13581: after installation, i get a white screen and lockup. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: after installation, i get a white screen and lockup. State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:33:40 PDT 2000 State-Changed-Why: Don't suppose you can check if you get the same problem with later releases? http://www.freebsd.org/cgi/query-pr.cgi?pr=13581 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:35:29 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 875FC37BB36; Sat, 5 Aug 2000 15:35:27 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA69149; Sat, 5 Aug 2000 15:35:27 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:35:27 -0700 (PDT) From: Message-Id: <200008052235.PAA69149@freefall.freebsd.org> To: rch@writeme.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/13655: sysmouse, signal 10 and XF86_S3 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysmouse, signal 10 and XF86_S3 State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:34:59 PDT 2000 State-Changed-Why: Have you had any luck with this since you reported it? http://www.freebsd.org/cgi/query-pr.cgi?pr=13655 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:39: 2 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D33B37BB36; Sat, 5 Aug 2000 15:39:01 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA69402; Sat, 5 Aug 2000 15:39:01 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:39:01 -0700 (PDT) From: Message-Id: <200008052239.PAA69402@freefall.freebsd.org> To: j-lien@lazy.joss.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/13765: memory problem: compilation of emacs dies during dumping Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: memory problem: compilation of emacs dies during dumping State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:38:01 PDT 2000 State-Changed-Why: Does this problem persist in later versions? (particularly 4.0's improved memory management) http://www.freebsd.org/cgi/query-pr.cgi?pr=13765 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:42: 5 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F7FB37BB76; Sat, 5 Aug 2000 15:42:04 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA69647; Sat, 5 Aug 2000 15:42:03 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:42:03 -0700 (PDT) From: Message-Id: <200008052242.PAA69647@freefall.freebsd.org> To: pstern@ptialaska.net, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/13811: ide cdrom stops recognizing audio cdroms Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ide cdrom stops recognizing audio cdroms State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:41:31 PDT 2000 State-Changed-Why: Has the new ATAPI CDROM code in 3.3 and 4.0 onwards made a difference? http://www.freebsd.org/cgi/query-pr.cgi?pr=13811 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:43:26 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 609F937BB36; Sat, 5 Aug 2000 15:43:25 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA69770; Sat, 5 Aug 2000 15:43:24 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:43:24 -0700 (PDT) From: Message-Id: <200008052243.PAA69770@freefall.freebsd.org> To: white@extra.dp.ua, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/13817: system reboot Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: system reboot State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:42:41 PDT 2000 State-Changed-Why: I'm not sure exactly when, but this stopped causing reboots at inopportune times when your system didn't support suspend. http://www.freebsd.org/cgi/query-pr.cgi?pr=13817 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:44:45 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 214B137BB95; Sat, 5 Aug 2000 15:44:44 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA69890; Sat, 5 Aug 2000 15:44:44 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:44:44 -0700 (PDT) From: Message-Id: <200008052244.PAA69890@freefall.freebsd.org> To: pawel@paco.umcs.lublin.pl, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/13857: Problem with switching between processes when using SMP kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Problem with switching between processes when using SMP kernel State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:44:19 PDT 2000 State-Changed-Why: Any improvements in later releases for this problem? http://www.freebsd.org/cgi/query-pr.cgi?pr=13857 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:54:57 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A41237BB96; Sat, 5 Aug 2000 15:54:56 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA70769; Sat, 5 Aug 2000 15:54:56 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:54:56 -0700 (PDT) From: Message-Id: <200008052254.PAA70769@freefall.freebsd.org> To: nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: i386/13936: No clear indictaion of how much space to allocate to FreeBSD partition. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: No clear indictaion of how much space to allocate to FreeBSD partition. Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: nbm Responsible-Changed-When: Sat Aug 5 15:54:27 PDT 2000 Responsible-Changed-Why: Murray should be able to handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=13936 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 15:58:20 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DFB9337BBA9; Sat, 5 Aug 2000 15:58:15 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA71057; Sat, 5 Aug 2000 15:58:10 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 15:58:10 -0700 (PDT) From: Message-Id: <200008052258.PAA71057@freefall.freebsd.org> To: howard@ee.utah.edu, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/14027: "disklabel -r -w" on new disk reports "No space left on device" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "disklabel -r -w" on new disk reports "No space left on device" State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:57:22 PDT 2000 State-Changed-Why: Did the drives probe as da8 and da9? http://www.freebsd.org/cgi/query-pr.cgi?pr=14027 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16: 0: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 91DD937B6A4; Sat, 5 Aug 2000 16:00:08 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA71230; Sat, 5 Aug 2000 16:00:08 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:00:08 -0700 (PDT) From: Message-Id: <200008052300.QAA71230@freefall.freebsd.org> To: rgyip@students.wisc.edu, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/14071: FreeBSD 3.3 Installation CD does not boot. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FreeBSD 3.3 Installation CD does not boot. State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 15:59:48 PDT 2000 State-Changed-Why: This was a once-off problem which was rectified. http://www.freebsd.org/cgi/query-pr.cgi?pr=14071 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16: 1:43 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2911437B74E; Sat, 5 Aug 2000 16:01:42 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA71445; Sat, 5 Aug 2000 16:01:41 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:01:41 -0700 (PDT) From: Message-Id: <200008052301.QAA71445@freefall.freebsd.org> To: gone@marnet.mk, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/14324: wst OR atapi drivers won't work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: wst OR atapi drivers won't work State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:01:27 PDT 2000 State-Changed-Why: Any luck with later releases? http://www.freebsd.org/cgi/query-pr.cgi?pr=14324 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16: 5:29 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D4FD237B795; Sat, 5 Aug 2000 16:05:27 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA73132; Sat, 5 Aug 2000 16:05:27 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:05:27 -0700 (PDT) From: Message-Id: <200008052305.QAA73132@freefall.freebsd.org> To: kjwolf@seismic.de, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/14373: Error while booting from floppy disk Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Error while booting from floppy disk State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:05:07 PDT 2000 State-Changed-Why: Looks like it was a bad image - either the wrong one, or a corrupted one. http://www.freebsd.org/cgi/query-pr.cgi?pr=14373 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16: 7: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D95C37B796; Sat, 5 Aug 2000 16:07:03 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA73475; Sat, 5 Aug 2000 16:07:02 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:07:02 -0700 (PDT) From: Message-Id: <200008052307.QAA73475@freefall.freebsd.org> To: fargher@aebc.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/14492: FreeBSD won't install/work with an Asus SC875 SCSI card Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FreeBSD won't install/work with an Asus SC875 SCSI card State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:06:38 PDT 2000 State-Changed-Why: Could you try again with the improved support in 4.0 or 4.1? http://www.freebsd.org/cgi/query-pr.cgi?pr=14492 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16: 9:31 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 05A9137B796; Sat, 5 Aug 2000 16:09:30 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA73732; Sat, 5 Aug 2000 16:09:29 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:09:29 -0700 (PDT) From: Message-Id: <200008052309.QAA73732@freefall.freebsd.org> To: howard@ee.utah.edu, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/14027: "disklabel -r -w" on new disk reports "No space left on device" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "disklabel -r -w" on new disk reports "No space left on device" State-Changed-From-To: feedback->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:09:05 PDT 2000 State-Changed-Why: Feedback not possible - mail bounces. http://www.freebsd.org/cgi/query-pr.cgi?pr=14027 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16:14:29 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AD14737B795; Sat, 5 Aug 2000 16:14:27 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA74235; Sat, 5 Aug 2000 16:14:27 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:14:27 -0700 (PDT) From: Message-Id: <200008052314.QAA74235@freefall.freebsd.org> To: jay.krell@cornell.edu, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/14799: Promise Ultra33 doesn't work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Promise Ultra33 doesn't work State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:14:00 PDT 2000 State-Changed-Why: These cards work in 4.0 and above. http://www.freebsd.org/cgi/query-pr.cgi?pr=14799 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16:16:21 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F89237B796; Sat, 5 Aug 2000 16:16:18 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA74490; Sat, 5 Aug 2000 16:16:18 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:16:18 -0700 (PDT) From: Message-Id: <200008052316.QAA74490@freefall.freebsd.org> To: trost@cloud.rain.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/14806: if_tun.ko conflicts with built-in tunnel driver Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: if_tun.ko conflicts with built-in tunnel driver State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:15:38 PDT 2000 State-Changed-Why: "Don't do that". This also doesn't fail for me. http://www.freebsd.org/cgi/query-pr.cgi?pr=14806 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16:17:25 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DAC5337B93A; Sat, 5 Aug 2000 16:17:23 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA74610; Sat, 5 Aug 2000 16:17:23 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:17:23 -0700 (PDT) From: Message-Id: <200008052317.QAA74610@freefall.freebsd.org> To: sysadmin@wirefire.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/15125: Fatal trap 12: page fault while in kernel mode Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fatal trap 12: page fault while in kernel mode State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:17:06 PDT 2000 State-Changed-Why: No response to Paul Saab's advice. http://www.freebsd.org/cgi/query-pr.cgi?pr=15125 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16:19:24 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF0A437B961; Sat, 5 Aug 2000 16:19:22 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA74830; Sat, 5 Aug 2000 16:19:22 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:19:22 -0700 (PDT) From: Message-Id: <200008052319.QAA74830@freefall.freebsd.org> To: deddingf@home.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/15620: Trap 12 in kernel mode soon after files start to copy on installation. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Trap 12 in kernel mode soon after files start to copy on installation. State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:19:00 PDT 2000 State-Changed-Why: Any luck with later releases (3.5, 4.0, 4.1)? http://www.freebsd.org/cgi/query-pr.cgi?pr=15620 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16:21:15 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B95E37B796; Sat, 5 Aug 2000 16:21:14 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA75037; Sat, 5 Aug 2000 16:21:13 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:21:13 -0700 (PDT) From: Message-Id: <200008052321.QAA75037@freefall.freebsd.org> To: rec@RCousins.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/15631: 3.4 won't install with IBM 37.5 gb disks Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 3.4 won't install with IBM 37.5 gb disks State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:20:19 PDT 2000 State-Changed-Why: I'm pretty sure this would work better in 4.0 or 4.1. Are you able to provide me with clarification on whether it does in your case? http://www.freebsd.org/cgi/query-pr.cgi?pr=15631 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16:25:15 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E7DE537B961; Sat, 5 Aug 2000 16:25:13 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA75407; Sat, 5 Aug 2000 16:25:13 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:25:13 -0700 (PDT) From: Message-Id: <200008052325.QAA75407@freefall.freebsd.org> To: hal@vailsys.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/16094: FreeBSD-3.4 #1 CD doesn't boot on ATAPI CD-ROM drive Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FreeBSD-3.4 #1 CD doesn't boot on ATAPI CD-ROM drive State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:24:36 PDT 2000 State-Changed-Why: This seems to be a once-off CD problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=16094 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16:29: 6 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DD3ED37BB86; Sat, 5 Aug 2000 16:29:04 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA75763; Sat, 5 Aug 2000 16:29:04 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:29:04 -0700 (PDT) From: Message-Id: <200008052329.QAA75763@freefall.freebsd.org> To: rhughes@lilikoi.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/16495: Period soft disk errors Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Period soft disk errors State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:28:26 PDT 2000 State-Changed-Why: Feedback timeout - Sheldon suggested it was bad hardware, and there was no reply. Wilko suggested it was closed, and there still was no reply. http://www.freebsd.org/cgi/query-pr.cgi?pr=16495 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16:30:32 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EFEEE37BB86; Sat, 5 Aug 2000 16:30:30 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA75914; Sat, 5 Aug 2000 16:30:30 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:30:30 -0700 (PDT) From: Message-Id: <200008052330.QAA75914@freefall.freebsd.org> To: mark@tci.net.au, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/17198: 3.4 doesn't boot from CD on dell 3500 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 3.4 doesn't boot from CD on dell 3500 State-Changed-From-To: open->feedback State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:30:14 PDT 2000 State-Changed-Why: Do later release CDs boot on that drive? http://www.freebsd.org/cgi/query-pr.cgi?pr=17198 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16:32:23 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 221DF37BB73; Sat, 5 Aug 2000 16:32:22 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA76074; Sat, 5 Aug 2000 16:32:18 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:32:18 -0700 (PDT) From: Message-Id: <200008052332.QAA76074@freefall.freebsd.org> To: waneyvin@ms28.hinet.net, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/17266: cannot install 3.2 on L440GX+ Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: cannot install 3.2 on L440GX+ State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:31:09 PDT 2000 State-Changed-Why: Contentless submission on an old release. The originator should submit a new PR if this continues with later releases. (but successes with similar hardware don't seem to indicate that's likely) http://www.freebsd.org/cgi/query-pr.cgi?pr=17266 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16:33:51 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D5A9837BB95; Sat, 5 Aug 2000 16:33:49 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA76244; Sat, 5 Aug 2000 16:33:49 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:33:49 -0700 (PDT) From: Message-Id: <200008052333.QAA76244@freefall.freebsd.org> To: jawad_aslam@FreeBSD.org, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/17299: I can't find uucleanup command in freeBSD 3.0, please tell me Equalant Command ( SCO uucleanup) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: I can't find uucleanup command in freeBSD 3.0, please tell me Equalant Command ( SCO uucleanup) State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:32:55 PDT 2000 State-Changed-Why: fake email address means no feedback possible, but a useable solution is in the PR audit-trail. http://www.freebsd.org/cgi/query-pr.cgi?pr=17299 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16:50: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BD4837BBAE for ; Sat, 5 Aug 2000 16:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA77353; Sat, 5 Aug 2000 16:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 5 Aug 2000 16:50:02 -0700 (PDT) Message-Id: <200008052350.QAA77353@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Jeremy Mika" Subject: Re: i386/18955: make buildworld chokes on gperf Reply-To: "Jeremy Mika" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/18955; it has been noted by GNATS. From: "Jeremy Mika" To: freebsd-gnats-submit@FreeBSD.org, uurtamo@azstarnet.com Cc: Subject: Re: i386/18955: make buildworld chokes on gperf Date: Sat, 05 Aug 2000 16:43:19 PDT I have been having the same problem as of today, trying to build on a box with "FreeBSD 3.1-RELEASE #3: Thu Apr 27 16:09:26 PDT 2000". >ls -l /usr/bin/c++ -r-xr-xr-x 3 root wheel 4720 Feb 15 1999 /usr/bin/c++ > ls -l /desi1/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc -rw-r--r-- 1 root wheel 2978 Mar 24 23:44 /desi1/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc c++ -I/usr/obj/desi1/usr/src/i386/usr/include/g++ -O -pipe -I/usr/obj/desi1/usr/src/i386/usr/include -I/desi1/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/lib -I/desi1/usr/src/gnu/usr.bin/gperf -c /desi1/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc /desi1/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc:80: warning: `catch', `throw', and `try' are all C++ reserved words /desi1/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc: In function `void operator delete(void *)': /desi1/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc:82: declaration of `operator delete(void *)' throws different exceptions... :82: ...from previous declaration here *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. ________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 16:56: 4 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4556B37BBA8; Sat, 5 Aug 2000 16:56:03 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA77691; Sat, 5 Aug 2000 16:56:02 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 16:56:02 -0700 (PDT) From: Message-Id: <200008052356.QAA77691@freefall.freebsd.org> To: rhh@ct.picker.com, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/5627: Tertiary/Quaternary IDE Ctlrs: A few kernel mods needed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Tertiary/Quaternary IDE Ctlrs: A few kernel mods needed State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 16:55:28 PDT 2000 State-Changed-Why: The new ATA code handles things differently. It also automatically picks up PCI controllers. http://www.freebsd.org/cgi/query-pr.cgi?pr=5627 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 17: 0:21 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B67E37BBD5; Sat, 5 Aug 2000 17:00:20 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA77972; Sat, 5 Aug 2000 17:00:20 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 5 Aug 2000 17:00:20 -0700 (PDT) From: Message-Id: <200008060000.RAA77972@freefall.freebsd.org> To: hans@artcom.de, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/6686: [STABLE] -stable does not support large IDE drives Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [STABLE] -stable does not support large IDE drives State-Changed-From-To: suspended->closed State-Changed-By: nbm State-Changed-When: Sat Aug 5 17:00:01 PDT 2000 State-Changed-Why: Big drive support added in 2.2.8. http://www.freebsd.org/cgi/query-pr.cgi?pr=6686 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Aug 5 18: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 23C9D37BBB5 for ; Sat, 5 Aug 2000 18:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA82860; Sat, 5 Aug 2000 18:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from c1030098-a.wtrlo1.ia.home.com (c1030098-a.wtrlo1.ia.home.com [24.14.126.45]) by hub.freebsd.org (Postfix) with ESMTP id 5826837BBB5 for ; Sat, 5 Aug 2000 17:50:04 -0700 (PDT) (envelope-from mdharnois@home.com) Received: (from mdharnois@localhost) by c1030098-a.wtrlo1.ia.home.com (8.9.3/8.9.3) id TAA00947; Sat, 5 Aug 2000 19:50:03 -0500 (CDT) (envelope-from mdharnois) Message-Id: <200008060050.TAA00947@c1030098-a.wtrlo1.ia.home.com> Date: Sat, 5 Aug 2000 19:50:03 -0500 (CDT) From: mdharnois@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20437: IDE on Intel 815E looks like Intel ICH (yay!) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20437 >Category: kern >Synopsis: IDE on Intel 815E looks like Intel ICH (yay!) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Aug 05 18:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Michael Harnois >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: ASUS CUSL2 with Intel 815E (Solana), Maxtor 51536U3 >Description: It appears that the IDE hardware of the Intel 815E, the ICH2, will work with the same code presently in place for the Intel ICH (as far as UDMA66, at least; obviously additional code will be required for the UDMA100 which the chipset is capable of. I ascertained this amazing fact by replacing all instances of the ID for the ICH (0x24118086) with the IDE for the ICH2 (0x244b8086) with these results: ata0-master: success setting up UDMA4 mode on ICH chip ad0: ATA-5 disk at ata0 as master ad0: 14655MB (30015216 sectors), 29777 cyls, 16 heads, 63 S/T, 512 B/S ad0: 16 secs/int, 1 depth queue, UDMA66 ad0: piomode=4 dmamode=2 udmamode=4 cblid=1 Creating DISK ad0 ata1-master: success setting up UDMA2 mode on ICH chip ad2: ATA-4 disk at ata1 as master ad2: 12243MB (25075008 sectors), 24876 cyls, 16 heads, 63 S/T, 512 B/S ad2: 16 secs/int, 1 depth queue, UDMA33 ad2: piomode=4 dmamode=2 udmamode=2 cblid=0 Creating DISK ad2 ata1-slave: piomode=4 dmamode=2 udmamode=-1 dmaflag=1 ata1-slave: success setting up WDMA2 mode on ICH chip >How-To-Repeat: >Fix: --- ata-dma.c.orig Sat Aug 5 19:43:23 2000 +++ ata-dma.c Sat Aug 5 19:46:40 2000 @@ -101,6 +101,7 @@ switch (scp->chiptype) { + case 0x244b8086: case 0x24118086: /* Intel ICH */ if (udmamode >= 4) { int32_t mask48, new48; @@ -139,6 +140,7 @@ if (bootverbose) ata_printf(scp, device, "%s setting up UDMA2 mode on %s chip\n", (error) ? "failed" : "success", + (scp->chiptype == 0x244b8086) ? "ICH2" : (scp->chiptype == 0x24118086) ? "ICH" : (scp->chiptype == 0x24218086) ? "ICH0" :"PIIX4"); if (!error) { @@ -179,6 +181,7 @@ ata_printf(scp, device, "%s setting up WDMA2 mode on %s chip\n", (error) ? "failed" : "success", (scp->chiptype == 0x70108086) ? "PIIX3" : + (scp->chiptype == 0x244b8086) ? "ICH2" : (scp->chiptype == 0x24118086) ? "ICH" : (scp->chiptype == 0x24218086) ? "ICH0" :"PIIX4"); if (!error) { --- ata-all.c.orig Sat Aug 5 19:43:07 2000 +++ ata-all.c Sat Aug 5 19:44:22 2000 @@ -254,6 +254,9 @@ case 0x71998086: return "Intel PIIX4 ATA33 controller"; + case 0x244b8086: + return "Intel ICH2 ATA100 controller"; + case 0x24118086: return "Intel ICH ATA66 controller"; >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 Sat Aug 5 20: 0: 7 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 74B7637BBF0 for ; Sat, 5 Aug 2000 20:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA92045; Sat, 5 Aug 2000 20:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.zuhause.org (www.zuhause.org [205.215.217.178]) by hub.freebsd.org (Postfix) with ESMTP id 537F437B56C for ; Sat, 5 Aug 2000 19:54:24 -0700 (PDT) (envelope-from bruce@zuhause.org) Received: by mail.zuhause.org (Postfix, from userid 1001) id 3E9D77C6E; Sat, 5 Aug 2000 21:54:22 -0500 (CDT) Message-Id: <20000806025422.3E9D77C6E@mail.zuhause.org> Date: Sat, 5 Aug 2000 21:54:22 -0500 (CDT) From: bruce@zuhause.org Reply-To: bruce@zuhause.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/20438: NetGear FA310TX incompatible with latest if_dc change Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20438 >Category: kern >Synopsis: FA310TX is non-functional with recurring TX underruns >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Aug 05 20:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Bruce Albrecht >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: Dual Celeron system with cvsup from today (2000/08/05 around 1800 GMT) using RELENG_4. NIC is NetGear FA310TX, output from pciconf -l: chip0@pci0:0:0: class=0x060000 card=0x00000000 chip=0x71908086 rev=0x03 hdr=0x00 pcib1@pci0:1:0: class=0x060400 card=0x00000000 chip=0x71918086 rev=0x03 hdr=0x01 isab0@pci0:7:0: class=0x060100 card=0x00000000 chip=0x71108086 rev=0x02 hdr=0x00 atapci0@pci0:7:1: class=0x010180 card=0x00000000 chip=0x71118086 rev=0x01 hdr=0x00 uhci0@pci0:7:2: class=0x0c0300 card=0x00000000 chip=0x71128086 rev=0x01 hdr=0x00 chip1@pci0:7:3: class=0x068000 card=0x00000000 chip=0x71138086 rev=0x02 hdr=0x00 sym0@pci0:8:0: class=0x010000 card=0x39071de1 chip=0x000c1000 rev=0x01 hdr=0x00 pcm0@pci0:9:0: class=0x040100 card=0x4c4c4942 chip=0x50001274 rev=0x01 hdr=0x00 dc0@pci0:10:0: class=0x020000 card=0xf00311ad chip=0x000211ad rev=0x20 hdr=0x00 ahc0@pci0:12:0: class=0x010000 card=0x78959004 chip=0x78959004 rev=0x04 hdr=0x00 ahc1@pci0:12:1: class=0x010000 card=0x78959004 chip=0x78959004 rev=0x04 hdr=0x00 none0@pci1:0:0: class=0x030000 card=0xff03102b chip=0x0521102b rev=0x01 hdr=0x00 dmesg | grep dc0: dc0: <82c169 PNIC 10/100BaseTX> port 0xdc00-0xdcff mem 0xec000000-0xec0000ff irq 9 at device 10.0 on pci0 dc0: Ethernet address: 00:a0:cc:25:ea:2a miibus0: on dc0 >Description: I upgraded from 4.0-stable circa 2000/06/12 with functioning NIC. Upon reboot after installing new kernel, booting into single user mode, installing world, and running mergemaster, dc0 starting reporting "dc0: TX underrun -- resetting" and "dc0: watchdog timeout" messages, and no traffic was getting through the NIC. I reverted sys/pci/if_dc.c and sys/pci/if_dcreg.h to the previous versions, (1.9.2.5 and 1.4.2.3 respectively), rebuilt the kernel, and rebooted. With the previous versions of these files, the NIC functions normally. >How-To-Repeat: >Fix: Temporary fix is to back out sys/pci/if_dc.c version 1.9.2.6 and sys/pci/if_dcreg.h 1.4.2.4. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message