From owner-freebsd-bugs Sun Feb 17 0:50: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EC4DF37B402 for ; Sun, 17 Feb 2002 00:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1H8o2765480; Sun, 17 Feb 2002 00:50:02 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Feb 2002 00:50:02 -0800 (PST) Message-Id: <200202170850.g1H8o2765480@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: misc/35022: network broadcast addresses may be used for communications with the system just as well as if it was her own. Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/35022; it has been noted by GNATS. From: "Crist J. Clark" To: Igor M Podlesny Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: misc/35022: network broadcast addresses may be used for communications with the system just as well as if it was her own. Date: Sun, 17 Feb 2002 00:43:14 -0800 I don't think 'me' not matching the broadcast address is in itself a problem. The example of, 'deny ip from any to me,' demonstrates why it is bad to explicitly deny. Use an explicit pass and default to deny. I also think 'me' works as advertised, Specifying me makes the rule match any IP address configured on an interface in the system. If you want to block a broadcast address in addition to the ones assigned to the interface, do so. But there was mention of another behavior that is a bug. You _can_ establish a TCP connection to a FreeBSD machine with the destination being the broadcast address. This is oh so Very Very Bad. And it breaks the Standard (the Standard being everyone's favorite, RFC1122), 4.2.3.10 Remote Address Validation ... A TCP implementation MUST silently discard an incoming SYN segment that is addressed to a broadcast or multicast address. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 17 1: 0: 6 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EEB0937B405 for ; Sun, 17 Feb 2002 01:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1H902w66596; Sun, 17 Feb 2002 01:00:02 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Feb 2002 01:00:02 -0800 (PST) Message-Id: <200202170900.g1H902w66596@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Igor M Podlesny Subject: Re[2]: misc/35022: network broadcast addresses may be used for communications with the system just as well as if it was her own. Reply-To: Igor M Podlesny Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/35022; it has been noted by GNATS. From: Igor M Podlesny To: "Crist J. Clark" Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re[2]: misc/35022: network broadcast addresses may be used for communications with the system just as well as if it was her own. Date: Sun, 17 Feb 2002 15:51:23 +0700 > I don't think 'me' not matching the broadcast address is in itself a > problem. I said the problem is the ip_input.c considers packets as "ours" more widely than IPFW's 'me'. > The example of, 'deny ip from any to me,' demonstrates why it > is bad to explicitly deny. Use an explicit pass and default to deny. alas, ipfw's syntax doesn't allow implement this idea cleary and flexible. whereas, BSDi's ipfw do. also as Linux 2.4 netfilter. I wrote about it before. > I also think 'me' works as advertised, yeah. it does. > Specifying me makes the rule match any IP address configured on > an interface in the system. > If you want to block a broadcast address in addition to the ones > assigned to the interface, do so. yeah, of course. I think about deny ip from any to broadcast and, may be deny ip from any to network But my patch is just a quick hack and the above requires much more skills, knowledge and time in order to implement it. So I just can't afford it for now. But certainly I'm thinking about it. > But there was mention of another behavior that is a bug. You _can_ > establish a TCP connection to a FreeBSD machine with the destination > being the broadcast address. This is oh so Very Very Bad. And it > breaks the Standard (the Standard being everyone's favorite, RFC1122), > 4.2.3.10 Remote Address Validation > ... > A TCP implementation MUST silently discard an incoming SYN > segment that is addressed to a broadcast or multicast > address. yep. BTW it declares TCP only? -- Igor M Podlesny a.k.a. Poige phone (work): +7 3912 362536 http://www.morning.ru/~poige To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 17 1:20: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E236737B417 for ; Sun, 17 Feb 2002 01:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1H9K1o72227; Sun, 17 Feb 2002 01:20:01 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Feb 2002 01:20:01 -0800 (PST) Message-Id: <200202170920.g1H9K1o72227@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: misc/35022: network broadcast addresses may be used for communications with the system just as well as if it was her own. Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/35022; it has been noted by GNATS. From: "Crist J. Clark" To: Igor M Podlesny Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: misc/35022: network broadcast addresses may be used for communications with the system just as well as if it was her own. Date: Sun, 17 Feb 2002 01:14:58 -0800 On Sun, Feb 17, 2002 at 03:51:23PM +0700, Igor M Podlesny wrote: [snip] > > But there was mention of another behavior that is a bug. You _can_ > > establish a TCP connection to a FreeBSD machine with the destination > > being the broadcast address. This is oh so Very Very Bad. And it > > breaks the Standard (the Standard being everyone's favorite, RFC1122), > > > 4.2.3.10 Remote Address Validation > > > ... > > > A TCP implementation MUST silently discard an incoming SYN > > segment that is addressed to a broadcast or multicast > > address. > > yep. > > BTW it declares TCP only? No, for IP datagrams in general, For most purposes, a datagram addressed to a broadcast or multicast destination is processed as if it had been addressed to one of the host's IP addresses; As for UDP, it says nothing specific about how to handle incoming datagrams with the broadcast address as the destination (it's up to the application). However, it does mention, UDP is used by applications that do not require the level of service of TCP or that wish to use communications services (e.g., multicast or broadcast delivery) not available from TCP. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 17 2:52: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7428537B416; Sun, 17 Feb 2002 02:52:08 -0800 (PST) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1HAhKn85185; Sun, 17 Feb 2002 02:43:20 -0800 (PST) (envelope-from dwmalone) Date: Sun, 17 Feb 2002 02:43:20 -0800 (PST) From: Message-Id: <200202171043.g1HAhKn85185@freefall.freebsd.org> To: mwm@mired.org, dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/21722: The mixer settings are lost on sysetm reboot.s Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: The mixer settings are lost on sysetm reboot.s State-Changed-From-To: open->closed State-Changed-By: dwmalone State-Changed-When: Sun Feb 17 02:41:54 PST 2002 State-Changed-Why: PR/35028 contains a port addressing this issue. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=21722 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 17 4: 0: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA31437B402 for ; Sun, 17 Feb 2002 04:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1HC03M95907; Sun, 17 Feb 2002 04:00:03 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Feb 2002 04:00:03 -0800 (PST) Message-Id: <200202171200.g1HC03M95907@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Hiten Pandya Subject: Re: i386/34576: cannot load freebsd Reply-To: Hiten Pandya Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/34576; it has been noted by GNATS. From: Hiten Pandya To: freebsd-gnats-submit@FreeBSD.org, admin@toztech.com Cc: Subject: Re: i386/34576: cannot load freebsd Date: Sun, 17 Feb 2002 11:49:04 +0000 Have you checked you BIOS/CMOS Settings. It would be also good, if you put PNP/OS in BIOS to a false value; as this was always causing a problem. I had this problem too, but it was solved by disabling this option (PNP/OS). Also, try poking around with you BIOS settings, as this will get your system to boot into FreeBSD. Most of the times, when the probe fails, that means it either something to do with you hardware, or with the clever BIOS! :) Regards, -- - Hiten Pandya - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 17 4: 0:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7830C37B405 for ; Sun, 17 Feb 2002 04:00:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1HC06695915; Sun, 17 Feb 2002 04:00:06 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Feb 2002 04:00:06 -0800 (PST) Message-Id: <200202171200.g1HC06695915@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Hiten Pandya Subject: Re: kern/27020: FreeBSD 4.3RC compiled with an SMP kernel fails to boot Reply-To: Hiten Pandya Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/27020; it has been noted by GNATS. From: Hiten Pandya To: freebsd-gnats-submit@FreeBSD.org, cfaber@unixgr.com Cc: Subject: Re: kern/27020: FreeBSD 4.3RC compiled with an SMP kernel fails to boot Date: Sun, 17 Feb 2002 11:53:33 +0000 Does this happen of newer releases? I have been using an SMP kernel for more than 2 years without any problems, but it might be related to your Compaq SmartArray 221 controller card. Try using a newer release, such as FreeBSD 4.4-RELEASE or 4.5-RELEASE. I didn't have any problems with 4.5-RELEASE on my test machine which has four proccessors on an Intel Server Board. Regards, -- - Hiten Pandya - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 17 4:10: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 41FBC37B405 for ; Sun, 17 Feb 2002 04:10:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1HCA6p07555; Sun, 17 Feb 2002 04:10:06 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Feb 2002 04:10:06 -0800 (PST) Message-Id: <200202171210.g1HCA6p07555@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Hiten Pandya Subject: Re: kern/26510: kernel panic while booting on Intel STL2 server board with 4GB RAM Reply-To: Hiten Pandya Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/26510; it has been noted by GNATS. From: Hiten Pandya To: freebsd-gnats-submit@FreeBSD.org, dhyoo@aratech.co.kr Cc: Subject: Re: kern/26510: kernel panic while booting on Intel STL2 server board with 4GB RAM Date: Sun, 17 Feb 2002 11:58:52 +0000 This PR can be closed. Regards, -- - Hiten Pandya - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 17 4:30:20 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6863C37B405 for ; Sun, 17 Feb 2002 04:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1HCU2X10161; Sun, 17 Feb 2002 04:30:02 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Feb 2002 04:30:02 -0800 (PST) Message-Id: <200202171230.g1HCU2X10161@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Hiten Pandya Subject: Re: kern/34228: Dual processor machine hangs at reboot Reply-To: Hiten Pandya Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/34228; it has been noted by GNATS. From: Hiten Pandya To: freebsd-gnats-submit@FreeBSD.org, freebsd@molemanarmy.com Cc: Subject: Re: kern/34228: Dual processor machine hangs at reboot Date: Sun, 17 Feb 2002 12:21:15 +0000 1) Have you tried changing the MP setting in the BIOS to 1.4, as this might help. Also, does this problem occur with older releases like 4.3? 2) Also try using newer cvsup'ed code, from the RELENG_4_5 branch, which might solve the problem; (just a troubleshooting tip, hehe) 3) Did you try using a custom kernel, with one of the CPU options provided, such as: options CPU_ENABLE_SSE (just an example) 4) Did you update the firmware of your BIOS, as this also might help. Try this URL: http://www.gigabyte.com.tw/support/via694t.htm Try poking around with the clever Gigabyte BIOS! :), and you should get boot (and re-booting) soon, hehe. -- - Hiten Pandya - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 17 9:10: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C330637B417 for ; Sun, 17 Feb 2002 09:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1HHA1F23097; Sun, 17 Feb 2002 09:10:01 -0800 (PST) (envelope-from gnats) Received: from gatekeeper.hwd.littlepipe.net (gatekeeper.hwd.littlepipe.net [166.88.43.3]) by hub.freebsd.org (Postfix) with ESMTP id 02E3137B405 for ; Sun, 17 Feb 2002 09:07:12 -0800 (PST) Received: (from matt@localhost) by gatekeeper.hwd.littlepipe.net (8.11.6/8.11.6) id g1HH75n18747; Sun, 17 Feb 2002 09:07:05 -0800 (PST) (envelope-from matt) Message-Id: <200202171707.g1HH75n18747@gatekeeper.hwd.littlepipe.net> Date: Sun, 17 Feb 2002 09:07:05 -0800 (PST) From: Matt Peterson Reply-To: Matt Peterson To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: conf/35057: pccard.conf entry for Proxim RangeLAN-DS Wireless Card Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35057 >Category: conf >Synopsis: pccard.conf entry for Proxim RangeLAN-DS Wireless Card >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Feb 17 09:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Matt Peterson >Release: FreeBSD 4.5-STABLE i386 >Organization: Bay Area Wireless Users Group >Environment: System: FreeBSD gatekeeper.hwd.littlepipe.net 4.5-STABLE FreeBSD 4.5-STABLE #0: Fri Feb 15 19:05:44 PST 2002 matt@kruder.peterson.org:/usr/src/sys/compile/KRUDER i386 >Description: Entry for pccard.conf to add support for Proxim RangeLAN-DS (Zcomax OEM - Prism2) wireless PC Card. Please add this entry to the pccard.conf datebase: >How-To-Repeat: >Fix: card "PROXIM" "RangeLAN-DS/LAN PC CARD" config auto "wi" ? insert /etc/pccard_ether $device start remove /etc/pccard_ether $device stop >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 Feb 17 10:22:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5401737B416; Sun, 17 Feb 2002 10:22:11 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1HIESC47776; Sun, 17 Feb 2002 10:14:28 -0800 (PST) (envelope-from cjc) Date: Sun, 17 Feb 2002 10:14:28 -0800 (PST) From: Message-Id: <200202171814.g1HIESC47776@freefall.freebsd.org> To: cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org Subject: Re: conf/35057: pccard.conf entry for Proxim RangeLAN-DS Wireless Card Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: pccard.conf entry for Proxim RangeLAN-DS Wireless Card Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: cjc Responsible-Changed-When: Sun Feb 17 10:12:54 PST 2002 Responsible-Changed-Why: New pccard.conf entry? imp's your man. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35057 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 17 11:20:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C940437B416 for ; Sun, 17 Feb 2002 11:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1HJK1H58851; Sun, 17 Feb 2002 11:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 82DC537B404 for ; Sun, 17 Feb 2002 11:19:37 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1HJJbP58799; Sun, 17 Feb 2002 11:19:37 -0800 (PST) (envelope-from nobody) Message-Id: <200202171919.g1HJJbP58799@freefall.freebsd.org> Date: Sun, 17 Feb 2002 11:19:37 -0800 (PST) From: Ryan Johnson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/35061: After printing to HP Deskjet 656c USB printer, computer hangs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35061 >Category: kern >Synopsis: After printing to HP Deskjet 656c USB printer, computer hangs >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 17 11:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Ryan Johnson >Release: 4.5-STABLE >Organization: >Environment: FreeBSD piccolo.kc.rr.com 4.5-STABLE FreeBSD 4.5-STABLE #0: Sat Feb 16 17:08:26 CST 2002 ryan@piccolo.kc.rr.com:/usr/obj/usr/src/sys/PICCOLO i386 >Description: After any file is printed to a HP Deskjet 656c printer (USB), the system hangs. I have enabled debugging for the ulpt driver, here is the output: ulptwrite ulpt_status: status=0x18 err=0 ulptwrite: transfer 1024 bytes ulptwrite ulpt_status: status=0x18 err=0 ulptwrite: transfer bytes ulpt_input: got some data >How-To-Repeat: Print any file to a HP Deskjet 656c printer. >Fix: unknown >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 17 12:42:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9770637B405; Sun, 17 Feb 2002 12:42:09 -0800 (PST) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1HKcx276557; Sun, 17 Feb 2002 12:38:59 -0800 (PST) (envelope-from mikeh) Date: Sun, 17 Feb 2002 12:38:59 -0800 (PST) From: Message-Id: <200202172038.g1HKcx276557@freefall.freebsd.org> To: pfeifer@dbai.tuwien.ac.at, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org, mikeh@FreeBSD.org Subject: Re: misc/18286: mailx, which is part of Unix 98, does not exist Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: mailx, which is part of Unix 98, does not exist State-Changed-From-To: closed->analyzed State-Changed-By: mikeh State-Changed-When: Sun Feb 17 12:36:45 PST 2002 State-Changed-Why: This will be fixed by MFCing -current changes. Responsible-Changed-From-To: freebsd-bugs->mikeh Responsible-Changed-By: mikeh Responsible-Changed-When: Sun Feb 17 12:36:45 PST 2002 Responsible-Changed-Why: My MFC reminder. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=18286 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 17 13:30:20 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B462B37B41C for ; Sun, 17 Feb 2002 13:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1HLU1g88018; Sun, 17 Feb 2002 13:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CBDDF37B400 for ; Sun, 17 Feb 2002 13:28:12 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1HLSCw87589; Sun, 17 Feb 2002 13:28:12 -0800 (PST) (envelope-from nobody) Message-Id: <200202172128.g1HLSCw87589@freefall.freebsd.org> Date: Sun, 17 Feb 2002 13:28:12 -0800 (PST) From: Denis Sadykov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/35064: ACPI not work with Epox 8KHA+ motherboard Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35064 >Category: kern >Synopsis: ACPI not work with Epox 8KHA+ motherboard >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 Feb 17 13:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Denis Sadykov >Release: 5-CURRENT >Organization: >Environment: FreeBSD lair.my.domain 5.0-CURRENT FreeBSD 5.0-CURRENT #8: Fri Feb 15 11:26:43 YEKT 2002 jabber@lair.my.domain:/usr/src/sys/i386/compile/TEST i386 >Description: ACPI report from dmesg Using $PIR table, 7 entries at 0xc00fde70 ACPI-0224: *** Warning: Invalid table signature found ACPI-0181: *** Error: AcpiLoadTables: Could not load RSDT: AE_BAD_SIGNATURE ACPI-0213: *** Error: AcpiLoadTables: Could not load tables: AE_BAD_SIGNATURE ACPI: table load failed: AE_BAD_SIGNATURE MB Epox 8KHA+ ACPI still works on 5-CURRENT dated end of dec 2001 I try to load old acpi.ko/old sources of acpi in kernel, but have above error message. After that I have dumped `raw' data of acpi code from new and old snapshots using patched version of acpidump. Dumps differ starting from 256 byte or so. I think this bug in kernel, not in ACPI. Please, let me know, if you could help me. >How-To-Repeat: Buy Epox 8KHA+ motherboard. Load ACPI mod or compile ACPI in kernel. >Fix: Using old snapshot of 5-CURRENT. >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 Feb 17 15:32:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A796937B402; Sun, 17 Feb 2002 15:32:09 -0800 (PST) Received: (from ashp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1HNMSb16404; Sun, 17 Feb 2002 15:22:28 -0800 (PST) (envelope-from ashp) Date: Sun, 17 Feb 2002 15:22:28 -0800 (PST) From: Message-Id: <200202172322.g1HNMSb16404@freefall.freebsd.org> To: gesivlcars@aol.com, ashp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/31728: Install hangs on: (debug screens last write) modules/(random file) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Install hangs on: (debug screens last write) modules/(random file) State-Changed-From-To: open->closed State-Changed-By: ashp State-Changed-When: Sun Feb 17 15:21:57 PST 2002 State-Changed-Why: I'm trusting Hiten on this one as he's researched the issue. We don't support devices that are removed at boottime! :) http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31728 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 17 23: 1:37 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 242FF37B6B5 for ; Sun, 17 Feb 2002 23:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1I702G18973; Sun, 17 Feb 2002 23:00:02 -0800 (PST) (envelope-from gnats) Received: from descent.robbins.dropbear.id.au (069.f.010.mel.iprimus.net.au [210.50.205.69]) by hub.freebsd.org (Postfix) with ESMTP id 2161E37B42C for ; Sun, 17 Feb 2002 22:50:06 -0800 (PST) Received: (from tim@localhost) by descent.robbins.dropbear.id.au (8.11.6/8.11.6) id g1G6mlE00475; Sat, 16 Feb 2002 17:48:47 +1100 (EST) (envelope-from tim) Message-Id: <200202160648.g1G6mlE00475@descent.robbins.dropbear.id.au> Date: Sat, 16 Feb 2002 17:48:47 +1100 (EST) From: Tim Robbins Reply-To: Tim Robbins To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/35070: math(3) references section "3m", etc. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35070 >Category: bin >Synopsis: math(3) references section "3m", etc. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 17 23:00:02 PST 2002 >Closed-Date: >Last-Modified: >Originator: Tim Robbins >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD descent.robbins.dropbear.id.au 4.5-STABLE FreeBSD 4.5-STABLE #4: Fri Feb 15 13:31:25 EST 2002 tim@descent.robbins.dropbear.id.au:/usr/obj/usr/src/sys/DESCENT i386 >Description: math(3) references section 3m, for example, sin.3m. The table doesn't line up properly. Most of the notes in the manual page is very much out of date. IEEE floating point arithmetic is far more widely implemented than VAX anything. For example: The codes in 4.3 BSD's libm for machines that conform to IEEE 754 are intended primarily for the National Semi. 32081 and WTL 1164/65. To use these codes with the Intel or Zilog chips, or with the Apple Macintosh or ELXSI 6400, ... >How-To-Repeat: Obvious. >Fix: The manual page could do with a rewrite (it's still using -man macro set). I am volunteering to do this, just ask. >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 Feb 18 0:30:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F67F37B400 for ; Mon, 18 Feb 2002 00:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1I8U4B42544; Mon, 18 Feb 2002 00:30:04 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Feb 2002 00:30:04 -0800 (PST) Message-Id: <200202180830.g1I8U4B42544@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: kern/34952: Mouse cursor invisible with USB mice and usbd Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/34952; it has been noted by GNATS. From: Peter Pentchev To: Jeremy Chadwick Cc: bug-followup@FreeBSD.org Subject: Re: kern/34952: Mouse cursor invisible with USB mice and usbd Date: Mon, 18 Feb 2002 10:23:33 +0200 On Fri, Feb 15, 2002 at 12:40:03AM -0800, Jeremy Chadwick wrote: > The following reply was made to PR kern/34952; it has been noted by GNATS. > > From: Jeremy Chadwick > To: Josef Karthauser > Cc: freebsd-gnats-submit@FreeBSD.org > Subject: Re: kern/34952: Mouse cursor invisible with USB mice and usbd > Date: Fri, 15 Feb 2002 00:33:41 -0800 > > On Fri, Feb 15, 2002 at 05:49:00AM +0000, Josef Karthauser wrote: > > On Thu, Feb 14, 2002 at 09:07:07PM -0800, Jeremy Chadwick wrote: > > > > > > 2. Modify the rc files to support something like vidcontrol_init="yes" and vidcontrol_flags="-m on" in rc.conf. > > > > > > > Can't you just add the following to /etc/rc.conf? > > > > allscreens_flags="-m on" > > Fairly odd solution (I would call it more of a "hack"), for two > reasons: > [snip] > 2. allscreens_flags is used in a very peculiar manner: > > if [ -n "${allscreens_flags}" ]; then > echo -n ' allscreens' > for ttyv in /dev/ttyv*; do > vidcontrol ${allscreens_flags} < ${ttyv} > ${ttyv} 2>&1 > done > fi > > In reference to my bug report, I'm curious how redirecting > stdin and stdout to the actual console ttys would affect > vidcontrol when using "-m on". Would this have any consequences? Yes, it would simply work :) Redirecting stdin and stdout is done for the benefit of the ioctl(2) interface that vidcontrol(8) uses, so it can actually modify the settings of the tty in question (in this loop, all virtual consoles). Since the '-m on' only notes that the cursor should be shown when needed, not always, IMHO it would be a good solution. It would do no harm - the mouse cursor is only drawn on mouse movement, and hidden on a keypress - so there would be no mouse cursor when the mouse is not attached. When the mouse is attached, the persistent 'mouse cursor on' state would make sure that the cursor is displayed. Again, this is just my opinion, YMMV. G'luck, Peter -- Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 I am jealous of the first word in this sentence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 1:30: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A278137B405 for ; Mon, 18 Feb 2002 01:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1I9U1b55568; Mon, 18 Feb 2002 01:30:01 -0800 (PST) (envelope-from gnats) Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.8.210.226]) by hub.freebsd.org (Postfix) with ESMTP id CD09A37B402 for ; Mon, 18 Feb 2002 01:22:56 -0800 (PST) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.11.6/8.11.6) id g1I9LQV02856; Mon, 18 Feb 2002 04:21:26 -0500 (EST) (envelope-from alane) Message-Id: <200202180921.g1I9LQV02856@wwweasel.geeksrus.net> Date: Mon, 18 Feb 2002 04:21:26 -0500 (EST) From: Alan Eldridge Reply-To: Alan Eldridge To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/35071: include/arpa/inet.h broken: must include Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35071 >Category: bin >Synopsis: include/arpa/inet.h broken: must include >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 18 01:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Alan Eldridge >Release: FreeBSD 4.5-STABLE i386 >Organization: Geeksrus.NET >Environment: System: FreeBSD wwweasel.geeksrus.net 4.5-STABLE FreeBSD 4.5-STABLE #0: Fri Feb 8 21:25:34 EST 2002 root@wwweasel.geeksrus.net:/usr/obj/usr/src/sys/WWWEASEL i386 >Description: According to Single Unix Spec Version 2: DESCRIPTION The header makes available the type in_port_t and the type in_addr_t as defined in the description of . The header makes available the in_addr structure, as defined in the description of . : : : Inclusion of the header may also make visible all symbols from and . We fail on the second sentence. The third sentence allows us to simply include rather than requiring that we play type-defining-macro games. Note that software that compiles on other Unices fails on FreeBSD for this reason. The wget package is about to become the newest casualty; it's CVS version will not compile without patching on FBSD, so their next release of 1.8.2 won't either. >How-To-Repeat: [alane ~]$ cat t.c #include [alane ~]$ cc -c t.c In file included from t.c:1: /usr/include/arpa/inet.h:89: warning: parameter has incomplete type /usr/include/arpa/inet.h:92: warning: parameter has incomplete type /usr/include/arpa/inet.h:96: warning: parameter has incomplete type [alane ~]$ >Fix: ---8<-snip---8<-snip---8<-snip---8<-snip---8<-snip---8<-snip---8<--- --- include/arpa/inet.h.orig Sat Apr 21 10:53:03 2001 +++ include/arpa/inet.h Mon Feb 18 04:10:23 2002 @@ -62,8 +62,7 @@ #include #include - -struct in_addr; +#include /* XXX all new diversions!! argh!! */ #define inet_addr __inet_addr ---8<-snip---8<-snip---8<-snip---8<-snip---8<-snip---8<-snip---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 Mon Feb 18 2:43:56 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from sparc1.amuser-net.ne.jp (sparc1.amuser-net.ne.jp [210.164.150.34]) by hub.freebsd.org (Postfix) with ESMTP id CE1E737B402; Mon, 18 Feb 2002 02:43:50 -0800 (PST) Received: from petroom.net ([61.195.94.69]) by sparc1.amuser-net.ne.jp (8.9.3/3.7Wpl2/DEKIRU1.00) with SMTP id SAA17014; Mon, 18 Feb 2002 18:45:47 +0900 Message-ID: <200202181838.358@magazine.petroom.net> Date: Mon, 18 Feb 2002 18:38:08 +0900 From: =?ISO-2022-JP?B?GyRCJS8laiE8JWBHcj1xGyhC?= To: product@acmemail.net Reply-To: Subject: =?ISO-2022-JP?B?GyRCISobKEIgGyRCOS05cBsoQiAbJEIhKhsoQiAbJEIheSF5GyhCICAbJEJIfj4vPXcheSQvJGobKEI=?= =?ISO-2022-JP?B?GyRCITwkYDRbISEheSF5GyhC?= MIME-Version: 1.0 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit X-Mailer: Gen Mail 0.9b Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org $B%0%i%S%"%"%$%I%k$d$/$j!<$`7O=w;R9b@82hA|!"(B $B%L!<%I;Q$N2hA|$J$I!"%L%1$k%5%$%H$rL\;X$7$F$^$9!#(B $B%j%"%k%?%$%`1GA|%3!<%J!<$bB??t$"$j"v(B $B!y(B 2.15$B!%(B16$BF|8BDj8x3+%5%$%H>R2p(B $B!y(B ---------------------------------------------------------- $B#A#V%"%$%I%k9-KvF`=o$A$c$s$C$FCN$C$F$^$9!)(B $BH`=w$r(B2$B7n(B15.6$BF|8BDj$G%Q%=%3%s$+$i%J%^$G8+$l$A$c$&$s$G$9!*(B $B$b$7$+$7$F%j%"%k%?%$%`%(%C%A$b8+$l$A$c$&%+%b!#(B ---------------------------------------------------------- * $B9-9p$@$1$I%5%$%H$N2hA|$O!Z(B $BL5NA(B $B![$G$9!#(B $B!a!a!a!!(B2/8 $B99?7!!3F(B20$BKg!!!a!a!a(B $B"#(B $B5WJ](B $B0!:;9a(B $B"#(B $B>.@n(B $BL@F|9a(B http://book-i.net/cream/ product@acmemail.net $B!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a(B To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 4: 2:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D1CA237B404; Mon, 18 Feb 2002 04:02:10 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IBsjP04106; Mon, 18 Feb 2002 03:54:45 -0800 (PST) (envelope-from sos) Date: Mon, 18 Feb 2002 03:54:45 -0800 (PST) From: Message-Id: <200202181154.g1IBsjP04106@freefall.freebsd.org> To: mharada@iris.dti.ne.jp, sos@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35029: LBA48-code miscalculates size of LBA48-ready disk drive Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: LBA48-code miscalculates size of LBA48-ready disk drive State-Changed-From-To: open->closed State-Changed-By: sos State-Changed-When: Mon Feb 18 03:53:31 PST 2002 State-Changed-Why: Fixed in current and MFC will follow shortly. See commitlog for details. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35029 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 4:15:53 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BB7537B404; Mon, 18 Feb 2002 04:15:49 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1ICFnU19001; Mon, 18 Feb 2002 04:15:49 -0800 (PST) (envelope-from sobomax) Date: Mon, 18 Feb 2002 04:15:49 -0800 (PST) From: Message-Id: <200202181215.g1ICFnU19001@freefall.freebsd.org> To: list@rachinsky.de, sobomax@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/34819: bzip2 cannot handle filenames containing * or ? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: bzip2 cannot handle filenames containing * or ? State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Mon Feb 18 04:15:03 PST 2002 State-Changed-Why: Originator reports that the problem is solved in recent -STABLE (after bzip2 update to 1.0.2). http://www.freebsd.org/cgi/query-pr.cgi?pr=34819 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 4:20:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 98CE737B416 for ; Mon, 18 Feb 2002 04:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1ICK2X19475; Mon, 18 Feb 2002 04:20:02 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Feb 2002 04:20:02 -0800 (PST) Message-Id: <200202181220.g1ICK2X19475@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: i386/30965: Cyclades Cyclom-Yep causes FreeBSD to hang during Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/30965; it has been noted by GNATS. From: Bruce Evans To: Scott Klement Cc: Arjan Knepper , Subject: Re: i386/30965: Cyclades Cyclom-Yep causes FreeBSD to hang during Date: Mon, 18 Feb 2002 23:14:03 +1100 (EST) On Wed, 6 Feb 2002, Scott Klement wrote: > I have been running 4 computers with Arjan's patch since October with zero > problems. It's really been a lifesaver (thank you, Arjan!) > > Any chance this will be committed/MFC-ed by the next (4.6) release? Thanks for the feedback. Sorry I haven't asked Cyclades what the magic bit does. I would like to know before putting it in -stable. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 5: 0:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8672A37B417 for ; Mon, 18 Feb 2002 05:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1ID03i27640; Mon, 18 Feb 2002 05:00:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F364B37B404 for ; Mon, 18 Feb 2002 04:50:25 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1ICoPA25468; Mon, 18 Feb 2002 04:50:25 -0800 (PST) (envelope-from nobody) Message-Id: <200202181250.g1ICoPA25468@freefall.freebsd.org> Date: Mon, 18 Feb 2002 04:50:25 -0800 (PST) From: Vitezslav Novy To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/35076: sh builtin test command sets real uid to value of euid Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35076 >Category: bin >Synopsis: sh builtin test command sets real uid to value of euid >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 18 05:00:03 PST 2002 >Closed-Date: >Last-Modified: >Originator: Vitezslav Novy >Release: 4.5-RELEASE >Organization: >Environment: FreeBSD vita.private.fio.cz 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Fri Feb 15 18:40:42 CET 2002 root@vita.private.fio.cz:/usr/src/sys/compile/SAMBA i386 >Description: sh builtin test command sets real uid to the value of euid. Builtin test command uses code of external test command, which sets uid to value of euid. External command exits after his job, so there is no problem. But this code used in sh sets uid of sh which typicaly continues and executes other commands. Same is valid for gid. >How-To-Repeat: bash-2.05$ ls -l sh -r-sr-xr-x 1 root wheel 452412 Feb 18 12:45 sh bash-2.05$ id uid=1001(rumik) gid=1001(rumik) groups=1001(rumik), 0(wheel) bash-2.05$ cat ttt.sh id test a = b id bash-2.05$ ./sh ttt.sh uid=1001(rumik) euid=0(root) gid=1001(rumik) groups=1001(rumik), 0(wheel) uid=0(root) gid=1001(rumik) groups=1001(rumik), 0(wheel) >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 Feb 18 6:30:17 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D4E537B41B for ; Mon, 18 Feb 2002 06:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IEU1R70500; Mon, 18 Feb 2002 06:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CC7D37B404 for ; Mon, 18 Feb 2002 06:21:06 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IEL6w63907; Mon, 18 Feb 2002 06:21:06 -0800 (PST) (envelope-from nobody) Message-Id: <200202181421.g1IEL6w63907@freefall.freebsd.org> Date: Mon, 18 Feb 2002 06:21:06 -0800 (PST) From: David Xu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/35077: Identify Intel 82845 chipset Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35077 >Category: i386 >Synopsis: Identify Intel 82845 chipset >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 Feb 18 06:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: David Xu >Release: FreeBSD 4.4-release >Organization: Viasoft >Environment: >Description: just got an ASUS P4B266 motherboard, the board has an Intel 82845 chipset, of course FreeBSD-stable doesn't know its name, here is the patch. >How-To-Repeat: >Fix: file /sys/i386/isa/pcibus.c: --- pcibus.c.orig Mon Feb 18 21:45:08 2002 +++ pcibus.c Mon Feb 18 21:59:28 2002 @@ -126,6 +126,9 @@ break; } break; + case 0x1A308086: + s = "Intel 82845 Host to PCI bridge"; + break; /* AMD -- vendor 0x1022 */ case 0x70061022: file /sys/pci/pcisupport.c: --- pcisupport.c.orig Mon Feb 18 21:35:44 2002 +++ pcisupport.c Mon Feb 18 21:53:47 2002 @@ -692,6 +692,8 @@ return ("Intel 82801AB (ICH0) Hub to PCI bridge"); case 0x244e8086: return ("Intel 82801BA/BAM (ICH2) Hub to PCI bridge"); + case 0x1a318086: + return ("Intel 82845 PCI-PCI (AGP) bridge"); /* VLSI -- vendor 0x1004 */ case 0x01021004: >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 Feb 18 6:40:16 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D21837B405 for ; Mon, 18 Feb 2002 06:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IEe1u09887; Mon, 18 Feb 2002 06:40:01 -0800 (PST) (envelope-from gnats) Received: from vita.private.fio.cz (sf-wall.fio.cz [195.250.140.9]) by hub.freebsd.org (Postfix) with ESMTP id 984C937B405 for ; Mon, 18 Feb 2002 06:36:19 -0800 (PST) Received: (from root@localhost) by vita.private.fio.cz (8.11.6/8.11.6) id g1IEafJ21337; Mon, 18 Feb 2002 15:36:41 +0100 (CET) (envelope-from root) Message-Id: <200202181436.g1IEafJ21337@vita.private.fio.cz> Date: Mon, 18 Feb 2002 15:36:41 +0100 (CET) From: vita@fio.cz To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: i386/35078: Uninitialized pointer dereference in func i386_parsedev in sys/boot/i386/libi386/devicename.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35078 >Category: i386 >Synopsis: Uninitialized pointer dereference in func i386_parsedev in sys/boot/i386/libi386/devicename.c >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 Feb 18 06:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Vitezslav Novy >Release: FreeBSD 4.5-RELEASE i386 >Organization: >Environment: System: FreeBSD vita.private.fio.cz 4.5-RELEASE FreeBSD 4.5-RELEASE #4: Tue Feb 12 16:07:24 CET 2002 root@vita.private.fio.cz:/usr/src/sys/compile/VITA i386 >Description: When parsing device name without unit number, unset pointer cp is dereferenced >How-To-Repeat: >Fix: --- sys/boot/i386/libi386/devicename.c.orig Mon Feb 18 14:38:22 2002 +++ sys/boot/i386/libi386/devicename.c Mon Feb 18 14:41:25 2002 @@ -135,12 +135,13 @@ } cp++; } - } - if (*cp && (*cp != ':')) { - err = EINVAL; - goto fail; - } - + if (*cp && (*cp != ':')) { + err = EINVAL; + goto fail; + } + } else { + cp = np; + } idev->d_kind.biosdisk.unit = unit; idev->d_kind.biosdisk.slice = slice; idev->d_kind.biosdisk.partition = partition; @@ -158,11 +159,14 @@ err = EUNIT; goto fail; } - } - if (*cp && (*cp != ':')) { - err = EINVAL; - goto fail; - } + + if (*cp && (*cp != ':')) { + err = EINVAL; + goto fail; + } + } else { + cp = np; + } if (dv->dv_type == DEVT_NET) idev->d_kind.netif.unit = unit; >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 Feb 18 7:26:28 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from proxy.centtech.com (moat.centtech.com [206.196.95.10]) by hub.freebsd.org (Postfix) with ESMTP id 48FC737B440 for ; Mon, 18 Feb 2002 07:25:17 -0800 (PST) Received: from sprint.centtech.com (sprint.centtech.com [10.177.173.31]) by proxy.centtech.com (8.11.6/8.11.6) with ESMTP id g1IFPGK25675 for ; Mon, 18 Feb 2002 09:25:16 -0600 (CST) Received: from centtech.com (proton [10.177.173.77]) by sprint.centtech.com (8.9.3+Sun/8.9.3) with ESMTP id JAA23919; Mon, 18 Feb 2002 09:25:16 -0600 (CST) Message-ID: <3C711C74.8B72CB14@centtech.com> Date: Mon, 18 Feb 2002 09:23:32 -0600 From: Eric Anderson Reply-To: anderson@centtech.com Organization: Centaur Technology X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-bugs@freebsd.org Cc: anderson@centtech.com Subject: nfsd high cpu load Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This sure seems like a bug to me, but before I put in an official bug report, I'll run it by everyone just to make sure I'm not missing something. I have a FreeBSD 4.5R NFS server, and the nfsd is slamming the cpu, for no apparent reason. I have Linux (RedHat 6.2, 7.2) and Solaris (2.7, 2.6) clients accessing it via NFS. It is part of an NIS domain. I have had no problems in the past, and had FreeBSD 4.4R on this machine and had NO TROUBLES until I reinstalled and put 4.5R on it. I can not get the load down at all, and even some clients timeout while talking to this server. Here is a clipped portion from a top: ---------------- last pid: 328; load averages: 1.00, 1.02, 1.00 up 18+23:27:18 09:07:20 53 processes: 3 running, 50 sleeping CPU states: 18.3% user, 0.0% nice, 80.5% system, 1.2% interrupt, 0.0% idle Mem: 21M Active, 747M Inact, 182M Wired, 52M Cache, 112M Buf, 1664K Free Swap: 2048M Total, 164K Used, 2048M Free PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND 30358 root 61 0 364K 160K RUN 165.4H 94.43% 94.43% nfsd 30359 root 2 0 356K 152K RUN 32:39 2.93% 2.93% nfsd 30360 root 2 0 356K 152K nfsd 0:49 0.00% 0.00% nfsd 129 root 2 0 2512K 1524K select 0:38 0.00% 0.00% sendmail 80 root 2 0 1300K 748K select 0:35 0.00% 0.00% ntpd 23865 root 2 0 1868K 1032K select 0:21 0.00% 0.00% nmbd 87 root 2 0 720K 508K select 0:14 0.00% 0.00% mountd 30361 root 2 0 356K 152K nfsd 0:12 0.00% 0.00% nfsd 82 daemon 2 0 960K 560K select 0:11 0.00% 0.00% portmap 30362 root 2 0 356K 152K nfsd 0:07 0.00% 0.00% nfsd 115 root 2 0 1160K 756K select 0:07 0.00% 0.00% amd ----------------- Here is some other info about the box: machine has dual nics, and is serving data on both ports. in rc.conf: nfs_reserved_port_only="YES" nfs_server_enable="YES" nfs_server_flags="-h 10.177.178.51 -h 10.177.176.40 -u -t -n 20" and in sysctl.conf: vfs.nfs.gatherdelay=0 vfs.nfs.async=1 vfs.vmiodirenable=1 kern.ipc.maxsockbuf=2097152 kern.ipc.somaxconn=8192 kern.ipc.maxsockets=16424 kern.maxfiles=65536 kern.maxfilesperproc=32768 net.inet.tcp.rfc1323=1 net.inet.tcp.delayed_ack=0 net.inet.tcp.sendspace=65535 net.inet.tcp.recvspace=65535 net.inet.udp.recvspace=65535 net.inet.udp.maxdgram=57344 net.local.stream.recvspace=65535 net.local.stream.sendspace=65535 net.inet.ip.forwarding=1 It appears that Solaris machines have a hard time with the NFS serving as well, but this may or may not be related. Anyone seen anything like this? Eric -- ------------------------------------------------------------------ Eric Anderson anderson@centtech.com Centaur Technology If at first you don't succeed, sky diving is probably not for you. ------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 8:10: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 46EC737B416 for ; Mon, 18 Feb 2002 08:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IGA1143638; Mon, 18 Feb 2002 08:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 60F5D37B400 for ; Mon, 18 Feb 2002 08:01:58 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IG1wV36039; Mon, 18 Feb 2002 08:01:58 -0800 (PST) (envelope-from nobody) Message-Id: <200202181601.g1IG1wV36039@freefall.freebsd.org> Date: Mon, 18 Feb 2002 08:01:58 -0800 (PST) From: Jarek Granat To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/35081: zebra routing problem - kernel bug??? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35081 >Category: kern >Synopsis: zebra routing problem - kernel bug??? >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 18 08:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Jarek Granat >Release: FreeBSD 4.5-STABLE >Organization: >Environment: FreeBSD adeon.lublin.pl 4.5-STABLE FreeBSD 4.5-STABLE #1: Sat Feb 16 13:46:11 CET 2002 jarek@adeon.lublin.pl:/home/jarek/src/sys/compile/ADEON i386 Zebra 0.92a (i386--freebsd4.5). Copyright 1996-2001, Kunihiro Ishiguro. >Description: In zebra I can't set route by interface name: "ipv6 route 3ffe:xxxx::/xx gifX". FreeBSD 4.4-RELEASE didn't have this problem If I do this I have problems similar to: http://www.freebsd.org/cgi/query-pr.cgi?pr=bin/35017 (/sbin/route: weird behaviour with using the -interface flag) Also zebra miss paths from bgpd. In my opinion it can be kernel bug, but i'm not sure. >How-To-Repeat: Try set static route in zebra by interface name. F.ex.: ipv6 route 3ffe:8010::/28 gif0 >Fix: I don't know how to fix it, but set all your static routes by: ipv6 route 3ffe:xxxx::/xx 3ffe:tunnelbroker:tunnel:end:point (not by interface name). If I configure it in that way zebra works correctly. >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 Feb 18 8:20:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF65537B402 for ; Mon, 18 Feb 2002 08:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IGK1B47999; Mon, 18 Feb 2002 08:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2667937B402 for ; Mon, 18 Feb 2002 08:11:22 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IGBMf44455; Mon, 18 Feb 2002 08:11:22 -0800 (PST) (envelope-from nobody) Message-Id: <200202181611.g1IGBMf44455@freefall.freebsd.org> Date: Mon, 18 Feb 2002 08:11:22 -0800 (PST) From: Boyd Bourque To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/35082: IBM Intellistation will not reboot with SCSI card installed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35082 >Category: kern >Synopsis: IBM Intellistation will not reboot with SCSI card installed >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 18 08:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Boyd Bourque >Release: Realases 4.5 >Organization: Louisiana State University >Environment: I do not have this from the original configuration. >Description: I have an IBM Instellistation Z-Pro with dual Pentium Pro 200 Mhz processors. The machine was originally installed with a 10Gb SCSI Drive and an Adaptec AHA-2940UW SCSI controller. When I originally installed FreeBSD Realease 4.4, the machine would not reboot after the installation process, but would only start after a cold boot. It would get stuck while trying to load the SCSI bios. I upgraded the SCSI controller bios from 1.3 to 2.20, but this did not help. After this, I started from scratch with a new installation of Release 4.5, but the problem still occured. The problem occured with Release 4.5 as well. I tried to install the FreeBSD boot manager, and the Standard MBR, but the problem always occurs. >How-To-Repeat: The problem always occurs when sysinstall tries to reboot the machine or when the command "shutdown -r now" is issued. >Fix: The machine reboots with the SCSI drive removed and the OS intalled on a Western Digital IDE drive. >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 Feb 18 8:20:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD86C37B400 for ; Mon, 18 Feb 2002 08:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IGK3k48005; Mon, 18 Feb 2002 08:20:03 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Feb 2002 08:20:03 -0800 (PST) Message-Id: <200202181620.g1IGK3k48005@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Josef Karthauser Subject: Re: kern/35061: After printing to HP Deskjet 656c USB printer, computer hangs Reply-To: Josef Karthauser Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/35061; it has been noted by GNATS. From: Josef Karthauser To: Ryan Johnson Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/35061: After printing to HP Deskjet 656c USB printer, computer hangs Date: Mon, 18 Feb 2002 16:15:40 +0000 --Md/poaVZ8hnGTzuv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Feb 17, 2002 at 11:19:37AM -0800, Ryan Johnson wrote: >=20 > >Description: > After any file is printed to a HP Deskjet 656c printer (USB), the system = hangs. I have enabled debugging for the ulpt driver, here is the output: >=20 > ulptwrite > ulpt_status: status=3D0x18 err=3D0 > ulptwrite: transfer 1024 bytes > > ulptwrite > ulpt_status: status=3D0x18 err=3D0 > ulptwrite: transfer bytes > ulpt_input: got some data > Are you using the patch set that I announced on -stable a few days ago? Also, it's important to know which usb controller device you're using. A copy of your dmesg should provide that information (uhci or ohci). Thanks, Joe --Md/poaVZ8hnGTzuv Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjxxKKsACgkQXVIcjOaxUBbZfQCfa8SCpRn6S8/10Vwe3L2sx7pf a4MAnAvf68VW5nwx4j56+x87RP2zcuco =rYC3 -----END PGP SIGNATURE----- --Md/poaVZ8hnGTzuv-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 9: 0:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A51F37B402 for ; Mon, 18 Feb 2002 09:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IH03x67919; Mon, 18 Feb 2002 09:00:03 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Feb 2002 09:00:03 -0800 (PST) Message-Id: <200202181700.g1IH03x67919@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Francois Pollet Subject: Re: kern/34965: 4.4, 4.5 freeze at boot time on ASUS P2B series MBs (P2B-B) Reply-To: Francois Pollet Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/34965; it has been noted by GNATS. From: Francois Pollet To: freebsd-gnats-submit@FreeBSD.org, freebsd@perceval.net Cc: Subject: Re: kern/34965: 4.4, 4.5 freeze at boot time on ASUS P2B series MBs (P2B-B) Date: Mon, 18 Feb 2002 17:52:19 +0100 > This was reported by someone on the lists, and upgrading to the latest > BIOS (xxx13) fixed it for them. At the early beginning of our investigations, we suspected a SCSI problem and we upgraded our 2940UW BIOS to 2.20. Finaly, after having tested the 4.4 boot CD with the same SCSI adapter and drive on a P4-B, we saw that the acd0 was detected AFTER the plip0 but BEFORE the SCSI drives. We suspected then a problem with the P2B-B BIOS settings. Our ASUS P2B-B motherboard was already configured with the latest official BIOS (10.11). We tried the latest 10.13beta7 this morning. I confirm that the latest BIOS release for the P2B-B does NOT fix the problem. After reseting the MB BIOS settings to the 'Setup Defaults', the USB IRQ is activated with the side effect that the problem seems to be fixed as explained in the workaround ... The workaround is enough except for those using many adapters that require specific IRQs (if all slots in use ...) Regards, Francois. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 9: 0:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 99B9937B417 for ; Mon, 18 Feb 2002 09:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IH03c67928; Mon, 18 Feb 2002 09:00:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C37C37B400 for ; Mon, 18 Feb 2002 08:54:40 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IGse364563; Mon, 18 Feb 2002 08:54:40 -0800 (PST) (envelope-from nobody) Message-Id: <200202181654.g1IGse364563@freefall.freebsd.org> Date: Mon, 18 Feb 2002 08:54:40 -0800 (PST) From: Thomas Burbridge To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/35083: Gnome screensaver doesn't work, but KDE's does work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35083 >Category: i386 >Synopsis: Gnome screensaver doesn't work, but KDE's does work >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 Feb 18 09:00:03 PST 2002 >Closed-Date: >Last-Modified: >Originator: Thomas Burbridge >Release: FreeBSD 4.5 >Organization: >Environment: FreeBSD 4.5-RELEASE FreeBSD 4.5-RELEASE #0 Mon Jan 28 14:31:56 GMT 2002 Murray@builder.Freebsdmall.com: /usr/src/sys/compile/GENERIC i386 >Description: Screensaver window does come up revealing names of choices.But selecting a choice and pressing O.K. will not activate the screensaver. Even preview doesn't work. Diagnostic screen after returning to shell says something about /dev/dsp is not configured >How-To-Repeat: re-enter Gnome and find screensaver in start menu. >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 Feb 18 9:42:15 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54B7F37B400; Mon, 18 Feb 2002 09:42:11 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IHdCh99838; Mon, 18 Feb 2002 09:39:12 -0800 (PST) (envelope-from cjc) Date: Mon, 18 Feb 2002 09:39:12 -0800 (PST) From: Message-Id: <200202181739.g1IHdCh99838@freefall.freebsd.org> To: cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/35083: Gnome screensaver doesn't work, but KDE's does work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Gnome screensaver doesn't work, but KDE's does work Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: cjc Responsible-Changed-When: Mon Feb 18 09:38:50 PST 2002 Responsible-Changed-Why: Misfiled PR. Ports issues. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35083 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 11: 0:13 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3092737B419 for ; Mon, 18 Feb 2002 11:00:07 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IJ06c00249 for freebsd-bugs@freebsd.org; Mon, 18 Feb 2002 11:00:06 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 18 Feb 2002 11:00:06 -0800 (PST) Message-Id: <200202181900.g1IJ06c00249@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: open PR's (mis)filed to gnats-admin and in limbo Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/02/15] pending/34957gnats-adminUpdate port: net/ettercap (Security Fix R o [2002/02/17] pending/35034gnats-admin 2 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/02/11] pending/34847gnats-adminoversight in LINT documentation line 1 problem total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 11: 9:16 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0196E37B423 for ; Mon, 18 Feb 2002 11:00:24 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IJ08D00327 for freebsd-bugs@freebsd.org; Mon, 18 Feb 2002 11:00:08 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 18 Feb 2002 11:00:08 -0800 (PST) Message-Id: <200202181900.g1IJ08D00327@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1998/05/13] kern/6630 julian [PATCH] Fix for Cyrix I8254 bug o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 f [1999/02/20] kern/10172 [panics] Kernel (esp kern/sys_pipe.c) die o [1999/05/31] kern/11966 ru TCP copies send and receive socket buffer s [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch f [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde f [1999/06/30] kern/12466 Fast system hangs under high FS load o [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG o [1999/08/10] i386/13059 imp Install aborts with panic:aha0: Invalid C f [1999/09/12] kern/13709 panic: sched_sync: fsync failed o [1999/10/30] kern/14614 dillon VM DoS attack (with exploit attached) f [1999/11/22] i386/15040 Installation problems with 3.x FreeBSD f [1999/12/05] kern/15281 Please fix handling Ross(?) host to PCI b o [2000/01/17] misc/16157 green "fire" screensave kills network performan o [2000/02/14] kern/16708 wpaul 3Com 3c900-Combo Ehternet card make kerne o [2000/02/18] i386/16802 An user math program have the system on K o [2000/03/15] i386/17391 jhb FreeBSD boot loader does not recognize ke o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy f [2000/03/28] alpha/17642 alpha FreeBSD/alpha 4.0 RELEASE installation fa o [2000/04/04] bin/17791 mjacob Restore does not handle bad or missing ta f [2000/04/04] i386/17808 cannot swap /dev/.... a [2000/04/28] misc/18286 mikeh mailx, which is part of Unix 98, does not o [2000/05/09] misc/18466 dillon install via nfs or ftp media silently tru s [2000/05/17] misc/18641 paul FreeBSD V4.0 crashes when using ifconfig f [2000/05/29] kern/18874 peter 32bit NFS servers export wrong negative v o [2000/06/13] kern/19247 jasone uthread_sigaction.c does not do anything o [2000/06/14] misc/19257 Detection of connected ports on a Cyclom o [2000/07/01] conf/19629 dougb /etc/rc.sysctl can't set all syctls s [2000/07/05] kern/19722 rwatson FreeBSD box responds to broadcast IP o [2000/07/12] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/30] i386/20308 yokota vidcontrol VESA_800x600 causes a kernel p f [2000/07/31] kern/20310 groudier Symbios 53c875j drivers don't work o [2000/08/03] kern/20375 APM doesn't work properly! Suspend/resum o [2000/08/05] kern/20429 yokota setting flags 0x1 in atkbd0 locks keyboar o [2000/08/08] i386/20495 yokota 4.1-STABLE and 4.1-RELEASE: keyboard does o [2000/08/28] kern/20895 groudier sym driver doesn't work for SYM53C895A o [2000/09/04] misc/21025 msmith BTX loader 1.00 gets 1Gb of memory from B f [2000/09/04] i386/21042 mdodd Keyboard driver problems with PS/2 Model o [2000/09/12] kern/21220 msmith mlx0: I/O error - attempt to write beyond f [2000/09/13] bin/21253 mjacob dump/restore fail on any stream (tape/pip o [2000/09/14] kern/21272 wpaul USB interrupts seem to be turned off o [2000/09/14] kern/21278 gibbs ahc driver wedges on stressed SMP system o [2000/09/17] kern/21323 msmith Lock up at boot on Acer507DX with pci.c 1 f [2000/09/19] kern/21397 joerg Floppy drive doesn't work on Compaq ProLi f [2000/10/05] i386/21772 No interrupts for 39160 PCI adapter in PR f [2000/10/06] misc/21782 4.1.1 and ADAPTEC 29160N SCSI controller o [2000/11/01] kern/22494 wpaul Fatal trap 12: page fault while in kernel f [2000/11/02] kern/22557 fatal kernel trap 0x2(memory management) f [2000/11/03] bin/22595 brian telnetd tricked into using arbitrary peer o [2000/11/18] kern/22953 keu driver throws 'usb error on rx: IOERR o [2000/11/20] gnu/22972 obrien Internal Compiler Error o [2000/11/25] misc/23103 lacks many ISO C99 features (NAN f [2000/11/27] i386/23145 brian pppoe-test-program panics the server o [2000/11/29] kern/23173 read hangs in linux emulation f [2000/12/09] kern/23411 SMP Kernel Freezes Machines on Dual Proce a [2000/12/14] kern/23547 msmith only one logical device on Mylex AcceleRA f [2000/12/14] i386/23548 4.x causes Thinkpad 560X disk to spin up/ a [2000/12/21] kern/23740 silby kernel DoS tha could be executed by any u o [2000/12/26] kern/23859 panicked on sofree o [2001/01/17] kern/24418 jasone read/write in thread library (-lc_r) does f [2001/01/18] kern/24433 NFSv3 service hangs when writing large am f [2001/01/30] kern/24740 cy filesystem corruption CFP1080 CAM SCSI ca a [2001/02/02] kern/24811 Networking in FreeBSD 4.2-RELEASE doesn't f [2001/02/19] kern/25215 RELENG_4 kernel crashes starting SCSI dis f [2001/02/20] kern/25235 OS Hungs up when using with a Battery of f [2001/02/23] i386/25328 4.x stable kernel crash: page fault f [2001/02/27] misc/25407 Error while booting 4.2 : ahc0 Signaled A o [2001/03/09] kern/25632 n_hibma USB modem (umodem) may destroy the cfreel o [2001/03/20] kern/25950 obrien Bad drives on asr look zero-length and pa o [2001/03/24] kern/26048 obrien 4.3-RC: SMP and asr driver don't work to f [2001/03/30] kern/26223 Linux /compat/linux/dev devices doesn't w f [2001/03/30] kern/26224 dillon VFS Panic/SMP/CFLOW(HEAVY network)/Heavy o [2001/04/02] bin/26305 mjacob Cannnot restore partions with FreeBSD 4.x f [2001/04/12] kern/26510 kernel panic while booting on Intel STL2 o [2001/04/13] kern/26549 IPsec policies for more than one pair of f [2001/04/20] i386/26736 System freeze booting from (i386) 4.3 flo f [2001/04/25] kern/26840 dillon process doing mmap() over nfs hangs in vm o [2001/05/02] ports/27036 sobomax All Ports using Mesa3 are required with - f [2001/05/02] i386/27042 4.3-RELEASE installation from CDROM fails f [2001/05/02] kern/27048 Bus support (I believe) broken in freeBSD f [2001/05/03] kern/27059 groudier (symbios) SCSI subsystem hangs under heav a [2001/05/10] kern/27250 bp unionfs filesystem panics in large number o [2001/05/11] kern/27275 kernel bug ? f [2001/05/17] conf/27408 rc.network hangs at rpc.umntall if stale o [2001/06/07] bin/27939 rlogin uses wrong IP address for remote h o [2001/06/08] kern/27985 Recent -STABLE crashes when accessing dc o [2001/06/09] kern/27987 New ATA Driver failure with VIA Southbrid a [2001/06/09] i386/27991 ssh 1 and 2 login with keys is not possib o [2001/06/09] bin/28002 ru SHARED=symlinks is broken f [2001/06/14] kern/28162 RELENG_4 (4.2, 4.3) Panics when system ha f [2001/06/14] kern/28163 in_pcballoc Panic in RELENG_4 with large o [2001/06/20] i386/28293 imp Dell Latitude CpxJ 750 hangs on install o [2001/06/25] kern/28402 kernel panic caused by softupdates (may b o [2001/06/25] kern/28418 XFree86 4.X panics FreeBSD 4.3-STABLE on o [2001/06/27] kern/28465 Enabling softupdates on a clean but activ o [2001/06/27] kern/28466 When soft updates is enabled, cpl is not o [2001/06/30] i386/28550 Boot: Fatal Trap 12: page fault while in f [2001/06/30] i386/28558 makedev return non-zero status after inst o [2001/07/02] kern/28630 Look like hung up a kernel after few minu f [2001/07/04] kern/28703 dillon Kernel reboot during tape backup of nfs m o [2001/07/05] kern/28751 n_hibma USB Mouse doesn't seem to work! o [2001/07/14] kern/28966 pirzyk math libraries in linux emulation do not o [2001/07/14] kern/28974 PPPoE software fails when SOCK_RAW employ o [2001/07/15] ports/28995 max deMime produces blank line in header part f [2001/07/17] i386/29045 Heavy disk usage causes panic in ffs_blkf f [2001/07/19] i386/29096 freebsd 4.2/4.3 hangs after probing devic o [2001/07/21] kern/29121 msdos fs causes kernel panic when writing o [2001/07/24] bin/29191 NFS file locking fails from Solaris 8 cli o [2001/07/24] misc/29200 dcs Syntax errors in /boot/device.hints cause o [2001/07/30] ports/29325 ports Dbview contains an error, because of whic o [2001/08/13] ports/29681 portmgr bsd.port.mk cannot handle some module's P o [2001/08/14] conf/29699 Setting NO_MAILWRAPPER results in a syst o [2001/08/15] kern/29741 ptrace(pid);ptrace(ppid) makes pid and pp o [2001/08/15] kern/29742 PCCARD Modems don't work on cardbus bridg o [2001/08/15] kern/29743 TI-1450 interrupt storm o [2001/08/18] kern/29844 setpgrp does not behave as manual says o [2001/08/18] kern/29847 n_hibma USB usbd_probe_and_attach() is broken and f [2001/08/31] kern/30238 3Com 509-Combo ISA NIC don`t work o [2001/09/03] ports/30292 kde QT/KDE 1.x needs to be removed o [2001/09/03] kern/30300 -current hang caught and crash-dump'd. o [2001/09/04] ports/30331 portmgr Conflict between bsd.port.mk MAKEFILE var o [2001/09/09] i386/30458 Workstation sometimes hangs when connecte f [2001/09/12] i386/30527 does not like scsi on atrend 6260 dual PI o [2001/09/19] i386/30670 4.3 and 4.4 mfsroot floppies reboot Dell o [2001/09/20] i386/30693 On new install bootup does endless usb0: f [2001/09/21] i386/30705 msmith Installation fails on system with Mylex A o [2001/09/23] kern/30771 Panic when mounting drive a [2001/09/24] i386/30802 gibbs repeat of i386/22760. Adaptec SCSI contro o [2001/09/27] bin/30869 dump does not dump all files of a filesys o [2001/09/28] i386/30898 Inspiron 8100 keyboard unusable off mains o [2001/09/29] kern/30921 ACER mechanic ps/2 keyboard donґt work an o [2001/09/30] ports/30935 taoka pips sc880 - needs to have syvr4 support o [2001/10/01] i386/30961 On lsdev -> error & BTX halted =( o [2001/10/04] kern/31042 murray Device name conflict o [2001/10/12] kern/31233 Kernel panics after upgrading to 4.4-STAB o [2001/10/13] ports/31254 obrien I cannot compile Java src files using gcj o [2001/10/14] misc/31266 System can be crashed with "ls -al /flopp o [2001/10/15] bin/31304 joe fix crunchgen to work with more contrib-k o [2001/10/17] conf/31327 Fixes and improvements for rc.diskless* s o [2001/10/20] kern/31391 n_hibma usb.h uses a variable name "class" which o [2001/10/24] kern/31468 Spontaneous crashes, possible related to o [2001/10/25] kern/31493 BTX halted with big disk and 4.4R f [2001/10/31] i386/31671 4.4 installer hangs at " Mounting root fr o [2001/11/02] kern/31710 kernel reboots; looks like an unintended o [2001/11/12] ports/31938 ports Broken cookie handling in lynx-ssl-2.8.4. o [2001/11/12] ports/31948 steve open-motif: having USE_MOTIF in /etc/make o [2001/11/16] bin/32040 brian 4.4-Release "set mtu" in ppp is broken wi f [2001/11/20] i386/32127 Proliant 1600 kernel panics after SMP is o [2001/11/22] kern/32184 Kernel crashes in ufs code o [2001/11/23] i386/32237 4.4-RELEASE keyboard doesnt work after bo o [2001/11/30] kern/32418 kernel table full o [2001/12/04] ports/32506 des Apache mod_auth_pam doesn't works o [2001/12/07] conf/32583 jkh System becomes unusable after performing o [2001/12/09] ports/32664 obrien open-motif-devel-2.1.30 registers itself o [2001/12/11] ports/32707 ports ghostscript-gnu fails during install o [2001/12/11] kern/32713 usb mouse detaches from hub and doesnt re o [2001/12/11] ports/32714 kde KDE build failure: Qt's uic core dumps o [2001/12/12] alpha/32757 alpha fatal kernel trap using generic kernel fo o [2001/12/14] i386/32830 FreeBSD 4.4 install fails on Thinkpad 750 a [2001/12/14] kern/32831 sos HP Colorado IDE tape drive get wedged eas o [2001/12/16] bin/32895 imp rebooting between Win98SE and 4.4-2001121 f [2001/12/22] i386/33089 re GENERIC bloat causes 'make world' to brea o [2001/12/25] misc/33169 system freeze after cron daily security c o [2001/12/26] kern/33219 bp smbfs case senstitive problem o [2001/12/27] misc/33261 dwmalone FreeBSD base system does not install tcpd o [2001/12/27] gnu/33262 mp gdb does not handle pending signals corre f [2001/12/30] conf/33345 pnpinfo not finding info for pnp pci mode o [2001/12/31] kern/33397 "panic: unknown/reserved trap" with moder f [2002/01/04] i386/33525 root access without password o [2002/01/04] kern/33542 a few of swapping completly freeze system f [2002/01/04] misc/33567 RELENG_4 won't makeworld; bsd.dep.mk, Mak o [2002/01/05] i386/33574 kernel hangs on page fault during boot pr o [2002/01/05] ports/33587 ports biabam needs base64 capable encoder f [2002/01/07] kern/33637 dillon Panic: vm_page_unwire: invalid wire count o [2002/01/07] bin/33670 dwmalone default inetd install allows for unlimite f [2002/01/08] misc/33688 Downloading some files with ftp hangs the o [2002/01/08] ports/33703 ports crossfire-0.94.3 crashes often on encount o [2002/01/14] ports/33887 kris security/snort port cannot find its rule o [2002/01/16] kern/33951 pthread_cancel is ignored o [2002/01/16] kern/33952 Bogus error message from correct phreads o [2002/01/16] ports/33964 ports games/flightgear broken (uncompilable) o [2002/01/16] kern/33970 random freeze on IDE Raid 0 (Highpoint HP o [2002/01/17] misc/33997 Reboot Fails on Server o [2002/01/17] i386/34018 response to request from ipv6 client does o [2002/01/18] bin/34028 brian userland ppp o [2002/01/18] i386/34051 Install menu crashes o [2002/01/19] kern/34067 n_hibma Reproducable crash on usb ugen o [2002/01/19] kern/34071 pcn-driver is sort-of-broken in 4.5RC2 (a o [2002/01/21] ports/34123 mharo sudo coredumps on ^C in password prompt & o [2002/01/21] i386/34144 installation,mounting root from ufs:/dev/ o [2002/01/25] bin/34274 green 4.5-RC Interoperability issue: sshd o [2002/01/27] ports/34357 ports ports needs a resume function. f [2002/01/28] ports/34393 trevor ghostscript-gnu 6.52_1 fails to build f [2002/01/28] ports/34395 ade gnomelibs-1.4.1.2_2 fails to build o [2002/01/29] ports/34433 obrien devel/gdb51 port doesn't build f [2002/01/30] kern/34447 DLink DFE 500 rev E1 + dhclient dc0 crash o [2002/01/30] kern/34470 bde Modem gets sio1 interrupt-level buffer o o [2002/01/31] ports/34493 ports linux-realplayer has a security vulnerabi o [2002/01/31] bin/34502 ssh can crash the 4.5 system o [2002/02/02] ports/34552 ports lame don't compile o [2002/02/02] ports/34553 ports fetchmail can lose mail in POP3+UIDL mode o [2002/02/03] i386/34576 cannot load freebsd o [2002/02/04] ports/34623 knu portupgrade -R ruby fails on 4.5RC3 o [2002/02/05] kern/34646 4.5-stable crashes on thttpd restart unde o [2002/02/06] kern/34658 jlemon syncache related panic (2nd panic from so o [2002/02/06] ports/34669 www "download" links in WWW ports listing are o [2002/02/06] misc/34675 iedowse Restore asking for another volume - on la o [2002/02/06] kern/34680 Kernel panics when checking-out a tree (d o [2002/02/07] kern/34711 frequent system stall under moderate scsi o [2002/02/07] ports/34713 ports Non-maintainer update to net/radiusd-cist f [2002/02/11] kern/34830 frequent panic . 4.3-STABLE o [2002/02/11] ports/34863 ports port apache13-fp broken o [2002/02/13] kern/34917 4.5-RELEASE SMP Kernel problems o [2002/02/14] ports/34941 znerd linux-jdk14 port is out of date o [2002/02/15] ports/34969 ports [MAINTAINER] www/oops: fix environment fo o [2002/02/15] i386/34977 IPFW UID/GID Based Filtering doesn't work o [2002/02/16] misc/35022 network broadcast addresses may be use o [2002/02/18] kern/35082 IBM Intellistation will not reboot with S 219 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable a [1997/04/01] bin/3170 sheldonh vi freaks and dump core if user doesn't e f [1997/05/04] i386/3502 mdodd Merge of if_ix* and if_ie* broke EE/16 su o [1997/05/06] bin/3524 imp rlogin doesn't read $HOSTALIASES for non- o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f f [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator s [1997/07/26] bin/4176 mjacob restore gets confused when run over pipe o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/12] kern/4284 paul le0 goes OACTIVE after some time o [1997/08/22] bin/4357 bug in adduser script causes duplicate UI o [1997/10/01] kern/4666 dfr umount -f doesn't seem to work s [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/16] kern/4782 dillon Under certain conditions, several krsh's o [1997/12/14] bin/5297 make incompatibility with System V style o [1998/01/27] kern/5587 des session id gets dropped o [1998/02/28] kern/5877 bmilekic sb_cc counts control data as well as data o [1998/03/19] kern/6066 paul lnc driver does not work correctly with A a [1998/04/07] kern/6238 cg Sound-driver patch for MAD16 (OPTi 928,92 a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty s [1998/06/02] bin/6830 make(1) exhibits confusing and non-standa s [1998/06/23] bin/7033 Same process notified multiple times o [1998/06/24] i386/7057 mdodd 3Com 3C509 locks up, or has >1000ms rtt u s [1998/07/05] kern/7169 cannot use accton on a append-only file o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol s [1998/07/14] kern/7281 [STABLE] Multicast kludge does not work c s [1998/08/10] kern/7556 sl_compress_init() will fail if called an f [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio f [1998/10/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/11/10] bin/8646 peter Implement rlogind -a option f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console o [1998/11/29] conf/8903 dillon /etc/rc can do NFS mounts before the netw o [1998/12/21] kern/9163 adrian [patch] squid does not join a multicast g s [1999/01/07] bin/9379 pppd does not go through all interfaces l s [1999/01/08] kern/9391 if_addmulti doesn't check for retifma == o [1999/01/13] kern/9478 assar support for running a script from kldload s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/15] kern/10107 dillon interlock situation with exec_map and a p f [1999/02/25] bin/10264 davidn passwd(1) tryis NIS even with `-l' switch o [1999/02/28] bin/10312 ken pciconf -l generates output incompatible s [1999/03/02] bin/10353 ypserv gets segmentation violation o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/16] bin/10633 fenner [patch] tcpslice timezone problem and upd a [1999/03/24] kern/10778 ru "ipforward_rt" is not cleared when routin o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec s [1999/04/07] bin/11005 iedowse `umount -f' does not work if the NFS-serv s [1999/04/08] misc/11024 getpwnam(3) uses incorrect #define to lim s [1999/04/28] conf/11376 NFS mount may be happening too soon in /e o [1999/05/03] kern/11462 imp CS network interface driver (for CS89XX b o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 imp CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] misc/11525 dwmalone [PATCH] Networking patches to increase # s [1999/05/07] gnu/11562 tar verification doesn't work o [1999/05/13] kern/11697 tegge Disk failure hangs system o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go o [1999/05/28] kern/11922 deischen missing reentrant interfaces for getpwnam o [1999/07/07] kern/12551 mks ASIC output is shifted following a short o [1999/07/20] bin/12727 billf Game patches from NetBSD o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of o [1999/09/13] kern/13740 jlemon wrong IP statistics s [1999/09/16] conf/13775 multi-user boot may hang in NIS environme s [1999/09/17] i386/13787 lnc driver isn't really the lnc driver o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/27] kern/13997 rwatson RLIMIT_NPROC works unadequately for jails s [1999/10/04] i386/14135 lpt1 nolonger exists after 3.2-RELEASE o [1999/10/12] kern/14285 dillon NFS client appears to lose data o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" o [1999/10/26] kern/14549 mdodd 3C509 broken in 3.3 o [1999/10/27] kern/14566 yokota Non-kernel programs have little/no contro a [1999/11/04] kern/14712 iedowse root has access to NFS mounted directorie f [1999/11/05] kern/14722 TCP connections hangs in FIN_WAIT_2 for > s [1999/11/12] kern/14848 Frame Relay support, corrected a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested o [1999/11/17] i386/14946 mjacob rmt - remote magtape protocol s [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c o [1999/12/23] misc/15662 markm [PATCH] perl5 Sys::Hostname fails if no P o [1999/12/26] kern/15707 dillon bad trap in mprotect o [2000/01/01] kern/15825 dillon Softupdates gets behind, runs the system s [2000/01/02] i386/15845 Driver for RealTek 8029 f [2000/01/03] bin/15877 tobez Perl 5.00503 interpreter crashes with a s o [2000/01/12] kern/16090 mdodd No buffer space available a [2000/01/22] kern/16299 tmm nfs.ko can be unloaded when nfsd is runni o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P o [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/23] conf/16948 qa Sysinstall/disklabel: bad partition table o [2000/02/25] misc/16991 jhb booting install disk and USB s [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm o [2000/03/10] misc/17310 wpaul NIS host name resolving may loop forever o [2000/03/13] bin/17360 green [PATCH] Cleanup bug in pam_ssh o [2000/03/16] kern/17422 bde 4.0-STABLE: top: nlist failed o [2000/03/20] kern/17504 ken Another Micropolis Synchronize Cache Prob f [2000/03/20] misc/17517 wpaul 100/10baseT card resets under load s [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg f [2000/03/21] kern/17542 greid random static with GUS PnP o [2000/03/24] misc/17584 groudier fatal SCSI error with a Symbios 53c875 co o [2000/03/27] i386/17626 green sshd cores when I scp to it o [2000/03/28] alpha/17637 billf misconfigured syscons bell causes panic o o [2000/03/29] i386/17662 gibbs cam_xpt.c incorrectly disables tagged que o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit o [2000/04/04] i386/17800 bde [PATCH] problem with statclock initializa f [2000/04/06] kern/17829 The dc driver is seriously broken o [2000/04/07] bin/17843 ftpd fails to set cwd with mode 700 NFS m f [2000/04/10] kern/17895 dwmalone stale unix domain connections f [2000/04/10] kern/17905 dillon 4.0-SNAP keep on crashing every 3 days o [2000/04/11] i386/17926 yokota psm device problems with apm resume o [2000/04/12] kern/17961 n_hibma Fatal Trap 12. Page fault while in kernel o [2000/04/12] kern/17965 wpaul vr (MII-bus version in 4.0 ONLY) driver l o [2000/04/14] kern/18012 adrian vnode_free_list corruption, "free vnode i o [2000/04/17] misc/18065 mdodd FREEBSD 4.0 crashes on boot Compaq Prolia o [2000/04/23] ports/18180 jmz xdm authorization fails with XDM-AUTHORIZ s [2000/04/23] bin/18181 Getty can fail to observe :de: specificat f [2000/04/23] i386/18185 gibbs Adaptec 3950U2 errors during boot/probe o [2000/04/24] kern/18200 mdodd 3com 3c509b recognized twice during boot f [2000/04/25] kern/18209 green rlimits are never checked in exec() if ex o [2000/04/28] kern/18285 the system froze when use scon -s 50 o [2000/05/02] kern/18345 cg sbc / pcm not fully recognizing AWE64 o [2000/05/02] kern/18348 yokota tags o [2000/07/19] kern/20040 msmith Toshiba 2775 hangs after pcib0 driver is o [2000/07/25] misc/20172 byacc 1.9 fails to generate $default tran f [2000/07/27] kern/20217 darrenr IPF default block and inclusion in rc.net o [2000/07/27] kern/20234 green panic(): lockmgr: pid 259, not exclusive o [2000/07/29] conf/20282 qa sysinstall does not recover some /etc fil f [2000/07/31] kern/20335 yokota S3Trio64V+ is detected as CGA by syscons a [2000/08/02] bin/20373 Setting breakpoints in shared objects bro o [2000/08/08] ports/20490 tg Termios timeout parameters, VMIN, VTIME, f [2000/08/09] i386/20507 yokota Mouse freezes in 4.0-release after some u o [2000/08/10] misc/20521 mjacob /etc/rmt several problems o [2000/08/10] kern/20523 Support for PCI multiport cards for sio d o [2000/08/13] kern/20572 marcel cannot safely remove COMPAT_43 from the k o [2000/08/14] kern/20609 dillon panic: vm_fault: fault on nofault entry, o [2000/08/15] bin/20633 fdisk doesn't handle LBA correctly f [2000/08/17] kern/20689 groudier Newbusified version of ncr driver does no o [2000/08/18] kern/20708 imp Adaptec 1542 ISA SCSI Controller not dete f [2000/08/22] bin/20779 assar junk pointer error causes kpasswd to fail o [2000/08/26] misc/20861 jasone libc_r does not honor socket timeouts o [2000/08/28] gnu/20912 mp gdb does not recognise old executables. f [2000/08/30] bin/20952 markm ftpd doesn't honor account expiration tim o [2000/08/31] kern/20958 mdodd ep0 lockup with ifconfig showing OACTIVE o [2000/09/07] misc/21089 vi silently corrupt open file on SIGINT w f [2000/09/08] kern/21139 ken IBM DNES drives need 'quirk table' entry. o [2000/09/11] bin/21208 tar does not support 2.5 GB file o [2000/09/11] kern/21209 groudier scsi ncr driver installs instead of scsi a [2000/09/13] bin/21248 kris openssl dumps core with blank passwords o [2000/09/13] bin/21251 NIS problem - ypbind does loop in CLNT_BR o [2000/09/14] gnu/21260 buffer overrun in uux o [2000/09/14] ports/21264 markm tn3270 port receives segmentation fault o [2000/09/14] gnu/21276 libI77 is unable to handle files >2Gbytes o [2000/09/15] bin/21292 ifconfig warn but does duplicate IP addre o [2000/09/15] kern/21304 wpaul dc0 watchdog timeouts on NetGear FA310TX o [2000/09/15] kern/21305 roger bktr driver dosn't send signals in contin s [2000/09/18] misc/21384 greid pcm driver has static in recorded audio o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites o [2000/09/20] gnu/21433 g++ optimiser produces bad code on right o [2000/09/21] kern/21461 imp ISA PnP resource allocator problem o [2000/09/21] kern/21463 emulationLinux compatability mode should not allow o [2000/09/26] i386/21559 BTX loader sometime show registers f [2000/09/27] bin/21603 green Can't change user passwords on 4.1.1-STAB o [2000/09/28] kern/21642 Compaq Netelligent 10/100 card (TI Thunde f [2000/10/01] kern/21688 Kernel crash with Adaptec AAA-133 and ahc f [2000/10/02] misc/21701 qa Keymap selection menu broken on initial i o [2000/10/02] docs/21708 jlemon kqueue/kevent man pages isn't specific ab o [2000/10/02] ports/21714 sobomax audio problem with nil o [2000/10/05] kern/21771 murray Fix for sppp and Cronyx drivers update f [2000/10/06] kern/21791 Hang on FIN_WAIT_2 a [2000/10/06] kern/21808 [patches] msdosfs incorrectly handles vno o [2000/10/15] misc/21998 green ident only for outgoing connections o [2000/10/19] kern/22142 securelevel does not affect mount o [2000/10/22] bin/22212 skeyaccess(3) doesn't for primary group o [2000/10/24] misc/22284 Change (SunOS) NIS passwd error o [2000/10/25] bin/22291 getcwd() fails on recently-modified NFS-m f [2000/10/26] i386/22315 Cannot reboot or power-off the machine o [2000/10/30] kern/22417 gibbs advansys wide scsi driver does not suppor a [2000/10/30] ports/22421 ports New port: Enhydra 3.1 beta 1 o [2000/10/31] i386/22441 pmap_growkernel() is not effective at ker f [2000/11/04] i386/22606 Panic on boot: panic string "panic ahc0: o [2000/11/05] bin/22614 billf pam_ssh dumps core o [2000/11/05] kern/22624 Interrupt conflict btw. vga and Ethernet o [2000/11/06] gnu/22635 Why don't you use truncate(2) in libI77 f [2000/11/07] kern/22677 (Was pr: misc/11525) similar behavior in o [2000/11/13] kern/22826 emulationMemory limits have no effect in linux com o [2000/11/14] bin/22846 Routed does not reflect preference of Int f [2000/11/15] kern/22862 ncr probe fails with CACHE TEST FAILED: ? o [2000/11/15] kern/22866 Packets send on INET6 sockets compatible f [2000/11/17] kern/22926 kernel 4.1-RELEASE, 4.1.1-RELEASE (floppy o [2000/11/18] kern/22943 emulationProblem with linux emulation o [2000/11/18] i386/22944 isa_dmainit fails on machines with 512MB a [2000/11/18] kern/22947 jon IBM 10/100 EtherJet Cardbus (Xircom X3201 f [2000/11/18] kern/22951 failed drive causes panic with HPT370 RAI f [2000/11/22] i386/23039 disklabel editor couldn't create partitio o [2000/11/23] gnu/23058 ncurses: tgoto_internal() ugliness o [2000/11/24] misc/23069 jkh Compat22 does not work until you reboot o [2000/11/25] bin/23098 ambrisko If installing on a serial console, enable o [2000/11/26] ports/23125 mbr Successful emulation of StarOffice depend f [2000/11/29] i386/23188 PCI modem doesn't work with 4.1-RELEASE w f [2000/11/30] conf/23192 FTP REALLY slow on internal NIC aswel (12 a [2000/11/30] bin/23203 opie doesn't know that ssh connections ar o [2000/12/04] bin/23269 green OpenSSH TIS Authentication support has br f [2000/12/06] i386/23320 Can`t create a new thread for connect to o [2000/12/07] bin/23352 [SECURITY] buffer overflow in opieftpd f [2000/12/07] misc/23364 gethostbyaddr takes longer or locks up an a [2000/12/07] misc/23376 tobez The version of CGI.pm bundled with perl i o [2000/12/08] kern/23400 IPsec transport mode precludes filtering o [2000/12/11] kern/23468 imp xe Driver causes kernel panic when Xircom o [2000/12/11] bin/23489 tcsh fails to do file completion on non-E o [2000/12/12] kern/23515 get error in messages system log "Dec 11 o [2000/12/13] kern/23535 imp 4.x kernels seem to no longer support Ada o [2000/12/14] misc/23561 emulationLinux compatibility mode does not support f [2000/12/15] i386/23572 486/66 on Micronics motherboard will not o [2000/12/16] gnu/23593 obrien [patch] possible fix to awk(1) o [2000/12/18] ports/23638 kuriyama Add turbine-pool.jar to Cocoon CLASSPATH o [2000/12/22] kern/23771 bridge/firewall doesn't work as in bridge o [2000/12/26] bin/23866 dwmalone patch for pointing out current date o [2001/01/02] kern/24032 markm rndcontrol and pccardd use of interupt ha o [2001/01/03] kern/24059 n_hibma USB support broken in SMP kernel o [2001/01/04] kern/24070 n_hibma uhci USB driver disables port on reatachi o [2001/01/04] kern/24074 mdodd Properties of token-ring protocol must be f [2001/01/05] kern/24085 syncing on shutdown leaves filesystem dir o [2001/01/06] kern/24100 imp Having a 3c589 PCMCIA/PCCARD inserted pre o [2001/01/06] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN f [2001/01/09] i386/24210 compaq dl360 hangs with smp kernel f [2001/01/10] conf/24238 First physical interface always has IPv6 o [2001/01/12] bin/24271 dumpon should check its argument more o [2001/01/16] misc/24391 cannot kill amd after interface disappear o [2001/01/19] bin/24461 pirzyk Being able to increase the YP timeout wit o [2001/01/19] bin/24472 libc_r does not honor SO_SNDTIMEO/SO_RCVT o [2001/01/22] kern/24559 aio_suspend() had Bus error when using -l s [2001/01/23] misc/24590 timezone function not compatible witn Sin f [2001/01/23] kern/24593 NFS hang between stable and current boxes o [2001/01/25] kern/24629 ng_socket failes to declare connected dat o [2001/01/25] bin/24632 libc_r delicate deviation from libc in ha o [2001/01/25] misc/24641 jasone pthread_rwlock_rdlock can deadlock o [2001/01/28] bin/24691 map-mbone segfaults at getsockname o [2001/01/29] ports/24711 portmgr ${MAKEFILE} causing trouble with ports o [2001/01/30] i386/24737 Socks5 clients die with leaving zombie pr a [2001/01/31] ports/24753 ports Pipsecd may get a tun device with the IFH o [2001/02/01] ports/24778 portmgr "update" target not available in categori o [2001/02/06] gnu/24903 Patch to remove 32bit limit from tar f [2001/02/06] i386/24916 SCSI timeout errors with adv0 driver (Adv o [2001/02/09] kern/24982 stack gap usage o [2001/02/10] i386/24997 /boot/loader cannot handle extended dos p o [2001/02/11] ports/25007 max telnetx problem on 4.x o [2001/02/12] kern/25037 top doesn't show CPU states (shows zeroes o [2001/02/12] kern/25038 dhcp client could not set hostname on boo o [2001/02/13] kern/25067 adrian able to mount a pathname > 80 char. but u o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ f [2001/02/16] kern/25136 Fatal trap 12: page fault while in kernel a [2001/02/19] kern/25201 imp pccard event and syscons beep duration de o [2001/02/19] kern/25213 peter Bus abstraction interface doesn't allow p f [2001/02/19] i386/25214 Installing 4.2, and after the initial set o [2001/02/21] kern/25248 bde sys/user.h needs sys/param.h, but doesn't f [2001/02/21] kern/25261 gibbs ahc0 no active SCB errors when booting of o [2001/02/21] ports/25272 rse Using eperl as cgi/nph binary executor ca o [2001/02/23] bin/25337 rwatson dmesg -a should be restricted o [2001/02/25] ports/25374 okazaki A new port math/atlas highly optimized BL o [2001/02/28] bin/25461 qa sysinstall's fdisk and disklabel don't wo f [2001/02/28] kern/25464 if_xl.so kld does not work with "options f [2001/03/01] kern/25476 [PATCH] The syscall oldgetkerninfo can re o [2001/03/03] kern/25511 ioctl(fd, FIONREAD, &c) on a FIFO (not PI o [2001/03/04] ports/25522 portmgr FORBIDDEN ports doesn't return error for o [2001/03/05] bin/25542 /bin/sh: null char in quoted string o [2001/03/07] misc/25585 sed.test 8.16 puts bugged sed into infini o [2001/03/07] bin/25586 green Password expiration doesn't work after up o [2001/03/13] kern/25781 Statclocks cannot be disables on ServerWo o [2001/03/14] misc/25801 imp change IP-address on pccard (3Com) fails o [2001/03/15] bin/25826 nfsd -t -h adr1 -h adr2 doesn't work o [2001/03/16] misc/25851 qa Security hole in anonymous FTP setup scri o [2001/03/17] bin/25886 cgetset(3) doesn't get cleared when switc f [2001/03/18] i386/25889 FDISK lost a partition ! o [2001/03/19] bin/25929 Can't use MAKEDEV in fixit mount o [2001/03/20] kern/25949 msmith camcontrol doesn't find new drives or RAI o [2001/03/20] i386/25958 msmith Xfree86's savage and vesa drivers can pan o [2001/03/22] kern/25986 Socket would hang at LAST_ACK forever. o [2001/03/22] misc/26002 n_hibma Poor read/write performance on uhci USB c o [2001/03/22] kern/26013 Linksys (rev 3) USB 100TX NIC causes infi o [2001/03/23] ports/26036 dima acroread4 produces invalid postscript in o [2001/03/25] kern/26078 Jails cannot connect to the main server a o [2001/03/26] bin/26093 markm pam_unix rejects authenticating accounts o [2001/03/27] kern/26142 Unlink fails on NFS mounted filesystem f [2001/03/27] kern/26161 Kernel Panic on Dual Processor System dur o [2001/03/28] kern/26171 emulationnot work Linux-emulator, but hi is work i o [2001/03/31] i386/26261 silo overflow problem in sio driver f [2001/04/01] conf/26275 darrenr ipfilter_enable in rc.conf does not load o [2001/04/02] bin/26307 libc_r aborts when using the KDE media pl o [2001/04/03] kern/26309 PPPoE client panics in kernel - fxp probl o [2001/04/03] misc/26320 mountd breaks IRIX automounter f [2001/04/04] kern/26356 Large copy of files to the machine causes a [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- o [2001/04/06] kern/26384 dc driver hangs in dc_rxeof o [2001/04/08] kern/26430 cg -CURRENT panics on cat /dev/dsp or cat /d o [2001/04/09] ports/26464 mbr Citrix client no longer reads files in lo o [2001/04/10] misc/26486 setnetgrent hangs when netgroup contains o [2001/04/11] kern/26501 imp Unsuported PCCARD freeze the kernel in is o [2001/04/12] kern/26506 sendto() syscall returns EINVAL in jail e o [2001/04/14] kern/26567 Mouse driver will not properly restart if o [2001/04/14] kern/26568 Mouse driver will die if you move mouse a o [2001/04/16] kern/26613 ethernet vr0 hangs o [2001/04/19] kern/26704 AHA-2940[UW] gives MPARERR on cold boot ( o [2001/04/23] ports/26797 assar arla-0.34.6 causes kernel panic/page faul o [2001/04/23] bin/26809 /etc not saved on upgrade o [2001/04/25] bin/26842 dd dump with h flag takes a very long time o [2001/04/25] ports/26848 sobomax jre port core dumps a [2001/04/25] bin/26869 sheldonh vi(1) crashes in viewing a file with long o [2001/04/27] misc/26897 qa 4.3R sysinstall fails to create swap part f [2001/04/27] i386/26903 qa Cannot use DHCP from /stand/sysinstall ne o [2001/04/28] kern/26920 imp PCI autoconfiguration of USB, dc ether, a f [2001/04/29] kern/26953 adter the installation is over it's make o [2001/04/30] i386/26985 jkh floppy install 4.3 via FTP hangs o [2001/04/30] bin/26996 green sshd fails when / mounted read-only o [2001/05/01] kern/27020 FreeBSD 4.3RC compiled with an SMP kernel o [2001/05/02] ports/27052 portmgr libtool port broken in 4.3 RELEASE o [2001/05/04] bin/27086 green OpenSSH does not set X11 forwarding f [2001/05/04] kern/27087 FreeBSD 4.3-RELEASE does not recognize Gi a [2001/05/08] ports/27202 dougb mail/pine sucks rocks when saving over NF o [2001/05/09] bin/27230 nectar Users after NIS lines in /etc/passwd o [2001/05/09] kern/27237 Watchdog Timeouts under EXCESSIVE load o [2001/05/09] kern/27242 SIGHUP propagation failure to processes o o [2001/05/10] i386/27247 Panic on install - "page fault syncing di a [2001/05/10] kern/27262 process won't be terminated after CPUTIME a [2001/05/15] ports/27358 znerd Naming scheme for JDK ports (java) o [2001/05/16] misc/27400 4.3 install hangs because it is looking f o [2001/05/17] ports/27419 jhb E-FancyLauncer clones itself over and ove o [2001/05/20] kern/27474 Interactive use of user PPP and ipfilter o [2001/05/21] misc/27498 grog vinum crashed after 'vinum dumpconfig' o [2001/05/21] kern/27522 des linprocfs:/proc/stat does not handle SMP o [2001/05/22] kern/27543 des /proc/cpuinfo does not handle SMP hosts o [2001/05/23] docs/27605 doc Cross-document references () o [2001/05/27] kern/27694 cg Panic in csa(4) f [2001/05/29] i386/27729 qa the ls120 device "afd" does not show up u o [2001/06/01] misc/27810 rpc.statd can loop o [2001/06/04] ports/27875 ports invoked on boot, SIGHUP is delivered and o [2001/06/04] ports/27883 bp shares mounted by the smbfs-1.4.1 port ar f [2001/06/05] misc/27893 sos can't burn audio cds on LG CD-RW CED-8083 o [2001/06/05] misc/27896 Error in /etc/exports invalidates entire o [2001/06/07] ports/27925 portmgr index is not updated when it html manpage o [2001/06/07] ports/27926 portmgr bsd.port.mk does not handle MLINKS with h o [2001/06/07] ports/27929 jmz make extract on x11/XFree86-4 port fails o [2001/06/09] bin/27988 [PATCH] let pam_ssh.so explicitly start s o [2001/06/09] kern/27995 src/sys/pci if_pcn.c revision 1.21 resp. o [2001/06/12] misc/28095 [PATCH] pax may descend into directories o [2001/06/12] kern/28100 Hang after device probe on EISA machine o [2001/06/12] ports/28102 assar Recent changes to 4.3-STABLE break arla-0 o [2001/06/14] ports/28155 portmgr DESTDIR is used incorrectly in bsd.port.m o [2001/06/15] kern/28173 Problem with Touchpad on Inspiron 5000e o [2001/06/15] ports/28179 nbm vsftpd port creates a user without a warn o [2001/06/15] misc/28188 Cron is being started to early in /etc/rc o [2001/06/16] kern/28218 A peer of TCP socket cannot detect termin o [2001/06/16] bin/28221 eric dialog(1) segfaults (due to the bug in li o [2001/06/17] bin/28223 su doesn't look at login.conf all the tim o [2001/06/17] bin/28224 ftpd doesn't honor invalid shelll in logi o [2001/06/17] i386/28231 /boot/loader can't load kernel on Xyberna o [2001/06/20] bin/28311 markm ftpd and sshd do not honor expired pw ent f [2001/06/22] misc/28339 roam Slow Disk performance on 4.3 (about half o [2001/06/23] ports/28378 jedgar p5-Net-IRC-0.70_1 eats irc text with col o [2001/06/23] bin/28381 Can't turn off telnet autologin o [2001/06/24] ports/28398 ports ja-dvips cannot find tex.pro o [2001/06/25] kern/28417 arplookup uses potentially unprotected st o [2001/06/26] bin/28424 mtree fails to report directory hierarchy o [2001/06/26] kern/28434 cs0's promiscuous mode does not work o [2001/06/27] misc/28442 hot rebuild on Compaq Intergrated Smart A o [2001/06/28] ports/28491 kiri www/w3-4 port: mismatch between pkg-plist f [2001/06/28] kern/28497 dmesg corrupted buffer/output o [2001/06/28] kern/28498 /var/log/messages incorrect o [2001/06/29] misc/28508 problems with backup to Tandberg SLR40 st o [2001/06/30] i386/28536 writing to corrupted msdosfs causes kerne o [2001/06/30] bin/28552 EUC support of wcstombs(3) is broken for o [2001/07/01] i386/28592 Please support boot from ATA RAID-0 devic o [2001/07/02] misc/28629 ftpd REST command does not support restar o [2001/07/04] kern/28692 cg ICH sound driver hangs kernel o [2001/07/04] kern/28713 luigi NEW IPFW FEATURE [PATCHES]: Dynamic rule o [2001/07/05] misc/28737 D-Link DFE530TX - vr0: Watchdog Timeouts; o [2001/07/06] kern/28768 The system doesn't get connects on one of o [2001/07/06] bin/28773 [PATCH] Bug in pw, no $ in username o [2001/07/07] bin/28798 mikeh mail(1) with a pager (more) requires fg/C o [2001/07/07] i386/28802 3com Performance Pro modem conflicts with o [2001/07/09] kern/28840 gibbs Possible interrupt masking trouble in sys o [2001/07/09] bin/28852 cracauer behavior of /bin/sh with -e option looks o [2001/07/09] kern/28856 3COM PCI FaxModem with shared IRQ causes o [2001/07/11] ports/28889 lioux qpopper-4.0.3 error: Insufficient room to o [2001/07/12] i386/28928 wpaul dual starfire nic doesn't seem to work (a o [2001/07/13] bin/28935 dwmalone syslogd -u doesn't treat * as "all levels o [2001/07/15] i386/28985 Installing FreeBSD 4.3 on a Dell Optiplex o [2001/07/16] bin/29026 traceroute -s option allows any IP addres o [2001/07/17] bin/29049 green multi-user with star o [2001/09/15] misc/30590 /etc/hosts.equiv and ~/.rhosts interactio o [2001/09/15] kern/30592 roam [PATCH] panic: static sysctl oid too high o [2001/09/17] kern/30630 fenner Failure to check for existence of interfa a [2001/09/17] ports/30638 ports SQL-Ledger port update o [2001/09/18] kern/30653 brooks KAME option MAX_GIF_NEST missing from /us o [2001/09/18] bin/30654 Added ability for newsyslog to archive lo f [2001/09/18] ports/30663 ports NEW PORT: devel/libCxClient o [2001/09/21] misc/30708 DHCP and multiple interfaces o [2001/09/21] kern/30712 fatal kernel trap during ufs_rename o [2001/09/21] ports/30728 portmgr pkg_add causes install of multiple versio o [2001/09/22] kern/30744 UDMA ICRC error results in kernel panic o [2001/09/23] kern/30755 It is impossible to mount CD-ROM in some o [2001/09/23] ports/30767 jmz silly links break XFree-4 port if /usr/X1 o [2001/09/24] i386/30784 4.4 does not install KDE or Gnome+Sawfish o [2001/09/24] kern/30798 contigfree() doesn't o [2001/09/25] kern/30820 sound PCM sound fails o [2001/09/25] ports/30823 ports New port: KinterbasDB, Python module to a o [2001/09/26] bin/30837 Sysinstall doesn't set the schg flag on t o [2001/09/27] gnu/30876 tar ignores complaints from gzip o [2001/09/30] ports/30947 ports mail/mahogany fails to build, conflicts w o [2001/09/30] kern/30948 ls'ing mounted brand new floppy locks up o [2001/09/30] kern/30952 kernel panics with 3C905[BC] cards / xl d o [2001/10/01] kern/30958 QUOTA with 0 bytes in quota.user hangs up o [2001/10/01] bin/30959 newfs -i x dumps core for small values of o [2001/10/01] i386/30965 Cyclades Cyclom-Yep causes FreeBSD to han f [2001/10/01] bin/30966 fenner TCPdump repeating on Radius accounting pa o [2001/10/01] kern/30971 peter NFS client modification time resolution i o [2001/10/02] i386/30991 pcm in PNP-OS mode vs. non-PNP-OS mode po o [2001/10/02] bin/30993 xxgdb cannot open source file o [2001/10/04] bin/31029 cjc syslogd remote logging back down o [2001/10/04] i386/31035 Smart Array & SMP hangs on Proliant 1600 o [2001/10/04] bin/31045 routed dumps core o [2001/10/04] kern/31046 Linux OpenGL programs do not work under t o [2001/10/04] kern/31047 Linux programs do not dump core in linux o [2001/10/06] kern/31084 imp xe driver device probe fails in CIS tuple o [2001/10/06] kern/31085 kernel panic on tftp only pxeboot o [2001/10/07] kern/31102 lge + Pentium III data transmission probl o [2001/10/07] kern/31103 nfs read i/o error when nfs-mounting onto o [2001/10/07] ports/31113 portmgr bsd.ports.subdir.mk: remove NOCLEANDEPEND a [2001/10/08] ports/31143 ports gd does not compile, uses nonexistent ftg o [2001/10/08] kern/31147 Kernel panics (double fault) in some "net o [2001/10/09] misc/31175 4.4 wikk not detect ethernet cards on HP o [2001/10/09] ports/31184 ports Latex2html problem o [2001/10/10] ports/31191 ports netsaint - plugins sometimes not found o [2001/10/10] kern/31203 Cardbus xl driver broken on -CURRENT o [2001/10/11] ports/31216 znerd New port: devel/plist-builder o [2001/10/12] kern/31238 `hpijs' process hangs unkillably in `devb o [2001/10/14] docs/31265 doc crontab(1) doesn't decribe format of allo o [2001/10/14] conf/31280 /etc/rc.network NFS server startup broken o [2001/10/15] bin/31306 sysinstall fails to create non-root parti o [2001/10/17] bin/31339 make's .if processing buggy o [2001/10/18] ports/31352 ports Netsaint check_by_ssh: fcntl(0, F_SETFL, o [2001/10/18] misc/31363 sysinstall "partition editor" silently co o [2001/10/21] kern/31398 cg newpcm does not play back the tail of sou o [2001/10/21] ports/31414 ports gd won't compile on 4.3 f [2001/10/21] ports/31422 ache Does pkg_delete have to erase /usr/local/ f [2001/10/24] kern/31471 Specific IPFW's FWD rule crashes the kern o [2001/10/24] i386/31481 FreeBSD does Not find disk drives with Co o [2001/10/25] kern/31492 Panic in sysctl_remove_oid. o [2001/10/25] ports/31494 ache mod_perl fixes for apache13 port o [2001/10/26] ports/31511 obrien g++30 produces binaries which SIGBUS when o [2001/10/26] kern/31515 Use of USB Keyboard crashes 4.4 during in o [2001/10/26] ports/31527 dwcjr "reject_unknown_client" configuration pro a [2001/10/27] kern/31530 Fatal trap 12 when reading from DVD. o [2001/10/28] ports/31567 ports tgif -print fails to create temp files o [2001/10/29] kern/31597 pcm_addchan incorrectly adds vchans to PC o [2001/10/29] ports/31605 kde kmail cannot decrpyt/encrypt/verify gnupg o [2001/10/30] conf/31631 "MAC address" can't be acquired properly. o [2001/10/31] kern/31659 n_hibma USB controller driver will die after some o [2001/10/31] bin/31661 jasone pthread_kill signal handler doesn't get s o [2001/10/31] misc/31670 Wide-Ultra 10k SCSI 3 drive is not recogn o [2001/10/31] bin/31678 A bug in handling an error reading a CD-R o [2001/11/01] ports/31688 java JDK 1.3.1 Update for Sun's Java Communica o [2001/11/01] ports/31689 java JDK 1.3.1 update for FreeBSD/Java Commapi f [2001/11/01] bin/31692 2872-or-less-byte ftp binary transfer fro o [2001/11/01] ports/31699 ports The graphics/gd2 port conflicts with grap f [2001/11/03] misc/31736 DMA mode not possible switching to PIO mo o [2001/11/03] kern/31746 failed connect(2) seems to cause problems o [2001/11/04] ports/31767 ports Fix glide3 includes for DRI compile o [2001/11/05] kern/31768 darrenr Use of fastroute in IPFilter reboots the o [2001/11/05] i386/31771 brian PPP compares CHAP81 response case sensiti o [2001/11/05] kern/31790 problem with NFS and jail() o [2001/11/05] ports/31793 billf snmpd loops on udp.ipv6UdpTable.ipv6UdpEn o [2001/11/06] kern/31804 Clearing PME mode kills network performan o [2001/11/07] ports/31819 jmz ports/ispell install doesn't work o [2001/11/07] bin/31835 dhclient doesn't close FD's before spawni o [2001/11/07] bin/31837 sysinstall change mountpoint o [2001/11/07] kern/31839 mdodd ex0 panic if NIC not cabled a [2001/11/07] ports/31840 portmgr package naming inadequation (gnome vs gtk o [2001/11/07] i386/31845 Toshiba Satellite 2105CDS won't boot Free o [2001/11/08] i386/31850 panic: allocdirect_check o [2001/11/08] bin/31860 read wont timeout on sockets if using thr o [2001/11/08] misc/31864 system header file attempts to redefine a o [2001/11/09] ports/31893 des gnats-3.113.1 conflicts with /usr/bin/sen o [2001/11/12] gnu/31929 GNU Tar shipped with FreeBSD handles rela o [2001/11/12] kern/31940 nge gigabit adapter link reset and slow t o [2001/11/13] i386/31967 reboot/shutdown hangs on Sony VAIO 505 w/ o [2001/11/14] kern/31979 Setup and boot locks Compaq Armada E500 l o [2001/11/17] ports/32063 znerd patch for /usr/ports/java/linux-jdk about o [2001/11/17] bin/32072 setuid w/o immutable flag o [2001/11/18] kern/32098 semctl() does not propagate permissions o [2001/11/19] kern/32118 21143 with dc driver will not select 10ba o [2001/11/19] ports/32121 jmz xf86cfg 4.1.0 writes bad "Chipset" value o [2001/11/20] kern/32124 Cannot set 128 bit wep key on prism2 (wi0 a [2001/11/21] ports/32164 skv New port: p5-XML-SAX-Simple-0.01 f [2001/11/21] bin/32175 green ssh-keygen -p core dumps o [2001/11/22] misc/32194 Adaptec SCSI RAID 2100 fails by reboot o [2001/11/22] bin/32205 brian PPP login fails in LCP negotiation on opt o [2001/11/23] ports/32223 ports Port databases/mysql-jdbc-mm is quite out o [2001/11/23] kern/32226 time of day clock runs fast (approx twice o [2001/11/23] ports/32234 portmgr Perl ports not $LOCALBASE clean o [2001/11/24] kern/32256 System crash/reboot when deleting file on o [2001/11/24] bin/32261 dump creates a dump file much larger than o [2001/11/26] alpha/32289 alpha memory management fault o [2001/11/26] bin/32295 pthread dont dequeue signals o [2001/11/26] misc/32296 dwmalone brk() has illegal prototype o [2001/11/26] misc/32297 sound Scratchy sound, bad hiss with ALS4000 bas f [2001/11/27] kern/32331 system panic in quotaoff o [2001/11/27] kern/32338 Network to disk write performance low und o [2001/11/28] kern/32353 if kern.maxproc > 512 sybase ASE 11.9.2( o [2001/11/28] gnu/32365 obrien gcc optimiser bug with -O -march=i686 o [2001/11/29] bin/32374 vi -r doesn't work, file contained unexpe o [2001/11/29] ports/32382 znerd 'ant' doesn't work if JAVA_HOME not set o [2001/12/01] bin/32432 /etc/rc.diskless2 borken in stable. o [2001/12/03] ports/32465 ports emulators/vmware2 doesn't build o [2001/12/03] ports/32471 ports amavis-perl only usable for sendmail o [2001/12/03] ports/32476 skv New port: oracle7-client o [2001/12/03] ports/32477 skv New port: p5-DBD-Oracle-1.12 o [2001/12/03] ports/32491 ports XF86 4.1.0 DPMS not functioning o [2001/12/04] ports/32524 kde Port build failed: x11-toolkits/qt23 o [2001/12/05] ports/32529 kde Konqueror 2.2.2 refuses to follow some li o [2001/12/06] kern/32556 sound system crashes when unloading sound modul o [2001/12/06] ports/32558 olgeni www/sitecopy is broken o [2001/12/07] ports/32589 dirk mod_php4 configure script fails o [2001/12/07] bin/32591 assar The memory block doubly freed in Heimdal o [2001/12/08] kern/32600 luigi [PATCH] incorrect handling of parent rule o [2001/12/08] bin/32619 des libfetch does not use RFC 1738's definito o [2001/12/08] misc/32631 installing 4.4 "mounting root from ufs:/d f [2001/12/08] ports/32637 ports Can't make install ja-mozilla-jlp-0.9.6, o [2001/12/09] ports/32639 ports freeamp: preference AllowMultipleInstance o [2001/12/09] ports/32663 kde kdelibs2 port potentially conflicts with o [2001/12/10] kern/32668 peter NFS directory removal problems manifested f [2001/12/10] bin/32686 wosch locate command dumps a core file with bro o [2001/12/11] misc/32699 Tulip ether card EN2242 (if_dc.c) use wro o [2001/12/11] ports/32700 assar inode changes for large o [2001/12/11] kern/32716 system hangs when running vid (usb webcam o [2001/12/11] bin/32717 brian ppp(8) change mss to wrong size o [2001/12/12] bin/32759 [PATCH] make(1) System V include behaviou o [2001/12/12] misc/32760 Please MFC /usr/include/malloc.h to -STAB f [2001/12/12] bin/32791 ru FreeBSD's man(1) utility vulnerable to ol o [2001/12/13] kern/32797 Problem with IPX and netgraph(4) o [2001/12/13] ports/32800 dec gated dies on ppp interface up/down o [2001/12/13] ports/32805 ports The apache2 port overwrites configuration o [2001/12/13] kern/32809 yet another panic while syncing disks aft o [2001/12/13] bin/32817 tobez Base system includes outdated CGI module o [2001/12/14] kern/32827 small SO_RCVTIMEO values are taken to be o [2001/12/14] ports/32832 kde Kmail 1.3.2 / kde 2.2.1 / PGP 6.5.8 - kma o [2001/12/14] ports/32844 kde exiting konq term emulator causes crash o [2001/12/16] ports/32903 ports Kernel panic when returning from single m o [2001/12/16] ports/32922 trevor ports/devel/bin86 won't build with umask o [2001/12/16] misc/32924 dmlb raylink driver having problems receiving f [2001/12/17] ports/32943 ports PostgreSQL port broken o [2001/12/18] ports/32963 skv New port: p5-Class-ISA-0.32 o [2001/12/18] ports/32965 skv New port: p5-Class-BlackHole-0.03 o [2001/12/18] ports/32966 skv New port: p5-Ima-DBI-0.26 o [2001/12/18] ports/32967 skv New port: p5-Class-WhiteHole-0.03 o [2001/12/18] ports/32968 skv New port: p5-Class-DBI-0.36 o [2001/12/18] ports/32970 skv New port: p5-XML-DBMS-1.01.3 o [2001/12/18] ports/32974 skv New port: p5-Math-SimpleVariable-0.03 o [2001/12/18] ports/32975 skv New port: p5-Math-LinearCombination-0.03 o [2001/12/19] ports/33001 skv New port: p5-PodParser-1.18 o [2001/12/19] ports/33002 skv New port: p5-Pod-POM-0.11 o [2001/12/21] kern/33074 joe USB printer support does not detect print o [2001/12/21] ports/33080 ume grkrellmvolume interferes with the abilit o [2001/12/21] ports/33082 ports audio/mxv fails to compile o [2001/12/22] kern/33085 jlemon Samba's NMBD cannot find alias interface o [2001/12/22] bin/33087 ume No automatic ipf setup for IPv6 o [2001/12/22] ports/33093 jdp cvsup SNAP_16_1e breaks by SIGILL during o [2001/12/24] kern/33138 pnp problem in 4.3, 4.4, 4.5 o [2001/12/24] kern/33143 Kernel panic in uhci_abort_xfer_end o [2001/12/24] bin/33155 green [PATCH] sshd can leave hanging processes o [2001/12/25] ports/33170 ports zip -T [zip file] fails with message abou o [2001/12/26] kern/33201 net/net_osdep.c:if_name is broken o [2001/12/26] kern/33206 sound Soundcard f [2001/12/26] misc/33213 ume rarpd fails to init IPv6 enabled interfac o [2001/12/27] kern/33234 luigi dummynet localhost pipe causes machine to o [2001/12/27] bin/33235 find terminates with "find: fts_read: Per o [2001/12/29] misc/33315 pthread_key_create does not zero out the o [2001/12/30] kern/33344 memory leak in device resource config loa o [2001/12/30] kern/33346 jhb Kernel panic with SMP kernel o [2001/12/30] kern/33353 panic at odd times...idle, under no load, o [2001/12/30] misc/33370 Post configuration issue o [2002/01/01] ports/33440 ports Ports can not resume an interrupted downl o [2002/01/01] ports/33447 gnome Galeon cannot access secure pages without o [2002/01/02] kern/33464 dillon soft update inconsistencies after system o [2002/01/02] ports/33482 ports New port for gimp-print o [2002/01/03] bin/33515 amd incorrectly handles multi-homed nfs s o [2002/01/03] ports/33519 portmgr make index fails if PERL_VERSION is 5.6.1 o [2002/01/03] ports/33522 jkh Cvsupit out of date, RELENG_4 or RELENG_4 o [2002/01/04] pending/33532sound Playing audio on some soundcards with pcm o [2002/01/04] kern/33535 invalid kernel diagnostic while writing d o [2002/01/04] bin/33537 savecore cannot save kernel core if it's f [2002/01/04] gnu/33551 cvs chokes on OpenBSD repositories f [2002/01/05] kern/33578 FreeBSD panics when accessing encrypted D o [2002/01/06] ports/33614 ports port devel/pike is out of date ! o [2002/01/07] ports/33650 kde py-numeric, koffice, others are hard code o [2002/01/07] kern/33653 DSL PPPoE connection error on 4.5-PRERELE o [2002/01/07] ports/33667 ports [PATCH] mozilla locale description still o [2002/01/07] misc/33672 sheldonh telnetd and mount_mfs signal handlers cal f [2002/01/08] ports/33680 okazaki /usr/ports/graphics/aalib fails to compil o [2002/01/08] kern/33712 joe Duplicate make_dev panic in ugen.c + patc o [2002/01/09] misc/33723 select(2) implementation in threaded (-lc o [2002/01/09] kern/33738 argv == NULL is not handled correctly by a [2002/01/10] bin/33770 maxim ftpd performs an infinite loop after send f [2002/01/11] misc/33785 alfred Accept Filtering Stops Answering o [2002/01/11] ports/33795 ports [PATCH] quakeserver questionable file own o [2002/01/12] conf/33810 /etc/ttys: document how to make console i o [2002/01/13] kern/33833 Correct kernel config for 4.4-RELEASE is o [2002/01/13] kern/33839 joe usb0: host controller halted (involving A o [2002/01/13] alpha/33841 alpha ifconfig causes unaligned accesses on Alp o [2002/01/13] ports/33848 ports CUPS doesn't find parallel port f [2002/01/13] conf/33855 gshapiro freebsd.mc enables relay_based_on_MX: ope o [2002/01/14] ports/33878 ports perl 5.6.1 port doesn't run h2ph o [2002/01/14] bin/33881 adduser additions: selectable crypt schem o [2002/01/15] ports/33924 ports firebird-devel build fails - can not appl o [2002/01/15] ports/33925 ports update port www/cgi-lib o [2002/01/15] ports/33927 ports ja-dvipdfm port requires texmf/dvips/base o [2002/01/15] ports/33929 doc Section 15.15 of the FreeBSD Porter's Han o [2002/01/15] ports/33931 mbr trouble installing StarOffice 5.2 over li o [2002/01/16] kern/33940 quotactl allows compromise gid-quotas o [2002/01/16] ports/33972 ports stow upgraded (fixes serious bug re delet o [2002/01/16] kern/33974 Can not record anything with emu10k1 on 4 f [2002/01/17] kern/33978 can't kill process o [2002/01/17] i386/33986 sound SMP and audio causes hard lockups (random o [2002/01/17] ports/34006 ports new port: x11/fspanel o [2002/01/17] bin/34007 pkg_create -b forgets to include install o [2002/01/17] kern/34017 The siginfo_t passed to the signal handli o [2002/01/18] kern/34020 programs fail that poll(2) on fifos o [2002/01/18] pending/34021 Request to add ukrainian whois server to o [2002/01/18] bin/34030 miibus.ko can be loaded into the kernel w o [2002/01/18] pending/34031 hang with linux emulation in 4.5-RC o [2002/01/18] bin/34032 make fails to evaluate some reasonable co o [2002/01/18] i386/34033 Suspend doesn't work on Dell Latitude CPx o [2002/01/18] ports/34056 ports vmware2 complains of missing file o [2002/01/19] bin/34072 semenu corrupted transfers on mounted ntfs parti f [2002/01/19] misc/34073 3com 3c980c runs "bursty" / freezes-unfre o [2002/01/20] ports/34089 ports Maintainer-update: misc/libmcal causes er o [2002/01/20] i386/34092 reboot hangs the system (IBM PC Server 31 o [2002/01/20] ports/34099 java /usr/ports/java/jdk13 fails to build o [2002/01/21] ports/34110 des linux-opera TP3 doesn't work o [2002/01/21] ports/34124 gnome gnucash 1.65 doesnt build o [2002/01/21] gnu/34128 sdiff "e" doesn't work with some editors o [2002/01/21] ports/34153 andreas The apsfilter configure script adds bzip2 o [2002/01/22] ports/34188 ports security/p5-Authen-PAM o [2002/01/23] kern/34205 joe detect USB memory device, But can not use o [2002/01/23] ports/34212 cpiazza Segmentation fault in audio/gmixer o [2002/01/23] ports/34213 ports New Port: (ignore previous) lang/kawa Jav o [2002/01/23] ports/34214 ports New Port: lang/kawa Java Based Scheme Imp o [2002/01/24] kern/34228 Dual processor machine hangs at reboot o [2002/01/24] kern/34242 Off-by-one bug in /usr/src/sys/crypto/sha o [2002/01/24] gnu/34246 joe CVS doesn't rebuild CVSROOT/options o [2002/01/25] kern/34266 SMP does not work on CPQ0579 System board o [2002/01/25] i386/34267 semenu FreeBSD hangs and reboots when overloaded o [2002/01/25] bin/34269 tcpdump -v incorectly identifies packets o [2002/01/25] misc/34270 man -k could be used to execute any comma f [2002/01/26] kern/34306 gibbs 4.5-RC panics on boot with half-supported o [2002/01/26] ports/34308 ports perl build fails due to locales (*.ISO885 o [2002/01/26] ports/34313 ports Security: unbreak french/xtel o [2002/01/26] ports/34318 se ports/games/rt2-demo-files/do-install has o [2002/01/27] ports/34332 nik print/jadetext fails to build with TeX er f [2002/01/27] ports/34347 knu portupgrade (latest) dies on TypeError f [2002/01/28] ports/34388 knu portupgrade 20020128 won't upgrade since s [2002/01/28] misc/34390 roam incorrect error with getaddrinfo with hos o [2002/01/29] ports/34402 ports librsvg port broken o [2002/01/29] ports/34407 ports libwmf port broken o [2002/01/29] ports/34409 ports prc-tools from ports fails to compile on f [2002/01/29] i386/34422 crash system wnen kill pppd with reattach f [2002/01/29] ports/34431 ade gnomedb-0.2.95 fails to build o [2002/01/30] ports/34436 ports /usr/libexec/ld-elf.so.1: Shared object " o [2002/01/30] ports/34444 ports Python 2.2 fails to find socket symbol o [2002/01/30] misc/34458 green 4.5S/sshd forwarding problems o [2002/01/30] ports/34467 portmgr bsd.port.mk is broken WRT USE_AUTOCONF_VE o [2002/01/31] ports/34480 jmz system hangs after killing xinit o [2002/01/31] ports/34510 knu ruby hardcodes /usr/local $LOAD_PATH, ign o [2002/01/31] ports/34512 ports [PATCH] Fix linking errors in deskutils/m o [2002/01/31] ports/34516 ports /usr/ports/misc/compat3x package doesn't o [2002/01/31] ports/34517 ports /usr/ports/misc/compat4x package doesn't o [2002/01/31] ports/34518 trevor WRKDIRPREFIX in /etc/make.conf causes lin o [2002/02/01] i386/34536 accept() blocks other threads o [2002/02/01] bin/34539 [PATCH] fsck(8) doesn't account for negat o [2002/02/01] kern/34544 Kernel crash on fclose() of /dev/kbd1 whe o [2002/02/02] ports/34558 sobomax wxgtk-devel port broken o [2002/02/02] ports/34562 knu pkg_tarup-1.2_3 has invalid distinfo name o [2002/02/02] misc/34568 turning printer on and off hangs the comp o [2002/02/03] ports/34584 ports New port: mail/nocc (A webmail system bas o [2002/02/03] bin/34586 burncd -t blank blanks CD o [2002/02/03] i386/34588 read-prefetch on VIA 686B IDE causes hang o [2002/02/03] ports/34593 anders minicom-2.00.0 does not build when autoco o [2002/02/03] ports/34599 ports Imagemagick a [2002/02/03] bin/34601 sheldonh bc(1)'s multi-line file parsing problem o [2002/02/04] i386/34607 peter incorrect PAP authorization in pppd o [2002/02/04] kern/34619 TCP - FINs with different sequence number o [2002/02/05] ports/34636 ports XmHTML does not build: debug.c:113: initi o [2002/02/05] ports/34648 ports system hangs if you 'shutdown now' while o [2002/02/06] ports/34661 ports lang/gcl fails to compile f [2002/02/06] ports/34664 ade Build of GNumeric/Bonobo has hidden depen o [2002/02/06] kern/34672 NEWCARD panic. o [2002/02/06] kern/34677 burncd does not work with USB CDRW o [2002/02/06] bin/34682 scanf/sscanf doesn't understand %lld o [2002/02/06] i386/34684 sysinstall core-dumped o [2002/02/07] ports/34691 ports new port for sfs - the self-certifying fi o [2002/02/07] ports/34692 ports typing error in bsd.port.mk o [2002/02/07] ports/34705 gnome Galeon 1.0.3 won't build with mozilla 0.9 o [2002/02/07] ports/34710 ports Add CONFLICT= (like BROKEN=) to bsd.port. o [2002/02/07] ports/34715 nakai x11-wm/xfce broken due to missing -liconv o [2002/02/07] bin/34725 sos burncd cannot write audio file as the 1st o [2002/02/07] bin/34727 ``/bin/mkdir -p /'' fails o [2002/02/08] ports/34730 ports new port qmail-scanner - a virus-scanning o [2002/02/08] ports/34734 ports There is no pngquant port o [2002/02/08] misc/34739 [BROKEN] The FreeBSD PR submission system o [2002/02/08] bin/34741 pkg_info -R gives empty output o [2002/02/09] kern/34764 cisco aironet driver freezes with toshiba o [2002/02/09] kern/34765 Unloading the ipl.ko module will panic th o [2002/02/10] kern/34801 TCP window size bug (afflicting IP Filter o [2002/02/10] bin/34811 sh: "jobs" is not pipeable o [2002/02/11] ports/34829 ports new port: pisg 0.36 o [2002/02/11] misc/34842 VmWare port + NIS causes "broadcast storm o [2002/02/11] ports/34855 ports PostgreSQL update -> 7.2 o [2002/02/11] ports/34856 ports new port databases/postgresql-jdbc o [2002/02/11] ports/34861 ports Update of databases/p5-Pg to sync with po o [2002/02/11] ports/34868 jmz print/texinfo: change dependency tex ==> o [2002/02/12] ports/34872 ports New Port: KOggTag is a KDE-based tag edit o [2002/02/12] ports/34887 ports Apache modules installed from ports with o [2002/02/12] ports/34893 ports RUS-CERT Advisory 2002-02:01: Temporary f o [2002/02/12] kern/34895 Linuxulator linux_fcntl64() doesn't handl o [2002/02/12] ports/34897 ports pptpclient-1.0.3 package requires libgnug o [2002/02/13] i386/34902 FTP session causes server reboot o [2002/02/13] ports/34907 sf 4.5/ports/ftp/wget+ipv6 hangs top make o [2002/02/13] ports/34911 znerd mod_jk/jakarta-tomcat installation proble o [2002/02/14] gnu/34939 tar quits silently creating archive conta o [2002/02/14] ports/34943 ports ports/mail/ecartis o [2002/02/14] docs/34947 doc Updated/Translated Article on Filtering B o [2002/02/15] pending/34957gnats-adminUpdate port: net/ettercap (Security Fix R o [2002/02/15] ports/34959 knu portupgrade package - dependency update o [2002/02/15] ports/34962 gnome gnomepilot backup conduit won't back up a o [2002/02/15] ports/34990 kde Kde coredump on halt o [2002/02/16] ports/34995 gnome distfile for ports/devel/pkgconfig unfetc o [2002/02/16] kern/35004 [PATCH] Fix for pcm driver lockups o [2002/02/16] ports/35005 ports cleanup for graphics/libggi's pkg-plist o [2002/02/16] bin/35017 /sbin/route: weird behaviour with using t o [2002/02/16] ports/35019 keith chinese/big5fs patch of ntfs was outdated o [2002/02/17] ports/35050 ports Failure of port drm-kmod to correctly ini o [2002/02/17] kern/35061 After printing to HP Deskjet 656c USB pri o [2002/02/18] bin/35071 include/arpa/inet.h broken: must include o [2002/02/18] bin/35076 sh builtin test command sets real uid to o [2002/02/18] kern/35081 zebra routing problem - kernel bug??? 849 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1995/01/11] i386/105 Distributed libm (msun) has non-standard s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/11/20] kern/831 one minor complaint about the kernel visu a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases a [1996/07/07] bin/1375 eivind Extraneous warning from mv(1) [PATCH] s [1996/10/13] misc/1791 tegge syslimits.h does not allow overriding def f [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/12/02] bin/2137 tegge vm statistics are bad s [1996/12/14] bin/2216 [PATCH] Ada specs not being compiled into o [1996/12/24] kern/2273 dufault support for POSIX.4 / POSIX.1a RT-schedul s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po a [1996/12/27] misc/2302 brandon new crypt() including SHS and an extendab o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/28] bin/2603 dufault Added POSIX.4/POSIX.1b constants in unist a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d s [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/03/03] kern/2865 peter NFS client hangs on umount, ls, df when N o [1997/03/10] bin/2934 cracauer sh(1) has problems with $ENV s [1997/03/10] bin/2938 hoek Add -b, -l, and -f options to du(1) f [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO f [1997/04/07] ports/3225 dinoex [PATCH] uucpd.c should normalize host nam o [1997/04/14] bin/3284 mikeh [PATCH] symorder(1): -t option doesnґt wo a [1997/05/08] gnu/3552 the -L option of tar does not work proper f [1997/05/16] bin/3608 jkoshy Telnet in linemode will break apart long o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) f [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/24] kern/3944 paul if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 jlemon nonworking t/tcp server side o [1997/07/18] bin/4116 davidn Kerberized login as .root fails to s [1997/07/26] bin/4172 des suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk f [1997/08/07] kern/4243 file locking doesn't work for pipe o [1997/08/08] misc/4249 wpaul ypchsh doesn't care about changing a user o [1997/08/13] kern/4297 dufault SIGEV_NONE and SIGEV_SIGNAL go in signal. o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/14] ports/4304 portmgr Recommendation re. Ports Collection o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 roberto find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta f [1997/09/13] kern/4528 processes hang if the mount_portal proces o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 qa Can't fixit with an NFS-mounted CD. o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/10/15] gnu/4771 diff to correct misleading total bytes in o [1997/10/24] kern/4845 Boot complains about disk slices in FAT p f [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/13] bin/5031 gad lpr does not remove original file if -s i s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/11/30] i386/5182 bde [PATCH] A patch support high speed serial s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with o [1998/01/11] bin/5483 Login(1) clears utmp entry s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 jkoshy Trouble with LD_PRELOAD environment varia o [1998/01/31] bin/5609 gad lpd cannot send long files to HP's JetDir o [1998/02/09] kern/5689 phk sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] bin/5712 mikeh /bin/chio code cleaup and option added o [1998/02/14] bin/5745 nik [PATCH] Add /usr/local/share/mk to defaul o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT a [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/03/11] gnu/5982 no error exit code from tar on child fail f [1998/03/28] bin/6161 assar 2.2.6 kerberos servers are awfully visibl f [1998/03/30] bin/6176 running architextSearch (excite) under li f [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i a [1998/04/16] misc/6320 mike Sometimes nohup isn't good enough. o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 joe Kernel version strings need to relate to f [1998/05/11] i386/6595 Old IP address persistent after change f [1998/05/12] misc/6612 bsd.man.mk can't handle man pages with ": o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje s [1998/05/17] kern/6668 babkin [PATCH] new driver: Virtual Ethernet driv s [1998/05/29] bin/6785 place for all the default dump flags s [1998/06/01] kern/6820 jesper cd9660_mount NULL pointer deref for no CD f [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/22] bin/7023 portmgr bsd.port.(%|subdir.).mk patches for size s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b s [1998/06/28] i386/7100 integrate pcvt configuration into the /et s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % f [1998/07/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, s [1998/07/10] misc/7232 qa Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel o [1998/07/12] bin/7265 A warning flag is added to ln(1). f [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m a [1998/07/19] bin/7324 Suggestions for minor modifications to ad s [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace s [1998/08/18] bin/7669 libalias does not IRC DCC packets under c o [1998/08/19] gnu/7687 description of default baud rate for cu c s [1998/08/22] kern/7722 Changes to acct format o [1998/09/03] bin/7828 Add a command line option to cp to make i o [1998/09/08] bin/7860 gad Extra option to pr(1). s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/16] misc/7946 asami ccdconfig gives confusing error when give o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re s [1998/09/21] kern/8015 nbm [patch] Some sysctl descriptions for the o [1998/09/27] ports/8063 portmgr [PATCH] Add multiple CDROM support to bsd o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) f [1998/10/12] bin/8295 order of options in printcap causes some f [1998/10/16] kern/8349 [PATCH] Changer definition for SureStore o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/27] i386/8474 repquota does not pick up NIS information a [1998/10/28] bin/8479 dd Final \'s in /etc/exports did not work in f [1998/10/30] kern/8498 dwmalone Race condition between unp_gc() and accep o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> f [1998/11/08] kern/8604 ps u gets confused about process start ti f [1998/11/09] kern/8633 TCP packet via SLIP/CSLIP containing this o [1998/11/27] i386/8867 qa /stand/sysinstall core dumps (signal 11) o [1998/12/16] ports/9107 portmgr Addition to bsd.port.mk for searching mul a [1998/12/18] bin/9123 kris pax can't read tar archives that contain f [1998/12/28] misc/9220 ache nvi: catalog: mistake in Russian error me o [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy o [1999/01/04] bin/9318 vgrind(1): no JAVA support a [1999/01/05] bin/9333 jkoshy timestamp dump's progress f [1999/01/08] kern/9392 Alternate system clock OR kernel stats cl o [1999/01/19] kern/9570 dfr ed(4) irq config enhancement o [1999/01/22] kern/9619 Restarting mountd kills existing mounts f [1999/01/25] kern/9679 fix for uninterruptible open in portal fi f [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. f [1999/01/28] kern/9748 error in queue handling of at_shutdown() a [1999/01/28] bin/9770 kris An openpty(3) auxiliary program o [1999/01/29] i386/9777 cg Generic AD1816 sound suport in Luigi's pc o [1999/01/31] ports/9840 portmgr patch allows ports to fetch their sources o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s o [1999/02/01] conf/9874 idle-timeout facilities in /etc/login.con o [1999/02/03] bin/9902 error in german (and some other) locale s o [1999/02/09] i386/9991 new driver for National Instruments GPIB o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/02/25] docs/10240 wosch We need a script which check if our web m f [1999/02/26] bin/10283 Race condition in rc.network o [1999/03/02] bin/10358 yar ftp(1) has problems with long pathnames f [1999/03/05] ports/10396 asami SPIN is in the wrong category f [1999/03/07] i386/10465 mdodd Must disable ex0 to install. o [1999/03/15] i386/10608 add Opti Viper-M PCI ID f [1999/03/15] kern/10609 adjtime bug (tv_sec > 2147) and enhanceme o [1999/03/15] bin/10610 New options to date to slowly adjust time o [1999/03/15] bin/10611 timed enhancement o [1999/03/17] kern/10641 groudier Default sync rate in ncr SCSI driver is s o [1999/03/19] gnu/10670 cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re f [1999/03/19] kern/10678 Printing problems using ppc bus o [1999/03/19] ports/10682 portmgr List mirror sites in MASTER_SITE_BACKUP - o [1999/04/03] bin/10931 biff b o [1999/04/05] ports/10965 ports lcc-3.6 unable to compile anything o [1999/04/08] kern/11020 popen does not honor ISO 9899 syntax o [1999/04/08] bin/11036 markm Perl does not honor -DNOMAN o [1999/04/10] conf/11058 Recent change to rc script causes hang on o [1999/04/11] bin/11085 Per-host configuration for syslog.conf o [1999/04/11] bin/11092 readlink(1) from OpenBSD o [1999/04/13] bin/11114 make(1) does not work as documented with o [1999/04/14] ports/11134 hoek existense of /usr/obj/usr/ports/shells/ba o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 a [1999/04/16] bin/11168 davidn pw(8) usermod does not recognize -w flag f [1999/04/20] bin/11236 mountd fails to properly check for kernel o [1999/04/20] bin/11248 Shuffle o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi o [1999/05/19] kern/11789 obrien ELF machine definition missing for ARM o [1999/05/28] bin/11914 wosch makewhatis during installworld uses /usr/ o [1999/05/29] bin/11929 symorder doesn't work on elf format objec f [1999/05/30] kern/11945 mjacob tape problems on -stable, mt bl(ocksize), f [1999/05/31] kern/11968 kldload should call module entry point be f [1999/06/01] i386/11979 Vaio 505DX touchpad not detected as Glide o [1999/06/03] kern/12014 alfred Fix SysV Semaphore handling o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor o [1999/06/07] kern/12071 [PATCH] large scale IP aliasing o [1999/06/08] i386/12088 Enhancement to ed driver for Linksys 10/1 o [1999/06/16] bin/12244 realpath() fails when there is no permiss o [1999/06/18] bin/12280 jdp LD_IGNORE_MISSING_OBJECTS not honored for f [1999/06/18] kern/12281 active-filter option in pppd doesn't stop o [1999/06/21] conf/12324 qa Sysinstall's fdisk partition editor is mi o [1999/06/21] ports/12325 portmgr Adds refetch functionallity to bsd.port.m s [1999/06/23] bin/12358 ken Patch: "camcontrol help" should go to std f [1999/06/24] i386/12383 make release warns about /dev entries mak o [1999/06/26] bin/12398 fsck in free(): warning: pointer to wrong o [1999/06/28] conf/12432 dougb empty amd_flags causes start failure in r o [1999/07/06] kern/12543 dg [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 peter kldload(8) should be more sensitive to er o [1999/07/08] ports/12566 billf a guide to pyrotechnics o [1999/07/20] kern/12723 des Unnecessary use of magic numbers in F_[SG o [1999/07/25] bin/12801 nvi infinite recursion with options "left o [1999/08/03] bin/12939 add flag to quota to suppress NFS quota c o [1999/08/04] ports/12952 portmgr make _PORT_USE touch cookies by variable, f [1999/08/04] kern/12966 wpaul receiver lockups in vr0 driver f [1999/08/05] bin/12982 keramida last does not support -y option. f [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/09] bin/13042 make doesn't handle wildcards in subdirec o [1999/08/09] bin/13043 minigzip -c option support. f [1999/08/10] kern/13062 lnc ethernet xmit underflow problem o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/11] bin/13072 billf Extensions to biff(1) o [1999/08/11] bin/13073 billf Extensions to mesg(1) o [1999/08/12] bin/13108 authunix_create_default includes egid twi o [1999/08/13] bin/13128 billf pkg_delete doesn't handle absolute pathna o [1999/08/15] kern/13161 alfred mounting on top of a mounted file system f [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque o [1999/08/21] bin/13309 billf Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for ' cannot be used in "via" o [2000/05/30] kern/18909 dwmalone select(2) timeout limited to 100000000 se o [2000/06/01] ports/18960 portmgr Add USE_APACHE to bsd.port.mk for Apache o [2000/06/01] bin/18961 green sshd does not print before motd o [2000/06/03] bin/18992 brian log packets blocked by filter rules o [2000/06/03] misc/18997 markm Kerberos5 CFLAGS needed f [2000/06/04] conf/19001 Delayed fsck + mount of insignificant fil o [2000/06/06] ports/19051 asami New target for bsd.port.mk : fetchdepends f [2000/06/06] bin/19057 offer of patch to uname that produces pre o [2000/06/07] ports/19112 portmgr files with names something,v in patches d o [2000/06/09] kern/19156 jkh Enable the doFS.sh to run in arbitrary lo o [2000/06/11] kern/19213 SC_DFLT_FONT compile option breaks kernel f [2000/06/13] conf/19236 sanpei not-existing PCMCI cards in pccard.conf.s o [2000/06/13] bin/19239 login allows users to login remotely with o [2000/06/13] misc/19246 portmgr Poor error message when fetching files wi o [2000/06/13] ports/19253 dirk mod_php4 has pkg dependency when not usin o [2000/06/14] ports/19270 portmgr Ports build mechanism doesn't check wheth o [2000/06/15] gnu/19327 Fix to build 'a.out' binary. o [2000/06/19] misc/19391 emulationEvilness with Linux Terminus, causes X to o [2000/06/20] bin/19404 /usr/bin/error should be included in the o [2000/06/20] misc/19406 setenv() allocates memory which is not fr a [2000/06/21] bin/19422 mikeh users can overflow argv to make ps segfau o [2000/06/22] ports/19448 markm filename input broken o [2000/06/23] misc/19467 green OpenSSH (as an rsync tunnel) blocks forev o [2000/06/24] kern/19490 faith0 network device has high number of o [2000/06/26] kern/19535 adrian procfs_rlimit tidyup s [2000/06/28] conf/19573 des Dot Files for Optional Shells o [2000/06/29] ports/19591 ports ssh2 port ignores 'ignorenologin' from lo o [2000/06/30] ports/19594 trevor update port: qrash o [2000/07/01] bin/19635 add -c for grand total to df(1), like du( o [2000/07/02] gnu/19642 kbyanc patch to merge OpenBSD changes to patch(1 o [2000/07/02] ports/19650 asami python package causes segmentation fault o [2000/07/03] bin/19683 green mount displays incorrect mount point on f a [2000/07/03] kern/19686 yokota splash screen fails o [2000/07/05] kern/19720 kbyanc more sysctl signed-ness patches o [2000/07/06] gnu/19733 mp GDB 4.18 is not GDB 4.18 o [2000/07/07] kern/19756 Inability to use linux extended partition o [2000/07/07] bin/19772 df output wrong for union-mounts o [2000/07/08] kern/19782 dirk mkisofs 1.12.1 (i386-unknown-freebsd4.0) f [2000/07/09] misc/19798 cg 4DWAVE doesn't work. o [2000/07/10] kern/19827 yokota psm flag bit9(NOIDPROBE) doesn't work cor o [2000/07/10] misc/19837 ambrisko Run Fit it floppy from serial port o [2000/07/12] ports/19868 portmgr modify ports/Mk/bsd.port.mk to remove ALL o [2000/07/12] kern/19871 alfred select on named pipes always returns 'ava o [2000/07/14] kern/19913 des add SYN+FIN counter o [2000/07/15] kern/19966 new syscons screensaver o [2000/07/18] gnu/20004 FBSD4 gcc __attribute__(constructor) not o [2000/07/18] misc/20024 jake [PATCH] queue(3) concatenation macros o [2000/07/19] bin/20042 "rsh -t" doesn't timeout if rcmd(3) never o [2000/07/20] bin/20054 ftpd: rotating _PATH_FTPDSTATFILE losts x o [2000/07/23] docs/20121 jim Better user ppp documentation in man page o [2000/07/24] misc/20139 msmith Simple typo in src/share/examples/ppi/ppi o [2000/07/24] ports/20145 dburr improving the devel/SN port o [2000/07/24] misc/20159 strftime() can't produce ISO8601 format t o [2000/07/24] misc/20166 billf Corrections & additions to games/quiz/dat o [2000/07/26] bin/20204 ps more doesn't handle 8-bit characters prop o [2000/07/27] kern/20214 dec kernel routing bug for nexthop is routed o [2000/07/28] misc/20254 jhb BTX loader 1.00 can not recognize floppy o [2000/07/28] ports/20270 reg libtool needlessly runs ldconfig after in o [2000/07/29] kern/20297 cg Joystick is not enabled with es1370 based o [2000/07/31] misc/20326 marcel [PATCH] installkernel fails if DESTDIR is o [2000/07/31] misc/20333 ftp login fails on unix password when s/k o [2000/08/01] kern/20352 yokota Configuring a synaptics touchpad o [2000/08/02] ports/20359 demon New port: Apache-mod_perl_guide o [2000/08/02] bin/20371 dhclient inserts bogus configurations o [2000/08/03] kern/20384 n_hibma Phase errors with Zip650 CD on USB o [2000/08/03] kern/20389 ken "device pass" required for CD ripping o [2000/08/03] bin/20391 jhb sysinstall should check debug.boothowto s a [2000/08/03] kern/20393 silby processes get stuck in vmwait instead of o [2000/08/04] kern/20410 sio support for high speed NS16550A, ST16 o [2000/08/05] conf/20436 Can't make only cd0 under 4.1-STABLE o [2000/08/07] misc/20457 davidn pw command doesn't generate random passwo o [2000/08/09] ports/20499 obrien [PATCH] conserver port doesn't like MD5 c o [2000/08/09] bin/20501 mjacob extra flag to dump to offline autoloaders a [2000/08/10] ports/20520 olgeni New port: lang/mercury o [2000/08/10] docs/20528 doc sysconf(3) manpage doesn't mention posix. s [2000/08/10] kern/20529 billf gigabit cards fail to link o [2000/08/11] i386/20537 msmith HP NetRAID controller error when rebootin a [2000/08/14] ports/20601 ports DESTDIR and /etc/shells a [2000/08/14] ports/20610 patrick New port of cgoban2 o [2000/08/15] bin/20613 des fetch -T n is not timeout correctly when o [2000/08/16] i386/20660 wpaul if_wi provides 802.11 src and dst, not et o [2000/08/17] ports/20678 portmgr make SORTED_MASTER_SITES_CMD variable ove o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE s [2000/08/22] conf/20774 dougb 'NFS access cache time=2' is not a daemon o [2000/08/23] ports/20795 msmith FBSD 4.x: Citrix client with drive mappin o [2000/08/23] bin/20799 davidn top's problem o [2000/08/23] i386/20803 mdodd ep0 driver finds additional "shadow" ep c o [2000/08/23] kern/20804 deadlocking when using vnode disk file an o [2000/08/24] bin/20824 ftpd returns, "ad0s1a: not a plain file." o [2000/08/24] misc/20830 lile kernel link problems with Olicom token ri o [2000/08/25] i386/20845 Cyclades cy driver incompatible with Cycl o [2000/08/26] kern/20878 wpaul Patch to add support for the 3c556B MiniP o [2000/08/26] bin/20881 kris There's no reason not to build DNSsec-DSA o [2000/08/27] bin/20889 dwmalone syslogd.c still uses depreciated domain A o [2000/08/28] bin/20908 qa /stand/sysinstall too limited in selectio o [2000/08/29] misc/20920 yokota window(1) interferes with screensaver o [2000/08/29] kern/20927 ume dmesg output: looutput: mbuf allocation f o [2000/08/30] bin/20944 ru natd enhancements, default config file an o [2000/09/02] bin/20996 kris permissions on /usr/bin/opiepasswd o [2000/09/02] bin/21008 gad Fix for lpr's handling of lots of jobs in o [2000/09/04] bin/21024 pow() ERANGE bug o [2000/09/05] conf/21059 marcel `make -jN buildkernel' can't keep source o [2000/09/05] conf/21066 Proposed change in rc scripts o [2000/09/05] misc/21070 marcel default setting of ${SUP} in Makefile.inc o [2000/09/06] bin/21074 davidn chkgrp vs group(5) inconsistency f [2000/09/06] bin/21075 dwmalone top: can't allocate sufficient memory o [2000/09/06] bin/21080 mjacob dump doesn't use eject tape device correc o [2000/09/09] bin/21142 [PATCH] avoid errors from "make objlink" o [2000/09/09] kern/21156 yokota [PATCH] inconsistency in scmouse vs xterm s [2000/09/10] bin/21178 ken voltag selector, and unload support for c o [2000/09/12] kern/21222 dillon wrong behavior of concurrent mmap()s on N o [2000/09/12] kern/21229 Proper value for vfs.nfs.access_cache_tim o [2000/09/16] bin/21312 more incorrectly redraws screen on xterm f [2000/09/16] ports/21313 mbr vmwarIPv6 and vmware2 panic: Fatal trap 1 o [2000/09/16] bin/21315 Shells often behave oddly when executing o [2000/09/22] misc/21494 yar ftpd can't handle /etc/chroot entries wit o [2000/09/24] bin/21519 sys/dir.h should be deprecated some more o [2000/09/24] bin/21531 csh/tcsh provide no way to see/adjust new f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q o [2000/09/28] ports/21621 portmgr Update port: devel/libtool to 1.3.5 f [2000/09/28] kern/21623 wpaul Chipset SiS630E / NIC SiS 900 o [2000/09/29] misc/21644 /usr/include/sys/mman.h uses a type defin s [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/10/01] i386/21672 obrien AMD Duron Rev. A0 reports incorrect L2 ca o [2000/10/01] misc/21675 Better and more disktab entries for MO dr o [2000/10/02] conf/21695 ifconfig_XXX_aliasY in rc.conf; Y must be o [2000/10/02] misc/21715 The freebsd mail list digifier loses MIME o [2000/10/02] ports/21719 nbm New Port: Courier Mail Suite o [2000/10/04] bin/21751 ken libcam's cam_real_open_device() may lose o [2000/10/04] kern/21754 n_hibma Sound stops working when NetGear USB Devi o [2000/10/05] ports/21765 portmgr I cat't make ports using pw_gid) != typeof(group->g o [2000/10/26] conf/22308 mounting NFS during boot blocks if host m o [2000/10/26] misc/22332 request to add vtys to /etc/ttys o [2000/10/27] bin/22351 sed(1) fails with backslash on buffer bou o [2000/10/29] ports/22399 msmith PIB 1.2 still looks for MD5 info in files o [2000/10/30] ports/22412 taoka two extraneous ports and one name change f [2000/10/30] misc/22434 problem with certain NIC's using rl on au o [2000/10/31] bin/22442 greid [PATCH] Increase speed of split(1) s [2000/11/01] docs/22470 doc man 3 msgrcv's BUGS section needs updatin o [2000/11/02] ports/22550 obrien Patch for conserver for log file rotation o [2000/11/04] kern/22602 CDRoms checked during shutdown (umount) o [2000/11/04] bin/22612 crontab -e failures o [2000/11/06] conf/22645 Cannot override "ignore" in /etc/mail.rc o [2000/11/07] misc/22660 termcap kterm entry tc=xterm is wrong a [2000/11/08] misc/22696 luigi picobsd build with router configuration c o [2000/11/08] ports/22698 portmgr Ports' rc.d files should use rc.conf o [2000/11/09] bin/22730 fenner tcpslice doesn't handle long file offsets f [2000/11/14] conf/22859 darrenr rc.network should start ipf/ipnat AFTER p o [2000/11/14] bin/22860 yar [PATCH] adduser & friends with '$' in use o [2000/11/14] docs/22861 dd newsyslog man page is misleading and inco o [2000/11/15] kern/22868 getsockname may return an incorrect addre o [2000/11/15] misc/22873 markm Perl's core'h conflicts with ncurses.h o [2000/11/16] i386/22900 patch: Adds Brand ID support to src/sys/i o [2000/11/17] misc/22914 bootinst messages are not updated s [2000/11/17] conf/22916 green Ssh/sshd binaries lacks kerberos support o [2000/11/17] bin/22933 green Typographical error in ssh.1 f [2000/11/20] ports/22995 grog Update port: x11-servers/x2x (fix ports/2 o [2000/11/23] conf/23063 ru [PATCH] for static ARP tables in rc.netwo o [2000/11/24] bin/23082 dwmalone ntpd has only one reference-clock parser f [2000/11/24] misc/23084 mount_nfs hangs self with some NFS server o [2000/11/25] bin/23097 Enhance WEP some more including ability t o [2000/11/27] misc/23148 getopt(3) works non-intuitively? o [2000/11/29] bin/23178 'talk' not doing right thing o [2000/11/29] bin/23180 Certain KOI8 characters are treated as "w o [2000/12/01] bin/23204 length of salt in crypt() is not the same a [2000/12/02] ports/23232 ports gettext/xview port collision o [2000/12/02] bin/23233 kris Reincorporate /usr/bin/error in the FreeB a [2000/12/03] bin/23254 fenner yacc accepts bad grammer o [2000/12/04] ports/23287 portmgr allow system-local patches for ports o [2000/12/05] kern/23304 POSIX clock_gettime, clock_getres return f [2000/12/05] kern/23314 aic driver fails to detect Adaptec 1520B f [2000/12/07] misc/23362 fenner tcpdump wrong on sppp CISCO_HDLC encoded o [2000/12/07] misc/23366 mmap() non conforming o [2000/12/07] gnu/23367 some src/gnu Makefiles are missing $FreeB o [2000/12/09] conf/23402 sysinstall upgrade ought to check partiti o [2000/12/11] bin/23472 mp gdb weirdness on programs compiled with - a [2000/12/12] ports/23499 ports [NEW PORT]: Two LaTeX macro package ports o [2000/12/13] kern/23520 sb0 old style audio support in 4.2-RELEAS o [2000/12/13] misc/23539 marcel make installworld from nfs mounted /usr/s o [2000/12/14] kern/23546 tanimura [PATCH] csa DMA-interrupt problem o [2000/12/14] ports/23560 portmgr linux-jdk/Makefile assumes default `patch o [2000/12/15] i386/23562 telnetd doesn't show message in file spec o [2000/12/15] ports/23581 portmgr Updates to bsd.port.mk to detect changing o [2000/12/17] gnu/23598 Merge libgcc_r with libgcc o [2000/12/17] ports/23602 portmgr Recursive distclean for bsd.port.mk w/pat o [2000/12/18] bin/23635 mike [PATCH] whois enhancement - smarter whois f [2000/12/20] kern/23692 GENERIC kernel config on 4.2 changes defa o [2000/12/22] misc/23766 /etc/periodic/daily/440.status-mailq does o [2000/12/24] kern/23814 .au sound files < 528 bytes actual data d o [2000/12/24] ports/23822 ports mtree entries for German X11 man pages a [2000/12/28] bin/23912 sheldonh underflow of cnt in vs_paint() by O_NUMBE o [2000/12/29] bin/23944 Patch for ftpd to add a cd after the chro o [2001/01/04] bin/24066 mp gdb can't detach from programs linked wit o [2001/01/06] ports/24120 portmgr "/usr/ports/Mk/bsd.port.mk", line 626: In o [2001/01/07] misc/24132 mp gdb output is wrong (same as #13427 ?) o [2001/01/07] kern/24141 sound emu10k1 has trouble playing non-44.1KHz s o [2001/01/10] ports/24214 portmgr [PATCH] verbose 'make index' o [2001/01/11] ports/24259 steve port of open-motif on make install compla o [2001/01/12] ports/24292 portmgr update-patches target in ports/Mk/bsd.por o [2001/01/12] ports/24299 ports Configure the synaptics touchpad. a [2001/01/14] misc/24324 phantom Greek console support o [2001/01/15] ports/24361 asami wrong filemodes o [2001/01/16] misc/24384 4.1 Cant add entry to neighbour discovery o [2001/01/16] bin/24390 Replacing old dir-symlinks when using /bi o [2001/01/16] kern/24393 Patch to msdosfs to handle a kind of inco o [2001/01/18] bin/24435 Changing slice type causes Auto-partition o [2001/01/20] bin/24485 [PATCH] to make cron(8) handle clock jump o [2001/01/20] ports/24493 msmith Pib maker function unable to launch xterm a [2001/01/21] kern/24512 jesper Sent ICMP unreach when packet not for us o [2001/01/21] misc/24513 peter new options for pppd o [2001/01/21] conf/24515 Fix for find(1) warning in /etc/rc o [2001/01/21] bin/24521 green ssh-agent exits when authenticating DSA v o [2001/01/22] kern/24528 Bad tracking of Modem status o [2001/01/23] bin/24569 PATCH for PPPD o [2001/01/23] bin/24592 cjc dmesg.boot Gets Overwritten without Reboo o [2001/01/25] ports/24651 mharo portlint gives a bogus warning o [2001/01/26] ports/24658 jkh Enhancement to src/release/Makefile a [2001/01/26] ports/24660 ports New port: Xerces-C 1.3.0 o [2001/01/26] alpha/24663 alpha Console output gets scribbled into /var/l o [2001/01/27] gnu/24681 gcc 2.95.3 cannot compile rince.c from IO o [2001/01/27] ports/24687 ports QUAKE FORGE & SVGALIB a [2001/01/30] ports/24736 ports New port: SGI's open inventor (graphics/i o [2001/01/30] bin/24742 send adduser.message before dirs are crea o [2001/01/30] ports/24743 chuckr a2ps port installs files in / o [2001/01/30] misc/24746 green SSH terminal hangs on large paste of data o [2001/01/30] ports/24749 dirk mysql323-server pkg-install script doesn' o [2001/01/31] bin/24757 ftpd not RFC compliant o [2001/02/01] docs/24786 doc missing FILES descriptions in sa(4) o [2001/02/02] docs/24797 phk when using MALLOC_DEFINE sys/param.h and o [2001/02/03] kern/24827 yokota Erratic Intellimouse Explorer in 4.1 and o [2001/02/03] bin/24828 [PATCH] ntpd compilation and additional r f [2001/02/04] gnu/24844 gdb does not support Linux threads a [2001/02/05] docs/24869 keramida Some text elf.5 is duplicated o [2001/02/05] kern/24882 ktrace not syncing .out file before panic o [2001/02/06] kern/24900 Server logs:indfcntl(8, F_SETFL, 4): Inap o [2001/02/06] kern/24902 IPC Message Queue number to big o [2001/02/06] misc/24907 qa Options screen at MenuMedia menu problem o [2001/02/07] ports/24940 demon prolem with Tnm::icmp echo command due to o [2001/02/08] bin/24953 green adduser ignores passwd_format in login.co o [2001/02/08] kern/24959 jesper proper TCP_NOPUSH/TCP_CORK compatibility o [2001/02/08] i386/24963 perfmon(4) doesn't work on SMP systems o [2001/02/09] ports/24983 asami Emacs ports have misleading names o [2001/02/10] ports/24987 nbm New port: Courier mail server. o [2001/02/11] bin/25012 tar(1) as root does not preserve ownershi o [2001/02/11] bin/25013 mv(1) cannot move unresolvable symlinks a o [2001/02/11] bin/25015 cp: options -i and -f do not work as docu a [2001/02/11] docs/25016 ru symlink(7) manpage says symlinks have no o [2001/02/11] bin/25017 cp -pRP does not preserve symlink ownersh o [2001/02/11] kern/25018 lstat(2) returns bogus permissions on sym o [2001/02/12] ports/25031 ache www/apache: dbmmanage fails verifying md5 o [2001/02/13] bin/25059 dlopen(..,RTLD_GLOBAL) doesn't work for s o [2001/02/13] bin/25070 newsyslog(8) should send signals only onc o [2001/02/13] bin/25085 msmith mlxcontrol utility fails silently if devi o [2001/02/15] misc/25109 Fujitsu MO device MCC3064AP could't be c o [2001/02/19] misc/25218 peter mailwrapper invokes sendmail when resourc o [2001/02/20] bin/25241 luigi ipfw shouldn't show dynamics rules when s o [2001/02/21] ports/25251 dima acroread4 uses hard coded path for lpr f [2001/02/21] bin/25263 green openssh and /etc/login.access does not wo o [2001/02/21] bin/25273 add fs type feature to vnconfig(8) to all f [2001/02/21] kern/25275 X server freezes system randomly on pentu f [2001/02/22] bin/25278 dd bs accepts -s -c but not -sc o [2001/02/22] alpha/25284 alpha PC164 won't reboot with graphics console o [2001/02/23] ports/25313 wosch Script source displayed at http://www.nl. o [2001/02/26] misc/25378 kris update contrib/libgmp to newer version (3 o [2001/02/26] kern/25386 cg Incorrect mixer registers (line & synth) o [2001/02/26] docs/25405 wosch misleading warning from catman(1), etc. a [2001/02/27] ports/25419 ports Difficulties installing print/teTeX port o [2001/02/27] kern/25445 kernel statistics are displayed in wrong a [2001/02/28] ports/25448 ports mpmf20 fails to correctly display the dir f [2001/02/28] gnu/25459 Dumpvalue.pm says SYNOPSYS instead of SYN o [2001/02/28] bin/25462 daemon(3) fails if called by a session le f [2001/02/28] i386/25463 PS/2 mouse sync problems with KVM switch s [2001/03/01] bin/25474 iedowse dump can't close fifo pipe correctly o [2001/03/01] bin/25477 billf pam_radius fix to allow null passwords fo o [2001/03/02] ports/25490 wosch [PATCH] fix various bugs in stat(1) a [2001/03/02] conf/25495 phantom missing et_EE.ISO_8859-15 locale a [2001/03/02] misc/25499 buffer paste functionality from keyboard o [2001/03/03] kern/25517 ARP cache timeout behavior can be improve o [2001/03/04] kern/25521 Laptop with FreeBSD4.2 freezes in battery f [2001/03/04] conf/25527 jdp `man ldconfig' does not reflect its behav o [2001/03/04] ports/25531 portmgr INSTALL_* macros fail for non-root users a [2001/03/05] ports/25560 ports New port: ftp/kbear: An ftp client for KD o [2001/03/05] ports/25564 obrien Port ups-debug doesn't build on the alpha o [2001/03/06] bin/25572 sshd core dump o [2001/03/06] ports/25576 jmz XFree86-4 port installs manual pages with s [2001/03/07] bin/25584 arp.c - better printed ether address s [2001/03/07] bin/25587 des Add Solaris-like functionality to truss(1 o [2001/03/07] bin/25598 patch to let ftpd output message when cha s [2001/03/09] bin/25627 Cannot append hash after .elif in Makefil o [2001/03/09] misc/25635 gad lpr -# didn't work on network printer a [2001/03/11] ports/25708 dougb pine4 port hard-code /usr/local/include a [2001/03/11] ports/25710 ports New port: news/slrn-pl, slrn with polish o [2001/03/11] bin/25723 green OpenSSH on 4.2 excessively regenerates RS o [2001/03/12] bin/25724 quota(1) outputs wrong limits about NFS q o [2001/03/12] kern/25733 mismatch between error reporting in smbus o [2001/03/12] bin/25736 ac -d option probrem with overdays logon o [2001/03/12] ports/25763 shige XV fails to refresh properly on image dis o [2001/03/13] kern/25777 atime not updated on exec o [2001/03/13] ports/25779 portmgr (patch) make fetch-list should list all m o [2001/03/14] gnu/25794 markm [PATCH] make perl use a decent random num f [2001/03/14] ports/25815 portmgr [PATCH] Port build collision fix. o [2001/03/15] conf/25829 IPSec config in rc.network doesn't allow o [2001/03/16] kern/25866 more than 256 ptys, up to 1302 ptys. o [2001/03/17] ports/25878 tegge error during compilation of linuxthreads o [2001/03/18] kern/25909 4.x kernel freezes on P3-Asus CUSL2-C mot o [2001/03/18] kern/25910 cg Kernel sound driver may die if a program o [2001/03/19] misc/25917 green Paste thrue SSH Secure Shell v.2.4.0 (bui f [2001/03/19] kern/25923 vm_map.h defines a macro called "min_offs o [2001/03/21] misc/25984 bsd.prog.mk doesn't link C++ programs pro f [2001/03/22] docs/26003 rwatson getgroups(2) lists NGROUPS_MAX but not sy o [2001/03/22] bin/26005 MIME quoted-printable encoding added to v a [2001/03/22] docs/26006 des Changing zone(9) man page o [2001/03/22] kern/26016 VMWare is crash on SMP machine f [2001/03/23] misc/26035 System hangs when playing mp3 on PCI Maes o [2001/03/27] conf/26145 [PATCH] There is no make.conf equivalent f [2001/03/27] misc/26153 sed G does not double space o [2001/03/28] ports/26192 ports apel appeared both in xemacs/site-package o [2001/03/29] bin/26201 telnet SRA password exchange trap when no a [2001/04/01] ports/26274 ports New port: Perl/TK Jabber client o [2001/04/01] kern/26277 ppc driver doesn't work with port 0x3BC p o [2001/04/02] docs/26286 doc *printf(3) etc should gain format string a [2001/04/02] ports/26297 ports New port: devel/florist o [2001/04/02] ports/26303 adrian Wrong permission on Squid24's errors dire a [2001/04/03] ports/26313 ports New Port: german/eagle: A tool for design o [2001/04/03] kern/26316 Booting FreeBSD on VMware2 with 2 or 3 et o [2001/04/03] misc/26323 Quota system create zero-length files o [2001/04/03] kern/26324 dillon Defaults for NFS mounts over TCP are slow o [2001/04/04] kern/26348 [pcvt] scon -s, page fault in HP mode o [2001/04/04] bin/26359 [PATCH] a minor nit in how netstat detect o [2001/04/05] misc/26373 Rpc.statd implements the SM_NOTIFY call b o [2001/04/06] bin/26375 markm PAMized su allows non-wheel members to su o [2001/04/06] kern/26385 VMWare reboots entire system after starti f [2001/04/08] kern/26437 Kernel Panics on SMP box when subjected t o [2001/04/09] kern/26454 cg mixer volume settings on Maestro-2E (Diam o [2001/04/09] bin/26468 pkg_delete clears dependencies after runn o [2001/04/10] conf/26488 incomplete named sandbox information a [2001/04/13] docs/26532 green ".Ql ?" becomes "`'?" through nroff (and a [2001/04/13] kern/26534 Add an option to ipfw to log gid/uid of w o [2001/04/13] kern/26547 "lnc" problem with shared memory mode wit o [2001/04/13] i386/26562 /dev/lpt0 returns EBUSY when attempting t o [2001/04/14] kern/26563 ioctl(SNDCTL_DSP_SPEED) returns -1 when f o [2001/04/14] kern/26584 kernel boot messages aren't logged correc o [2001/04/15] bin/26602 RELENG_4 ssh/sshd modifies the 'erase' ch f [2001/04/16] kern/26608 when boot Freebsd 4.2 Release from the c o [2001/04/16] kern/26618 unmount(2) can't unmount a filesystem who a [2001/04/16] ports/26628 ports New port: audio/qtecasound, well done o [2001/04/17] misc/26636 If /etc/ttys goes empty, init(8) never re o [2001/04/17] kern/26644 sos [PATCH] ATA/ATAPI driver doesn't implemen a [2001/04/17] misc/26646 srand() provides only 8-bit table o [2001/04/17] misc/26649 diskless client can't share root with ser o [2001/04/17] misc/26653 RTL8012 ethernet not listed in LINT or ha o [2001/04/17] misc/26658 update to src/usr.bin/calendar/calendars/ o [2001/04/18] misc/26678 Correction of: misc/26521 o [2001/04/18] bin/26686 Freeze at boot from 4.3-RC4 floopies - US o [2001/04/18] docs/26692 rnordier boot manpage describes bootfile prompt in o [2001/04/18] misc/26695 CHANGE REQUEST: kill(all) -l output o [2001/04/19] misc/26720 Both .cshrc and .profile should have the o [2001/04/20] kern/26740 rwatson [PATCH] jail improvement f [2001/04/22] misc/26763 darrenr installing ipfilter sample files to share o [2001/04/22] kern/26787 dd sysctl change request o [2001/04/23] kern/26798 cvsup 4.3-RC -> 4.3-STABLE causes problem o [2001/04/23] kern/26800 wpaul Support for Netgear MA-301 wireless o [2001/04/23] ports/26801 ports cyrus port should add periodic file to pr s [2001/04/23] bin/26803 des Fix fetch to allow FTP puts in '-o' & all o [2001/04/24] i386/26812 peter old bootstrap /sys/i386/boot/... still in a [2001/04/24] ports/26825 ports port xmms-avi won't compile libavixmms.so o [2001/04/25] bin/26854 Better fix for ESS Technology Maestro-2E o [2001/04/26] misc/26879 mkfilter not installed, yet referred to v s [2001/04/26] ports/26882 kde KDE should use ca-roots port for SSL cert a [2001/04/26] ports/26884 ports new port for visualworks 5i.3 o [2001/04/26] kern/26885 keichii add if_xe as kernel module o [2001/04/27] ports/26904 jim New port(?): net/everybuddy-i18n (i18n pa o [2001/04/28] bin/26919 qa sysinstall' fdisk can ONLY set bootable f o [2001/04/29] bin/26943 [patch] description of :C modifier is mis o [2001/04/30] i386/26994 obrien AMD Athlon Thunderbird not known to ident o [2001/05/01] kern/27008 kernel function sysbeep(xxx, 0) does prod o [2001/05/01] ports/27019 marcel patch supplied in PR ports/26976 breaks l o [2001/05/02] misc/27039 new syscons screensaver a [2001/05/02] docs/27040 dougb rc(8) and syscons(4) talk about rc.conf.l f [2001/05/02] misc/27041 modify src/release/Makefile to make anoth f [2001/05/03] bin/27063 darrenr /sbin/ipfs missing f [2001/05/03] conf/27070 darrenr save/restore IP Filter's state tables at o [2001/05/04] ports/27075 sobomax Port java/javavmwrapper installs no man p o [2001/05/04] ports/27079 sobomax Improvements for javavmwrapper? o [2001/05/06] bin/27163 cracauer sh trap TSTP () deadly hangs o [2001/05/06] ports/27167 ports ETHOberonV4 won't run a [2001/05/07] ports/27182 mharo Teach portlint to recognize RUN_DEPENDS=$ o [2001/05/07] ports/27187 jmz add linux ioctl handler to dri xf86-403 c o [2001/05/07] bin/27188 fix of rsh non-interactive mode behaviour o [2001/05/07] misc/27190 Day light savings in Mexico. o [2001/05/08] ports/27200 greid new port: bed (binary editor) o [2001/05/08] i386/27216 qa Can not get to shell prompt from serial c o [2001/05/09] kern/27232 On NFSv3 mounted filesystems, stat return o [2001/05/10] bin/27258 getty didn't check if if= isn't empty o [2001/05/11] bin/27268 fdisk does not recognize Linux extended p o [2001/05/11] kern/27269 Cannot mount linux extended (logical) par o [2001/05/11] bin/27270 cg sys/soundcard.h fails to define AFMT_S16_ o [2001/05/12] bin/27281 vidcontrol(1) does not have error codes f [2001/05/12] bin/27283 brian netstat -i missing IPv4 input packet coun o [2001/05/12] bin/27289 green SSH don't do correct diagnostic when no r o [2001/05/12] ports/27291 jim Bluefish port doesn't build mo files o [2001/05/12] bin/27294 paul pkg_update disregards suffixes (portrevis o [2001/05/13] i386/27306 mp hw watchpoints work unreliable under gdb a [2001/05/14] misc/27311 maxim pthread_attr_setscope always fails o [2001/05/14] bin/27319 obrien df displays amd pid processes o [2001/05/15] kern/27342 change-request o [2001/05/17] kern/27403 lpt driver doesn't handle flags anymore o [2001/05/17] bin/27423 change request o [2001/05/18] kern/27429 'dependant' is a misspelling o [2001/05/18] bin/27433 ps binary does not do what the man page s o [2001/05/20] misc/27471 Linux emulation is missing code needed to o [2001/05/20] ports/27473 jmz when I install the package XFree86-4.0.3_ f [2001/05/22] ports/27542 sobomax xmps should not require gnome a [2001/05/23] ports/27569 ports bootup error problem with Apache 2 o [2001/05/23] kern/27571 bp Changing policy of shadowing files and di o [2001/05/23] bin/27604 change truncate to support low case size o [2001/05/24] i386/27627 machdep.tsc_freq does not exists on machi o [2001/05/25] misc/27633 Mapping for serbian keyboards, follows IS o [2001/05/25] docs/27653 doc Updates to send-pr.html to support MIME o [2001/05/26] docs/27654 doc Update to PR 27653 o [2001/05/26] kern/27660 Kernel does not return error if adding du o [2001/05/26] misc/27677 miss BIND name server library o [2001/05/27] bin/27687 fsck wrapper is not properly passing opti o [2001/05/27] bin/27697 assar trouble compiling libroken o [2001/05/31] gnu/27803 Enhancement to sort(1) a [2001/05/31] ports/27805 ports New port: SQL-Ledger Accounting o [2001/06/01] misc/27816 rpcgen -b generates server code which doe o [2001/06/01] misc/27829 kris pax's uid/gid cache is read-only a [2001/06/02] docs/27833 cjc No man page for locate.rc o [2001/06/02] kern/27834 Cannot warm-reboot Compaq AP400 due to SC o [2001/06/02] kern/27835 execve() doesn't conform to execve(2) spe o [2001/06/02] ports/27838 keichii dot.emacs is 600 s [2001/06/02] docs/27843 alex [PATCH] make.conf WITH_* variables aren't o [2001/06/02] kern/27849 dfr AGP RELEASE ioctl frees memory o [2001/06/04] misc/27872 "Load Config" (sysinstall) hangs Compaq D o [2001/06/06] ports/27903 peter Update: www/transproxy o [2001/06/06] docs/27915 doc man 5 passwd does not properly explain th o [2001/06/06] docs/27919 n_hibma missing usb man pages o [2001/06/06] docs/27921 markm manpage skey(1) should be skey(7) o [2001/06/07] alpha/27930 NE2000 not supported on FreeBSD Alpha 4.x o [2001/06/07] ports/27931 ports devel/pth vs. native pthreads conflict fi o [2001/06/07] alpha/27933 alpha Time jitter under load on FreeBSD 4.3 alp a [2001/06/07] ports/27936 mi Update /usr/ports/deskutils/xmdiary 3.0.1 a [2001/06/08] ports/27956 ports New port:A messenging client supporting A a [2001/06/08] conf/27959 imp Add cygwin termcap entry o [2001/06/08] bin/27972 losing information with talk o [2001/06/10] i386/28023 sendmail tries to get the netgraph.ko mod a [2001/06/11] conf/28078 /stand/sysinstall skips distro selection a [2001/06/11] conf/28081 murray /stand/sysinstall errs out if /cdrom/ alr a [2001/06/12] ports/28115 ports New Port - textproc/htmldoc o [2001/06/13] ports/28121 sobomax New port: 3D modelling and animation syst o [2001/06/13] ports/28138 tg python os.statvfs module is not functiona a [2001/06/15] bin/28171 des [PATCH] to support a HTTP_REFERER env var a [2001/06/15] gnu/28189 [PATCH] fix for detecting empty CVS commi o [2001/06/16] kern/28206 bp UMAPFS module should depend on NULLFS - p o [2001/06/17] misc/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't c o [2001/06/17] kern/28247 pirzyk ATM/HARP driver for IDT and ForeLE ATM ca o [2001/06/18] misc/28255 picobsd documentation still references ol s [2001/06/18] kern/28260 UIO_MAXIOV needs to be made public a [2001/06/19] ports/28272 ports Update port: net/libsocket++ o [2001/06/20] bin/28294 dump of vinum based file systems by devic o [2001/06/20] kern/28297 change request for sys/i386/conf/NOTES o [2001/06/21] ports/28332 dwcjr Gimp manual port 1-2 years out of date, m o [2001/06/21] bin/28333 rtprio/idprio setuid problems s [2001/06/22] i386/28346 n_hibma USB ethernet dongle detach requires "ifco a [2001/06/23] ports/28363 ports New port: audacity-0.95 - a graphical wav o [2001/06/23] bin/28364 lex(1) generated files fail to compile cl o [2001/06/23] ports/28365 wosch Typical use of portchecheckout breaks int o [2001/06/23] docs/28371 phk malloc(2) man page correction o [2001/06/26] ports/28432 obrien [patch] comms/conserver fails with MD5 pa o [2001/06/26] bin/28435 [patch] allow newsyslog to signal process f [2001/06/27] i386/28444 qa instal.cfg; setting tryRTSOL=NO does not o [2001/06/27] bin/28449 cracauer sh(1) aborts on certain input a [2001/06/27] misc/28455 GNU readline should be updated to 4.2 o [2001/06/27] misc/28456 german keymap with dead keys o [2001/06/27] ports/28471 keith no iso8859 font o [2001/06/28] misc/28494 n_hibma ugen usable only from "attach" or by usbd o [2001/06/29] ports/28521 ports inconsistency: daemontools and serialmail o [2001/06/29] ports/28526 nakai x11-wm/icewm can't show the CPU status wi o [2001/06/29] misc/28529 runetype.h doesn't have C++ 'extern "C"' f [2001/06/30] ports/28551 ports ports/mail/faces doesn't build (linking w o [2001/06/30] docs/28555 doc [PATCH] style(9) isn't explicit about boo o [2001/06/30] kern/28566 bp Mount_null loopbacks can hang startx temp o [2001/07/01] bin/28620 ru xinstall has no way to pass options to st o [2001/07/02] ports/28644 jmz Make error when rebuilding xdvi o [2001/07/03] ports/28678 wosch portcheckout doesn't allow flexible build o [2001/07/03] ports/28680 portmgr pkg_update complains about missing REQUIR o [2001/07/03] kern/28681 ATAPI MO drive support o [2001/07/03] ports/28682 portmgr Some port install builds fail if silent ( o [2001/07/04] docs/28699 doc strptime(3) %d format specifier not compl o [2001/07/05] ports/28717 billf net/net-snmp stop enumerate interfaces wh a [2001/07/05] ports/28758 roam New port: security/apg o [2001/07/06] ports/28771 ports opendx server fails to start o [2001/07/07] bin/28789 /usr/bin/last does not filter for uucp co o [2001/07/07] ports/28803 obrien ports/comms/conserver does not support ## o [2001/07/08] ports/28810 lioux qpopper 4.0.3 + PAM modification; HAVE_SH o [2001/07/08] bin/28820 tar and cpio cannot deal with files > 2GB o [2001/07/10] ports/28887 brian [PATCH] sandbox for httptunnel! o [2001/07/10] kern/28888 Acer 8000 NIC not detected correctly o [2001/07/11] misc/28890 merge.c compares int i against size_t siz o [2001/07/13] misc/28938 small PicoBSD - An update to the build script t a [2001/07/13] misc/28947 maxim dup2 closing pthread file descriptor a [2001/07/13] docs/28949 phk the mknod(8) man page stills refers to bl o [2001/07/14] bin/28972 dwmalone gamma returns same result as lgamma o [2001/07/14] i386/28975 mjacob RocketPort problems a [2001/07/14] kern/28976 yar ddb doesn't understand ctrl-u o [2001/07/14] misc/28980 Fujitsu/Siemens Lifebook E-6540 stalls wh o [2001/07/15] bin/28988 We need more simple message digesting too f [2001/07/15] docs/28994 dd New article for docproj "Checkpoint VPN-1 o [2001/07/16] ports/29009 dburr fsgs port installs cfg file with wrong pa o [2001/07/18] bin/29062 markm krb4 and krb5 multiply defined version sy o [2001/07/18] bin/29071 relay patch for rwhod o [2001/07/19] misc/29077 At loading notebook pccardd not correctly o [2001/07/19] docs/29088 phk jail(8) man page has innacurate instructi o [2001/07/19] misc/29089 Some kind of fsbn0 error... o [2001/07/19] bin/29090 add `no_rip_out' option to routed o [2001/07/20] misc/29103 make (1) dump core while processing ^C fr o [2001/07/21] bin/29119 menu of fdisk editor in 4.3R does not lis a [2001/07/21] ports/29137 cy Brand New Tripwire-2.3.1 Port o [2001/07/22] docs/29143 doc List of man pages that need to be written o [2001/07/22] ports/29154 nik TeX resource settings from MAKE_ENV in pr o [2001/07/23] ports/29163 jmz XFree86-4 port should register XFree86-4- o [2001/07/23] bin/29164 maxim [PATCH] lack of 'Do not fragment' flag in f [2001/07/23] docs/29166 tomsoft Flaw in growfs(8) manpage o [2001/07/23] conf/29167 rc.pccard doesn't check /var/run/pccardd. o [2001/07/23] kern/29169 mjacob FC loop that 'goes away' never times out o [2001/07/23] bin/29175 tmm [PATCH] rpcgen(1) and inetdflag/pmflag su o [2001/07/23] bin/29177 [PATCH] rpc client create functions with o [2001/07/24] ports/29199 sobomax jdk12beta port should register open-motif o [2001/07/25] ports/29219 bp smbfs-1.4.1 don't compile o [2001/07/25] ports/29223 portmgr cyrus-imapd and postfix master.8 manpage o [2001/07/25] kern/29233 VIA 82C686 AC97 codec gets probed as 'chi o [2001/07/26] docs/29245 doc top(1) manpage doesn't understand SMP o [2001/07/26] ports/29248 jmz XFree86 4.1 hangs with an i815 chip while o [2001/07/27] kern/29264 Recovery from LIPs on FCAL using isp not o [2001/07/27] ports/29267 nbm Update the svscan.sh startup script for d a [2001/07/28] misc/29292 sos The functional addtion to burncd(8) o [2001/07/29] ports/29297 ports NEW PORT: System Maintenance Aid written o [2001/07/29] ports/29298 cpiazza Installation of documentation for vcdgear o [2001/07/29] alpha/29299 alpha FreeBSD 4.3 Alpha + Tekram SCSI adapter p o [2001/07/29] kern/29307 NIC Initialization fails on dual CPU syst o [2001/07/29] misc/29312 sound Using mixer on pcm misbehaves with onboar f [2001/07/29] kern/29318 mjacob Exabyte 8200 needs SA_QUIRK_1FM and SA_QU o [2001/07/30] gnu/29331 still documented broken options in gcc ma f [2001/07/30] ports/29332 ports Refiling New Port: ripem-2.1 o [2001/07/30] ports/29343 ports new postgresql7 port feature o [2001/07/31] ports/29346 ports New port: misc/afbackup-beta o [2001/07/31] kern/29355 adrian [patch] lchflags support o [2001/08/01] bin/29361 startslip can't load if_sl.ko o [2001/08/01] bin/29363 [PATCH] newsyslog can support time as ext o [2001/08/01] conf/29364 imp please add STI Flash 5.0 to pccard.config o [2001/08/02] ports/29392 portmgr Small built-time glitch in Makefile for a o [2001/08/02] kern/29395 reaction on ctrl-alt-del - poweroff, halt o [2001/08/03] kern/29423 [PATCH] kernel security hooks implementat o [2001/08/07] kern/29499 dwmalone it is not possible to send creditionals f [2001/08/07] ports/29514 ports new port submission: games/xlogical (SDL o [2001/08/07] bin/29516 markm telnet from an non FreeBSD host still use o [2001/08/07] ports/29519 ports X11 ports generate undef pthread refs wit o [2001/08/07] ports/29528 dburr Update misc/tvguide to 0.9.0 o [2001/08/07] misc/29529 dcs Boot prompt "?" command doesn't list "boo f [2001/08/08] kern/29538 joerg Mounting /dev/fd0 never completes o [2001/08/08] misc/29550 duplicate pings jinside of vmware 2.0 f [2001/08/09] docs/29571 doc [PATCH] No man page for pgrp kernel funct o [2001/08/09] bin/29581 proposed gethostbyXXXX_r() implementation f [2001/08/09] ports/29590 ports [new port] www/parser-bin One more server o [2001/08/11] kern/29621 n_hibma Missing man page for ulpt o [2001/08/11] ports/29638 green [patch] upgrade security/cfs a [2001/08/12] i386/29639 murray entry for zip 250 drives in /etc/disktab o [2001/08/13] bin/29675 lint fails on stdio.h f [2001/08/13] ports/29691 portmgr New port variable USE_COMPAT_LIB - bsd.po o [2001/08/14] kern/29698 linux ipcs doesn'work o [2001/08/15] kern/29727 amr_enquiry3 structure in amrreg.h (amr d o [2001/08/15] ports/29732 sobomax linking error f [2001/08/16] kern/29777 n_hibma kernel uscanner.c contains wrong vendor a f [2001/08/17] docs/29807 dd [PATCH] XFREE86_VERSION is undocumented f [2001/08/17] ports/29836 ports New port: cyrus-imspd f [2001/08/18] bin/29850 markm ftpd.c doesn't check via PAM/pam_acct_mgm o [2001/08/18] ports/29851 kuriyama ports/textproc/cocoon has a checksum erro f [2001/08/18] ports/29856 portmgr make extract of cyrus did an install of c o [2001/08/19] conf/29870 rc.diskless2 uses /usr/sbin/mtree before o [2001/08/19] kern/29875 CURRENT driver for Tekram DC395X and DC31 o [2001/08/19] ports/29876 portmgr bsd.port.mk: MLINKS Description wrong o [2001/08/19] ports/29883 markm Update textproc/par to 1.53 o [2001/08/20] misc/29893 qa suggestions for 4.4 sysinstall o [2001/08/20] bin/29897 markm pam_unix patch, which uses loginclass pas a [2001/08/20] docs/29902 www Mozilla package URL problems o [2001/08/20] kern/29915 kernel panics on interaction with mlock a o [2001/08/21] ports/29924 ports remove port smalleiffel-0.76.b4 o [2001/08/21] ports/29929 ports wginstall.pl script chokes on calculated o [2001/08/22] bin/29961 ru A4 paper size for groff knob for /etc/mak o [2001/08/22] kern/29962 sent broadcast packets get spurious 4 byt a [2001/08/22] ports/29969 gnome gnomedb does not build a [2001/08/23] docs/30008 doc This document should be translated, comme o [2001/08/23] ports/30012 dirk mod_php4 does not build on 4.4 with apach o [2001/08/24] kern/30052 dc(4) driver queues outgoing pkts indefin a [2001/08/24] bin/30054 mike ftp(1)'s fetch.c could easily have vhost o [2001/08/25] docs/30082 jkoshy Dead URL on website o [2001/08/27] ports/30148 portmgr devel/libtool: shared libs with compaq-cc o [2001/08/28] kern/30160 Kernel panic when flash disk is removed a f [2001/08/28] ports/30166 ports ports/net/nettest2001 o [2001/08/28] kern/30179 FreeBSD 5.0 install hangs: deviceTry: mak o [2001/08/29] misc/30186 getaddrinfo does not handle incorrect ser o [2001/08/29] ports/30196 portmgr HTTP_PROXY (and FTP_PROXY) in /etc/make.c o [2001/08/29] kern/30200 yokota Bug in psm in 4.4-RC o [2001/08/29] ports/30201 msmith editors/wordperfect in ports is not usabl o [2001/08/29] i386/30206 PS/2 server 85 can't boot kern.flp o [2001/08/29] misc/30213 Fatal Errors of Server Programe o [2001/08/30] misc/30224 No irq - PCI wi card doesn't allow interu o [2001/08/30] ports/30225 nectar mozilla 0.93 build problem o [2001/09/01] bin/30247 sh cannot redirect to /dev/fd/1 or from / f [2001/09/01] ports/30249 ports SmallEiffel update to -0.75 o [2001/09/01] docs/30253 bp [PATCH] mount_unionfs(8) and mount_nullfs o [2001/09/01] kern/30257 apm enabled kernel panics (4.4-RC) o [2001/09/02] ports/30264 greid Update port: graphics/xawtv o [2001/09/02] ports/30272 grog [PATCH] instant-workstation RUN_DEPENDS b o [2001/09/03] ports/30298 chuckr [PATCH] a2ps-4.13 can't cope with ENOMEM o [2001/09/03] conf/30301 Default printcap "mx" config too small o [2001/09/04] ports/30314 ports [PATCH] Add Exim packages to CDROM 1 o [2001/09/04] misc/30320 n_hibma USB mouse does not work after return'ing o [2001/09/04] bin/30321 strftime(3) '%s' format does not work pro o [2001/09/05] bin/30334 mount_nfs ignores acregmin, acregmax, axd o [2001/09/05] ports/30339 nakai port compilation problem found in rpm arc o [2001/09/05] conf/30341 be keymap: wrong Capslock behaviour with o [2001/09/05] bin/30360 vmstat returns impossible data f [2001/09/06] ports/30383 sobomax Updated port: x11-toolkits/gtk-engines-co o [2001/09/06] bin/30392 sh: incorrect value of $? in here-documen f [2001/09/06] ports/30395 ports New port: lang/spl o [2001/09/07] misc/30412 rtdl/dlopen() fails to merge common varia o [2001/09/07] kern/30422 WDT hardware watchdog driver & daemon o [2001/09/07] bin/30424 Generalization of vipw to lock pwdb while o [2001/09/08] conf/30441 Can't set interface arguments for dhcp co o [2001/09/08] docs/30442 doc remove broken referemce to gettime(9) fro o [2001/09/08] docs/30443 keramida remove broken reference to kerberos(1) fr o [2001/09/08] docs/30444 keramida remove broken references to gated(8) and o [2001/09/09] i386/30461 sound no audio cd with cmi8330 o [2001/09/09] bin/30464 jasone pthread mutex attributes -- pshared f [2001/09/09] bin/30471 brian periodic script output to a file always a o [2001/09/10] bin/30484 rpc.rstatd consumed lots of open file des o [2001/09/10] bin/30496 `host` does not work properly with top-le o [2001/09/10] ports/30499 portmgr libtool-1.4.1 port diffs o [2001/09/11] i386/30503 imp stray pccard card insertion events after o [2001/09/11] kern/30510 no apm for VIA KT133A chipset o [2001/09/11] ports/30511 kde Problem getting opengl/mesa to work with o [2001/09/11] misc/30517 using sysinstall with install.cfg has no o [2001/09/12] misc/30526 inserting a Sony Ninja-ATA pcmcia style c o [2001/09/12] ports/30535 nakai Update port: x11-wm/icewm (fix ports/2806 o [2001/09/12] misc/30536 sos burncd(8) doesn't wait long enough for CD o [2001/09/12] kern/30540 [PATCH] spelling and grammar fixes in a c o [2001/09/12] kern/30541 imp [PATCH] old pccard beep depends on value o [2001/09/12] bin/30542 [PATCH] add -q option to shut up killall s [2001/09/12] bin/30543 ru [PATCH] use err() instead of just exit() o [2001/09/12] bin/30546 [PATCH] /etc/rc pedantry o [2001/09/13] docs/30556 doc vnconfig man page incorrect; functionalit o [2001/09/13] ports/30557 ports bitchx fails to build when WITH_TCL=yes i o [2001/09/13] kern/30570 boot loader don't reacts on USB keyboard o [2001/09/14] ports/30573 nakai /usr/X11R6/bin/xfce_setup does not create f [2001/09/15] ports/30604 ports postgresql7 doesn't build with kerberos5 o [2001/09/16] kern/30608 kern.ps_showallproc=0 doesn't limit queri f [2001/09/16] ports/30615 ports The 'bcwipe' port installs Linux binaries o [2001/09/16] docs/30618 keramida ediff man page incomplete o [2001/09/16] ports/30623 sobomax Update of the audio/glame port o [2001/09/17] ports/30625 ports [PATCH] vmware2 patch for -current with K o [2001/09/17] misc/30631 readdir_r() SEGV on large directories o [2001/09/17] kern/30634 kevent.data value incorrect for UDP socke o [2001/09/17] bin/30639 apmd crashes on SIGHUP (under certain con o [2001/09/17] bin/30640 apmd does not terminate properly on SIGTE o [2001/09/18] misc/30647 "make release" in src/release/ creates po o [2001/09/18] bin/30661 FreeBSD-current fails to do partial NFS f o [2001/09/20] misc/30683 [PATCH] loader(8) fails to load module wh a [2001/09/20] bin/30685 cjc Patch for usr.bin/hexdump o [2001/09/20] ports/30698 ports New port: news/pl-slrn o [2001/09/20] i386/30700 sound Applications cannot synchronize sound usi o [2001/09/20] ports/30701 ports setiathome port misuses the 'nobody' user o [2001/09/21] ports/30707 ports midnight commander can't handle correctly o [2001/09/22] ports/30732 obrien bash2 - pkg-plist fix and sample files ad a [2001/09/22] bin/30737 murray sysinstall leaks file descriptors on rest o [2001/09/23] ports/30754 nakai x11/dgs port overwrites a number of files o [2001/09/23] ports/30777 portmgr add a 'make pkg-plist' make target in por o [2001/09/23] misc/30778 termcap problem with wyse-60 terminal o [2001/09/24] ports/30788 sobomax compile works, install fails of graphics/ o [2001/09/24] kern/30794 sound ESS Solo-1 does not work after suspend/re o [2001/09/24] i386/30808 sound t4dwave on Acer Alladin M5451 interrupt p o [2001/09/24] docs/30809 doc fdisk(8) cleanup o [2001/09/25] bin/30812 giant termcap database update o [2001/09/25] ports/30813 jmz Xfree86-4 port creates libfreetype.so.6 w o [2001/09/25] bin/30819 /bin/mv results in warnings when /bin/cp o [2001/09/25] kern/30836 wpaul Chipset SiS735 / NIC SiS 900 f [2001/09/26] ports/30845 ports New port: textproc/xerces-c: Xerces C++ X o [2001/09/26] ports/30848 roam courier imapd won't compile with vpopmail o [2001/09/26] ports/30849 ports news/nntpcache fails compiling authinfo_p o [2001/09/26] bin/30854 bootpd/bootpgw change - skip ARP modifica o [2001/09/26] misc/30857 intr_machdep.c allows access out of array f [2001/09/26] ports/30859 ports A New Port f [2001/09/26] i386/30860 While install after "Mounting root from u o [2001/09/27] bin/30863 bootpd/dovend.c Win95 compatibility impro o [2001/09/27] ports/30870 ports httpd in free(): warning: recursive call o [2001/09/27] docs/30873 doc ``ip'' man page does not specify byte ord o [2001/09/28] bin/30887 dump allways saves files with modified c- o [2001/09/29] bin/30907 green [PATCH] ssh configuration oddities o [2001/09/29] ports/30923 obrien small fix for devel/gindent port o [2001/09/30] ports/30929 brian [net/pppoa] use usbd to initialize USB AD o [2001/09/30] ports/30936 taoka pips-sc880 installed script contains inco o [2001/09/30] conf/30938 Improving behavior of /etc/periodic/daily o [2001/09/30] kern/30951 Optimize page queue scan on miss of speci o [2001/10/01] alpha/30970 alpha Ensoniq 1371 (Creative chipset) does not o [2001/10/01] bin/30972 peter nfsd and mountd are in the wrong location o [2001/10/01] ports/30979 ports New port for "txfonts" TeX's font package o [2001/10/02] ports/30983 portmgr [PATCH] Some staroffice cdrom fixes o [2001/10/02] ports/30986 obrien vim6 LITE=YES packing list incorrect o [2001/10/03] ports/31013 obrien John The Ripper Package Lists Bad Path o [2001/10/03] ports/31019 nakai Fix x11/xmascot o [2001/10/03] ports/31022 nakai Fix port games/xrubik o [2001/10/03] ports/31026 ports New Port: Internet Message Support Protoc o [2001/10/04] bin/31034 regularly add original address logging fo f [2001/10/04] ports/31037 ports NEW PORT: Krusader o [2001/10/04] kern/31043 Missing Ptrace functionality in Linuxulat o [2001/10/04] kern/31048 linprocfs:/proc/meminfo cannot handle mul o [2001/10/04] bin/31052 fenner Traceroute needs update o [2001/10/05] ports/31061 ports New port: security/gnupg-devel o [2001/10/06] bin/31088 tobez Make whereis.pl use strict, and a couple a [2001/10/06] ports/31093 ports new port "flyway" o [2001/10/06] ports/31096 znerd New port for jakarta-tomcat 4 o [2001/10/07] misc/31097 main thread will accept() failure when so o [2001/10/07] ports/31101 roam Update port: mail/vpopmail various requir o [2001/10/07] docs/31109 doc replace gif images w/ png ones due to pat o [2001/10/08] bin/31135 /bin/df reporting 'NaNB' as a Size. o [2001/10/08] ports/31142 portmgr patch-libtool target in bsd.port.mk break a [2001/10/08] ports/31144 ports New port: x11/xcursor f [2001/10/09] ports/31159 cpiazza gmixer 0.98c dumps core with some mixers o [2001/10/09] docs/31164 doc man page for strftime is incorrect o [2001/10/10] bin/31199 tunefs error is incorrect when enabling s o [2001/10/10] conf/31200 Modification of rc.diskless1 needs change o [2001/10/10] bin/31201 [patch] add free_space(chunk) to libdisk o [2001/10/10] bin/31205 [PATCH] WARNSify and add a new option to o [2001/10/10] docs/31210 peter cvs info page missing -R o [2001/10/11] misc/31218 How to build release from selected date a [2001/10/11] conf/31219 Missing cons25u entry in termcap o [2001/10/11] ports/31222 ports ports:astro/SETIsupport(version is wrong) o [2001/10/11] ports/31223 ports ImageMagick utilities link without -lciph o [2001/10/11] misc/31225 "make release" fails if TERMCAP environme o [2001/10/11] bin/31228 vnconfig -ae configures but not mount dev o [2001/10/11] ports/31229 ports new port: astro/linux-setiathome-i686 o [2001/10/13] kern/31255 select with zero timeout returns 0 even w o [2001/10/14] docs/31264 jdp cvsup(1) "base" option and keyword descri a [2001/10/14] docs/31271 doc rl(4) discourages vender openness by disp o [2001/10/15] ports/31282 ports NEW PORT: aolserver+ad f [2001/10/15] ports/31288 ports LPRng-3.7.9 port (LPRng) update o [2001/10/15] misc/31297 yokota New screen blanker module for syscons o [2001/10/17] ports/31342 ports I was trying to install xscreensaver and o [2001/10/18] i386/31353 'shutdown -p' does not work on SMP Tyan T a [2001/10/18] conf/31358 sheldonh Need to load NFS client LKM. o [2001/10/18] ports/31364 sobomax URW fonts needed to run jdk13 jfc demos a o [2001/10/19] kern/31367 General boot fault during mounting root w o [2001/10/19] ports/31369 adrian New KMerlin Port o [2001/10/19] docs/31370 fenner typo in tcpdump manpage o [2001/10/19] misc/31380 NFS rootfs mount failure message too cryp o [2001/10/20] bin/31387 When getuid()=0, mailwrapper should drop o [2001/10/20] ports/31389 portmgr tidy readme templates + port readme enhan o [2001/10/21] ports/31399 jkh sysinstall (4.4REL) hangs on pkg_add of c o [2001/10/21] i386/31427 minor incorrect code in sys/i386/i386/pma o [2001/10/22] bin/31432 umount(8) and unmount(2) don't corespond o [2001/10/22] kern/31445 sound cat sound.au > /dev/audio fails for sound a [2001/10/23] kern/31455 n_hibma [PATCH] ohci driver probrem when send dat o [2001/10/23] kern/31456 Register number definition for AMD PCnet o [2001/10/23] ports/31461 ports New ports: deskutils/mcal & gmcal - a lib o [2001/10/23] ports/31462 peter rdist6 does not like accounts with '.' in o [2001/10/24] bin/31476 ifconfig's lladdr is ethernet specific o [2001/10/25] ports/31486 kuriyama ports/palm/prc-tools-gcc does not build m f [2001/10/25] ports/31487 dinoex licq-qt-gui plugin does not parse local a f [2001/10/25] misc/31489 Conflict Between BPF and ssh2 protocol in o [2001/10/25] kern/31490 Panic in sysctl_sysctl_next_ls on empy no o [2001/10/26] ports/31517 ports New Port: kdetheme-qnix o [2001/10/26] ports/31518 ports GD 1.8.4 port fails to build TTF support o [2001/10/26] kern/31521 cg pcm0 plays too fast on Intel 82801BA (ICH o [2001/10/27] i386/31535 Can't reboot system: Tyan Thunder K7+ Dua o [2001/10/28] conf/31555 rc.syscons does not run standalone f [2001/10/28] ports/31579 kde kdessl of kde-2.2.1 wants to link to libs o [2001/10/29] bin/31588 change request to allow mount(1) to set t a [2001/10/29] ports/31591 kde kdeinit crashes when I close KDE2 session o [2001/10/29] kern/31624 writev may return undocumented ECONNRESET o [2001/10/30] ports/31630 ports Port se-ispell install the dictionary in o [2001/10/30] bin/31632 ip6fw error under DNS dislabled environme o [2001/10/30] docs/31640 doc Avoiding uppercase program names in manpa o [2001/10/30] ports/31644 jmacd Update: devel/prcs o [2001/10/30] ports/31645 nakai Update port: editors/dedit to 0.6.2.2 o [2001/10/30] kern/31647 socket calls can return undocumented EINV o [2001/10/30] ports/31652 obrien default make package fails for editors/vi o [2001/10/30] docs/31653 doc Chapter 14 of the Handbook lacks content o [2001/10/31] ports/31669 ports New port: graphics/xawtv_applet o [2001/10/31] ports/31674 ports port math/plplot doesn't build a TCL enab o [2001/10/31] ports/31684 ports ports/comms/hylafax fixes o [2001/11/01] gnu/31685 wosch apropos(1) manual page doesn't tell that o [2001/11/01] i386/31686 Problem with the timestamp option when fl o [2001/11/02] kern/31708 VM system / fsync / flushing delayed inde o [2001/11/02] kern/31711 Enhancements and bug fixes to Aironet dri o [2001/11/02] ports/31712 ports Add the Linux to flash Cisco/Aironet card o [2001/11/02] i386/31716 FreeBSD uses broken tsc timecounter by de o [2001/11/03] ports/31739 ports New port: lang/python-devel o [2001/11/03] ports/31744 ports New port: emulators/minix (2.0.0) a [2001/11/03] docs/31747 dd pthread_create.3 does not markup NULL o [2001/11/04] ports/31755 znerd linux-jdk1.2.2 looks for registervm in st o [2001/11/04] ports/31757 ports devel/gvd doesn't build without tex o [2001/11/05] gnu/31772 New option in dialog(1) o [2001/11/05] ports/31773 ports New port: audio/cplay, audioplayer for th o [2001/11/05] ports/31775 ports Better path for the X11 fonts from the po s [2001/11/06] ports/31809 kde [UPDATE] qt23 port to qt-2.3.2 o [2001/11/06] ports/31813 ports New Port - Update: dbXML - Java Native XM o [2001/11/07] ports/31841 ports update to geda tool set o [2001/11/08] ports/31858 ports New port: pike 7.2.234 (current CVS versi o [2001/11/08] ports/31862 portmgr [PATCH] 'make search' problem if /usr/obj o [2001/11/09] misc/31890 new syscons font o [2001/11/10] bin/31906 No method available to unwind atexit(3) s o [2001/11/11] ports/31910 greid comms/sms_client o [2001/11/12] ports/31926 ports New port security/drweb-qmail: Qmail mess o [2001/11/12] bin/31933 pw can interpret numeric name as userid d a [2001/11/12] ports/31943 dirk mysql323-server port hostname look up fai o [2001/11/12] ports/31944 portmgr bsd.port.mk: USE_XPM (implied by USE_MOTI a [2001/11/12] ports/31945 ports new port: devel/xbkregex library o [2001/11/13] ports/31957 znerd Update tomcat port to jdk 1.3.1 o [2001/11/13] ports/31970 ports New port o [2001/11/13] kern/31971 microuptime() went backwards when apm is o [2001/11/14] ports/31975 ports "Error in backend/storage/lmgr/proc.c: Pr o [2001/11/14] misc/31981 (mis)feature in getnetent parsing -- comm o [2001/11/14] ports/31984 znerd Update orion port for config of rmi serve o [2001/11/14] bin/31985 New /etc/remote flag for tip to append LF o [2001/11/14] bin/31987 patch to allow dump(1) to notify operator o [2001/11/14] ports/31996 ports Build of db3 fails at ./configure a [2001/11/14] bin/31997 des login: chmod(/dev/tty??): No such file or o [2001/11/15] i386/32014 ppi locks up system during boot o [2001/11/15] ports/32015 kuriyama ports/palm/pilrc bugs o [2001/11/15] docs/32020 doc loader.8 manpage missing tunables o [2001/11/15] ports/32022 znerd New port: Jakarta Tomcat 4.0.1 o [2001/11/15] ports/32034 ports [NEW PORT] ncurses-ada -- an Ada 95 bindi o [2001/11/16] ports/32037 ports New port: pm-lib o [2001/11/16] ports/32039 greid UPDATE devel/asmutils 0.14 -> 0.15 o [2001/11/16] docs/32041 doc Add point about net.inet.tcp.portange.{fi o [2001/11/16] ports/32046 ports Port cleanup: x11-fonts/webfonts o [2001/11/16] ports/32048 ports New port: palm/hdunix (1.0) o [2001/11/16] docs/32054 doc inconsistency between index.3 and rindex. o [2001/11/17] ports/32056 ports New Port: emulators/adamem f [2001/11/17] ports/32060 ports New port: mkfile(8) for FreeBSD o [2001/11/17] conf/32067 Problems with spanish keyboard in console o [2001/11/17] ports/32069 nakai malloc.h fix for games/kxl o [2001/11/18] ports/32076 ports WISH: merge icon patch to blackbox port o [2001/11/18] bin/32079 minor timebomb in /etc/rc o [2001/11/18] bin/32092 crypt pickups the wrong password format o [2001/11/18] ports/32097 nik scr2png doesn't make with other LOCALBASE o [2001/11/19] conf/32108 Proposed Firewall (IPv4) configuration sc o [2001/11/19] ports/32114 portmgr WRKDIRs should be moved to a central loca a [2001/11/19] misc/32119 phantom Support for the modern greek language a [2001/11/19] misc/32120 PR misc/24324 errata o [2001/11/19] ports/32122 jmz xf86cfg graphics-mode fails on Samsung Sy o [2001/11/20] ports/32125 keichii ports/chinese/rxvt-gb is missing checksum o [2001/11/20] bin/32126 getopt(3) not Unix-98 conformant a [2001/11/20] misc/32133 phantom Bug in greek locale fixed o [2001/11/20] bin/32138 iedowse better progress reporting for dump(8) f [2001/11/20] misc/32144 murray unattended install with sysinstall doesn' o [2001/11/20] ports/32145 jmz XFree86 doesn't ldconfig itself o [2001/11/20] ports/32147 kris mindguard port dumps core o [2001/11/20] kern/32157 sound AC97 Audio (appears to be) unsupported o [2001/11/21] kern/32169 kernel option to enable PCI devices on ma o [2001/11/21] ports/32174 portmgr Autoconf patch for bsd.port.mk a [2001/11/22] misc/32193 phantom Termcap ACS support for greek ISO-8859-7 o [2001/11/22] ports/32202 ports ports/devel/py-htmlkit distribution does o [2001/11/22] ports/32207 ade libiconv cannot be built by a pleb o [2001/11/23] misc/32210 System hangs while kernel waiting for SCS o [2001/11/23] ports/32224 znerd java/linux-jdk is out of date (RC4 iso FC o [2001/11/23] docs/32229 keramida Omission from Handbook Chapter 17.8 (DHCP a [2001/11/23] ports/32231 ports Update port devel/fam o [2001/11/23] ports/32232 dirk Update and bugfix port: www/mod_php4 a [2001/11/23] misc/32233 Fix /usr/src/sbin/mount_msdosfs/iso72dos o [2001/11/23] ports/32243 sobomax ports/py-wxPython fails to compile o [2001/11/24] i386/32251 bugfix and new feature for apmd o [2001/11/24] ports/32258 scrappy converters/p5-Convert-ASN1 out of date o [2001/11/24] ports/32259 scrappy Update security/p5-IO-Socket-SSL request o [2001/11/25] misc/32265 dwmalone Adding calendar.french o [2001/11/25] i386/32269 [PATCH] - categorizing (XXX Lines) in NOT o [2001/11/25] ports/32272 petef port upgrade to latest blender version o [2001/11/25] ports/32273 kde kdm doesn't set paths from login.conf o [2001/11/25] ports/32281 ports Dead project for openverse. o [2001/11/25] ports/32282 petef fvwm 2.4.3 generate error wrt 'Help' key o [2001/11/25] ports/32283 nbm Port upgrade: www/zope from 2.4.2 to 2.4. o [2001/11/26] ports/32285 vanilla a new port for application gimp-print o [2001/11/26] conf/32288 After install: /etc/rc complains if crypt o [2001/11/26] bin/32299 peter nm coredumps on sendmail in -current o [2001/11/26] i386/32301 dfr Fix for agpgart for the AMD-751 and relat o [2001/11/26] ports/32317 petef Request for linux-qt port o [2001/11/26] bin/32318 cjc no userland tool available to test resolv a [2001/11/26] docs/32323 doc man page `named(8)' do not have link for f [2001/11/27] ports/32328 ports Port update: mc-4.5.55 o [2001/11/27] bin/32342 vmstat.c: certain variables appear to hav o [2001/11/27] ports/32345 ports New port: devel/hmake o [2001/11/28] ports/32361 ports port doesn't work o [2001/11/28] ports/32362 ports postgresql7 port should install more *.h o [2001/11/29] docs/32373 doc Bad ifconfig(8) alias advice in FAQ 10.9 a [2001/11/29] conf/32375 murray sysinstall doesn't respect User generated o [2001/11/29] ports/32379 ports NEW PORT: wots 1.22 f [2001/11/29] ports/32391 shige psgml-emacs20 breaks emacs's standard htm o [2001/11/30] misc/32400 rwhod - option to specify hostname o [2001/11/30] ports/32405 dirk Japanese encoding translation support for o [2001/11/30] bin/32411 shutdown's absolute-time handling could b o [2001/12/01] docs/32425 doc Document cvs update `P file' output o [2001/12/01] bin/32433 Cannot specify files beginning with + on o [2001/12/01] ports/32434 ports New Port: TeXmacs, a free wysiwyg scienti o [2001/12/02] ports/32440 ports graphics/gd does not build (requires free o [2001/12/02] ports/32444 dirk www/mod_php4: ctype support o [2001/12/02] ports/32445 portmgr CONFIGURE_TARGET default setting is bogus a [2001/12/02] misc/32448 phantom Cyrillic ISO 8859-5 fonts a [2001/12/02] misc/32449 phantom Cyrillic ISO 8859-5 keymaps a [2001/12/02] misc/32450 phantom Ukrainian ISO 8859-5 locale files o [2001/12/02] docs/32460 keramida named.conf(5) types and two bad markups. o [2001/12/03] docs/32468 doc broken link in handbook: sysutils/mkisofs o [2001/12/03] kern/32478 scsi/NIC drivers fail when using SMP kern o [2001/12/03] misc/32480 Missing graphic characters in syscons fon o [2001/12/03] misc/32490 umass support for ATAPI [with patch] o [2001/12/04] bin/32501 quot(8) is stupid regarding the filesyste o [2001/12/04] ports/32502 dima port update palm/pilot-link to 0.9.6 o [2001/12/04] ports/32508 ports www/flashplugin-mozilla has malloc bug o [2001/12/04] ports/32517 green Update port: emulators/snes9x to 1.39 o [2001/12/05] docs/32542 rwatson tuning(7) inaccurate o [2001/12/05] ports/32546 znerd Remove fully-qualified lib symlinks from o [2001/12/06] docs/32561 jasone missed functions in pthread(3) o [2001/12/06] ports/32565 ports New port: QScheme scheme interpretor o [2001/12/07] ports/32572 kde net/kio_fish: konq has no icons for fish: s [2001/12/07] docs/32578 doc A _really_ petty change to the front page o [2001/12/07] ports/32582 greid Update port: audio/tempest_for_eliza o [2001/12/07] ports/32585 nbm x11-wm/pwm/pkg-descr refers to "screensho o [2001/12/07] bin/32588 grog operator should backup vinum vols o [2001/12/07] ports/32596 keichii update port: chinese/auto-tw-l10n o [2001/12/08] ports/32604 ports Many ports which depends on apache don't f [2001/12/08] misc/32605 nsouch SMBus driver broken o [2001/12/09] ports/32643 anders update mod_watch from 2.4 to 3.0 o [2001/12/09] ports/32651 ache a small patch to obtain socks5 support to o [2001/12/09] kern/32652 joe A new ioctl to uscanner o [2001/12/09] ports/32653 ports Added patches to improve USB scanner supp f [2001/12/09] bin/32657 sed file handing is non-standard o [2001/12/09] kern/32659 jhb VM and VNODE leak with vm.swap_idle_enabl o [2001/12/09] gnu/32661 dd send-pr uses $LOGNAME for From and Reply o [2001/12/09] docs/32662 dd arp(8) uses "this host" with two differen o [2001/12/10] i386/32666 imp mbufs leaks in dev/ed o [2001/12/10] bin/32667 systat waste too much time reading input o [2001/12/10] kern/32671 imp Patch to generate usbdevs.h automatically o [2001/12/10] docs/32674 doc no man page for the ntp_adjtime system ca a [2001/12/10] bin/32675 kris openssl dhparam hangs when using /dev/ran o [2001/12/10] kern/32677 pciconf -l opens /dev/pci for read/write o [2001/12/10] misc/32680 [PATCH] Allows users to start jails by ho o [2001/12/10] ports/32690 keichii Uodate port: chinese/rxvt from 2.7.5 to 2 o [2001/12/11] ports/32704 obrien update ical to use tk8.3 o [2001/12/12] ports/32743 ports Update port: games/nethack3-gnome/games/n o [2001/12/12] ports/32762 ache Update for archivers/xpk o [2001/12/13] kern/32799 ucom and uplcom drivers ported from NetBS o [2001/12/13] bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ o [2001/12/13] kern/32812 roger bktr driver missing tuner for eeprom dete o [2001/12/13] docs/32825 doc undocumented options in LINT o [2001/12/14] bin/32828 phk w incorrectly handles stale utmp slots wi o [2001/12/14] conf/32841 cjc kernel ppp sample conf files missing fro o [2001/12/15] ports/32864 trevor Update port: x11-wm/swm to 1.3.2 (fix por o [2001/12/15] docs/32877 darrenr typo in ipfs.8 o [2001/12/15] kern/32880 ambrisko Update aironet driver to correct signal s o [2001/12/15] ports/32883 ports New port: deskutils/nag - Horde's task li o [2001/12/15] ports/32892 ports New ports: x11-toolkits/gtk12-apireferenc o [2001/12/16] ports/32899 ports mail/nbsmtp causes segfaults while a comm o [2001/12/16] gnu/32902 Incremental tar archiving using GNU style o [2001/12/16] ports/32907 nakai ports/graphics/gqview update o [2001/12/16] ports/32911 ports New Port: devel/scons - SCons 0.01 - a bu o [2001/12/16] kern/32912 msmith options misssing TCBHASHSIZE o [2001/12/16] ports/32917 ports installing ports may fail if $GREP_OPTION o [2001/12/17] ports/32926 lioux [NEW PORT] djvulibre-3.5.2--a Mozilla plu o [2001/12/17] bin/32935 /bin/sh buildin echo command have invalid o [2001/12/17] ports/32936 mharo ports/security/keyprint only supports S/K o [2001/12/18] conf/32976 assar Kerberos5 config files not installed by d o [2001/12/18] docs/32979 assar manpages are not installed for k5admin an o [2001/12/18] ports/32986 ports new port: graphics/transcode o [2001/12/18] ports/32999 ports New ports: devel/ORBacus4 o [2001/12/19] kern/33004 n_hibma Patch for USB (uhci) o [2001/12/19] misc/33007 n_hibma umass device timeout after successive use o [2001/12/19] ports/33008 will New Port: x11-wm/kwinacqua o [2001/12/19] misc/33013 cg mixer does not have treble/bass for Sound o [2001/12/19] kern/33014 installkernel without buildkernel gives c o [2001/12/19] ports/33015 ports PORT UPDATE, PREFIX FIX : textproc/p5-XML o [2001/12/19] conf/33018 Patch for RC (add multiple SSHD configura a [2001/12/19] ports/33023 ports failed to make install ports/textproc/p5- a [2001/12/20] i386/33031 phantom /usr/src/share/mklocale/zh_TW.Big5.src ty o [2001/12/20] ports/33038 keith update port: chinese/ttfm for bento error o [2001/12/20] ports/33039 keith update port: chinese/moefonts-cid for pkg o [2001/12/20] ports/33049 mharo proftpd file permission error. o [2001/12/21] bin/33066 rwatson sysinstall does not write to new disks as o [2001/12/21] ports/33067 ports rdesktop port doesn't list dependencies p a [2001/12/22] ports/33094 okazaki converters/mule-ucs, add emacs21 support s [2001/12/22] ports/33095 dirk update cdrtools to 1.11a13pre3 (1.10.p11. o [2001/12/22] i386/33097 sound Crystal 4237b mixer problems o [2001/12/23] ports/33108 portmgr Generate an error if WRKDIRPREFIX == /usr o [2001/12/23] ports/33109 ports Xercec-C++ port proposals o [2001/12/23] kern/33117 empty struct md_coredump in pcb.h and use o [2001/12/23] ports/33118 keith update port: chinese/moefonts-cid for Ado o [2001/12/23] ports/33122 greid update port: www/dillo from 0.5.0 to 0.6. o [2001/12/23] kern/33124 jhb kthread_create doesnt mark kthreads as kt o [2001/12/23] bin/33133 keyinit outputs wrong next login password o [2001/12/23] ports/33134 keith update port: chinese/ghostscript6 for Ado o [2001/12/23] ports/33135 ports New port: devel/kprof - A profiling tool o [2001/12/24] ports/33157 ports Fix port: graphics/graphviz o [2001/12/24] ports/33159 ports New port: graphics/py-graphviz o [2001/12/25] ports/33168 ports new port: mail/mavbiff o [2001/12/25] ports/33176 ports fix minor build problem with ac-archive o [2001/12/25] gnu/33182 mp gdb seg faults when given handle SIGALRM o [2001/12/26] ports/33192 ports java/jdbcpool: update to 0.99 o [2001/12/26] ports/33194 ports Update port: cad/pcb o [2001/12/26] ports/33196 portmgr duplicate lines in /usr/ports/INDEX o [2001/12/26] kern/33202 msmith sys/dev/mly/mly.c minor mly_printf cosmet o [2001/12/26] kern/33203 dillon "got bad cookie" errors on NFS client o [2001/12/26] ports/33207 ports LPRng port update o [2001/12/26] ports/33208 ports ifhp port update o [2001/12/26] ports/33209 ports LPRngTool port o [2001/12/26] ports/33212 tobez perl5 port fails to register dependency o o [2001/12/26] misc/33220 phantom Greek locale MFC plea o [2001/12/26] ports/33222 lioux new port: net/linux-edonkey2000-server o [2001/12/26] ports/33224 me Build breaks on CURRENT due to 0 o [2002/02/01] ports/34523 ports man pages of nwclient602 install to wrong o [2002/02/01] docs/34529 doc [patch] Grammar nits in usbd.conf(5) and a [2002/02/01] ports/34534 dinoex licq-qt-gui-1.0.3, builds fine, but when f [2002/02/01] i386/34537 The second NIC card could not get configu o [2002/02/01] gnu/34538 mp_set_memory_functions not extern "C"'d o [2002/02/01] ports/34546 cjh Fix port: korean/msdosfs o [2002/02/01] docs/34547 keramida [patch] edits of FAQ Introduction o [2002/02/02] ports/34549 petef update x11-wm/fvwm2 to latest stable vers o [2002/02/02] ports/34550 ports ghostscript-gnu-nox11 portversion 6.51 fa o [2002/02/02] ports/34551 billf net/net-snmp is not LOCALBASE clean o [2002/02/02] ports/34565 ports graphics/blender port is broke o [2002/02/02] ports/34567 ports New port: IMCom command-line Jabber clien o [2002/02/02] ports/34570 ports Broken "Makefile" in /usr/port/misc/afbac o [2002/02/03] docs/34577 doc Some man pages still advise using "confli o [2002/02/03] docs/34583 doc DECLARE_MODULE(9) man page is broken. o [2002/02/03] kern/34591 ICMP bandwidth limiting does not indicate o [2002/02/03] misc/34596 slow gettimeofday in FreeBSD 4.5 o [2002/02/03] ports/34597 eivind [PATCH] Update ports/mail/isync to 0.8 o [2002/02/03] ports/34600 kevlo Update port: textproc/xerces to 2.0.0 o [2002/02/04] misc/34621 billf i have a patch for (lol) /usr/games/fish o [2002/02/04] docs/34626 doc Copyright on "Index of /mail/current" pag o [2002/02/04] bin/34628 pkg-routines ignore the recorded md5 chec o [2002/02/04] bin/34629 des fetch(1) cannot download RH 7.2 ISOs from o [2002/02/05] ports/34635 ports games/flightgear o [2002/02/05] kern/34637 LINT is wrong -- NMBCLUSTERS doesn't auto o [2002/02/05] kern/34639 IPFW skipto works too slow o [2002/02/05] ports/34641 ports A XINE Input Plugin MMS(Microsoft Media S o [2002/02/05] misc/34642 Windows 2000 will not dual boot with Free o [2002/02/05] ports/34650 nbm UPDATE/FIX : database/phppgadmin 2.3 -> 2 o [2002/02/05] docs/34654 doc Update UIDs for porters handbook o [2002/02/06] ports/34659 reg Proposed change to Mozilla port's Makefil o [2002/02/06] ports/34660 ache Update ftp/wu-ftpd to use ./configure o [2002/02/06] bin/34663 [PATCH] vintage tr(1) -c "" bug o [2002/02/06] kern/34665 ipfilter rcmd proxy "hangs". o [2002/02/06] misc/34673 Second call to select() waits ~100ms befo o [2002/02/06] ports/34674 eric www/skipstone fails to compile o [2002/02/06] bin/34676 obrien dhclient always in -q quiet mode (PATCH E o [2002/02/07] ports/34694 nakai icewm port outdated o [2002/02/07] bin/34698 des bug in truss/main.c f [2002/02/07] ports/34700 ade print/gnomeprint needs gdk-pixbuf but not o [2002/02/07] gnu/34709 [patch] Inaccurate GDB documentation o [2002/02/07] kern/34712 [patch] SCSI quirk for USB Memorybird o [2002/02/07] ports/34714 ache unzip(1) breaks filenames in non-ASCII ch o [2002/02/07] ports/34717 portmgr bsd.port.mk: extraneous quotes in PTHREAD o [2002/02/07] ports/34718 portmgr make fetch-list includes things make fetc o [2002/02/07] ports/34719 ache procmail MAILSPOOLDIR change o [2002/02/07] ports/34723 ports ports submission request graphics/xmms-fi o [2002/02/07] bin/34728 DHCP hostname set as Hexadecimal string o [2002/02/08] conf/34729 treat smbfs as network file system in /et o [2002/02/08] conf/34733 useless/invalid lomac option added by sys o [2002/02/08] ports/34737 ports New port: graphics/lodju o [2002/02/08] ports/34740 ports port update: security/ssh2 2.3.9 -> 3.1.0 o [2002/02/08] ports/34742 obrien bash2 missing build dependency on autocon o [2002/02/08] docs/34743 doc nfsd(8) lacking signal explanation o [2002/02/08] bin/34744 Add -a (same as -PpR) flag to cp(1) o [2002/02/08] kern/34747 Please add USB floppy entry o [2002/02/09] misc/34757 Difficulty in starting x-server o [2002/02/09] misc/34759 Phantasia does not accept [enter] key o [2002/02/09] ports/34760 ports New port: net/dstumbler a curses based ap o [2002/02/09] docs/34763 wosch Broken link from RELNOTSES a [2002/02/09] ports/34770 dougb Update port: graphics/xpdf to 1.00 (fix p o [2002/02/09] ports/34774 trevor Update port: x11-wm/aewm to 1.2.0 (fix po o [2002/02/09] conf/34776 rc.diskless1 creates insufficiently sized o [2002/02/09] ports/34779 ports Update port: ja-kdevelop, ja-kdenetwork, o [2002/02/09] docs/34782 doc pw(8) contains conflicting explanations f o [2002/02/10] misc/34788 dwmalone dmesg issues with console output o [2002/02/10] kern/34789 joe PNY brand USB flash readers need 10 byte o [2002/02/10] misc/34790 [PATCH] fortune(6) typo fixes o [2002/02/10] kern/34791 MFC removal of outdated comment from sysc o [2002/02/10] ports/34792 ports New port: acfax o [2002/02/10] docs/34794 doc [patch] Documentation Primer uses depreca o [2002/02/10] ports/34796 jmz wrong path in /etc/XF86Config (purely cos o [2002/02/10] ports/34797 ports xmame links with wrong libusb o [2002/02/10] ports/34804 ports .asmailrc -- the user config file for por o [2002/02/10] ports/34806 gnome esd from esound-0.2.23 port doesn't conne o [2002/02/10] ports/34809 ports german/bbbike update o [2002/02/10] ports/34812 ports [MAINTAINER UPDATE] database/firebird-dev o [2002/02/10] bin/34813 [PATCH] sed dumps core on "unusual" scrip o [2002/02/10] ports/34815 ports new port: freenet, the anonymous internet o [2002/02/10] ports/34817 ports Qtella 0.3.6 have been released o [2002/02/11] kern/34820 FreeBSD should be able to beep after shut o [2002/02/11] ports/34822 lioux [patch] net/silc-server master_site renam o [2002/02/11] ports/34823 lioux [patch] net/silc-client master_site chang o [2002/02/11] ports/34824 lioux [patch] net/silc-doc has a changed master o [2002/02/11] ports/34826 lioux [patch] devel/silc-toolkit has a changed o [2002/02/11] ports/34827 billf [patch] net/ethereal has a changed master o [2002/02/11] bin/34831 [PATCH] send-pr -a doesn't work as advert o [2002/02/11] bin/34832 /usr/share/man/cat3/setkey.3.gz linked to o [2002/02/11] bin/34834 "fix" of du(1) and -h o [2002/02/11] ports/34835 ports [PATCH] ghostscript-gnu fails to compile a [2002/02/11] misc/34839 maxim syslogd fails to create additional log so o [2002/02/11] ports/34840 ports New port: DansGuardian -- fast web conten o [2002/02/11] ports/34841 dirk Adding cyrus to mod_php o [2002/02/11] bin/34843 `tcpdump port echo' filters for port 4 in o [2002/02/11] pending/34847gnats-adminoversight in LINT documentation line o [2002/02/11] ports/34848 tg make of python21 hangs in loop o [2002/02/11] misc/34850 scp cannot talk to ssh2 sites that have S o [2002/02/11] ports/34853 mharo [PATCH] Fix breakage in net/naim on insta o [2002/02/11] kern/34854 /src/sys/dev/sound doesn't work correctly o [2002/02/11] ports/34857 ports new port databases/postgresql-odbc o [2002/02/11] ports/34858 ports new port p5-postgresql-plperl o [2002/02/11] ports/34859 ports new port databases/postgresql-pltcl o [2002/02/11] ports/34860 ports new port databases/postgresql-tcltk o [2002/02/11] ports/34864 ports change request to allow teTeX to build WI o [2002/02/12] ports/34870 ports new port: lang/pnetlib o [2002/02/12] bin/34874 Netstat output to small o [2002/02/12] ports/34875 gnome medusa doesn't build o [2002/02/12] ports/34876 ports Update port: net/cricket to 1.0.3 o [2002/02/12] ports/34877 roam update xvkbd port to newer version o [2002/02/12] ports/34878 sysinstall o [2002/02/12] kern/34880 Impossibility of grouping IP into a pipe o [2002/02/12] ports/34894 gnome AbiWord fails to install o [2002/02/12] bin/34898 [PATCH] rev 1.7 of xargs.c broke document o [2002/02/13] ports/34901 gnome sodipodi-0.24.1 core dumps o [2002/02/13] ports/34903 kuriyama japanese/man is not LOCALBASE clean o [2002/02/13] ports/34904 gnome graphics/imlib is not LOCALBASE clean o [2002/02/13] ports/34908 ports libpng port makes bad dynamic library on o [2002/02/13] docs/34909 doc Porters Handbook or portlint problem o [2002/02/13] ports/34910 ports New port submission: mbrowse o [2002/02/13] bin/34919 portmap can not exclusively bind to 127.0 o [2002/02/13] docs/34921 doc Developer's Handbook fixes continued: Ker o [2002/02/13] misc/34924 kscd crash on startup signal 11 o [2002/02/13] ports/34925 billf [PATCH] Fix build of net-snmp o [2002/02/14] ports/34928 ports New port for cppunit o [2002/02/14] ports/34931 ports Default users in WWW ports to use newly i o [2002/02/14] misc/34935 New locale (Cyrillic Windows Codepage 125 o [2002/02/14] ports/34936 ports netscape6 will not launch from launcher o o [2002/02/14] ports/34938 nakai icewm port pkg-plist not complete o [2002/02/14] kern/34942 Attempt to play -> "pcm0: play interrupt o [2002/02/14] alpha/34948 alpha Promise TX2 ATA133 controller doesnt work f [2002/02/14] misc/34949 4.5 mfsroot floppy default system to inst o [2002/02/14] kern/34952 Mouse cursor invisible with USB mice and o [2002/02/15] conf/34954 imp pccard.conf entry for BUFFALO LPC3-CLT (1 o [2002/02/15] bin/34955 [PATCH] ps(1) is out of touch with realit o [2002/02/15] kern/34963 identify procs belonging to the same jail o [2002/02/15] kern/34965 4.4, 4.5 freeze at boot time on ASUS P2B o [2002/02/15] docs/34966 doc Developers' handbook, cont. : l10n chapte o [2002/02/15] ports/34968 ports update ports/archivers/bzip2 o [2002/02/15] ports/34970 ports patch for ports/security/pks o [2002/02/15] ports/34973 ports Updated port: textproc/p5-Data-FormValida o [2002/02/15] ports/34974 kde Incorrect mouse config in kde 2.2.2 o [2002/02/15] ports/34975 ports mplayer don't compile with divx codec o [2002/02/15] ports/34976 ports New port: graphics/sinek o [2002/02/15] ports/34978 mharo security/p5-Crypt-RSA missing required mo o [2002/02/15] kern/34979 __semctl verifies semid against wrong val o [2002/02/15] ports/34981 ports new port: misc/bibletime: biblestudy appl o [2002/02/15] docs/34982 doc rc.conf man page does not list the kerber o [2002/02/15] ports/34983 gnome [PATCH] Update devel/anjuta to 0.1.9 o [2002/02/15] ports/34984 ports www/frontpage: patch to fp_install.sh fai o [2002/02/15] ports/34985 ports New port: net/ldapdiff A utility to patch o [2002/02/15] ports/34987 portmgr bsd.port.mk: silence awk's warning o [2002/02/15] ports/34988 portmgr bsd.port.mk: use ECHO_CMD instead of ECHO o [2002/02/15] ports/34991 ports New port: durep (displays disk usage in a f [2002/02/16] bin/34992 des fetch can not change timestamp when same o [2002/02/16] ports/34994 gnome Distfile for devel/pkgconfig unfetchable o [2002/02/16] ports/34997 ports xf86cfg core dumps o [2002/02/16] ports/34998 ports ports/audio/baudline new version o [2002/02/16] ports/34999 ports New Port: QScheme scheme interpretor o [2002/02/16] ports/35002 gnome [PATCH] Update for port textproc/libxml2 o [2002/02/16] ports/35003 gnome [PATCH] Update for port textproc/libxslt o [2002/02/16] ports/35006 ports New port archivers/arj: ARJ32 v 3.10 file o [2002/02/16] ports/35007 ports New port archivers/arj: ARJ32 v 3.10 russ o [2002/02/16] ports/35008 ports [SHAR] New port: editors/scribus. This PR o [2002/02/16] kern/35010 pcm0 fails to attach with Intel 82801BA ( o [2002/02/16] docs/35011 doc There are no commands called "diskless" o o [2002/02/16] kern/35012 [PATCH] SiS 7012 in the SiS 735 chips isn o [2002/02/16] ports/35014 ports lame port does not depend on Gtk so far. o [2002/02/16] bin/35018 enhancing daily/460.status-mail-rejects o [2002/02/16] ports/35020 ports database/postgres7 ports doesn't build on o [2002/02/16] ports/35021 ports graphics/graphviz build fails in certain o [2002/02/16] ports/35023 ports openmotif,openmotif-devel -> openmotif2.2 o [2002/02/16] ports/35028 ports NEW PORT: saves and restores mixer states o [2002/02/17] ports/35036 ports unfetchable distfile for graphs/xbarcode o [2002/02/17] ports/35037 ports New port: sysutils/cfengine-devel o [2002/02/17] ports/35038 ports cleanup pkg-plist for x11-toolkits/Xaw3d o [2002/02/17] ports/35043 ports biology/gperiodic: take over maintainersh o [2002/02/17] ports/35046 ports mail/imp: update php.ini to permit attach o [2002/02/17] ports/35047 ports www/horde-devel: adding syntax highlighti o [2002/02/17] ports/35048 ports devel/chora: fix wrong date display + add o [2002/02/17] ports/35049 ports mail/imp-devel: fix a warning when buildi o [2002/02/17] ports/35051 ports Repocopy request: www/horde-devel -> www/ o [2002/02/17] ports/35053 ports libomapi.a conflict from bind9 and isc-dh o [2002/02/17] ports/35055 ports New port o [2002/02/17] ports/35060 ports New port: deskmenu (GTK root menu applica o [2002/02/17] ports/35062 ports New Port: audio/xmms-mailnotify 0.2.0 o [2002/02/17] kern/35064 ACPI not work with Epox 8KHA+ motherboard o [2002/02/17] ports/35065 ports Update port: www/boa - update to version o [2002/02/17] bin/35070 math(3) references section "3m", etc. o [2002/02/18] ports/35072 ports port update: sysutils/sarah o [2002/02/18] ports/35074 znerd Update port: www/jakarta-tomcat (remove d o [2002/02/18] i386/35077 Identify Intel 82845 chipset o [2002/02/18] i386/35078 Uninitialized pointer dereference in func o [2002/02/18] ports/35079 ports Allow JDK version to be overridden in jav o [2002/02/18] ports/35080 ports Allow JDK version to be overridden in jav o [2002/02/18] ports/35083 gnome Gnome screensaver doesn't work, but KDE's o [2002/02/18] ports/35084 ports kdegraphics package on ftp.freebsd.org is 1893 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 11:22:14 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C98D37B405; Mon, 18 Feb 2002 11:22:11 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IJEa647191; Mon, 18 Feb 2002 11:14:36 -0800 (PST) (envelope-from joe) Date: Mon, 18 Feb 2002 11:14:36 -0800 (PST) From: Message-Id: <200202181914.g1IJEa647191@freefall.freebsd.org> To: hitmaster2k@yahoo.com, joe@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/32269: [PATCH] - categorizing (XXX Lines) in NOTES Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] - categorizing (XXX Lines) in NOTES State-Changed-From-To: open->closed State-Changed-By: joe State-Changed-When: Mon Feb 18 11:13:52 PST 2002 State-Changed-Why: Requested by the submitter due to misfiling. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32269 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 11:40: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D506D37B405 for ; Mon, 18 Feb 2002 11:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IJe1Q21468; Mon, 18 Feb 2002 11:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DF6937B405 for ; Mon, 18 Feb 2002 11:32:27 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IJWRZ04572; Mon, 18 Feb 2002 11:32:27 -0800 (PST) (envelope-from nobody) Message-Id: <200202181932.g1IJWRZ04572@freefall.freebsd.org> Date: Mon, 18 Feb 2002 11:32:27 -0800 (PST) From: Clint To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/35087: TAR does not recurse directories if it runs into a file with "\" in the title followed by a space. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35087 >Category: bin >Synopsis: TAR does not recurse directories if it runs into a file with "\" in the title followed by a space. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 18 11:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Clint >Release: 4.5 i guess >Organization: >Environment: reeBSD cowpie.acm.vt.edu 4.5-STABLE FreeBSD 4.5-STABLE #0: Mon Feb 4 00:07:35 EST 2002 root@cowpie.acm.vt.edu:/usr/src/sys/compile/GENERIC i386 >Description: It seems like putting a "\" in the filename is causing tar to mess up ... it wont recurse directories. A script that I'd been using for years finally died when I created a file called something like "__\ reminder\ to\ self\ __" ... The resulting tar would only be the files in the root directory -- it stopped recursing when it hit the filename with spaces and backslashes in it. And nowadays with windows supporting long filenames, most filenames have spaced in them (to my experience, having over a terabyte of my own data.) thanks >How-To-Repeat: see above >Fix: black magic >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 Feb 18 11:43:34 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADB8537B402; Mon, 18 Feb 2002 11:43:31 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IJWvG06600; Mon, 18 Feb 2002 11:32:57 -0800 (PST) (envelope-from joe) Date: Mon, 18 Feb 2002 11:32:57 -0800 (PST) From: Message-Id: <200202181932.g1IJWvG06600@freefall.freebsd.org> To: clefevre@citeweb.net, joe@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/14793: more fdisk partition types Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: more fdisk partition types State-Changed-From-To: open->closed State-Changed-By: joe State-Changed-When: Mon Feb 18 11:32:41 PST 2002 State-Changed-Why: Committed in -current. Will MFC in a few days. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=14793 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 12:10:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 39C3637B417 for ; Mon, 18 Feb 2002 12:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IKA2w49082; Mon, 18 Feb 2002 12:10:02 -0800 (PST) (envelope-from gnats) Received: from clever.eusc.inter.net (clever.eusc.inter.net [213.73.101.4]) by hub.freebsd.org (Postfix) with ESMTP id 8982437B405 for ; Mon, 18 Feb 2002 12:09:20 -0800 (PST) Received: from tc08-n66-164.de.inter.net ([213.73.66.164] helo=there) by clever.eusc.inter.net with smtp (Exim 3.22 #3) id 16cu6B-0004m6-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 18 Feb 2002 21:09:19 +0100 Message-Id: Date: Mon, 18 Feb 2002 21:09:18 +0100 From: Matthias Schuendehuette Reply-To: msch@snafu.de To: FreeBSD-gnats-submit@freebsd.org Subject: misc/35088: USB-Mouse configuration with sysinstall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35088 >Category: misc >Synopsis: USB-Mouse configuration with sysinstall >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Feb 18 12:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Matthias Schuendehuette >Release: FreeBSD 4.5-STABLE i386 >Organization: Private site running FreeBSD-STABLE >Environment: System: FreeBSD mscu.best-eng.de 4.5-STABLE FreeBSD 4.5-STABLE #8: Sat Feb 16 12:27:43 CET 2002 root@mscu.best-eng.de:/raid/obj/usr/src/sys/MSCU i386 >Description: It is not possible to configure FreeBSD during installation with '/stand/sysinstall' to use a mouse connected to an USB-Port >How-To-Repeat: Use /stand/sysinstall -> Configure -> Mouse -> Port there's no option for an USB-Mouse >Fix: --- src/release/sysinstall/menus.c.old Sun Feb 17 13:24:55 2002 +++ src/release/sysinstall/menus.c Sun Feb 17 13:29:06 2002 @@ -377,15 +377,13 @@ NULL, { { "1 PS/2", "PS/2 style mouse (/dev/psm0)", dmenuVarCheck, dmenuSetVariable, NULL, VAR_MOUSED_PORT "=/dev/psm0" }, - { "2 COM1", "Serial mouse on COM1 (/dev/cuaa0)", + { "2 USB", "Mouse on USB (/dev/ums0)", + dmenuVarCheck, dmenuSetVariable, NULL, VAR_MOUSED_PORT "=/dev/ums0" }, + { "3 COM1", "Serial mouse on COM1 (/dev/cuaa0)", dmenuVarCheck, dmenuSetVariable, NULL, VAR_MOUSED_PORT "=/dev/cuaa0" }, - { "3 COM2", "Serial mouse on COM2 (/dev/cuaa1)", + { "4 COM2", "Serial mouse on COM2 (/dev/cuaa1)", dmenuVarCheck, dmenuSetVariable, NULL, VAR_MOUSED_PORT "=/dev/cuaa1" }, - { "4 COM3", "Serial mouse on COM3 (/dev/cuaa2)", - dmenuVarCheck, dmenuSetVariable, NULL, VAR_MOUSED_PORT "=/dev/cuaa2" }, - { "5 COM4", "Serial mouse on COM4 (/dev/cuaa3)", - dmenuVarCheck, dmenuSetVariable, NULL, VAR_MOUSED_PORT "=/dev/cuaa3" }, - { "6 BusMouse", "Logitech, ATI or MS bus mouse (/dev/mse0)", + { "5 BusMouse", "Logitech, ATI or MS bus mouse (/dev/mse0)", dmenuVarCheck, dmenuSetVariable, NULL, VAR_MOUSED_PORT "=/dev/mse0" }, { NULL } }, }; -- *************************************************************************** * Matthias Schuendehuette msch@snafu.de * * Solmsstrasse 44 * * D-10961 Berlin Engineering Systems Support and Operation * * Germany (Powered by FreeBSD 4.5-STABLE) * *************************************************************************** >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 Feb 18 12:12:24 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 70FE137B405; Mon, 18 Feb 2002 12:12:13 -0800 (PST) Received: (from greid@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1IK8DO48677; Mon, 18 Feb 2002 12:08:13 -0800 (PST) (envelope-from greid) Date: Mon, 18 Feb 2002 12:08:13 -0800 (PST) From: Message-Id: <200202182008.g1IK8DO48677@freefall.freebsd.org> To: greid@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/34847: oversight in LINT documentation line Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: oversight in LINT documentation line Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: greid Responsible-Changed-When: Mon Feb 18 12:07:40 PST 2002 Responsible-Changed-Why: Mangled by GNATS http://www.FreeBSD.org/cgi/query-pr.cgi?pr=34847 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 15:20:19 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 528E637B402 for ; Mon, 18 Feb 2002 15:20:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1INK9c54706; Mon, 18 Feb 2002 15:20:09 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Feb 2002 15:20:09 -0800 (PST) Message-Id: <200202182320.g1INK9c54706@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Ryan Johnson" Subject: Re: kern/35061: After printing to HP Deskjet 656c USB printer, computer hangs Reply-To: "Ryan Johnson" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/35061; it has been noted by GNATS. From: "Ryan Johnson" To: joe@tao.org.uk Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/35061: After printing to HP Deskjet 656c USB printer, computer hangs Date: Mon, 18 Feb 2002 17:18:33 -0600 >From: Josef Karthauser >To: Ryan Johnson >CC: freebsd-gnats-submit@FreeBSD.org >Subject: Re: kern/35061: After printing to HP Deskjet 656c USB printer, >computer hangs >Date: Mon, 18 Feb 2002 16:15:40 +0000 >MIME-Version: 1.0 >Received: from [212.135.162.51] by hotmail.com (3.2) with ESMTP id >MHotMailBE3A7414002540042A1ED487A2330A250; Mon, 18 Feb 2002 08:17:25 -0800 >Received: by tao.org.uk (Postfix, from userid 100)id 5C368314; Mon, 18 Feb >2002 16:15:40 +0000 (GMT) >From joe@tao.org.uk Mon, 18 Feb 2002 08:17:45 -0800 >Message-ID: <20020218161540.GC40657@genius.tao.org.uk> >References: <200202171919.g1HJJbP58799@freefall.freebsd.org> >In-Reply-To: <200202171919.g1HJJbP58799@freefall.freebsd.org> >User-Agent: Mutt/1.3.27i > >On Sun, Feb 17, 2002 at 11:19:37AM -0800, Ryan Johnson wrote: > > > > >Description: > > After any file is printed to a HP Deskjet 656c printer (USB), the system >hangs. I have enabled debugging for the ulpt driver, here is the output: > > > > ulptwrite > > ulpt_status: status=0x18 err=0 > > ulptwrite: transfer 1024 bytes > > > > ulptwrite > > ulpt_status: status=0x18 err=0 > > ulptwrite: transfer bytes > > ulpt_input: got some data > > > >Are you using the patch set that I announced on -stable a few days ago? > >Also, it's important to know which usb controller device you're using. >A copy of your dmesg should provide that information (uhci or ohci). > >Thanks, >Joe ><< attach3 >> I don't have access to the computer at the moment (home internet connection may be down) but the usb controller is uhci. If you need the dmesg I will post it when I get home. I cvsupped the day after your usb changes went into -stable (feb. 16th), so I do have the most current usb changes. The printer worked fine using the feb. 3rd -current snapshot, but it wouldn't even attempt to print in -stable until your recent usb changes were merged. Ryan _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 16: 0:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D49537B402 for ; Mon, 18 Feb 2002 16:00:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1J006Q66451; Mon, 18 Feb 2002 16:00:06 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7328B37B404 for ; Mon, 18 Feb 2002 15:55:16 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1INtGX65869; Mon, 18 Feb 2002 15:55:16 -0800 (PST) (envelope-from nobody) Message-Id: <200202182355.g1INtGX65869@freefall.freebsd.org> Date: Mon, 18 Feb 2002 15:55:16 -0800 (PST) From: Mike Cole To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/35096: Network card dies copying files > 200MB with FTP and SCP Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35096 >Category: i386 >Synopsis: Network card dies copying files > 200MB with FTP and SCP >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 Feb 18 16:00:05 PST 2002 >Closed-Date: >Last-Modified: >Originator: Mike Cole >Release: 4.5-RELEASE >Organization: Ozium1 Technologies >Environment: FreeBSD gunida.home.ozium1.org 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Mon Jan 28 14:31:56 GMT 2002 murray@builder.freebsdmall.com:/usr/src/sys/compile/GENERIC i386 >Description: I first just scp'ed a 200MB file from a win2k machine to the BSD machine. The D-Link card I had in it just died, no messages, nothing. The same thing happened with FTP, if the file was over about 200MB the network card would just die. I bought a new NetGear (SIS) card, it seemed ok for about a day and then it started happening again. >How-To-Repeat: FTP or SCP a file > 200MB from a win2k machine to a FreeBSD 4.5-RELEASE machine. >Fix: If I do 'ifconfig device down' and 'ifconfig device up' it all works fine again - but this isn't a fix and can't be done remotely. >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 Feb 18 17: 6:38 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from zeppelin.stepahead.net (adsl-64-169-241-202.dsl.sndg02.pacbell.net [64.169.241.202]) by hub.freebsd.org (Postfix) with ESMTP id 6EAC337B404 for ; Mon, 18 Feb 2002 17:06:29 -0800 (PST) Received: from dufresne ([192.168.0.11]) by zeppelin.stepahead.net (8.11.2/8.11.2/Debian 8.11.2-1) with SMTP id g1J16S322999 for ; Mon, 18 Feb 2002 17:06:28 -0800 Message-ID: <00f201c1b8e1$a8ed9760$0b00a8c0@dufresne> From: "Dan Parsons" To: Subject: installation bug Date: Mon, 18 Feb 2002 17:06:28 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, When booting the FreeBSD install CD with my el-cheapo USB-based CF card reader in, after the kernel boots and before the install program starts, I get a "integer fault error", and the system reboots itself. If I unplug this device, everything works just fine. There is no card in the device, and I think this is probably why freebsd is freaking out. In any case, I don't think having the system reboot right away is a good thing :) Dan Parsons - Senior NetAdmin NYIP shell & web hosting services http://nyip.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 17:12:15 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A4B037B404; Mon, 18 Feb 2002 17:12:12 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1J15or82492; Mon, 18 Feb 2002 17:05:50 -0800 (PST) (envelope-from alfred) Date: Mon, 18 Feb 2002 17:05:50 -0800 (PST) From: Message-Id: <200202190105.g1J15or82492@freefall.freebsd.org> To: mwm@mired.org, alfred@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35012: [PATCH] SiS 7012 in the SiS 735 chips isn't supported. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] SiS 7012 in the SiS 735 chips isn't supported. State-Changed-From-To: open->closed State-Changed-By: alfred State-Changed-When: Mon Feb 18 17:05:31 PST 2002 State-Changed-Why: patches have been committed to both 4.x and 5.0 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35012 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 17:30:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 919F837B405 for ; Mon, 18 Feb 2002 17:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1J1U1R85513; Mon, 18 Feb 2002 17:30:01 -0800 (PST) (envelope-from gnats) Received: from skaro.quic.net (cvg-65-27-234-192.cinci.rr.com [65.27.234.192]) by hub.freebsd.org (Postfix) with ESMTP id DD9E137B402 for ; Mon, 18 Feb 2002 17:29:48 -0800 (PST) Received: (from root@localhost) by skaro.quic.net (8.11.3/8.11.3) id g1J1UOl33873; Mon, 18 Feb 2002 20:30:24 -0500 (EST) (envelope-from utsl) Message-Id: <200202190130.g1J1UOl33873@skaro.quic.net> Date: Mon, 18 Feb 2002 20:30:24 -0500 (EST) From: Nathan Hawkins Reply-To: Nathan Hawkins To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/35099: ldd in -STABLE fails on libc. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35099 >Category: bin >Synopsis: ldd in -STABLE fails on libc. >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 Feb 18 17:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Nathan Hawkins >Release: FreeBSD 4.5-RELEASE i386 >Organization: Quality Internet Communications >Environment: System: FreeBSD skaro.quic.net 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Fri Feb 1 12:35:40 EST 2002 root@skaro.quic.net:/skaro/obj/usr/src/sys/GENERIC i386 >Description: The new ldd support for shared libraries, which is now in -STABLE doesn't work on libc. >How-To-Repeat: # ldd /usr/lib/libc.so.4 /usr/lib/libc.so.4: ldd: /usr/lib/libc.so.4: (null) /usr/lib/libc.so.4: exit status 1 >Fix: Apply the following patch to src/libexec/rtld-elf/rtld.c --- ldd-fix.diff begins here --- --- rtld.c.bak Tue Feb 19 00:15:30 2002 +++ rtld.c Tue Feb 19 00:43:00 2002 @@ -1589,7 +1589,12 @@ /* Make list of init functions to call. */ initlist_add_objects(obj, &obj->next, &initlist); } - } + } else + if (ld_tracing) { + trace_loaded_objects(obj); + wlock_release(); + exit(0); + } } GDB_STATE(RT_CONSISTENT,obj ? &obj->linkmap : NULL); --- ldd-fix.diff ends here --- >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 Feb 18 17:50: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C40A37B402 for ; Mon, 18 Feb 2002 17:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1J1o2M90270; Mon, 18 Feb 2002 17:50:02 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Feb 2002 17:50:02 -0800 (PST) Message-Id: <200202190150.g1J1o2M90270@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Josef Karthauser Subject: Re: kern/35061: After printing to HP Deskjet 656c USB printer, computer hangs Reply-To: Josef Karthauser Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/35061; it has been noted by GNATS. From: Josef Karthauser To: Ryan Johnson Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/35061: After printing to HP Deskjet 656c USB printer, computer hangs Date: Tue, 19 Feb 2002 01:42:26 +0000 --YToU2i3Vx8H2dn7O Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Feb 18, 2002 at 05:18:33PM -0600, Ryan Johnson wrote: >=20 > >Are you using the patch set that I announced on -stable a few days ago? > > > >Also, it's important to know which usb controller device you're using. > >A copy of your dmesg should provide that information (uhci or ohci). > > > >Thanks, > >Joe > ><< attach3 >> >=20 > I don't have access to the computer at the moment (home internet connecti= on=20 > may be down) but the usb controller is uhci. If you need the dmesg I will= =20 > post it when I get home. I cvsupped the day after your usb changes went= =20 > into -stable (feb. 16th), so I do have the most current usb changes. The= =20 > printer worked fine using the feb. 3rd -current snapshot, but it wouldn't= =20 > even attempt to print in -stable until your recent usb changes were merge= d. Can you try the patch that I sent to the -stable mailing list please? That brings all the differences from -current into -stable and so should behave the same way as your -current snapshot did. Joe --YToU2i3Vx8H2dn7O Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjxxrYIACgkQXVIcjOaxUBbEjQCfZ8D49gCPKKWte1fc8LQTk1Bl rd8AoNYRrcypnfNWi17CcQoRXC5xVRHM =wfk9 -----END PGP SIGNATURE----- --YToU2i3Vx8H2dn7O-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 18:20:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C177737B417 for ; Mon, 18 Feb 2002 18:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1J2K1V02913; Mon, 18 Feb 2002 18:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BBA8A37B419 for ; Mon, 18 Feb 2002 18:12:21 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1J2CLs00207; Mon, 18 Feb 2002 18:12:21 -0800 (PST) (envelope-from nobody) Message-Id: <200202190212.g1J2CLs00207@freefall.freebsd.org> Date: Mon, 18 Feb 2002 18:12:21 -0800 (PST) From: Thomas Burbridge To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/35101: cvusupit and other packages won't extract Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35101 >Category: i386 >Synopsis: cvusupit and other packages won't extract >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 Feb 18 18:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Thomas Burbridge >Release: FreeBSD 4.5 >Organization: >Environment: FreeBSD 4.5-RELEASE FreeBSD 4.5-#0: Jan 28 14:31:56 GMT 2002 Murray@builder.Freedsmall.com:/usr/src/sys/compile/GENERIC i386 >Description: I can't get cvsupit-3.0 to extract. It stalls indefinitely.After a type -c and press continue. It says error 1 Other problem files to extract: totd-1.2_1, and ssmtp_2.38 Also gnome 1.4.1b2_1 can't find oaf-0 although oaf-o.6.7 does exist and will extract >How-To-Repeat: extract cvsupit-3.0 from cdrom disk 1 FreeBSD 4.5 extract totd-1.2_1 extract ssmtp_2.38 extract gnome 1.4.1b2_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 Feb 18 19:54:19 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from wastelandranger.org (germania.inboxinc.com [205.162.236.173]) by hub.freebsd.org (Postfix) with ESMTP id 14F5337B402 for ; Mon, 18 Feb 2002 19:54:16 -0800 (PST) Received: from vault12 (dsl-235-27.stwr.brightok.net [205.162.235.27]) by wastelandranger.org (8.11.6/8.11.6) with ESMTP id g1J3xu015543 for ; Mon, 18 Feb 2002 21:59:56 -0600 (CST) Message-Id: <4.2.0.58.20020218215359.009819b0@wastelandranger.org> X-Sender: jga@wastelandranger.org X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Mon, 18 Feb 2002 21:57:10 -0600 To: freebsd-bugs@freebsd.org From: Joseph Anthony Subject: WTF? Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I recently aquired a PII Slot 1 system and moved my scsi card and drives (one being IDE) from an older system to upgrade the server. After I get it going, I notice it hang and dmesg outputs this at RANDOM. I boot off of the scsi drives and use the IDE drive for /home. Here is my uname -a: wastelandranger:/usr/local/var (11)# uname -a FreeBSD wastelandranger.org 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Mon Feb 18 11:44:18 CST 2002 root@wastelandranger.org:/usr/local/src2/sys/compile/WASTELAND i386 dmesg error: Untagged Q(0): 40 sg[0] - Addr 0x3320000 : Length 1024 (da1:ahc0:0:1:0): BDR message in message buffer (da1:ahc0:0:1:0): SCB 0x0 - timed out ahc0: Dumping Card State in Command phase, at SEQADDR 0xa4 ACCUM = 0x80, SINDEX = 0xac, DINDEX = 0xc0, ARG_2 = 0x6 HCNT = 0x0 SCSISEQ = 0x12, SBLKCTL = 0x0 DFCNTRL = 0x6, DFSTATUS = 0x48 LASTPHASE = 0x80, SCSISIGI = 0x96, SXFRCTL0 = 0x88 SSTAT0 = 0x5, SSTAT1 = 0x3 STACK == 0x35, 0x186, 0x156, 0x0 SCB count = 170 Kernel NEXTQSCB = 68 Card NEXTQSCB = 0 QINFIFO entries: 40 36 0 54 29 59 67 10 11 58 42 8 39 19 1 5 66 3 16 47 46 31 56 32 41 27 13 2 7 57 43 17 167 69 45 18 50 55 6 28 22 4 26 51 38 34 23 20 33 44 24 53 12 52 49 37 14 9 21 48 35 30 15 Waiting Queue entries: Disconnected Queue entries: QOUTFIFO entries: Sequencer Free SCB List: 0 7 1 8 4 13 10 14 12 11 2 5 15 9 6 Pending list: 15, 30, 35, 48, 21, 9, 14, 37, 49, 52, 12, 53, 24, 44, 33, 20, 23, 34, 38, 51, 26, 4, 22, 28, 6, 55, 50, 18, 45, 69, 167, 17, 43, 57, 7, 2, 13, 27, 41, 32, 56, 31, 46, 47, 16, 3, 66, 5, 1, 19, 39, 8, 42, 58, 11, 10, 67, 59, 29, 54, 0, 36, 40, 25 Kernel Free SCB list: 65 168 169 150 151 152 153 154 155 156 157 158 159 140 141 142 143 144 145 146 147 148 149 130 131 132 133 134 135 136 137 138 139 120 121 122 123 124 125 126 127 128 129 110 111 112 113 114 115 116 117 118 119 100 101 102 103 104 105 106 107 108 109 90 91 92 93 94 95 96 97 98 99 80 81 82 83 84 85 86 87 88 89 70 71 72 73 74 75 76 77 78 79 60 61 62 63 64 166 165 164 163 162 161 160 Untagged Q(0): 40 sg[0] - Addr 0x3320000 : Length 1024 (da1:ahc0:0:1:0): no longer in timeout, status = 34b ahc0: Issued Channel A Bus Reset. 64 SCBs aborted -- | Joseph Anthony | http://www.wastelandranger.org | jga@wastelandranger.org | ICQ #3923267 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 22:10:58 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.libertysurf.net (mail.libertysurf.net [213.36.80.91]) by hub.freebsd.org (Postfix) with ESMTP id 141CA37B402 for ; Mon, 18 Feb 2002 22:10:21 -0800 (PST) Received: from x4v4q0 (212.47.237.169) by mail.libertysurf.net (5.1.053) id 3C6C79F4000AC503; Tue, 19 Feb 2002 07:08:32 +0100 Message-ID: <3C6C79F4000AC503@mail.libertysurf.net> (added by postmaster@libertysurf.fr) From: jcb To: Reply-To: Subject: CD OF 4 EUROPEAN DIRECTORIES ON CAREERS IN CATERING Date: Mon, 18 feb 2002 22:13:15 +0100 Importance: normal X-Mailer: GOTO Software Sarbacane Vs 1.10C Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="8102827682370204" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --8102827682370204 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable X-mailer: Sarbacane 1.10 TEXTE 4 VERSIONS FRENCH-ENGLISH-DEUTSCH-SPAIN ENFIN DISPONIBLE VERSION 2002 LES ANNUAIRES E-MAILS DES PROFESSIONNELS MONDIAUX LIVRES SUR CD-ROM LE CD DES 4 ANNUAIRES EUROPEENS DES METIERS DE LA RESTAURATION 282.415 E-MAILS Annuaire n=B0 1 - 135.698 Emails HOTELS - RESTAURANTS - BARS Annuaire n=B0 2 - 84.356 Emails FOURNISSEURS POUR HOTELS ET RESTAURANTS Annuaire n=B0 3 - 65.236 Emails TOUR-OPERATORS - AGENCES DE VOYAGES - AUTOCARISTES Annuaire n=B0 4 - 17.728 Emails ARCHITECTES - DECORATEURS CONDITIONS DE VENTE 1 - PRIX H.T. : 533 EUROS 2 - DELAI DE LIVRAISON en France : 3 =E0 4 JOURS 3 - PAIEMENT : A r=E9ception contre remboursement sans frais sup. 4 - FORMAT DU FICHIER : PC OU MAC (=E0 pr=E9ciser) 5 - 1 VERSION EXCEL 1 VERSION ACCESS ET 1 VERSION TEXTE 6 - SUPPORT : CD-ROM 7 - HOTLINE : ASSISTANCE TELEPHONIQUE GRATUITE 8 - EN CADEAUX + 130 pays dans le monde livr=E9s gratuitement Et pour r=E9aliser d=E8s maintenant votre premi=E8re campagne d'e-mail= ing le tout nouveau " sarbacane " logiciel d'e-mailing professionnel 100% fran=E7ais pour Windows (version d=E9couverte gratuite) POUR COMMANDER LE CD COMPLET (Pr=E9ciser version PC ou MAC) NOUS RETOURNER CET EMAIL AVEC NOM ET ADRESSE DE LIVRAISON SUIVI DE LA MENTION, BON POUR ACCORD CONTACT resto.acps@libertysurf.fr Direction Commerciale Jc Boulan A.C.P.S France Pour ne plus revoir D'information abus.acps@libertysurf.fr -------------------------------------------------------------------- VERSION 2002 FINALLY AVAILABLE DIRECTORIES OF E-MAILS OF PROFESSIONALS WORLDWIDE DELIVERED ON CD-ROM CD OF 4 EUROPEAN DIRECTORIES ON CAREERS IN CATERING 282.415 E-MAILS Directory n=B0 1 - 115.095 E-mails HOTELS - RESTAURANTS - BARS Directory n=B0 2 - 84.356 E-mails SUPPLIERS FOR HOTELS AND RESTAURANTS Directory n=B0 3 - 65.236 E-mails TOUR OPERATORS - TRAVEL AGENCIES - COACH OPERATORS Directory n=B0 4 - 17.728 E-mails ARCHITECTS - DECORATORS CONDITIONS OF SALE 1 - PRICE EXCL. TAX. : 533 EUROS 2 - DELIVERY within France : 3 to 4 DAYS 3 - PAYMENT : Upon receipt of order at no extra cost. 4 - FILE FORMAT : PC OR MAC (to be specified) 5 - 1 EXCEL VERSION 1 ACCESS VERSION AND 1 TEXT VERSION 6 - MEDIUM : CD-ROM 7 - HOTLINE : FREE TELEPHONE ASSISTANCE 8 - FREE GIFTS + 130 countries worldwide delivered free And to get started immediately on your e-mail campaigns the new " sarbacane " professional e-mailing software 100% French for Windows (free discovery version) TO ORDER THE WHOLE CD (specify whether PC or MAC version) PLEASE RETURN THIS E-MAIL WITH THE NAME AND ADDRESS FOR DELIVERY FOLLOWED BY THE WORDING "READ AND APPROVED" Also available : All professional activity - France - Europe - Eastern Europe - U.S.A. - Canada Contact us ! CONTACT resto.acps@libertysurf.fr Commercial Department Jc Boulan France If you do not wish to receive any more information: abus.acps@libertysurf.fr -------------------------------------------------------------------- AUSGABE 2002 ERH=C4LTLICH WELTWEITES BRANCHENBUCH DER E-MAILADRESSEN AUF CD-ROM CD-ROM DER 4 EUROP=C4ISCHEN BRANCHENB=DCCHER DES GASTST=C4TTENGEWERBES 282.415 E-MAILADRESSEN Branchenbuch Nr. 1 - 115.095 E-Mailadressen HOTELS - RESTAURANTS - LOKALE Branchenbuch Nr. 2 - 84.356 E-Mailadressen LIEFERANTEN DES GASTST=C4TTENGEWERBES Branchenbuch Nr. 3 - 65.236 E-Mailadressen TOUR-OPERATOR - REISEAGENTUREN - REISEBUSUNTERNEHMEN Branchenbuch Nr. 4 - 17.728 E-Mailadressen ARCHITEKTEN - DEKORATEURE VERKAUFSKONDITIONEN 1 - PREIS ohne MwSt. : 533 EUROS 2 - LIEFERFRIST in Frankreich : 3 bis 4 TAGE 3 - ZAHLUNG : Bei Erhalt per Nachnahme ohne Zusatzgeb=FChren 4 - FORMAT : PC ODER MAC (angeben) 5 - 1 EXCEL-AUSGABE 1 ACCESS-AUSGABE und 1 TEXT-AUSGABE 6 - TR=C4GER : CD-ROM 7 - KOSTENLOSER HOTLINE-SUPPORT 8 - GESCHENKE + 130 L=E4nder weltweit kostenlos beliefert Und f=FCr ihre erste E-Mail Werbekampagne das ganz neue professionnelle E-Ma= il-Softwareprogramm "Sarbacane" 100% in franz=F6sischer Sprache f=FCr Windows (kostenlose Probeausgabe) KOMPLETTE CDROM ANFORDERN (Unter Angabe PC- oder MAC-Ausgabe) DURCH ZUR=DCCKSCHICKEN DIESER E-MAIL MIT NAME UND LIEFERADRESSE UNTER ANGABE DES VERMERKS "Best=E4tigt und gezeichnet" Ebenfalls erh=E4ltlich : Gesamtbranchenbuch - Frankreich - Westeuropa - Osteuropa - U.S.A. - Kanada Nehmen Sie Kontakt mit uns auf ! E-MAIL: resto.acps@libertysurf.fr Kaufm=E4nnische Leitung Jc Boulan A.C.P.S Frankreich Wenn Sie keine Informationen mehr von uns erhalten wollen: abus.acps@libertysurf.fr ---------------------------------------------------------------------- VERSI=D3N 2002 POR FIN DISPONIBLE LOS DIRECTORIOS E-MAILS DE LOS PROFESIONALES MUNDIALES ENTREGADOS EN CD-ROM EL CD DE LOS 4 DIRECTORIOS EUROPEOS DE LAS PROFESIONALES DE LA RESTAURACI=D3N 282.415 E-MAILS DIRECTORIO n=B0 1 - 115.095 Emails HOTELES - RESTAURANTES - BARES DIRECTORIO n=B0 2 - 84.356 Emails PROVEEDORES PARA HOTELES Y RESTAURANTES DIRECTORIO n=B0 3 - 65.236 Emails TOUR-OPERADORES - AGENCIAS DE VIAJES -EMPRESAS DE TRANSPORTE EN AUTOCARES DIRECTORIO n=B0 4 - 17.728 Emails ARQUITECTOS - DECORADORES CONDICIONES DE VENTA 1 - PRECIO SIN IVA. : 533 EUROS 2 - PLAZO DE ENTREGA EN FRANCIA : 3 A 4 D=CDAS 3 - FORMA DE PAGO : A la recepci=F3n o contra reembolso sin gastos adicional= es. 4 - FORMATO DEL FICHERO : PC O MAC (Precisar) 5 - 1 VERSI=D3N EXCEL 1 VERSI=D3N ACCESS Y 1 VERSI=D3N TEXTO 6 - SOPORTE : CD-ROM 7 - HOTLINE : AYUDA TELEF=D3NICA GRATUITA 8 - DE REGALO Se entrega gratuitamente en m=E1s de 130 pa=EDses del mundo Y para efectuar desde ahora mismo su primera campa=F1a de e-mailing El muy reciente " sarbacane " software de e-mailing profesional 100% franc=E9s para Windows (versi=F3n abreviada gratuita) PARA ENCARGAR EL CD COMPLETO (Precisar versi=F3n PC o MAC) REENVIAR ESTE CORREO CON SU NOMBRE Y DIRECCI=D3N DE ENTREGA SEGUIDO DE LA ME= NCI=D3N "CONFORME" Tambi=E9n disponible : Todas actividades profesionales - Francia - Europa - Pa=EDses del Este- E.E.= U.U. - Canada =A1Contacte con nosotros ! CONTACTO resto.acps@libertysurf.fr Direcci=F3n Comercial Jc Boulan France Para no recibir m=E1s informaci=F3n abus.acps@libertysurf.fr --8102827682370204 Content-Type: text/html; charset="ISO-8859-1" Content-Transfer-Encoding: Quoted-Printable

TEXTE 4 VERSIONS FRENCH-ENGLI= SH-DEUTSCH-SPAIN

 
ENFIN DISPONIBLE VERSION 2002
LES ANNUAIRES E-MAILS DES PROFESSIONNELS MONDIAUX LIVRES SUR CD-ROM
 
LE CD DES 4 ANNUAIRES EUROPEENS
DES METIERS DE LA RESTAURATION
282.415 E-MAILS
 
Annuaire n° 1 - 135.698 Emails
HOTELS - RESTAURANTS - BARS
 
Annuaire n° 2 - 84.356 Emails
FOURNISSEURS POUR HOTELS ET RESTAURANTS
 
Annuaire n° 3 - 65.236 Emails
TOUR-OPERATORS - AGENCES DE VOYAGES - AUTOCARISTES
 
Annuaire n° 4 - 17.728 Emails
ARCHITECTES - DECORATEURS
CONDITIONS DE VENTE
 
1 - PRIX H.T. : 533 EUROS
2 - DELAI DE LIVRAISON en France : 3 à 4 JOURS
3 - PAIEMENT : A réception contre remboursement sans frais sup.
4 - FORMAT DU FICHIER : PC OU MAC (à préciser)
5 - 1 VERSION EXCEL 1 VERSION ACCESS ET 1 VERSION TEXTE
6 - SUPPORT : CD-ROM
7 - HOTLINE : ASSISTANCE TELEPHONIQUE GRATUITE
8 - EN CADEAUX
+ 130 pays dans le monde livrés gratuitement
Et pour réaliser dès maintenant votre première campagne= d'e-mailing
le tout nouveau " sarbacane " logiciel d'e-mailing professionnel
100% français pour Windows (version découverte gratuite)
 
POUR COMMANDER LE CD COMPLET (Préciser version PC ou MAC)
NOUS RETOURNER CET EMAIL AVEC NOM ET ADRESSE DE LIVRAISON
SUIVI DE LA MENTION, BON POUR ACCORD
CONTACT resto.acps@libertysurf.= fr 
Direction Commerciale Jc Boulan
A.C.P.S
France
 
Pour ne plus revoir D'information
abus.acps@libertysurf.fr 

VERSION 2002 FINALLY AVAILABLE
DIRECTORIES OF E-MAILS OF PROFESSIONALS WORLDWIDE DELIVERED ON CD-ROM
CD OF 4 EUROPEAN DIRECTORIES
ON CAREERS IN CATERING
282.415 E-MAILS
Directory n° 1 - 115.095 E-mails
HOTELS - RESTAURANTS - BARS
Directory n° 2 - 84.356 E-mails
SUPPLIERS FOR HOTELS AND RESTAURANTS
Directory n° 3 - 65.236 E-mails
TOUR OPERATORS - TRAVEL AGENCIES - COACH OPERATORS
Directory n° 4 - 17.728 E-mails
ARCHITECTS - DECORATORS
CONDITIONS OF SALE
1 - PRICE EXCL. TAX. : 533 EUROS
2 - DELIVERY within France : 3 to 4 DAYS
3 - PAYMENT : Upon receipt of order at no extra cost.
4 - FILE FORMAT : PC OR MAC (to be specified)
5 - 1 EXCEL VERSION 1 ACCESS VERSION AND 1 TEXT VERSION
6 - MEDIUM : CD-ROM
7 - HOTLINE : FREE TELEPHONE ASSISTANCE
8 - FREE GIFTS
+ 130 countries worldwide delivered free
And to get started immediately on your e-mail campaigns
the new " sarbacane " professional e-mailing software
100% French for Windows (free discovery version)
TO ORDER THE WHOLE CD (specify whether PC or MAC version)
PLEASE RETURN THIS E-MAIL WITH THE NAME AND ADDRESS
FOR DELIVERY FOLLOWED BY THE WORDING "READ AND APPROVED"
Also available :
All professional activity - France - Europe - Eastern Europe - U.S.A.
- Canada
Contact us !
CONTACT resto.acps@libertysurf.= fr 
Commercial Department Jc Boulan
France
If you do not wish to receive any more information:
abus.acps@libertysurf.fr 

 
 
AUSGABE 2002 ERHÄLTLICH
WELTWEITES BRANCHENBUCH DER E-MAILADRESSEN AUF CD-ROM
CD-ROM DER 4 EUROPÄISCHEN BRANCHENBÜCHER DES GASTSTÄTTENGEWER= BES
282.415 E-MAILADRESSEN
Branchenbuch Nr. 1 - 115.095 E-Mailadressen
HOTELS - RESTAURANTS - LOKALE
Branchenbuch Nr. 2 - 84.356 E-Mailadressen
LIEFERANTEN DES GASTSTÄTTENGEWERBES
Branchenbuch Nr. 3 - 65.236 E-Mailadressen
TOUR-OPERATOR - REISEAGENTUREN - REISEBUSUNTERNEHMEN
Branchenbuch Nr. 4 - 17.728 E-Mailadressen
ARCHITEKTEN - DEKORATEURE
VERKAUFSKONDITIONEN
1 - PREIS ohne MwSt. : 533 EUROS
2 - LIEFERFRIST in Frankreich : 3 bis 4 TAGE
3 - ZAHLUNG : Bei Erhalt per Nachnahme ohne Zusatzgebühren
4 - FORMAT : PC ODER MAC (angeben)
5 - 1 EXCEL-AUSGABE 1 ACCESS-AUSGABE und 1 TEXT-AUSGABE
6 - TRÄGER : CD-ROM
7 - KOSTENLOSER HOTLINE-SUPPORT
8 - GESCHENKE
+ 130 Länder weltweit kostenlos beliefert
Und für ihre erste E-Mail Werbekampagne das ganz neue professionnelle E= -Mail-Softwareprogramm "Sarbacane"
100% in französischer Sprache für Windows (kostenlose Probeausgabe= )
KOMPLETTE CDROM ANFORDERN (Unter Angabe PC- oder MAC-Ausgabe)
DURCH ZURÜCKSCHICKEN DIESER E-MAIL MIT NAME UND LIEFERADRESSE
UNTER ANGABE DES VERMERKS "Bestätigt und gezeichnet"
Ebenfalls erhältlich :
Gesamtbranchenbuch - Frankreich - Westeuropa - Osteuropa - U.S.A.
- Kanada
Nehmen Sie Kontakt mit uns auf !
E-MAIL: resto.acps@libertysurf.= fr 
Kaufmännische Leitung Jc Boulan
A.C.P.S
Frankreich
Wenn Sie keine Informationen mehr von uns erhalten wollen:
abus.acps@libertysurf.fr 

VERSIÓN 2002 POR FIN DISPONIBLE
LOS DIRECTORIOS E-MAILS DE LOS PROFESIONALES MUNDIALES ENTREGADOS EN CD-ROM<= BR> EL CD DE LOS 4 DIRECTORIOS EUROPEOS
DE LAS PROFESIONALES DE LA RESTAURACIÓN
282.415 E-MAILS
DIRECTORIO n° 1 - 115.095 Emails
HOTELES - RESTAURANTES - BARES
DIRECTORIO n° 2 - 84.356 Emails
PROVEEDORES PARA HOTELES Y RESTAURANTES
DIRECTORIO n° 3 - 65.236 Emails
TOUR-OPERADORES - AGENCIAS DE VIAJES -EMPRESAS DE TRANSPORTE EN AUTOCARES DIRECTORIO n° 4 - 17.728 Emails
ARQUITECTOS - DECORADORES
CONDICIONES DE VENTA
1 - PRECIO SIN IVA. : 533 EUROS
2 - PLAZO DE ENTREGA EN FRANCIA : 3 A 4 DÍAS
3 - FORMA DE PAGO : A la recepción o contra reembolso sin gastos adicio= nales.
4 - FORMATO DEL FICHERO : PC O MAC (Precisar)
5 - 1 VERSIÓN EXCEL 1 VERSIÓN ACCESS Y 1 VERSIÓN TEXTO
6 - SOPORTE : CD-ROM
7 - HOTLINE : AYUDA TELEFÓNICA GRATUITA
8 - DE REGALO
Se entrega gratuitamente en más de 130 países del mundo
Y para efectuar desde ahora mismo su primera campaña de e-mailing<= BR> El muy reciente " sarbacane " software de e-mailing profesional
100% francés para Windows (versión abreviada gratuita)
PARA ENCARGAR EL CD COMPLETO (Precisar versión PC o MAC)
REENVIAR ESTE CORREO CON SU NOMBRE Y DIRECCIÓN DE ENTREGA SEGUIDO DE LA= MENCIÓN "CONFORME"
También disponible :
Todas actividades profesionales - Francia - Europa - Países del Este- E= =2EE.U.U.
- Canada
¡Contacte con nosotros !
CONTACTO resto.acps@libertysur= f.fr 
Dirección Comercial Jc Boulan
France
Para no recibir más información
abus.acps@libertysurf.fr
--8102827682370204-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 18 22:20:17 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A075A37B402 for ; Mon, 18 Feb 2002 22:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1J6K1349395; Mon, 18 Feb 2002 22:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2CA9437B41C for ; Mon, 18 Feb 2002 22:11:32 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1J6BWm48106; Mon, 18 Feb 2002 22:11:32 -0800 (PST) (envelope-from nobody) Message-Id: <200202190611.g1J6BWm48106@freefall.freebsd.org> Date: Mon, 18 Feb 2002 22:11:32 -0800 (PST) From: David Capurro To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/35104: Files end up being no bigger than 8192 bytes when putting files on newly added Western Digital IDE drive. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35104 >Category: misc >Synopsis: Files end up being no bigger than 8192 bytes when putting files on newly added Western Digital IDE drive. >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 Feb 18 22:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: David Capurro >Release: FreeBSD 4.4 Current >Organization: The String Cemetery >Environment: FreeBSD thestringcemetery.com 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Thu Nov 29 23:38:33 GMT 2001 root@negroid.pimpcave.net:/usr/src/sys/compile/NEGROID i386 >Description: Fnord. I recently added 2 brand new 54gig Western Digital IDE drives to my system, both on the secondary IDE chain. The Master worked fine, the slave did not... I was not able to write files to the slave drive larger than 8192 bytes in size. I tried switching IDE chains, cables, etc. Nothing I did fixed the problem. I decided that the drive was bad, and I sent it back to WD. I get the new one in the mail, put it in my system and the same problem occurs. Here is the output of my drive adding escapades: *************************************************************************** Ref: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/disks-adding.html thestringcemetery:~$ dd if=/dev/zero of=/dev/ad1 bs=512k dd: /dev/ad1: short write on character device dd: /dev/ad1: end of device 114484+0 records in 114483+1 records out 60022480896 bytes transferred in 5954.056603 secs (10080939 bytes/sec) thestringcemetery:~$ fdisk -BI ad1 ******* Working on device /dev/ad1 ******* thestringcemetery:~$ disklabel -B -w -r ad1s1 auto thestringcemetery:~$ disklabel -e ad1s1 *I am pretty sure I did that part correctly, as one of my drives works, I used the same info from the working drive, and replaced the device name with the correct one* thestringcemetery:~$ thestringcemetery:~$ rm -rf /share2 thestringcemetery:~$ mkdir -p /share2 thestringcemetery:~$ newfs /dev/ad1s1e Warning: 1278 sector(s) in last cylinder unallocated /dev/ad1s1e: 117226242 sectors in 28620 cylinders of 1 tracks, 4096 sectors 57239.4MB in 1789 cyl groups (16 c/g, 32.00MB/g, 7936 i/g) super-block backups (for fsck -b #) at: 32, 65568, 131104, 196640, 262176, 327712, 393248, 458784, 524320, 589856, 655392, 720928, 786464, 852000, 917536, 983072, 1048608, 1114144, 1179680, 1245216, 1310752, 1376288, 1441824, 1507360, 1572896, 1638432, 1703968, 1769504, 1835040, 1900576, 1966112, 2031648, 2097184, 2162720, 2228256, 2293792, 2359328, 2424864, 2490400, 2555936, 2621472, 2687008, 2752544, 2818080, 2883616, 2949152, 3014688, 3080224, 3145760, 3211296, 3276832, 3342368, 3407904, 3473440, 3538976, 3604512, 3670048, 3735584, 3801120, 3866656, 3932192, 3997728, 4063264, 4128800, 4194336, 4259872, 4325408, 4390944, 4456480, 4522016, 4587552, 4653088, 4718624, 4784160, 4849696, 4915232, 4980768, 5046304, 5111840, 5177376, 5242912, 5308448, 5373984, 5439520, 5505056, 5570592, 5636128, 5701664, 5767200, 5832736, 5898272, 5963808, 6029344, 6094880, 6160416, 6225952, 6291488, 6357024, 6422560, 6488096, 6553632, 6619168, 6684704, 6750240, 6815776, 6881312, 6946848, 7012384, 7077920, 7143456, 7208992, 7274528, 7340064, 7405600, 7471136, 7536672, 7602208, 7667744, 7733280, 7798816, 7864352, 7929888, 7995424, 8060960, 8126496, 8192032, 8257568, 8323104, 8388640, 8454176, 8519712, 8585248, 8650784, 8716320, 8781856, 8847392, 8912928, 8978464, 9044000, 9109536, 9175072, 9240608, 9306144, 9371680, 9437216, 9502752, 9568288, 9633824, 9699360, 9764896, 9830432, 9895968, 9961504, 10027040, 10092576, 10158112, 10223648, 10289184, 10354720, 10420256, 10485792, 10551328, 10616864, 10682400, 10747936, 10813472, 10879008, 10944544, 11010080, 11075616, 11141152, 11206688, 11272224, 11337760, 11403296, 11468832, 11534368, 11599904, 11665440, 11730976, 11796512, 11862048, 11927584, 11993120, 12058656, 12124192, 12189728, 12255264, 12320800, 12386336, 12451872, 12517408, 12582944, 12648480, 12714016, 12779552, 12845088, 12910624, 12976160, 13041696, 13107232, 13172768, 13238304, 13303840, 13369376, 13434912, 13500448, 13565984, 13631520, 13697056, 13762592, 13828128, 13893664, 13959200, 14024736, 14090272, 14155808, 14221344, 14286880, 14352416, 14417952, 14483488, 14549024, 14614560, 14680096, 14745632, 14811168, 14876704, 14942240, 15007776, 15073312, 15138848, 15204384, 15269920, 15335456, 15400992, 15466528, 15532064, 15597600, 15663136, 15728672, 15794208, 15859744, 15925280, 15990816, 16056352, 16121888, 16187424, 16252960, 16318496, 16384032, 16449568, 16515104, 16580640, 16646176, 16711712, 16777248, 16842784, 16908320, 16973856, 17039392, 17104928, 17170464, 17236000, 17301536, 17367072, 17432608, 17498144, 17563680, 17629216, 17694752, 17760288, 17825824, 17891360, 17956896, 18022432, 18087968, 18153504, 18219040, 18284576, 18350112, 18415648, 18481184, 18546720, 18612256, 18677792, 18743328, 18808864, 18874400, 18939936, 19005472, 19071008, 19136544, 19202080, 19267616, 19333152, 19398688, 19464224, 19529760, 19595296, 19660832, 19726368, 19791904, 19857440, 19922976, 19988512, 20054048, 20119584, 20185120, 20250656, 20316192, 20381728, 20447264, 20512800, 20578336, 20643872, 20709408, 20774944, 20840480, 20906016, 20971552, 21037088, 21102624, 21168160, 21233696, 21299232, 21364768, 21430304, 21495840, 21561376, 21626912, 21692448, 21757984, 21823520, 21889056, 21954592, 22020128, 22085664, 22151200, 22216736, 22282272, 22347808, 22413344, 22478880, 22544416, 22609952, 22675488, 22741024, 22806560, 22872096, 22937632, 23003168, 23068704, 23134240, 23199776, 23265312, 23330848, 23396384, 23461920, 23527456, 23592992, 23658528, 23724064, 23789600, 23855136, 23920672, 23986208, 24051744, 24117280, 24182816, 24248352, 24313888, 24379424, 24444960, 24510496, 24576032, 24641568, 24707104, 24772640, 24838176, 24903712, 24969248, 25034784, 25100320, 25165856, 25231392, 25296928, 25362464, 25428000, 25493536, 25559072, 25624608, 25690144, 25755680, 25821216, 25886752, 25952288, 26017824, 26083360, 26148896, 26214432, 26279968, 26345504, 26411040, 26476576, 26542112, 26607648, 26673184, 26738720, 26804256, 26869792, 26935328, 27000864, 27066400, 27131936, 27197472, 27263008, 27328544, 27394080, 27459616, 27525152, 27590688, 27656224, 27721760, 27787296, 27852832, 27918368, 27983904, 28049440, 28114976, 28180512, 28246048, 28311584, 28377120, 28442656, 28508192, 28573728, 28639264, 28704800, 28770336, 28835872, 28901408, 28966944, 29032480, 29098016, 29163552, 29229088, 29294624, 29360160, 29425696, 29491232, 29556768, 29622304, 29687840, 29753376, 29818912, 29884448, 29949984, 30015520, 30081056, 30146592, 30212128, 30277664, 30343200, 30408736, 30474272, 30539808, 30605344, 30670880, 30736416, 30801952, 30867488, 30933024, 30998560, 31064096, 31129632, 31195168, 31260704, 31326240, 31391776, 31457312, 31522848, 31588384, 31653920, 31719456, 31784992, 31850528, 31916064, 31981600, 32047136, 32112672, 32178208, 32243744, 32309280, 32374816, 32440352, 32505888, 32571424, 32636960, 32702496, 32768032, 32833568, 32899104, 32964640, 33030176, 33095712, 33161248, 33226784, 33292320, 33357856, 33423392, 33488928, 33554464, 33620000, 33685536, 33751072, 33816608, 33882144, 33947680, 34013216, 34078752, 34144288, 34209824, 34275360, 34340896, 34406432, 34471968, 34537504, 34603040, 34668576, 34734112, 34799648, 34865184, 34930720, 34996256, 35061792, 35127328, 35192864, 35258400, 35323936, 35389472, 35455008, 35520544, 35586080, 35651616, 35717152, 35782688, 35848224, 35913760, 35979296, 36044832, 36110368, 36175904, 36241440, 36306976, 36372512, 36438048, 36503584, 36569120, 36634656, 36700192, 36765728, 36831264, 36896800, 36962336, 37027872, 37093408, 37158944, 37224480, 37290016, 37355552, 37421088, 37486624, 37552160, 37617696, 37683232, 37748768, 37814304, 37879840, 37945376, 38010912, 38076448, 38141984, 38207520, 38273056, 38338592, 38404128, 38469664, 38535200, 38600736, 38666272, 38731808, 38797344, 38862880, 38928416, 38993952, 39059488, 39125024, 39190560, 39256096, 39321632, 39387168, 39452704, 39518240, 39583776, 39649312, 39714848, 39780384, 39845920, 39911456, 39976992, 40042528, 40108064, 40173600, 40239136, 40304672, 40370208, 40435744, 40501280, 40566816, 40632352, 40697888, 40763424, 40828960, 40894496, 40960032, 41025568, 41091104, 41156640, 41222176, 41287712, 41353248, 41418784, 41484320, 41549856, 41615392, 41680928, 41746464, 41812000, 41877536, 41943072, 42008608, 42074144, 42139680, 42205216, 42270752, 42336288, 42401824, 42467360, 42532896, 42598432, 42663968, 42729504, 42795040, 42860576, 42926112, 42991648, 43057184, 43122720, 43188256, 43253792, 43319328, 43384864, 43450400, 43515936, 43581472, 43647008, 43712544, 43778080, 43843616, 43909152, 43974688, 44040224, 44105760, 44171296, 44236832, 44302368, 44367904, 44433440, 44498976, 44564512, 44630048, 44695584, 44761120, 44826656, 44892192, 44957728, 45023264, 45088800, 45154336, 45219872, 45285408, 45350944, 45416480, 45482016, 45547552, 45613088, 45678624, 45744160, 45809696, 45875232, 45940768, 46006304, 46071840, 46137376, 46202912, 46268448, 46333984, 46399520, 46465056, 46530592, 46596128, 46661664, 46727200, 46792736, 46858272, 46923808, 46989344, 47054880, 47120416, 47185952, 47251488, 47317024, 47382560, 47448096, 47513632, 47579168, 47644704, 47710240, 47775776, 47841312, 47906848, 47972384, 48037920, 48103456, 48168992, 48234528, 48300064, 48365600, 48431136, 48496672, 48562208, 48627744, 48693280, 48758816, 48824352, 48889888, 48955424, 49020960, 49086496, 49152032, 49217568, 49283104, 49348640, 49414176, 49479712, 49545248, 49610784, 49676320, 49741856, 49807392, 49872928, 49938464, 50004000, 50069536, 50135072, 50200608, 50266144, 50331680, 50397216, 50462752, 50528288, 50593824, 50659360, 50724896, 50790432, 50855968, 50921504, 50987040, 51052576, 51118112, 51183648, 51249184, 51314720, 51380256, 51445792, 51511328, 51576864, 51642400, 51707936, 51773472, 51839008, 51904544, 51970080, 52035616, 52101152, 52166688, 52232224, 52297760, 52363296, 52428832, 52494368, 52559904, 52625440, 52690976, 52756512, 52822048, 52887584, 52953120, 53018656, 53084192, 53149728, 53215264, 53280800, 53346336, 53411872, 53477408, 53542944, 53608480, 53674016, 53739552, 53805088, 53870624, 53936160, 54001696, 54067232, 54132768, 54198304, 54263840, 54329376, 54394912, 54460448, 54525984, 54591520, 54657056, 54722592, 54788128, 54853664, 54919200, 54984736, 55050272, 55115808, 55181344, 55246880, 55312416, 55377952, 55443488, 55509024, 55574560, 55640096, 55705632, 55771168, 55836704, 55902240, 55967776, 56033312, 56098848, 56164384, 56229920, 56295456, 56360992, 56426528, 56492064, 56557600, 56623136, 56688672, 56754208, 56819744, 56885280, 56950816, 57016352, 57081888, 57147424, 57212960, 57278496, 57344032, 57409568, 57475104, 57540640, 57606176, 57671712, 57737248, 57802784, 57868320, 57933856, 57999392, 58064928, 58130464, 58196000, 58261536, 58327072, 58392608, 58458144, 58523680, 58589216, 58654752, 58720288, 58785824, 58851360, 58916896, 58982432, 59047968, 59113504, 59179040, 59244576, 59310112, 59375648, 59441184, 59506720, 59572256, 59637792, 59703328, 59768864, 59834400, 59899936, 59965472, 60031008, 60096544, 60162080, 60227616, 60293152, 60358688, 60424224, 60489760, 60555296, 60620832, 60686368, 60751904, 60817440, 60882976, 60948512, 61014048, 61079584, 61145120, 61210656, 61276192, 61341728, 61407264, 61472800, 61538336, 61603872, 61669408, 61734944, 61800480, 61866016, 61931552, 61997088, 62062624, 62128160, 62193696, 62259232, 62324768, 62390304, 62455840, 62521376, 62586912, 62652448, 62717984, 62783520, 62849056, 62914592, 62980128, 63045664, 63111200, 63176736, 63242272, 63307808, 63373344, 63438880, 63504416, 63569952, 63635488, 63701024, 63766560, 63832096, 63897632, 63963168, 64028704, 64094240, 64159776, 64225312, 64290848, 64356384, 64421920, 64487456, 64552992, 64618528, 64684064, 64749600, 64815136, 64880672, 64946208, 65011744, 65077280, 65142816, 65208352, 65273888, 65339424, 65404960, 65470496, 65536032, 65601568, 65667104, 65732640, 65798176, 65863712, 65929248, 65994784, 66060320, 66125856, 66191392, 66256928, 66322464, 66388000, 66453536, 66519072, 66584608, 66650144, 66715680, 66781216, 66846752, 66912288, 66977824, 67043360, 67108896, 67174432, 67239968, 67305504, 67371040, 67436576, 67502112, 67567648, 67633184, 67698720, 67764256, 67829792, 67895328, 67960864, 68026400, 68091936, 68157472, 68223008, 68288544, 68354080, 68419616, 68485152, 68550688, 68616224, 68681760, 68747296, 68812832, 68878368, 68943904, 69009440, 69074976, 69140512, 69206048, 69271584, 69337120, 69402656, 69468192, 69533728, 69599264, 69664800, 69730336, 69795872, 69861408, 69926944, 69992480, 70058016, 70123552, 70189088, 70254624, 70320160, 70385696, 70451232, 70516768, 70582304, 70647840, 70713376, 70778912, 70844448, 70909984, 70975520, 71041056, 71106592, 71172128, 71237664, 71303200, 71368736, 71434272, 71499808, 71565344, 71630880, 71696416, 71761952, 71827488, 71893024, 71958560, 72024096, 72089632, 72155168, 72220704, 72286240, 72351776, 72417312, 72482848, 72548384, 72613920, 72679456, 72744992, 72810528, 72876064, 72941600, 73007136, 73072672, 73138208, 73203744, 73269280, 73334816, 73400352, 73465888, 73531424, 73596960, 73662496, 73728032, 73793568, 73859104, 73924640, 73990176, 74055712, 74121248, 74186784, 74252320, 74317856, 74383392, 74448928, 74514464, 74580000, 74645536, 74711072, 74776608, 74842144, 74907680, 74973216, 75038752, 75104288, 75169824, 75235360, 75300896, 75366432, 75431968, 75497504, 75563040, 75628576, 75694112, 75759648, 75825184, 75890720, 75956256, 76021792, 76087328, 76152864, 76218400, 76283936, 76349472, 76415008, 76480544, 76546080, 76611616, 76677152, 76742688, 76808224, 76873760, 76939296, 77004832, 77070368, 77135904, 77201440, 77266976, 77332512, 77398048, 77463584, 77529120, 77594656, 77660192, 77725728, 77791264, 77856800, 77922336, 77987872, 78053408, 78118944, 78184480, 78250016, 78315552, 78381088, 78446624, 78512160, 78577696, 78643232, 78708768, 78774304, 78839840, 78905376, 78970912, 79036448, 79101984, 79167520, 79233056, 79298592, 79364128, 79429664, 79495200, 79560736, 79626272, 79691808, 79757344, 79822880, 79888416, 79953952, 80019488, 80085024, 80150560, 80216096, 80281632, 80347168, 80412704, 80478240, 80543776, 80609312, 80674848, 80740384, 80805920, 80871456, 80936992, 81002528, 81068064, 81133600, 81199136, 81264672, 81330208, 81395744, 81461280, 81526816, 81592352, 81657888, 81723424, 81788960, 81854496, 81920032, 81985568, 82051104, 82116640, 82182176, 82247712, 82313248, 82378784, 82444320, 82509856, 82575392, 82640928, 82706464, 82772000, 82837536, 82903072, 82968608, 83034144, 83099680, 83165216, 83230752, 83296288, 83361824, 83427360, 83492896, 83558432, 83623968, 83689504, 83755040, 83820576, 83886112, 83951648, 84017184, 84082720, 84148256, 84213792, 84279328, 84344864, 84410400, 84475936, 84541472, 84607008, 84672544, 84738080, 84803616, 84869152, 84934688, 85000224, 85065760, 85131296, 85196832, 85262368, 85327904, 85393440, 85458976, 85524512, 85590048, 85655584, 85721120, 85786656, 85852192, 85917728, 85983264, 86048800, 86114336, 86179872, 86245408, 86310944, 86376480, 86442016, 86507552, 86573088, 86638624, 86704160, 86769696, 86835232, 86900768, 86966304, 87031840, 87097376, 87162912, 87228448, 87293984, 87359520, 87425056, 87490592, 87556128, 87621664, 87687200, 87752736, 87818272, 87883808, 87949344, 88014880, 88080416, 88145952, 88211488, 88277024, 88342560, 88408096, 88473632, 88539168, 88604704, 88670240, 88735776, 88801312, 88866848, 88932384, 88997920, 89063456, 89128992, 89194528, 89260064, 89325600, 89391136, 89456672, 89522208, 89587744, 89653280, 89718816, 89784352, 89849888, 89915424, 89980960, 90046496, 90112032, 90177568, 90243104, 90308640, 90374176, 90439712, 90505248, 90570784, 90636320, 90701856, 90767392, 90832928, 90898464, 90964000, 91029536, 91095072, 91160608, 91226144, 91291680, 91357216, 91422752, 91488288, 91553824, 91619360, 91684896, 91750432, 91815968, 91881504, 91947040, 92012576, 92078112, 92143648, 92209184, 92274720, 92340256, 92405792, 92471328, 92536864, 92602400, 92667936, 92733472, 92799008, 92864544, 92930080, 92995616, 93061152, 93126688, 93192224, 93257760, 93323296, 93388832, 93454368, 93519904, 93585440, 93650976, 93716512, 93782048, 93847584, 93913120, 93978656, 94044192, 94109728, 94175264, 94240800, 94306336, 94371872, 94437408, 94502944, 94568480, 94634016, 94699552, 94765088, 94830624, 94896160, 94961696, 95027232, 95092768, 95158304, 95223840, 95289376, 95354912, 95420448, 95485984, 95551520, 95617056, 95682592, 95748128, 95813664, 95879200, 95944736, 96010272, 96075808, 96141344, 96206880, 96272416, 96337952, 96403488, 96469024, 96534560, 96600096, 96665632, 96731168, 96796704, 96862240, 96927776, 96993312, 97058848, 97124384, 97189920, 97255456, 97320992, 97386528, 97452064, 97517600, 97583136, 97648672, 97714208, 97779744, 97845280, 97910816, 97976352, 98041888, 98107424, 98172960, 98238496, 98304032, 98369568, 98435104, 98500640, 98566176, 98631712, 98697248, 98762784, 98828320, 98893856, 98959392, 99024928, 99090464, 99156000, 99221536, 99287072, 99352608, 99418144, 99483680, 99549216, 99614752, 99680288, 99745824, 99811360, 99876896, 99942432, 100007968, 100073504, 100139040, 100204576, 100270112, 100335648, 100401184, 100466720, 100532256, 100597792, 100663328, 100728864, 100794400, 100859936, 100925472, 100991008, 101056544, 101122080, 101187616, 101253152, 101318688, 101384224, 101449760, 101515296, 101580832, 101646368, 101711904, 101777440, 101842976, 101908512, 101974048, 102039584, 102105120, 102170656, 102236192, 102301728, 102367264, 102432800, 102498336, 102563872, 102629408, 102694944, 102760480, 102826016, 102891552, 102957088, 103022624, 103088160, 103153696, 103219232, 103284768, 103350304, 103415840, 103481376, 103546912, 103612448, 103677984, 103743520, 103809056, 103874592, 103940128, 104005664, 104071200, 104136736, 104202272, 104267808, 104333344, 104398880, 104464416, 104529952, 104595488, 104661024, 104726560, 104792096, 104857632, 104923168, 104988704, 105054240, 105119776, 105185312, 105250848, 105316384, 105381920, 105447456, 105512992, 105578528, 105644064, 105709600, 105775136, 105840672, 105906208, 105971744, 106037280, 106102816, 106168352, 106233888, 106299424, 106364960, 106430496, 106496032, 106561568, 106627104, 106692640, 106758176, 106823712, 106889248, 106954784, 107020320, 107085856, 107151392, 107216928, 107282464, 107348000, 107413536, 107479072, 107544608, 107610144, 107675680, 107741216, 107806752, 107872288, 107937824, 108003360, 108068896, 108134432, 108199968, 108265504, 108331040, 108396576, 108462112, 108527648, 108593184, 108658720, 108724256, 108789792, 108855328, 108920864, 108986400, 109051936, 109117472, 109183008, 109248544, 109314080, 109379616, 109445152, 109510688, 109576224, 109641760, 109707296, 109772832, 109838368, 109903904, 109969440, 110034976, 110100512, 110166048, 110231584, 110297120, 110362656, 110428192, 110493728, 110559264, 110624800, 110690336, 110755872, 110821408, 110886944, 110952480, 111018016, 111083552, 111149088, 111214624, 111280160, 111345696, 111411232, 111476768, 111542304, 111607840, 111673376, 111738912, 111804448, 111869984, 111935520, 112001056, 112066592, 112132128, 112197664, 112263200, 112328736, 112394272, 112459808, 112525344, 112590880, 112656416, 112721952, 112787488, 112853024, 112918560, 112984096, 113049632, 113115168, 113180704, 113246240, 113311776, 113377312, 113442848, 113508384, 113573920, 113639456, 113704992, 113770528, 113836064, 113901600, 113967136, 114032672, 114098208, 114163744, 114229280, 114294816, 114360352, 114425888, 114491424, 114556960, 114622496, 114688032, 114753568, 114819104, 114884640, 114950176, 115015712, 115081248, 115146784, 115212320, 115277856, 115343392, 115408928, 115474464, 115540000, 115605536, 115671072, 115736608, 115802144, 115867680, 115933216, 115998752, 116064288, 116129824, 116195360, 116260896, 116326432, 116391968, 116457504, 116523040, 116588576, 116654112, 116719648, 116785184, 116850720, 116916256, 116981792, 117047328, 117112864, 117178400 thestringcemetery:~$ mount -t ufs /dev/ad1s1e /share2 thestringcemetery:~$ df -h Filesystem Size Used Avail Capacity Mounted on /dev/ad0s1a 97M 75M 14M 84% / /dev/ad0s1f 8.6G 7.3G 586M 93% /usr /dev/ad0s1e 19M 15M 3.2M 82% /var procfs 4.0K 4.0K 0B 100% /proc /dev/ad2s1e 54G 41G 8.9G 82% /share1 /dev/ad1s1e 54G 1.0K 50G 0% /share2 thestringcemetery:~$ cd /share1/thestringcemetery.com/stereo/ thestringcemetery:/share1/thestringcemetery.com/stereo$ ls -l rowr.zip -rw-r--r-- 1 trump wheel 93814457 Jan 18 06:40 rowr.zip thestringcemetery:/share1/thestringcemetery.com/stereo$ thestringcemetery:/share1/thestringcemetery.com/stereo$ cp rowr.zip /share2/ cp: /share2/rowr.zip: No such file or directory thestringcemetery:/share1/thestringcemetery.com/stereo$ cd /share2 thestringcemetery:/share2$ ls -l total 16 -rw-r--r-- 1 root wheel 8192 Feb 18 06:47 rowr.zip thestringcemetery:/share2$ ************************************************************************** I would really appreciate it if someone could shed a little light on my problem... am I doing something wrong? Is there a known bug? Do I have a bad ide channel? Can my machine only handle 2 drives? Inquiring minds want to know! Thanks in advance! David Capurro >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 Feb 19 1: 0: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD20137B419 for ; Tue, 19 Feb 2002 01:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1J901d86401; Tue, 19 Feb 2002 01:00:01 -0800 (PST) (envelope-from gnats) Received: from bf.wakwak.com (bf.wakwak.com [211.132.128.101]) by hub.freebsd.org (Postfix) with ESMTP id 0749537B402 for ; Tue, 19 Feb 2002 00:50:32 -0800 (PST) Received: from chiasmatica.my.domain (sada.as.wakwak.ne.jp [61.115.78.20]) by bf.wakwak.com (8.11.6/8.11.6/2001-11-30) with SMTP id g1J8oPF61070 for ; Tue, 19 Feb 2002 17:50:25 +0900 (JST) (envelope-from sada@FreeBSD.org) Message-Id: <20020219175025.5f4c2801.sada@FreeBSD.org> Date: Tue, 19 Feb 2002 17:50:25 +0900 From: SADA Kenji To: FreeBSD-gnats-submit@FreeBSD.org Subject: kern/35107: Add new usb ethernet adapter: corega FEther USB-TXS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35107 >Category: kern >Synopsis: Add new usb ethernet adapter: corega FEther USB-TXS >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: Tue Feb 19 01:00:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: SADA Kenji >Release: FreeBSD 4.5-RELEASE, 5.0-CURRENT i386 >Organization: private >Environment: FreeBSD dexter.my.domain 4.5-RELEASE FreeBSD 4.5-RELEASE #4: Tue Feb 12 00:19:56 JST 2002 sada@dexter.my.domain:/usr/src/sys/compile/dexter i386 FreeBSD fornix.my.domain 5.0-CURRENT FreeBSD 5.0-CURRENT #3: Tue Feb 19 16:57:23 JST 2002 sada@fornix.my.domain:/usr/src/sys/i386/compile/fornix i386 >Description: Enable to work corega's usb ethernet adaptor FEther USB-TXS (pegasus II). This was verified on 4.5-R and 5.0-C. >How-To-Repeat: >Fix: Index: if_aue.c =================================================================== RCS file: /freebsd/ncvs/src/sys/dev/usb/if_aue.c,v retrieving revision 1.45 diff -B -b -u -w -r1.45 if_aue.c --- if_aue.c 3 Jan 2002 18:56:35 -0000 1.45 +++ if_aue.c 19 Feb 2002 08:09:28 -0000 @@ -119,6 +119,7 @@ { USB_VENDOR_LINKSYS, USB_PRODUCT_LINKSYS_USB10TA, LSYS }, { USB_VENDOR_LINKSYS, USB_PRODUCT_LINKSYS_USB10TX2, LSYS }, { USB_VENDOR_COREGA, USB_PRODUCT_COREGA_FETHER_USB_TX, 0 }, + { USB_VENDOR_COREGA, USB_PRODUCT_COREGA_FETHER_USB_TXS, PII }, { USB_VENDOR_KINGSTON, USB_PRODUCT_KINGSTON_KNU101TX, 0 }, { USB_VENDOR_ABOCOM, USB_PRODUCT_DLINK_DSB650TX_PNA, 0 }, { USB_VENDOR_IODATA, USB_PRODUCT_IODATA_USBETTX, 0 }, Index: usbdevs =================================================================== RCS file: /freebsd/ncvs/src/sys/dev/usb/usbdevs,v retrieving revision 1.78 diff -B -b -u -w -r1.78 usbdevs --- usbdevs 14 Feb 2002 02:51:12 -0000 1.78 +++ usbdevs 19 Feb 2002 08:09:56 -0000 @@ -489,6 +489,7 @@ /* Corega products */ product COREGA ETHER_USB_T 0x0001 Ether USB-T product COREGA FETHER_USB_TX 0x0004 FEther USB-TX +product COREGA FETHER_USB_TXS 0x000d FEther USB-TXS /* Creative products */ product CREATIVE NOMAD_II 0x1002 Nomad II MP3 player >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 Feb 19 1:12:16 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 13DB337B400; Tue, 19 Feb 2002 01:12:13 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1J9BoD91957; Tue, 19 Feb 2002 01:11:50 -0800 (PST) (envelope-from murray) Date: Tue, 19 Feb 2002 01:11:50 -0800 (PST) From: Message-Id: <200202190911.g1J9BoD91957@freefall.freebsd.org> To: archie@whistle.com, murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: bin/18817: possible file descriptor leak in dhclient(8) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: possible file descriptor leak in dhclient(8) State-Changed-From-To: open->analyzed State-Changed-By: murray State-Changed-When: Tue Feb 19 01:11:19 PST 2002 State-Changed-Why: I believe this bug still exists in our existing dhclient(8), but it has been fixed in ISC DHCP 3.X. I will be importing 3.0.1rc6 to -CURRENT shortly. Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Tue Feb 19 01:11:19 PST 2002 Responsible-Changed-Why: I will import DHCP 3.0.1rc6 shortly, which will fix this bug. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=18817 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 1:22:14 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D812237B404; Tue, 19 Feb 2002 01:22:12 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1J9LXe93424; Tue, 19 Feb 2002 01:21:33 -0800 (PST) (envelope-from murray) Date: Tue, 19 Feb 2002 01:21:33 -0800 (PST) From: Message-Id: <200202190921.g1J9LXe93424@freefall.freebsd.org> To: murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: kern/25038: dhcp client could not set hostname on boot Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: dhcp client could not set hostname on boot Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: murray Responsible-Changed-When: Tue Feb 19 01:21:21 PST 2002 Responsible-Changed-Why: I'll look at this one. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=25038 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 2:50:17 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E04E137B400 for ; Tue, 19 Feb 2002 02:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1JAo1Q19075; Tue, 19 Feb 2002 02:50:01 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Feb 2002 02:50:01 -0800 (PST) Message-Id: <200202191050.g1JAo1Q19075@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Ryan Johnson" Subject: Re: kern/35061: After printing to HP Deskjet 656c USB printer, computer hangs Reply-To: "Ryan Johnson" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/35061; it has been noted by GNATS. From: "Ryan Johnson" To: joe@tao.org.uk Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/35061: After printing to HP Deskjet 656c USB printer, computer hangs Date: Tue, 19 Feb 2002 04:43:34 -0600 >From: Josef Karthauser >To: Ryan Johnson >Subject: Re: kern/35061: After printing to HP Deskjet 656c USB printer, >computer hangs >Date: Tue, 19 Feb 2002 01:42:26 +0000 > >On Mon, Feb 18, 2002 at 05:18:33PM -0600, Ryan Johnson wrote: > > > > >Are you using the patch set that I announced on -stable a few days ago? > > > > > >Also, it's important to know which usb controller device you're using. > > >A copy of your dmesg should provide that information (uhci or ohci). > > > > > >Thanks, > > >Joe > > ><< attach3 >> > > > > I don't have access to the computer at the moment (home internet >connection > > may be down) but the usb controller is uhci. If you need the dmesg I >will > > post it when I get home. I cvsupped the day after your usb changes went > > into -stable (feb. 16th), so I do have the most current usb changes. The > > printer worked fine using the feb. 3rd -current snapshot, but it >wouldn't > > even attempt to print in -stable until your recent usb changes were >merged. > >Can you try the patch that I sent to the -stable mailing list please? >That brings all the differences from -current into -stable and so >should behave the same way as your -current snapshot did. > >Joe I just applied the patch, now the kernel panics shortly after the printer starts. Here is the backtrace: Fatal trap 12: page fault while in kernel mode fault virtual address = 0x8 fault code = supervisor read, page not present instruction pointer = 0x8:0xc023bfe3 stack pointer = 0x10:0xc7861d3c frame pointer = 0x10:0xc7861d48 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 202 (cat) interrupt mask = bio trap number = 12 panic: page fault syncing disks... 24 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 giving up on 1 buffers Uptime: 1m6s dumping to dev #ad/0x20021, offset 294912 dump ata2: resetting devices .. done 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 --- #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:485 485 if (dumping++) { (kgdb) bt #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:485 #1 0xc015b0d7 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:314 #2 0xc015b4fc in poweroff_wait (junk=0xc02f3cec, howto=-1070647281) at /usr/src/sys/kern/kern_shutdown.c:593 #3 0xc02a57ca in trap_fatal (frame=0xc7861cfc, eva=8) at /usr/src/sys/i386/i386/trap.c:966 #4 0xc02a549d in trap_pfault (frame=0xc7861cfc, usermode=0, eva=8) at /usr/src/sys/i386/i386/trap.c:859 #5 0xc02a505b in trap (frame={tf_fs = 16, tf_es = 16, tf_ds = 16, tf_edi = -1063038976, tf_esi = -1063018720, tf_ebp = -947511992, tf_isp = -947512024, tf_ebx = 0, tf_edx = -1063035764, tf_ecx = -1062558080, tf_eax = -1063038976, tf_trapno = 12, tf_err = 0, tf_eip = -1071398941, tf_cs = 8, tf_eflags = 66051, tf_esp = -1062052288, tf_ss = -1063038976}) at /usr/src/sys/i386/i386/trap.c:458 #6 0xc023bfe3 in uhci_remove_bulk (sc=0xc0a35000, sqh=0xc0a39f20) at /usr/src/sys/dev/usb/uhci.c:358 #7 0xc023d6ad in uhci_device_bulk_done (xfer=0xc0aaa700) at /usr/src/sys/dev/usb/uhci.c:2614 #8 0xc023f7be in usb_transfer_complete (xfer=0xc0aaa700) at /usr/src/sys/dev/usb/usbdi.c:813 #9 0xc023cb41 in uhci_abort_xfer_end (v=0xc0aaa700) at /usr/src/sys/dev/usb/uhci.c:1868 #10 0xc023cb24 in uhci_abort_xfer (xfer=0xc0aaa700, status=USBD_CANCELLED) at /usr/src/sys/dev/usb/uhci.c:1853 #11 0xc023ca99 in uhci_device_bulk_abort (xfer=0xc0aaa700) at /usr/src/sys/dev/usb/uhci.c:1817 #12 0xc023f709 in usbd_ar_pipe (pipe=0xc0aaa680) at /usr/src/sys/dev/usb/usbdi.c:759 #13 0xc023f439 in usbd_abort_pipe (pipe=0xc0aaa680) at /usr/src/sys/dev/usb/usbdi.c:553 #14 0xc0246a44 in ulptclose (dev=0xc0a34080, flag=2, mode=8192, p=0xc6ad3380) at /usr/src/sys/dev/usb/ulpt.c:627 #15 0xc0193d74 in spec_close (ap=0xc7861e4c) at /usr/src/sys/miscfs/specfs/spec_vnops.c:591 #16 0xc022acb6 in ufsspec_close (ap=0xc7861e4c) at /usr/src/sys/ufs/ufs/ufs_vnops.c:1900 #17 0xc022b27d in ufs_vnoperatespec (ap=0xc7861e4c) at /usr/src/sys/ufs/ufs/ufs_vnops.c:2440 #18 0xc018f6d0 in vn_close (vp=0xc777f140, flags=2, cred=0xc0bb6e00, p=0xc6ad3380) at vnode_if.h:218 #19 0xc0190003 in vn_closefile (fp=0xc0b57400, p=0xc6ad3380) at /usr/src/sys/kern/vfs_vnops.c:693 #20 0xc0150f7b in fdrop (fp=0xc0b57400, p=0xc6ad3380) at /usr/src/sys/sys/file.h:217 #21 0xc0150ec3 in closef (fp=0xc0b57400, p=0xc6ad3380) at /usr/src/sys/kern/kern_descrip.c:1218 #22 0xc0150425 in close (p=0xc6ad3380, uap=0xc7861f80) at /usr/src/sys/kern/kern_descrip.c:579 #23 0xc02a5a79 in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = -1077937072, tf_esi = 0, tf_ebp = -1077937264, tf_isp = -947511340, tf_ebx = 134575128, tf_edx = 1, tf_ecx = 10, tf_eax = 6, tf_trapno = 12, tf_err = 2, tf_eip = 134559388, tf_cs = 31, tf_eflags = 643, tf_esp = -1077937292, tf_ss = 47}) at /usr/src/sys/i386/i386/trap.c:1167 #24 0xc0299885 in Xint0x80_syscall () #25 0x804befb in ?? () #26 0x804831f in ?? () #27 0x8048135 in ?? () If you need any more information let me know. Ryan _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 2:50:29 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E92E37B404 for ; Tue, 19 Feb 2002 02:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1JAo2o19085; Tue, 19 Feb 2002 02:50:02 -0800 (PST) (envelope-from gnats) Received: from mailgate.rz.uni-karlsruhe.de (mailgate.rz.uni-karlsruhe.de [129.13.64.97]) by hub.freebsd.org (Postfix) with ESMTP id B896C37B404 for ; Tue, 19 Feb 2002 02:46:15 -0800 (PST) Received: from nce2.hadiko.de (hadince2.hadiko.uni-karlsruhe.de [172.20.32.2]) by mailgate.rz.uni-karlsruhe.de with esmtp (Exim 3.33 #1) id 16d7mo-0006RH-00; Tue, 19 Feb 2002 11:46:14 +0100 Received: from i609a.hadiko.de (hadii609a.hadiko.uni-karlsruhe.de [172.20.49.159]) by nce2.hadiko.de (8.11.3/8.11.3) with ESMTP id g1JAkDx29324 for ; Tue, 19 Feb 2002 11:46:13 +0100 (MET) Received: (from p@localhost) by i609a.hadiko.de (8.11.6/8.11.4) id g1JAk9R05228; Tue, 19 Feb 2002 11:46:10 +0100 (CET) (envelope-from p) Message-Id: <200202191046.g1JAk9R05228@i609a.hadiko.de> Date: Tue, 19 Feb 2002 11:46:10 +0100 (CET) From: Philipp Mergenthaler Reply-To: Philipp Mergenthaler To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/35109: [PATCH] games/morse: add ability to decode morse code Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35109 >Category: bin >Synopsis: [PATCH] games/morse: add ability to decode morse code >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: Tue Feb 19 02:50:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Philipp Mergenthaler >Release: FreeBSD 5.0-CURRENT i386 >Organization: University of Karlsruhe >Environment: System: FreeBSD i609a.hadiko.de 5.0-CURRENT FreeBSD 5.0-CURRENT #474: Mon Feb 18 21:56:26 CET 2002 p@i609a.hadiko.de:/usr/src/sys/i386/compile/I609 i386 >Description: The first patch adds the option "-D" to morse(6) to decode morse code (consisting of dots and dashes) that is given as command line arguments or on the standard input. This is inspired by and partially taken from NetBSD's morse(6). It's somewhat enhanced though - you can give several letters per command line argument and it deals correctly with long lines when reading from standard input. The second patch adds codes for three characters: underline, apostrophe and с (n with tilde). >How-To-Repeat: >Fix: Index: morse.6 =================================================================== RCS file: /ncvs/src/games/morse/morse.6,v retrieving revision 1.10 diff -u -r1.10 morse.6 --- morse.6 7 Aug 2001 15:48:28 -0000 1.10 +++ morse.6 19 Feb 2002 04:14:32 -0000 @@ -74,13 +74,18 @@ .Fl p , but use the RTS line of .Ar device -(which must by a tty device) +(which must be a tty device) in order to emit the morse code. .It Fl e echo each character before it is sent, used together with either .Fl p or .Fl d . +.It Fl D +Decode morse output consisting of dots and dashes (as generated by using +the +.Fl s +option). .El .Pp The Index: morse.c =================================================================== RCS file: /ncvs/src/games/morse/morse.c,v retrieving revision 1.14 diff -u -r1.14 morse.c --- morse.c 26 Jun 2001 01:43:52 -0000 1.14 +++ morse.c 19 Feb 2002 09:50:38 -0000 @@ -198,15 +198,17 @@ {'\0', ""} }; -void show(const char *), play(const char *), morse(char); +void show(const char *), play(const char *), morse(char), + decode (char *), fdecode(FILE *); void ttyout(const char *); void sighandler(int); -#define GETOPTOPTS "d:ef:sw:" +#define GETOPTOPTS "d:ef:sw:D" #define USAGE \ -"usage: morse [-s] [-e] [-d device] [-w speed] [-f frequency] [string ...]\n" +"usage: morse [-s] [-e] [-D] [-d device] [-w speed] [-f frequency] [string ...]\n" +#define WHITESPACE " \t\n" -static int pflag, sflag, eflag; +static int pflag, sflag, eflag, dflag; static int wpm = 20; /* words per minute */ #define FREQUENCY 600 static int freq = FREQUENCY; @@ -223,10 +225,10 @@ #ifdef SPEAKER tone_t sound; #undef GETOPTOPTS -#define GETOPTOPTS "d:ef:psw:" +#define GETOPTOPTS "d:ef:psw:D" #undef USAGE #define USAGE \ -"usage: morse [-s] [-p] [-e] [-d device] [-w speed] [-f frequency] [string ...]\n" +"usage: morse [-s] [-p] [-e] [-D] [-d device] [-w speed] [-f frequency] [string ...]\n" #endif static const struct morsetab *hightab; @@ -242,6 +244,9 @@ case 'd': device = optarg; break; + case 'D': + dflag = 1; + break; case 'e': eflag = 1; setvbuf(stdout, 0, _IONBF, 0); @@ -328,22 +333,42 @@ hightab = iso8859tab; } - if (*argv) { - do { - for (p = *argv; *p; ++p) { + if (dflag) { + if (*argv) { + do { + p=strtok(*argv, " \t"); + if (p == NULL) + decode(*argv); + else { + while (p) { + decode(p); + p=strtok(NULL, " \t"); + } + } + } while (*++argv); + putchar('\n'); + } else + fdecode(stdin); + + + } else { + if (*argv) { + do { + for (p = *argv; *p; ++p) { + if (eflag) + putchar(*p); + morse(*p); + } if (eflag) - putchar(*p); - morse(*p); + putchar(' '); + morse(' '); + } while (*++argv); + } else { + while ((ch = getchar()) != EOF) { + if (eflag) + putchar(ch); + morse(ch); } - if (eflag) - putchar(' '); - morse(' '); - } while (*++argv); - } else { - while ((ch = getchar()) != EOF) { - if (eflag) - putchar(ch); - morse(ch); } } if (device) @@ -490,4 +515,69 @@ signal(signo, SIG_DFL); (void)kill(getpid(), signo); +} + +void +fdecode(FILE *stream) +{ + char *n, *p, *s; + char buf[BUFSIZ]; + + s=buf; + while (fgets(s, BUFSIZ - (s - buf), stdin)) { + p=buf; + + while (*p && isblank(*p)) + p++; + while (*p && isspace(*p)) { + p++; + putchar (' '); + } + while (*p) { + n=strpbrk(p, WHITESPACE); + if (n == NULL) { + /* The token was interrupted at the end + * of the buffer. Shift it to the begin + * of the buffer. + */ + for (s=buf; *p; *s++ = *p++) + ; + } else { + *n='\0'; + n++; + decode(p); + p=n; + } + } + } + putchar('\n'); +} + +void +decode(char *p) +{ + char c; + const struct morsetab *m; + + c = ' '; + for (m = mtab; + m != NULL && m->inchar != '\0'; + m++) { + if (strcmp(m->morse, p) == 0) { + c = m->inchar; + break; + } + } + + if (c == ' ') + for (m = hightab; + m != NULL && m->inchar != '\0'; + m++) { + if (strcmp(m->morse, p) == 0) { + c = m->inchar; + break; + } + } + + putchar(c); } --- morse.c Tue Feb 19 11:19:09 2002 +++ morse.c.new Tue Feb 19 11:21:42 2002 @@ -130,6 +130,8 @@ {')', "-.--.-"}, {'$', "...-..-"}, {'+', ".-.-."}, /* AR */ + {'_', "..--.-"}, + {'\'', ".---."}, /* prosigns without already assigned values */ @@ -151,6 +153,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 Tue Feb 19 6: 0:21 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C1B137B41A for ; Tue, 19 Feb 2002 06:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1JE05Z83099; Tue, 19 Feb 2002 06:00:05 -0800 (PST) (envelope-from gnats) Received: from pump3.york.ac.uk (pump3.york.ac.uk [144.32.128.131]) by hub.freebsd.org (Postfix) with ESMTP id D9CAF37B402 for ; Tue, 19 Feb 2002 05:52:16 -0800 (PST) Received: from avcpc2.york.ac.uk (avcpc2.york.ac.uk [144.32.116.84]) by pump3.york.ac.uk (8.10.2/8.10.2) with ESMTP id g1JDpuN07284 for ; Tue, 19 Feb 2002 13:52:11 GMT Received: (from gavin@localhost) by avcpc2.york.ac.uk (8.11.6/8.11.6) id g1JDpxJ00735; Tue, 19 Feb 2002 13:51:59 GMT (envelope-from gavin) Message-Id: <200202191351.g1JDpxJ00735@avcpc2.york.ac.uk> Date: Tue, 19 Feb 2002 13:51:59 GMT From: Gavin Atkinson Reply-To: Gavin Atkinson To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: i386/35114: Spelling mistakes in comments in i386/identcpu.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35114 >Category: i386 >Synopsis: Spelling mistakes in comments in i386/identcpu.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 Feb 19 06:00:05 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gavin Atkinson >Release: FreeBSD 4.5-RELEASE i386 >Organization: none >Environment: System: FreeBSD epsilon.ury.york.ac.uk 4.5-RELEASE FreeBSD 4.5-RELEASE #3: Wed Feb 13 10:15:50 GMT 2002 root@epsilon.ury.york.ac.uk:/usr/obj/usr/src/sys/EPSILON i386 >Description: Two spelling mistakes exist in comments in src/i386/i386/identcpu.c >How-To-Repeat: n/a >Fix: Patch is against -CURRENT source. --- /5.0/usr/src/sys/i386/i386/identcpu.c Tue Feb 12 21:06:43 2002 +++ identcpu.c Tue Feb 19 10:05:50 2002 @@ -592,7 +592,7 @@ "\033SSE2" /* Streaming SIMD Extensions #2 */ "\034SS" /* Self snoop */ "\035HTT" /* Hyperthreading (see EBX bit 16-23) */ - "\036TM" /* Thermal Monintor clock slowdown */ + "\036TM" /* Thermal Monitor clock slowdown */ "\037IA64" /* CPU can execute IA64 instructions */ "\040" ); @@ -735,7 +735,7 @@ setidt(6, bluetrap6, SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL)); /* - * Certain BIOS disables cpuid instructnion of Cyrix 6x86MX CPU. + * Certain BIOS disables cpuid instruction of Cyrix 6x86MX CPU. * In this case, rdmsr generates general protection fault, and * exception will be trapped by bluetrap13(). */ >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 Feb 19 6: 0:30 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5ED9937B405 for ; Tue, 19 Feb 2002 06:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1JE05j83090; Tue, 19 Feb 2002 06:00:05 -0800 (PST) (envelope-from gnats) Received: from pump3.york.ac.uk (pump3.york.ac.uk [144.32.128.131]) by hub.freebsd.org (Postfix) with ESMTP id B559337B402 for ; Tue, 19 Feb 2002 05:52:11 -0800 (PST) Received: from avcpc2.york.ac.uk (avcpc2.york.ac.uk [144.32.116.84]) by pump3.york.ac.uk (8.10.2/8.10.2) with ESMTP id g1JDpaN07061 for ; Tue, 19 Feb 2002 13:52:06 GMT Received: (from gavin@localhost) by avcpc2.york.ac.uk (8.11.6/8.11.6) id g1JDpcj00684; Tue, 19 Feb 2002 13:51:38 GMT (envelope-from gavin) Message-Id: <200202191351.g1JDpcj00684@avcpc2.york.ac.uk> Date: Tue, 19 Feb 2002 13:51:38 GMT From: Gavin Atkinson Reply-To: Gavin Atkinson To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/35113: grdc enhancement: countdown timer mode Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35113 >Category: bin >Synopsis: grdc enhancement: countdown timer mode >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: Tue Feb 19 06:00:05 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gavin Atkinson >Release: FreeBSD 4.5-RELEASE i386 >Organization: none >Environment: System: FreeBSD epsilon.ury.york.ac.uk 4.5-RELEASE FreeBSD 4.5-RELEASE #3: Wed Feb 13 10:15:50 GMT 2002 root@epsilon.ury.york.ac.uk:/usr/obj/usr/src/sys/EPSILON i386 >Description: grdc lacks a countdown timer. This patch adds it. >How-To-Repeat: n/a >Fix: patch is against -CURRENT source. --- /5.0/usr/src/games/grdc/grdc.c Tue Sep 25 14:45:46 2001 +++ grdc.c Tue Feb 19 09:21:04 2002 @@ -1,10 +1,13 @@ /* * Grand digital clock for curses compatible terminals * Usage: grdc [-s] [n] -- run for n seconds (default infinity) + * grdc -t n -- countdown n seconds * Flags: -s: scroll + * -t: timer mode * * modified 10-18-89 for curses (jrl) * 10-18-89 added signal handling + * 02-18-02 added countdown timer mode * * $FreeBSD: src/games/grdc/grdc.c,v 1.9 2001/09/25 13:45:46 ru Exp $ */ @@ -25,6 +28,7 @@ /* it won't be */ time_t now; /* yeah! */ +time_t end; /* for timer mode */ struct tm *tm; short disp[11] = { @@ -58,15 +62,18 @@ int i, j, s, k; int n; int ch; -int scrol; +int scrol = 0; +int timer = 0; +int hour, minute, second; - scrol = 0; - - while ((ch = getopt(argc, argv, "s")) != -1) + while ((ch = getopt(argc, argv, "st")) != -1) switch (ch) { case 's': scrol = 1; break; + case 't': + timer = 1; + break; case '?': default: usage(); @@ -75,7 +82,7 @@ argc -= optind; argv += optind; - if (argc > 1) { + if ((argc > 1) || (argc == 0 && timer)) { usage(); /* NOTREACHED */ } @@ -85,6 +92,9 @@ else n = 0; + if (timer && n == 0) + return(0); + initscr(); signal(SIGINT,sighndl); @@ -127,16 +137,30 @@ attrset(COLOR_PAIR(2)); } + time(&end); + end += n; do { mask = 0; time(&now); - tm = localtime(&now); - set(tm->tm_sec%10, 0); - set(tm->tm_sec/10, 4); - set(tm->tm_min%10, 10); - set(tm->tm_min/10, 14); - set(tm->tm_hour%10, 20); - set(tm->tm_hour/10, 24); + if (!timer) { + tm = localtime(&now); + hour = tm->tm_hour; + minute = tm->tm_min; + second = tm->tm_sec; + } else { + n = end - now; + if (n <= 0) + break; + hour = (n/3600)%100; + minute = (n/60)%60; + second = n%60; + } + set(second%10, 0); + set(second/10, 4); + set(minute%10, 10); + set(minute/10, 14); + set(hour%10, 20); + set(hour/10, 24); set(10, 7); set(10, 17); for(k=0; k<6; k++) { @@ -229,6 +253,6 @@ usage(void) { - (void)fprintf(stderr, "usage: grdc [-s] [n]\n"); + (void)fprintf(stderr, "usage: grdc [-s] [n]\n grdc -t n\n"); exit(1); } --- /5.0/usr/src/games/grdc/grdc.6 Tue Sep 25 14:45:46 2001 +++ grdc.6 Tue Feb 19 09:27:42 2002 @@ -1,5 +1,5 @@ .\" $FreeBSD: src/games/grdc/grdc.6,v 1.3 2001/09/25 13:45:46 ru Exp $ -.Dd September 25, 2001 +.Dd February 18, 2002 .Dt GRDC 6 .Sh NAME .Nm grdc @@ -8,6 +8,9 @@ .Nm .Op Fl s .Op Ar n +.Nm +.Fl t +.Ar n .Sh DESCRIPTION .Nm runs a digital clock made of reverse-video blanks on a curses @@ -17,13 +20,27 @@ it stops after .Ar n seconds (default never). +The clock can act as a countdown timer with the +.Fl t +flag, +.Ar n +specifies the number of seconds to time for. The optional .Fl s flag makes digits scroll as they change. In this curses mode implementation, the scrolling option has trouble keeping up. +.Sh NOTES +In countdown timer mode, the specifying of +.Fl n +> 360000 seconds (100 hours) will lead to the counter displaying +incorrect remaining time, however it will time correctly, and +display correctly when the remaining time becomes less than +100 hours. .Sh AUTHORS .An -nosplit .An Amos Shapir , modified for curses by .An John Lupien . +Countdown timer mode by +.An Gavin Atkinson . >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 Feb 19 7:20:23 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3919137B417 for ; Tue, 19 Feb 2002 07:20:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1JFK5E17147; Tue, 19 Feb 2002 07:20:05 -0800 (PST) (envelope-from gnats) Received: from nixpbe.pdb.sbs.de (nixpbe.pdb.sbs.de [192.109.2.33]) by hub.freebsd.org (Postfix) with ESMTP id 6069037B400 for ; Tue, 19 Feb 2002 07:15:57 -0800 (PST) Received: from trulli.pdb.fsc.net (ThisAddressDoesNotExist [172.25.96.20] (may be forged)) by nixpbe.pdb.sbs.de (8.11.2/8.11.2) with ESMTP id g1JFFtZ23471 for ; Tue, 19 Feb 2002 16:15:55 +0100 Received: from deejai2.mch.fsc.net (deejai2.mch.fsc.net [172.25.124.236]) by trulli.pdb.fsc.net (8.9.3/8.9.3) with ESMTP id QAA23188 for ; Tue, 19 Feb 2002 16:15:55 +0100 Received: (from martin@localhost) by deejai2.mch.fsc.net (8.11.6/8.11.6) id g1JFFs359751; Tue, 19 Feb 2002 16:15:54 +0100 (CET) (envelope-from martin) Message-Id: <200202191515.g1JFFs359751@deejai2.mch.fsc.net> Date: Tue, 19 Feb 2002 16:15:54 +0100 (CET) From: Reply-To: To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: misc/35116: keyinfo reports root's keyinfo Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35116 >Category: misc >Synopsis: keyinfo reports root's keyinfo >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 Feb 19 07:20:04 PST 2002 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD deejai2.mch.fsc.net 4.5-STABLE FreeBSD 4.5-STABLE #6: Thu Jan 31 21:40:04 CET 2002 martin@deejai2.mch.fsc.net:/usr/src/sys/compile/DEEJAI4B i386 >Description: Logged in in an xterm, when I invoke keyinfo, I get "96 de98629". However, when logging in on the console (or when doing "su -c 'keyinfo martin'"), I get "93 de98558". As it turns out, the former is root's keyinfo, not martin's. IMO keyinfo should detect my user id. Yes, I have read in skey.access(5) that ..."an invocation of login(1) in a pseudo-tty (e.g. from within xterm(1) or screen(1)"... can cause problems, but the keyinfo page says nothing about that. It is however not a security risk to see other people's keyinfo (you could simply try to enter "root" at the logion prompt and you would see the same info). >How-To-Repeat: Hmmm. Dunno if it's sufficient to do (at the console) a keyinit for a user and for root, and then try keyinfo in an xterm? >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 Feb 19 7:50:34 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D08FC37B41C for ; Tue, 19 Feb 2002 07:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1JFo1k21817; Tue, 19 Feb 2002 07:50:01 -0800 (PST) (envelope-from gnats) Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id 2509E37B400 for ; Tue, 19 Feb 2002 07:47:39 -0800 (PST) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.11.6/8.11.4) id g1JFlcm41029; Tue, 19 Feb 2002 16:47:38 +0100 (CET) (envelope-from stijn) Message-Id: <200202191547.g1JFlcm41029@pcwin002.win.tue.nl> Date: Tue, 19 Feb 2002 16:47:38 +0100 (CET) From: stijn@win.tue.nl Reply-To: stijn@win.tue.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/35119: make(1) variable modifier bug (:L, :U etc) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35119 >Category: bin >Synopsis: make(1) variable modifier bug (:L, :U etc) >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 Feb 19 07:50:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Stijn Hoop >Release: FreeBSD 4.5-RC >Organization: >Environment: System: FreeBSD 4.5-RC #0: Wed Jan 16 04:30:08 CET 2002 >Description: make(1) has a buglet wrt expanding variables with modifiers. If an expansion of an undefined variable, with a modifier, is used in an .if statement like so: .if defined(FOO) && ${FOO:L} == "bar" make bombs out with a 'Malformed conditional', even if FOO is not defined. An expansion like this works correctly in the non-modified case: .if defined(FOO) && ${FOO} == "bar" performs as expected. >How-To-Repeat: Extract the following Makefile to an empty directory and type 'make'. Witness make bombing out. --- /dev/null Tue Feb 19 16:40:07 2002 +++ Makefile Tue Feb 19 16:44:15 2002 @@ -0,0 +1,23 @@ +all: + ${MAKE} -DTEST_1 result + ${MAKE} -DTEST_2 result + +.if defined(TEST_1) +.if defined(FOO) && ${FOO} != "bar" +result: + @echo "FOO != bar" +.else +result: + @echo "FOO undefined or == bar" +.endif +.endif + +.if defined(TEST_2) +.if defined(FOO) && ${FOO:L} != "bar" +result: + @echo "FOO != bar (with case permutation)" +.else +result: + @echo "FOO undefined or == bar (with case permutation)" +.endif +.endif >Fix: Unfortunately not available; hacking make is beyond me... >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 Feb 19 8:30: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E272337B402 for ; Tue, 19 Feb 2002 08:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1JGU1Q33003; Tue, 19 Feb 2002 08:30:01 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Feb 2002 08:30:01 -0800 (PST) Message-Id: <200202191630.g1JGU1Q33003@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ahmon Dancy Subject: Re: bin/16393: /bin/sh doesn't strip comments on shebang line Reply-To: Ahmon Dancy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/16393; it has been noted by GNATS. From: Ahmon Dancy To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: bin/16393: /bin/sh doesn't strip comments on shebang line Date: Tue, 19 Feb 2002 08:26:26 -0800 We ran into a problem today related to this issue (we used the # character as switch to our program). I did some studies on various other operating systems and FreeBSD hosts that have the modifications suggested by bin/16393 fall short. Here are the results of my study: Given a file called '/tmp/x2' with shebang line: #!/tmp/interp -a -b -c #dee eee If /tmp/x2 is exec'd, the operating system runs /tmp/interp w/ the following arguments: Solaris 8: args: "/tmp/interp" "-a" "/tmp/x2" Tru64 4.0: args: "interp" "-a -b -c #dee eee" "/tmp/x2" FreeBSD 2.2.7: args: "/tmp/interp" "-a" "-b" "-c" "#dee" "eee" "/tmp/x2" FreeBSD 4.0: args: "/tmp/interp" "-a" "-b" "-c" "/tmp/x2" Linux 2.4.12: args: "/tmp/interp" "-a -b -c #dee eee" "/tmp/x2" Linux 2.2.19: args: "interp" "-a -b -c #dee eee" "/tmp/x2" Irix 6.5: args: "/tmp/interp" "-a -b -c #dee eee" "/tmp/x2" HPUX 11.00: args: "/tmp/x2" "-a -b -c #dee eee" "/tmp/x2" AIX 4.3: args: "interp" "-a -b -c #dee eee" "/tmp/x2" Mac OX X: args: "interp" "-a -b -c #dee eee" "/tmp/x2" The most common behavior is: argv[0]: full path of interpreter argv[1]: all remaining args, coalesced into one string argv[2]: The file file exec'd. FreeBSD's behavior is way out there. No other system treats "#" in any special way. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 9:13:15 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from AccurateLabs.com (kkpsi.org [205.162.236.162]) by hub.freebsd.org (Postfix) with ESMTP id 3144A37B405 for ; Tue, 19 Feb 2002 09:13:09 -0800 (PST) Received: from joe [65.68.120.81] by AccurateLabs.com with ESMTP (SMTPD32-7.05) id A7A611F7015E; Tue, 19 Feb 2002 11:13:10 -0600 Message-Id: <4.2.0.58.20020219111253.011ce7b0@mail.accuratelabs.com> X-Sender: jga@mail.accuratelabs.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Tue, 19 Feb 2002 11:13:46 -0600 To: freebsd-bugs@freebsd.org From: Joseph Anthony Subject: Sorry Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org My problem was that I didn't install the cable correctly when I moved to the other box on the scsi array.. the end wasn't on the terminated drive. Sorry again. - Joseph Anthony Systems Admin Accurate Labs, Stillwater Oklahoma jga@accuratelabs.com http://www.accuratelabs.com 405-372-5300 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 9:43: 0 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from goliath.siemens.de (goliath.siemens.de [192.35.17.28]) by hub.freebsd.org (Postfix) with ESMTP id 6D1C537B416; Tue, 19 Feb 2002 09:42:55 -0800 (PST) Received: from mail3.siemens.de (mail3.siemens.de [139.25.208.14]) by goliath.siemens.de (8.11.6/8.11.6) with ESMTP id g1JHgrp05708; Tue, 19 Feb 2002 18:42:53 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail3.siemens.de (8.11.6/8.11.6) with ESMTP id g1JHgqk29362; Tue, 19 Feb 2002 18:42:52 +0100 (MET) Received: (from localhost) by curry.mchp.siemens.de (8.11.6/8.11.6) id g1JHgqE08145; Date: Tue, 19 Feb 2002 18:42:51 +0100 From: Andre Albsmeier To: obrien@FreeBSD.ORG Cc: mwm@mired.org, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/30908: [PATCH] Tweak ldd to provide more information if requested Message-ID: <20020219184251.A16331@curry.mchp.siemens.de> References: <200202170706.g1H76cd48244@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200202170706.g1H76cd48244@freefall.freebsd.org>; from obrien@FreeBSD.ORG on Sat, Feb 16, 2002 at 11:06:38PM -0800 X-Echelon: BND CIA NSA Mossad KGB MI6 IRA detonator nuclear assault strike X-RAVMilter-Version: 8.3.1(snapshot 20020109) (curry.mchp.siemens.de) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, 16-Feb-2002 at 23:06:38 -0800, obrien@FreeBSD.ORG wrote: > Synopsis: [PATCH] Tweak ldd to provide more information if requested > > State-Changed-From-To: open->closed > State-Changed-By: obrien > State-Changed-When: Sat Feb 16 22:53:15 PST 2002 > State-Changed-Why: > Committed > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=30908 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message Is there a chance for a MFC? Thanks, -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 11: 0: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5856D37B400 for ; Tue, 19 Feb 2002 11:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1JJ03367659; Tue, 19 Feb 2002 11:00:03 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Feb 2002 11:00:03 -0800 (PST) Message-Id: <200202191900.g1JJ03367659@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Arjan Knepper Subject: Re: i386/30965: Cyclades Cyclom-Yep causes FreeBSD to hang during Reply-To: Arjan Knepper Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/30965; it has been noted by GNATS. From: Arjan Knepper To: Bruce Evans Cc: Scott Klement , freebsd-gnats-submit@FreeBSD.org Subject: Re: i386/30965: Cyclades Cyclom-Yep causes FreeBSD to hang during Date: Tue, 19 Feb 2002 20:03:28 +0100 Bruce Evans wrote: >On Wed, 6 Feb 2002, Scott Klement wrote: > >>I have been running 4 computers with Arjan's patch since October with zero >>problems. It's really been a lifesaver (thank you, Arjan!) >> >>Any chance this will be committed/MFC-ed by the next (4.6) release? >> > >Thanks for the feedback. Sorry I haven't asked Cyclades what the magic >bit does. I would like to know before putting it in -stable. > Can imagine that. > > >Bruce > I'm still not satisfied with the Cyclades YeP boards. There is some strange behaviour with SMP kernels (panics) and with more than one YeP board in a PC the detection of the CD1400 sometimes failes. Arjan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 11:27:11 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.libertysurf.net (mail.libertysurf.net [213.36.80.91]) by hub.freebsd.org (Postfix) with ESMTP id A2EB937B400; Tue, 19 Feb 2002 11:26:56 -0800 (PST) Received: from zd (212.83.191.106) by mail.libertysurf.net (5.1.053) id 3C6C79A6000D0B01; Tue, 19 Feb 2002 20:23:34 +0100 Message-ID: <3C6C79A6000D0B01@mail.libertysurf.net> (added by postmaster@libertysurf.fr) From: Sept Pierres To: vous <> Reply-To: Sept Pierres Subject: =?ISO-8859-1?Q?Et si c'=E9tait vrai ...?= Date: Tue, 19 feb 2002 10:28:05 +0100 Importance: normal X-Mailer: GOTO Software Sarbacane Vs P1.13b Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="5682426646345761" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --5682426646345761 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable --5682426646345761 Content-Type: text/html; charset="ISO-8859-1" Content-Transfer-Encoding: Quoted-Printable Nouvelle page 2

Un ancien= repris de justice reçoit
d'un des 10 hommes les plus riches du mo= nde
l'ancien manuscrit secret des 7 pierres des Andes
qui ont plus de 6000 ans d'âge et
il devient milliardaire en dollars à son tour.

Pour en savoir d'avantage, à= propos de cette histoire hors du commun, il vous suffit simplement d'envoy= er un e-mail à l'adresse : 7pierres@wanadoo.fr
=


Votre adresse fait partie d'une mailing-list à la suite de votre inscription ou de votre présence publique sur Internet. Nous nous eff= orçons de maintenir des listes de diffusion de qualité et d'éviter le S= pam. C’est pourquoi nous vous présentons nos excuses si ce mail vous a déra= ngé. Si ce mail vous a atteint par erreur et si vous souhaitez ne plus jamais recevoi= r de message de notre part et sortir immédiatement de nos listes, il vous = suffit simplement d'envoyer un mail en cliquant sur l’adresse : sortir-liste@wanadoo.fr=


Your address is listed because of your subscription to a list or becaus= e of your public presence on Internet. We are permanently monitoring the qua= lity of our mailing-lists to avoid Spam. We apologize for any disturbance. If this mail hits your inbox by error and/or if you do not wish to receive an= y other e-mail from us, you can unsubscribe from our lists by sending an ema= il to : sortir-liste@wanadoo.fr

--5682426646345761-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 12:50:16 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AB1F337B400 for ; Tue, 19 Feb 2002 12:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1JKo2I94427; Tue, 19 Feb 2002 12:50:02 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Feb 2002 12:50:02 -0800 (PST) Message-Id: <200202192050.g1JKo2I94427@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Simon 'corecode' Schubert" Subject: Re: bin/35119: make(1) variable modifier bug (:L, :U etc) Reply-To: "Simon 'corecode' Schubert" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35119; it has been noted by GNATS. From: "Simon 'corecode' Schubert" To: stijn@win.tue.nl Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/35119: make(1) variable modifier bug (:L, :U etc) Date: Tue, 19 Feb 2002 21:42:30 +0100 --OFN=.KLuoT/o68,X Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Tue, 19 Feb 2002 16:47:38 +0100 (CET) stijn@win.tue.nl wrote: > make(1) has a buglet wrt expanding variables with modifiers. If an > expansion of an undefined variable, with a modifier, is used in an .if > statement like so: > > .if defined(FOO) && ${FOO:L} == "bar" > > make bombs out with a 'Malformed conditional', even if FOO is not > defined. i believe this is already known. make processes all statements on an .if line, no matter if this is needed or not (unlike most other languages): ..if defined(FOO) && ${FOO} == "bar" will result in the following (without having FOO defined): res1 := test FOO for existance = false res2 := test FOO == "bar" = false res := res1 && res2 == false if you use a modifier, make will (of course [knowing the fact above]) complain about the variable not being assigned. Fix: ..if defined(FOO) ..if ${FOO:L} == "bar" ..endif ..endif so it's got nothing to do with defined() and the modifiers, more with the way make processes conditionals. cheerz corecode -- /"\ http://corecode.ath.cx/ \ / \ ASCII Ribbon Campaign / \ Against HTML Mail and News --OFN=.KLuoT/o68,X Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) iD8DBQE8cri9r5S+dk6z85oRAmEXAJ9+NdS8HmbX1oN1nUGI7aqS8DIS3QCcCUZz Hv0zwITEM3CMRoZHw+2D8oc= =mrj0 -----END PGP SIGNATURE----- --OFN=.KLuoT/o68,X-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 14:40: 6 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4452D37B416 for ; Tue, 19 Feb 2002 14:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1JMe2L18033; Tue, 19 Feb 2002 14:40:02 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Feb 2002 14:40:02 -0800 (PST) Message-Id: <200202192240.g1JMe2L18033@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: bin/35119: make(1) variable modifier bug (:L, :U etc) Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35119; it has been noted by GNATS. From: "Crist J. Clark" To: "Simon 'corecode' Schubert" Cc: bug-followup@FreeBSD.ORG Subject: Re: bin/35119: make(1) variable modifier bug (:L, :U etc) Date: Tue, 19 Feb 2002 14:33:41 -0800 On Tue, Feb 19, 2002 at 12:50:02PM -0800, Simon 'corecode' Schubert wrote: > On Tue, 19 Feb 2002 16:47:38 +0100 (CET) stijn@win.tue.nl wrote: > > > make(1) has a buglet wrt expanding variables with modifiers. If an > > expansion of an undefined variable, with a modifier, is used in an .if > > statement like so: > > > > .if defined(FOO) && ${FOO:L} == "bar" > > > > make bombs out with a 'Malformed conditional', even if FOO is not > > defined. > > i believe this is already known. make processes all statements on an .if line, no matter if this is needed or not (unlike most other languages): The problem is that this behavior contradicts the documented behavior. make(1) says, As in C, make will only evaluate a conditional as far as is necessary to determine its value. But as you say, this is known behavior, PR bin/34032. A patch is included in that PR's audit trail. Would the submitter please check if that patch solve's his problems? I'm looking to commit that soon, but not 100% sure the logic is totally sound. Another successful test would help. Thanks. I will close up this PR as a duplicate. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 14:47:18 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mired.org (dsl-64-192-6-133.telocity.com [64.192.6.133]) by hub.freebsd.org (Postfix) with SMTP id A43D437B417 for ; Tue, 19 Feb 2002 14:47:13 -0800 (PST) Received: (qmail 71407 invoked by uid 100); 19 Feb 2002 22:47:10 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15474.54765.509913.721832@guru.mired.org> Date: Tue, 19 Feb 2002 16:47:09 -0600 To: Andre Albsmeier Cc: obrien@FreeBSD.ORG, mwm@mired.org, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/30908: [PATCH] Tweak ldd to provide more information if requested In-Reply-To: <20020219184251.A16331@curry.mchp.siemens.de> References: <200202170706.g1H76cd48244@freefall.freebsd.org> <20020219184251.A16331@curry.mchp.siemens.de> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ From: "Mike Meyer" X-Delivery-Agent: TMDA/0.46 (Python 2.2; freebsd-4.5-STABLE-i386) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Andre Albsmeier types: > On Sat, 16-Feb-2002 at 23:06:38 -0800, obrien@FreeBSD.ORG wrote: > > Synopsis: [PATCH] Tweak ldd to provide more information if requested > > State-Changed-From-To: open->closed > > State-Changed-By: obrien > > State-Changed-When: Sat Feb 16 22:53:15 PST 2002 > > State-Changed-Why: > > Committed > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=30908 > Is there a chance for a MFC? Considering that the patch was developed and tested on -stable, there should be a good one. But I think there's an n-day waiting period that is prescribed for most changes, for some small value of n. http://www.mired.org/home/mwm/ Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 14:53:46 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 28A8E37B422; Tue, 19 Feb 2002 14:52:14 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1JMiul22549; Tue, 19 Feb 2002 14:44:56 -0800 (PST) (envelope-from cjc) Date: Tue, 19 Feb 2002 14:44:56 -0800 (PST) From: Message-Id: <200202192244.g1JMiul22549@freefall.freebsd.org> To: stijn@win.tue.nl, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/35119: make(1) variable modifier bug (:L, :U etc) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: make(1) variable modifier bug (:L, :U etc) State-Changed-From-To: open->closed State-Changed-By: cjc State-Changed-When: Tue Feb 19 14:42:01 PST 2002 State-Changed-Why: Duplicate of problem reported in bin/34032. The audit trail of that PR contains a patch being evaluated at the time this PR was closed. Please see the audit trail of PR bin/34032 for the current status of this bug. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35119 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 14:54:22 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 89D9437B425; Tue, 19 Feb 2002 14:52:14 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1JMmRe23043; Tue, 19 Feb 2002 14:48:27 -0800 (PST) (envelope-from cjc) Date: Tue, 19 Feb 2002 14:48:27 -0800 (PST) From: Message-Id: <200202192248.g1JMmRe23043@freefall.freebsd.org> To: ports@geeksrus.net, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org, cjc@FreeBSD.org Subject: Re: bin/34032: make fails to evaluate some reasonable conditional expressions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: make fails to evaluate some reasonable conditional expressions State-Changed-From-To: open->analyzed State-Changed-By: cjc State-Changed-When: Tue Feb 19 14:45:02 PST 2002 State-Changed-Why: After a number of pokes from various parties, I'll make sure something happens with this bug. If anyone else has tested/reviewed the patch, feel free to contact me with results or opinions. Responsible-Changed-From-To: freebsd-bugs->cjc Responsible-Changed-By: cjc Responsible-Changed-When: Tue Feb 19 14:45:02 PST 2002 Responsible-Changed-Why: I made the mistake of verifying that it is really a bug. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=34032 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 15: 0:15 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA9BC37B402 for ; Tue, 19 Feb 2002 15:00:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1JN06h25006; Tue, 19 Feb 2002 15:00:06 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B47EB37B405 for ; Tue, 19 Feb 2002 14:56:00 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1JMu0b24021; Tue, 19 Feb 2002 14:56:00 -0800 (PST) (envelope-from nobody) Message-Id: <200202192256.g1JMu0b24021@freefall.freebsd.org> Date: Tue, 19 Feb 2002 14:56:00 -0800 (PST) From: Josh To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/35124: No mouse with FreeBSD 4.5 with ECS K7S5a Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35124 >Category: i386 >Synopsis: No mouse with FreeBSD 4.5 with ECS K7S5a >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 Feb 19 15:00:06 PST 2002 >Closed-Date: >Last-Modified: >Originator: Josh >Release: 4.5 release >Organization: >Environment: >Description: Mouse does not initialize for K7s5a (ps/2 onboard) >How-To-Repeat: >Fix: not known >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 Feb 19 16:24: 7 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from backup.af.speednet.com.au (afgate.speednet.com.au [202.135.188.244]) by hub.freebsd.org (Postfix) with ESMTP id 62E2937B400 for ; Tue, 19 Feb 2002 16:24:00 -0800 (PST) Received: from backup.af.speednet.com.au (andyf@backup.af.speednet.com.au [172.22.2.4]) by backup.af.speednet.com.au (8.11.6/8.11.6) with ESMTP id g1K0NbV10532; Wed, 20 Feb 2002 11:23:38 +1100 (EST) (envelope-from andyf@speednet.com.au) Date: Wed, 20 Feb 2002 11:23:37 +1100 (EST) From: Andy Farkas X-X-Sender: To: Gavin Atkinson Cc: Subject: Re: bin/35113: grdc enhancement: countdown timer mode In-Reply-To: <200202191351.g1JDpcj00684@avcpc2.york.ac.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, 19 Feb 2002, Gavin Atkinson wrote: > >Description: > grdc lacks a countdown timer. This patch adds it. ... > --- /5.0/usr/src/games/grdc/grdc.c Tue Sep 25 14:45:46 2001 > +++ grdc.c Tue Feb 19 09:21:04 2002 > @@ -1,10 +1,13 @@ > /* > * Grand digital clock for curses compatible terminals > * Usage: grdc [-s] [n] -- run for n seconds (default infinity) > + * grdc -t n -- countdown n seconds > * Flags: -s: scroll > + * -t: timer mode > * I would like to see grdc learn to count up from 0 seconds, maybe -c flag. It could then perhaps be used as crude visual running timer...? I think grdc has potential to do lots of useless nifty things :) -- :{ andyf@speednet.com.au Andy Farkas System Administrator Speednet Communications http://www.speednet.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 18:34:41 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from promote.net (ip45.dyn166.pacific.net.hk [202.64.166.45]) by hub.freebsd.org (Postfix) with SMTP id 3836B37B402; Tue, 19 Feb 2002 18:34:19 -0800 (PST) Received: from mail by giga.net.tw with SMTP id NG6b1ElxgdlukZ3Ox712Dd4ykFZ6; Wed, 20 Feb 2002 10:33:56 +0800 Message-ID: <1i62@mx.seed.net.tw> From: info@md-entp.com To: Cosmetic@FreeBSD.ORG Subject:New resources X-Mailer: zuz3Vf6yj8FntmfGhZmhDQ Content-Type: text/plain; Content-Transfer-Encoding: Quoted-Printable X-Priority: 3 X-MSMail-Priority: Normal Date: Tue, 19 Feb 2002 18:34:19 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Dear Sir / Madam, As a successful enterpriser, you probably have stable suppliers for years, But somehow, they will also cause problem about late delivery, or quality mistake in urgent shipment sometime. New suppliers will good for you to avoid late delivery to your customers. Some of our major customers are running on this arrangement to secure them, That is why they can have steady supply to keep their profit and reputation. Therefor, we sincerely send this message to request an initial contact with us, then we can have chance to share their successful strategy with you. We sincerely hope to be one of your suppliers in the near future. Thanks & Regards Dominic Director Ming Dynasty Ent Ltd. http://www.md-entp.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 19: 0:21 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D8AC37B41C for ; Tue, 19 Feb 2002 19:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1K303677884; Tue, 19 Feb 2002 19:00:03 -0800 (PST) (envelope-from gnats) Received: from core.usrlib.org (cc2-24.217.114.114.charter-stl.com [24.217.114.114]) by hub.freebsd.org (Postfix) with ESMTP id A491137B41F for ; Tue, 19 Feb 2002 18:56:57 -0800 (PST) Received: by core.usrlib.org (Postfix, from userid 1001) id 59D8AA811; Tue, 19 Feb 2002 20:56:47 -0600 (CST) Message-Id: <20020220025647.59D8AA811@core.usrlib.org> Date: Tue, 19 Feb 2002 20:56:47 -0600 (CST) From: Andrew Hesford Reply-To: Andrew Hesford To: FreeBSD-gnats-submit@freebsd.org Cc: jester@core.usrlib.org X-Send-Pr-Version: 3.113 Subject: bin/35129: Maildir support in login(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35129 >Category: bin >Synopsis: Maildir support in login(1) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Feb 19 19:00:03 PST 2002 >Closed-Date: >Last-Modified: >Originator: Andrew Hesford >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD core.usrlib.org 4.5-STABLE FreeBSD 4.5-STABLE #0: Wed Feb 13 03:22:55 CST 2002 jester@core.usrlib.org:/usr/src/sys/compile/CORE i386 >Description: login(1) checks a user's mbox file upon login, and if it finds messages, reports to the user if there is mail (and whether or not it is new). For systems where Qmail Maildir is used for mail, this functionality is lost. I have produced a patch that will use the $MAILDIR/cur and $MAILDIR/new directories to determine if a user has mail (and whether or not it is new). It will then report this on login, just as with mbox mail files. >How-To-Repeat: On a system using Maildir, send messages to a user, then login as that user. Notice that login(1) does not report "You have new mail." Likewise, after reading and saving the messages, logging in will not produce a "You have mail." message. >Fix: This diff can be applied to /usr/src/usr.bin/login/. It makes login(1) look for $MAILDIR if $MAIL is unset, and if $MAILDIR is defined, uses $MAILDIR/cur and $MAILDIR/new to find read and unread mail, respectively. Broken Maildir folders (missing cur and new) will simply cause login(1) to ignore the mail prompt. Should it be desired, the code can also be redone to print the message counts (new and previously-read messages). The following diff can be applied by changing to the /usr/src/usr.bin/login/ directory and running `patch < login.diff`. :::: BEGIN login.diff :::: *** login.c.orig Tue Feb 19 20:25:37 2002 --- login.c Tue Feb 19 20:25:47 2002 *************** *** 53,59 **** --- 53,61 ---- #include #include + #include #include + #include #include #include #include *************** *** 167,172 **** --- 169,179 ---- char tname[sizeof(_PATH_TTY) + 10]; char *shell = NULL; login_cap_t *lc = NULL; + int use_mdir = 0; + FTS *ftsp; + char *mdbuf[3]; + FTSENT *ftse; + int mdopt = FTS_NOCHDIR | FTS_NOSTAT | FTS_LOGICAL; #ifdef USE_PAM pid_t pid; int e; *************** *** 690,701 **** cw = getenv("MAIL"); /* $MAIL may have been set by class */ if (cw != NULL) strlcpy(tbuf, cw, sizeof(tbuf)); ! else ! snprintf(tbuf, sizeof(tbuf), "%s/%s", _PATH_MAILDIR, ! pwd->pw_name); ! if (stat(tbuf, &st) == 0 && st.st_size != 0) (void)printf("You have %smail.\n", (st.st_mtime > st.st_atime) ? "new " : ""); } login_close(lc); --- 697,743 ---- cw = getenv("MAIL"); /* $MAIL may have been set by class */ if (cw != NULL) strlcpy(tbuf, cw, sizeof(tbuf)); ! else { ! cw = getenv("MAILDIR"); ! if (cw != NULL) { ! strlcpy(tbuf, cw, sizeof(tbuf)); ! use_mdir = 1; ! } ! else ! snprintf(tbuf, sizeof(tbuf), "%s/%s", ! _PATH_MAILDIR, pwd->pw_name); ! } ! if (!use_mdir && stat(tbuf, &st) == 0 && st.st_size != 0) (void)printf("You have %smail.\n", (st.st_mtime > st.st_atime) ? "new " : ""); + else if (use_mdir && stat(tbuf, &st) == 0 && + (st.st_mode & S_IFDIR) != 0) { + mdbuf[0] = (char*)malloc(sizeof(tbuf)); + bzero(mdbuf[0], sizeof(mdbuf[0])); + mdbuf[1] = (char*)malloc(sizeof(tbuf)); + bzero(mdbuf[1], sizeof(mdbuf[1])); + snprintf(mdbuf[0], sizeof(tbuf), "%s/new", tbuf); + snprintf(mdbuf[1], sizeof(tbuf), "%s/cur", tbuf); + if ((ftsp = fts_open(mdbuf, mdopt, NULL)) != NULL) { + int ncount = 0, ocount = 0; + ftse = fts_read(ftsp); + while ((ftse = fts_read(ftsp)) != NULL && + strncmp(ftse->fts_name, "new", + sizeof(char)*4) != 0) + ncount++; + ftse = fts_read(ftsp); + while ((ftse = fts_read(ftsp)) != NULL && + strncmp(ftse->fts_name, "cur", + sizeof(char)*4) != 0) + ocount++; + if (ncount > 0) + (void)printf("You have new mail.\n"); + else if (ocount > 0) + (void)printf("You have mail.\n"); + fts_close(ftsp); + } + } + } login_close(lc); *** login.1.orig Tue Feb 19 20:25:57 2002 --- login.1 Tue Feb 19 20:26:01 2002 *************** *** 173,179 **** login account records .It Pa /var/mail/user system mailboxes ! .It Pa \&.hushlogin makes login quieter .It Pa /etc/auth.conf configure authentication services --- 173,181 ---- login account records .It Pa /var/mail/user system mailboxes ! .It Pa ~/Maildir ! Maildir mailbox (used if $MAIL is unset) ! .It Pa ~/\&.hushlogin makes login quieter .It Pa /etc/auth.conf configure authentication services >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 Feb 19 20:50: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D96637B426 for ; Tue, 19 Feb 2002 20:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1K4o1x05282; Tue, 19 Feb 2002 20:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3ADE237B420 for ; Tue, 19 Feb 2002 20:49:54 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1K4nrg05242; Tue, 19 Feb 2002 20:49:53 -0800 (PST) (envelope-from nobody) Message-Id: <200202200449.g1K4nrg05242@freefall.freebsd.org> Date: Tue, 19 Feb 2002 20:49:53 -0800 (PST) From: "Brian A. Seklecki" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/35130: Example dd command for making 4.x install diskettes from Solaris 2.x Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35130 >Category: misc >Synopsis: Example dd command for making 4.x install diskettes from Solaris 2.x >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: Tue Feb 19 20:50:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Brian A. Seklecki >Release: 4.5-RELEASE >Organization: >Environment: N/A >Description: From: ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/4.5-RELEASE/INSTALL.TXT On Solaris, the command is: dd if=kern.flp of=/dev/rdiskette0 bs=18k (or mfsroot.flp), etc. Worth mentioning >How-To-Repeat: Buy a sparcstation. Try to install FreeBSD on the SunPCi card >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 Feb 19 22: 0:23 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D997937B417 for ; Tue, 19 Feb 2002 22:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1K603G18266; Tue, 19 Feb 2002 22:00:03 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Feb 2002 22:00:03 -0800 (PST) Message-Id: <200202200600.g1K603G18266@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andrew Hesford Subject: Re: bin/35129: Maildir support in login(1) Reply-To: Andrew Hesford Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35129; it has been noted by GNATS. From: Andrew Hesford To: freebsd-gnats-submit@FreeBSD.org, ajh3@cec.wustl.edu Cc: Subject: Re: bin/35129: Maildir support in login(1) Date: Tue, 19 Feb 2002 23:53:39 -0600 After some extra thought, I have changed the patch a bit. Whereas before login(1) would go through $MAILDIR/new and count every message, and then count every message in $MAILDIR/cur, I have reduced it to counting at most four directory entries. Now I simply call fts_read() twice on $MAILDIR/new to see if there are files in that directory. If there are, each call to fts_read() will produce an FTSENT structure with a different fts_name field: the first will be the directory, and the second will be some file. If there are no files in the directory, each FTSENT structure will contain the directory name in its fts_name field. If there are files in $MAILDIR/new, login(1) prints "You have new mail." and forgets about Maildir. Otherwise, it repeats the fts_read() process for $MAILDIR/cur. The reasoning behind the first patch was to count new and old messages, to display a count; however, I decided against that but did not change the process. After some secondary thought I realized that this new method is superior, because at worst-case there are four fts_read() calls. I don't think there are bugs in this... I'll leave that to everybody else to determine. :) I'm sure many people who rely on Maildir will find this useful (or a superior scheme if you can think of one). ::: BEGIN login.diff ::: *** login.c.orig Tue Feb 19 23:35:27 2002 --- login.c Tue Feb 19 23:39:03 2002 *************** *** 53,59 **** --- 53,61 ---- #include #include + #include #include + #include #include #include #include *************** *** 167,172 **** --- 169,179 ---- char tname[sizeof(_PATH_TTY) + 10]; char *shell = NULL; login_cap_t *lc = NULL; + int use_mdir = 0; + FTS *ftsp; + char *mdbuf[2]; + FTSENT *ftse[2]; + int mdopt = FTS_NOCHDIR | FTS_NOSTAT | FTS_LOGICAL; #ifdef USE_PAM pid_t pid; int e; *************** *** 690,701 **** cw = getenv("MAIL"); /* $MAIL may have been set by class */ if (cw != NULL) strlcpy(tbuf, cw, sizeof(tbuf)); ! else ! snprintf(tbuf, sizeof(tbuf), "%s/%s", _PATH_MAILDIR, ! pwd->pw_name); ! if (stat(tbuf, &st) == 0 && st.st_size != 0) (void)printf("You have %smail.\n", (st.st_mtime > st.st_atime) ? "new " : ""); } login_close(lc); --- 697,745 ---- cw = getenv("MAIL"); /* $MAIL may have been set by class */ if (cw != NULL) strlcpy(tbuf, cw, sizeof(tbuf)); ! else { ! cw = getenv("MAILDIR"); ! if (cw != NULL) { ! strlcpy(tbuf, cw, sizeof(tbuf)); ! use_mdir = 1; ! } ! else ! snprintf(tbuf, sizeof(tbuf), "%s/%s", ! _PATH_MAILDIR, pwd->pw_name); ! } ! if (!use_mdir && stat(tbuf, &st) == 0 && st.st_size != 0) (void)printf("You have %smail.\n", (st.st_mtime > st.st_atime) ? "new " : ""); + /* + * The only way to check Maildir for messages is to read + * the directories... use fts(3) for this. + */ + else if (use_mdir && stat(tbuf, &st) == 0 && + (st.st_mode & S_IFDIR) != 0) { + mdbuf[0] = (char*)malloc(sizeof(tbuf)); + bzero(mdbuf[0], sizeof(tbuf)); + snprintf(mdbuf[0], sizeof(tbuf), "%s/new", tbuf); + if ((ftsp = fts_open(mdbuf, mdopt, NULL)) != NULL) { + ftse[0] = fts_read(ftsp); + ftse[1] = fts_read(ftsp); + fts_close(ftsp); + if (strcmp(ftse[0]->fts_name, + ftse[1]->fts_name) != 0) + (void)printf("You have new mail.\n"); + else { + snprintf(mdbuf[0], sizeof(tbuf), + "%s/cur", tbuf); + if ((ftsp=fts_open(mdbuf,mdopt, NULL))!=NULL) { + ftse[0] = fts_read(ftsp); + ftse[1] = fts_read(ftsp); + fts_close(ftsp); + if (strcmp(ftse[0]->fts_name, + ftse[1]->fts_name) != 0) + (void)printf("You have mail.\n"); + } + } + } + } } login_close(lc); *** login.1.orig Tue Feb 19 23:35:27 2002 --- login.1 Tue Feb 19 23:38:28 2002 *************** *** 173,179 **** login account records .It Pa /var/mail/user system mailboxes ! .It Pa \&.hushlogin makes login quieter .It Pa /etc/auth.conf configure authentication services --- 173,181 ---- login account records .It Pa /var/mail/user system mailboxes ! .It Pa ~/Maildir ! Maildir mailbox (used if $MAIL is unset) ! .It Pa ~/\&.hushlogin makes login quieter .It Pa /etc/auth.conf configure authentication services ::: END login.diff ::: -- Andrew Hesford, Washington University ajh3@cec.wustl.edu, jester@usrlib.org :- Fortune of the Moment -: I've given up reading books; I find it takes my mind off myself. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 22:20: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C345837B41A for ; Tue, 19 Feb 2002 22:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1K6K2l24550; Tue, 19 Feb 2002 22:20:02 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Feb 2002 22:20:02 -0800 (PST) Message-Id: <200202200620.g1K6K2l24550@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Danny Howard Subject: Re: bin/24439: suggested replament for adduser(8) Reply-To: Danny Howard Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/24439; it has been noted by GNATS. From: Danny Howard To: Yar Tikhiy Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/24439: suggested replament for adduser(8) Date: Tue, 19 Feb 2002 22:17:23 -0800 For the record, I have finally gotten around to submitting the port. :) -danny To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 22:45: 7 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp017.mail.yahoo.com (smtp017.mail.yahoo.com [216.136.174.114]) by hub.freebsd.org (Postfix) with SMTP id BA70937B416 for ; Tue, 19 Feb 2002 22:43:22 -0800 (PST) Received: from l228ppp190.ksc.net.th (HELO thailifetime) (203.155.228.190) by smtp.mail.vip.sc5.yahoo.com with SMTP; 20 Feb 2002 06:43:17 -0000 Message-ID: <01d601c1b9d9$37eceb80$82e29bcb@thailifetime> From: "faststep_3" To: Subject: Work From Home Free Information Date: Wed, 20 Feb 2002 13:36:25 +0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_01D3_01C1BA13.97B8CC20" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_01D3_01C1BA13.97B8CC20 Content-Type: text/plain; charset="windows-874" Content-Transfer-Encoding: quoted-printable Work From Home Free Information WHo DO YOU KNOW IN .....INDIA - CHAINA? USA-Europe-Africa-Asia:-Taiwan-Hongkong Korea-Japan-Malasia-Pakistan-Bangdesh Multibillion Dollar International Company Expanding Rapidly, needs your help EARN US$ 500-$1500 A MONTH PART TIME $1,000-$5,000 A MONTH FULL - TIME TEL.6627520011 / 6691112270 E-mail;muimint@yahoo.com www.thailifetime.com/somporn www.herbalife.com Work from your home -country all around the world =E0=C7=C5=D2 10-15 =B9=D2=B7=D5 ... =C1=D5=A4=D8=B3=A4=E8=D2 =CB=D2=A1=B7=E8=D2=B9=A1=D3=C5=D1=A7=CB=D2=A7=D2=B9=B9=CD=A1=E0=C7=C5=D2 = =CB=C3=D7=CD=C3=D2=C2=E4=B4=E9=E0=CA=C3=D4=C1 =E4=C1=E8=B5=E9=CD=A7=CB=D2=CD=D5=A1=B5=E8=CD=E4=BB = =B7=E8=D2=B9=CA=D2=C1=D2=C3=B6=B7=D3=C3=D2=C2=E4=B4=E9=B6=D6=A7 =B9=CD=A1=E0=C7=C5=D2 5,000-30,000 =BA=D2=B7/=E0=B4=D7=CD=B9 =E0=B5=E7=C1=E0=C7=C5=D2 30,000-110,000 =BA=D2=B7/=E0=B4=D7=CD=B9 =CA=D2=C1=D2=C3=B6=E0=C5=D7=CD=A1=E0=C7=C5=D2=B7=D3=A7=D2=B9, = =B7=D3=A7=D2=B9=B7=D5=E8=BA=E9=D2=B9=CB=C3=D7=CD=CD=D4=B9=E0=B5=CD=C3=EC=E0= =B9=E7=B5 =B9=D1=A1=B8=D8=C3=A1=D4=A8 =E1=BE=B7=C2=EC =BE=C2=D2=BA=D2=C5 = =E0=C0=CA=D1=AA=A1=C3 =CA=B6=D2=BB=B9=D4=A1 =C7=D4=C8=C7=A1=C3 = =B7=B9=D2=C2=A4=C7=D2=C1 =B9=D1=A1=BA=D1=AD=AA=D5 =BE=B9=D1=A1=A7=D2=B9=BA=C3=D4=C9=D1=B7 =A2=E9=D2=C3=D2=AA=A1=D2=C3 = =B9=D1=A1=C8=D6=A1=C9=D2 =B9=D1=A1=A4=CD=C1=BE=D4=C7=E0=B5=CD=C3=EC = =B9=D1=A1=A2=D2=C2=BB=C3=D0=A1=D1=B9 =B5=D4=B4=B5=E8=CD =A4=D8=B3=CA=C1=BE=C3 66 91112 270 , 66 2752 00 = 11 www.thailifetime.com/somporn=20 *=CB=D2=A1=B7=E8=D2=B9=E3=AA=E9=CD=D4=B9=E0=B5=CD=C3=EC=E0=B9=E7=B5=E4=B4= =E9 =E0=C3=D2=A8=D0=BE=D4=A8=D2=C3=B3=D2=E0=BB=E7=B9=BE=D4=E0=C8=C9 ------=_NextPart_000_01D3_01C1BA13.97B8CC20 Content-Type: text/html; charset="windows-874" Content-Transfer-Encoding: quoted-printable
Work From Home Free = Information
 
WHo DO YOU KNOW IN .....INDIA -=20 CHAINA?
USA-Europe-Africa-Asia:-Taiwan-Hongkong
Korea-Japan-Malasia= -Pakistan-Bangdesh
Multibillion=20 Dollar International Company
Expanding Rapidly, needs your = help
 
EARN US$ 500-$1500 A MONTH PART=20 TIME
$1,000-$5,000 A MONTH FULL - TIME
 
 
Work from your home -country all around = the=20 world
 

=E0=C7=C5=D2 10-15 =B9=D2=B7=D5 ... = =C1=D5=A4=D8=B3=A4=E8=D2
=CB=D2=A1=B7=E8=D2=B9=A1=D3=C5=D1=A7=CB=D2=A7= =D2=B9=B9=CD=A1=E0=C7=C5=D2=20 =CB=C3=D7=CD=C3=D2=C2=E4=B4=E9=E0=CA=C3=D4=C1
=E4=C1=E8=B5=E9=CD=A7=CB= =D2=CD=D5=A1=B5=E8=CD=E4=BB = =B7=E8=D2=B9=CA=D2=C1=D2=C3=B6=B7=D3=C3=D2=C2=E4=B4=E9=B6=D6=A7
=B9=CD= =A1=E0=C7=C5=D2=20 5,000-30,000 =BA=D2=B7/=E0=B4=D7=CD=B9
=E0=B5=E7=C1=E0=C7=C5=D2 = 30,000-110,000=20 =BA=D2=B7/=E0=B4=D7=CD=B9
=CA=D2=C1=D2=C3=B6=E0=C5=D7=CD=A1=E0=C7=C5=D2= =B7=D3=A7=D2=B9, = =B7=D3=A7=D2=B9=B7=D5=E8=BA=E9=D2=B9=CB=C3=D7=CD=CD=D4=B9=E0=B5=CD=C3=EC=E0= =B9=E7=B5
=B9=D1=A1=B8=D8=C3=A1=D4=A8=20 =E1=BE=B7=C2=EC =BE=C2=D2=BA=D2=C5 =E0=C0=CA=D1=AA=A1=C3 = =CA=B6=D2=BB=B9=D4=A1 =C7=D4=C8=C7=A1=C3 =B7=B9=D2=C2=A4=C7=D2=C1 = =B9=D1=A1=BA=D1=AD=AA=D5
=BE=B9=D1=A1=A7=D2=B9=BA=C3=D4=C9=D1=B7 = =A2=E9=D2=C3=D2=AA=A1=D2=C3=20 =B9=D1=A1=C8=D6=A1=C9=D2 =B9=D1=A1=A4=CD=C1=BE=D4=C7=E0=B5=CD=C3=EC = =B9=D1=A1=A2=D2=C2=BB=C3=D0=A1=D1=B9
 
=B5=D4=B4=B5=E8=CD =A4=D8=B3=CA=C1=BE=C3   66 91112 = 270  ,  66 2752 00 11
www.thailifetime.com/somporn= =20
*=CB=D2=A1=B7=E8=D2=B9=E3=AA=E9=CD=D4=B9=E0=B5=CD=C3=EC=E0=B9=E7=B5=E4= =B4=E9 = =E0=C3=D2=A8=D0=BE=D4=A8=D2=C3=B3=D2=E0=BB=E7=B9=BE=D4=E0=C8=C9
------=_NextPart_000_01D3_01C1BA13.97B8CC20-- _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 19 23:20:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A866637B404 for ; Tue, 19 Feb 2002 23:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1K7K1T37090; Tue, 19 Feb 2002 23:20:01 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Feb 2002 23:20:01 -0800 (PST) Message-Id: <200202200720.g1K7K1T37090@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/35129: Maildir support in login(1) Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35129; it has been noted by GNATS. From: Peter Pentchev To: Andrew Hesford Cc: FreeBSD-gnats-submit@freebsd.org, jester@core.usrlib.org Subject: Re: bin/35129: Maildir support in login(1) Date: Wed, 20 Feb 2002 09:16:23 +0200 On Tue, Feb 19, 2002 at 08:56:47PM -0600, Andrew Hesford wrote: > > >Number: 35129 > >Category: bin > >Synopsis: Maildir support in login(1) > >Originator: Andrew Hesford > > >Description: > login(1) checks a user's mbox file upon login, and if it finds > messages, reports to the user if there is mail (and whether or > not it is new). For systems where Qmail Maildir is used for > mail, this functionality is lost. I have produced a patch that > will use the $MAILDIR/cur and $MAILDIR/new directories to > determine if a user has mail (and whether or not it is new). It > will then report this on login, just as with mbox mail files. With all due respect for your work (and thank you for it!), I believe that this might be better done as a PAM module, so it could be used by other login methods not involving login(1) (like SSH with UseLogin set to 'no', as I do on most of my machines). I started work on a pam_mailcheck module a while ago, but Real Life(tm) and Real Work(tm) kind of overtook it.. I think that your patches to login(1) might as well serve as a nice prod :) And in the meantime, thanks again for your patches - they may serve well until pam_mailcheck is ready :) G'luck, Peter -- Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 I've heard that this sentence is a rumor. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 0:20:19 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2EDE37B416 for ; Wed, 20 Feb 2002 00:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1K8K1A52564; Wed, 20 Feb 2002 00:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F27F537B400 for ; Wed, 20 Feb 2002 00:16:56 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1K8GuH51911; Wed, 20 Feb 2002 00:16:56 -0800 (PST) (envelope-from nobody) Message-Id: <200202200816.g1K8GuH51911@freefall.freebsd.org> Date: Wed, 20 Feb 2002 00:16:56 -0800 (PST) From: Alexander Grebennikov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/35136: VLAN & bridging & MTU Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35136 >Category: kern >Synopsis: VLAN & bridging & MTU >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 Feb 20 00:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Alexander Grebennikov >Release: tried many up to 4.4-RELEASE >Organization: RCC >Environment: FreeBSD x2.rocc.ru 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Thu Dec 20 11:11:47 MSK 2001 >Description: I'm trying to bridge traffic between 2 VLANs using FreeBSD in BRIDGE mode. Channel between 2 VLANS going through G.703. There are 2 G.703<-->Ethernet converters at both sides. Converters are modems. These modems cannot pass VLAN packets because VLAN packets are 4 bytes large then usual. What i did: setting up 1-st interface on FreeBSD with MTU=1500 , second interface ( to converter) with MTU=1400. Started BRIDGE mode. Packets not fragmented passing FreeBSD. :( And still getting out to converter with MTU=1500 via ethernet interface with MTU=1400 !! I think it's a bug ?? >How-To-Repeat: Need 3 computers: 2 of them - usual PCs with 1 Ethernet card each. 3-rd = FreeBSD in Bridge mode with 2 ethernet cards. 1 card must be setted MTU=1500. Second card - MTU=1400 E.g. PC1 <--(MTU_1500)-->FreeBSD_BRIDGE<--(MTU_1400)--> PC2 Ping PC2 from PC1 with packet size=4000 byes (for example) Start to sniff packets from PC1 on PC2. They should have maximum size=1400 bytes ! But they will have size =1500 ! That is bug. >Fix: I don't 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 Wed Feb 20 1: 9:17 2002 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 264E237B405; Wed, 20 Feb 2002 01:09:11 -0800 (PST) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by david.siemens.de (8.11.6/8.11.6) with ESMTP id g1K98ud08173; Wed, 20 Feb 2002 10:08:57 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail1.siemens.de (8.11.6/8.11.6) with ESMTP id g1K98up23962; Wed, 20 Feb 2002 10:08:56 +0100 (MET) Received: (from localhost) by curry.mchp.siemens.de (8.11.6/8.11.6) id g1K98uE16682; Date: Wed, 20 Feb 2002 10:08:56 +0100 From: Andre Albsmeier To: Mike Meyer Cc: Andre Albsmeier , obrien@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/30908: [PATCH] Tweak ldd to provide more information if requested Message-ID: <20020220100856.A46545@curry.mchp.siemens.de> References: <200202170706.g1H76cd48244@freefall.freebsd.org> <20020219184251.A16331@curry.mchp.siemens.de> <15474.54765.509913.721832@guru.mired.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <15474.54765.509913.721832@guru.mired.org>; from mwm@mired.org on Tue, Feb 19, 2002 at 04:47:09PM -0600 X-Echelon: BND CIA NSA Mossad KGB MI6 IRA detonator nuclear assault strike X-RAVMilter-Version: 8.3.1(snapshot 20020109) (curry.mchp.siemens.de) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, 19-Feb-2002 at 16:47:09 -0600, Mike Meyer wrote: > Andre Albsmeier types: > > On Sat, 16-Feb-2002 at 23:06:38 -0800, obrien@FreeBSD.ORG wrote: > > > Synopsis: [PATCH] Tweak ldd to provide more information if requested > > > State-Changed-From-To: open->closed > > > State-Changed-By: obrien > > > State-Changed-When: Sat Feb 16 22:53:15 PST 2002 > > > State-Changed-Why: > > > Committed > > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=30908 > > Is there a chance for a MFC? > > Considering that the patch was developed and tested on -stable, there > should be a good one. But I think there's an n-day waiting period that > is prescribed for most changes, for some small value of n. Sure, I was just asking since normally in cases like this there could be found a MFC reminder and the PR is left open (suspended,...). This wasn't the case here so I didn't know if it was - simply forgotten - unwanted/impossible - wanted, but after an appropriate period in -current - ... Thanks, -Andre > > > -- > Mike Meyer http://www.mired.org/home/mwm/ > Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 1:18:33 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id E06A337B400 for ; Wed, 20 Feb 2002 01:18:27 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id g1K9IFc57528; Wed, 20 Feb 2002 01:18:15 -0800 (PST) (envelope-from obrien) Date: Wed, 20 Feb 2002 01:14:08 -0800 From: "David O'Brien" To: Andre Albsmeier Cc: Mike Meyer , freebsd-bugs@FreeBSD.ORG Subject: Re: bin/30908: [PATCH] Tweak ldd to provide more information if requested Message-ID: <20020220011408.A57501@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <200202170706.g1H76cd48244@freefall.freebsd.org> <20020219184251.A16331@curry.mchp.siemens.de> <15474.54765.509913.721832@guru.mired.org> <20020220100856.A46545@curry.mchp.siemens.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020220100856.A46545@curry.mchp.siemens.de>; from andre.albsmeier@mchp.siemens.de on Wed, Feb 20, 2002 at 10:08:56AM +0100 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Feb 20, 2002 at 10:08:56AM +0100, Andre Albsmeier wrote: > Sure, I was just asking since normally in cases like this there could > be found a MFC reminder and the PR is left open (suspended,...). This > wasn't the case here so I didn't know if it was I don't use "MFC after". I use my commit message inbox instead. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 1:32:57 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from goliath.siemens.de (goliath.siemens.de [192.35.17.28]) by hub.freebsd.org (Postfix) with ESMTP id EA66D37B41F; Wed, 20 Feb 2002 01:32:52 -0800 (PST) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by goliath.siemens.de (8.11.6/8.11.6) with ESMTP id g1K9Wop15243; Wed, 20 Feb 2002 10:32:51 +0100 (MET) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail1.siemens.de (8.11.6/8.11.6) with ESMTP id g1K9Wnp13141; Wed, 20 Feb 2002 10:32:49 +0100 (MET) Received: (from localhost) by curry.mchp.siemens.de (8.11.6/8.11.6) id g1K9WnE16980; Date: Wed, 20 Feb 2002 10:32:49 +0100 From: Andre Albsmeier To: "David O'Brien" Cc: Andre Albsmeier , Mike Meyer , freebsd-bugs@FreeBSD.ORG Subject: Re: bin/30908: [PATCH] Tweak ldd to provide more information if requested Message-ID: <20020220103249.A61201@curry.mchp.siemens.de> References: <200202170706.g1H76cd48244@freefall.freebsd.org> <20020219184251.A16331@curry.mchp.siemens.de> <15474.54765.509913.721832@guru.mired.org> <20020220100856.A46545@curry.mchp.siemens.de> <20020220011408.A57501@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020220011408.A57501@dragon.nuxi.com>; from obrien@FreeBSD.ORG on Wed, Feb 20, 2002 at 01:14:08AM -0800 X-Echelon: BND CIA NSA Mossad KGB MI6 IRA detonator nuclear assault strike X-RAVMilter-Version: 8.3.1(snapshot 20020109) (curry.mchp.siemens.de) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, 20-Feb-2002 at 01:14:08 -0800, David O'Brien wrote: > On Wed, Feb 20, 2002 at 10:08:56AM +0100, Andre Albsmeier wrote: > > Sure, I was just asking since normally in cases like this there could > > be found a MFC reminder and the PR is left open (suspended,...). This > > wasn't the case here so I didn't know if it was > > I don't use "MFC after". I use my commit message inbox instead. Ah, sorry, didn't know that. I was just asking since I am very interested in this thing :-) 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 Feb 20 1:40:33 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 94FC037B417 for ; Wed, 20 Feb 2002 01:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1K9e1M69517; Wed, 20 Feb 2002 01:40:01 -0800 (PST) (envelope-from gnats) Received: from newmx.estpak.ee (ld1.estpak.ee [194.126.101.98]) by hub.freebsd.org (Postfix) with ESMTP id DB73037B400 for ; Wed, 20 Feb 2002 01:39:32 -0800 (PST) Received: from myhakas.estpak.ee (myhakas.estpak.ee [194.126.115.54]) by newmx.estpak.ee (Postfix) with ESMTP id 36FBD5DF9E for ; Wed, 20 Feb 2002 10:38:22 +0200 (EET) Received: (from vallo@localhost) by myhakas.estpak.ee (8.11.6/8.11.6) id g1K9dTB78547; Wed, 20 Feb 2002 11:39:29 +0200 (EET) (envelope-from vallo) Message-Id: <200202200939.g1K9dTB78547@myhakas.estpak.ee> Date: Wed, 20 Feb 2002 11:39:29 +0200 (EET) From: Vallo Kallaste Reply-To: Vallo Kallaste To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/35138: -stable kernel crashes after 4.5-RC -> -stable update Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35138 >Category: kern >Synopsis: -stable kernel crashes after 4.5-RC -> -stable update >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 Feb 20 01:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Vallo Kallaste >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: FreeBSD irc.estpak.ee 4.5-STABLE FreeBSD 4.5-STABLE #0: Wed Feb 6 17:47:10 EET 2002 some@where.estpak.ee:/usr/src/sys/compile/IRC i386 >Description: After upgrading from 4.5-RC to -stable, we're getting crashes in a row. This is IPv6 enabled irc server with light load. Crashes are apparently random and not related to periods of irc activity. I'm sorry but debug kernel is missing. Stable has been too nice place to live half a year now 8-) hw.dc_quick: 1 if that matters. 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"... (no debugging symbols found)... IdlePTD at phsyical address 0x00338000 initial pcb at physical address 0x002a5ae0 panicstr: from debugger panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0xc13c0000 fault code = supervisor read, page not present instruction pointer = 0x8:0xc01aae8f stack pointer = 0x10:0xc0285ddc frame pointer = 0x10:0xc0285e10 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = Idle interrupt mask = panic: from debugger Fatal trap 12: page fault while in kernel mode fault virtual address = 0xc13c0000 fault code = supervisor read, page not present instruction pointer = 0x8:0xc01aae8f stack pointer = 0x10:0xc0285ddc frame pointer = 0x10:0xc0285e10 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = Idle interrupt mask = panic: from debugger Uptime: 5h13m3s dumping to dev #ad/0x20001, offset 10704 dump ata0: resetting devices .. done 255 254 253 252 251 250 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 231 230 229 228 227 226 225 224 223 222 221 220 219 218 217 216 215 214 213 212 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 194 193 192 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 175 174 173 172 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 156 155 154 153 152 151 150 149 148 147 146 145 144 143 142 141 140 139 138 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 0xc013ef1a in dumpsys () (kgdb) bt #0 0xc013ef1a in dumpsys () #1 0xc013eceb in boot () #2 0xc013f129 in panic () #3 0xc0120f9d in db_panic () #4 0xc0120f3d in db_command () #5 0xc0121002 in db_command_loop () #6 0xc012311f in db_trap () #7 0xc023aea2 in kdb_trap () #8 0xc0247d08 in trap_fatal () #9 0xc02479e1 in trap_pfault () #10 0xc0247587 in trap () #11 0xc01aae8f in nd6_lookup () #12 0xc01ab059 in nd6_is_addr_neighbor () #13 0xc01ac087 in nd6_output () #14 0xc01a477d in ip6_output () #15 0xc0191253 in tcp_output () #16 0xc0194657 in tcp_timer_rexmt () #17 0xc0144a35 in softclock () (kgdb) q DMESG: Copyright (c) 1992-2002 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.5-STABLE #0: Wed Feb 6 17:47:10 EET 2002 some@where.estpak.ee:/usr/src/sys/compile/IRC Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 549950776 Hz CPU: Pentium III/Pentium III Xeon/Celeron (549.95-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x673 Stepping = 3 Features=0x383f9ff real memory = 268419072 (262128K bytes) avail memory = 257949696 (251904K bytes) Preloaded elf kernel "kernel" at 0xc0319000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc031909c. VESA: v1.2, 2048k memory, flags:0x0, mode table:0xc00c49d2 (c00049d2) VESA: ATI MACH64 Pentium Pro MTRR support enabled Using $PIR table, 8 entries at 0xc00f0e70 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0xd800-0xd80f at device 4.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 pci0: at 4.2 irq 11 chip1: port 0xe800-0xe80f at device 4.3 on pci0 pci0: at 9.0 dc0: port 0xb800-0xb87f mem 0xe1800000-0xe180007f irq 11 at device 13.0 on pci0 dc0: Ethernet address: 00:80:ad:83:5b:25 miibus0: on dc0 dcphy0: on miibus0 dcphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto orm0:
I have discovered a bug in the firmware used on the tigon 2 gigabit ethernet card, and have worked with 3com to resolve the problem. They have provided me with a new firmware image version 12.4.18 that fixes the problem. I've included the steps to reproduce the problem, however since we are using a different OS than freeBSD, I do not have a setup to apply and test this fix on freeBSD. I am loathe to check-in a fix before testing it, so I'm wondering if anyone would be willing to do this for me. I have found a possible bug report in the system that may be fixed by the new firmware. Specifically
 
Change on 2000/07/13 by wpaul@cvs2p4
 
        Temporarily disable support for hardware checksum offload in the Tigon
        driver. According to dg,
ftp.freesoftware.com will begin transmitting
        packets with bogus checksums after about 12 hours under load and won't
        stop until the interface is reset. I'm not at all sure how to track this
        bug down right now since it's most likely in the firmware, and we want
        this to at least be stable for the 4.1 release.
 
Specifically the problem occurs if HW checksum offload is enabled, and the following occurs (high level description):
 
  • Packet fragmentation has occured elsewhere in the network .
  • Packet arrives on interface and is not destined for the freeBSD machine. freeBSD must be configured to forward such packets.
  • Forwarded with only the IP header modified. The TCP/UDP checksum is not re-calculated because it has not changed
  • There was an assumption on the network card that even if not calculating TCP/UDP checksum, that fragments must be presented to the network card in order, and must be terminated with a last fragment command
  • If this requirement is not met, the 3com firmware goes into a state where it will never calculate the TCP/UDP checksum from that point forward. The only fix was to reset the card.
  • This fragment order reliance is only necessary when the card needs to calculate the TCP/UDP checksum, so 3com has removed this requirement if TCP/UDP checksums are not calculated. Since packets that are forwarded do not need their TCP/UDP checksum recalculated, the problem is then fixed.
If anyone would like more detailed info, I'd be happy to provide it.
 
Gary
Senior System Software Engineer
CacheFlow
 
 
------_=_NextPart_001_01C1BA1C.D54BF4A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 8:30:38 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B8FD037B436 for ; Wed, 20 Feb 2002 08:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KGU3I89005; Wed, 20 Feb 2002 08:30:03 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Feb 2002 08:30:03 -0800 (PST) Message-Id: <200202201630.g1KGU3I89005@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: bin/11114: make(1) does not work as documented with .POSIX: target Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/11114; it has been noted by GNATS. From: "Crist J. Clark" To: Jens Schweikhardt Cc: bug-followup@freebsd.org Subject: Re: bin/11114: make(1) does not work as documented with .POSIX: target Date: Wed, 20 Feb 2002 08:23:16 -0800 The issue here is that the .POSIX target will not have its effect until the makefile containing it is read. /usr/share/mk/sys.mk is the first file read. make(1) doesn't know about anything that you have set in your makefile yet. I have no idea if that is a bug or feature. What do the standards say (if anything)? -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 8:30:50 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DCA837B43D for ; Wed, 20 Feb 2002 08:30:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KGU7D89019; Wed, 20 Feb 2002 08:30:07 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Feb 2002 08:30:07 -0800 (PST) Message-Id: <200202201630.g1KGU7D89019@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Luigi Rizzo Subject: Re: kern/34639: IPFW skipto works too slow Reply-To: Luigi Rizzo Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/34639; it has been noted by GNATS. From: Luigi Rizzo To: freebsd-gnats-submit@freebsd.org Cc: wawa@yandex.team.ru, billf@mu.org Subject: Re: kern/34639: IPFW skipto works too slow Date: Wed, 20 Feb 2002 08:25:22 -0800 Vladimir is indeed right, the code to cache skipto targets somehow is not there! A fix is attached below, I should commit it briefly as I have a chance to test it. thanks for the report luigi > lcvs diff -u ip_fw.c Index: ip_fw.c =================================================================== RCS file: /home/xorpc/u2/freebsd/src/sys/netinet/ip_fw.c,v retrieving revision 1.180 diff -u -r1.180 ip_fw.c --- ip_fw.c 10 Feb 2002 22:22:05 -0000 1.180 +++ ip_fw.c 20 Feb 2002 16:05:38 -0000 @@ -1512,11 +1512,13 @@ return(f->fw_divert_port | IP_FW_PORT_TEE_FLAG); #endif case IP_FW_F_SKIPTO: /* XXX check */ - f = f->next_rule_ptr ? f->next_rule_ptr : - lookup_next_rule(f) ; + if (f->next_rule_ptr == NULL) + f->next_rule_ptr = lookup_next_rule(f) ; + f = f->next_rule_ptr; if (!f) goto dropit; goto again ; + case IP_FW_F_PIPE: case IP_FW_F_QUEUE: *flow_id = f; /* XXX set flow id */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 8:40:16 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A877937B416 for ; Wed, 20 Feb 2002 08:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KGe1Q90626; Wed, 20 Feb 2002 08:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 01A0837B416 for ; Wed, 20 Feb 2002 08:39:36 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KGdZW90558; Wed, 20 Feb 2002 08:39:35 -0800 (PST) (envelope-from nobody) Message-Id: <200202201639.g1KGdZW90558@freefall.freebsd.org> Date: Wed, 20 Feb 2002 08:39:35 -0800 (PST) From: marco mancini To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/35145: cannot open /etc/termcap and no terminal database found Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35145 >Category: misc >Synopsis: cannot open /etc/termcap and no terminal database found >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 20 08:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: marco mancini >Release: FreeBSD/i386 >Organization: yahwood.com srl >Environment: csh: cannot open /etc/termcap csh: using dumb terminal settings >Description: pls. help me, when i use: su - cannot open /etc/termcap vi - no terminal database found >How-To-Repeat: pls. help me, when i use: su - cannot open /etc/termcap vi - no terminal database found >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 Feb 20 8:52:24 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C6FC37B404; Wed, 20 Feb 2002 08:52:16 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KGhAl91097; Wed, 20 Feb 2002 08:43:10 -0800 (PST) (envelope-from cjc) Date: Wed, 20 Feb 2002 08:43:10 -0800 (PST) From: Message-Id: <200202201643.g1KGhAl91097@freefall.freebsd.org> To: cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/26943: [patch] description of :C modifier is misplaced in make.1 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [patch] description of :C modifier is misplaced in make.1 Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: cjc Responsible-Changed-When: Wed Feb 20 08:42:11 PST 2002 Responsible-Changed-Why: The docs guys can take care of this, please? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=26943 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 9: 0:21 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BD33A37B402 for ; Wed, 20 Feb 2002 09:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KH01I94296; Wed, 20 Feb 2002 09:00:01 -0800 (PST) (envelope-from gnats) Received: from fafoe.dyndns.org (chello212186121237.14.vie.surfer.at [212.186.121.237]) by hub.freebsd.org (Postfix) with ESMTP id 9E77237B400; Wed, 20 Feb 2002 08:51:30 -0800 (PST) Received: by stefan.fafoe (Postfix, from userid 1001) id A09F2EA17; Wed, 20 Feb 2002 17:50:28 +0100 (CET) Message-Id: <20020220165028.A09F2EA17@stefan.fafoe> Date: Wed, 20 Feb 2002 17:50:28 +0100 (CET) From: Stefan Farfeleder Reply-To: Stefan Farfeleder To: FreeBSD-gnats-submit@freebsd.org Cc: freebsd-emulation@freebsd.org X-Send-Pr-Version: 3.113 Subject: i386/35147: [PATCH] Two little fixes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35147 >Category: i386 >Synopsis: [PATCH] Two little fixes >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 Feb 20 09:00:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Stefan Farfeleder >Release: FreeBSD CURRENT >Organization: >Environment: System: FreeBSD stefan.fafoe 4.5-STABLE FreeBSD 4.5-STABLE #5: Sun Feb 17 00:06:38 CET 2002 root@stefan.fafoe:/usr/obj/usr/src/sys/MORDOR i386 >Description: The first patch fixes the emulation of machine instructions with the 'rep' prefix. The code failed to set the cx register to 0. The second one tries to avoid a seg-fault when a dos programs calls int 10h function 0. If doscmd wasn't invoked with -x, it will currently dump core at tty.c:2201 in the call to XAllocColor because dpy is NULL. >How-To-Repeat: >Fix: Index: src/usr.bin/doscmd/cpu.c =================================================================== RCS file: /home/ncvs/src/usr.bin/doscmd/cpu.c,v retrieving revision 1.5 diff -u -r1.5 cpu.c --- src/usr.bin/doscmd/cpu.c 2 Dec 2001 13:44:05 -0000 1.5 +++ src/usr.bin/doscmd/cpu.c 20 Feb 2002 16:44:36 -0000 @@ -276,6 +276,7 @@ R_IP = --ip; /* Move IP back to the 'rep' instruction. */ return -1; } + R_CX = 0; break; default: /* Unknown instruction, get out of here and let trap.c:sigbus() Index: src/usr.bin/doscmd/int10.c =================================================================== RCS file: /home/ncvs/src/usr.bin/doscmd/int10.c,v retrieving revision 1.6 diff -u -r1.6 int10.c --- src/usr.bin/doscmd/int10.c 12 Oct 2001 10:31:00 -0000 1.6 +++ src/usr.bin/doscmd/int10.c 20 Feb 2002 16:44:13 -0000 @@ -56,6 +56,8 @@ switch (R_AH) { case 0x00: /* Set display mode */ + if (!xmode) + goto unsupported; init_mode(R_AL); break; case 0x01: /* Define cursor */ >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 Feb 20 9:20:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 53BBE37B419 for ; Wed, 20 Feb 2002 09:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KHK2f01503; Wed, 20 Feb 2002 09:20:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CC47C37B402 for ; Wed, 20 Feb 2002 09:15:55 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KHFtD00748; Wed, 20 Feb 2002 09:15:55 -0800 (PST) (envelope-from nobody) Message-Id: <200202201715.g1KHFtD00748@freefall.freebsd.org> Date: Wed, 20 Feb 2002 09:15:55 -0800 (PST) From: frank bretschneider To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/35148: ppp/nat-problems after cvs update 4.3 -> 4.5 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35148 >Category: bin >Synopsis: ppp/nat-problems after cvs update 4.3 -> 4.5 >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 Feb 20 09:20:02 PST 2002 >Closed-Date: >Last-Modified: >Originator: frank bretschneider >Release: 4.5 stable >Organization: freestyle web services >Environment: FreeBSD style 4.5-RELEASE FreeBSD 4.5-RELEASE #9: Wed Feb 20 13:53:59 CET 2002 root@style:/usr/obj/usr/src/sys/style i386 >Description: after the cvsupdate from 4.3 to 4.5 i have problems reading some websites. lynx www.fernwww.de works .... lynx www.gmx.de does not work .... timeout !! lynx www.consors.de does not work .... timeout !! but "traceroute www.gmx.de" works and also > telnet www.gmx.de 80 > HEAD HTTP/1.0 400 Bad Request

Bad Request

Your browser sent a request that this server could not understand.

client sent invalid HTTP/0.9 request: HEAD HTTP/1.0


Apache/1.3.20 Server at www16.gmx.net Port 80
i am using PPPoE and everything works fine except that. it looks like ppp has problems with reverse-proxies. i tried two different kernels : with and without firewall i run ppp as root "/usr/sbin/ppp -quiet -ddial dsl" tcpdump show that the i.e. gmx-server sends some kind of response but then nothing happens. >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 Wed Feb 20 9:22:20 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B16EE37B402; Wed, 20 Feb 2002 09:22:16 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KHI0t01134; Wed, 20 Feb 2002 09:18:00 -0800 (PST) (envelope-from luigi) Date: Wed, 20 Feb 2002 09:18:00 -0800 (PST) From: Message-Id: <200202201718.g1KHI0t01134@freefall.freebsd.org> To: wawa@yandex-team.ru, luigi@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/34639: IPFW skipto works too slow Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: IPFW skipto works too slow State-Changed-From-To: open->closed State-Changed-By: luigi State-Changed-When: Wed Feb 20 09:16:32 PST 2002 State-Changed-Why: Committed the last patch, which fixes the problem. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=34639 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 10:30: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AF4037B404 for ; Wed, 20 Feb 2002 10:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KIU1e15692; Wed, 20 Feb 2002 10:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D753237B419 for ; Wed, 20 Feb 2002 10:20:12 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KIKCJ14506; Wed, 20 Feb 2002 10:20:12 -0800 (PST) (envelope-from nobody) Message-Id: <200202201820.g1KIKCJ14506@freefall.freebsd.org> Date: Wed, 20 Feb 2002 10:20:12 -0800 (PST) From: Rex Buddenberg To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/35150: FreeBSD 4.5 won't install ... out of inodes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35150 >Category: misc >Synopsis: FreeBSD 4.5 won't install ... out of inodes >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 20 10:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Rex Buddenberg >Release: 4.5-stable >Organization: Naval Postgraduate School >Environment: TI TravelMate, Intel 133MHz CPU, 24M RAM, IBM DPRA-21215 hard drive (1.2 G capacity) >Description: Installation (over ftp) crashes partway through. Screen complaint is inability to make symbolic links, out of inodes. The disk is only about half full, no slices pushing available capacity. Problem recurred on two different disk drives, same machine. I did not get this problem with a 4.5 installation on a Keynote laptop with 8G drive ... that installation was normal. FreeBSD 4.4 installation works normally on the above-described setup (am finishing that up right now). Therefore, appears to be a directory layout problem in 4.5 >How-To-Repeat: ftp install on the machines >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 Feb 20 10:40:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C776F37B400 for ; Wed, 20 Feb 2002 10:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KIe2t17630; Wed, 20 Feb 2002 10:40:02 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Feb 2002 10:40:02 -0800 (PST) Message-Id: <200202201840.g1KIe2t17630@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "."@babolo.ru Subject: Re: kern/35136: VLAN & bridging & MTU Reply-To: "."@babolo.ru Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/35136; it has been noted by GNATS. From: "."@babolo.ru To: algr@rocc.ru (Alexander Grebennikov) Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/35136: VLAN & bridging & MTU Date: Wed, 20 Feb 2002 21:44:53 +0300 (MSK) Alexander Grebennikov writes: > > >Number: 35136 > >Category: kern > >Synopsis: VLAN & bridging & MTU > >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 Feb 20 00:20:01 PST 2002 > >Closed-Date: > >Last-Modified: > >Originator: Alexander Grebennikov > >Release: tried many up to 4.4-RELEASE > >Organization: > RCC > >Environment: > FreeBSD x2.rocc.ru 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Thu Dec 20 11:11:47 MSK 2001 > > >Description: > I'm trying to bridge traffic between 2 VLANs using FreeBSD in BRIDGE mode. > Channel between 2 VLANS going through G.703. > There are 2 G.703<-->Ethernet converters at both sides. > Converters are modems. These modems cannot pass VLAN packets because VLAN packets are 4 bytes large then usual. > What i did: setting up 1-st interface on FreeBSD with MTU=1500 , second interface ( to converter) with MTU=1400. Started BRIDGE mode. > Packets not fragmented passing FreeBSD. :( > And still getting out to converter with MTU=1500 via ethernet interface with MTU=1400 !! I think it's a bug ?? > > >How-To-Repeat: > Need 3 computers: > 2 of them - usual PCs with 1 Ethernet card each. > 3-rd = FreeBSD in Bridge mode with 2 ethernet cards. 1 card must be setted MTU=1500. Second card - MTU=1400 > E.g. > PC1 <--(MTU_1500)-->FreeBSD_BRIDGE<--(MTU_1400)--> PC2 > Ping PC2 from PC1 with packet size=4000 byes (for example) > Start to sniff packets from PC1 on PC2. They should have maximum size=1400 bytes ! But they will have size =1500 ! That is bug. As far as I remember ;-0 level 3 only can fragment packets. So use routing, not bridging (level 2) to fragment packets -- @BABOLO http://links.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 11: 0:30 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 01BC837B419 for ; Wed, 20 Feb 2002 11:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KJ01520749; Wed, 20 Feb 2002 11:00:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C053437B417 for ; Wed, 20 Feb 2002 10:53:58 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KIrwl19976; Wed, 20 Feb 2002 10:53:58 -0800 (PST) (envelope-from nobody) Message-Id: <200202201853.g1KIrwl19976@freefall.freebsd.org> Date: Wed, 20 Feb 2002 10:53:58 -0800 (PST) From: Eric Anderson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/35151: High NFSD load in FreeBSD 4.5R Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35151 >Category: misc >Synopsis: High NFSD load in FreeBSD 4.5R >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 20 11:00:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Eric Anderson >Release: FreeBSD 4.5R (from ISO) >Organization: Centaur Technology >Environment: FreeBSD tesla.centtech.com 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Mon Feb 18 09:54:43 CST 2002 root@tesla.centtech.com:/usr/obj/usr/src/sys/TESLA i386 >Description: I have a FreeBSD 4.5R NFS server, and the nfsd is slamming the cpu, for no apparent reason. I have Linux (RedHat 6.2, 7.2) and Solaris (2.7, 2.6) clients accessing it via NFS. It is part of an NIS domain. I have had no problems in the past, and had FreeBSD 4.4R on this machine and had NO TROUBLES until I reinstalled and put 4.5R on it. I can not get the load down at all, and even some clients timeout while talking to this server. Here is a clipped portion from a top: ---------------- last pid: 328; load averages: 1.00, 1.02, 1.00 up 18+23:27:18 09:07:20 53 processes: 3 running, 50 sleeping CPU states: 18.3% user, 0.0% nice, 80.5% system, 1.2% interrupt, 0.0% idle Mem: 21M Active, 747M Inact, 182M Wired, 52M Cache, 112M Buf, 1664K Free Swap: 2048M Total, 164K Used, 2048M Free PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND 30358 root 61 0 364K 160K RUN 165.4H 94.43% 94.43% nfsd 30359 root 2 0 356K 152K RUN 32:39 2.93% 2.93% nfsd 30360 root 2 0 356K 152K nfsd 0:49 0.00% 0.00% nfsd 129 root 2 0 2512K 1524K select 0:38 0.00% 0.00% sendmail 80 root 2 0 1300K 748K select 0:35 0.00% 0.00% ntpd 23865 root 2 0 1868K 1032K select 0:21 0.00% 0.00% nmbd 87 root 2 0 720K 508K select 0:14 0.00% 0.00% mountd 30361 root 2 0 356K 152K nfsd 0:12 0.00% 0.00% nfsd 82 daemon 2 0 960K 560K select 0:11 0.00% 0.00% portmap 30362 root 2 0 356K 152K nfsd 0:07 0.00% 0.00% nfsd 115 root 2 0 1160K 756K select 0:07 0.00% 0.00% amd ----------------- Here is some other info about the box: machine has dual nics, and is serving data on both ports. in rc.conf: nfs_reserved_port_only="YES" nfs_server_enable="YES" nfs_server_flags="-h 10.177.178.51 -h 10.177.176.40 -u -t -n 20" and in sysctl.conf: vfs.nfs.gatherdelay=0 vfs.nfs.async=1 vfs.vmiodirenable=1 kern.ipc.maxsockbuf=2097152 kern.ipc.somaxconn=8192 kern.ipc.maxsockets=16424 kern.maxfiles=65536 kern.maxfilesperproc=32768 net.inet.tcp.rfc1323=1 net.inet.tcp.delayed_ack=0 net.inet.tcp.sendspace=65535 net.inet.tcp.recvspace=65535 net.inet.udp.recvspace=65535 net.inet.udp.maxdgram=57344 net.local.stream.recvspace=65535 net.local.stream.sendspace=65535 net.inet.ip.forwarding=1 >How-To-Repeat: Build an NFS server using FreeBSD 4.5R. The machine should have 2 nics, and exporting filesystems to be nfs mounted (automounted) via linux/freebsd/solaris boxes. The nfsd load immediately jumps up. >Fix: None! >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 Feb 20 11:30: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 029ED37B405 for ; Wed, 20 Feb 2002 11:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KJU1Q28426; Wed, 20 Feb 2002 11:30:01 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Feb 2002 11:30:01 -0800 (PST) Message-Id: <200202201930.g1KJU1Q28426@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Alexey Zelkin Subject: Re: bin/35070: math(3) references section "3m", etc. Reply-To: Alexey Zelkin Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35070; it has been noted by GNATS. From: Alexey Zelkin To: Tim Robbins Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/35070: math(3) references section "3m", etc. Date: Wed, 20 Feb 2002 21:30:36 +0200 On Sat, Feb 16, 2002 at 05:48:47PM +1100, Tim Robbins wrote: > > >Number: 35070 > >Category: bin > >Synopsis: math(3) references section "3m", etc. > math(3) references section 3m, for example, sin.3m. The table doesn't line > up properly. Most of the notes in the manual page is very much out of date. > IEEE floating point arithmetic is far more widely implemented than VAX > anything. > > For example: > The codes in 4.3 BSD's libm for machines that conform to > IEEE 754 are intended primarily for the National Semi. > 32081 and WTL 1164/65. To use these codes with the Intel > or Zilog chips, or with the Apple Macintosh or ELXSI 6400, > ... > > >How-To-Repeat: > Obvious. > >Fix: > The manual page could do with a rewrite (it's still using -man macro set). > I am volunteering to do this, just ask. Clack! Trap is closed! PS: Do it! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 11:41:26 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1868337B431 for ; Wed, 20 Feb 2002 11:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KJe1b31864; Wed, 20 Feb 2002 11:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C59CF37B402 for ; Wed, 20 Feb 2002 11:35:48 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KJZm130870; Wed, 20 Feb 2002 11:35:48 -0800 (PST) (envelope-from nobody) Message-Id: <200202201935.g1KJZm130870@freefall.freebsd.org> Date: Wed, 20 Feb 2002 11:35:48 -0800 (PST) From: Clint Olsen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/35153: Traceroute seems DOA on FreeBSD 4.5 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35153 >Category: i386 >Synopsis: Traceroute seems DOA on FreeBSD 4.5 >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 Feb 20 11:40:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Clint Olsen >Release: 4.5 >Organization: >Environment: FreeBSD poly.0lsen.net 4.5-RELEASE FreeBSD 4.5-RELEASE #2: Fri Feb 15 01:02:59 PST 2002 root@poly.0lsen.net:/usr/obj/usr/src/sys/POLY i386 >Description: Whenever I run traceroute (regardless of user), I get unreachable destinations. I am using a Linksys firewall, but all my other services seem to find their way out to the Internet just fine. traceroute rt.njabl.org traceroute to rt.njabl.org (209.208.0.15), 64 hops max, 40 byte packets 1 * * * 2 * * * 3 * * * 4 * * * >How-To-Repeat: Run traceroute to any known host. >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 Feb 20 12:10:18 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AB9FB37B41C for ; Wed, 20 Feb 2002 12:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KKA1641450; Wed, 20 Feb 2002 12:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35A7E37B404 for ; Wed, 20 Feb 2002 12:04:13 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KK4DG37093; Wed, 20 Feb 2002 12:04:13 -0800 (PST) (envelope-from nobody) Message-Id: <200202202004.g1KK4DG37093@freefall.freebsd.org> Date: Wed, 20 Feb 2002 12:04:13 -0800 (PST) From: "Eric S. Van Gyzen" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: gnu/35156: suggestion: hard link /usr/bin/awk to /usr/bin/gawk Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35156 >Category: gnu >Synopsis: suggestion: hard link /usr/bin/awk to /usr/bin/gawk >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: Wed Feb 20 12:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Eric S. Van Gyzen >Release: 4.4-STABLE >Organization: >Environment: N/A >Description: FreeBSD's awk is GNU awk, but the gawk command doesn't exist (in the base system). Some Linux binaries assume that "gawk" exists. Consider linking /usr/bin/awk to /usr/bin/gawk. Granted, this would conflict with ports/lang/gawk, but perhaps the port should be removed in favor of keeping src/contrib/awk up to date. >How-To-Repeat: N/A >Fix: N/A >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 Feb 20 12:30: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D1D7E37B405 for ; Wed, 20 Feb 2002 12:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KKU1v44684; Wed, 20 Feb 2002 12:30:01 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Feb 2002 12:30:01 -0800 (PST) Message-Id: <200202202030.g1KKU1v44684@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: gnu/35156: suggestion: hard link /usr/bin/awk to /usr/bin/gawk Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR gnu/35156; it has been noted by GNATS. From: Peter Pentchev To: "Eric S. Van Gyzen" Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: gnu/35156: suggestion: hard link /usr/bin/awk to /usr/bin/gawk Date: Wed, 20 Feb 2002 20:43:56 +0200 On Wed, Feb 20, 2002 at 12:04:13PM -0800, Eric S. Van Gyzen wrote: > > >Number: 35156 > >Category: gnu > >Synopsis: suggestion: hard link /usr/bin/awk to /usr/bin/gawk > >Description: > FreeBSD's awk is GNU awk, but the gawk command doesn't exist (in the > base system). Some Linux binaries assume that "gawk" exists. > Consider linking /usr/bin/awk to /usr/bin/gawk. Granted, this would > conflict with ports/lang/gawk, but perhaps the port should be removed > in favor of keeping src/contrib/awk up to date. Well, FreeBSD's awk is GNU awk in 4.x only now; Bell Labs' awk was imported into -CURRENT a while ago. So, this hardlink should only exist in 4.x, which makes it a somewhat less than perfect solution. In any case, FreeBSD's (GNU) awk in 4.x is a bit outdated, so if people really have scripts that require (or assume) GNU awk, it is up to said people to make the decision - symlink /usr/bin/gawk -> awk on their system (symlink for the benefit of survival over the next installworld) or install ports/lang/gawk and be done with it :) At least, this is my personal opinion; others are welcome to voice theirs. G'luck, Peter -- Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 "yields falsehood, when appended to its quotation." yields falsehood, when appended to its quotation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 15: 9:19 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id A1BE037B41A for ; Wed, 20 Feb 2002 15:09:11 -0800 (PST) Received: (from ken@localhost) by panzer.kdm.org (8.11.6/8.9.1) id g1KN93L14832; Wed, 20 Feb 2002 16:09:03 -0700 (MST) (envelope-from ken) Date: Wed, 20 Feb 2002 16:09:03 -0700 From: "Kenneth D. Merry" To: "Tomic, Gary" Cc: "'freebsd-bugs@FreeBSD.ORG'" Subject: Re: Tigon 2 network card bug fixed, but unsure how to proceed Message-ID: <20020220160903.A14774@panzer.kdm.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from gary.tomic@cacheflow.com on Wed, Feb 20, 2002 at 06:42:34AM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Feb 20, 2002 at 06:42:34 -0800, Tomic, Gary wrote: > I have discovered a bug in the firmware used on the tigon 2 gigabit ethernet > card, and have worked with 3com to resolve the problem. They have provided > me with a new firmware image version 12.4.18 that fixes the problem. I've > included the steps to reproduce the problem, however since we are using a > different OS than freeBSD, I do not have a setup to apply and test this fix > on freeBSD. I am loathe to check-in a fix before testing it, so I'm > wondering if anyone would be willing to do this for me. I have found a > possible bug report in the system that may be fixed by the new firmware. > Specifically I'm interested in taking a look at it. Can you actually supply 12.4.18 source? The current firmware we're shipping with FreeBSD is 12.4.11 with some fixes from 12.4.13, since 12.4.13 had some serious autonegotiation problems with the 1000baseT nics. We really need the source, since at least my zero copy patches make modifications to the firmware to enable header splitting. If we have to rely on a firmware image (as opposed to the firmware source), we won't be able to bring the zero copy stuff forward as well. 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 Wed Feb 20 15:12:18 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A20DF37B404; Wed, 20 Feb 2002 15:12:16 -0800 (PST) Received: (from billf@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1KN9P782781; Wed, 20 Feb 2002 15:09:25 -0800 (PST) (envelope-from billf) Date: Wed, 20 Feb 2002 15:09:25 -0800 (PST) From: Message-Id: <200202202309.g1KN9P782781@freefall.freebsd.org> To: clint@0lsen.net, billf@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/35153: Traceroute seems DOA on FreeBSD 4.5 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Traceroute seems DOA on FreeBSD 4.5 State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Wed Feb 20 15:08:08 PST 2002 State-Changed-Why: pilot error, traceroute works fine. please send questions to questions@FreeBSD.org http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35153 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 16:50:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E99637B404 for ; Wed, 20 Feb 2002 16:50:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1L0o6J01638; Wed, 20 Feb 2002 16:50:06 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Feb 2002 16:50:06 -0800 (PST) Message-Id: <200202210050.g1L0o6J01638@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Dickson, Brian" Subject: RE: Re: i386/25463: PS/2 mouse sync problems with KVM switch - /d ev/sysmouse and /dev/psm0 Reply-To: "Dickson, Brian" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/25463; it has been noted by GNATS. From: "Dickson, Brian" To: "'freebsd-gnats-submit@FreeBSD.org'" Cc: Subject: RE: Re: i386/25463: PS/2 mouse sync problems with KVM switch - /d ev/sysmouse and /dev/psm0 Date: Wed, 20 Feb 2002 12:37:11 -0500 This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C1BA35.39EF1F50 Content-Type: text/plain; charset="iso-8859-1" -----Original Message----- From: Dickson, Brian Sent: Wednesday, February 13, 2002 2:44 PM To: 'freebsd-gnats-submit@FreeBSD.org'; 'brian215@netscape.net' Subject: Re: i386/25463: PS/2 mouse sync problems with KVM switch - /dev/sysmouse and /dev/psm0 No, suggested work-around did not work. I eventually did the following: - returned KVM to vendor - purchased PS2-to-USB keyboard adapter dongle - purchased USB switch - put both keyboard and mouse (now both USB) on USB hub (integrated in my monitor) which is connected to USB switch So, when I need to switch V, K+M, I hit A/B button on my two-input monitor, and hit a button on the USB switch. This works, but is significantly constrained (ie, limited to number of video inputs on monitor; limited to USB keyboards/mice). It would be nice to see the problem really resolved, but I won't lose sleep (or productivity) over it, since it no longer affects me. Brian ------_=_NextPart_001_01C1BA35.39EF1F50 Content-Type: text/html; charset="iso-8859-1"
 
-----Original Message-----
From: Dickson, Brian
Sent: Wednesday, February 13, 2002 2:44 PM
To: 'freebsd-gnats-submit@FreeBSD.org'; 'brian215@netscape.net'
Subject: Re: i386/25463: PS/2 mouse sync problems with KVM switch - /dev/sysmouse and /dev/psm0

No, suggested work-around did not work.
 
I eventually did the following:
- returned KVM to vendor
- purchased PS2-to-USB keyboard adapter dongle
- purchased USB switch
- put both keyboard and mouse (now both USB) on USB hub (integrated in my monitor) which is connected to USB switch
 
So, when I need to switch V, K+M, I hit A/B button on my two-input monitor, and hit a button on the USB switch.
 
This works, but is significantly constrained (ie, limited to number of video inputs on monitor; limited to USB keyboards/mice).
 
It would be nice to see the problem really resolved, but I won't lose sleep (or productivity) over it, since it no longer affects me.
 
Brian
------_=_NextPart_001_01C1BA35.39EF1F50-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 17:20:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 55D1637B417 for ; Wed, 20 Feb 2002 17:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1L1K1c09335; Wed, 20 Feb 2002 17:20:01 -0800 (PST) (envelope-from gnats) Received: from disflux.dhs.org (tconl90110.tconl.com [204.26.90.110]) by hub.freebsd.org (Postfix) with ESMTP id 2EB5537B419 for ; Wed, 20 Feb 2002 17:18:22 -0800 (PST) Received: (from phrac@localhost) by disflux.dhs.org (8.11.6/8.11.6) id g1L1JOM00648; Wed, 20 Feb 2002 19:19:24 -0600 (CST) (envelope-from phrac) Message-Id: <200202210119.g1L1JOM00648@disflux.dhs.org> Date: Wed, 20 Feb 2002 19:19:24 -0600 (CST) From: phrac Reply-To: phrac To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: misc/35163: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35163 >Category: misc >Synopsis: >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Feb 20 17:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: phrac >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD disflux.dhs.org 4.5-STABLE FreeBSD 4.5-STABLE #0: Sun Feb 17 06:57:42 CST 2002 root@:/usr/obj/usr/src/sys/dekay i386 >Description: When running portmap with an illegal option, it displays a list of available options. Missing from this list is the -h option, which is documented in the man pages. >How-To-Repeat: [phrac@disflux: ~]$ portmap -h portmap: option requires an argument -- h usage: portmap [-dv] [phrac@disflux: ~]$ >Fix: --- portmap.diff begins here --- --- portmap.c.orig Wed Feb 20 17:37:13 2002 +++ portmap.c Wed Feb 20 16:48:01 2002 @@ -239,7 +239,7 @@ static void usage() { - fprintf(stderr, "usage: portmap [-dv]\n"); + fprintf(stderr, "usage: portmap [-dv -h ]\n"); exit(1); } --- portmap.diff ends here --- >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 Feb 20 19:20: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 23E0437B416 for ; Wed, 20 Feb 2002 19:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1L3K1O55842; Wed, 20 Feb 2002 19:20:01 -0800 (PST) (envelope-from gnats) Received: from disflux.dhs.org (tconl90110.tconl.com [204.26.90.110]) by hub.freebsd.org (Postfix) with ESMTP id 07BEB37B416 for ; Wed, 20 Feb 2002 19:19:51 -0800 (PST) Received: (from phrac@localhost) by dekay.disflux.org (8.11.6/8.11.6) id g1L120K00484; Wed, 20 Feb 2002 19:02:00 -0600 (CST) (envelope-from phrac) Message-Id: <200202210102.g1L120K00484@dekay.disflux.org> Date: Wed, 20 Feb 2002 19:02:00 -0600 (CST) From: phrac Reply-To: phrac To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: misc/35164: no -h option listed for portmap Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35164 >Category: misc >Synopsis: no -h option listed for portmap >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Feb 20 19:20:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: phrac >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD dekay.disflux.org 4.5-STABLE FreeBSD 4.5-STABLE #0: Sun Feb 17 06:57:42 CST 2002 root@:/usr/obj/usr/src/sys/dekay i386 >Description: when giving a bad option to portmap, there is no -h option listed in the command line help, although there is an -h option listed in the man page. >How-To-Repeat: [phrac@dekay: ~]$ portmap -h portmap: option requires an argument -- h usage: portmap [-dv] >Fix: --- portmap.diff begins here --- --- portmap.c.orig Wed Feb 20 17:37:13 2002 +++ portmap.c Wed Feb 20 16:48:01 2002 @@ -239,7 +239,7 @@ static void usage() { - fprintf(stderr, "usage: portmap [-dv]\n"); + fprintf(stderr, "usage: portmap [-dv -h ]\n"); exit(1); } --- portmap.diff ends here --- >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 Feb 20 19:50:21 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A5B4337B400 for ; Wed, 20 Feb 2002 19:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1L3o1E59014; Wed, 20 Feb 2002 19:50:01 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Feb 2002 19:50:01 -0800 (PST) Message-Id: <200202210350.g1L3o1E59014@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Tim Robbins Subject: Re: bin/35070: math(3) references section "3m", etc. Reply-To: Tim Robbins Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35070; it has been noted by GNATS. From: Tim Robbins To: Alexey Zelkin Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/35070: math(3) references section "3m", etc. Date: Thu, 21 Feb 2002 14:33:17 +1100 On Wed, Feb 20, 2002 at 09:30:36PM +0200, Alexey Zelkin wrote: > On Sat, Feb 16, 2002 at 05:48:47PM +1100, Tim Robbins wrote: > > > > >Number: 35070 > > >Category: bin > > >Synopsis: math(3) references section "3m", etc. > > Clack! Trap is closed! > > PS: Do it! Here it is. IMO it contains more factual information about the actual math library than the current math(3) page does. If the discussions of VAX and IEEE floating point representations are useful, they should have their own separate manual pages - perhaps ieee754(7), vaxfp(7). I thought about doing a man->mdoc conversion of the IEEE 754 notes in the current math(3) page, but the writing style doesn't match that of the rest of the manual pages, and I don't know enough about the subject to know whether the information is correct. .\" Copyright (c) 2002 Tim J. Robbins .\" 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. .\" .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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 .Dd February 21, 2002 .Dt MATH 3 .Os .Sh NAME .Nm math .Nd standard math library .Sh LIBRARY .Lb libm .Sh SYNOPSIS .In math.h .Sh DESCRIPTION The standard math library provides functions that perform common mathematical operations on floating point numbers. .Pp Most of the functions listed below take .Ft double arguments and return .Ft double values. Versions of these functions that work with .Ft float have an .Ql Va f suffix, for example .Fn sinf . .Pp In general, these functions return an undefined value if their arguments lie outside the correct domain and set .Sy errno to .Dv EDOM Ns No . If the correct result is too small or too large to represent, 0 or .Dv HUGE_VAL are return, respectively, and .Sy errno is set to .Dv ERANGE Ns No . .Sh FUNCTIONS Each function has its own manual page in section 3. For example, .Fn acos is thorougly described in .Xr acos 3 . .Pp .Ss Bessel Functions .Bl -tag -compact -width XXXXXXXXXX .It Sy Name .Sy Description .It j0, j1, jn Bessel functions of the first kind .It y0, y1, yn Bessel functions of the second kind .El .Ss Trigonometric Functions .Bl -tag -compact -width XXXXXXXXXX .It Sy Name .Sy Description .It acos Arc cosine .It asin Arc sine .It atan Arc tangent .It atan2 Arc tangent of two variables .It cos Cosine .It sin Sine .It tan Tangent .El .Ss Hyperbolic Trigonometric Functions .Bl -tag -compact -width XXXXXXXXXX .It Sy Name .Sy Description .It acosh Hyperbolic arc cosine .It asinh Hyperbolic arc sine .It atanh Hyperbolic arc tangent .It cosh Hyperbolic cosine .It sinh Hyperbolic sine .It tanh Hyperbolic tangent .El .Ss Exponentials and Logarithms .Bl -tag -compact -width XXXXXXXXXX .It Sy Name .Sy Description .It exp Exponential .It log Natural logarithm .It log10 Log base 10 .El .Ss IEEE Arithmetic and Tests .Bl -tag -compact -width XXXXXXXXXX .It Sy Name .Sy Description .It copysign Change sign of one number to match another .It finite Test for finite number .It ilogb Integer exponent .It logb Exponent .It nextafter Next representable number .It remainder Remainder function .It scalb Multiply by power of two .It scalbn Multiply by integer power of two .It significand Significand .El .Ss Tests .Bl -tag -compact -width XXXXXXXXXX .It Sy Name .Sy Description .It isinf Test for infinity .It isnan Test for not-a-number .El .Ss Powers and Roots .Bl -tag -compact -width XXXXXXXXXX .It Sy Name .Sy Description .It cbrt Cube root .It pow Power .It sqrt Square root .El .Ss `Splitting' Functions .Bl -tag -compact -width XXXXXXXXXX .It Sy Name .Sy Description .It frexp Break number into normalized fraction and integral power of 2 .It ldexp Multiply number by power of 2 .It modf Break number into integral and fractional parts .El .Ss Miscellaneous Functions .Bl -tag -compact -width XXXXXXXXXX .It Sy Name .Sy Description .It cabs Complex absolute value .It ceil Ceiling .It drem ? .It erf Error function calculation .It erfc Error function complement .It expm1 exp(x)-1 .It fabs Absolute value .It floor Floor .It fmod Remainder .It gamma Gamma .It gamma_r Reentrant gamma .It hypot Euclidean distance .It lgamma Log gamma .It lgamma_r Reentrant lgamma .It log1p log(1+x) .El .Sh CONSTANTS Commonly used mathematic constants, provided as preprocessor macros. .Pp .Bl -tag -compact -width XXXXXXXXXX .It Sy Name .Sy Description .It Dv M_E Euler's number (e) .It Dv M_LOG2E Log base 2 of e .It Dv M_LOG10E Log base 10 of e .It Dv M_LN2 Natural logarithm of 2 .It Dv M_LN10 Natural logarithm of 10 .It Dv M_PI pi .It Dv M_PI_2 pi/2 .It Dv M_PI_4 pi/4 .It Dv M_1_PI 1/pi .It Dv M_2_PI 2/pi .It Dv M_2_SQRTPI 2/sqrt(pi) .It Dv M_SQRT2 sqrt(2) .It Dv M_SQRT_1_2 1/sqrt(2) .El .Pp Other constants .Pp .Bl -tag -compact -width XXXXXXXXXX .It Sy Name .Sy Description .It Dv HUGE Obsolete name for .Dv MAXFLOAT .It Dv HUGE_VAL Indicates range error (discussed above) .It Dv MAXFLOAT Largest representable float .El .Sh SEE ALSO .Xr ieee 3 .Sh STANDARDS The .Os math library is a superset of .St -isoC . It is expected to conform to .St -p1003.1 and .St -xsh5 . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 20:22:23 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EC8C537B402; Wed, 20 Feb 2002 20:22:16 -0800 (PST) Received: (from matusita@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1L4EZk65588; Wed, 20 Feb 2002 20:14:35 -0800 (PST) (envelope-from matusita) Date: Wed, 20 Feb 2002 20:14:35 -0800 (PST) From: Message-Id: <200202210414.g1L4EZk65588@freefall.freebsd.org> To: phrac@disflux.dhs.org, matusita@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/35163: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: State-Changed-From-To: open->closed State-Changed-By: matusita State-Changed-When: Wed Feb 20 20:13:32 PST 2002 State-Changed-Why: Duplicated PR (it also appeared as PR: misc/35164), close the old one. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35163 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 20 22:20:40 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA59737B41D for ; Wed, 20 Feb 2002 22:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1L6K1v92533; Wed, 20 Feb 2002 22:20:01 -0800 (PST) (envelope-from gnats) Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 1EE6537B400 for ; Wed, 20 Feb 2002 22:15:28 -0800 (PST) Received: from [212.238.194.207] (helo=mailhost.raggedclown.net) by post.mail.nl.demon.net with esmtp (Exim 3.33 #1) id 16dmVr-0005uS-00 for FreeBSD-gnats-submit@freebsd.org; Thu, 21 Feb 2002 06:15:27 +0000 Received: from angel.raggedclown.net (angel.raggedclown.intra [192.168.1.7]) by mailhost.raggedclown.net (Ragged Clown Mail Gateway [buffy]) with ESMTP id 7AC5013040 for ; Thu, 21 Feb 2002 07:15:26 +0100 (CET) Received: by angel.raggedclown.net (Ragged Clown Host [angel], from userid 1005) id 1A89E22590; Thu, 21 Feb 2002 07:15:26 +0100 (CET) Message-Id: <20020221061526.1A89E22590@angel.raggedclown.net> Date: Thu, 21 Feb 2002 07:15:26 +0100 (CET) From: Cliff Sarginson Reply-To: Cliff Sarginson To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/35171: Moused needs to be enabled to run a USB mouse Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35171 >Category: kern >Synopsis: Moused needs to be enabled to run a USB mouse >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 Feb 20 22:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Cliff Sarginson >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD angel.raggedclown.intra 4.5-STABLE FreeBSD 4.5-STABLE #7: Sun Feb 17 19:04:21 CET 2002 toor@angel.raggedclown.intra:/usr/obj/usr/src/sys/ANGEL-S i386 Using Logitech USB cordless optical mouse. Others have reported same USB mouse problem in -questions. >Description: In order to get a USB mouse to work you need to have moused_enable="YES" in /etc/rc.conf. However on booting the following error is generated: moused: unable to open /dev/psm0 : Device not configured Note the following lines from my /etc/rc.conf usbd_enable="YES" #moused_port="/dev/psm0" #moused_port="/dev/mouse" moused_type="auto" moused_enable="YES" It seems to me that you shouldn't need moused_enabled, but it has some kind of side-effect when the system tries to enable it that allows a USB mouse to work. >How-To-Repeat: Self-evident. >Fix: None found. >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 Feb 21 2: 0: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E044F37B402 for ; Thu, 21 Feb 2002 02:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LA03l47810; Thu, 21 Feb 2002 02:00:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 024DB37B402 for ; Thu, 21 Feb 2002 01:52:37 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1L9qaT46438; Thu, 21 Feb 2002 01:52:36 -0800 (PST) (envelope-from nobody) Message-Id: <200202210952.g1L9qaT46438@freefall.freebsd.org> Date: Thu, 21 Feb 2002 01:52:36 -0800 (PST) From: KIMURA Yasuhiro To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/35172: Please update am-utils(amd) into newer version Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35172 >Category: misc >Synopsis: Please update am-utils(amd) into newer version >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: wish >Submitter-Id: current-users >Arrival-Date: Thu Feb 21 02:00:03 PST 2002 >Closed-Date: >Last-Modified: >Originator: KIMURA Yasuhiro >Release: 4.5-RELEASE >Organization: TOSHIBA Corp. >Environment: FreeBSD moonlight.isl.rdc.toshiba.co.jp 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Thu Feb 7 17:26:00 JST 2002 yasu@moonlight.isl.rdc.toshiba.co.jp:/usr/src/sys/compile/MOONLIGHT i386 >Description: Resent version of am-utils(amd) has a new configuration file parameter "nfs_proto", which forces the overall NFS protocol to use TCP or UDP. If there are unstable NFSv3 servers, this provides good workaround for the clients which must used troublesome servers. But am-utils version 6.0.3s1, which is distributed with 4.5-RELEASE, does not have this parameter. >How-To-Repeat: >Fix: Update am-utils into latest stable 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 Thu Feb 21 2:30:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0B1037B402 for ; Thu, 21 Feb 2002 02:30:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LAU0k56057; Thu, 21 Feb 2002 02:30:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CE2D637B400 for ; Thu, 21 Feb 2002 02:26:22 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LAQMl55184; Thu, 21 Feb 2002 02:26:22 -0800 (PST) (envelope-from nobody) Message-Id: <200202211026.g1LAQMl55184@freefall.freebsd.org> Date: Thu, 21 Feb 2002 02:26:22 -0800 (PST) From: Peter Edwards To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/35175: ptrace(PT_DETACH, ....) doesn't do signals as advertised Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35175 >Category: kern >Synopsis: ptrace(PT_DETACH, ....) doesn't do signals as advertised >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 Feb 21 02:30:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Peter Edwards >Release: 4.5-STABLE >Organization: >Environment: FreeBSD rocklobster 4.5-STABLE FreeBSD 4.5-STABLE #21: Wed Feb 20 11:59:40 GMT 2002 petere@rocklobster:/pub/FreeBSD/work/src/sys/compile/ROCKLOBSTER i386 >Description: I brought this up on -hackers, but no one seemed interested. I'll preserve it here for posterity :-) I noticed that PT_DETACH() isn't working as documented: The signal argument is effectively being ignored, and a combination of ptrace(PT_ATTACH, pid, 0, 0) followed by ptrace(PT_DETACH, pid, (caddr_t)1, 0) results in the target process getting stopped. This seems to be less than satisfactory: I would have thought the ptrace() call should be capable of at least attaching and detaching from the process without causing such spurious signals to be delivered to its victim. It also disagrees with the documentation: Even if you attempt to send a signal on PT_DETACH, it's not sent, and the stop still happens This apparent mis-handling of this signal argument to ptrace() appears to occur in issignal(): (Im discussing line numbers from kern_sig.c, 1.72.2.14) On ptrace(PT_ATTACH, ...), the target process gets to the stop() on line 1254, with p->p_xstat == SIGSTOP. On ptrace(PT_DETACH, pid, (caddr_t)1, mySig), the parent kicks the stopped child, after clearing the P_TRACE flag. The child wakes up, with the new signal, mySig, set in p->p_xstat, and the old signal still present in p->p_siglist from the "psignal()" call on line 1252. It then notices that the P_TRACED flag has been switched off, and starts all over again, discarding the new signal, and re-finding the original SSTOP that was sent by the ptrace(PT_ATTACH) call. ie, the process gets sent the signal that the ptrace() call explicitly tried to replace. My understanding of the issues is probably incomplete, but I've attached a patch that fixes this by moving the check for the dropping of PT_ATTACH until after the old signal is removed and the new signal is inserted into p->p_siglist. >How-To-Repeat: Write a program that calls ptrace(PT_ATTACH, pid, 0, 0); and then ptrace(PT_DETACH, pid, (caddr_t)1, 0); The victim, pid, will end up stopped. >Fix: Index: kern_sig.c =================================================================== RCS file: /pub/FreeBSD/development/FreeBSD-CVS/src/sys/kern/kern_sig.c,v retrieving revision 1.72.2.14 diff -u -r1.72.2.14 kern_sig.c --- kern_sig.c 14 Dec 2001 03:05:32 -0000 1.72.2.14 +++ kern_sig.c 12 Feb 2002 09:22:52 -0000 @@ -1257,14 +1257,6 @@ && p->p_flag & P_TRACED); /* - * If the traced bit got turned off, go back up - * to the top to rescan signals. This ensures - * that p_sig* and ps_sigact are consistent. - */ - if ((p->p_flag & P_TRACED) == 0) - continue; - - /* * If parent wants us to take the signal, * then it will leave it in p->p_xstat; * otherwise we just look for signals again. @@ -1275,10 +1267,21 @@ continue; /* - * Put the new signal into p_siglist. If the - * signal is being masked, look for other signals. + * Put the new signal into p_siglist. */ SIGADDSET(p->p_siglist, sig); + + /* + * If the traced bit got turned off, go back up + * to the top to rescan signals. This ensures + * that p_sig* and ps_sigact are consistent. + */ + if ((p->p_flag & P_TRACED) == 0) + continue; + /* + * If the signal is being masked, look for other + * signals. + */ if (SIGISMEMBER(p->p_sigmask, sig)) continue; } >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 Feb 21 3:22:21 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9980537B402; Thu, 21 Feb 2002 03:22:17 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LBHsB68552; Thu, 21 Feb 2002 03:17:54 -0800 (PST) (envelope-from cjc) Date: Thu, 21 Feb 2002 03:17:54 -0800 (PST) From: Message-Id: <200202211117.g1LBHsB68552@freefall.freebsd.org> To: cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org, obrien@FreeBSD.org Subject: Re: misc/35172: Please update am-utils(amd) into newer version Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Please update am-utils(amd) into newer version Responsible-Changed-From-To: freebsd-bugs->obrien Responsible-Changed-By: cjc Responsible-Changed-When: Thu Feb 21 03:15:53 PST 2002 Responsible-Changed-Why: From the CVS logs, it looks like obrien is the de-facto maintainer of amd. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35172 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 3:32:21 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 04FC137B402; Thu, 21 Feb 2002 03:32:18 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LBSfv70389; Thu, 21 Feb 2002 03:28:41 -0800 (PST) (envelope-from cjc) Date: Thu, 21 Feb 2002 03:28:41 -0800 (PST) From: Message-Id: <200202211128.g1LBSfv70389@freefall.freebsd.org> To: phrac@disflux.dhs.org, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/35164: no -h option listed for portmap Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: no -h option listed for portmap State-Changed-From-To: open->closed State-Changed-By: cjc State-Changed-When: Thu Feb 21 03:27:47 PST 2002 State-Changed-Why: Fix committed to -STABLE (portmap(8) does not exist in -CURRENT). Thanks for the report. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35164 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 3:40: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BC36A37B416 for ; Thu, 21 Feb 2002 03:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LBe1V71643; Thu, 21 Feb 2002 03:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D04B137B400 for ; Thu, 21 Feb 2002 03:32:23 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LBWN570853; Thu, 21 Feb 2002 03:32:23 -0800 (PST) (envelope-from nobody) Message-Id: <200202211132.g1LBWN570853@freefall.freebsd.org> Date: Thu, 21 Feb 2002 03:32:23 -0800 (PST) From: Vlado To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/35178: ipfilter for IPV6 not availlable in rc.* Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35178 >Category: conf >Synopsis: ipfilter for IPV6 not availlable in rc.* >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: Thu Feb 21 03:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Vlado >Release: STABLE >Organization: >Environment: FreeBSD pc042.otanner9.kas.tut.fi 4.5-STABLE FreeBSD 4.5-STABLE #0: Mon Feb 18 13:57:17 EET 2002 vlado@pc042.otanner9.kas.tut.fi:/usr/obj/usr/src/sys/Ifrit i386 >Description: When ipfilter is enabled in rc.conf, it loads firewall rules for IP4. To load rules for IPV6, it's necessary to use ipf -6 . Thus to use ipfilter on ipv6 enabled computer, hack to rc.network is necessary, to load also rules for ipv6 otherwise if kernel option IPFILTER_DEFAULT_BLOCK is used, ipv6 trafic if blocked by default... >How-To-Repeat: >Fix: Add ipfilter6_rules to rc.conf, giving it rules files for ipv6. Add ipfilter test to rc.network6 and load rules if desired. >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 Feb 21 3:50:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8317037B405 for ; Thu, 21 Feb 2002 03:50:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LBo9F73049; Thu, 21 Feb 2002 03:50:09 -0800 (PST) (envelope-from gnats) Date: Thu, 21 Feb 2002 03:50:09 -0800 (PST) Message-Id: <200202211150.g1LBo9F73049@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: bin/35148: ppp/nat-problems after cvs update 4.3 -> 4.5 Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35148; it has been noted by GNATS. From: "Crist J. Clark" To: frank bretschneider Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/35148: ppp/nat-problems after cvs update 4.3 -> 4.5 Date: Thu, 21 Feb 2002 03:42:33 -0800 On Wed, Feb 20, 2002 at 09:15:55AM -0800, frank bretschneider wrote: [snip] > >Description: > after the cvsupdate from 4.3 to 4.5 i have problems reading some websites. > > lynx www.fernwww.de works .... > lynx www.gmx.de does not work .... timeout !! > lynx www.consors.de does not work .... timeout !! > but "traceroute www.gmx.de" works > and also > > telnet www.gmx.de 80 > > HEAD HTTP/1.0 > > > > 400 Bad Request > >

Bad Request

> Your browser sent a request that this server could not understand.

> client sent invalid HTTP/0.9 request: HEAD HTTP/1.0

>


>
Apache/1.3.20 Server at www16.gmx.net Port 80
> > > i am using PPPoE and everything works fine except that. > it looks like ppp has problems with reverse-proxies. > > i tried two different kernels : with and without firewall > > i run ppp as root "/usr/sbin/ppp -quiet -ddial dsl" > > > tcpdump show that the i.e. gmx-server sends some kind of response > but then nothing happens. I don't see anything to believe this is related to ppp(8). Afterall, you show us your telnet(8) to the server worked fine. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 4:30:20 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B688E37B405 for ; Thu, 21 Feb 2002 04:30:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LCU0t90210; Thu, 21 Feb 2002 04:30:00 -0800 (PST) (envelope-from gnats) Received: from mail.nsu.ru (mx.nsu.ru [193.124.215.71]) by hub.freebsd.org (Postfix) with ESMTP id 2566837B404 for ; Thu, 21 Feb 2002 04:26:57 -0800 (PST) Received: from regency.nsu.ru ([193.124.210.26] helo=cytherea.weblab.nsu.ru) by mail.nsu.ru with esmtp (Exim 3.20 #1) id 16dsJH-0001wO-00 for FreeBSD-gnats-submit@freebsd.org; Thu, 21 Feb 2002 18:26:51 +0600 Received: (from danfe@localhost) by cytherea.weblab.nsu.ru (8.11.6/8.11.6) id g1LCRXQ64981; Thu, 21 Feb 2002 18:27:33 +0600 (NOVT) (envelope-from danfe) Message-Id: <200202211227.g1LCRXQ64981@cytherea.weblab.nsu.ru> Date: Thu, 21 Feb 2002 18:27:33 +0600 (NOVT) From: Alexey Dokuchaev Reply-To: Alexey Dokuchaev To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/35180: minor tcsh nls-russian translation fixes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35180 >Category: bin >Synopsis: minor tcsh nls-russian translation fixes >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 Feb 21 04:30:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Alexey Dokuchaev >Release: FreeBSD 4.5-STABLE i386 >Organization: CNIT NSU >Environment: System: FreeBSD cytherea.weblab.nsu.ru 4.5-STABLE FreeBSD 4.5-STABLE #0: Sun Feb 3 22:19:53 NOVT 2002 root@cytherea.weblab.nsu.ru:/usr/src/sys/compile/CYTHEREA i386 >Description: I've noticed that some tcsh messages for Russian locale were incorrect, so I've run ispell-rus on them. Several minor glitches were found and fixed. >How-To-Repeat: I beleive it is not quite applicable here :-) >Fix: Apply the following patch: diff -u russian.old/set1 russian/set1 --- russian.old/set1 Thu Feb 21 18:14:55 2002 +++ russian/set1 Thu Feb 21 18:22:25 2002 @@ -33,12 +33,12 @@ 30 йНС РЕТЕНЕООПК ДПМЦОП ОБЮЙОБФШУС У ВХЛЧЩ 31 уМЙЫЛПН ДМЙООПЕ ЙНС РЕТЕНЕООПК 32 ч ЙНЕОЙ РЕТЕНЕООПК ДПМЦОЩ УПДЕТЦБФШУС БМЖБЧЙФОП-ГЙЖТПЧЩЕ УЙНЧПМЩ -33 хРТБЧМЕОЙЕ ЪБДБОЙСНЙ Ч ЬФПН ЫЕММЕ ПФУХФУЧХЕФ -34 уЙОФБИ ЧЩТБЦЕОЙС -35 пФУХФУЧХЕФ ДПНБЫОЙК ЛБФБМПЗ +33 хРТБЧМЕОЙЕ ЪБДБОЙСНЙ Ч ЬФПН ЫЕММЕ ПФУХФУФЧХЕФ +34 уЙОФБЛУЙУ ЧЩТБЦЕОЙС +35 пФУХФУФЧХЕФ ДПНБЫОЙК ЛБФБМПЗ 36 оЕ НПЗХ РЕТЕКФЙ Ч ДПНБЫОЙК ЛБФБМПЗ 37 рТПРХЭЕОБ ЛПНБОДБ -38 ч РТЙУЧПЕОЙЙ ПФУХФУЧХЕФ ЧЩТБЦЕОЙЕ +38 ч РТЙУЧПЕОЙЙ ПФУХФУФЧХЕФ ЧЩТБЦЕОЙЕ 39 оЕЙЪЧЕУФОЩК ПРЕТБФПТ 40 оЕПДОПЪОБЮОП 41 %s: жБКМ УХЭЕУФЧХЕФ @@ -71,10 +71,10 @@ 68 уФЕЛ ЛБФБМПЗПЧ РХУФ 69 оЕЧЕТОПЕ ЙНС ЛБФБМПЗБ 70 йУРПМШЪПЧБОЙЕ: %s [-%s]%s -71 пФУХФУЧХЕФ ПРЕТБОД ЖМБЗБ -h +71 пФУХФУФЧХЕФ ПРЕТБОД ЖМБЗБ -h 72 Not a login shell 73 дЕМЕОЙЕ ОБ 0 -74 Mod by 0 +74 пУФБФПЛ ПФ ДЕМЕОЙС ОБ 0 75 Bad scaling; did you mean "%s"? 76 Can't suspend a login shell (yet) 77 оЕЙЪЧЕУФОЩК РПМШЪПЧБФЕМШ: %s @@ -87,9 +87,9 @@ 84 оЕЧЕТОПЕ ЙНС РЕТЕНЕООПК 85 Newline in variable index 86 рЕТЕРПМОЕОЙС ВХЖЕТБ ТБУЫЙТЕОЙС -87 уЙОФБИ РЕТЕНЕООПК +87 уЙОФБЛУЙУ РЕТЕНЕООПК 88 оЕЧЕТОБС ЖПТНБ ! -89 пФУХФУЧХЕФ РТЕДЩДХЭБС РПДУФБОПЧЛБ +89 пФУХФУФЧХЕФ РТЕДЩДХЭБС РПДУФБОПЧЛБ 90 рМПИБС РПДУФБОПЧЛБ 91 No previous left hand side 92 Right hand side too long diff -u russian.old/set20 russian/set20 --- russian.old/set20 Thu Feb 21 18:14:55 2002 +++ russian/set20 Thu Feb 21 18:10:25 2002 @@ -10,7 +10,7 @@ 7 бМШФЕТОБФЙЧОЩЕ РТЙЧСЪЛЙ ЛМАЮЕК\n 8 Multi-character bindings\n 9 Arrow key bindings\n -10 %-15s-> ОЕПРТЕДЕМЕОП\n +10 %-15s-> ОЕ ПРТЕДЕМЕОП\n 11 BUG!!! %s ОЕ УЧСЪБО ОЙ У ЮЕН.\n 12 йУРПМШЪПЧБОЙЕ: bindkey [ПРГЙЙ] [--] [лмаю [лпнбодб]]\n 13 -a list or bind KEY in alternative key map\n @@ -29,7 +29,7 @@ 26 вЕЪ лпнбодЩ, ЧЩЧЕУФЙ РТЙЧСЪЛХ лмаюБ.\n 27 РМПИБС УРЕГЙЖЙЛБГЙС ЛМАЮБ -- ОХМЕЧБС УФТПЛБ\n 28 РМПИБС УРЕГЙЖЙЛБГЙС ЛМАЮБ -- РХУФБС УФТПЛБ\n -29 рМПИБС УРЕГЙЖЛБГЙС ЖХОЛГЙПОБМШОПК ЛМБЧЙЫЙ. оХМЕЧПК ЛМАЮ ЪБРТЕЭЕО\n +29 рМПИБС УРЕГЙЖЙЛБГЙС ЖХОЛГЙПОБМШОПК ЛМБЧЙЫЙ. оХМЕЧПК ЛМАЮ ЪБРТЕЭЕО\n 30 РМПИБС УРЕГЙЖЙЛБГЙС ЛМАЮБ -- ОЕЧЕТОЩК ЫЕУФОБДГБФЕТЙЮОЩК ОПНЕТ\n 31 РМПИБС УРЕГЙЖЙЛБГЙС ЛМАЮБ -- ОЕЧЕТОЩК ЧПУШНЕТЙЮОЩК ОПНЕТ\n 32 РМПИБС УРЕГЙЖЙЛБГЙС ЛМАЮБ -- ОЕЧЕТОЩК ДЕУСФЙЮОЩК ОПНЕТ\n diff -u russian.old/set22 russian/set22 --- russian.old/set22 Thu Feb 21 18:14:55 2002 +++ russian/set22 Thu Feb 21 18:04:46 2002 @@ -1,8 +1,8 @@ $ $Id: set22,v 1.1 2001/03/18 19:06:39 christos Exp $ $ tc.func.c $set 22 -1 %S: \t РЕТЕПРТЕДЕМЕО Ч -2 \nIncorrect passwd for %s\n +1 %S: \t РЕТЕПРТЕДЕМЕО Ч +2 \nоЕЧЕТОЩК РБТПМШ ДМС %s\n 3 Faulty alias 'precmd' removed.\n 4 Faulty alias 'cwdcmd' removed.\n 5 Faulty alias 'beepcmd' removed.\n @@ -12,6 +12,6 @@ 9 РТПРХУЛ ХДБМЕОЙС ЧУЕИ ЖБКМПЧ!\n 10 ЛПНБОДОБС УФТПЛБ ФЕРЕТШ:\n 11 ТБЪВПТ ЛПНБОДОПК УФТПЛЙ\n -12 in one of the lists\n +12 Ч ПДОПН ЙЪ УРЙУЛПЧ\n 13 ЛПНБОДОБС УФТПЛБ ФЕРЕТШ:\n 14 yY diff -u russian.old/set27 russian/set27 --- russian.old/set27 Thu Feb 21 18:14:55 2002 +++ russian/set27 Thu Feb 21 18:11:26 2002 @@ -2,7 +2,7 @@ $ tw.comp.c $set 27 1 ЛПНБОДБ -2 УЕРЕТБФПТ +2 УЕРБТБФПТ 3 ЫБВМПО 4 ЙОФЕТЧБМ 5 ЪБЧЕТЫЕОЙЕ >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 Feb 21 4:50:26 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE0C637B402 for ; Thu, 21 Feb 2002 04:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LCo4492720; Thu, 21 Feb 2002 04:50:04 -0800 (PST) (envelope-from gnats) Date: Thu, 21 Feb 2002 04:50:04 -0800 (PST) Message-Id: <200202211250.g1LCo4492720@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/35180: minor tcsh nls-russian translation fixes Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35180; it has been noted by GNATS. From: Peter Pentchev To: Alexey Dokuchaev Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/35180: minor tcsh nls-russian translation fixes Date: Thu, 21 Feb 2002 14:45:43 +0200 On Thu, Feb 21, 2002 at 06:27:33PM +0600, Alexey Dokuchaev wrote: > > >Number: 35180 > >Category: bin > >Synopsis: minor tcsh nls-russian translation fixes > >Originator: Alexey Dokuchaev > > >Description: > I've noticed that some tcsh messages for Russian locale were incorrect, > so I've run ispell-rus on them. Several minor glitches were found and > fixed. > > >How-To-Repeat: > I beleive it is not quite applicable here :-) I think that the nls/russian/ directory is part of the tcsh contributed sources; that is, they are not maintained within FreeBSD, they are only used by FreeBSD. For changes to tcsh, you should talk to its author, Christos Zoulas , as noted in the README file in the src/contrib/tcsh/ directory. Thank you for your effors; hopefully Christos will accept your corrections and they will make it into FreeBSD at the next import of tcsh! G'luck, Peter -- Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 Do you think anybody has ever had *precisely this thought* before? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 5: 0:18 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 84B1237B416 for ; Thu, 21 Feb 2002 05:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LD01l94573; Thu, 21 Feb 2002 05:00:01 -0800 (PST) (envelope-from gnats) Received: from fafoe.dyndns.org (chello212186121237.14.vie.surfer.at [212.186.121.237]) by hub.freebsd.org (Postfix) with ESMTP id 6D46B37B404 for ; Thu, 21 Feb 2002 04:57:05 -0800 (PST) Received: by stefan.fafoe (Postfix, from userid 1001) id C5AF1EA2C; Thu, 21 Feb 2002 13:56:03 +0100 (CET) Message-Id: <20020221125603.C5AF1EA2C@stefan.fafoe> Date: Thu, 21 Feb 2002 13:56:03 +0100 (CET) From: Stefan Farfeleder Reply-To: Stefan Farfeleder To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: misc/35181: [PATCH] minor change to games/primes/pr_tbl.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35181 >Category: misc >Synopsis: [PATCH] minor change to games/primes/pr_tbl.c >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: Thu Feb 21 05:00:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Stefan Farfeleder >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD stefan.fafoe 4.5-STABLE FreeBSD 4.5-STABLE #5: Sun Feb 17 00:06:38 CET 2002 root@stefan.fafoe:/usr/obj/usr/src/sys/MORDOR i386 >Description: pr_limit should be a pointer to `ubig' not to `unsigned long', as this is how it is declared in primes.c (this is the only case where unsigned long is used instead of its typedef ubig). >How-To-Repeat: >Fix: Index: src/games/primes/pr_tbl.c =================================================================== RCS file: /home/ncvs/src/games/primes/pr_tbl.c,v retrieving revision 1.3 diff -u -r1.3 pr_tbl.c --- src/games/primes/pr_tbl.c 30 Nov 1999 03:49:11 -0000 1.3 +++ src/games/primes/pr_tbl.c 21 Feb 2002 12:41:31 -0000 @@ -547,4 +547,4 @@ }; /* pr_limit - largest prime in the prime table */ -unsigned long *pr_limit = &prime[(sizeof(prime)/sizeof(prime[0]))-1]; +ubig *pr_limit = &prime[(sizeof(prime)/sizeof(prime[0]))-1]; >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 Feb 21 5:10:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0652F37B405 for ; Thu, 21 Feb 2002 05:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LDA2q99279; Thu, 21 Feb 2002 05:10:02 -0800 (PST) (envelope-from gnats) Received: from chowder.dons.net.au (chowder.dons.net.au [203.31.81.11]) by hub.freebsd.org (Postfix) with ESMTP id 2E54B37B404 for ; Thu, 21 Feb 2002 05:02:39 -0800 (PST) Received: (from darius@localhost) by chowder.dons.net.au (8.11.6/8.11.6) id g1LD2VH01615; Thu, 21 Feb 2002 23:32:31 +1030 (CST) (envelope-from darius) Message-Id: <200202211302.g1LD2VH01615@chowder.dons.net.au> Date: Thu, 21 Feb 2002 23:32:31 +1030 (CST) From: "Daniel O'Connor" Reply-To: "Daniel O'Connor" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: i386/35182: APMD does not set close on exec for /dev/apm* Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35182 >Category: i386 >Synopsis: APMD does not set close on exec for /dev/apm* >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 Feb 21 05:10:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Daniel O'Connor >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD chowder.dons.net.au 4.5-STABLE FreeBSD 4.5-STABLE #4: Mon Feb 11 13:52:27 CST 2002 darius@chowder.gsoft.com.au:/usr/obj/usr/src/sys/CHOWDER i386 >Description: apmd does not set close-on-exec for its APM device file descriptors which leads to problems trying to get the child processes to exit etc.. >How-To-Repeat: Run something from apmd. Observe the child process hold an fd to APM device nodes >Fix: Index: apmd.c =================================================================== RCS file: /usr/CVS-Repository/src/usr.sbin/apmd/apmd.c,v retrieving revision 1.3.2.1 diff -u -r1.3.2.1 apmd.c --- apmd.c 13 Aug 2001 17:30:30 -0000 1.3.2.1 +++ apmd.c 21 Feb 2002 12:58:04 -0000 @@ -683,8 +683,16 @@ (void) err(1, "cannot open device file `%s'", APM_NORM_DEVICEFILE); } + if (fcntl(apmnorm_fd, F_SETFD, 1) == -1) { + (void) err(1, "cannot set close-on-exec flag for device file '%s'", APM_NORM_DEVICEFILE); + } + if ((apmctl_fd = open(APM_CTL_DEVICEFILE, O_RDWR)) == -1) { (void) err(1, "cannot open device file `%s'", APM_CTL_DEVICEFILE); + } + + if (fcntl(apmctl_fd, F_SETFD, 1) == -1) { + (void) err(1, "cannot set close-on-exec flag for device file '%s'", APM_CTL_DEVICEFILE); } restart(); >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 Feb 21 6:30:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A625337B41A for ; Thu, 21 Feb 2002 06:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LEU2226251; Thu, 21 Feb 2002 06:30:02 -0800 (PST) (envelope-from gnats) Date: Thu, 21 Feb 2002 06:30:02 -0800 (PST) Message-Id: <200202211430.g1LEU2226251@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ben Kadish Subject: Re: kern/34917: 4.5-RELEASE SMP Kernel problems Reply-To: Ben Kadish Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/34917; it has been noted by GNATS. From: Ben Kadish To: freebsd-gnats-submit@FreeBSD.org, ben@happcontrols.com Cc: Subject: Re: kern/34917: 4.5-RELEASE SMP Kernel problems Date: Thu, 21 Feb 2002 08:22:59 -0600 If it helps in diagnosis, the hardware in question here is a Tyan Thunder LE motherboard with the ServerWorks chipset, 2x P3-1GHz, and an Adaptec 2100S RAID card (asr). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 7: 0:39 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9EDA637B404 for ; Thu, 21 Feb 2002 07:00:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LF09T38438; Thu, 21 Feb 2002 07:00:09 -0800 (PST) (envelope-from gnats) Date: Thu, 21 Feb 2002 07:00:09 -0800 (PST) Message-Id: <200202211500.g1LF09T38438@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/35180: minor tcsh nls-russian translation fixes Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35180; it has been noted by GNATS. From: Peter Pentchev To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/35180: minor tcsh nls-russian translation fixes Date: Thu, 21 Feb 2002 16:55:07 +0200 Adding this to the PR audit trail.. G'luck, Peter -- Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 The rest of this sentence is written in Thailand, on ----- Forwarded message from Alexey Dokuchaev ----- Date: Thu, 21 Feb 2002 19:01:35 +0600 From: Alexey Dokuchaev To: Peter Pentchev Subject: Re: bin/35180: minor tcsh nls-russian translation fixes User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020221144543.D336@straylight.oblivion.bg>; from roam@ringlet.net on Thu, Feb 21, 2002 at 02:45:43PM +0200 On Thu, Feb 21, 2002 at 02:45:43PM +0200, Peter Pentchev wrote: > > I think that the nls/russian/ directory is part of the tcsh contributed > sources; that is, they are not maintained within FreeBSD, they are only > used by FreeBSD. For changes to tcsh, you should talk to its author, > Christos Zoulas , as noted in the README file in > the src/contrib/tcsh/ directory. > > Thank you for your effors; hopefully Christos will accept your corrections > and they will make it into FreeBSD at the next import of tcsh! Thanks for providing me with Christos' email address; I've sent him a PR. -- WBR ----- End forwarded message ----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 9:40:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EFDC137B404 for ; Thu, 21 Feb 2002 09:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LHe3a79820; Thu, 21 Feb 2002 09:40:03 -0800 (PST) (envelope-from gnats) Date: Thu, 21 Feb 2002 09:40:03 -0800 (PST) Message-Id: <200202211740.g1LHe3a79820@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Dickson, Brian" Subject: Re: i386/25463: PS/2 mouse sync problems with KVM switch - /dev/s ysmouse and /dev/psm0 Reply-To: "Dickson, Brian" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/25463; it has been noted by GNATS. From: "Dickson, Brian" To: "'freebsd-gnats-submit@FreeBSD.org'" Cc: Subject: Re: i386/25463: PS/2 mouse sync problems with KVM switch - /dev/s ysmouse and /dev/psm0 Date: Thu, 21 Feb 2002 12:26:34 -0500 This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C1BAFC.E9264990 Content-Type: text/plain; charset="iso-8859-1" No, suggested work-around did not work. I eventually did the following: - returned KVM to vendor - purchased PS2-to-USB keyboard adapter dongle - purchased USB switch - put both keyboard and mouse (now both USB) on USB hub (integrated in my monitor) which is connected to USB switch So, when I need to switch V, K+M, I hit A/B button on my two-input monitor, and hit a button on the USB switch. This works, but is significantly constrained (ie, limited to number of video inputs on monitor; limited to USB keyboards/mice). It would be nice to see the problem really resolved, but I won't lose sleep (or productivity) over it, since it no longer affects me. Brian ------_=_NextPart_001_01C1BAFC.E9264990 Content-Type: text/html; charset="iso-8859-1"

No, suggested work-around did not work.
 
I eventually did the following:
- returned KVM to vendor
- purchased PS2-to-USB keyboard adapter dongle
- purchased USB switch
- put both keyboard and mouse (now both USB) on USB hub (integrated in my monitor) which is connected to USB switch
 
So, when I need to switch V, K+M, I hit A/B button on my two-input monitor, and hit a button on the USB switch.
 
This works, but is significantly constrained (ie, limited to number of video inputs on monitor; limited to USB keyboards/mice).
 
It would be nice to see the problem really resolved, but I won't lose sleep (or productivity) over it, since it no longer affects me.
 
Brian
------_=_NextPart_001_01C1BAFC.E9264990-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 10:22:20 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 48A3937B402; Thu, 21 Feb 2002 10:22:18 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LIIdM94377; Thu, 21 Feb 2002 10:18:39 -0800 (PST) (envelope-from roam) Date: Thu, 21 Feb 2002 10:18:39 -0800 (PST) From: Message-Id: <200202211818.g1LIIdM94377@freefall.freebsd.org> To: danfe@cytherea.weblab.nsu.ru, roam@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/35180: minor tcsh nls-russian translation fixes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: minor tcsh nls-russian translation fixes State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Thu Feb 21 10:18:02 PST 2002 State-Changed-Why: The submitter has sent the corrections to Christos Zoulas, as befits contributed software like tcsh. Thanks for your efforts to improve FreeBSD! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35180 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 10:52:20 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9232C37B404; Thu, 21 Feb 2002 10:52:18 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LIh2o00788; Thu, 21 Feb 2002 10:43:02 -0800 (PST) (envelope-from obrien) Date: Thu, 21 Feb 2002 10:43:02 -0800 (PST) From: Message-Id: <200202211843.g1LIh2o00788@freefall.freebsd.org> To: obrien@FreeBSD.org, obrien@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/35172: Please update am-utils(amd) into newer version Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Please update am-utils(amd) into newer version Responsible-Changed-From-To: obrien->freebsd-bugs Responsible-Changed-By: obrien Responsible-Changed-When: Thu Feb 21 10:41:41 PST 2002 Responsible-Changed-Why: no longer maintainer http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35172 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 11:17:24 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from spam.ru (p143.n87.dip.aha.ru [195.2.87.143]) by hub.freebsd.org (Postfix) with ESMTP id 625C237B400 for ; Thu, 21 Feb 2002 11:16:45 -0800 (PST) Received: (from alex@localhost) by spam.ru (8.11.4/8.11.3) id g1LJCej20416 for freebsd-bugs@freebsd.org; Thu, 21 Feb 2002 22:12:40 +0300 Message-Id: <200202211912.g1LJCej20416@spam.ru> From: "RESTKO" To: Subject: Date: Thu, 15 Feb 2001 22:09:59 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C0979C.095F3260" 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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C0979C.095F3260 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable =D4. (095) 725-25-48, 725-25-47=20 =E2=C1=DA=D9 =C4=C1=CE=CE=D9=C8 =D0=CF =CB=D2=D5=D0=CE=D9=CD = =DA=C1=CB=C1=DA=C1=CD =D7 =CE=CF=D7=CF=CD = =D3=D4=D2=CF=C9=D4=C5=CC=D8=D3=D4=D7=C5.=20 =EF=D0=D4=CF=D7=D9=C5 =D0=CF=D4=D2=C5=C2=C9=D4=C5=CC=C9 =C9 = =CE=CF=D7=D9=C5 =D2=D9=CE=CB=C9 =D3=C2=D9=D4=C1 =F7=C1=DB=C5=CA = =D0=D2=CF=C4=D5=CB=C3=C9=C9 =C9 =D5=D3=CC=D5=C7.=20 =F7=D3=C5 =CE=CF=D7=CF=D3=D4=D2=CF=CA=CB=C9 =ED=CF=D3=CB=D7=D9. = =FE=D4=CF ? =E7=C4=C5 ? =EB=D4=CF ?=20 =EB=C1=D4=C1=CC=CF=C7 =D3=D4=D2=CF=D1=DD=C9=C8=D3=D1 =C9 = =D0=CC=C1=CE=C9=D2=D5=C5=CD=D9=C8 =CB = =D3=D4=D2=CF=C9=D4=C5=CC=D8=D3=D4=D7=D5 =CF=C2=DF=C5=CB=D4=CF=D7, = =DA=C1=CB=C1=DA=DE=C9=CB=CF=D7, =C7=C5=CE. = =D0=CF=C4=D2=D1=C4=DE=C9=CB=CF=D7, =C9=CE=D7=C5=D3=D4=CF=D2=CF=D7, = =D0=D2=CF=C5=CB=D4=C9=D2=CF=D7=DD=C9=CB=CF=D7. =EB=CF=CE=D3=D5=CC=D8=D4=C1=C3=C9=C9 =C9 =D0=CF=C4=C2=CF=D2 = =DA=C5=CD=C5=CC=D8=CE=D9=C8 =D5=DE=C1=D3=D4=CB=CF=D7 =D0=CF=C4 = =D3=D4=D2=CF=C9=D4=C5=CC=D8=D3=D4=D7=CF, =CF=C2=DF=C5=CB=D4=CF=D7 = =C4=CC=D1 =C9=CE=D7=C5=D3=D4=C9=D2=CF=D7=C1=CE=C9=D1, = =D4=CF=D2=C7=CF=D7=D9=C8 =C9 =CF=C6=C9=D3=CE=D9=C8 = =D0=CC=CF=DD=C1=C4=C5=CA. =E2=C5=D3=D0=CC=C1=D4=CE=C1=D1 =D2=C5=C7=C9=D3=D4=D2=C1=C3=C9=D1, = =D0=D2=C9=D7=C9=CC=C5=C7=C9=C9 =C9 =D5=D7=C5=CC=C9=DE=C5=CE=C9=C5 = =D0=CF=D3=C5=DD=C5=CE=C9=D1 =F7=C1=DB=C5=C7=CF =D3=C1=CA=D4=C1.=20 =E4=CC=D1 =D4=CF=C7=CF, =DE=D4=CF=C2=D9 =CF =F7=C1=D3 =D5=DA=CE=C1=CC=C9 = =D7=D3=C5 =CE=C1=DB=C9 =D0=CF=D3=C5=D4=C9=D4=C5=CC=C9, =F7=D9 = =CD=CF=D6=C5=D4=C5 =D4=C1=CB=D6=C5 =C2=C5=D3=D0=CC=C1=D4=CE=CF = =CF=D3=D4=C1=D7=C9=D4=D8 =D3=D3=D9=CC=CB=D5 =CE=C1 =D3=D7=CF=CA = =D3=C1=CA=D4. =E5=D3=CC=C9 =D5 =F7=C1=D3 =C5=DD=C5 =CE=C5=D4 =D3=D7=CF=C5=C7=CF = =D3=C1=CA=D4=C1 =C9=CC=C9 =F7=D9 =C8=CF=D4=C9=D4=C5 = =D2=C1=DA=CD=C5=D3=D4=C9=D4=D8 =C5=DD=C5 =CF=C4=C9=CE =CE=C1 = =D3=C5=D2=D7=C5=D2=C5, =CB=D5=C4=C1 =C8=CF=C4=D1=D4 =CE=C5 = =D3=CC=D5=DE=C1=CA=CE=D9=C5 =CC=C0=C4=C9, =DC=D4=CF =CD=CF=D6=CE=CF = =D3=C4=C5=CC=C1=D4=D8 =D5 =CE=C1=D3 - =C2=D9=D3=D4=D2=CF =C9 = =D3=CF=D7=C5=D2=DB=C5=CE=CE=CF =C2=C5=D3=D0=CC=C1=D4=CE=CF. =E2=CF=CC=C5=C5 =D0=CF=C4=D2=CF=C2=CE=D5=C0 = =C9=CE=C6=CF=D2=CD=C1=C3=C9=C0 =CD=CF=D6=CE=CF =D0=CF=CC=D5=DE=C9=D4=D8 = =CE=C1=C2=D2=C1=D7 =D3=CC=CF=D7=CF =F2=C5=D3=D4=CB=CF =D7 = http://www.yandex.ru , =CC=C9=C2=CF =CF=D4=D0=D2=C1=D7=C9=D7 = =DA=C1=D0=D2=CF=D3 =D0=CF =C1=C4=D2=C5=D3=D5 inib@ncal.verio.com =FA=D7=CF=CE=C9=D4=C5, =D0=C9=DB=C9=D4=C5. =ED=D9 =D3 = =D5=C4=CF=D7=CF=CC=D8=D3=D4=D7=C9=C5=CD =CF=D4=D7=C5=D4=C9=CD =CE=C1 = =D7=D3=C5 =F7=C1=DB=C9 =D7=CF=D0=D2=CF=D3=D9. =D4. (095) 725-25-48, 725-25-47=20 ------=_NextPart_000_0005_01C0979C.095F3260 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable

=D4. (095) 725-25-48, 725-25-47

=E2=C1=DA=D9 = =C4=C1=CE=CE=D9=C8 =D0=CF =CB=D2=D5=D0=CE=D9=CD =DA=C1=CB=C1=DA=C1=CD = =D7=20 =CE=CF=D7=CF=CD =D3=D4=D2=CF=C9=D4=C5=CC=D8=D3=D4=D7=C5. =

=EF=D0=D4=CF=D7=D9=C5 = =D0=CF=D4=D2=C5=C2=C9=D4=C5=CC=C9 =C9 =CE=CF=D7=D9=C5 =D2=D9=CE=CB=C9=20 =D3=C2=D9=D4=C1 =F7=C1=DB=C5=CA =D0=D2=CF=C4=D5=CB=C3=C9=C9 =C9 = =D5=D3=CC=D5=C7.

=F7=D3=C5 =CE=CF=D7=CF=D3=D4=D2=CF=CA=CB=C9 =ED=CF=D3=CB=D7=D9. = =FE=D4=CF ? =E7=C4=C5 ? =EB=D4=CF ?

=EB=C1=D4=C1=CC=CF=C7 =D3=D4=D2=CF=D1=DD=C9=C8=D3=D1 =C9 = =D0=CC=C1=CE=C9=D2=D5=C5=CD=D9=C8 =CB = =D3=D4=D2=CF=C9=D4=C5=CC=D8=D3=D4=D7=D5 =CF=C2=DF=C5=CB=D4=CF=D7, = =DA=C1=CB=C1=DA=DE=C9=CB=CF=D7, =C7=C5=CE.=20 =D0=CF=C4=D2=D1=C4=DE=C9=CB=CF=D7, =C9=CE=D7=C5=D3=D4=CF=D2=CF=D7, = =D0=D2=CF=C5=CB=D4=C9=D2=CF=D7=DD=C9=CB=CF=D7.

=EB=CF=CE=D3=D5=CC=D8=D4=C1=C3=C9=C9 =C9 =D0=CF=C4=C2=CF=D2 = =DA=C5=CD=C5=CC=D8=CE=D9=C8 =D5=DE=C1=D3=D4=CB=CF=D7 =D0=CF=C4 = =D3=D4=D2=CF=C9=D4=C5=CC=D8=D3=D4=D7=CF, =CF=C2=DF=C5=CB=D4=CF=D7 = =C4=CC=D1=20 =C9=CE=D7=C5=D3=D4=C9=D2=CF=D7=C1=CE=C9=D1, =D4=CF=D2=C7=CF=D7=D9=C8 =C9 = =CF=C6=C9=D3=CE=D9=C8 =D0=CC=CF=DD=C1=C4=C5=CA.

=E2=C5=D3=D0=CC=C1=D4=CE=C1=D1 =D2=C5=C7=C9=D3=D4=D2=C1=C3=C9=D1, = =D0=D2=C9=D7=C9=CC=C5=C7=C9=C9 =C9 =D5=D7=C5=CC=C9=DE=C5=CE=C9=C5 = =D0=CF=D3=C5=DD=C5=CE=C9=D1 =F7=C1=DB=C5=C7=CF =D3=C1=CA=D4=C1.=20

=E4=CC=D1 =D4=CF=C7=CF, =DE=D4=CF=C2=D9 =CF =F7=C1=D3 = =D5=DA=CE=C1=CC=C9 =D7=D3=C5 =CE=C1=DB=C9 = =D0=CF=D3=C5=D4=C9=D4=C5=CC=C9, =F7=D9 =CD=CF=D6=C5=D4=C5 = =D4=C1=CB=D6=C5 =C2=C5=D3=D0=CC=C1=D4=CE=CF=20 =CF=D3=D4=C1=D7=C9=D4=D8 =D3=D3=D9=CC=CB=D5 =CE=C1 =D3=D7=CF=CA = =D3=C1=CA=D4.

=E5=D3=CC=C9 =D5 =F7=C1=D3 =C5=DD=C5 =CE=C5=D4 =D3=D7=CF=C5=C7=CF = =D3=C1=CA=D4=C1 =C9=CC=C9 =F7=D9 =C8=CF=D4=C9=D4=C5 = =D2=C1=DA=CD=C5=D3=D4=C9=D4=D8 =C5=DD=C5 =CF=C4=C9=CE =CE=C1 = =D3=C5=D2=D7=C5=D2=C5,=20 =CB=D5=C4=C1 =C8=CF=C4=D1=D4 =CE=C5 =D3=CC=D5=DE=C1=CA=CE=D9=C5 = =CC=C0=C4=C9, =DC=D4=CF =CD=CF=D6=CE=CF =D3=C4=C5=CC=C1=D4=D8 =D5 = =CE=C1=D3 - =C2=D9=D3=D4=D2=CF =C9 =D3=CF=D7=C5=D2=DB=C5=CE=CE=CF=20 =C2=C5=D3=D0=CC=C1=D4=CE=CF.

=E2=CF=CC=C5=C5 =D0=CF=C4=D2=CF=C2=CE=D5=C0 = =C9=CE=C6=CF=D2=CD=C1=C3=C9=C0 =CD=CF=D6=CE=CF =D0=CF=CC=D5=DE=C9=D4=D8 = =CE=C1=C2=D2=C1=D7 =D3=CC=CF=D7=CF =F2=C5=D3=D4=CB=CF =D7 http://www.yandex.ru , =CC=C9=C2=CF = =CF=D4=D0=D2=C1=D7=C9=D7 =DA=C1=D0=D2=CF=D3 =D0=CF=20 =C1=C4=D2=C5=D3=D5 inib@ncal.verio.com

=FA=D7=CF=CE=C9=D4=C5, =D0=C9=DB=C9=D4=C5. =ED=D9 =D3 = =D5=C4=CF=D7=CF=CC=D8=D3=D4=D7=C9=C5=CD =CF=D4=D7=C5=D4=C9=CD =CE=C1 = =D7=D3=C5 =F7=C1=DB=C9=20 =D7=CF=D0=D2=CF=D3=D9.

=D4. (095) = 725-25-48, 725-25-47

------=_NextPart_000_0005_01C0979C.095F3260-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 11:42:20 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E01437B402; Thu, 21 Feb 2002 11:42:18 -0800 (PST) Received: (from billf@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LJfgV15381; Thu, 21 Feb 2002 11:41:42 -0800 (PST) (envelope-from billf) Date: Thu, 21 Feb 2002 11:41:42 -0800 (PST) From: Message-Id: <200202211941.g1LJfgV15381@freefall.freebsd.org> To: e0026813@stud3.tuwien.ac.at, billf@FreeBSD.org, freebsd-bugs@FreeBSD.org, billf@FreeBSD.org Subject: Re: misc/35181: [PATCH] minor change to games/primes/pr_tbl.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] minor change to games/primes/pr_tbl.c State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Thu Feb 21 11:41:13 PST 2002 State-Changed-Why: fixed in rev 1.4 of src/games/primes/pr_tbl.c, thanks. Responsible-Changed-From-To: freebsd-bugs->billf Responsible-Changed-By: billf Responsible-Changed-When: Thu Feb 21 11:41:13 PST 2002 Responsible-Changed-Why: i committed the change http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35181 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 13:30:34 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E119E37B493 for ; Thu, 21 Feb 2002 13:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1LLU1K39711; Thu, 21 Feb 2002 13:30:01 -0800 (PST) (envelope-from gnats) Date: Thu, 21 Feb 2002 13:30:01 -0800 (PST) Message-Id: <200202212130.g1LLU1K39711@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Aaron D. Gifford" Subject: Re: kern/34242: Off-by-one bug in /usr/src/sys/crypto/sha2/sha2.c - easy fix included (patch) Reply-To: "Aaron D. Gifford" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/34242; it has been noted by GNATS. From: "Aaron D. Gifford" To: freebsd-gnats-submit@FreeBSD.org, agifford@infowest.com Cc: Subject: Re: kern/34242: Off-by-one bug in /usr/src/sys/crypto/sha2/sha2.c - easy fix included (patch) Date: Thu, 21 Feb 2002 14:26:16 -0700 Just following up on this bug report to see if anyone has actually looked at it yet. FYI, I am the original author of the file (sha2.c) in question. This PR is a bug fix. The KAME sources already have this very same fix. Since I use FreeBSD regularly, I think it would be nice to get my favorite OS fixed too. Thank you. Aaron out. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 17:20: 6 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 34FB637B404 for ; Thu, 21 Feb 2002 17:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1M1K1591582; Thu, 21 Feb 2002 17:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E51537B404 for ; Thu, 21 Feb 2002 17:15:08 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1M1F8d90824; Thu, 21 Feb 2002 17:15:08 -0800 (PST) (envelope-from nobody) Message-Id: <200202220115.g1M1F8d90824@freefall.freebsd.org> Date: Thu, 21 Feb 2002 17:15:08 -0800 (PST) From: Andrew Mobbs To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/35195: msync performance on large files Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35195 >Category: kern >Synopsis: msync performance on large files >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 Feb 21 17:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Andrew Mobbs >Release: 4.5-RC >Organization: >Environment: FreeBSD kadath.relativity.greenend.org.uk 4.5-RC FreeBSD 4.5-RC #1: Sat Jan 12 13:49:05 GMT 2002 root@kadath.relativity.greenend.org.uk:/usr/obj/usr/src/sys/011218kadath i386 >Description: I wrote a test application that reflects the I/O load of an application I have in mind. This mmaps a 1GB file, and does 100,000 operations to it, then msyncs. Each operation consists of a read/modify/write then a write to a random location of the file. The test platform is an Athlon 1.3GHz, 512MB RAM, with the test file on a single ATA-66 hard disk. There is little else using the system during the test, and nothing using the disk the test file is on. The application takes 529 seconds to complete its workload, with the disk at 100% busy, and I/O at 2.5 - 3MB.s. The application then calls msync, this takes a total of 2593 seconds to complete, with I/O at about .6 MB/s. During the initial phase, the RSS of the application grows to approximatly 300MB, during the final phase, the RSS slowly shrinks. If I'm reading spec_fsync in spec_vnops.c correctly, on msync the kernel is walking the dirty buffer list by age, thus writing out about 300MB of blocks in a totally random order, in 8kB chunks. >How-To-Repeat: On a quiet system with plenty of spare memory, on a filesystem with at least 1GB free run: http://www.chiark.greenend.org.uk/~andrewm/mmt.c The test will take slightly less than 1 hour to complete on an equivalent system to the above mentioned. >Fix: spec_vnops.c:spec_fsync() could benefit from a scatter-gather algorithm to collate blocks and perform I/O in an efficient order. This could provide a significant speed-up to this test. >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 Feb 21 20: 2:22 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 36C3337B402; Thu, 21 Feb 2002 20:02:19 -0800 (PST) Received: (from johan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1M41nM26561; Thu, 21 Feb 2002 20:01:49 -0800 (PST) (envelope-from johan) Date: Thu, 21 Feb 2002 20:01:49 -0800 (PST) From: Message-Id: <200202220401.g1M41nM26561@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ume@FreeBSD.org Subject: Re: kern/34242: Off-by-one bug in /usr/src/sys/crypto/sha2/sha2.c - easy fix included (patch) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Off-by-one bug in /usr/src/sys/crypto/sha2/sha2.c - easy fix included (patch) Responsible-Changed-From-To: freebsd-bugs->ume Responsible-Changed-By: johan Responsible-Changed-When: Thu Feb 21 20:01:03 PST 2002 Responsible-Changed-Why: Over to KAME maintainer who imported the stuff. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=34242 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 20:22:23 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 91DF037B404; Thu, 21 Feb 2002 20:22:19 -0800 (PST) Received: (from johan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1M4Fwf32147; Thu, 21 Feb 2002 20:15:58 -0800 (PST) (envelope-from johan) Date: Thu, 21 Feb 2002 20:15:58 -0800 (PST) From: Message-Id: <200202220415.g1M4Fwf32147@freefall.freebsd.org> To: rock@cs.uni-sb.de, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/9902: error in german (and some other) locale sorting Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: error in german (and some other) locale sorting State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Thu Feb 21 20:14:07 PST 2002 State-Changed-Why: This seems to have been fixed, with 4.5-RELEASE I get: k@numeri ~/empty >touch sl ss su k@numeri ~/empty >ls sl ss su k@numeri ~/empty >env LANG=de_DE.ISO_8859-1 ls sl ss su k@numeri ~/empty >env LANG=es_ES.ISO_8859-1 ls sl ss su k@numeri ~/empty >env LANG=fr_FR.ISO_8859-1 ls sl ss su http://www.FreeBSD.org/cgi/query-pr.cgi?pr=9902 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 20:30: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DD00337B416 for ; Thu, 21 Feb 2002 20:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1M4U1r34205; Thu, 21 Feb 2002 20:30:01 -0800 (PST) (envelope-from gnats) Date: Thu, 21 Feb 2002 20:30:01 -0800 (PST) Message-Id: <200202220430.g1M4U1r34205@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: bin/9868: Patch to add "date -a" Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/9868; it has been noted by GNATS. From: Johan Karlsson To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/9868: Patch to add "date -a" Date: Fri, 22 Feb 2002 05:28:06 +0100 See also PR bin/10610 for another possible patch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 20:32:20 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5822837B400; Thu, 21 Feb 2002 20:32:19 -0800 (PST) Received: (from johan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1M4T7V34063; Thu, 21 Feb 2002 20:29:07 -0800 (PST) (envelope-from johan) Date: Thu, 21 Feb 2002 20:29:07 -0800 (PST) From: Message-Id: <200202220429.g1M4T7V34063@freefall.freebsd.org> To: haug@hawaii.conterra.com, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/10610: New options to date to slowly adjust time with adjtime(2) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New options to date to slowly adjust time with adjtime(2) State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Thu Feb 21 20:28:30 PST 2002 State-Changed-Why: Dup of PR bin/9868 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=10610 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 21 20:40:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 29A2037B416 for ; Thu, 21 Feb 2002 20:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1M4e2m35739; Thu, 21 Feb 2002 20:40:02 -0800 (PST) (envelope-from gnats) Received: from descent.robbins.dropbear.id.au (156.a.005.mel.iprimus.net.au [210.50.40.156]) by hub.freebsd.org (Postfix) with ESMTP id 31D0B37B420; Thu, 21 Feb 2002 20:34:43 -0800 (PST) Received: (from tim@localhost) by descent.robbins.dropbear.id.au (8.11.6/8.11.6) id g1M4XsV38018; Fri, 22 Feb 2002 15:33:54 +1100 (EST) (envelope-from tim) Message-Id: <200202220433.g1M4XsV38018@descent.robbins.dropbear.id.au> Date: Fri, 22 Feb 2002 15:33:54 +1100 (EST) From: Tim Robbins Reply-To: Tim Robbins To: FreeBSD-gnats-submit@freebsd.org Cc: freebsd-standards@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/35201: link and unlink are not SUSv2-compliant as the manpage states Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35201 >Category: bin >Synopsis: link and unlink are not SUSv2-compliant as the manpage states >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 Feb 21 20:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Tim Robbins >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD descent.robbins.dropbear.id.au 4.5-STABLE FreeBSD 4.5-STABLE #4: Fri Feb 15 13:31:25 EST 2002 tim@descent.robbins.dropbear.id.au:/usr/obj/usr/src/sys/DESCENT i386 >Description: The manual pages for link and unlink, which are 'part of' ln and rm, and share the same manual pages, claim that these utilities are SUSV2 compliant. This is not the case. From The Single UNIX Specification, Version 2, XBD, Utility Argument Syntax: Guideline 10: "The argument -- should be accepted as a delimiter indicating the end of options. Any following arguments should be treated as operands, even if they begin with the "-" character. The -- argument should not be used as an option or as an operand. Applications calling any utility with a first operand starting with - should usually specify --, as indicated by Guideline 10, to mark the end of the options ..." "... the Guidelines are rules for the standard utilities that claim conformance to them." link and unlink, therefore, should accept the "--" delimiter. Another problem is that when link's 2nd operand is a directory, it creates a link in that directory to the file named by the 1st operand, which is not correct. SUSV2 specifies that "link a b" is performs the equivalent of the function call link(a, b). unlink has the same problem: SUSV2 specifies it must call unlink() (which means it shouldn't treat whiteouts specially or try to reset immutable/append flags). >How-To-Repeat: N/A >Fix: Correct the manual pages by deleting the claims of SUSV2 conformance, or apply these patches that implement the correct behaviour. Index: ln/ln.c =================================================================== RCS file: /home/ncvs/src/bin/ln/ln.c,v retrieving revision 1.23 diff -u -r1.23 ln.c --- ln/ln.c 2002/02/02 06:44:35 1.23 +++ ln/ln.c 2002/02/22 04:00:47 @@ -85,11 +85,14 @@ else ++p; if (strcmp(p, "link") == 0) { - if (argc == 3) { - linkf = link; - exit(linkit(argv[1], argv[2], 0)); - } else + argv++, argc--; + if (argc > 0 && strncmp(*argv, "--", 2) == 0) + argv++, argc--; + if (argc != 2) usage(); + if (link(argv[0], argv[1]) != 0) + err(1, "%s to %s", argv[0], argv[1]); + exit(0); } while ((ch = getopt(argc, argv, "fhinsv")) != -1) Index: rm/rm.c =================================================================== RCS file: /home/ncvs/src/bin/rm/rm.c,v retrieving revision 1.36 diff -u -r1.36 rm.c --- rm/rm.c 2002/02/14 01:59:47 1.36 +++ rm/rm.c 2002/02/22 04:07:03 @@ -95,11 +95,14 @@ else ++p; if (strcmp(p, "unlink") == 0) { - if (argc == 2) { - rm_file(&argv[1]); - exit(eval); - } else + argv++, argc--; + if (argc > 0 && strncmp(*argv, "--", 2) == 0) + argv++, argc--; + if (argc != 1) usage(); + if (unlink(*argv) != 0) + err(1, "%s", *argv); + exit(0); } Pflag = rflag = 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 Fri Feb 22 1: 0: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DD58A37B400 for ; Fri, 22 Feb 2002 01:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1M903Y00431; Fri, 22 Feb 2002 01:00:03 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 01:00:03 -0800 (PST) Message-Id: <200202220900.g1M903Y00431@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Bill McNAMARA" Subject: Re: misc/35150: FreeBSD 4.5 won't install ... out of inodes Reply-To: "Bill McNAMARA" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/35150; it has been noted by GNATS. From: "Bill McNAMARA" To: , Cc: Subject: Re: misc/35150: FreeBSD 4.5 won't install ... out of inodes Date: Fri, 22 Feb 2002 09:58:00 +0100 I've come across exactly the same problem on a 2G disk drive Auto FS layout. I resolve it by changing the newfs options on install.. well rather removing all options. ie: just leave the newfs (and not -b 16k -...) Defaults should be changed. Later, Bill -- William McNAMARA mailto:wimac@tidhom1g.grenoble.hp.com B1N2H1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 22 2:26:14 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from gate.uai.etel.ru (gate.uai.etel.ru [195.38.57.243]) by hub.freebsd.org (Postfix) with ESMTP id CF7D837B400 for ; Fri, 22 Feb 2002 02:26:06 -0800 (PST) Received: by sendmail of gate.uai.etel.ru id g1MAQ7v17426 for ; Fri, 22 Feb 2002 15:26:07 +0500 X-Authentication-Warning: gate.uai.etel.ru: smap set sender to using -f Received: from by gate.uai.etel.ru via smap (V2.1) id xma017316; Fri, 22 Feb 02 15:24:11 +0500 Received: by sendmail with ESMTP id g1MAOA0u006199 from vlad@telecom.ural.ru for ; Fri, 22 Feb 2002 15:24:10 +0500 Received: by sendmail id g1MAO9hT006198 for freebsd-bugs@FreeBSD.ORG.KAV; Fri, 22 Feb 2002 15:24:09 +0500 Received: by sendmail with ESMTP id g1MAO90u006190; Fri, 22 Feb 2002 15:24:09 +0500 Date: Fri, 22 Feb 2002 15:24:08 +0500 From: "Vladimir G. Drobyshevsky" X-Mailer: The Bat! (v1.54 Beta/8) Reply-To: "Vladimir G. Drobyshevsky" Organization: Computer saloons "TelescOp" X-Priority: 3 (Normal) Message-ID: <13314046938.20020222152408@telecom.ural.ru> To: freebsd-bugs@FreeBSD.ORG, freebsd-current@FreeBSD.ORG Subject: Is any patch to situation with bad linking library on -CURRENT? MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Have a nice day! I'm sorry for possible beginning of flame, but is there exist real solution for bad linking library problem on -CURRENT? I was noticed about this problem about two or three weeks ago, and don't see nothing except discussions about new binutils. May be I was inattentive but can anybody tell me (may be, for us?) how to fix that problem? I haven't enough knowledge to solve this by my hand for my sorry and need assistance. I have AMD Duron, MB Epox 8KTA3+, IBM 60 Gb, Radeon 8500, and 5.0-CURRENT installed on that. The first problem was occured is coredumps any program compiled with imlib. It was come to light on gnomelibs building - on configure stage conftest program was exit with bus error message and coredumps. The second problem is mplayer exits with the same message (bus error) right after launch. Once again excuse me for anxiety and possible impoliteness. Sincerelly yours, Vladimir G. Drobyshevsky To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 22 4: 9:29 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from zibbi.icomtek.csir.co.za (zibbi.icomtek.csir.co.za [146.64.24.58]) by hub.freebsd.org (Postfix) with ESMTP id B12A037B400; Fri, 22 Feb 2002 04:09:15 -0800 (PST) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.11.6/8.11.6) id g1MC8o229256; Fri, 22 Feb 2002 14:08:50 +0200 (SAT) (envelope-from jhay) From: John Hay Message-Id: <200202221208.g1MC8o229256@zibbi.icomtek.csir.co.za> Subject: Re: Is any patch to situation with bad linking library on -CURRENT? In-Reply-To: <13314046938.20020222152408@telecom.ural.ru> from "Vladimir G. Drobyshevsky" at "Feb 22, 2002 03:24:08 pm" To: vlad@telecom.ural.ru (Vladimir G. Drobyshevsky) Date: Fri, 22 Feb 2002 14:08:50 +0200 (SAT) Cc: freebsd-bugs@FreeBSD.ORG, freebsd-current@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 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > > I'm sorry for possible beginning of flame, but is there exist real > solution for bad linking library problem on -CURRENT? I was noticed > about this problem about two or three weeks ago, and don't see nothing > except discussions about new binutils. It looks like the import for binutils today fixed it. At least my test case of libpng does not coredump anymore. I'll see how far a release gets. It will probably not finish because I think the dhcp stuff in the crunch files are still broken. John -- John Hay -- John.Hay@icomtek.csir.co.za / jhay@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 Feb 22 4:50: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C0A3437B402 for ; Fri, 22 Feb 2002 04:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MCo2a62512; Fri, 22 Feb 2002 04:50:02 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 04:50:02 -0800 (PST) Message-Id: <200202221250.g1MCo2a62512@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: bin/35201: link and unlink are not SUSv2-compliant as the manpage states Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35201; it has been noted by GNATS. From: Bruce Evans To: Tim Robbins Cc: , Subject: Re: bin/35201: link and unlink are not SUSv2-compliant as the manpage states Date: Fri, 22 Feb 2002 23:40:19 +1100 (EST) On Fri, 22 Feb 2002, Tim Robbins wrote: > >Description: > The manual pages for link and unlink, which are 'part of' ln and rm, > and share the same manual pages, claim that these utilities are SUSV2 > compliant. This is not the case. > > >From The Single UNIX Specification, Version 2, XBD, Utility Argument Syntax: > Guideline 10: > "The argument -- should be accepted as a delimiter indicating the end of > options. Any following arguments should be treated as operands, even if they Can you quote POSIX.1-2001? It is more authoritative, and almost as easy to find. > ... > link and unlink, therefore, should accept the "--" delimiter. The fix for this part should use getopt(3) instead of yet more home made arg parsing. getopt(3) gives special semantics "--" automagically. I think they are the same as specified in the guidelines. Otherwise, many other utilities would have this bug. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 22 6: 0:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A14837B402 for ; Fri, 22 Feb 2002 06:00:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1ME06d86504; Fri, 22 Feb 2002 06:00:06 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 06:00:06 -0800 (PST) Message-Id: <200202221400.g1ME06d86504@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Daniel O'Connor" Subject: Re: i386/35182: APMD does not set close on exec for /dev/apm* Reply-To: "Daniel O'Connor" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/35182; it has been noted by GNATS. From: "Daniel O'Connor" To: freebsd-gnats-submit@FreeBSD.org, darius@dons.net.au Cc: Subject: Re: i386/35182: APMD does not set close on exec for /dev/apm* Date: Sat, 23 Feb 2002 00:21:49 +1030 Also needs.. Index: apmd.c =================================================================== RCS file: /usr/CVS-Repository/src/usr.sbin/apmd/apmd.c,v retrieving revision 1.3.2.1 diff -u -r1.3.2.1 apmd.c --- apmd.c 13 Aug 2001 17:30:30 -0000 1.3.2.1 +++ apmd.c 22 Feb 2002 13:43:37 -0000 @@ -119,6 +119,9 @@ goto out; case 0: /* child process */ + signal(SIGHUP, SIG_DFL); + signal(SIGCHLD, SIG_DFL); + signal(SIGTERM, SIG_DFL); execl(_PATH_BSHELL, "sh", "-c", p->line, (char *)NULL); _exit(127); default: To allow children to be signalled as they expect. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 22 6:10:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B78F37B402 for ; Fri, 22 Feb 2002 06:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MEA4l91870; Fri, 22 Feb 2002 06:10:04 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 06:10:04 -0800 (PST) Message-Id: <200202221410.g1MEA4l91870@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: misc/35150: FreeBSD 4.5 won't install ... out of inodes Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/35150; it has been noted by GNATS. From: "Crist J. Clark" To: Rex Buddenberg Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: misc/35150: FreeBSD 4.5 won't install ... out of inodes Date: Fri, 22 Feb 2002 06:04:32 -0800 Is it possible to get the 'df -i' output for the partitions on the drive? -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@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 Feb 22 6:10:25 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CC54F37B400 for ; Fri, 22 Feb 2002 06:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MEA1A91852; Fri, 22 Feb 2002 06:10:01 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 06:10:01 -0800 (PST) Message-Id: <200202221410.g1MEA1A91852@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Tim Robbins Subject: Re: bin/35201: link and unlink are not SUSv2-compliant as the manpage states Reply-To: Tim Robbins Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35201; it has been noted by GNATS. From: Tim Robbins To: Bruce Evans Cc: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-standards@FreeBSD.ORG Subject: Re: bin/35201: link and unlink are not SUSv2-compliant as the manpage states Date: Sat, 23 Feb 2002 01:00:50 +1100 On Fri, Feb 22, 2002 at 11:40:19PM +1100, Bruce Evans wrote: > On Fri, 22 Feb 2002, Tim Robbins wrote: > > > >Description: > > The manual pages for link and unlink, which are 'part of' ln and rm, > > and share the same manual pages, claim that these utilities are SUSV2 > > compliant. This is not the case. > > > > >From The Single UNIX Specification, Version 2, XBD, Utility Argument Syntax: > > Guideline 10: > > "The argument -- should be accepted as a delimiter indicating the end of > > options. Any following arguments should be treated as operands, even if they > > Can you quote POSIX.1-2001? It is more authoritative, and almost as > easy to find. IEEE Std 1003.1-2001, Base Definitions, Utility Conventions, Utility Argument Syntax: Guideline 10: "The argument -- should be accepted as a delimiter indicating the end of options. Any following arguments should be treated as operands, even if they begin with the '-' character. The -- argument should not be used as an option or as an operand." "The utilities in the Shell and Utilities volume of IEEE Std 1003.1-2001 that claim conformance to these guidelines shall conform completely to these guidelines as if these guidelines contained the term "shall" instead of "should"..." P1003.2-1992 is almost word-for-word the same. > > > ... > > link and unlink, therefore, should accept the "--" delimiter. > > The fix for this part should use getopt(3) instead of yet more home > made arg parsing. getopt(3) gives special semantics "--" automagically. > I think they are the same as specified in the guidelines. Otherwise, > many other utilities would have this bug. Yes, getopt(3)'s handling of -- is the same as that specified by the guidelines. I've adjusted the patches to rm and ln to use getopt instead of doing it themselves. I was hesitant in doing that at first because it breaks "unlink -foo", but P1003.2-1992 says: "Applications calling any utility with a first operand starting with "-" should usually specify "--", as indicated by Guideline 10, to mark the end of the options. This is true even if the Synopsis in this standard does not specify any options; implementations may provide options as extensions to this standard." ... and I'm not sure anyone really uses link/unlink, anyway. Index: rm/rm.c =================================================================== RCS file: /home/ncvs/src/bin/rm/rm.c,v retrieving revision 1.36 diff -u -r1.36 rm.c --- rm/rm.c 2002/02/14 01:59:47 1.36 +++ rm/rm.c 2002/02/22 13:46:57 @@ -95,11 +95,15 @@ else ++p; if (strcmp(p, "unlink") == 0) { - if (argc == 2) { - rm_file(&argv[1]); - exit(eval); - } else + if (getopt(argc, argv, "") != -1) usage(); + argc -= optind; + argv += optind; + if (argc != 1) + usage(); + if (unlink(*argv) != 0) + err(1, "%s", *argv); + exit(0); } Pflag = rflag = 0; Index: ln/ln.c =================================================================== RCS file: /home/ncvs/src/bin/ln/ln.c,v retrieving revision 1.23 diff -u -r1.23 ln.c --- ln/ln.c 2002/02/02 06:44:35 1.23 +++ ln/ln.c 2002/02/22 13:46:41 @@ -85,11 +85,15 @@ else ++p; if (strcmp(p, "link") == 0) { - if (argc == 3) { - linkf = link; - exit(linkit(argv[1], argv[2], 0)); - } else + if (getopt(argc, argv, "") != -1) usage(); + argc -= optind; + argv += optind; + if (argc != 2) + usage(); + if (link(argv[0], argv[1]) != 0) + err(1, "%s to %s", argv[0], argv[1]); + exit(0); } while ((ch = getopt(argc, argv, "fhinsv")) != -1) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 22 6:15:52 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by hub.freebsd.org (Postfix) with ESMTP id 10FD737B402 for ; Fri, 22 Feb 2002 06:15:49 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16eGXE-000E99-00; Fri, 22 Feb 2002 16:18:52 +0200 From: Sheldon Hearn To: Tim Robbins Cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/35201: link and unlink are not SUSv2-compliant as the manpage states In-reply-to: Your message of "Fri, 22 Feb 2002 06:10:01 PST." <200202221410.g1MEA1A91852@freefall.freebsd.org> Date: Fri, 22 Feb 2002 16:18:52 +0200 Message-ID: <54382.1014387532@axl.seasidesoftware.co.za> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 22 Feb 2002 06:10:01 PST, Tim Robbins wrote: > I've adjusted the patches to rm and ln to use getopt instead of doing it > themselves. I was hesitant in doing that at first because it breaks > "unlink -foo", but P1003.2-1992 says: > "Applications calling any utility with a first operand starting with "-" > should usually specify "--", as indicated by Guideline 10, to mark the > end of the options. This is true even if the Synopsis in this standard > does not specify any options; implementations may provide options as > extensions to this standard." > ... and I'm not sure anyone really uses link/unlink, anyway. Argh! The whole point of these alternatives to ln/rm is that they have a simple, optionless interface. :-( 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 Feb 22 6:17: 9 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by hub.freebsd.org (Postfix) with ESMTP id F28D737B416 for ; Fri, 22 Feb 2002 06:17:03 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16eGYW-000E9n-00; Fri, 22 Feb 2002 16:20:12 +0200 From: Sheldon Hearn To: Tim Robbins Cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/35201: link and unlink are not SUSv2-compliant as the manpage states In-reply-to: Your message of "Fri, 22 Feb 2002 16:18:52 +0200." <54382.1014387532@axl.seasidesoftware.co.za> Date: Fri, 22 Feb 2002 16:20:12 +0200 Message-ID: <54422.1014387612@axl.seasidesoftware.co.za> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 22 Feb 2002 16:18:52 +0200, Sheldon Hearn wrote: > The whole point of these alternatives to ln/rm is that they have a > simple, optionless interface. :-( Bleh, what an entirely useless response. :-) I should have gone on to say... However, standards conformance is probably important, even here. If scripts expect 'link -- foo bar' to work, and yet it breaks in FreeBSD, that'll be bad. 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 Feb 22 6:20: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7432837B402 for ; Fri, 22 Feb 2002 06:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MEK2Z93188; Fri, 22 Feb 2002 06:20:02 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 06:20:02 -0800 (PST) Message-Id: <200202221420.g1MEK2Z93188@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: gnu/35156: suggestion: hard link /usr/bin/awk to /usr/bin/gawk Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR gnu/35156; it has been noted by GNATS. From: Sheldon Hearn To: Peter Pentchev Cc: bug-followup@freebsd.org Subject: Re: gnu/35156: suggestion: hard link /usr/bin/awk to /usr/bin/gawk Date: Fri, 22 Feb 2002 16:16:13 +0200 On Wed, 20 Feb 2002 12:30:01 PST, Peter Pentchev wrote: > Well, FreeBSD's awk is GNU awk in 4.x only now; Bell Labs' awk was imported > into -CURRENT a while ago. So, this hardlink should only exist in 4.x, > which makes it a somewhat less than perfect solution. As the originator says, such a hardlink would make life difficult for users of the port. And the suggestion to keep gawk in the base system up to date and do away with the port isn't feasible. There's almost always going to be a latest version that we'd rather have folks play with from ports, rather than inflicting as yet unknown code on all stable users. 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 Feb 22 6:20:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 56C1C37B405 for ; Fri, 22 Feb 2002 06:20:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MEK5j93203; Fri, 22 Feb 2002 06:20:05 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 06:20:05 -0800 (PST) Message-Id: <200202221420.g1MEK5j93203@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: gnu/35156: suggestion: hard link /usr/bin/awk to /usr/bin/gawk Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR gnu/35156; it has been noted by GNATS. From: Peter Pentchev To: Sheldon Hearn Cc: bug-followup@freebsd.org Subject: Re: gnu/35156: suggestion: hard link /usr/bin/awk to /usr/bin/gawk Date: Fri, 22 Feb 2002 16:18:46 +0200 On Fri, Feb 22, 2002 at 04:16:13PM +0200, Sheldon Hearn wrote: > > > On Wed, 20 Feb 2002 12:30:01 PST, Peter Pentchev wrote: > > > Well, FreeBSD's awk is GNU awk in 4.x only now; Bell Labs' awk was imported > > into -CURRENT a while ago. So, this hardlink should only exist in 4.x, > > which makes it a somewhat less than perfect solution. > > As the originator says, such a hardlink would make life difficult for > users of the port. > > And the suggestion to keep gawk in the base system up to date and do > away with the port isn't feasible. There's almost always going to be a > latest version that we'd rather have folks play with from ports, rather > than inflicting as yet unknown code on all stable users. Okay, maybe I did not make myself quite clear :) My personal opinion was expressed in the second paragraph, where I said that the link should be made only by people who really think they need it, not by everyone, not by FreeBSD itself. It seems that the originator kind of agrees with that, or at least that's how I interpret his response to... errm oops! It's just now that I see that I have not really forwarded his response to GNATS or even the list.. Stay tuned for a forwarded message from the submitter; I think this PR should be closed after that message is filed into the audit trail. G'luck, Peter -- Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 What would this sentence be like if pi were 3? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 22 6:30:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A91537B416 for ; Fri, 22 Feb 2002 06:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MEU2B94774; Fri, 22 Feb 2002 06:30:02 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 06:30:02 -0800 (PST) Message-Id: <200202221430.g1MEU2B94774@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: gnu/35156: suggestion: hard link /usr/bin/awk to /usr/bin/gawk Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR gnu/35156; it has been noted by GNATS. From: Peter Pentchev To: bug-followup@FreeBSD.org Cc: Subject: Re: gnu/35156: suggestion: hard link /usr/bin/awk to /usr/bin/gawk Date: Fri, 22 Feb 2002 16:20:21 +0200 Yeah, leave it to me to not notice a message addressed to me only, and not to GNATS too.. Forwarding a message from the PR originator to GNATS to get it into the audit trail. (Hopefully this does not count as forwarding personal e-mail to a list; I do believe that the submitter told me nothing that he would not have told others :) G'luck, Peter -- Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 "yields falsehood, when appended to its quotation." yields falsehood, when appended to its quotation. ----- Forwarded message from "Eric S. Van Gyzen" ----- From: "Eric S. Van Gyzen" Organization: Duke University, ISDS To: Peter Pentchev Subject: Re: gnu/35156: suggestion: hard link /usr/bin/awk to /usr/bin/gawk Date: Wed, 20 Feb 2002 16:32:12 -0500 In-Reply-To: <20020220204356.J334@straylight.oblivion.bg> Peter Pentchev wrote: > On Wed, Feb 20, 2002 at 12:04:13PM -0800, Eric S. Van Gyzen wrote: > > >Synopsis: suggestion: hard link /usr/bin/awk to /usr/bin/gawk > > Well, FreeBSD's awk is GNU awk in 4.x only now; Bell Labs' awk was > imported into -CURRENT a while ago. So, this hardlink should only exist > in 4.x, which makes it a somewhat less than perfect solution. Oh, that changes matters. I agree that it is less than perfect; when the 5- branch becomes -STABLE, ports/lang/gawk will be the only solution, so I should start doing that now. Thanks for the help. I really should track -CURRENT... -Eric -- Eric S. Van Gyzen 919.684.5419 Sr Systems Programmer eric@stat.duke.edu ISDS, Duke University 220 Old Chemistry Bldg PGP Public Key: http://www.stat.duke.edu/~vangyzen/pgpkey.asc ----- End forwarded message ----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 22 6:30:14 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 09A1F37B405 for ; Fri, 22 Feb 2002 06:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MEU4p94783; Fri, 22 Feb 2002 06:30:04 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 06:30:04 -0800 (PST) Message-Id: <200202221430.g1MEU4p94783@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/35201: link and unlink are not SUSv2-compliant as the manpage states Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35201; it has been noted by GNATS. From: Peter Pentchev To: Sheldon Hearn Cc: Tim Robbins , bug-followup@FreeBSD.org, freebsd-standards@FreeBSD.org Subject: Re: bin/35201: link and unlink are not SUSv2-compliant as the manpage states Date: Fri, 22 Feb 2002 16:22:14 +0200 On Fri, Feb 22, 2002 at 04:20:12PM +0200, Sheldon Hearn wrote: > > > On Fri, 22 Feb 2002 16:18:52 +0200, Sheldon Hearn wrote: > > > The whole point of these alternatives to ln/rm is that they have a > > simple, optionless interface. :-( > > Bleh, what an entirely useless response. :-) > > I should have gone on to say... > > However, standards conformance is probably important, even here. If > scripts expect 'link -- foo bar' to work, and yet it breaks in FreeBSD, > that'll be bad. I agree with that; and IMHO, since these utilities are really *not* expected to do any options parsing, we should just accept Tim's original patches, even as they avoid getopt(3). G'luck, Peter -- Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 I've heard that this sentence is a rumor. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 22 6:30:23 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C3A337B402 for ; Fri, 22 Feb 2002 06:30:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MEU5c94789; Fri, 22 Feb 2002 06:30:05 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 06:30:05 -0800 (PST) Message-Id: <200202221430.g1MEU5c94789@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nat Burbridge Subject: Re: i386/35101: cvusupit and other packages won't extract Reply-To: Nat Burbridge Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/35101; it has been noted by GNATS. From: Nat Burbridge To: freebsd-gnats-submit@FreeBSD.org, natb@jong.com Cc: Subject: Re: i386/35101: cvusupit and other packages won't extract Date: Thu, 21 Feb 2002 14:23:37 -0800 Hi FreeBSD-bugs, I mentioned in the last communique that gnome 1.4.1b2_1, when extracted, reports an error, concerning absence of oaf-0, although oaf-0.6.7 does exist and does extract. Both have folders assigned to them. So I assume Gnome is trying to access the wrong file name. Whatever the case, while in Gnome several options doon't seem to work. The screensaver doesn't work. The diagnostic screen after logout says something about unknown "--timeout" option. Also the Nautilus program doesn't work implicating an OAF problem. I have changed to KDE which works much better. However I could not find a phone dialer program in KDE ( or Gnome for that matter) to use the web browsers. Of course I can try to find out how to do this in the shell CLI. Sincerely, Thomas ("Nat") Burbridge To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 22 6:49: 5 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id D13D537B400 for ; Fri, 22 Feb 2002 06:49:00 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id BAA13657; Sat, 23 Feb 2002 01:48:25 +1100 Date: Sat, 23 Feb 2002 01:48:36 +1100 (EST) From: Bruce Evans X-X-Sender: To: Sheldon Hearn Cc: Tim Robbins , Subject: Re: bin/35201: link and unlink are not SUSv2-compliant as the manpage states In-Reply-To: <54422.1014387612@axl.seasidesoftware.co.za> Message-ID: <20020223014328.M25568-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 22 Feb 2002, Sheldon Hearn wrote: > On Fri, 22 Feb 2002 16:18:52 +0200, Sheldon Hearn wrote: > > > The whole point of these alternatives to ln/rm is that they have a > > simple, optionless interface. :-( Their main point is that they don't adjust the pathnames like ln/rm. > Bleh, what an entirely useless response. :-) > > I should have gone on to say... > > However, standards conformance is probably important, even here. If > scripts expect 'link -- foo bar' to work, and yet it breaks in FreeBSD, > that'll be bad. I don't think using getopt() is such a good idea any more :-). But people are used to its behaviour. No one expects "ls -foo" to list "-foo". Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 22 8:20:46 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A62637B447 for ; Fri, 22 Feb 2002 08:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MGK1o26106; Fri, 22 Feb 2002 08:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D7BDF37B404 for ; Fri, 22 Feb 2002 08:15:40 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MGFec25659; Fri, 22 Feb 2002 08:15:40 -0800 (PST) (envelope-from nobody) Message-Id: <200202221615.g1MGFec25659@freefall.freebsd.org> Date: Fri, 22 Feb 2002 08:15:40 -0800 (PST) From: Peter Hollaubek To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/35212: gkrellmms fails to compile Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35212 >Category: misc >Synopsis: gkrellmms fails to compile >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: Fri Feb 22 08:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Peter Hollaubek >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: FreeBSD fif.office.inext.hu 4.5-STABLE FreeBSD 4.5-STABLE #1: Thu Feb 21 15:32:40 CET 2002 root@fif.office.inext.hu:/usr/obj/usr/src/sys/FIF i386 >Description: seems I have to learn to use send-pr, patch missed from previous PR. >How-To-Repeat: make >Fix: --- gkrellmms.c.orig Fri Feb 22 16:49:33 2002 +++ gkrellmms.c Fri Feb 22 16:49:53 2002 @@ -687,6 +687,7 @@ if (bg_scroll_image) gkrellm_set_image_border("gkrellmms_bg_scroll", bg_scroll_image, scroll_style); +/* #if ((VERSION_MAJOR>1)||(VERSION_MAJOR==1 && VERSION_MINOR==0 && VERSION_REV>2) ||(VERSION_MAJOR==1 && VERSION_MINOR>0)) gkrellm_get_gkrellmrc_integer("gkrellmms_scroll_margin", &scroll_style->margin); @@ -695,6 +696,7 @@ gkrellm_get_gkrellmrc_integer("gkrellmms_scroll_bottom_margin", &scroll_style->bottom_margin); #endif +*/ #endif /* Text decal for scrolling title */ >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 Feb 22 10: 0:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF89537B417 for ; Fri, 22 Feb 2002 10:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MI03L47180; Fri, 22 Feb 2002 10:00:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CC2DF37B405 for ; Fri, 22 Feb 2002 09:50:59 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MHoxh45595; Fri, 22 Feb 2002 09:50:59 -0800 (PST) (envelope-from nobody) Message-Id: <200202221750.g1MHoxh45595@freefall.freebsd.org> Date: Fri, 22 Feb 2002 09:50:59 -0800 (PST) From: Sandeep Kumar To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/35214: dump program hangs while exiting Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35214 >Category: bin >Synopsis: dump program hangs while exiting >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 Feb 22 10:00:03 PST 2002 >Closed-Date: >Last-Modified: >Originator: Sandeep Kumar >Release: 4.2 >Organization: Juniper >Environment: >Description: Backtrace of the hung dump process: 0x88055efc in nanosleep () from /usr/libexec/ld-elf.so.1 (gdb) bt #0 0x88055efc in nanosleep () from /usr/libexec/ld-elf.so.1 #1 0x88054bd9 in wlock_acquire () from /usr/libexec/ld-elf.so.1 #2 0x880539fa in rtld_exit () from /usr/libexec/ld-elf.so.1 #3 0x880de0c8 in exit () from /usr/lib/libc.so.4 #4 0x804c9d3 in Exit () #5 0x804cb20 in enslave () #6 0x804c8f3 in startnewtape () #7 0x804a622 in main () #8 0x8049601 in _start () wlock_acquire waits for ever for the lock to be released by a reader. Since dump is a non-threaded application, this has to be this process itself. Looking at the lock and unlock invokations of this lock, they seemed paired. The lock structure didn't look corrupted either and the fields were consistent. So the only possibility was that process was interrupted by a signal while, it had acquired the read lock. This looked like a possibility by looking at the SIGUSR2 handler of dump. This handler calls longjmp, which can leave the read lock locked, if done during the _rtld_bind operation. So, it was a matter of confirming that, this is what had happened. Taking the symbolic dump of the stack page, was able to locate the sigframe structure in the stack. This structure is copied by the kernel on the user stack and also contains info about the registers at the time of the trap, when signal was delivered. Some of the signature items are, signal no., saved return pointer to the signal trampoline code at the base of user stack. The structure looked good, and the saved eip was symlook_list+27. This function ends up geting called after a call to _rtld_bind, which does acquire the read lock. So we did do a longjmp while holding the read lock. The dump application makes extensive use of signalling to communicate between different children of the dump program. SIGUSR2 is delivered 3-4 times a second. So, its possible that once in a while, it gets delivered while we are doing a _rtld_bind. Now, an obvious solution will be to mask the signals during the duration the read lock is held. In fact, same signal blocking fix was made, while acquiring the writer version of this lock, by jdp@polstra.com, in BSD. When, I suggested to make the same change for the reader lock, I received the following reply: "It would hurt performance too much. The rtld would have to do two system calls for every symbol it resolved lazily." >How-To-Repeat: Run "dump -f - FS1 | restore -f - FS2" in a infinite loop >Fix: May involve redesigning to not to use longjmp, as its not safe to call it from the signal handler. >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 Feb 22 11:27:25 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from pump3.york.ac.uk (pump3.york.ac.uk [144.32.128.131]) by hub.freebsd.org (Postfix) with ESMTP id A8EDF37B404 for ; Fri, 22 Feb 2002 11:27:16 -0800 (PST) Received: from ury.york.ac.uk (ury.york.ac.uk [144.32.108.81]) by pump3.york.ac.uk (8.10.2/8.10.2) with ESMTP id g1MJRFN03147; Fri, 22 Feb 2002 19:27:15 GMT Received: from localhost (gavin@localhost) by ury.york.ac.uk (8.11.6/8.11.3) with ESMTP id g1MJRDb51097; Fri, 22 Feb 2002 19:27:15 GMT (envelope-from gavin.atkinson@ury.york.ac.uk) X-Authentication-Warning: ury.york.ac.uk: gavin owned process doing -bs Date: Fri, 22 Feb 2002 19:27:13 +0000 (GMT) From: Gavin Atkinson X-X-Sender: To: Andy Farkas Cc: Subject: Re: bin/35113: grdc enhancement: countdown timer mode In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, 20 Feb 2002, Andy Farkas wrote: > I would like to see grdc learn to count up from 0 seconds, maybe -c flag. > It could then perhaps be used as crude visual running timer...? OK... try this... -t gives a timer starting from zero, -c gives a countdown timer. Applies cleanly to both -CURRENT and -STABLE. gavin --- /5.0/usr/src/games/grdc/grdc.c Tue Sep 25 14:45:46 2001 +++ grdc.c Fri Feb 22 19:16:12 2002 @@ -1,10 +1,15 @@ /* * Grand digital clock for curses compatible terminals * Usage: grdc [-s] [n] -- run for n seconds (default infinity) + * grdc -c n -- countdown n seconds + * grdc -t [n] -- upward count for n seconds (defaults infinity) * Flags: -s: scroll + * -c: countdown timer mode + * -t: upward timer * * modified 10-18-89 for curses (jrl) * 10-18-89 added signal handling + * 02-18-02 added countdown and timer mode * * $FreeBSD: src/games/grdc/grdc.c,v 1.9 2001/09/25 13:45:46 ru Exp $ */ @@ -25,6 +30,8 @@ /* it won't be */ time_t now; /* yeah! */ +time_t start; /* for timer mode */ +time_t end; /* for countdown mode */ struct tm *tm; short disp[11] = { @@ -58,15 +65,22 @@ int i, j, s, k; int n; int ch; -int scrol; +int remain, duration; +int scrol = 0; +int timer = 0, ctimer = 0; +int hour, minute, second; - scrol = 0; - - while ((ch = getopt(argc, argv, "s")) != -1) + while ((ch = getopt(argc, argv, "cst")) != -1) switch (ch) { + case 'c': + ctimer = 1; + break; case 's': scrol = 1; break; + case 't': + timer = 1; + break; case '?': default: usage(); @@ -75,15 +89,18 @@ argc -= optind; argv += optind; - if (argc > 1) { + if ((argc > 1) || (argc == 0 && ctimer)) { usage(); /* NOTREACHED */ } if (argc > 0) - n = atoi(*argv); + duration = atoi(*argv); else - n = 0; + duration = 0; + + if (ctimer && duration == 0) + return(0); initscr(); @@ -127,16 +144,43 @@ attrset(COLOR_PAIR(2)); } + time(&start); + end = start; + remain = duration; + if (duration) { + end +=duration; + } do { mask = 0; time(&now); - tm = localtime(&now); - set(tm->tm_sec%10, 0); - set(tm->tm_sec/10, 4); - set(tm->tm_min%10, 10); - set(tm->tm_min/10, 14); - set(tm->tm_hour%10, 20); - set(tm->tm_hour/10, 24); + if (!ctimer && !timer) { + tm = localtime(&now); + hour = tm->tm_hour; + minute = tm->tm_min; + second = tm->tm_sec; + if (duration) + remain = end - now; + } else { + if (ctimer) { + n = end - now; + remain = n; + if (remain <= 0) + break; + } else { + n = now - start; + if (duration) + remain = duration - n; + } + hour = (n/3600)%100; + minute = (n/60)%60; + second = n%60; + } + set(second%10, 0); + set(second/10, 4); + set(minute%10, 10); + set(minute/10, 14); + set(hour%10, 20); + set(hour/10, 24); set(10, 7); set(10, 17); for(k=0; k<6; k++) { @@ -179,7 +223,7 @@ endwin(); errx(1, "terminated by signal %d", (int)sigtermed); } - } while(--n); + } while(--remain); standend(); clear(); refresh(); @@ -229,6 +273,9 @@ usage(void) { - (void)fprintf(stderr, "usage: grdc [-s] [n]\n"); + (void)fprintf(stderr, "%s\n%s\n%s\n", + "usage: grdc [-s] [n]", + " grdc -c n", + " grdc -t [n]"); exit(1); } --- /5.0/usr/src/games/grdc/grdc.6 Tue Sep 25 14:45:46 2001 +++ grdc.6 Fri Feb 22 19:14:30 2002 @@ -1,5 +1,5 @@ .\" $FreeBSD: src/games/grdc/grdc.6,v 1.3 2001/09/25 13:45:46 ru Exp $ -.Dd September 25, 2001 +.Dd February 18, 2002 .Dt GRDC 6 .Sh NAME .Nm grdc @@ -8,22 +8,48 @@ .Nm .Op Fl s .Op Ar n +.Nm +.Fl c +.Ar n +.Nm +.Fl t +.Op Ar n .Sh DESCRIPTION .Nm runs a digital clock made of reverse-video blanks on a curses compatible VDU screen. -With an optional numeric argument +The clock can act as a countdown timer with the +.Fl c +flag or a stopwatch timer with the +.Fl t +flag. +The optional numeric argument .Ar n -it stops after +makes the clock or timer stop after .Ar n seconds (default never). +.Ar n +is required for countdown timer mode. The optional .Fl s flag makes digits scroll as they change. In this curses mode implementation, the scrolling option has trouble keeping up. +.Sh NOTES +In countdown timer mode, the specifying of +.Fl n +> 360000 seconds (100 hours) will lead to the counter displaying +incorrect remaining time, however it will time correctly, and +display correctly when the remaining time becomes less than +100 hours. +.Pp +The clock may appear to miss seconds out. This is because the +clock is as accurate as possible but only updates once per second. +On slower computers, may lead to occasional jumping of the clock. .Sh AUTHORS .An -nosplit .An Amos Shapir , modified for curses by .An John Lupien . +Countdown timer mode by +.An Gavin Atkinson . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 22 11:40:20 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D9EE337B41A for ; Fri, 22 Feb 2002 11:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MJe2p72517; Fri, 22 Feb 2002 11:40:02 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 11:40:02 -0800 (PST) Message-Id: <200202221940.g1MJe2p72517@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jens Schweikhardt Subject: Re: bin/11114: make(1) does not work as documented with .POSIX: target Reply-To: Jens Schweikhardt Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/11114; it has been noted by GNATS. From: Jens Schweikhardt To: "Crist J. Clark" Cc: bug-followup@freebsd.org Subject: Re: bin/11114: make(1) does not work as documented with .POSIX: target Date: Fri, 22 Feb 2002 20:28:50 +0100 Crist, On Wed, Feb 20, 2002 at 08:23:16AM -0800, Crist J. Clark wrote: # The issue here is that the .POSIX target will not have its effect # until the makefile containing it is read. /usr/share/mk/sys.mk is the # first file read. make(1) doesn't know about anything that you have set # in your makefile yet. # # I have no idea if that is a bug or feature. What do the standards say # (if anything)? The POSIX 2001 Standard defines the behavior of make and mandates that the macros have the following values, when .POSIX: is specified as the first noncomment line and without prerequisites and commands: MAKE=make AR=ar ARFLAGS=-rv YACC=yacc YFLAGS= LEX=lex LFLAGS= LDFLAGS= CC=c99 CFLAGS=-O FC=fort77 FFLAGS=-O 1 GET=get GFLAGS= SCCSFLAGS= SCCSGETFLAGS=-a Regards, Jens -- Jens Schweikhardt http://www.schweikhardt.net/ SIGSIG -- signature too long (core dumped) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 22 11:40:25 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AB51F37B420 for ; Fri, 22 Feb 2002 11:40:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MJe6f72534; Fri, 22 Feb 2002 11:40:06 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 11:40:06 -0800 (PST) Message-Id: <200202221940.g1MJe6f72534@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Gavin Atkinson Subject: Re: bin/35113: grdc enhancement: countdown time mode Reply-To: Gavin Atkinson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35113; it has been noted by GNATS. From: Gavin Atkinson To: Cc: Subject: Re: bin/35113: grdc enhancement: countdown time mode Date: Fri, 22 Feb 2002 19:38:46 +0000 (GMT) Modified to add a count-up timer, due to popular demand (first request was from Andy Farkas ). Patches at http://ury.york.ac.uk/~gavin/grdc.diff Applies cleanly to stable and current. Gavin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 22 11:41: 2 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B221137B428 for ; Fri, 22 Feb 2002 11:40:10 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MJeAa72547; Fri, 22 Feb 2002 11:40:10 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 11:40:10 -0800 (PST) Message-Id: <200202221940.g1MJeAa72547@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: misc/35150: FreeBSD 4.5 won't install ... out of inodes Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/35150; it has been noted by GNATS. From: "Crist J. Clark" To: "Buddenberg, Rex" Cc: "'Bill McNAMARA'" , bug-followup@freebsd.org Subject: Re: misc/35150: FreeBSD 4.5 won't install ... out of inodes Date: Fri, 22 Feb 2002 11:39:06 -0800 On Fri, Feb 22, 2002 at 10:30:42AM -0800, Buddenberg, Rex wrote: > Bill, Christ, > > We're pretty close to the smoking gun ... here's what I squeezed out of the > drive: > > > Filesystem 1K-blocks Used Avail Capacity iused ifree %iused > Mounted on > /dev/ad0s1a 257980 62800 174544 26% 1276 14978 8% > / > > Note that /usr doesn't show up on the troubled drive at all (and vfstab is > entirely > missing from /etc). I manually mounted /dev/ad0s1f to /usr where it belongs > and > got this: > /dev/ad0s1f 515996 124 474596 0% 3 32507 0% > /usr Yep. Looks like 16K blocks in each. > > On a normal FreeBSD 4.4 installation (similar sized disk), I got this: > > /dev/ad0s1a 99183 32339 58910 35% 1498 23588 6% / > /dev/ad0s1f 964359 642238 244973 72% 82806 159240 34% /usr > /dev/ad0s1e 19815 1777 16453 10% 286 4768 6% /var > procfs 4 4 0 100% 42 490 8% > /proc Those are 4K blocks? I would expect 8K from newfs(8)'s source. > I used all the default settings on installation ... no tweaks whatsoever. > Since I can boot up in single user mode, the problem appears to show up > wholly > in /usr. No, it just that there are that many more files in /usr that you ran out of inodes in /usr. The default 8K to 16K was changed in revision 1.30.2.8 of newfs.c. A 500 MB partition is tiny by today's standards. Sometime you have to make the choice, do you focus support the few using _really_ old stuff or the majority on much newer hardware. Of course, the other possibility is to make sysinstall(8) smarter about this kind of thing (and about partition sizing, and about...), but someone can always figure out a situation where any simple rules break down and the discussions tend to bikeshed. So, I don't really think the bug is in newfs(8). newfs(8) does not really need to be too smart. I think if there is a bug here at all, it would be sysinstall(8) not being smart enough to tell newfs(8) how to do things better. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@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 Feb 22 12: 0:23 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 09E1F37B405 for ; Fri, 22 Feb 2002 12:00:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MK07M75637; Fri, 22 Feb 2002 12:00:07 -0800 (PST) (envelope-from gnats) Received: from mail.tgd.net (mail.tgd.net [209.81.25.10]) by hub.freebsd.org (Postfix) with ESMTP id 2E4F437B404 for ; Fri, 22 Feb 2002 11:51:25 -0800 (PST) Received: by mail.tgd.net (Postfix, from userid 1001) id F0AA720F05; Fri, 22 Feb 2002 11:51:24 -0800 (PST) Message-Id: <20020222195124.F0AA720F05@mail.tgd.net> Date: Fri, 22 Feb 2002 11:51:24 -0800 (PST) From: Sean Chittenden Reply-To: Sean Chittenden To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: conf/35219: Add IANA jabber ports Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35219 >Category: conf >Synopsis: Add IANA jabber ports >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: Fri Feb 22 12:00:07 PST 2002 >Closed-Date: >Last-Modified: >Originator: Sean Chittenden >Release: FreeBSD 4.5-RC i386 >Organization: >Environment: System: FreeBSD ninja1.internal 4.5-RC FreeBSD 4.5-RC #0: Thu Jan 10 14:10:58 PST 2002 root@ninja1.internal:/opt/obj/opt/src/sys/NINJA i386 >Description: IANA approved the jabber server and client ports http://www.iana.org/assignments/port-numbers >How-To-Repeat: >Fix: Index: etc/services =================================================================== RCS file: /home/ncvs/src/etc/services,v retrieving revision 1.62.2.9 diff -u -r1.62.2.9 services --- etc/services 2002/02/12 14:48:25 1.62.2.9 +++ etc/services 2002/02/22 19:48:57 @@ -1976,8 +1976,12 @@ aol-2 5192/udp #AmericaOnline2 aol-3 5193/tcp #AmericaOnline3 aol-3 5193/udp #AmericaOnline3 +jabber-client 5222/tcp #Jabber Client Connection +jabber-client 5222/udp #Jabber Client Connection padl2sim 5236/tcp padl2sim 5236/udp +jabber-server 5269/tcp #Jabber Server Connection +jabber-server 5269/udp #Jabber Server Connection hacl-hb 5300/tcp # HA cluster heartbeat hacl-hb 5300/udp # HA cluster heartbeat hacl-gs 5301/tcp # HA cluster general services >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 Feb 22 12: 0:24 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A76937B416 for ; Fri, 22 Feb 2002 12:00:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MK08Z75648; Fri, 22 Feb 2002 12:00:08 -0800 (PST) (envelope-from gnats) Received: from mail.tgd.net (mail.tgd.net [209.81.25.10]) by hub.freebsd.org (Postfix) with ESMTP id 1D5AF37B400 for ; Fri, 22 Feb 2002 11:54:34 -0800 (PST) Received: by mail.tgd.net (Postfix, from userid 1001) id EA53D20F05; Fri, 22 Feb 2002 11:54:33 -0800 (PST) Message-Id: <20020222195433.EA53D20F05@mail.tgd.net> Date: Fri, 22 Feb 2002 11:54:33 -0800 (PST) From: Sean Chittenden Reply-To: Sean Chittenden To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: conf/35220: Add IANA postgresql port Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35220 >Category: conf >Synopsis: Add IANA postgresql port >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: Fri Feb 22 12:00:08 PST 2002 >Closed-Date: >Last-Modified: >Originator: Sean Chittenden >Release: FreeBSD 4.5-RC i386 >Organization: >Environment: System: FreeBSD ninja1.internal 4.5-RC FreeBSD 4.5-RC #0: Thu Jan 10 14:10:58 PST 2002 root@ninja1.internal:/opt/obj/opt/src/sys/NINJA i386 >Description: IANA has PostgreSQL listed as a service >How-To-Repeat: >Fix: Index: etc/services =================================================================== RCS file: /home/ncvs/src/etc/services,v retrieving revision 1.62.2.9 diff -u -r1.62.2.9 services --- etc/services 2002/02/12 14:48:25 1.62.2.9 +++ etc/services 2002/02/22 19:52:27 @@ -1992,6 +1996,8 @@ hacl-test 5305/udp cfengine 5308/tcp cfengine 5308/udp +postgresql 5432/tcp #PostgreSQL Database +postqresql 5432/udp #PostgreSQL Database rplay 5555/udp canna 5680/tcp #Canna (Japanese Input) proshareaudio 5713/tcp #proshare conf audio >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 Feb 22 13:10: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3732D37B402 for ; Fri, 22 Feb 2002 13:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MLA3192826; Fri, 22 Feb 2002 13:10:03 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 13:10:03 -0800 (PST) Message-Id: <200202222110.g1MLA3192826@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Buddenberg, Rex" Subject: RE: misc/35150: FreeBSD 4.5 won't install ... out of inodes Reply-To: "Buddenberg, Rex" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/35150; it has been noted by GNATS. From: "Buddenberg, Rex" To: "'cjclark@alum.mit.edu'" , "Buddenberg, Rex" Cc: 'Bill McNAMARA' , bug-followup@freebsd.org Subject: RE: misc/35150: FreeBSD 4.5 won't install ... out of inodes Date: Fri, 22 Feb 2002 13:03:03 -0800 I think i follow the analysis, Crist. Thanks. And yes, smartening up Sysinstall would be the right approach. Perhaps a better one would be to smarten up the documentation so dummies like me know what overrides make sense. So ... what should I do at installation time to make 4.5 run properly on these beasts? Thanks again. > -----Original Message----- > From: Crist J. Clark [mailto:crist.clark@attbi.com] > Sent: Friday, February 22, 2002 11:39 AM > To: Buddenberg, Rex > Cc: 'Bill McNAMARA'; bug-followup@freebsd.org > Subject: Re: misc/35150: FreeBSD 4.5 won't install ... out of inodes > > > On Fri, Feb 22, 2002 at 10:30:42AM -0800, Buddenberg, Rex wrote: > > Bill, Christ, > > > > We're pretty close to the smoking gun ... here's what I > squeezed out of the > > drive: > > > > > > Filesystem 1K-blocks Used Avail Capacity iused > ifree %iused > > Mounted on > > /dev/ad0s1a 257980 62800 174544 26% 1276 > 14978 8% > > / > > > > Note that /usr doesn't show up on the troubled drive at all > (and vfstab is > > entirely > > missing from /etc). I manually mounted /dev/ad0s1f to /usr > where it belongs > > and > > got this: > > /dev/ad0s1f 515996 124 474596 0% 3 > 32507 0% > > /usr > > Yep. Looks like 16K blocks in each. > > > > > On a normal FreeBSD 4.4 installation (similar sized disk), > I got this: > > > > /dev/ad0s1a 99183 32339 58910 35% 1498 > 23588 6% / > > /dev/ad0s1f 964359 642238 244973 72% 82806 > 159240 34% /usr > > /dev/ad0s1e 19815 1777 16453 10% 286 > 4768 6% /var > > procfs 4 4 0 100% 42 > 490 8% > > /proc > > Those are 4K blocks? I would expect 8K from newfs(8)'s source. > > > I used all the default settings on installation ... no > tweaks whatsoever. > > Since I can boot up in single user mode, the problem > appears to show up > > wholly > > in /usr. > > No, it just that there are that many more files in /usr that you ran > out of inodes in /usr. The default 8K to 16K was changed in revision > 1.30.2.8 of newfs.c. > > A 500 MB partition is tiny by today's standards. Sometime you have to > make the choice, do you focus support the few using _really_ old stuff > or the majority on much newer hardware. Of course, the other > possibility is to make sysinstall(8) smarter about this kind of thing > (and about partition sizing, and about...), but someone can always > figure out a situation where any simple rules break down and the > discussions tend to bikeshed. > > So, I don't really think the bug is in newfs(8). newfs(8) does not > really need to be too smart. I think if there is a bug here at all, it > would be sysinstall(8) not being smart enough to tell newfs(8) how to > do things better. > -- > Crist J. Clark | cjclark@alum.mit.edu > | cjclark@jhu.edu > http://people.freebsd.org/~cjc/ | cjc@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 Feb 22 15: 0:14 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3657037B402 for ; Fri, 22 Feb 2002 15:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1MN05W12483; Fri, 22 Feb 2002 15:00:05 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Feb 2002 15:00:05 -0800 (PST) Message-Id: <200202222300.g1MN05W12483@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Marco Castelvecchio Subject: RE: i386/33574: kernel hangs on page fault during boot process (kernel trap 12) on Intel based laptop computer Reply-To: Marco Castelvecchio Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/33574; it has been noted by GNATS. From: Marco Castelvecchio To: tedm@toybox.placo.com Cc: freebsd-gnats-submit@FreeBSD.org Subject: RE: i386/33574: kernel hangs on page fault during boot process (kernel trap 12) on Intel based laptop computer Date: 22 Feb 2002 23:57:35 +0100 I've just installed 4.5-STABLE and I had to apply the workaround, but when pccardd detects my Xircom XE2000 it hangs again. For info, my laptop is a Akura Oris 10 (Italian brand for Movita ETNA-110) K6-2 333 with intel PIIX4 chipset If you need full dmesg please email me. Thanks, Marco Castelvecchio -- Marco Castelvecchio Universita' di Milano Dipartimento di Tecnologie dell'Informazione Polo didattico e di ricerca di Crema Public GPG Key: http://digilander.iol.it/TecnograpH/key.asc Homepage: http://www.geocities.com/crypto2001it/index.html Fourth Law of Thermodynamics: If the probability of success is not almost one, it is damn near zero. -- David Ellis To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 22 18:50:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D91437B404 for ; Fri, 22 Feb 2002 18:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1N2o1T64185; Fri, 22 Feb 2002 18:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E5C337B419 for ; Fri, 22 Feb 2002 18:43:01 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1N2h1J63548; Fri, 22 Feb 2002 18:43:01 -0800 (PST) (envelope-from nobody) Message-Id: <200202230243.g1N2h1J63548@freefall.freebsd.org> Date: Fri, 22 Feb 2002 18:43:01 -0800 (PST) From: Oyvind Idland To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/35226: mtree - strange behaviour on some filenames Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35226 >Category: bin >Synopsis: mtree - strange behaviour on some filenames >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 Feb 22 18:50:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Oyvind Idland >Release: 4.5-RELEASE >Organization: >Environment: FreeBSD cow 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Sun Feb 3 01:26:06 GMT 2002 >Description: mtree seems to have problems with some filenames. I got some files in /usr/local/bin, seems like scripts installed via the PHP-package. examples: #INST@90698# #INST@90720# #INST@90742# when i run mtree against a spec, i get: #INST@90698# extra #INST@90720# extra #INST@90742# extra ......... allthough the files are listed in my spec: #INST@90698# size=700 time=1014200710.0 #INST@90720# size=528 time=1014200710.0 #INST@90742# size=10018 time=1014200710.0 >How-To-Repeat: i just ran: mtree -c -i -p /usr/local/bin >foo.mtree and oposite mtree -f foo.mtree -p /usr/local/bin >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 Feb 22 22:30:32 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BAAA137B404 for ; Fri, 22 Feb 2002 22:30:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1N6U0V05855; Fri, 22 Feb 2002 22:30:00 -0800 (PST) (envelope-from gnats) Received: from mail503.nifty.com (mail503.nifty.com [202.248.37.211]) by hub.freebsd.org (Postfix) with ESMTP id 41D4D37B405 for ; Fri, 22 Feb 2002 22:20:13 -0800 (PST) Received: from localhost by mail503.nifty.com (8.11.6+3.4W/3.7W-01/21/02) with ESMTP id g1N6Hum24207 for ; Sat, 23 Feb 2002 15:17:56 +0900 Message-Id: <20020223.135440.74753592.t.ichinoseki@nifty.com> Date: Sat, 23 Feb 2002 13:54:40 +0900 (JST) From: Toshikazu ICHINOSEKI Reply-To: Toshikazu ICHINOSEKI To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/35230: Neomagic sound driver probe and play timeout problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35230 >Category: kern >Synopsis: Neomagic sound driver probe and play timeout problem >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 Feb 22 22:30:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Toshikazu Ichinoseki >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD capella 4.5-STABLE FreeBSD 4.5-STABLE #0: Sat Feb 23 00:38:24 JST 2002 toshi@capella:/usr/src/sys/compile/CAPELLA i386 Machine: Panasonic Let's note CF-M2EV (Celeron-550MHz, 440BX, 128MB Mem, NeoMagic NM2200 graphics/sound chip (MagicMedia 256AV)) >Description: The NeoMagic 256AV pcm sound device worked well on 4.3-RELEASE. But 4.5-stable does not probe NeoMagic 256AV audio chip since fails to detect mixer at nm_pci_probe(). After forcing to skip checking mixer presence code, neomagic sound driver becomes to probe 256AV chip. But played music is strange and "pcm0: play interrupt timeout, channel dead" message is displayed on console when I try to play music using mpg123 or play (part of sox). This problem is the same with problem report kern/29465. >How-To-Repeat: 4.5-stable fails to probe every time in boot or kldloading snd_neomagic kernel module. After forcing to probe, channel always is timeout when I play sound. >Fix: I referred to NetBSD's neo.c and made patch to fix this problem. Included patch improves followings: 1. Panasonic CF-M2EV needs resetting soud device before checking mixer is present or not. 2. To synchronize neomagic driver with pcm channel layer, the initial value of BUFFER_WMARK register of Play/Record is set with same value of channel block size and update them on every interrupt. 3. Prevent to make noise on suspending while playing. This patch can apply 4.5-stable and 5-current and also apply 4.4-RELEASE and 4.5-RELEASE. --------------- patch is from here --------------------------------- Index: neomagic.c =================================================================== RCS file: /local/cvsroot/src/sys/dev/sound/pci/neomagic.c,v retrieving revision 1.7.2.9 diff -u -r1.7.2.9 neomagic.c --- neomagic.c 1 Aug 2001 03:40:58 -0000 1.7.2.9 +++ neomagic.c 18 Feb 2002 14:05:10 -0000 @@ -47,7 +47,8 @@ /* channel registers */ struct sc_chinfo { - int spd, dir, fmt; + int active, spd, dir, fmt; + u_int32_t blksize, wmark; struct snd_dbuf *buffer; struct pcm_channel *channel; struct sc_info *parent; @@ -203,14 +204,17 @@ nm_waitcd(struct sc_info *sc) { int cnt = 10; + int fail = 1; while (cnt-- > 0) { if (nm_rd(sc, sc->ac97_status, 2) & sc->ac97_busy) DELAY(100); - else + else { + fail = 0; break; + } } - return (nm_rd(sc, sc->ac97_status, 2) & sc->ac97_busy); + return (fail); } static u_int32_t @@ -338,6 +342,9 @@ chnbuf = (dir == PCMDIR_PLAY)? sc->pbuf : sc->rbuf; ch = (dir == PCMDIR_PLAY)? &sc->pch : &sc->rch; + ch->active = 0; + ch->blksize = 0; + ch->wmark = 0; ch->buffer = b; sndbuf_setup(ch->buffer, (u_int8_t *)rman_get_virtual(sc->buf) + chnbuf, NM_BUFFSIZE); if (bootverbose) @@ -376,6 +383,10 @@ static int nmchan_setblocksize(kobj_t obj, void *data, u_int32_t blocksize) { + struct sc_chinfo *ch = data; + + ch->blksize = blocksize; + return blocksize; } @@ -395,26 +406,32 @@ if (ch->dir == PCMDIR_PLAY) { if (go == PCMTRIG_START) { + ch->active = 1; + ch->wmark = ch->blksize; nm_wr(sc, NM_PBUFFER_START, sc->pbuf, 4); nm_wr(sc, NM_PBUFFER_END, sc->pbuf + NM_BUFFSIZE - ssz, 4); nm_wr(sc, NM_PBUFFER_CURRP, sc->pbuf, 4); - nm_wr(sc, NM_PBUFFER_WMARK, sc->pbuf + NM_BUFFSIZE / 2, 4); + nm_wr(sc, NM_PBUFFER_WMARK, sc->pbuf + ch->wmark, 4); nm_wr(sc, NM_PLAYBACK_ENABLE_REG, NM_PLAYBACK_FREERUN | NM_PLAYBACK_ENABLE_FLAG, 1); nm_wr(sc, NM_AUDIO_MUTE_REG, 0, 2); } else { + ch->active = 0; nm_wr(sc, NM_PLAYBACK_ENABLE_REG, 0, 1); nm_wr(sc, NM_AUDIO_MUTE_REG, NM_AUDIO_MUTE_BOTH, 2); } } else { if (go == PCMTRIG_START) { + ch->active = 1; + ch->wmark = ch->blksize; nm_wr(sc, NM_RECORD_ENABLE_REG, NM_RECORD_FREERUN | NM_RECORD_ENABLE_FLAG, 1); nm_wr(sc, NM_RBUFFER_START, sc->rbuf, 4); nm_wr(sc, NM_RBUFFER_END, sc->rbuf + NM_BUFFSIZE, 4); nm_wr(sc, NM_RBUFFER_CURRP, sc->rbuf, 4); - nm_wr(sc, NM_RBUFFER_WMARK, sc->rbuf + NM_BUFFSIZE / 2, 4); + nm_wr(sc, NM_RBUFFER_WMARK, sc->rbuf + ch->wmark, 4); } else { + ch->active = 0; nm_wr(sc, NM_RECORD_ENABLE_REG, 0, 1); } } @@ -465,11 +482,19 @@ if (status & sc->playint) { status &= ~sc->playint; + sc->pch.wmark += sc->pch.blksize; + sc->pch.wmark %= NM_BUFFSIZE; + nm_wr(sc, NM_PBUFFER_WMARK, sc->pbuf + sc->pch.wmark, 4); + nm_ackint(sc, sc->playint); chn_intr(sc->pch.channel); } if (status & sc->recint) { status &= ~sc->recint; + sc->rch.wmark += sc->rch.blksize; + sc->rch.wmark %= NM_BUFFSIZE; + nm_wr(sc, NM_RBUFFER_WMARK, sc->rbuf + sc->rch.wmark, 4); + nm_ackint(sc, sc->recint); chn_intr(sc->rch.channel); } @@ -590,6 +615,12 @@ return ENXIO; } + /* + * My Panasonic CF-M2EV needs resetting device + * before checking mixer is present or not. + * t.ichinoseki@nifty.com. + */ + nm_wr(sc, 0, 0x11, 1); /* reset device */ if ((nm_rd(sc, NM_MIXER_PRESENCE, 2) & NM_PRESENCE_MASK) != NM_PRESENCE_VALUE) { i = 0; /* non-ac97 card, but not listed */ @@ -710,6 +741,25 @@ } static int +nm_pci_suspend(device_t dev) +{ + struct sc_info *sc; + + sc = pcm_getdevinfo(dev); + + /* stop playing */ + if (sc->pch.active) { + nm_wr(sc, NM_PLAYBACK_ENABLE_REG, 0, 1); + nm_wr(sc, NM_AUDIO_MUTE_REG, NM_AUDIO_MUTE_BOTH, 2); + } + /* stop recording */ + if (sc->rch.active) { + nm_wr(sc, NM_RECORD_ENABLE_REG, 0, 1); + } + return 0; +} + +static int nm_pci_resume(device_t dev) { struct sc_info *sc; @@ -726,6 +776,17 @@ device_printf(dev, "unable to reinitialize the mixer\n"); return ENXIO; } + /* restart playing */ + if (sc->pch.active) { + nm_wr(sc, NM_PLAYBACK_ENABLE_REG, NM_PLAYBACK_FREERUN | + NM_PLAYBACK_ENABLE_FLAG, 1); + nm_wr(sc, NM_AUDIO_MUTE_REG, 0, 2); + } + /* restart recording */ + if (sc->rch.active) { + nm_wr(sc, NM_RECORD_ENABLE_REG, NM_RECORD_FREERUN | + NM_RECORD_ENABLE_FLAG, 1); + } return 0; } @@ -734,6 +795,7 @@ DEVMETHOD(device_probe, nm_pci_probe), DEVMETHOD(device_attach, nm_pci_attach), DEVMETHOD(device_detach, nm_pci_detach), + DEVMETHOD(device_suspend, nm_pci_suspend), DEVMETHOD(device_resume, nm_pci_resume), { 0, 0 } }; ------ to here -------------------------------------------------------- Following is the dmesg of verbose boot after pached. Copyright (c) 1992-2002 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.5-STABLE #0: Sat Feb 23 00:38:24 JST 2002 toshi@capella:/usr/src/sys/compile/CAPELLA Calibrating clock(s) ... TSC clock: 545941275 Hz, i8254 clock: 1193186 Hz Timecounter "i8254" frequency 1193186 Hz CPU: Pentium III/Pentium III Xeon/Celeron (545.94-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383f9ff real memory = 134152192 (131008K bytes) Physical memory chunk(s): 0x00001000 - 0x0009efff, 647168 bytes (158 pages) 0x0053a000 - 0x07fe5fff, 128630784 bytes (31404 pages) config> q avail memory = 125349888 (122412K bytes) bios32: Found BIOS32 Service Directory header at 0xc00f6cf0 bios32: Entry = 0xfd890 (c00fd890) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0x13d pnpbios: Found PnP BIOS data at 0xc00f6d20 pnpbios: Entry = f0000:a5f3 Rev = 1.0 Other BIOS signatures found: ACPI: 000f6cb0 Preloaded elf kernel "kernel" at 0xc0513000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc051309c. Preloaded elf module "splash_bmp.ko" at 0xc05130ec. Preloaded elf module "vesa.ko" at 0xc0513190. Preloaded elf module "vn.ko" at 0xc051322c. Preloaded elf module "snd_neomagic.ko" at 0xc05132c8. Preloaded elf module "snd_pcm.ko" at 0xc051336c. Preloaded elf module "agp.ko" at 0xc051340c. Preloaded elf module "smbfs.ko" at 0xc05134a8. Preloaded elf module "libmchain.ko" at 0xc0513548. Preloaded elf module "libiconv.ko" at 0xc05135ec. Preloaded elf module "joy.ko" at 0xc051368c. VESA: information block 56 45 53 41 00 02 20 01 00 01 00 00 00 00 22 00 00 01 26 00 05 02 00 01 00 01 09 01 00 01 1b 01 00 01 00 01 01 01 02 01 03 01 04 01 05 01 07 01 0d 01 0e 01 10 01 11 01 12 01 13 01 14 01 15 01 VESA: 24 mode(s) found VESA: v2.0, 2432k memory, flags:0x0, mode table:0xc04b12a2 (1000022) VESA: MagicMedia 256AV 48K VESA: NeoMagic MagicMedia 256AV 01.0 netsmb_dev: loaded Pentium Pro MTRR support enabled md0: Malloc disk Creating DISK md0 module_register_init: MOD_LOAD (splash_bmp, c04aa7b8, 0) error 2 Math emulator present pci_open(1): mode 1 addr port (0x0cf8) is 0x80010014 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=71908086) Using $PIR table, 8 entries at 0xc00fdf40 apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard found-> vendor=0x8086, dev=0x7190, revid=0x03 class=06-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[10]: type 1, range 32, base dd800000, size 22 found-> vendor=0x8086, dev=0x7191, revid=0x03 class=06-04-00, hdrtype=0x01, mfdev=0 subordinatebus=1 secondarybus=1 found-> vendor=0x10f7, dev=0x8317, revid=0x02 class=07-80-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=9 map[10]: type 1, range 32, base 00001080, size 7 found-> vendor=0x8086, dev=0x7110, revid=0x02 class=06-01-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 found-> vendor=0x8086, dev=0x7111, revid=0x01 class=01-01-80, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[20]: type 1, range 32, base 00001050, size 4 found-> vendor=0x8086, dev=0x7112, revid=0x01 class=0c-03-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=d, irq=10 map[20]: type 1, range 32, base 0000fc20, size 5 found-> vendor=0x8086, dev=0x7113, revid=0x03 class=06-80-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[90]: type 1, range 32, base 00001040, size 4 found-> vendor=0x134d, dev=0x7890, revid=0x02 class=07-03-01, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=9 map[10]: type 1, range 32, base 00001400, size 6 found-> vendor=0x1180, dev=0x0476, revid=0x80 class=06-07-00, hdrtype=0x02, mfdev=1 subordinatebus=2 secondarybus=2 intpin=a, irq=10 found-> vendor=0x1180, dev=0x0476, revid=0x80 class=06-07-00, hdrtype=0x02, mfdev=1 subordinatebus=3 secondarybus=3 intpin=b, irq=10 found-> vendor=0x8086, dev=0x1229, revid=0x08 class=02-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=9 map[10]: type 1, range 32, base dd100000, size 12 map[14]: type 1, range 32, base 00001440, size 6 map[18]: type 1, range 32, base dd000000, size 20 pci0: on pcib0 agp0: mem 0xdd800000-0xddbfffff at device 0.0 on pci0 agp0: allocating GATT for aperture of size 4M pcib1: at device 1.0 on pci0 found-> vendor=0x10c8, dev=0x0005, revid=0x20 class=03-00-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 intpin=a, irq=10 map[10]: type 1, range 32, base de000000, size 24 map[14]: type 1, range 32, base dd400000, size 22 map[18]: type 1, range 32, base dd200000, size 20 found-> vendor=0x10c8, dev=0x8005, revid=0x20 class=04-01-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 intpin=b, irq=10 map[10]: type 1, range 32, base ddc00000, size 22 map[14]: type 1, range 32, base dd300000, size 20 pci1: on pcib1 pci1: (vendor=0x10c8, dev=0x0005) at 0.0 irq 10 pcm0: mem 0xdd300000-0xdd3fffff,0xddc00000-0xddffffff irq 10 at device 0.1 on pci1 pcm0: ac97 codec id 0x83847609 (SigmaTel STAC9721/9723) pcm0: ac97 codec features 18 bit DAC, 18 bit ADC, 5 bit master volume, SigmaTel 3D Enhancement pcm0: ac97 primary codec extended features AMAP pcm0: rec buf 0xc8583800 pcm0: play buf 0xc857f800 pci0: (vendor=0x10f7, dev=0x8317) at 4.0 irq 9 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0x1050-0x105f at device 7.1 on pci0 ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0x1050 ata0: mask=03 status0=50 status1=00 ata0: mask=03 ostat0=50 ostat2=00 ata0-master: ATAPI probe a=00 b=00 ata0-slave: ATAPI probe a=00 b=00 ata0: mask=03 status0=50 status1=00 ata0-master: ATA probe a=01 b=a5 ata0: devices=01 ata0: at 0x1f0 irq 14 on atapci0 ata1: iobase=0x0170 altiobase=0x0376 bmaddr=0x1058 ata1: mask=03 status0=50 status1=01 ata1: mask=03 ostat0=50 ostat2=01 ata1-master: ATAPI probe a=14 b=eb ata1-slave: ATAPI probe a=ff b=ff ata1: mask=03 status0=00 status1=01 ata1-slave: ATA probe a=00 b=ff ata1: devices=04 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xfc20-0xfc3f irq 10 at device 7.2 on pci0 using shared irq10. usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered chip0: port 0x1040-0x104f at device 7.3 on pci0 pci0: (vendor=0x134d, dev=0x7890) at 9.0 irq 9 pcic0: irq 10 at device 10.0 on pci0 pcic0: PCI Memory allocated: 0x44000000 pcic0: PCI Configuration space: 0x00: 0x04761180 0x02100007 0x06070080 0x00824000 0x10: 0x44000000 0x020000dc 0x40020200 0x00000000 0x20: 0x00000000 0x00000000 0x00000000 0x00000000 0x30: 0x00000000 0x00000000 0x00000000 0x07a0010a 0x40: 0x832e10f7 0x00000001 0x00000000 0x00000000 0x50: 0x00000000 0x00000000 0x00000000 0x00000000 0x60: 0x00000000 0x00000000 0x00000000 0x00000000 0x70: 0x00000000 0x00000000 0x00000000 0x00000000 0x80: 0x00000001 0x00000000 0x04630463 0x00000000 0x90: 0x00000000 0x00000000 0x00000000 0x00000000 0xa0: 0x00020000 0x00000000 0x00000000 0x00000000 0xb0: 0x00000000 0x00000000 0x00000000 0x00000000 0xc0: 0x832e10f7 0x00000000 0x00000000 0x00000000 0xd0: 0x00000000 0x00000000 0x00000000 0xfe190001 0xe0: 0x24c04000 0x00000000 0x00000000 0x00000000 0xf0: 0x00000000 0x00000000 0x00000000 0x00000000 pccard0: on pcic0 pcic1: irq 10 at device 10.1 on pci0 pcic1: PCI Memory allocated: 0x44001000 pcic1: PCI Configuration space: 0x00: 0x04761180 0x02100007 0x06070080 0x00824000 0x10: 0x44001000 0x020000dc 0x40030300 0x00000000 0x20: 0x00000000 0x00000000 0x00000000 0x00000000 0x30: 0x00000000 0x00000000 0x00000000 0x07a0020a 0x40: 0x832e10f7 0x00000001 0x00000000 0x00000000 0x50: 0x00000000 0x00000000 0x00000000 0x00000000 0x60: 0x00000000 0x00000000 0x00000000 0x00000000 0x70: 0x00000000 0x00000000 0x00000000 0x00000000 0x80: 0x00000001 0x00000000 0x04630463 0x00000000 0x90: 0x00000000 0x00000000 0x00000000 0x00000000 0xa0: 0x00020000 0x00000000 0x00000000 0x00000000 0xb0: 0x00000000 0x00000000 0x00000000 0x00000000 0xc0: 0x832e10f7 0x00000000 0x00000000 0x00000000 0xd0: 0x00000000 0x00000000 0x00000000 0xfe190001 0xe0: 0x24c04000 0x00000000 0x00000000 0x00000000 0xf0: 0x00000000 0x00000000 0x00000000 0x00000000 pccard1: on pcic1 fxp0: port 0x1440-0x147f mem 0xdd000000-0xdd0fffff,0xdd100000-0xdd100fff irq 9 at device 11.0 on pci0 fxp0: using memory space register mapping fxp0: Ethernet address 00:80:45:12:50:b3 fxp0: PCI IDs: 8086 1229 10f7 832e 0008 fxp0: Dynamic Standby mode is disabled inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto bpf: fxp0 attached pcic-: pcic0 exists, using next available unit number pcic-: pcic1 exists, using next available unit number Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 ex_isa_identify() isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices orm0:
Hi FreeBSD-bugs,
I mentioned in the last = communique that=20 gnome 1.4.1b2_1, when extracted,
reports an error, concerning absence = of=20 oaf-0, although oaf-0.6.7 does
exist and does extract. Both have = folders=20 assigned to them. So I assume
Gnome is trying to access the wrong = file name.=20 Whatever the case, while
in Gnome several options doon't seem to = work.
The=20 screensaver doesn't work. The diagnostic screen after logout = says
something=20 about unknown "--timeout" option.
Also the Nautilus program doesn't = work=20 implicating an OAF problem.

I have changed to KDE which works = much=20 better. However I could not find
a phone dialer program in KDE ( or = Gnome for=20 that matter) to use the web
browsers. Of course I can try to find out = how to=20 do this in the shell
CLI.
Sincerely,
Thomas ("Nat")=20 Burbridge

------=_NextPart_000_0011_01C1BB7A.A89C3BE0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 0:40: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CF2F37B404 for ; Sat, 23 Feb 2002 00:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1N8e3V30253; Sat, 23 Feb 2002 00:40:03 -0800 (PST) (envelope-from gnats) Date: Sat, 23 Feb 2002 00:40:03 -0800 (PST) Message-Id: <200202230840.g1N8e3V30253@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sean Chittenden Subject: Re: conf/35220: Add IANA postgresql port Reply-To: Sean Chittenden Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/35220; it has been noted by GNATS. From: Sean Chittenden To: "Crist J. Clark" Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: conf/35220: Add IANA postgresql port Date: Sat, 23 Feb 2002 00:05:54 -0800 > > Index: etc/services > > =================================================================== > > RCS file: /home/ncvs/src/etc/services,v > > retrieving revision 1.62.2.9 > > diff -u -r1.62.2.9 services > > --- etc/services 2002/02/12 14:48:25 1.62.2.9 > > +++ etc/services 2002/02/22 19:52:27 > > @@ -1992,6 +1996,8 @@ > > hacl-test 5305/udp > > cfengine 5308/tcp > > cfengine 5308/udp > > +postgresql 5432/tcp #PostgreSQL Database > > +postqresql 5432/udp #PostgreSQL Database > ^ > Just to be sure, IANA has a typo here, correct? LMAO! I copied and pasted that. They must have... yeah, that's a type-o. I hope this doesn't become a piece of referer lore. I'll talk with postgres-core and see if they're aware of this. -sc http://www.iana.org/assignments/port-numbers -- Sean Chittenden To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 1:10: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5EFD337B405 for ; Sat, 23 Feb 2002 01:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1N9A1L36033; Sat, 23 Feb 2002 01:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE54037B400 for ; Sat, 23 Feb 2002 01:08:19 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1N98JB35850; Sat, 23 Feb 2002 01:08:19 -0800 (PST) (envelope-from nobody) Message-Id: <200202230908.g1N98JB35850@freefall.freebsd.org> Date: Sat, 23 Feb 2002 01:08:19 -0800 (PST) From: "George W. Dinolt" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/35234: World access to /dev/pass? (for scanner) requires access to /dev/xpt? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35234 >Category: kern >Synopsis: World access to /dev/pass? (for scanner) requires access to /dev/xpt? >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: Sat Feb 23 01:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: George W. Dinolt >Release: FreeBSD 5.0 Current >Organization: >Environment: FreeBSD dinolt2.bingdrive.org 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Fri Feb 15 11:18:12 PST 2002 root@dinolt2.bingdrive.org:/usr/obj/usr/src/sys/DS-50 i386 >Description: I have a scanner on my scsi chain. It currently is visible on /dev/pass2. In FreeBSD 4.4 (and previous), I only had to change permissions on /dev/pass2 to 666 to allow anyone to access the scanner. On a very recent 5.0 Current build, I also have to change the permissions on /dev/xpt0 to 666 in order to enable a user other than "root" access to the scanner. I am using sane and xsane as my scanner tools. I think this intoduces a security vulnerability, since /dev/xpt0 is now world readable/writeable. >How-To-Repeat: Put a scanner on the scsi chain. Determine the pass device node associated with the scanner. Change the permissions on that pass device node to 666. Note that the scanning software will fail with a no device available message. Change permissions on /dev/xpt0 to 666. Note that the scanner is now accessible. >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 Feb 23 3:50:23 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9755E37B405 for ; Sat, 23 Feb 2002 03:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NBo2861324; Sat, 23 Feb 2002 03:50:02 -0800 (PST) (envelope-from gnats) Date: Sat, 23 Feb 2002 03:50:02 -0800 (PST) Message-Id: <200202231150.g1NBo2861324@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: conf/35220: Add IANA postgresql port Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/35220; it has been noted by GNATS. From: "Crist J. Clark" To: Sean Chittenden Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: conf/35220: Add IANA postgresql port Date: Fri, 22 Feb 2002 23:44:27 -0800 On Fri, Feb 22, 2002 at 11:54:33AM -0800, Sean Chittenden wrote: [snip] > Index: etc/services > =================================================================== > RCS file: /home/ncvs/src/etc/services,v > retrieving revision 1.62.2.9 > diff -u -r1.62.2.9 services > --- etc/services 2002/02/12 14:48:25 1.62.2.9 > +++ etc/services 2002/02/22 19:52:27 > @@ -1992,6 +1996,8 @@ > hacl-test 5305/udp > cfengine 5308/tcp > cfengine 5308/udp > +postgresql 5432/tcp #PostgreSQL Database > +postqresql 5432/udp #PostgreSQL Database ^ Just to be sure, IANA has a typo here, correct? -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 5:10:16 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D768C37B405 for ; Sat, 23 Feb 2002 05:10:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NDA5C86046; Sat, 23 Feb 2002 05:10:05 -0800 (PST) (envelope-from gnats) Received: from ls212.hinet.hr (ls212.hinet.hr [195.29.150.91]) by hub.freebsd.org (Postfix) with ESMTP id DEE5D37B404 for ; Sat, 23 Feb 2002 05:06:52 -0800 (PST) Received: from ls401.hinet.hr (ls401.hinet.hr [195.29.150.2]) by ls212.hinet.hr (0.0.0/8.11.3) with ESMTP id g1ND5kA01305 for ; Sat, 23 Feb 2002 14:05:46 +0100 Received: from tango (ad13-m139.net.hinet.hr [195.29.48.139]) by ls401.hinet.hr (8.11.6/8.11.3) with SMTP id g1ND6nN13752 for ; Sat, 23 Feb 2002 14:06:49 +0100 Message-Id: <005a01c1bc6a$f80ef690$0101a8c0@pilar> Date: Sat, 23 Feb 2002 14:03:38 +0100 From: "Annihilator" To: Subject: conf/35240: Update to etc/services Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35240 >Category: conf >Synopsis: Update to etc/services >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Feb 23 05:10:05 PST 2002 >Closed-Date: >Last-Modified: >Originator: Annihilator >Release: FreeBSD 4.5-RELEASE i386 >Organization: SawMan's Consortium >Environment: System: FreeBSD sarah 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Thu Jan 31 11:38:29 CET 2002 root@sarah:/usr/src/sys/compile/SARAH i386 >Description: etc/services doesn't contain entries for the Layer Two Tunneling Protocol and Microsoft Remote Desktop Protocol. >How-To-Repeat: >Fix: Patch included. ------=_NextPart_000_0033_01C1BC72.E454C960 Content-Type: application/octet-stream; name="services.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="services.patch" --- etc/services.orig Wed Jan 30 22:37:12 2002=0A= +++ etc/services Sat Feb 23 12:39:00 2002=0A= @@ -1723,6 +1723,7 @@=0A= netview-aix-11 1671/udp=0A= netview-aix-12 1672/tcp=0A= netview-aix-12 1672/udp=0A= +l2tp 1701/udp #Layer Two Tunneling Protocol=0A= pptp 1723/tcp #Point-to-point tunnelling protocol=0A= # IMPORTANT NOTE: See comments for ports 1645/1646 when using older = equipment=0A= radius 1812/udp #RADIUS authentication protocol (IANA sanctioned)=0A= @@ -1913,6 +1914,7 @@=0A= ccmail 3264/udp #cc:mail/lotus=0A= dec-notes 3333/tcp #DEC Notes=0A= dec-notes 3333/udp #DEC Notes=0A= +msrdp 3389/tcp #Microsoft Remote Desktop Protocol=0A= rsvp-encap 3455/udp #RSVP encapsulated in UDP=0A= mapper-nodemgr 3984/tcp #MAPPER network node manager=0A= mapper-nodemgr 3984/udp #MAPPER network node manager=0A= ------=_NextPart_000_0033_01C1BC72.E454C960-- >Release-Note: >Audit-Trail: >Unformatted: This is a multi-part message in MIME format. ------=_NextPart_000_0033_01C1BC72.E454C960 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit X-send-pr-version: 3.113 X-GNATS-Notify: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 5:10:20 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB93137B417 for ; Sat, 23 Feb 2002 05:10:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NDA5986055; Sat, 23 Feb 2002 05:10:05 -0800 (PST) (envelope-from gnats) Received: from ls212.hinet.hr (ls212.hinet.hr [195.29.150.91]) by hub.freebsd.org (Postfix) with ESMTP id 3B28E37B400 for ; Sat, 23 Feb 2002 05:06:56 -0800 (PST) Received: from ls401.hinet.hr (ls401.hinet.hr [195.29.150.2]) by ls212.hinet.hr (0.0.0/8.11.3) with ESMTP id g1ND5hA01278 for ; Sat, 23 Feb 2002 14:05:44 +0100 Received: from tango (ad13-m139.net.hinet.hr [195.29.48.139]) by ls401.hinet.hr (8.11.6/8.11.3) with SMTP id g1ND6kN13741 for ; Sat, 23 Feb 2002 14:06:46 +0100 Message-Id: <005801c1bc6a$f6431030$0101a8c0@pilar> Date: Sat, 23 Feb 2002 14:03:31 +0100 From: "Annihilator" To: Subject: conf/35241: Change to etc/rc Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35241 >Category: conf >Synopsis: Change to etc/rc >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 Feb 23 05:10:05 PST 2002 >Closed-Date: >Last-Modified: >Originator: Annihilator >Release: FreeBSD 4.5-RELEASE i386 >Organization: SawMan's Consortium >Environment: System: FreeBSD sarah 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Thu Jan 31 11:38:29 CET 2002 root@sarah:/usr/src/sys/compile/SARAH i386 >Description: The requirement for existence of etc/mail/sendmail.cf before launching the MTA in etc/rc is redundant. It is also counterproductive when sendmail isn't installed as it prevents an alternative MTA from being started. >How-To-Repeat: >Fix: Patch included. ------=_NextPart_000_001B_01C1BC72.DFFABE10 Content-Type: application/octet-stream; name="rc.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="rc.patch" --- etc/rc.orig Wed Dec 19 18:52:17 2001=0A= +++ etc/rc Sat Feb 23 12:40:54 2002=0A= @@ -525,22 +525,20 @@=0A= ;;=0A= esac=0A= =0A= -if [ -r /etc/mail/sendmail.cf ]; then=0A= - case ${sendmail_enable} in=0A= +case ${sendmail_enable} in=0A= +[Yy][Ee][Ss])=0A= + echo -n ' sendmail'=0A= + /usr/sbin/sendmail ${sendmail_flags}=0A= + ;;=0A= +*)=0A= + case ${sendmail_outbound_enable} in=0A= [Yy][Ee][Ss])=0A= echo -n ' sendmail'=0A= - /usr/sbin/sendmail ${sendmail_flags}=0A= - ;;=0A= - *)=0A= - case ${sendmail_outbound_enable} in=0A= - [Yy][Ee][Ss])=0A= - echo -n ' sendmail'=0A= - /usr/sbin/sendmail ${sendmail_outbound_flags}=0A= - ;;=0A= - esac=0A= + /usr/sbin/sendmail ${sendmail_outbound_flags}=0A= ;;=0A= esac=0A= -fi=0A= + ;;=0A= +esac=0A= =0A= echo '.'=0A= =0A= ------=_NextPart_000_001B_01C1BC72.DFFABE10-- >Release-Note: >Audit-Trail: >Unformatted: This is a multi-part message in MIME format. ------=_NextPart_000_001B_01C1BC72.DFFABE10 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit X-send-pr-version: 3.113 X-GNATS-Notify: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 5:10:25 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B97B37B41A for ; Sat, 23 Feb 2002 05:10:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NDA5186064; Sat, 23 Feb 2002 05:10:05 -0800 (PST) (envelope-from gnats) Received: from ls212.hinet.hr (ls212.hinet.hr [195.29.150.91]) by hub.freebsd.org (Postfix) with ESMTP id 665E737B404 for ; Sat, 23 Feb 2002 05:06:56 -0800 (PST) Received: from ls401.hinet.hr (ls401.hinet.hr [195.29.150.2]) by ls212.hinet.hr (0.0.0/8.11.3) with ESMTP id g1ND5iA01281 for ; Sat, 23 Feb 2002 14:05:44 +0100 Received: from tango (ad13-m139.net.hinet.hr [195.29.48.139]) by ls401.hinet.hr (8.11.6/8.11.3) with SMTP id g1ND6mN13747 for ; Sat, 23 Feb 2002 14:06:48 +0100 Message-Id: <005901c1bc6a$f7347510$0101a8c0@pilar> Date: Sat, 23 Feb 2002 14:03:34 +0100 From: "Annihilator" To: Subject: conf/35242: Change to etc/periodic/weekly/330.catman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35242 >Category: conf >Synopsis: Change to etc/periodic/weekly/330.catman >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 Feb 23 05:10:05 PST 2002 >Closed-Date: >Last-Modified: >Originator: Annihilator >Release: FreeBSD 4.5-RELEASE i386 >Organization: SawMan's Consortium >Environment: System: FreeBSD sarah 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Thu Jan 31 11:38:29 CET 2002 root@sarah:/usr/src/sys/compile/SARAH i386 >Description: The 330.catman script doesn't purge orphan preformatted pages. >How-To-Repeat: >Fix: Patch included. ------=_NextPart_000_0027_01C1BC72.E20B75A0 Content-Type: application/octet-stream; name="330.catman.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="330.catman.patch" --- etc/periodic/weekly/330.catman.orig Mon Mar 5 14:08:38 2001=0A= +++ etc/periodic/weekly/330.catman Sat Feb 23 12:28:06 2002=0A= @@ -34,7 +34,7 @@=0A= rc=3D0=0A= =0A= # Preformat original, non-localized manpages =0A= - echo /usr/libexec/catman.local "$MANPATH" |=0A= + echo /usr/libexec/catman.local -r "$MANPATH" |=0A= su -fm man || rc=3D3=0A= =0A= # Preformat localized manpages.=0A= @@ -42,7 +42,7 @@=0A= then=0A= for i in $man_locales=0A= do=0A= - LC_ALL=3D$i echo /usr/libexec/catman.local -L \=0A= + LC_ALL=3D$i echo /usr/libexec/catman.local -r -L \=0A= "$MANPATH" | su -fm man || rc=3D3=0A= done=0A= fi=0A= ------=_NextPart_000_0027_01C1BC72.E20B75A0-- >Release-Note: >Audit-Trail: >Unformatted: This is a multi-part message in MIME format. ------=_NextPart_000_0027_01C1BC72.E20B75A0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit X-send-pr-version: 3.113 X-GNATS-Notify: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 6:50: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 85B6E37B405 for ; Sat, 23 Feb 2002 06:50:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NEo3Q57188; Sat, 23 Feb 2002 06:50:03 -0800 (PST) (envelope-from gnats) Date: Sat, 23 Feb 2002 06:50:03 -0800 (PST) Message-Id: <200202231450.g1NEo3Q57188@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: conf/35220: Add IANA postgresql port Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/35220; it has been noted by GNATS. From: "Crist J. Clark" To: Sean Chittenden Cc: bug-followup@FreeBSD.ORG Subject: Re: conf/35220: Add IANA postgresql port Date: Sat, 23 Feb 2002 06:43:46 -0800 On Sat, Feb 23, 2002 at 12:40:03AM -0800, Sean Chittenden wrote: > The following reply was made to PR conf/35220; it has been noted by GNATS. > > From: Sean Chittenden > To: "Crist J. Clark" > Cc: FreeBSD-gnats-submit@FreeBSD.ORG > Subject: Re: conf/35220: Add IANA postgresql port > Date: Sat, 23 Feb 2002 00:05:54 -0800 > > > > Index: etc/services > > > =================================================================== > > > RCS file: /home/ncvs/src/etc/services,v > > > retrieving revision 1.62.2.9 > > > diff -u -r1.62.2.9 services > > > --- etc/services 2002/02/12 14:48:25 1.62.2.9 > > > +++ etc/services 2002/02/22 19:52:27 > > > @@ -1992,6 +1996,8 @@ > > > hacl-test 5305/udp > > > cfengine 5308/tcp > > > cfengine 5308/udp > > > +postgresql 5432/tcp #PostgreSQL Database > > > +postqresql 5432/udp #PostgreSQL Database > > ^ > > Just to be sure, IANA has a typo here, correct? > > LMAO! I copied and pasted that. They must have... yeah, that's a > type-o. I hope this doesn't become a piece of referer lore. I'll > talk with postgres-core and see if they're aware of this. -sc > > http://www.iana.org/assignments/port-numbers Yeah, I had already checked IANA before I wrote you. You have exactly what they published. I've sent them an email too. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 6:52:24 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8664937B402; Sat, 23 Feb 2002 06:52:22 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NEm5D37244; Sat, 23 Feb 2002 06:48:05 -0800 (PST) (envelope-from cjc) Date: Sat, 23 Feb 2002 06:48:05 -0800 (PST) From: Message-Id: <200202231448.g1NEm5D37244@freefall.freebsd.org> To: annihilator.c@usa.net, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/35241: Change to etc/rc Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Change to etc/rc State-Changed-From-To: open->closed State-Changed-By: cjc State-Changed-When: Sat Feb 23 06:45:05 PST 2002 State-Changed-Why: Duplicate of PR conf/34993. This has already been changed in revisions 1.295 and 1.212.2.40. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35241 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 7: 0:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A620937B402 for ; Sat, 23 Feb 2002 07:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NF05W21155; Sat, 23 Feb 2002 07:00:05 -0800 (PST) (envelope-from gnats) Date: Sat, 23 Feb 2002 07:00:05 -0800 (PST) Message-Id: <200202231500.g1NF05W21155@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: conf/35240: Update to etc/services Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/35240; it has been noted by GNATS. From: "Crist J. Clark" To: Annihilator Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: conf/35240: Update to etc/services Date: Sat, 23 Feb 2002 06:53:46 -0800 On Sat, Feb 23, 2002 at 02:03:38PM +0100, Annihilator wrote: > --- etc/services.orig Wed Jan 30 22:37:12 2002=0A= > +++ etc/services Sat Feb 23 12:39:00 2002=0A= > @@ -1723,6 +1723,7 @@=0A= > netview-aix-11 1671/udp=0A= > netview-aix-12 1672/tcp=0A= > netview-aix-12 1672/udp=0A= > +l2tp 1701/udp #Layer Two Tunneling Protocol=0A= Actually, l2f 1701/tcp l2f 1701/udp l2tp 1701/tcp l2tp 1701/udp > pptp 1723/tcp #Point-to-point tunnelling protocol=0A= > # IMPORTANT NOTE: See comments for ports 1645/1646 when using older = > equipment=0A= > radius 1812/udp #RADIUS authentication protocol (IANA sanctioned)=0A= > @@ -1913,6 +1914,7 @@=0A= > ccmail 3264/udp #cc:mail/lotus=0A= > dec-notes 3333/tcp #DEC Notes=0A= > dec-notes 3333/udp #DEC Notes=0A= > +msrdp 3389/tcp #Microsoft Remote Desktop Protocol=0A= This conflicts with what is actually assigned at this port, ms-wbt-server 3389/tcp #MS WBT Server ms-wbt-server 3389/udp #MS WBT Server -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 8: 0: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5712437B402 for ; Sat, 23 Feb 2002 08:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NG03232004; Sat, 23 Feb 2002 08:00:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E5ED237B404 for ; Sat, 23 Feb 2002 07:53:21 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NFrLR31225; Sat, 23 Feb 2002 07:53:21 -0800 (PST) (envelope-from nobody) Message-Id: <200202231553.g1NFrLR31225@freefall.freebsd.org> Date: Sat, 23 Feb 2002 07:53:21 -0800 (PST) From: Julian Noble To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/35245: unwanted stealth behaviour (inbound icmp via ppp tun0 ttl not decremented ?) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35245 >Category: misc >Synopsis: unwanted stealth behaviour (inbound icmp via ppp tun0 ttl not decremented ?) >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: Sat Feb 23 08:00:03 PST 2002 >Closed-Date: >Last-Modified: >Originator: Julian Noble >Release: >Organization: Precisium >Environment: FreeBSD sydr3.Junctionworld.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Wed Jan 23 07:42:09 GMT 2002 root@sydr3.Junctionworld.net:/usr/src/sys/compile/P7 i386 >Description: machine exhibits unwanted 'stealth' behaviour for inbound traceroutes to machines behind it even when no firewall enabled and IPSTEALTH kernel option not present. Machine does however appear as a hop for outbound traceroutes from machines behind it. >How-To-Repeat: traceroute to a machine behind a FreeBSD box with a ppp wan link and with the following kernel options. Hop is missing from trace even when you disable the firewall with sysctl or ipfw flush. No nat. All valid IP addresses. Connection is ADSL. If this is the nature of tun interfaces or something - I couldn't find any documentation on it. Only documentation I could find anywhere was about enabling stealth behaviour - not disabling - and I certainly didn't expect it to be on by default. It may be obvious - but I'm also new to unix-like operating systems so make extra consideration of the fact that I might not know what I'm doing. options IPFIREWALL options IPFIREWALL_VERBOSE options IPFIREWALL_VERBOSE_LIMIT=250 options IPFIREWALL_DEFAULT_TO_ACCEPT options IPDIVERT options NETGRAPH options NETGRAPH_SOCKET options NETGRAPH_ECHO options NETGRAPH_TEE options NETGRAPH_PPPOE options NETGRAPH_ETHER >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 Feb 23 8:10: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E06B37B404 for ; Sat, 23 Feb 2002 08:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NGA2Z36602; Sat, 23 Feb 2002 08:10:02 -0800 (PST) (envelope-from gnats) Date: Sat, 23 Feb 2002 08:10:02 -0800 (PST) Message-Id: <200202231610.g1NGA2Z36602@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jens Schweikhardt Subject: Re: bin/11114: make(1) does not work as documented with .POSIX: target Reply-To: Jens Schweikhardt Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/11114; it has been noted by GNATS. From: Jens Schweikhardt To: cjclark@alum.mit.edu Cc: bug-followup@freebsd.org Subject: Re: bin/11114: make(1) does not work as documented with .POSIX: target Date: Sat, 23 Feb 2002 15:29:56 +0100 On Sat, Feb 23, 2002 at 12:04:44AM -0800, Crist J. Clark wrote: # On Fri, Feb 22, 2002 at 08:28:50PM +0100, Jens Schweikhardt wrote: # > Crist, # > # > On Wed, Feb 20, 2002 at 08:23:16AM -0800, Crist J. Clark wrote: # > # The issue here is that the .POSIX target will not have its effect # > # until the makefile containing it is read. /usr/share/mk/sys.mk is the # > # first file read. make(1) doesn't know about anything that you have set # > # in your makefile yet. # > # # > # I have no idea if that is a bug or feature. What do the standards say # > # (if anything)? # > # > The POSIX 2001 Standard defines the behavior of make and mandates that # > the macros have the following values, when .POSIX: is specified as the # > first noncomment line and without prerequisites and commands: # # Right, but what is the exact wording? ".POSIX The application shall ensure that this special target is specified without prerequisites or commands. If it appears as the first non-comment line in the makefile, make shall process the makefile as specified by this section; otherwise, the behavior of make is unspecified." Later on it mentions the list of variables and their values. # All of this does work when the # ".POSIX" target is set in sys.mk. In exactly which makefile is the # ".POSIX" target supposed to work? The application programmer's. See the example in the PR. # If it is in the local one, this is a # real problem. Goes against the whole way makefiles are processed. I'm not sure what you mean with "local makefile". Regards, Jens -- Jens Schweikhardt http://www.schweikhardt.net/ SIGSIG -- signature too long (core dumped) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 8:40:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A12837B404 for ; Sat, 23 Feb 2002 08:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NGe1V40275; Sat, 23 Feb 2002 08:40:01 -0800 (PST) (envelope-from gnats) Received: from hand.dotat.at (host217-35-46-127.in-addr.btopenworld.com [217.35.46.127]) by hub.freebsd.org (Postfix) with ESMTP id F37A037B402 for ; Sat, 23 Feb 2002 08:31:37 -0800 (PST) Received: from fanf by hand.dotat.at with local (Exim 3.35 #1) id 16ef5H-00007p-00; Sat, 23 Feb 2002 16:31:39 +0000 Message-Id: Date: Sat, 23 Feb 2002 16:31:39 +0000 From: Tony Finch Reply-To: Tony Finch To: FreeBSD-gnats-submit@freebsd.org Cc: Tony Finch X-Send-Pr-Version: 3.113 Subject: kern/35248: panic: ffs_valloc: dup alloc Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35248 >Category: kern >Synopsis: panic: ffs_valloc: dup alloc >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 23 08:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Tony Finch >Release: FreeBSD 4.5-STABLE-20020220 i386 >Organization: dotat labs >Environment: System: FreeBSD hand.dotat.at 4.5-STABLE-20020220 FreeBSD 4.5-STABLE-20020220 #15: Wed Feb 20 07:46:52 GMT 2002 fanf@hand.dotat.at:/FreeBSD/obj/FreeBSD/releng4/sys/SHARP i386 >Description: I was using pkg_delete to remove a load of packages, and shortly after it started the machine crashed as follows... root@hand.dotat.at:~ : 0 ; gdb -k /boot/SHARP/kernel.debug /var/crash/vmcore.0 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"... IdlePTD at phsyical address 0x003f5000 initial pcb at physical address 0x00346480 panicstr: ffs_valloc: dup alloc panic messages: --- panic: ffs_valloc: dup alloc syncing disks... 27 done Uptime: 4h1m29s dumping to dev #ad/0x20001, offset 1344484 dump ata0: resetting devices .. ata0: mask=01 ostat0=50 ostat2=00 ata0-master: ATAPI probe a=00 b=00 ata0-slave: ATAPI probe a=00 b=00 ata0: mask=01 status0=50 status1=00 ata0-master: ATA probe a=01 b=a5 ata0: devices=01 ata0-master: success setting PIO4 on generic chip done 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 [CTRL-C to abort] [CTRL-C to abort] [CTRL-C to abort] 97 96 [CTRL-C to abort] [CTRL-C to abort] [CTRL-C to abort] 95 94 93 92 91 90 89 88 87 86 85 84 83 [CTRL-C to abort] [CTRL-C to abort] [CTRL-C to abort] 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 dumpsys () at /FreeBSD/releng4/sys/kern/kern_shutdown.c:485 warning: Source file is more recent than executable. 485 (kgdb) bt #0 dumpsys () at /FreeBSD/releng4/sys/kern/kern_shutdown.c:485 #1 0xc0163e64 in boot (howto=256) at /FreeBSD/releng4/sys/kern/kern_shutdown.c:314 #2 0xc0164298 in poweroff_wait (junk=0xc02f94a1, howto=-1070623616) at /FreeBSD/releng4/sys/kern/kern_shutdown.c:593 #3 0xc0246217 in ffs_valloc (pvp=0xc8b34400, mode=33152, cred=0xc0fe7a00, vpp=0xc8d92ca0) at /FreeBSD/releng4/sys/ufs/ffs/ffs_alloc.c:620 #4 0xc02592b8 in ufs_makeinode (mode=33152, dvp=0xc8b34400, vpp=0xc8d92edc, cnp=0xc8d92ef0) at /FreeBSD/releng4/sys/ufs/ufs/ufs_vnops.c:2115 #5 0xc025686c in ufs_create (ap=0xc8d92dfc) at /FreeBSD/releng4/sys/ufs/ufs/ufs_vnops.c:195 #6 0xc0259615 in ufs_vnoperate (ap=0xc8d92dfc) at /FreeBSD/releng4/sys/ufs/ufs/ufs_vnops.c:2422 #7 0xc0199b3e in vn_open (ndp=0xc8d92ec8, fmode=2563, cmode=384) at vnode_if.h:106 #8 0xc0195b68 in open (p=0xc8c353c0, uap=0xc8d92f80) at /FreeBSD/releng4/sys/kern/vfs_syscalls.c:1006 #9 0xc02bcaf9 in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = -1077944852, tf_esi = -1077944826, tf_ebp = -1077944980, tf_isp = -925290540, tf_ebx = 1209030340, tf_edx = -1077944812, tf_ecx = 16605606, tf_eax = 5, tf_trapno = 12, tf_err = 2, tf_eip = 1208938768, tf_cs = 31, tf_eflags = 659, tf_esp = -1077945136, tf_ss = 47}) at /FreeBSD/releng4/sys/i386/i386/trap.c:1167 #10 0xc02b0575 in Xint0x80_syscall () #11 0x480ecf34 in ?? () #12 0x804a603 in ?? () #13 0x804a4ea in ?? () #14 0x8049e0d in ?? () #15 0x8049c05 in ?? () #16 0x804993d in ?? () (kgdb) >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 Sat Feb 23 8:50: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B7C037B400 for ; Sat, 23 Feb 2002 08:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NGo2I41790; Sat, 23 Feb 2002 08:50:02 -0800 (PST) (envelope-from gnats) Date: Sat, 23 Feb 2002 08:50:02 -0800 (PST) Message-Id: <200202231650.g1NGo2I41790@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Mitsuru IWASAKI Subject: Re: conf/33815: Some pccard.conf entries does not work after pccardd's CIS string comparison fix. Reply-To: Mitsuru IWASAKI Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/33815; it has been noted by GNATS. From: Mitsuru IWASAKI To: mistral@imasy.or.jp Cc: freebsd-gnats-submit@FreeBSD.org, jju@ds.cs.toyo.ac.jp, iwasaki@FreeBSD.org Subject: Re: conf/33815: Some pccard.conf entries does not work after pccardd's CIS string comparison fix. Date: Sun, 24 Feb 2002 01:42:16 +0900 (JST) I believe I've made better changes in 1.231 -> 1.232. Please let me know if the changes cause any problems. Thanks > mistral% diff /usr/src/etc/defaults/pccard.conf pccard.conf > 114c114 > < card "CL ATA FLASH CARD LEXAR " "TIDALWV" > --- > > card "CL ATA FLASH CARD LEXAR " "TIDALWV" > 186c186 > < card "IO DATA" "CBIDE2" > --- > > card "IO DATA" "CBIDE2 " > 202c202 > < card "LOOKMEET" "CBIDE2" > --- > > card "LOOKMEET" "CBIDE2 " > 1235c1235 > < card "KME" "SCSI-CARD-001" > --- > > card "KME " "SCSI-CARD-001" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 9:20:56 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1CC5D37B405 for ; Sat, 23 Feb 2002 09:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NHK1C49412; Sat, 23 Feb 2002 09:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E589937B400 for ; Sat, 23 Feb 2002 09:18:02 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NHI2t49151; Sat, 23 Feb 2002 09:18:02 -0800 (PST) (envelope-from nobody) Message-Id: <200202231718.g1NHI2t49151@freefall.freebsd.org> Date: Sat, 23 Feb 2002 09:18:02 -0800 (PST) From: Fred To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/35249: no man page for latex2html Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35249 >Category: misc >Synopsis: no man page for latex2html >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 23 09:20:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Fred >Release: 4.5-RELEASE >Organization: >Environment: >Description: The latex2html port do not install a manpage >How-To-Repeat: >Fix: I think we can adapt these man page (from Debian) to FreeBSD : ================================= \" Hey, Emacs! This is an -*- nroff -*- source file. .\" Copyright (c) 1997 Manoj Srivastava .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as .\" published by the Free Software Foundation; either version 2 of .\" the License, or (at your option) any later version. .\" .\" The GNU General Public License's references to "object code" .\" and "executables" are to be interpreted as the output of any .\" document formatting or typesetting system, including .\" intermediate and printed output. .\" .\" This manual is distributed in the hope that it will be useful, .\" but WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the .\" GNU General Public License for more details. .\" .\" You should have received a copy of the GNU General Public .\" License along with this manual; if not, write to the Free .\" Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, .\" USA. .\" .\" .\" $Id: latex2html.1,v 1.2 2000/03/04 07:55:13 srivasta Exp $ .\" .TH LaTeX2HTML 1 "March 1 2000" "Debian" "Debian GNU/Linux manual" .SH NAME latex2html \- translate LaTeX files to HTML (HyperText Markup Language) .SH SYNOPSIS .B latex2html .I [options] \&[target [target ...]] .SH DESCRIPTION This manual page explains the .B "LaTeX2HTML" utility, which is a .B Perl program that translates .B LaTeX document into .B HTML format. For each source file given as an argument the translator will create a directory containing the corresponding HTML files. For details and examples, please consult the online html documentation, a copy of which should be available in .I /usr/share/doc/latex2html/manual.ps.gz or .I /usr/share/doc/latex2html/html/ .SH CAVEAT This documetation has been derived from the TeX manual, and may not be uptodate. Please refer to the online manual for authoritative documentation. .UN file://localhost/doc/latex2html/html/ .SH Options controlling Titles, File-Names and Sectioning .TP .B -t Same as setting: .I $TITLE = ""; Name the document using this title. .TP .B -short_extn Same as setting: .I $SHORTEXTN = 1; Use a filename prefix of .htm for the produced .B HTML files. This is particularly useful for creating pages to be stored on CD-ROM or other media, to be used with operating systems that require a 3-character extension. .TP .B -long_titles Same as setting: .I $LONG_TITLES = ; Instead of the standard names: node1.html, node2.html,... the filenames for each .B HTML page are constructed from the first words of the section heading for that page, separated by the `_' character. Commas and common short words (a an to by of and for the) are omitted from both title and word-count. Warning: Use this switch with great caution. Currently there are no checks for uniqueness of names or overall length. Very long names can easily result from using this feature. .TP .B -custom_titles Same as setting: .I $CUSTOM_TITLES = 1; Instead of the standard names: node1.html, node2.html, ... the filenames for each .B HTML page are constructed using a .B Perl subroutine named custom_title_hook . The user may define his/her own version of this subroutine, within a .latex2html-init file say, to override the default (which uses the standard names). This subroutine takes the section-heading as a parameter and must return the required name, or the empty string (default). .TP .B -dir Same as setting: .I $DESTDIR = ""; Redirect the output to the specified directory. The default behaviour is to create (or reuse) a directory having the same name as the prefix of the document being processed. .TP .B -no_subdir Same as setting: .I $NO_SUBDIR = 1; Place the generated .B HTML files into the current directory. This overrides any .I $DESTDIR setting. .TP .B -prefix Same as setting: .I $PREFIX = ""; The will be prepended to all .gif, .pl and .html files produced, except for the top-level .html file; it may include a (relative) directory path. This will enable multiple products of .B LaTeX2HTML to peacefully coexist in the same directory. However, do not attempt to simultaneously run multiple instances of .B LaTeX2HTML using the same output directory, else various temporary files will overwrite each other. .TP .B -auto_prefix Same as setting: .I $AUTO_PREFIX = 1; Constructs the prefix as `-' to be prepended to all the files produced, where <title> is the name of the .B LaTeX file being processed. (Note the `-' in this prefix.) This overrides any .I $PREFIX setting. .TP .B -no_auto_link Same as setting: .I $NO_AUTO_LINK = 1; If $NO_AUTO_LINK is empty and variables .I $LINKPOINT and .I $LINKNAME are defined appropriately (as is the default in the latex2html.config file), then a hard link to the main .B HTML page is produced, using the name supplied in .I $LINKNAME. Typically this is index.html; on many systems a file of this name will be used, if it exists, when a browser tries to view a URL which points to a directory. On other systems a different value for .I $LINKNAME may be appropriate. Typically .I $LINKPOINT has value .I $FILE.html, but this may also be changed to match whichever HTML page is to become the target of the automatic link. Use of the -no_auto_link switch cancels this automatic linking facility, when not required for a particular document. .TP .B -split <num> Same as setting: .I $MAX_SPLIT_DEPTH = <num>; (default is 8) Stop splitting sections into separate files at this depth. Specifying -split 0 will put the entire document into a single .B HTML file. See below for the different levels of sectioning. Also see the next item for how to set a ``relative'' depth for splitting. .TP .B -split +<num> Same as setting: .I $MAX_SPLIT_DEPTH = -<num>; (default is 8) The level at which to stop splitting sections is calculated ``relative to'' the shallowest level of sectioning that occurs within the document. For example, if the document contains \\section commands, but no \\part or \\chapter commands, then -split +1 will cause splitting at each \\section but not at any deeper level; whereas -split +2 or -split +3 also split down to \\subsection and \\subsubsection commands respectively. Specifying -split +0 puts the entire document into a single .B HTML file. .TP .B -link <num> Same as setting: .I $MAX_LINK_DEPTH = <num>; (default is 4) For each node, create links to child nodes down to this much deeper than the node's sectioning-level. Specifying -link 0 will show no links to child nodes from that page, -link 1 will show only the immediate descendents, etc. A value at least as big as that of the -split <num> depth will produce a mini table-of-contents (when not empty) on each page, for the tree structure rooted at that node. When the page has a sectioning-level less than the -split depth, so that the a mini table-of-contents has links to other .B HTML pages, this table is located at the bottom of the page, unless placed elsewhere using the \\tableofchildlinks command. On pages having a sectioning-level just less than the -split depth the mini table-of-contents contains links to subsections etc. occurring on the same .B HTML page. Now the table is located at the top of this page, unless placed elsewhere using the \\tableofchildlinks command. .TP .B -toc_depth <num> Same as setting: .I $TOC_DEPTH = <num>; (default is 4) Sectioning levels down to <num> are to be included within the Table-of-Contents tree. .TP .B -toc_stars Same as setting: .I $TOC_STARS = 1; Sections created using the starred-form of sectioning commands are included within the Table-of-Contents. As with .B LaTeX, normally such sections are not listed. .TP .B -show_section_numbers Same as setting: .I $SHOW_SECTION_NUMBERS = 1; Show section numbers. By default section numbers are not shown, so as to encourage the use of particular sections as stand-alone documents. In order to be shown, section titles must be unique and must not contain inlined graphics. .TP .B -unsegment Same as setting: .I $UNSEGMENT = 1; Treat a segmented document (see the section about document segmentation) like it were not segmented. This will cause the translator to concatenate all segments and process them as a whole. You might find this useful to check a segmented document for consistency. For all documents the sectioning levels referred to above are: .RS 0 document 1 part 2 chapter 3 section 4 subsection 5 subsubsection 6 paragraph 7 subparagraph 8 subsubparagraph .RE .P These levels apply even when the document contains no sectioning for the shallower levels; e.g. no \\part or \\chapter commands is most common, especially when using .B LaTeX's article document-class. .SH Options controlling Extensions and Special Features The switches described here govern the type of .B HTML code that can be generated, and how to choose between the available options when there are alternative strategies for implementing portions of .B LaTeX code. .TP .B -html_version (2.0|3.0|3.2)[,(math|i18n|table)]* Same as setting: .I $HTML_VERSION = "... "; This specifies both the .B HTML version to generate, and any extra (non-standard) .B HTML features that may be required. The version number corresponds to a published DTD for an .B HTML standard (although 3.0 was never accepted and subsequently withdrawn). A corresponding .B Perl file in the versions/ subdirectory is loaded; these files are named `html<num>.pl'. Following the version number, a comma-separated list of extensions can be given. Each corresponds to a file `<name>.pl' also located in the versions/ subdirectory. When such a file is loaded the resulting HTML code can no longer be expected to validate with the specified DTD. An exception is math when the -no_math switch is also used, which should still validate. Currently, versions 2.0, 3.2 and 4.0 are available. (and also 2.1, 2.2, 3.0 and 3.1, for hoistorical reasons). The extensions i18n, tables, math correspond roughly to what used to be called versions `2.1', `2.2', `3.1' respectively, in releases of .B LaTeX2HTML up to 1996. Now these extensions can be loaded with any of `2.0', `3.2' or `4.0' as the specified standard. The default version is usually set to be `3.2', within latex2html.config. .TP .B -no_tex_defs Same as setting: .I $TEXDEFS = 0; (default is 1) When .I $TEXDEFS is set (default) the file texdefs.perl will be read. This provides code to allow common TEX commands like \\def, \\newbox, \\newdimen and others, to be recognised, especially within the document preamble. In the case of \\def, the definition may even be fully interpreted, but this requires the pattern-matching to be not too complicated. If .I $TEXDEFS is `0' or empty, then texdefs.perl will not be loaded; the translator will make no attempt to interpret any raw TEX commands. This feature is intended to enable sophisticated authors the ability to insert arbitrary TEX commands in environments that are destined to be processed by .B LaTeX anyway; e.g. figures, theorems, pictures, etc. However this should rarely be needed, as now there is better support for these types of environment. There are now other methods to specify which chunks of code are to be passed to .B LaTeX for explicit image-generation; see the discussion of the makeimage environment. .TP .B -external_file <filename> Same as setting: .I $EXTERNAL_FILE = "<filename>"; Specifies the prefix of the .aux file that this document should read. The .aux extension will be appended to this prefix to get the complete filename, with directory path if needed. This file could contain necessary information regarding citations, figure, table and section numbers from .B LaTeX and perhaps other information also. Use of this switch is vital for document segments, processed separately and linked to appear as if generated from a single LaTeX document. .TP .B -font_size <size> Same as setting: .I $FONT_SIZE = "<size>"; This option provides better control over the font size of environments made into images using .B LaTeX. <size> must be one of the font sizes that .B LaTeX recognizes; i.e. `10pt', `11pt', `12pt', etc. Default is `10pt', or whatever option may have been specified on the \\documentclass or \\documentstyle line. Whatever size is selected, it will be magnified by the installation variables .I $MATH_SCALE_FACTOR, .I $FIGURE_SCALE_FACTOR and .I $DISP_SCALE_FACTOR as appropriate. Note: This switch provides no control over the size of text on the HTML pages. Such control is subject entirely to the user's choices of settings for the browser windows. .TP .B -scalable_fonts Same as setting: .I $SCALABLE_FONTS = 1; This is used when scalable fonts, such as PostScript versions of the TEX fonts, are available for image-generation. It has the effect of setting .I $PK_GENERATION to `1', and .I $DVIPS_MODE to be empty, overriding any previous settings for these variables. .TP .B -no_math Same as setting: .I $NO_SIMPLE_MATH = 1; Ordinarily simple mathematical expressions are set using the ordinary text font, but italiced. When part of the expression can not be represented this way, an image is made of the whole formula. This is called ``simple math''. When .I $NO_SIMPLE_MATH is set, then all mathematics is made into images, whether simple or not. However, if the math extension is loaded, using the -html_version switch described earlier, then specifying -no_math produces a quite different effect. Now it is the special <MATH> tags and entities which are cancelled. In their place a sophisticated scheme for parsing mathematical expressions is used. Images are made of those sub-parts of a formula which cannot be adequately expressed using (italiced) text characters and <SUB> and <SUP> tags. See the subsection on mathematics for more details. .TP .B -local_icons Same as setting: .I $LOCAL_ICONS = 1; A copy of each of the icons actually used within the document is placed in the directory along with the .B HTML files and generated images. This allows the whole document to be fully self-contained, within this directory; otherwise the icons must be retrieved from a (perhaps remote) server. The icons are normally copied from a subdirectory of the .B $LATEX2HTMLDIR, set within latex2html.config. An alternative set of icons can be used by specifying a (relative) directory path in $ALTERNATIVE_ICONS to where the customised images can be found. .TP .B -init_file <file> Load the specified initialisation file. This .B Perl file will be loaded after loading .I $HOME/.latex2html-init, or .latex2html-init in the local directory, if either file exists. It is read at the time the switch is processed, so the contents of the file may change any of the values of any of the variables that were previously established, as well as any default options. More than one initialisation file can be read in this way. [change_begin]98.1 .TP .B -no_fork Same as setting: .I $NOFORK = 1; When set this disables a feature in the early part of the processing whereby some memory-intensive operations are performed by `forked' child processes. Some single-task operating systems, such as DOS, do not support this feature. Having .I $NOFORK set then ensures that unnecessary file-handles that are needed with the forked processes, are not consumed unnecessarily, perhaps resulting in a fatal .B Perl error. .TP .B -iso_language <type> This enables you to specify a different language type than 'EN' to be used in the DTD entries of the .B HTML document, e.g. 'EN.US'. [change_end] 98.1 .TP .B -short_index Same as setting: .I $SHORT_INDEX = 1; Creates shorter Index listings, using codified links; this is fully compatible with the makeidx package. .TP .B -no_footnode Same as setting: .I $NO_FOOTNODE = 1; Suppresses use of a separate file for footnotes; instead these are placed at the bottom of the .B HTML pages where the references occur. When this option is used, it is frequently desirable to change the style of the marker used to indicate the presence of a footnote. This is done as in .B LaTeX, using code such as follows. \\renewcommand{\\thefootnote}{\\arabic{footnote}} All the styles \\arabic, \\alph, \\roman, \\Alph and \\Roman are available. [change_begin]98.1 .TP .B -numbered_footnotes Same as setting: .I $NUMBERED_FOOTNOTES = 1; If this is set you will get every footnote applied with a subsequent number, to ease readability. [change_end] 98.1 .TP .B -address <author-address> Same as setting: .I $ADDRESS = "<author-address>"; Sign each page with this address. See latex2html.config for an example using .B Perl code to automatically include the date. A user-defined .B Perl subroutine called &custom_address can be used instead, if defined; it takes the value of .I $ADDRESS as a parameter, which may be used or ignored as desired. At the time when this subroutine will be called, variables named $depth, .I $title, .I $file hold the sectioning-level, title and filename of the .B HTML page being produced; .I $FILE holds the name of the filename for the title-page of the whole document. .TP .B -info <string> Same as setting: .I $INFO = "<string>"; Generate a new section ``About this document'' containing information about the document being translated. The default is to generate such a section with information on the original document, the date, the user and the translator. An empty string (or the value `0') disables the creation of this extra section. If a non-empty string is given, it will be placed as the contents of the ``About this document'' page instead of the default information. .SH Switches controlling Image Generation These switches affect whether images are created at all, whether old images are reused on subsequent runs or new ones created afresh, and whether anti-aliasing effects are used within the images themselves. .TP .B -ascii_mode Same as setting: .I $ASCII_MODE = $EXTERNAL_IMAGES = 1; Use only ASCII characters and do not include any images in the final output. With -ascii_mode the output of the translator can be used on character-based browsers, such as lynx, which do not support inlined images (via the <IMG> tag). .TP .B -nolatex Same as setting: .I $NOLATEX = 1; Disable the mechanism for passing unknown environments to .B LaTeX for processing. This can be thought of as ``draft mode'' which allows faster translation of the basic document structure and text, without fancy figures, equations or tables. (This option has been superseded by the -no_images option, see below.) .TP .B -external_images Same as setting: .I $EXTERNAL_IMAGES = 1; Instead of including any generated images inside the document, leave them outside the document and provide hypertext links to them. .TP .B -ps_images Same as setting: .I $PS_IMAGES = $EXTERNAL_IMAGES = 1; Use links to external PostScript files rather than inlined images in the chosen graphics format. .TP .B -discard Same as setting: .I $DISCARD_PS = 1; The temporary PostScript files are discarded immediately after they have been used to create the image in the desired graphics format. .TP .B -no_images Same as setting: .I $NO_IMAGES = 1; Do not attempt to produce any inlined images. The missing images can be generated ``off-line'' by restarting .B LaTeX2HTML with the option -images_only . .TP .B -images_only Same as setting: .I $IMAGES_ONLY = 1; Try to convert any inlined images that were left over from previous runs of .B LaTeX2HTML. .TP .B -reuse <reuse_option> Same as setting: .I $REUSE = <reuse_option>; This switch specifies the extent to which image files are to be shared or recycled. There are three valid options: [*] 0 Do not ever share or recycle image files. This choice also invokes an interactive session prompting the user about what to do about a pre-existing .B HTML directory, if it exists. [*] 1 Recycle image files from a previous run if they are available, but do not share identical images that must be created in this run. [*] 2 Recycle image files from a previous run and share identical images from this run. This is the default. A later section provides additional information about image-reuse. .TP .B -no_reuse Same as setting: .I $REUSE = 0; Do not share or recycle images generated during previous translations. This is equivalent to -reuse 0 . (This will enable the initial interactive session during which the user is asked whether to reuse the old directory, delete its contents or quit.) .TP .B -antialias Same as setting: .I $ANTI_ALIAS = 1; (Default is 0.) Generated images of figure environments and external PostScript files should use anti-aliasing. By default anti-aliasing is not used with these images, since this may interfere with the contents of the images themselves. .TP .B -antialias_text Same as setting: .I $ANTI_ALIAS_TEXT = 1; (Default is 1.) Generated images of typeset material such as text, mathematical formulas, tables and the content of makeimage environments, should use anti-aliasing effects. The default is normally to use anti-aliasing for text, since the resulting images are much clearer on-screen. However the default may have been changed locally. .TP .B -no_antialias Same as setting: .I $ANTI_ALIAS = 0; (Default is 0.) Generated images of figure environments and external PostScript files should not use anti-aliasing with images, though the local default may have been changed to use it. .TP .B -no_antialias_text Same as setting: .I $ANTI_ALIAS_TEXT = 0; (Default is 1.) Generated images of typeset material should not use anti-aliasing effects. Although on-screen images of text are definitely improved using anti-aliasing, printed images can be badly blurred, even at 300dpi. Higher resolution printers do a much better job with the resulting grey-scale images. [change_begin]98.1 .TP .B -white Same as setting: .I $WHITE_BACKGROUND = 1; (Default is 1.) Ensures that images of figure environments have a white background. Otherwise transparency effects may not work correctly. .TP .B -no_white Same as setting: .I $WHITE_BACKGROUND = ''; (Default is 1.) Cancels the requirement that figure environments have a white background. .TP .B -ldump Same as setting: .I $LATEX_DUMP = 1; (Default is 0.) Use this if you want to speed up image processing during the 2nd and subsequent runs of .B LaTeX2HTML on the same document. The translator now produces a .B LaTeX format-dump of the preamble to images.tex which is used on subsequent runs. This significantly reduces the startup time when .B LaTeX reads the images.tex file for image-generation. This process actually consumes additional time on the first run, since .B LaTeX is called twice -- once to create the format-dump, then again to load and use it. The pay-off comes with the faster loading on subsequent runs. Approximately 1 Meg of disk space is consumed by the dump file. [change_end] 98.1 .SH Switches controlling Navigation Panels The following switches govern whether to include one or more navigation panels on each .B HTML page, also which buttons to include within such a panel. .TP .B -no_navigation Same as setting: .I $NO_NAVIGATION = 1; Disable the mechanism for putting navigation links in each page. This overrides any settings of the .I $TOP_NAVIGATION, .I $BOTTOM_NAVIGATION and .I $AUTO_NAVIGATION variables. .TP .B -top_navigation Same as setting: .I $TOP_NAVIGATION = 1; Put navigation links at the top of each page. .TP .B -bottom_navigation Same as setting: .I $BOTTOM_NAVIGATION = 1; Put navigation links at the bottom of each page as well as the top. .TP .B -auto_navigation Same as setting: .I $AUTO_NAVIGATION = 1; Put navigation links at the top of each page. Also put one at the bottom of the page, if the page exceeds .I $WORDS_IN_PAGE number of words (default = 450). .TP .B -next_page_in_navigation Same as setting: .I $NEXT_PAGE_IN_NAVIGATION = 1; Put a link to the next logical page in the navigation panel. .TP .B -previous_page_in_navigation Same as setting: .I $PREVIOUS_PAGE_IN_NAVIGATION = 1; Put a link to the previous logical page in the navigation panel. .TP .B -contents_in_navigation Same as setting: .I $CONTENTS_IN_NAVIGATION = 1; Put a link to the table-of-contents in the navigation panel if there is one. .TP .B -index_in_navigation Same as setting: .I $INDEX_IN_NAVIGATION = 1; Put a link to the index-page in the navigation panel if there is an index. .SH Switches for Linking to other documents When processing a single stand-alone document, the switches described in this section should not be needed at all, since the automatically generated navigation panels, described on the previous page should generate all the required navigation links. However if a document is to be regarded as part of a much larger document, then links from its first and final pages, to locations in other parts of the larger (virtual) document, need to be provided explicitly for some of the buttons in the navigation panel. The following switches allow for such links to other documents, by providing the title and URL for navigation panel hyperlinks. In particular, the ``Document Segmentation'' feature necessarily makes great use of these switches. It is usual for the text and targets of these navigation hyperlinks to be recorded in a Makefile, to avoid tedious typing of long command-lines having many switches. .TP .B -up_url <URL> Same as setting: .I $EXTERNAL_UP_LINK = "<URL>"; Specifies a universal resource locator (URL) to associate with the ``UP'' button in the navigation panel(s). .TP .B -up_title <string> Same as setting: .I $EXTERNAL_UP_TITLE = "<string>"; Specifies a title associated with this URL. .TP .B -prev_url <URL> Same as setting: .I $EXTERNAL_PREV_LINK = "<URL>"; Specifies a URL to associate with the ``PREVIOUS'' button in the navigation panel(s). .TP .B -prev_title <string> Same as setting: .I $EXTERNAL_PREV_TITLE = "<string>"; Specifies a title associated with this URL. .TP .B -down_url <URL> Same as setting: .I $EXTERNAL_DOWN_LINK = "<URL>"; Specifies a URL for the ``NEXT'' button in the navigation panel(s). .TP .B -down_title <string> Same as setting: .I $EXTERNAL_DOWN_TITLE = "<string>"; Specifies a title associated with this URL. .TP .B -contents <URL> Same as setting: .I $EXTERNAL_CONTENTS = "<URL>"; Specifies a URL for the ``CONTENTS'' button, for document segments that would not otherwise have one. .TP .B -index <URL> Same as setting: .I $EXTERNAL_INDEX = "<URL>"; Specifies a URL for the ``INDEX'' button, for document segments that otherwise would not have an index. .TP .B -biblio <URL> Same as setting: .I $EXTERNAL_BIBLIO = "<URL>"; Specifies the URL for the bibliography page to be used, when not explicitly part of the document itself. Warning: On some systems it is difficult to give text-strings <string> containing space characters, on the command-line or via a Makefile. One way to overcome this is to use the corresponding variable. Another way is to replace the spaces with underscores (_). .SH Switches for Help and Tracing The first two of the following switches are self-explanatory. When problems arise in processing a document, the switches -debug and -verbosity will each cause .B LaTeX2HTML to generate more output to the screen. These extra messages should help to locate the cause of the problem. .TP .B -tmp <path> Define a temporary directory to use for image generation. If <path> is 0, the standard temporary directory /tmp is used. .TP .B -h(elp) Print out the list of all command-line options. .TP .B -v Print the current version of .B LaTeX2HTML. .TP .B -debug Same as setting: .I $DEBUG = 1; Run in debug-mode, displaying messages and/or diagnostic information about files read, and utilities called by .B LaTeX2HTML. Shows any messages produced by these calls. More extensive diagnostics, from the .B Perl debugger, can be obtained by appending the string `-w-' to the 1st line of the latex2html (and other) .B Perl script(s). .TP .B -verbosity <num> Same as setting: .I $VERBOSITY = <num>; Display messages revealing certain aspects of the processing performed by .B LaTeX2HTML on the provided input file(s). The <num> parameter can be an integer in the range 0 to 8. Each higher value adds to the messages produced. .TP 0. No special tracing; as for versions of .B LaTeX2HTML prior to V97.1. .TP 1. (This is the default.) Show section-headings and the corresponding HTML file names, and indicators that major stages in the processing have been completed. .TP 2. Print environment names and identifier numbers, and new theorem-types. Show warnings as they occur, and indicators for more stages of processing. Print names of files for storing auxiliary data arrays. .TP 3. Print command names as they are encountered and processed; also any unknown commands encountered while pre-processing. Show names of new commands, environments, theorems, counters and counter-dependencies, for each document partition. .TP 4. Indicate command-substitution the pre-process of math-environments. Print the contents of unknown environments for processing in .B LaTeX, both before and after reverting to .B LaTeX source. Show all operations affecting the values of counters. Also show links, labels and sectioning keys, at the stages of processing. .TP 5. Detail the processing in the document preamble. Show substitutions of new environments. Show the contents of all recognised environments, both before and after processing. Show the cached/encoded information for the image keys, allowing two images to be tested for equality. .TP 6. Show replacements of new commands, accents and wrapped commands. .TP 7. Trace the processing of commands in math mode; both before and after. .TP 8. Trace the processing of all commands, both before and after. The command-line option sets an initial value only. During processing the value of .I $VERBOSITY can be set dynamically using the \\htmltracing{...} command, whose argument is the desired value, or by using the more general \\HTMLset command as follows: \\HTMLset{VERBOSITY}{<num>}. .SH Other Configuration Variables, without switches The configuration variables described here do not warrant having a command-line switch to assign values. Either they represent aspects of .B LaTeX2HTML that are specific to the local site, or they govern properties that should apply to all documents, rather than something that typically would change for the different documents within a particular sub-directory. Normally these variables have their value set within the latex2html.config file. In the following listing the defaults are shown, as the lines of Perl code used to establish these values. If a different value is required, then these can be assigned from a local .latex2html-init initialisation file, without affecting the defaults for other users, or documents processed from other directories. .TP .B $dd holds the string to be used in file-names to delimit directories; it is set internally to `/', unless the variable has already been given a value within latex2html.config . Note: This value cannot be set within a .latex2html-init initialisation file, since its value needs to be known in order to find such a file. .TP .B $LATEX2HTMLDIR Read by the install-test script from latex2html.config, its value is inserted into the latex2html .B Perl script as part of the installation process. .TP .B $LATEX2HTMLSTYLES = "$LATEX2HTMLDIR/styles"; Read from the latex2html.config file by install-test, its value is checked to locate the styles/ directory. .TP .B $LATEX2HTMLVERSIONS = "$LATEX2HTMLDIR/versions"; The value of this variable should be set within latex2html.config to specify the directory path where the version and extension files can be found. .TP .B $ALTERNATIVE_ICONS = ''; This may contain the (relative) directory path to a set of customised icons to be used in conjunction with the -local_icons switch. .TP .B $TEXEXPAND = "$LATEX2HTMLDIR/texexpand"; Read by the install-test .B Perl script from latex2html.config, its value is used to locate the texexpand .B Perl script. .TP .B $PSTOIMG = "$LATEX2HTMLDIR/pstoimg"; Read by the install-test .B Perl script from latex2html.config, its value is used to locate the pstoimg .B Perl script. .TP .B $IMAGE_TYPE = '<image-type>'; Set in latex2html.config, the currently supported <image-type>s are: gif and png. .TP .B $DVIPS = 'dvips'; Read from latex2html.config by install-test, its value is checked to locate the dvips program or script. There could be several reasons to change the value here: o add a switch -P<printer> to load a specific configuration-file; e.g. to use a specific set of PostScript fonts, for improved image-generation. o to prepend a path to a different version of dvips than normally available as the system default (e.g. the printing requirements are different). o to append debugging switches, in case of poor quality images; one can see which paths are being searched for fonts and other resources. o to prepend commands for setting path variables that dvips may need in order to locate fonts or other resources. If automatic generation of fonts is required, using Metafont, the following configuration variables are important. .RS .TP .B $PK_GENERATION = 1; This variable must be set, to initiate font-generation; otherwise fonts will be scaled from existing resources on the local system. In particular this variable must not be set, if one wishes to use PostScript fonts or other scalable font resources (see the -scalable_fonts switch). .TP .B $DVIPS_MODE = 'toshiba'; The mode given here must be available in the modes.mf file, located with the Metafont resource files, perhaps in the misc/ subdirectory. .TP .B $METAFONT_DPI = 180; The required resolution, in dots-per-inch, should be listed specifically within the MakeTeXPK script, called by dvips to invoke Metafont with the correct parameters for the required fonts. .RE .TP .B $LATEX = 'latex'; Read from latex2html.config by install-test, its value is checked to locate the latex program or script. If .B LaTeX is having trouble finding style-files and/or packages, then the default command can be prepended with other commands to set environment variables intended to resolve these difficulties; e.g. .I $LATEX = 'setenv TEXINPUTS <path to search> ; latex' . There are several variables to help control exactly which files are read by .B LaTeX2HTML and by .B LaTeX when processing images: .RS .TP .B $TEXINPUTS This is normally set from the environment variable of the same name. If difficulties occur so that styles and packages are not being found, then extra paths can be specified here, to resolve these difficulties. .TP .B $DONT_INCLUDE This provides a list of filenames and extensions to not include, even if requested to do so by an \\input or \\include command. (Consult latex2html.config for the default list.) .TP .B $DO_INCLUDE = ''; List of exceptions within the .I $DONT_INCLUDE list. These files are to be read if requested by an \\input or \\include command. .RE .TP .B $ICONSERVER = '<URL>'; This is used to specify a URL to find the standard icons, as used for the navigation buttons. Names for the specific images size, as well as size information, can be found in latex2html.config. The icons themselves can be replaced by customised versions, provided this information is correctly updated and the location of the customised images specified as the value of $ICONSERVER. When the -local_icons switch is used, so that a copy of the icons is placed with the .B HTML files and other generated images, the value of $ICONSERVER is not needed within the .B HTML files themselves. However it is needed to find the original icons to be copied to the local directory. .TP .B $NAV_BORDER = <num>; The value given here results in a border, measured in points, around each icon. A value of `0' is common, to maintain strict alignment of inactive and active buttons in the control panels. .TP .B $LINKNAME = '"index.$EXTN"'; This is used when the .I $NO_AUTO_LINK variable is empty, to allow a URL to the working directory to be sufficient to reach the main page of the completed document. It specifies the name of the .B HTML file which will be automatically linked to the directory name. The value of .I $EXTN is .html unless .I $SHORTEXTN is set, in which case it is .htm . .TP .B $LINKPOINT = '"$FILE$EXTN"'; This specifies the name of the .B HTML file to be duplicated, or symbolically linked, with the name specified in .I $LINKNAME. At the appropriate time the value of .I $FILE is the document name, which usually coincides with the name of the working directory. .TP .B $CHARSET = 'iso_8859_1'; This specifies the character set used within the .B HTML pages produced by .B LaTeX2HTML. If no value is set in a configuration or initialisation file, the default value will be assumed. The lowercase form .I $charset is also recognised, but this is overridden by the uppercase form. .TP .B $ACCENT_IMAGES = 'large'; Accented characters that are not part of the ISO-Latin fonts can be generated by making an image using .B LaTeX. This variable contains a (comma-separated) list of .B LaTeX commands for setting the style to be used when these images are made. If the value of this variable is empty then the accent is simply ignored, using an un-accented font character (not an image) instead. Within the color.perl package, the following variables are used to identify the names of files containing specifications for named colors. Files having these names are provided, in the .I $LATEX2HTMLSTYLES directory, but they could be moved elsewhere, or replaced by alternative files having different names. In such a case the values of these variables should be altered accordingly. $RGBCOLORFILE = 'rgb.txt'; $CRAYOLAFILE = 'crayola.txt'; The following variables may well be altered from the system defaults, but this is best done using a local .latex2html-init initialisation file, for overall consistency of style within documents located at the same site, or sites in close proximity. .TP .B $default_language = 'english'; This establishes which language code is to be placed within the <!DOCTYPE ... > tag that may appear at the beginning of the .B HTML pages produced. Loading a package for an alternative language can be expected to change the value of this variable. See also the .I $TITLES_LANGUAGE variable, described next. .TP .B $TITLES_LANGUAGE = 'english'; This variable is used to specify the actual strings used for standard document sections, such as ``Contents'', ``References'', ``Table of Contents'', etc. Support for French and German titles is available in corresponding packages. Loading such a package will normally alter the value of this variable, as well as the .I $default_language variable described above. .TP .B $WORDS_IN_NAVIGATION_PANEL_TITLES = 4; Specifies how many words to use from section titles, within the textual hyperlinks which accompany the navigation buttons. .TP .B $WORDS_IN_PAGE = 450; Specifies the minimum page length required before a navigation panel is placed at the bottom of a page, when the .I $AUTO_NAVIGATION variable is set. .TP .B $CHILDLINE = "<BR><HR>\\n"; This gives the .B HTML code to be placed between the child-links table and the ordinary contents of the page on which it occurs. .TP .B $NETSCAPE_HTML = 0; When set, this variable specifies that .B HTML code may be present which does not conform to any official standard. This restricts the contents of any <!DOCTYPE ... > tag which may be placed at the beginning of the HTML pages produced. .TP .B $BODYTEXT = ''; The value of this variable is used within the <BODY ... > tag; e.g. to set text and/or background colors. It's value is overridden by the \\bodytext command, and can be added-to or parts changed using the \\htmlbody command or \\color and \\pagecolor from the color package. .TP .B $INTERLACE = 1; When set, interlaced images should be produced. This requires graphics utilities to be available to perform the interlacing operation. .TP .B $TRANSPARENT_FIGURES = 1; When set, the background of images should be made transparent; otherwise it is white. This requires graphics utilities to be available which can specify the color to be made transparent. .TP .B $FIGURE_SCALE_FACTOR = 1.6; Scale factor applied to all images of figure and other environments, when being made into an image. Note that this does not apply to recognised mathematics environments, which instead use the contents of .I $MATH_SCALE_FACTOR and $DISP_SCALE_FACTOR to specify scaling. .TP .B $MATH_SCALE_FACTOR = 1.6; Scale factor applied to all images of mathematics, both inline and displayed. A value of 1.4 is a good alternative, with anti-aliased images. .TP .B $DISP_SCALE_FACTOR = 1; Extra scale factor applied to images of displayed math environments. When set, this value multiplies .I $MATH_SCALE_FACTOR to give the total scaling. A value of `1.2' is a good choice to accompany $MATH_SCALE_FACTOR = 1.4;. .TP .B $EXTRA_IMAGE_SCALE This may hold an extra scale factor that can be applied to all generated images. When set, it specifies that a scaling of .I $EXTRA_IMAGE_SCALE be applied when images are created, but to have their height and width recorded as the un-scaled size. This is to coax browsers into scaling the (usually larger) images to fit the desired size; when printed a better quality can be obtained. Values of `1.5' and `2' give good print quality at 600dpi. .TP .B $PAPERSIZE = 'a5'; Specifies the size of a page for typesetting figures or displayed math, when an image is to be generated. This affects the lengths of lines of text within images. Since images of text or mathematics should use larger sizes than when printed, else clarity is lost at screen resolutions, then a smaller paper-size is generally advisable. This is especially so if both the $MATH_SCALE_FACTOR and .I $DISP_SCALE_FACTOR scaling factors are being used, else some images may become excessively large, including a lot of blank space. .TP .B $LINE_WIDTH = 500; Formerly specified the width of an image, when the contents were to be right- or center-justified. (No longer used.) .PP The following variables are used to access the utilities required during image-generation. File and program locations on the local system are established by the configure-pstoimg .B Perl script and stored within .I $LATEX2HTMLDIR/local.pm as .B Perl code, to be read by pstoimg when required. After running the configure-pstoimg Perl script it should not be necessary to alter the values obtained. Those shown below are what happens on the author's system; they are for illustration only and do not represent default values. .PP $GS_LIB = '/usr/local/share/ghostscript/4.02'; $PNMCAT = '/usr/local/bin/pnmcat'; $PPMQUANT = '/usr/local/bin/ppmquant'; $PNMFLIP = '/usr/local/bin/pnmflip'; $PPMTOGIF = '/usr/local/bin/ppmtogif'; $HOWTO_TRANSPARENT_GIF = 'netpbm'; $GS_DEVICE = 'pnmraw'; $GS = '/usr/local/bin/gs'; $PNMFILE = '/usr/local/bin/pnmfile'; $HOWTO_INTERLACE_GIF = 'netpbm'; $PBMMAKE = '/usr/local/bin/pbmmake'; $PNMCROP = '/usr/local/bin/pnmcrop'; $TMP = '/usr/var/tmp'; The following variables are no longer needed, having been replaced by the more specific information obtained using the Perl script configure-pstoimg. $USENETPBM = 1; $PBMPLUSDIR = '/usr/local/bin'; .SH "SEE ALSO" .BR latex (1) .SH AUTHOR Nikos Drakos, Computer Based Learning Unit, University of Leeds <nikos@cbl.leeds.ac.uk>. Several people have contributed suggestions, ideas, solutions, support and encouragement. The current maintainer is Ross Moore. This manual page was written Manoj Srivastava <srivasta@debian.org>, for the Debian GNU/Linux system, based on the LaTeX documentation accompanying the program. >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 Feb 23 13:10:17 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C7B5837B41B for <freebsd-bugs@hub.freebsd.org>; Sat, 23 Feb 2002 13:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NLA1T95704; Sat, 23 Feb 2002 13:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1243137B402 for <freebsd-gnats-submit@FreeBSD.org>; Sat, 23 Feb 2002 13:03:57 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NL3vX91548; Sat, 23 Feb 2002 13:03:57 -0800 (PST) (envelope-from nobody) Message-Id: <200202232103.g1NL3vX91548@freefall.freebsd.org> Date: Sat, 23 Feb 2002 13:03:57 -0800 (PST) From: melvin martinez <melvinmr·@hotmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/35255: Como ejecuto el comand shutdown para apagar el computador ? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org >Number: 35255 >Category: misc >Synopsis: Como ejecuto el comand shutdown para apagar el computador ? >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 Feb 23 13:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: melvin martinez >Release: 4.4 >Organization: personal >Environment: >Description: De que forma puedo apagar el computador ejecutando el comando shutdown >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 Sat Feb 23 13:10:17 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9645837B416 for <freebsd-bugs@hub.freebsd.org>; Sat, 23 Feb 2002 13:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NLA1h95686; Sat, 23 Feb 2002 13:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE44737B405 for <freebsd-gnats-submit@FreeBSD.org>; Sat, 23 Feb 2002 13:02:25 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NL2Pb91412; Sat, 23 Feb 2002 13:02:25 -0800 (PST) (envelope-from nobody) Message-Id: <200202232102.g1NL2Pb91412@freefall.freebsd.org> Date: Sat, 23 Feb 2002 13:02:25 -0800 (PST) From: melvin martinez <melvinmr·@hotmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/35253: Por que el usuario root no puede entrar al entorno grafico ? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org >Number: 35253 >Category: misc >Synopsis: Por que el usuario root no puede entrar al entorno grafico ? >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 Feb 23 13:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: melvin martinez >Release: 4.4 >Organization: personal >Environment: >Description: cuando ejecuto el comando xdm para entrar al entorno grafico no puedo logearne con el usuario root, ademas que no puedo darle shutdown o apagar la maquina. >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 Sat Feb 23 13:10:40 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C12237B41D for <freebsd-bugs@hub.freebsd.org>; Sat, 23 Feb 2002 13:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NLA1m95713; Sat, 23 Feb 2002 13:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 52CC437B405 for <freebsd-gnats-submit@FreeBSD.org>; Sat, 23 Feb 2002 13:05:24 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NL5Om95190; Sat, 23 Feb 2002 13:05:24 -0800 (PST) (envelope-from nobody) Message-Id: <200202232105.g1NL5Om95190@freefall.freebsd.org> Date: Sat, 23 Feb 2002 13:05:24 -0800 (PST) From: melvin martinez <melvinmr·@hotmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/35256: puedo instalar informix ? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org >Number: 35256 >Category: misc >Synopsis: puedo instalar informix ? >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 Feb 23 13:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: melvin martinez >Release: 4.4 >Organization: personal >Environment: >Description: Se puede instalar aplicaciones de informix-4gl >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 Sat Feb 23 14:32:29 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A112937B419; Sat, 23 Feb 2002 14:32:23 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NMQJe07929; Sat, 23 Feb 2002 14:26:19 -0800 (PST) (envelope-from cjc) Date: Sat, 23 Feb 2002 14:26:19 -0800 (PST) From: <cjc@FreeBSD.org> Message-Id: <200202232226.g1NMQJe07929@freefall.freebsd.org> To: melvinmr·@hotmail.com, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/35253: Por que el usuario root no puede entrar al entorno grafico ? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org Synopsis: Por que el usuario root no puede entrar al entorno grafico ? State-Changed-From-To: open->closed State-Changed-By: cjc State-Changed-When: Sat Feb 23 14:24:11 PST 2002 State-Changed-Why: PRs are not for questions. Please address questions to the appropriate mailing list. Your question would be well suited for freebsd-questions@freebsd.org. You will also get better results with English. PRs should also be in English. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35253 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 14:32:29 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 451E537B417; Sat, 23 Feb 2002 14:32:23 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NMRWd08227; Sat, 23 Feb 2002 14:27:32 -0800 (PST) (envelope-from cjc) Date: Sat, 23 Feb 2002 14:27:32 -0800 (PST) From: <cjc@FreeBSD.org> Message-Id: <200202232227.g1NMRWd08227@freefall.freebsd.org> To: melvinmr·@hotmail.com, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/35256: puedo instalar informix ? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org Synopsis: puedo instalar informix ? State-Changed-From-To: open->closed State-Changed-By: cjc State-Changed-When: Sat Feb 23 14:27:17 PST 2002 State-Changed-Why: PRs are not for questions. Please address questions to the appropriate mailing list. Your question would be well suited for freebsd-questions@freebsd.org. You will also get better results with Engish. PRs should also be submitted in English. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35256 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 14:32:39 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA01537B41B; Sat, 23 Feb 2002 14:32:24 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NMRAG08126; Sat, 23 Feb 2002 14:27:10 -0800 (PST) (envelope-from cjc) Date: Sat, 23 Feb 2002 14:27:10 -0800 (PST) From: <cjc@FreeBSD.org> Message-Id: <200202232227.g1NMRAG08126@freefall.freebsd.org> To: melvinmr·@hotmail.com, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/35255: Como ejecuto el comand shutdown para apagar el computador ? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org Synopsis: Como ejecuto el comand shutdown para apagar el computador ? State-Changed-From-To: open->closed State-Changed-By: cjc State-Changed-When: Sat Feb 23 14:26:27 PST 2002 State-Changed-Why: PRs are not for questions. Please address questions to the appropriate mailing list. Your question would be well suited for freebsd-questions@freebsd.org. You will also get better results with Engish. PRs should also be submitted in English. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35255 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 14:32:45 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0841937B41D; Sat, 23 Feb 2002 14:32:26 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NMMsH07544; Sat, 23 Feb 2002 14:22:54 -0800 (PST) (envelope-from cjc) Date: Sat, 23 Feb 2002 14:22:54 -0800 (PST) From: <cjc@FreeBSD.org> Message-Id: <200202232222.g1NMMsH07544@freefall.freebsd.org> To: cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/35249: no man page for latex2html Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org Synopsis: no man page for latex2html Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: cjc Responsible-Changed-When: Sat Feb 23 14:22:24 PST 2002 Responsible-Changed-Why: Misfiled PR. latex2html is a port. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35249 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 14:32:50 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8720A37B404; Sat, 23 Feb 2002 14:32:27 -0800 (PST) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NMQoI08085; Sat, 23 Feb 2002 14:26:50 -0800 (PST) (envelope-from dwmalone) Date: Sat, 23 Feb 2002 14:26:50 -0800 (PST) From: <dwmalone@FreeBSD.org> Message-Id: <200202232226.g1NMQoI08085@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, brian@FreeBSD.org Subject: Re: misc/35245: unwanted stealth behaviour (inbound icmp via ppp tun0 ttl not decremented ?) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org Synopsis: unwanted stealth behaviour (inbound icmp via ppp tun0 ttl not decremented ?) Responsible-Changed-From-To: freebsd-bugs->brian Responsible-Changed-By: dwmalone Responsible-Changed-When: Sat Feb 23 14:26:21 PST 2002 Responsible-Changed-Why: Looks like brian would be able to handle this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=35245 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 15:30:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D2B937B404 for <freebsd-bugs@hub.freebsd.org>; Sat, 23 Feb 2002 15:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NNU2j18622; Sat, 23 Feb 2002 15:30:02 -0800 (PST) (envelope-from gnats) Date: Sat, 23 Feb 2002 15:30:02 -0800 (PST) Message-Id: <200202232330.g1NNU2j18622@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav <des@ofug.org> Subject: bin/25059 (rtld bug) Reply-To: Dag-Erling Smorgrav <des@ofug.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org The following reply was made to PR bin/25059; it has been noted by GNATS. From: Dag-Erling Smorgrav <des@ofug.org> To: arch@freebsd.org Cc: Subject: bin/25059 (rtld bug) Date: 24 Feb 2002 00:21:49 +0100 --=-=-= Our dlopen(3) man page states: RTLD_GLOBAL Symbols from this shared object and its directed acyclic graph (DAG) of needed objects will be available for resolv ing undefined references from all other shared objects. but this is a lie - only the object itself is searched, not its DAG. The attached patch fixes this by adding a flag to the Obj_Entry structure that marks an object as global, and changing symlook_list() to search each global object's DAG if the object itself doesn't have the requested symbol. With this patch applied, the test program referenced in the PR works. (some might argue that symlook_obj() should be changed instead - but changing symlook_list() was simpler, and the only difference it makes is, in the worst case, a slightly longer search) DES -- Dag-Erling Smorgrav - des@ofug.org --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=rtld.diff Index: rtld.c =================================================================== RCS file: /home/ncvs/src/libexec/rtld-elf/rtld.c,v retrieving revision 1.60 diff -u -r1.60 rtld.c --- rtld.c 17 Feb 2002 07:00:25 -0000 1.60 +++ rtld.c 23 Feb 2002 23:21:28 -0000 @@ -1329,6 +1329,7 @@ elm = NEW(Objlist_Entry); elm->obj = obj; STAILQ_INSERT_TAIL(list, elm, link); + obj->global = true; } static void @@ -1581,7 +1582,7 @@ if (obj) { obj->dl_refcount++; - if (mode & RTLD_GLOBAL && objlist_find(&list_global, obj) == NULL) + if (mode & RTLD_GLOBAL && !obj->global) objlist_push_tail(&list_global, obj); mode &= RTLD_MODEMASK; if (*old_obj_tail != NULL) { /* We loaded something new. */ @@ -1915,7 +1916,7 @@ } } - /* Search all RTLD_GLOBAL objects. */ + /* Search all RTLD_GLOBAL objects and their DAGs. */ if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) { symp = symlook_list(name, hash, &list_global, &obj, in_plt, &donelist); if (symp != NULL && @@ -1965,6 +1966,12 @@ if (ELF_ST_BIND(def->st_info) != STB_WEAK) break; } + } else if (elm->obj->global) { + /* search the DAGs of global objects */ + symp = symlook_list(name, hash, &elm->obj->dagmembers, + defobj_out, in_plt, dlp); + if (symp != NULL) + return symp; } } if (def != NULL) Index: rtld.h =================================================================== RCS file: /home/ncvs/src/libexec/rtld-elf/rtld.h,v retrieving revision 1.24 diff -u -r1.24 rtld.h --- rtld.h 29 Oct 2001 10:10:02 -0000 1.24 +++ rtld.h 23 Feb 2002 23:02:18 -0000 @@ -155,6 +155,7 @@ bool traced; /* Already printed in ldd trace output */ bool jmpslots_done; /* Already have relocated the jump slots */ bool init_done; /* Already have added object to init list */ + bool global; /* This object is on the global list */ struct link_map linkmap; /* for GDB */ Objlist dldags; /* Object belongs to these dlopened DAGs (%) */ --=-=-=-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 15:42:29 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8124B37B404; Sat, 23 Feb 2002 15:42:23 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1NNbNm19455; Sat, 23 Feb 2002 15:37:23 -0800 (PST) (envelope-from des) Date: Sat, 23 Feb 2002 15:37:23 -0800 (PST) From: <des@FreeBSD.org> Message-Id: <200202232337.g1NNbNm19455@freefall.freebsd.org> To: des@FreeBSD.org, freebsd-bugs@FreeBSD.org, des@FreeBSD.org Subject: Re: bin/25059: dlopen(..,RTLD_GLOBAL) doesn't work for shared libraries linked to the loaded one Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org Synopsis: dlopen(..,RTLD_GLOBAL) doesn't work for shared libraries linked to the loaded one Responsible-Changed-From-To: freebsd-bugs->des Responsible-Changed-By: des Responsible-Changed-When: Sat Feb 23 15:36:53 PST 2002 Responsible-Changed-Why: I have a patch for this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=25059 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 17:54: 3 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from pinochet.cityline.ru (pinochet.cityline.ru [195.46.160.34]) by hub.freebsd.org (Postfix) with ESMTP id C5F2437B400; Sat, 23 Feb 2002 17:53:42 -0800 (PST) Received: from Server (ts22-1-a130.dial.sovam.com [212.46.232.130]) by pinochet.cityline.ru (8.11.6/t/08-Oct-1998) with SMTP id g1O1YFs33420; Sun, 24 Feb 2002 04:34:17 +0300 (MSK) Message-Id: <200202240134.g1O1YFs33420@pinochet.cityline.ru> From: <premier2002@usa.com> Subject: Почтовая рассылка (Direct Mail) Date: Вс, 24 фев 2002 00:59:39 To: undisclosed-recipients:; Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org Друзья, просим Вас извинить нас за вторжение в Ваше электронное пространство. Мы предлагаем Вам услуги по почтовой рассылке (Direct Mail). (095) 741-22-91 По статистике, Direct Mail - самый эффективный вид рекламы. В большинстве развитых странах бюджеты ДМ-кампаний превышают расходы на рекламу в СМИ. С помощью почтовой рассылки можно решать несколько основных задач: 1. привлечение новых клиентов 2. информирование старых клиентов 3. оперативное общение с удаленными клиентами Наиболее эффективно действие этого вида рекламы для: - торговых организаций - производственных предприятий - снабженческих предприятий - финансовых структур. Предлагаем Вам: · различные базы данных (бесплатный подбор списка адресов и ознакомление с ними); · Тиражирование рекламного материала · Подбор конвертов в ассортименте (Евроконверт; С4, С5, С6, С3, полиэтиленовые пакеты); · Нанесение логотипа на конверт · Оформление рекламного письма и конверта (печать адреса на лазерном принтере, фальцовка вложений, вложение материалов в конверт и заклейка его); · Оперативная отправка писем; · Скидки за объем и для постоянных клиентов · Ведение баз данных клиентов Наши базы данных содержат сведения о предприятиях и организациях по всей России (более 600 000 предприятий) и странам СНГ (более 70 000). Возможны выборки по многим критериям. Специализированные БД. Мы работаем со всеми городами России. Дополнительную информацию вы сможете получить у наших менеджеров по телефону: (095) 741-22-91 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 18: 0:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 57CDE37B402 for <freebsd-bugs@hub.freebsd.org>; Sat, 23 Feb 2002 18:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1O202v56334; Sat, 23 Feb 2002 18:00:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A6BD37B400 for <freebsd-gnats-submit@FreeBSD.org>; Sat, 23 Feb 2002 17:57:56 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1O1vuf55938; Sat, 23 Feb 2002 17:57:56 -0800 (PST) (envelope-from nobody) Message-Id: <200202240157.g1O1vuf55938@freefall.freebsd.org> Date: Sat, 23 Feb 2002 17:57:56 -0800 (PST) From: Brett Glass <brett@lariat.org> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/35262: Generation of boot block for headless operation no longer works Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org >Number: 35262 >Category: conf >Synopsis: Generation of boot block for headless operation no longer works >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 Feb 23 18:00:02 PST 2002 >Closed-Date: >Last-Modified: >Originator: Brett Glass >Release: 4.5-RELEASE >Organization: >Environment: >Description: The instructions at http://www.mostgraveconcern.com/freebsd/sercon.html -- in particular, Step #8 (which involves the creation and installation of a new boot block) -- no longer work as of 4.5-RELEASE. Recompilation of the boot block, by typing "make all install" in /sys/boot/i386/boot2, fails and the new boot block cannot be installed. >How-To-Repeat: Follow the instructions at http://www.mostgraveconcern.com/freebsd/sercon.html. The corresponding instructions in the FreeBSD Handbook, at http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/serialconsole-setup.html, also do not work. >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 Feb 23 19:10: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C57F137B400 for <freebsd-bugs@hub.freebsd.org>; Sat, 23 Feb 2002 19:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1O3A1r71871; Sat, 23 Feb 2002 19:10:01 -0800 (PST) (envelope-from gnats) Date: Sat, 23 Feb 2002 19:10:01 -0800 (PST) Message-Id: <200202240310.g1O3A1r71871@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Makoto Matsushita <matusita@jp.FreeBSD.org> Subject: Re: misc/30647: "make release" in src/release/ creates ports.tgz that includes distfiles Reply-To: Makoto Matsushita <matusita@jp.FreeBSD.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org The following reply was made to PR misc/30647; it has been noted by GNATS. From: Makoto Matsushita <matusita@jp.FreeBSD.org> To: bug-followup@FreeBSD.org Cc: Subject: Re: misc/30647: "make release" in src/release/ creates ports.tgz that includes distfiles Date: Sun, 24 Feb 2002 12:02:17 +0900 I assume that this problem is already gone. Would you please check current src/release/Makefile? If it is OK for you, I wanna close this PR. -- - Makoto `MAR' Matsushita To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 19:12:29 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D552B37B402; Sat, 23 Feb 2002 19:12:25 -0800 (PST) Received: (from matusita@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1O36gB71523; Sat, 23 Feb 2002 19:06:42 -0800 (PST) (envelope-from matusita) Date: Sat, 23 Feb 2002 19:06:42 -0800 (PST) From: <matusita@FreeBSD.org> Message-Id: <200202240306.g1O36gB71523@freefall.freebsd.org> To: laa@laa.zp.ua, matusita@FreeBSD.org, freebsd-bugs@FreeBSD.org, matusita@FreeBSD.org Subject: Re: misc/31218: How to build release from selected date Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org Synopsis: How to build release from selected date State-Changed-From-To: open->analyzed State-Changed-By: matusita State-Changed-When: Sat Feb 23 19:02:24 PST 2002 State-Changed-Why: "Specifying data when extracting sources" is a good idea, and it seems that this patch does implement that. Tests are needed before committing. Responsible-Changed-From-To: freebsd-bugs->matusita Responsible-Changed-By: matusita Responsible-Changed-When: Sat Feb 23 19:02:24 PST 2002 Responsible-Changed-Why: I'll take this since I'm very intersted in this PR. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31218 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 19:20: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E1D2E37B402 for <freebsd-bugs@hub.freebsd.org>; Sat, 23 Feb 2002 19:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1O3K2473107; Sat, 23 Feb 2002 19:20:02 -0800 (PST) (envelope-from gnats) Date: Sat, 23 Feb 2002 19:20:02 -0800 (PST) Message-Id: <200202240320.g1O3K2473107@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Makoto Matsushita <matusita@jp.FreeBSD.org> Subject: Re: misc/31225: "make release" fails if TERMCAP environment variable not set Reply-To: Makoto Matsushita <matusita@jp.FreeBSD.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org The following reply was made to PR misc/31225; it has been noted by GNATS. From: Makoto Matsushita <matusita@jp.FreeBSD.org> To: bug-followup@FreeBSD.org Cc: Subject: Re: misc/31225: "make release" fails if TERMCAP environment variable not set Date: Sun, 24 Feb 2002 12:10:16 +0900 This problem still occurs? BTW termcap database *should* be there in the chroot sandbox; if missing, there is a problem about building a sandbox. -- - Makoto `MAR' Matsushita To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 19:50: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9CD5437B404 for <freebsd-bugs@hub.freebsd.org>; Sat, 23 Feb 2002 19:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1O3o2j76359; Sat, 23 Feb 2002 19:50:02 -0800 (PST) (envelope-from gnats) Date: Sat, 23 Feb 2002 19:50:02 -0800 (PST) Message-Id: <200202240350.g1O3o2j76359@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Edwin Groothuis <edwin@mavetju.org> Subject: Re: bin/35017: /sbin/route: weird behaviour with using the -interface flag Reply-To: Edwin Groothuis <edwin@mavetju.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org The following reply was made to PR bin/35017; it has been noted by GNATS. From: Edwin Groothuis <edwin@mavetju.org> To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: bin/35017: /sbin/route: weird behaviour with using the -interface flag Date: Sun, 24 Feb 2002 14:49:04 +1100 The previous URL given is wrong, please use http://www.freebsd.org/cgi/getmsg.cgi?fetch=167189+172081+/usr/local/www/db/text/2002/freebsd-net/20020217.freebsd-net and http://www.freebsd.org/cgi/getmsg.cgi?fetch=279914+284924+/usr/local/www/db/text/2002/freebsd-hackers/20020217.freebsd-hackers I also would like to move this PR from the categorie bin to kern. Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 22: 0: 6 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F02A37B402 for <freebsd-bugs@hub.freebsd.org>; Sat, 23 Feb 2002 22:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1O601l97592; Sat, 23 Feb 2002 22:00:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5109B37B402 for <freebsd-gnats-submit@FreeBSD.org>; Sat, 23 Feb 2002 21:50:12 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1O5oCi96842; Sat, 23 Feb 2002 21:50:12 -0800 (PST) (envelope-from nobody) Message-Id: <200202240550.g1O5oCi96842@freefall.freebsd.org> Date: Sat, 23 Feb 2002 21:50:12 -0800 (PST) From: john <johnoh99@yahoo.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/35267: after cvsup src-all for 4.5, /stand/sysinstall pkg_add refuses update by ftp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org >Number: 35267 >Category: misc >Synopsis: after cvsup src-all for 4.5, /stand/sysinstall pkg_add refuses update by ftp >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 Feb 23 22:00:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: john >Release: 4.5 release >Organization: >Environment: >Description: I installed 4.5 release from ftp6.freebsd.org, after install I cvsup src-all and compiled new kernel, after that /stand/sysinstall -> configure -> package from ftp refuses working, also, dmesg shows 4.5-stable #0 instead of 4.5-release #4 which i had yesterday before reinstalling today. >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 Sat Feb 23 22:30: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 560B637B405 for <freebsd-bugs@hub.freebsd.org>; Sat, 23 Feb 2002 22:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1O6U1m04505; Sat, 23 Feb 2002 22:30:01 -0800 (PST) (envelope-from gnats) Received: from iguana.icir.org (iguana.icir.org [192.150.187.36]) by hub.freebsd.org (Postfix) with ESMTP id 98F9737B404 for <FreeBSD-gnats-submit@freebsd.org>; Sat, 23 Feb 2002 22:21:20 -0800 (PST) Received: (from rizzo@localhost) by iguana.icir.org (8.11.6/8.11.3) id g1O6LKq79572; Sat, 23 Feb 2002 22:21:20 -0800 (PST) (envelope-from rizzo) Message-Id: <200202240621.g1O6LKq79572@iguana.icir.org> Date: Sat, 23 Feb 2002 22:21:20 -0800 (PST) From: Luigi Rizzo <rizzo@icir.org> Reply-To: Luigi Rizzo <rizzo@icir.org> To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/35269: possible panics with 4:1 filesystem ratios Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org >Number: 35269 >Category: kern >Synopsis: possible panics with 4:1 filesystem ratios >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: Sat Feb 23 22:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Luigi Rizzo >Release: FreeBSD 4.5-RELEASE i386 >Organization: >Environment: System: FreeBSD iguana.icir.org 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Mon Feb 4 15:00:58 PST 2002 root@iguana.icir.org:/usr/src/sys/compile/ACIRI-4.5-USB i386 >Description: There are likely problems with filesystems having 4:1 block:frag ratios, possibly leading to panics trying to access unmapped pages. My suspect is that some part of the code assumes a 8:1 ratio, so when givne a fragment size, it tries to access an entire "block" 8 times the size of the fragment. >How-To-Repeat: One way is to try and use an NFS-mounted filesystem with 4k:1k blocks/fragments.(e.g. changing the defaults in mount_md in /etc/rc.diskless{1,2} and using them on a diskless client). If you are lucky, the faulty code will try to access a block of 8-1k fragments, the second part of which will be unmapped and thus result in a panic. I suspect that you won't be able to reproduce the problem with 2k/512 layouts as the 8 fragments will still be within a page. >Fix: source code browsing... >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 Feb 23 23:52:28 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 19F9137B405; Sat, 23 Feb 2002 23:52:25 -0800 (PST) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1O7jC416050; Sat, 23 Feb 2002 23:45:12 -0800 (PST) (envelope-from silby) Date: Sat, 23 Feb 2002 23:45:12 -0800 (PST) From: <silby@FreeBSD.org> Message-Id: <200202240745.g1O7jC416050@freefall.freebsd.org> To: dima@rdy.com, silby@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/34646: 4.5-stable crashes on thttpd restart under heavy traffic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org Synopsis: 4.5-stable crashes on thttpd restart under heavy traffic State-Changed-From-To: open->closed State-Changed-By: silby State-Changed-When: Sat Feb 23 23:44:30 PST 2002 State-Changed-Why: This should be fixed by the recent fixes to the syncache. If cvsupping to the latest -stable does not solve the problem, please tell me so that the PR can be reopened. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=34646 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 23 23:52:36 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B0C3337B400; Sat, 23 Feb 2002 23:52:24 -0800 (PST) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1O7oHE16677; Sat, 23 Feb 2002 23:50:17 -0800 (PST) (envelope-from silby) Date: Sat, 23 Feb 2002 23:50:17 -0800 (PST) From: <silby@FreeBSD.org> Message-Id: <200202240750.g1O7oHE16677@freefall.freebsd.org> To: allaelgohary@bftech.com.eg, silby@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/32418: kernel table full Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: <freebsd-bugs.FreeBSD.ORG> List-Archive: <http://docs.freebsd.org/mail/> (Web Archive) List-Help: <mailto:majordomo@FreeBSD.ORG?subject=help> (List Instructions) List-Subscribe: <mailto:majordomo@FreeBSD.ORG?subject=subscribe%20freebsd-bugs> List-Unsubscribe: <mailto:majordomo@FreeBSD.ORG?subject=unsubscribe%20freebsd-bugs> X-Loop: FreeBSD.org Synopsis: kernel table full State-Changed-From-To: open->feedback State-Changed-By: silby State-Changed-When: Sat Feb 23 23:49:14 PST 2002 State-Changed-Why: This looks like you are just running out of processes; how many megs of ram does this system have, and what do you have maxusers set to? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32418 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message