From owner-freebsd-bugs Sun Jun 10 0:30: 8 2001 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 2440637B401 for ; Sun, 10 Jun 2001 00:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5A7U4U13406; Sun, 10 Jun 2001 00:30:04 -0700 (PDT) (envelope-from gnats) Date: Sun, 10 Jun 2001 00:30:04 -0700 (PDT) Message-Id: <200106100730.f5A7U4U13406@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: i386/28002: make world fails (ref. to ipf) 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/28002; it has been noted by GNATS. From: Bruce Evans To: Peter Wemm Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: i386/28002: make world fails (ref. to ipf) Date: Sun, 10 Jun 2001 17:24:39 +1000 (EST) On Sat, 9 Jun 2001, Peter Wemm wrote: > reel@sympatico.ca wrote: > > > >Description: > > When doing a "make world", it seems that it has a problem with > > sys/netinet/ip_compat.h > > I get the message: > > ===> sbin/ipf > > make: don't know how to make /usr/src/sbin/ipf/../../sys/netinet/ip_compat.h. > > This is because of either: > 1) You are using 'make -DNOCLEAN world' (dont do this) and you have a stale > .depend file > or > 2) Something is stale in your obj directory. rm -rf /usr/obj/* This is actually because the SHARED=symlinks case was broken by moving ipfilter, despite this case being the usual case for makeworld. From src/Makefile.inc1: @echo "--------------------------------------------------------------" @echo ">>> stage 4: populating ${WORLDTMP}/usr/include" @echo "--------------------------------------------------------------" cd ${.CURDIR}; ${WMAKE} SHARED=symlinks includes ^^^^^^^^^^^^^^^^^^^^^^^^ @echo @echo "--------------------------------------------------------------" @echo ">>> stage 4: building libraries" @echo "--------------------------------------------------------------" cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries @echo @echo "--------------------------------------------------------------" @echo ">>> stage 4: make dependencies" @echo "--------------------------------------------------------------" cd ${.CURDIR}; ${WMAKE} par-depend @echo @echo "--------------------------------------------------------------" @echo ">>> stage 4: building everything.." @echo "--------------------------------------------------------------" cd ${.CURDIR}; ${WMAKE} all Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 1: 0:15 2001 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 28D5937B407 for ; Sun, 10 Jun 2001 01:00:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5A80AP14936; Sun, 10 Jun 2001 01:00:10 -0700 (PDT) (envelope-from gnats) Received: from cx420564-b.tucson1.az.home.com (cx420564-b.tucson1.az.home.com [24.21.112.225]) by hub.freebsd.org (Postfix) with ESMTP id AF91E37B401 for ; Sun, 10 Jun 2001 00:59:29 -0700 (PDT) (envelope-from fracture@cx420564-b.tucson1.az.home.com) Received: (from fracture@localhost) by cx420564-b.tucson1.az.home.com (8.11.3/8.11.3) id f5A7ugx05725; Sun, 10 Jun 2001 00:56:42 -0700 (MST) (envelope-from fracture) Message-Id: <200106100756.f5A7ugx05725@cx420564-b.tucson1.az.home.com> Date: Sun, 10 Jun 2001 00:56:42 -0700 (MST) From: Jordan.DeLong@cx420564-b.tucson1.az.home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/28007: added "force printing of non-print chars" flag to /bin/ls 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: 28007 >Category: bin >Synopsis: added "force printing of non-print chars" flag to /bin/ls >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 10 01:00:09 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Jordan DeLong >Release: FreeBSD 4.3-RELEASE i386 >Organization: None >Environment: System: FreeBSD cx420564-b 4.3-RELEASE FreeBSD 4.3-RELEASE #0: Tue Apr 24 08:33:58 GMT 2001 fracture@cx420564-b:/usr/src/sys/compile/HOBOIV i386 >Description: when the output of /bin/ls is not to a terminal, it defaults to printing non-printable characters directly. However, when output is to a tty there is no way to make it output non-printable chars. /bin/ls uses isprint() to determine if a character is printable; this includes high-bit ascii characters that really are printable in some settings, and also includes filenames that have kanji in them. So forcing the raw printing of these characters can be desirable even on a tty, particularly for those who use languages other than English that make use of characters that don't fall in isprint(). I've added a -w flag to /bin/ls that is used to force raw output of nonprintable characters when the output is a tty. >How-To-Repeat: Apply the patch in the Fix: section. The patch is against the /usr/src/bin/ls/ tree that is in 4.3-RELEASE. >Fix: diff -u -ruN ls-dist/ls.1 ls/ls.1 --- ls-dist/ls.1 Mon Mar 5 03:05:00 2001 +++ ls/ls.1 Sun Jun 10 00:40:31 2001 @@ -43,7 +43,7 @@ .Nd list directory contents .Sh SYNOPSIS .Nm -.Op Fl ABCFGHLPRTWabcdfgiklnoqrstu1 +.Op Fl ABCFGHLPRTWabcdfgiklnoqrstu1w .Op Ar .Sh DESCRIPTION For each operand that names a @@ -191,6 +191,9 @@ one entry per line. This is the default when output is not to a terminal. +.It Fl w +Force raw printing of non-printable characters. This is the default +when output is not to a terminal. .El .Pp The @@ -210,7 +213,8 @@ .Pp The .Fl B , -.Fl b +.Fl b , +.Fl w , and .Fl q options all override each other; the last one specified determines diff -u -ruN ls-dist/ls.c ls/ls.c --- ls-dist/ls.c Wed Aug 16 12:57:11 2000 +++ ls/ls.c Sun Jun 10 00:34:22 2001 @@ -163,7 +163,7 @@ f_listdot = 1; fts_options = FTS_PHYSICAL; - while ((ch = getopt(argc, argv, "1ABCFGHLPRTWabcdfgiklnoqrstu")) != -1) { + while ((ch = getopt(argc, argv, "1ABCFGHLPRTWabcdfgiklnoqrstuw")) != -1) { switch (ch) { /* * The -1, -C and -l options all override each other so shell @@ -268,6 +268,11 @@ f_nonprint = 0; f_octal = 0; f_octal_escape = 1; + break; + case 'w': + f_nonprint = 0; + f_octal = 0; + f_octal_escape = 0; break; default: case '?': >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 Jun 10 3:10: 4 2001 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 0586537B403; Sun, 10 Jun 2001 03:10:01 -0700 (PDT) (envelope-from greid@FreeBSD.org) Received: (from greid@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5AAA0939257; Sun, 10 Jun 2001 03:10:00 -0700 (PDT) (envelope-from greid) Date: Sun, 10 Jun 2001 03:10:00 -0700 (PDT) From: Message-Id: <200106101010.f5AAA0939257@freefall.freebsd.org> To: reel@sympatico.ca, greid@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/28002: make world fails (ref. to ipf) 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 world fails (ref. to ipf) State-Changed-From-To: open->closed State-Changed-By: greid State-Changed-When: Sun Jun 10 03:09:21 PDT 2001 State-Changed-Why: http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28002 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 3:11:12 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by hub.freebsd.org (Postfix) with ESMTP id 6D48D37B401 for ; Sun, 10 Jun 2001 03:11:09 -0700 (PDT) (envelope-from greid@FreeBSD.org) Received: from sobek.openirc.co.uk ([62.252.13.136]) by mta05-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20010610101107.FSGV4151.mta05-svc.ntlworld.com@sobek.openirc.co.uk>; Sun, 10 Jun 2001 11:11:07 +0100 Date: Sun, 10 Jun 2001 11:11:06 +0100 (BST) From: George Reid X-Sender: greid@sobek.openirc.co.uk To: reel@sympatico.ca, freebsd-bugs@FreeBSD.org Subject: Re: i386/28002: make world fails (ref. to ipf) In-Reply-To: <200106101010.f5AAA0939257@freefall.freebsd.org> 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 Sun, 10 Jun 2001 greid@FreeBSD.org wrote: > Synopsis: make world fails (ref. to ipf) > > State-Changed-From-To: open->closed > State-Changed-By: greid > State-Changed-When: Sun Jun 10 03:09:21 PDT 2001 > State-Changed-Why: Sorry, should have read "Closed at originator's request" -- +-------------------+---------------------+ | George Reid | FreeBSD Committer | | +44 7740 197460 | greid@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 Jun 10 4:10:15 2001 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 2CF5D37B401 for ; Sun, 10 Jun 2001 04:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5ABA4p51835; Sun, 10 Jun 2001 04:10:04 -0700 (PDT) (envelope-from gnats) Date: Sun, 10 Jun 2001 04:10:04 -0700 (PDT) Message-Id: <200106101110.f5ABA4p51835@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: i386/28002: make world fails (ref. to ipf) 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/28002; it has been noted by GNATS. From: Bruce Evans To: Peter Wemm Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: i386/28002: make world fails (ref. to ipf) Date: Sun, 10 Jun 2001 20:58:06 +1000 (EST) [Cc corrected] On Sun, 10 Jun 2001, Peter Wemm wrote: > Bruce Evans wrote: > > On Sat, 9 Jun 2001, Peter Wemm wrote: > > > > > reel@sympatico.ca wrote: > > > > > > > >Description: > > > > When doing a "make world", it seems that it has a problem with > > > > sys/netinet/ip_compat.h > > > > I get the message: > > > > ===> sbin/ipf > > > > make: don't know how to make /usr/src/sbin/ipf/../../sys/netinet/ip_comp > at.h. > > > > > > This is because of either: > > > 1) You are using 'make -DNOCLEAN world' (dont do this) and you have a stal > e > > > .depend file > > > or > > > 2) Something is stale in your obj directory. rm -rf /usr/obj/* > > > > This is actually because the SHARED=symlinks case was broken by moving > > ipfilter, despite this case being the usual case for makeworld. From > > src/Makefile.inc1: > > > > @echo "--------------------------------------------------------------" > > @echo ">>> stage 4: populating ${WORLDTMP}/usr/include" > > @echo "--------------------------------------------------------------" > > cd ${.CURDIR}; ${WMAKE} SHARED=symlinks includes > > SHARED=symlinks may be broken, but it isn't causing world to die. I have > two recent -stable (as little as 10 minutes ago) builds that I can show you > if you dont believe me. That is another bug :-). You must have garbage in /usr/include/netinet from a previous installworld. Buildworld picks up this garbage because -nostdinc was removed from CFLAGS in rev.1.105 of src/Makefile.inc1. > The actual error message comes from stale .depend data. That is the only > way that make ever gets told about the existance of > "/usr/src/sbin/ipf/../../sys/netinet/ip_compat.h" Yes. I haven't actually run makeworld to test this and jumped to some conclusions. > See the CFLAGS in -stable: > CFLAGS+=-DIPL_NAME=\"/dev/ipl\" -I- -I${.CURDIR}/../../sys/netinet \ > -I${.CURDIR}/../../contrib/ipfilter > > These should be changed to ../../sys/contrib/ipfilter/netinet for -stable. > > However, this is not breaking the build. It may not be correct, but it > is not causing an abort. Stale .depend data is causing the make failures. > > It is also broken on -current for different reasons. Sometimes it uses the > ones from sys/netinet via the installed includes, and other times it uses > the ones in ../../contrib/ipfilter (when doing #include "ip_compat.h" etc). It seems to only find "ip_compat.h" there. This is enough to build ipf. ipmon apparently uses so it doesn't build unless the ipfilter headers are in a subdir named netinet somewhere (and a default or -I path to the directory above). > Somebody got carried away in removing -I../../sys in -current and broke > things even more by removing -I../../sys/netinet at the same time. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 6: 2: 7 2001 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 84C0A37B417; Sun, 10 Jun 2001 06:01:58 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5AD1wW61599; Sun, 10 Jun 2001 06:01:58 -0700 (PDT) (envelope-from schweikh) Date: Sun, 10 Jun 2001 06:01:58 -0700 (PDT) From: Message-Id: <200106101301.f5AD1wW61599@freefall.freebsd.org> To: jamie@psi-domain.co.uk, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/27205: Listing all users in the passwd 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: Listing all users in the passwd file State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Sun Jun 10 05:58:23 PDT 2001 State-Changed-Why: The system provides the getpwent(3) routine to iterate through the passwd file and also takes care of other sources (like NIS). In a script you'd say s.t. like perl -e 'while(($name)=getpwent){print "$name\n"}' No, we're not making separate executables for such one-liners. There would be just too many :-) http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27205 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 7:35:13 2001 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 9E9A137B405; Sun, 10 Jun 2001 07:35:11 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5AEZBP74053; Sun, 10 Jun 2001 07:35:11 -0700 (PDT) (envelope-from schweikh) Date: Sun, 10 Jun 2001 07:35:11 -0700 (PDT) From: Message-Id: <200106101435.f5AEZBP74053@freefall.freebsd.org> To: shigio@wafu.netgate.net, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/7298: Improvements to ln(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: Improvements to ln(1). State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Sun Jun 10 07:29:16 PDT 2001 State-Changed-Why: Absolute symlinks are almost often evil (e.g. when accessed on a remote system via NFS), so -a is something we should not encourage. For relative symlinks ln(1) works when used with proper args and cwd so the need for -r IMHO isn't strong enough to add an option that would make us diverge from the other BSDs. But thanks anyway for the suggestion! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=7298 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 8:50:12 2001 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 6E93037B44B for ; Sun, 10 Jun 2001 08:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5AFo2083781; Sun, 10 Jun 2001 08:50:02 -0700 (PDT) (envelope-from gnats) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 0B8D937B401 for ; Sun, 10 Jun 2001 08:47:53 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by david.siemens.de (8.11.0/8.11.0) with ESMTP id f5AFlp520026 for ; Sun, 10 Jun 2001 17:47:52 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail1.siemens.de (8.11.0/8.11.0) with ESMTP id f5AFlp711057 for ; Sun, 10 Jun 2001 17:47:51 +0200 (MET DST) Received: (from localhost) by curry.mchp.siemens.de (8.11.3/8.11.3) id f5AFlpu89698 for FreeBSD-gnats-submit@freebsd.org; Sun, 10 Jun 2001 17:47:51 +0200 (CEST) Message-Id: <200106101547.f5AFlpk72660@curry.mchp.siemens.de> Date: Sun, 10 Jun 2001 17:47:51 +0200 (CEST) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: conf/28014: [PATCH] Small fix for output of ppp diagnostics in rc.network 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: 28014 >Category: conf >Synopsis: [PATCH] Small fix for output of ppp diagnostics in rc.network >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: Sun Jun 10 08:50:02 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 4.3-STABLE i386 >Organization: >Environment: System: FreeBSD 4.3-STABLE #67: Fri Jun 1 12:49:52 CEST 2001 >Description: When starting ppp during boot (using ppp_enable="YES"), the diagnostics output from the following command does not begin on a new line, e.g.: Starting ppp as "root"add net 1.2.3.0: gateway 4.3.2.1 >How-To-Repeat: Enable ppp for automatic startup, watch console when booting. >Fix: Assuming the 'echo -n' is there to let output of ppp follow this line, I suggest adding an additional echo: --- /etc/rc.network.ORI Sun Jun 10 17:35:50 2001 +++ /etc/rc.network Sun Jun 10 17:36:08 2001 @@ -222,6 +222,7 @@ echo -n "Starting ppp as \"${ppp_user}\"" su -m ${ppp_user} -c "exec ${ppp_command}" + echo ;; esac >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 Jun 10 9:22:25 2001 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 C348437B401; Sun, 10 Jun 2001 09:22:22 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5AGMMo94732; Sun, 10 Jun 2001 09:22:22 -0700 (PDT) (envelope-from brian) Date: Sun, 10 Jun 2001 09:22:22 -0700 (PDT) From: Message-Id: <200106101622.f5AGMMo94732@freefall.freebsd.org> To: andre.albsmeier@mchp.siemens.de, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/28014: [PATCH] Small fix for output of ppp diagnostics in rc.network 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] Small fix for output of ppp diagnostics in rc.network State-Changed-From-To: open->closed State-Changed-By: brian State-Changed-When: Sun Jun 10 09:22:05 PDT 2001 State-Changed-Why: Fixed in -current. I'll MFC after 1 week. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28014 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 9:29:33 2001 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 905E837B407; Sun, 10 Jun 2001 09:29:27 -0700 (PDT) (envelope-from greid@FreeBSD.org) Received: (from greid@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5AGTQF95194; Sun, 10 Jun 2001 09:29:26 -0700 (PDT) (envelope-from greid) Date: Sun, 10 Jun 2001 09:29:26 -0700 (PDT) From: Message-Id: <200106101629.f5AGTQF95194@freefall.freebsd.org> To: davidx@viasoft.com.cn, greid@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/24920: moused weird 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: moused weird State-Changed-From-To: open->closed State-Changed-By: greid State-Changed-When: Sun Jun 10 09:28:59 PDT 2001 State-Changed-Why: Duplicate of 25536 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24920 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 11:17:14 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from d12lmsgate.de.ibm.com (d12lmsgate.de.ibm.com [195.212.91.199]) by hub.freebsd.org (Postfix) with ESMTP id 448EB37B403 for ; Sun, 10 Jun 2001 11:17:10 -0700 (PDT) (envelope-from AHAFONAU@de.ibm.com) Received: from d12relay01.de.ibm.com (d12relay01.de.ibm.com [9.165.215.22]) by d12lmsgate.de.ibm.com (1.0.0) with ESMTP id UAA247600 for ; Sun, 10 Jun 2001 20:17:07 +0200 From: AHAFONAU@de.ibm.com Received: from d12mta05.de.ibm.com (d12mta05_cs0 [9.165.222.239]) by d12relay01.de.ibm.com (8.11.1m3/NCO v4.96) with SMTP id f5AIH2m53650 for ; Sun, 10 Jun 2001 20:17:07 +0200 Received: by d12mta05.de.ibm.com(Lotus SMTP MTA v4.6.5 (863.2 5-20-1999)) id C1256A67.00646EC8 ; Sun, 10 Jun 2001 20:16:59 +0200 X-Lotus-FromDomain: IBMDE To: freebsd-bugs@FreeBSD.ORG Message-ID: Date: Sun, 10 Jun 2001 20:16:55 +0200 Subject: Bug doesn't allow to complete make buildworld :( Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii Content-Disposition: inline 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 -------------------------------------------------------------- >>> stage 2: build tools -------------------------------------------------------------- cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj INSTALL="sh /usr/src/tools/install.sh" PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin make -f Makefile.inc1 build-tools cd /usr/src/bin/csh; make build-tools grep 'ERR_' /usr/src/bin/csh/../../contrib/tcsh/sh.err.c | grep '^#define' >> sh.err.h cc -E -O -pipe -I. -I/usr/src/bin/csh -I/usr/src/bin/csh/../../contrib/tcsh -D_PATH_TCSHELL='"/bin/csh"' -Wall -Wformat /usr/src/bin/csh/../../contrib/tcsh/tc.const.c /usr/src/bin/csh/../../contrib/tcsh/sh.char.h /usr/src/bin/csh/config.h /usr/src/bin/csh/../../contrib/tcsh/config_f.h /usr/src/bin/csh/../../contrib/tcsh/sh.types.h sh.err.h -D_h_tc_const | grep 'Char STR' | sed -e 's/Char \([a-zA-Z0-9_]*\)\(.*\)/extern Char \1[];/' | sort >> tc.const.h cc -o gethost -static -O -pipe -I. -I/usr/src/bin/csh -I/usr/src/bin/csh/../../contrib/tcsh -D_PATH_TCSHELL='"/bin/csh"' -Wall -Wformat /usr/src/bin/csh/../../contrib/tcsh/gethost.c In file included from /usr/src/bin/csh/../../contrib/tcsh/sh.h:395, from /usr/src/bin/csh/../../contrib/tcsh/gethost.c:37: /usr/include/sys/socket.h:312: syntax error before `socklen_t' /usr/include/sys/socket.h:316: syntax error before `socklen_t' /usr/include/sys/socket.h:338: syntax error before `socklen_t' /usr/include/sys/socket.h:433: syntax error before `socklen_t' /usr/include/sys/socket.h:434: syntax error before `socklen_t' /usr/include/sys/socket.h:435: syntax error before `socklen_t' /usr/include/sys/socket.h:436: syntax error before `socklen_t' /usr/include/sys/socket.h:437: syntax error before `socklen_t' /usr/include/sys/socket.h:438: syntax error before `socklen_t' /usr/include/sys/socket.h:441: syntax error before `socklen_t' /usr/include/sys/socket.h:445: syntax error before `socklen_t' /usr/include/sys/socket.h:448: syntax error before `socklen_t' *** Error code 1 Stop in /usr/src/bin/csh. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. ^C To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 11:40:15 2001 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 7B91937B408 for ; Sun, 10 Jun 2001 11:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5AIe1w11174; Sun, 10 Jun 2001 11:40:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E5CFE37B40C for ; Sun, 10 Jun 2001 11:39:59 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5AIdxo11158; Sun, 10 Jun 2001 11:39:59 -0700 (PDT) (envelope-from nobody) Message-Id: <200106101839.f5AIdxo11158@freefall.freebsd.org> Date: Sun, 10 Jun 2001 11:39:59 -0700 (PDT) From: ebd@oau.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/28017: 4.3-STABLE build fails after cvs 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: 28017 >Category: misc >Synopsis: 4.3-STABLE build fails after cvs update >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 Jun 10 11:40:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Elliot Dierksen >Release: 4-3-STABLE >Organization: >Environment: >Description: After a CVS update, make buildworld fails as follows: ===> libpam/modules/pam_wheel cc -O -pipe -Wall -I/usr/src/lib/libpam/modules/pam_wheel/../../../../contrib/libpam/libpam/include -I/usr/src/lib/libpam/modules/pam_wheel/../../libpam -I/usr/obj/usr/src/i386/usr/include -c /usr/src/lib/libpam/modules/pam_wheel/../../../../contrib/libpam/modules/pam_wheel/pam_wheel.c -o pam_wheel.o building standard pam_wheel library ranlib libpam_wheel.a cc -fpic -DPIC -O -pipe -Wall -I/usr/src/lib/libpam/modules/pam_wheel/../../../../contrib/libpam/libpam/include -I/usr/src/lib/libpam/modules/pam_wheel/../../libpam -I/usr/obj/usr/src/i386/usr/include -c /usr/src/lib/libpam/modules/pam_wheel/../../../../contrib/libpam/modules/pam_wheel/pam_wheel.c -o pam_wheel.So building shared library pam_wheel.so ===> libpam/libpam cc -O -pipe -I/usr/src/lib/libpam/libpam/../../../contrib/libpam/libpam/include -I/usr/src/lib/libpam/libpam/../../../contrib/libpam/libpam_misc/include -I/usr/src/lib/libpam/libpam/../../../contrib/libpam/libpamc/include -I. -I/usr/src/lib/libpam/libpam -DDEFAULT_MODULE_PATH=\"/usr/lib/\" -DLIBPAM_VERSION_MAJOR=0 -DLIBPAM_VERSION_MINOR=75 -I/usr/obj/usr/src/i386/usr/include -c /usr/src/lib/libpam/libpam/../../../contrib/libpam/libpam/pam_account.c -o pam_account.o In file included from /usr/src/lib/libpam/libpam/../../../contrib/libpam/libpam/pam_account.c:5: /usr/src/lib/libpam/libpam/../../../contrib/libpam/libpam/pam_private.h:137: field `pam_default_log' has incomplete type *** Error code 1 Stop in /usr/src/lib/libpam/libpam. *** Error code 1 I have done numerous make buildworld's on this machine without incident until now. >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 Sun Jun 10 12:13:46 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 36DC837B401 for ; Sun, 10 Jun 2001 12:13:44 -0700 (PDT) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 10 Jun 2001 20:13:43 +0100 (BST) Date: Sun, 10 Jun 2001 20:13:42 +0100 From: David Malone To: AHAFONAU@de.ibm.com Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: Bug doesn't allow to complete make buildworld :( Message-ID: <20010610201342.A38289@walton.maths.tcd.ie> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from AHAFONAU@de.ibm.com on Sun, Jun 10, 2001 at 08:16:55PM +0200 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 What version of FreeBSD are you building? What version are you doing the building on? David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 15:20: 8 2001 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 89DAF37B403 for ; Sun, 10 Jun 2001 15:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5AMK4l48424; Sun, 10 Jun 2001 15:20:04 -0700 (PDT) (envelope-from gnats) Date: Sun, 10 Jun 2001 15:20:04 -0700 (PDT) Message-Id: <200106102220.f5AMK4l48424@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Wemm Subject: Re: i386/28002: make world fails (ref. to ipf) Reply-To: Peter Wemm 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/28002; it has been noted by GNATS. From: Peter Wemm To: Bruce Evans Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: i386/28002: make world fails (ref. to ipf) Date: Sun, 10 Jun 2001 15:11:53 -0700 Bruce Evans wrote: > [Cc corrected] > > On Sun, 10 Jun 2001, Peter Wemm wrote: > > > Bruce Evans wrote: > > > On Sat, 9 Jun 2001, Peter Wemm wrote: > > > > > > > reel@sympatico.ca wrote: > > > > > > > > > >Description: > > > > > When doing a "make world", it seems that it has a problem with > > > > > sys/netinet/ip_compat.h > > > > > I get the message: > > > > > ===> sbin/ipf > > > > > make: don't know how to make /usr/src/sbin/ipf/../../sys/netinet/ip_ comp > > at.h. > > > > > > > > This is because of either: > > > > 1) You are using 'make -DNOCLEAN world' (dont do this) and you have a stal > > e > > > > .depend file > > > > or > > > > 2) Something is stale in your obj directory. rm -rf /usr/obj/* > > > > > > This is actually because the SHARED=symlinks case was broken by moving > > > ipfilter, despite this case being the usual case for makeworld. From > > > src/Makefile.inc1: > > > > > > @echo "--------------------------------------------------------------" > > > @echo ">>> stage 4: populating ${WORLDTMP}/usr/include" > > > @echo "--------------------------------------------------------------" > > > cd ${.CURDIR}; ${WMAKE} SHARED=symlinks includes > > > > SHARED=symlinks may be broken, but it isn't causing world to die. I have > > two recent -stable (as little as 10 minutes ago) builds that I can show you > > if you dont believe me. > > That is another bug :-). You must have garbage in /usr/include/netinet > from a previous installworld. Buildworld picks up this garbage because > -nostdinc was removed from CFLAGS in rev.1.105 of src/Makefile.inc1. Actually, I did two build/installworlds, in this order. I was concerned about junk in /usr/include as a result of switching this box from -current to -stable. 0) rm -rf /usr/obj/* 1) make buildworld 2) make installworld 3) mv /usr/include /usr/include.old; also clean up old files in / and /usr 4) make installworld 5) rm -rf /usr/obj/* 6) make world The problem is that ipf.c etc has this crud: #include "ip_compat.h" #include "ip_fil.h" #include "ip_nat.h" #include "ip_state.h" #include "ipf.h" #include "ipl.h" -nostdinc has no bearing on that at all. We *needed* the -I../../sys/netinet so that everything was supposed to use the same include files, but in -current ru@freebsd.org removed it without replacing the functionality. > > See the CFLAGS in -stable: > > CFLAGS+=-DIPL_NAME=\"/dev/ipl\" -I- -I${.CURDIR}/../../sys/netinet \ > > -I${.CURDIR}/../../contrib/ipfilter > > > > These should be changed to ../../sys/contrib/ipfilter/netinet for -stable. > > > > However, this is not breaking the build. It may not be correct, but it > > is not causing an abort. Stale .depend data is causing the make failures. > > > > It is also broken on -current for different reasons. Sometimes it uses the > > ones from sys/netinet via the installed includes, and other times it uses > > the ones in ../../contrib/ipfilter (when doing #include "ip_compat.h" etc) . > > It seems to only find "ip_compat.h" there. This is enough to build ipf. > ipmon apparently uses so it doesn't build unless the > ipfilter headers are in a subdir named netinet somewhere (and a default > or -I path to the directory above). Personally, with disk space being as cheap as it is, I feel we should deorbit SYMLINKS=shared. After all, some people even build their entire worlds static. This would greatly reduce the complexity of building an include tree and reduce the margin for error. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 17: 0:23 2001 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 02DB037B405 for ; Sun, 10 Jun 2001 17:00:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B00Ee83205; Sun, 10 Jun 2001 17:00:14 -0700 (PDT) (envelope-from gnats) Date: Sun, 10 Jun 2001 17:00:14 -0700 (PDT) Message-Id: <200106110000.f5B00Ee83205@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: i386/28002: make world fails (ref. to ipf) 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/28002; it has been noted by GNATS. From: Bruce Evans To: Peter Wemm Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: i386/28002: make world fails (ref. to ipf) Date: Mon, 11 Jun 2001 09:56:24 +1000 (EST) On Sun, 10 Jun 2001, Peter Wemm wrote: > > > SHARED=symlinks may be broken, but it isn't causing world to die. I have > > > two recent -stable (as little as 10 minutes ago) builds that I can show you > > > if you dont believe me. > > > > That is another bug :-). You must have garbage in /usr/include/netinet > > from a previous installworld. Buildworld picks up this garbage because > > -nostdinc was removed from CFLAGS in rev.1.105 of src/Makefile.inc1. > > Actually, I did two build/installworlds, in this order. I was concerned > about junk in /usr/include as a result of switching this box from > -current to -stable. > 0) rm -rf /usr/obj/* > 1) make buildworld This can work because you have an old (but sufficiently current to work) set of ipfilter headers in /usr/include/netinet ... > 2) make installworld and this installs a current set of ipfilter headers in /usr/include/netinet (but this set will be "old" again for the next build, because the sources may have changed). > 3) mv /usr/include /usr/include.old; also clean up old files in / and /usr This gets rid of all the headers ... > 4) make installworld ... and this installs all headers again, including a current set of ipfilter headers. > 5) rm -rf /usr/obj/* > 6) make world This works because you have an old (but sufficiently current to work) set of ipfilter headers in /usr/include/netinet ... Here the headers are certainly sufficiently current to work, because you just installed them, but this is not true in general. People upgrading from RELENG_4 have the RELENG_4 headers and might fail in step (1). > The problem is that ipf.c etc has this crud: > #include "ip_compat.h" > #include "ip_fil.h" > #include "ip_nat.h" > #include "ip_state.h" > #include "ipf.h" > #include "ipl.h" > -nostdinc has no bearing on that at all. We *needed* the -I../../sys/netinet > so that everything was supposed to use the same include files, but in > -current ru@freebsd.org removed it without replacing the functionality. I see. ipmon seems to be the only exception. ipmon/Makefile only used -I../../sys, and ipmon.c only uses: #include "netinet/ip_compat.h" #include "netinet/ip_fil.h" #include "netinet/ip_proxy.h" #include "netinet/ip_nat.h" #include "netinet/ip_state.h" > Personally, with disk space being as cheap as it is, I feel we should > deorbit SYMLINKS=shared. After all, some people even build their entire > worlds static. This would greatly reduce the complexity of building an > include tree and reduce the margin for error. You mean SHARED=symlinks. This is more for avoiding having a separate copy of the headers than to save space. Copies of things are sources of bitrot. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 18:10: 7 2001 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 8DADC37B408 for ; Sun, 10 Jun 2001 18:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B1A0896046; Sun, 10 Jun 2001 18:10:00 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BE4437B401 for ; Sun, 10 Jun 2001 18:08:15 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B18F395725; Sun, 10 Jun 2001 18:08:15 -0700 (PDT) (envelope-from nobody) Message-Id: <200106110108.f5B18F395725@freefall.freebsd.org> Date: Sun, 10 Jun 2001 18:08:15 -0700 (PDT) From: reel@sympatico.ca To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/28023: sendmail tries to get the netgraph.ko module loaded at startup without checking if it's loaded 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: 28023 >Category: i386 >Synopsis: sendmail tries to get the netgraph.ko module loaded at startup without checking if it's loaded >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 10 18:10:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Félix-Antoine Paradis >Release: FreeBSD 4.3-STABLE >Organization: Unix Consult Technologies >Environment: FreeBSD idemnia.ath.cx 4.3-STABLE FreeBSD 4.3-STABLE #0: Mon May 28 17:42:29 EDT 2001 reel@idemnia.ath.cx:/usr/src/sys/compile/ZEUS i386 >Description: I have NETGRAPH compiled in my kernel (due to PPPoE) and, everytime I boot, I get this message: Starting standard daemons: inetd cron sendmailmodule_register: module netgraph a lready exists! linker_file_sysinit "netgraph.ko" failed to register! 17 sshd. I don't know if it's sendmail specificly or sshd because I haven't checked threw it yet. >How-To-Repeat: Compile your kernel with: options NETGRAPH and reboot. >Fix: not known at the moment. will look threw this. >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 Jun 10 18:20: 7 2001 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 B4E2137B403 for ; Sun, 10 Jun 2001 18:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B1K3N02829; Sun, 10 Jun 2001 18:20:03 -0700 (PDT) (envelope-from gnats) Date: Sun, 10 Jun 2001 18:20:03 -0700 (PDT) Message-Id: <200106110120.f5B1K3N02829@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Russell Jackson Subject: Re: i386/27975: make buildworld fails when updating from 4.2-release to 4.3-stable. stops at ipmon. Reply-To: Russell Jackson 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/27975; it has been noted by GNATS. From: Russell Jackson To: freebsd-gnats-submit@FreeBSD.org, tubbs@home.se Cc: Subject: Re: i386/27975: make buildworld fails when updating from 4.2-release to 4.3-stable. stops at ipmon. Date: Sun, 10 Jun 2001 11:24:08 -0700 Modify the following lines in ipmon.c /* Edited from "netinit/ip_compat.h" - Russell Jackson 6/10/2001 */ #include "ip_compat.h" /* Edited from "netinit/ip_nat.h" Russell Jackson 6/10/2001 */ #include "ip_nat.h" Fixes the undefined symbol errors Please reply if find any problems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 18:30:28 2001 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 D1B9037B40B; Sun, 10 Jun 2001 18:30:20 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B1UKJ04970; Sun, 10 Jun 2001 18:30:20 -0700 (PDT) (envelope-from mjacob) Date: Sun, 10 Jun 2001 18:30:20 -0700 (PDT) From: Message-Id: <200106110130.f5B1UKJ04970@freefall.freebsd.org> To: non@jp.FreeBSD.org, mjacob@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/25980: "ARCHIVE Python 06408-XXX 8130" needs quirk entry 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: "ARCHIVE Python 06408-XXX 8130" needs quirk entry State-Changed-From-To: open->closed State-Changed-By: mjacob State-Changed-When: Sun Jun 10 18:30:03 PDT 2001 State-Changed-Why: Fix applied in both current and RELENG_4. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=25980 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 19:40:10 2001 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 C26A837B401 for ; Sun, 10 Jun 2001 19:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B2e1Z17686; Sun, 10 Jun 2001 19:40:01 -0700 (PDT) (envelope-from gnats) Received: from CRWdog.demon.co.uk (crwdog.demon.co.uk [193.237.46.84]) by hub.freebsd.org (Postfix) with ESMTP id 0600837B403 for ; Sun, 10 Jun 2001 19:30:51 -0700 (PDT) (envelope-from andy@CRWdog.demon.co.uk) Received: by CRWdog.demon.co.uk (Postfix, from userid 1001) id 5B8A03E96; Mon, 11 Jun 2001 03:30:48 +0100 (BST) Message-Id: <20010611023048.5B8A03E96@CRWdog.demon.co.uk> Date: Mon, 11 Jun 2001 03:30:48 +0100 (BST) From: spadger@best.com Reply-To: spadger@best.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/28026: Rage 128 Suspend issues 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: 28026 >Category: bin >Synopsis: Graphics mode suspend causes weird hang on laptop with Rage card >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 10 19:40:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Andy Sparrow >Release: FreeBSD 4.3-RELEASE i386 >Organization: >Environment: System: FreeBSD omni.geek4food.org 4.3-RELEASE FreeBSD 4.3-RELEASE #52: Sat Jun 9 23:31:24 BST 2001 root@omni.geek4food.org:/usr/src/sys/compile/o6k i386 Omnibook 6000, Compaq Armada, multiple machines with Rage Mobility chipset (maybe others), believed most (all?) versions of FreeBSD 4.x with XFree86 3.3.x (at least 4.[23]-STABLE, 4.3-RELEASE with 3.3.6) >Description: On machines that support suspend-to-ram or suspend-to-disk (not as extensively tested), it has been observed that suspending (via either the 'apm' binary or closing the lid, pressing suspend button etc.) whilst in graphics mode (e.g. running an X server, either XF86_SVGA or XF86_Mach64) will put the machine in a strange state, where the display is very dim (but still barely visible), but machine will not respond to keyboard, power button or network, and the machine is still using mucho power (e.g. gets v.hot in bag). The only recourse then is to reset, with the attendant loss of uptime and filesystem checks. Sometimes, it can be harder to find a paperclip than you think... Switching to a text mode VT first avoids this problem, the machine will suspend and resume as expected. >How-To-Repeat: On such a machine as described (laptop with APM enabled and Rage Mobility chipset), suspend the machine, either via hardware or via 'apm', whilst running X. >Fix: It is possible to hack around the problem by calling a binary (e.g. from 'rc.suspend') that switches to text mode first, before issuing the suspend call. This obviously leaves two files that need to be maintained, particularly when cvsup'ing regularly it is inevitable that this extra step will be overlooked sooner or later. Also, a better way to address this issue (if not in the X server itself), seems to be in the 'apm' binary, which should DTRT. I attach for your consideration some example patches to 'apm' and its Makefile, and some (commented-out) options with descriptive commands for 'etc/defaults/make.conf' (intended to be activated in '/etc/make.conf', naturally). In this way, it is as unobtrusive as possible on machine/systems that don't need this, yet fixes the problems for machines that do. Thanks. *** usr.sbin/apm/apm.c.orig Tue Apr 17 23:53:48 2001 --- usr.sbin/apm/apm.c Mon Apr 30 23:55:31 2001 *************** *** 36,41 **** --- 36,47 ---- #define APMDEV "/dev/apm" + #ifdef WANT_TEXTMODE_SUSPEND + #define VGADEV "/dev/vga" + #include + #include + #endif + #define xh(a) (((a) & 0xff00) >> 8) #define xl(a) ((a) & 0xff) #define APMERR(a) xh(a) *************** *** 126,131 **** --- 132,168 ---- err(1, "ioctl(APMIO_STANDBY)"); } + #ifdef WANT_TEXTMODE_SUSPEND + void + apm_wrapper(int fd, void (*fptr)(int)) + { + int myfd, vt, status; + + myfd = open(VGADEV, O_RDONLY); + if(myfd < 0) + err(1, "open %s", VGADEV); + if(ioctl(myfd, VT_GETACTIVE, &vt) < 0) + err(1, "ioctl VT_GETACTIVE"); + if(ioctl(myfd, VT_ACTIVATE, 1) < 0) + err(1, "ioctl VT_ACTIVATE"); + + switch(fork()) { + case -1: + err(1, "fork"); + case 0: + fptr (fd); + break; + default: + wait(&status); + if(!WIFEXITED(status) || WEXITSTATUS(status)) + errx(1, "apm -z failed"); + } + sleep(2); + if(ioctl(myfd, VT_ACTIVATE, vt) < 0) + err(1, "ioctl VT_ACTIVATE"); + } + #endif + void apm_getinfo(int fd, apm_info_t aip) { *************** *** 483,492 **** --- 520,535 ---- apm_haltcpu(fd, haltcpu); if (delta) apm_set_timer(fd, delta); + #ifdef WANT_TEXTMODE_SUSPEND + if (sleep || standby) { + apm_wrapper( fd, (sleep?apm_suspend:apm_standby) ); + } + #else if (sleep) apm_suspend(fd); else if (standby) apm_standby(fd); + #endif else if (delta == 0) { struct apm_info info; *** usr.sbin/apm/Makefile.orig Wed Apr 18 00:45:22 2001 --- usr.sbin/apm/Makefile Wed Apr 18 01:05:41 2001 *************** *** 5,8 **** --- 5,20 ---- MAN8= apm.8 MLINKS= apm.8 apmconf.8 apm.8 zzz.8 + + .if defined(WANT_TEXTMODE_SUSPEND) + CFLAGS+= -DWANT_TEXTMODE_SUSPEND + .endif + + .if defined(NOSUID) || !defined(ALLOW_USER_SUSPEND) + BINMODE=555 + .else + BINMODE=4555 + BINOWN= root + .endif + .include *** etc/defaults/make.conf.orig Thu Apr 19 15:16:43 2001 --- etc/defaults/make.conf Thu Apr 19 15:24:49 2001 *************** *** 140,145 **** --- 140,159 ---- #NOMANCOMPRESS= true # # + # Some machines (e.g. laptops) with certain graphics devices (notably + # ATI Rage Mobility) react badly to being suspended when in graphics + # mode (e.g. in X) and lock the machine entirely. If you suffer from + # this, try uncommenting the following: + # + #WANT_TEXTMODE_SUSPEND= true + # + # + # If you uncomment the above, you might want/need to uncomment the + # following to permit suspends by users. (Makes apm(8) SUID root). + # + #ALLOW_USER_SUSPEND= true + # + # # If you want the "compat" shared libraries installed as part of your normal # builds, uncomment these: # >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 Jun 10 20:40: 3 2001 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 00EA737B403; Sun, 10 Jun 2001 20:40:01 -0700 (PDT) (envelope-from grog@FreeBSD.org) Received: (from grog@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B3e0Z29909; Sun, 10 Jun 2001 20:40:00 -0700 (PDT) (envelope-from grog) Date: Sun, 10 Jun 2001 20:40:00 -0700 (PDT) From: Message-Id: <200106110340.f5B3e0Z29909@freefall.freebsd.org> To: sjr@home.com, grog@FreeBSD.org, freebsd-bugs@FreeBSD.org, grog@FreeBSD.org Subject: Re: misc/21328: Should newer version of OS-BS be on CDROM? 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: Should newer version of OS-BS be on CDROM? State-Changed-From-To: open->closed State-Changed-By: grog State-Changed-When: Sun Jun 10 20:38:52 PDT 2001 State-Changed-Why: Closed at submitter's request. Responsible-Changed-From-To: freebsd-bugs->grog Responsible-Changed-By: grog Responsible-Changed-When: Sun Jun 10 20:38:52 PDT 2001 Responsible-Changed-Why: grog closed this PR. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=21328 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 23:10: 6 2001 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 B8FAF37B408 for ; Sun, 10 Jun 2001 23:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B6A2H79120; Sun, 10 Jun 2001 23:10:02 -0700 (PDT) (envelope-from gnats) Date: Sun, 10 Jun 2001 23:10:02 -0700 (PDT) Message-Id: <200106110610.f5B6A2H79120@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/28007: added "force printing of non-print chars" flag to /bin/ls 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/28007; it has been noted by GNATS. From: Peter Pentchev To: Jordan.DeLong@cx420564-b.tucson1.az.home.com Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/28007: added "force printing of non-print chars" flag to /bin/ls Date: Mon, 11 Jun 2001 09:06:41 +0300 On Sun, Jun 10, 2001 at 12:56:42AM -0700, Jordan.DeLong@cx420564-b.tucson1.az.home.com wrote: > > >Number: 28007 > >Category: bin > >Synopsis: added "force printing of non-print chars" flag to /bin/ls > >Originator: Jordan DeLong > >Release: FreeBSD 4.3-RELEASE i386 > >Organization: > None > >Environment: > System: FreeBSD cx420564-b 4.3-RELEASE FreeBSD 4.3-RELEASE #0: Tue Apr 24 08:33:58 GMT 2001 fracture@cx420564-b:/usr/src/sys/compile/HOBOIV i386 > > >Description: > when the output of /bin/ls is not to a terminal, it defaults to > printing non-printable characters directly. However, when output > is to a tty there is no way to make it output non-printable chars. > > /bin/ls uses isprint() to determine if a character is printable; > this includes high-bit ascii characters that really are printable > in some settings, and also includes filenames that have kanji in > them. So forcing the raw printing of these characters can be > desirable even on a tty, particularly for those who use languages > other than English that make use of characters that don't fall in > isprint(). Correct me if I'm wrong, but doesn't isprint() conform to locale settigs? I don't know if this works with multibyte characters, but for 8-bit locales ls(1) certainly does the right thing, due to a setlocale(LC_ALL, "") call at the very start. > I've added a -w flag to /bin/ls that is used to force raw output > of nonprintable characters when the output is a tty. Other than the above argumet, yes, such a flag could be useful. G'luck, Peter -- This sentence no verb. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 10 23:20:11 2001 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 3902937B401 for ; Sun, 10 Jun 2001 23:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B6K3T83440; Sun, 10 Jun 2001 23:20:03 -0700 (PDT) (envelope-from gnats) Date: Sun, 10 Jun 2001 23:20:03 -0700 (PDT) Message-Id: <200106110620.f5B6K3T83440@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jordan DeLong Subject: Re: bin/28007: added "force printing of non-print chars" flag to /bin/ls Reply-To: Jordan DeLong 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/28007; it has been noted by GNATS. From: Jordan DeLong To: Peter Pentchev Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/28007: added "force printing of non-print chars" flag to /bin/ls Date: Sun, 10 Jun 2001 23:11:43 -0700 --J/dobhs11T7y2rNN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jun 11, 2001 at 09:06:41AM +0300, Peter Pentchev wrote: >=20 > Correct me if I'm wrong, but doesn't isprint() conform to locale settigs? > I don't know if this works with multibyte characters, but for 8-bit local= es > ls(1) certainly does the right thing, due to a setlocale(LC_ALL, "") call > at the very start. >=20 Actually I discovered this only a few hours ago (I was under the impression that isprint() was a simple macro that just checked if it was > 32 and < 127 or somesuch). So I was mistaken and everything is alright on that that fro= nt for /bin/ls. > > I've added a -w flag to /bin/ls that is used to force raw output > > of nonprintable characters when the output is a tty. >=20 > Other than the above argumet, yes, such a flag could be useful. >=20 agreed, I think it could still be useful. --=20 Jordan DeLong fracture@allusion.net --J/dobhs11T7y2rNN 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 iEYEARECAAYFAjskYR4ACgkQDrrilS51AZ+h5wCgriEY4vNqu8KI2tNQYKByw8ne cBUAn2oWzQKgnZX0XGWYww3fn6Qn5q7o =hJL0 -----END PGP SIGNATURE----- --J/dobhs11T7y2rNN-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 1:10: 8 2001 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 74EDE37B405 for ; Mon, 11 Jun 2001 01:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B8A3l98328; Mon, 11 Jun 2001 01:10:03 -0700 (PDT) (envelope-from gnats) Date: Mon, 11 Jun 2001 01:10:03 -0700 (PDT) Message-Id: <200106110810.f5B8A3l98328@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Russell Jackson Subject: Re: i386/27975: make buildworld fails when updating from 4.2-release to 4.3-stable. stops at ipmon. Reply-To: Russell Jackson 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/27975; it has been noted by GNATS. From: Russell Jackson To: freebsd-gnats-submit@FreeBSD.org, tubbs@home.se Cc: Subject: Re: i386/27975: make buildworld fails when updating from 4.2-release to 4.3-stable. stops at ipmon. Date: Sun, 10 Jun 2001 18:13:19 -0700 Previous fix submitted is incomplete. I tried recompiling the source tree to find the source still broken. Almost all source files in /usr/src/contrib/ipfilter have incorrect #include directives for various headers that are local to the program itself, but call them as if they are system headers with the prefix netinet/ (but in quotation marks rather than angle brackets). These need to be found in all .c files under /usr/src/contrib/ipfilter and have the 'netinet/' removed. I believe this should fix the build. I have not yet had a chance to test building the world again. I will post update of progress at first chance. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 1:40: 8 2001 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 9F6EE37B408 for ; Mon, 11 Jun 2001 01:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B8e1o01368; Mon, 11 Jun 2001 01:40:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8301B37B401 for ; Mon, 11 Jun 2001 01:34:26 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B8YQA00745; Mon, 11 Jun 2001 01:34:26 -0700 (PDT) (envelope-from nobody) Message-Id: <200106110834.f5B8YQA00745@freefall.freebsd.org> Date: Mon, 11 Jun 2001 01:34:26 -0700 (PDT) From: freedom@csie.nctu.edu.tw To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/28031: ThinkPad 570 doesn't need clkrun_hack 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: 28031 >Category: kern >Synopsis: ThinkPad 570 doesn't need clkrun_hack >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 Jun 11 01:40:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Tan Koan-Sin >Release: 5.0-CURRENT >Organization: >Environment: FreeBSD kung-5.eecs.harvard.edu 5.0-CURRENT FreeBSD 5.0-CURRENT #27: Mon Jun 11 04:16:18 EDT 2001 freedom@kung-5.eecs.harvard.edu:/usr/src/sys/compile/ThinkPad i386 >Description: ThinkPad 570 does not need the clkrun hack. >How-To-Repeat: >Fix: Change /* Not sure if the 570 needs the clkrun hack */ {0x1014, 0x0132, "Thinkpad 570", amp_none, NULL, clkrun_hack}, in /sys/dev/sound/pci/csa.c to {0x1014, 0x0132, "Thinkpad 570", amp_none, NULL, NULL} >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 Jun 11 1:44:29 2001 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 6A6DC37B407; Mon, 11 Jun 2001 01:44:27 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B8iRU01746; Mon, 11 Jun 2001 01:44:27 -0700 (PDT) (envelope-from sobomax) Date: Mon, 11 Jun 2001 01:44:27 -0700 (PDT) From: Message-Id: <200106110844.f5B8iRU01746@freefall.freebsd.org> To: alex@kapran.bitmcnit.bryansk.su, sobomax@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/26663: [patch] ru_RU.KOI8-R message catalog for ee(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] ru_RU.KOI8-R message catalog for ee(1) State-Changed-From-To: analyzed->closed State-Changed-By: sobomax State-Changed-When: Mon Jun 11 01:43:56 PDT 2001 State-Changed-Why: The patch has been committed into both current and stable. Thank you for submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=26663 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 2: 1:37 2001 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 6114437B405; Mon, 11 Jun 2001 02:01:36 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B91Za03254; Mon, 11 Jun 2001 02:01:35 -0700 (PDT) (envelope-from ru) Date: Mon, 11 Jun 2001 02:01:35 -0700 (PDT) From: Message-Id: <200106110901.f5B91Za03254@freefall.freebsd.org> To: tubbs@home.se, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/27975: make buildworld fails when updating from 4.2-release to 4.3-stable. stops at ipmon. 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 buildworld fails when updating from 4.2-release to 4.3-stable. stops at ipmon. State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Mon Jun 11 02:01:08 PDT 2001 State-Changed-Why: Superseded by PR 28002. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27975 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 2: 2:20 2001 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 8BA7B37B40C; Mon, 11 Jun 2001 02:02:14 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B92En03385; Mon, 11 Jun 2001 02:02:14 -0700 (PDT) (envelope-from ru) Date: Mon, 11 Jun 2001 02:02:14 -0700 (PDT) From: Message-Id: <200106110902.f5B92En03385@freefall.freebsd.org> To: reel@sympatico.ca, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/28002: make world fails (ref. to ipf) 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 world fails (ref. to ipf) State-Changed-From-To: closed->open State-Changed-By: ru State-Changed-When: Mon Jun 11 02:01:42 PDT 2001 State-Changed-Why: SHARED=symlink case is currently broken. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28002 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 2:23:55 2001 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 EB13537B401; Mon, 11 Jun 2001 02:23:52 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5B9NqW08583; Mon, 11 Jun 2001 02:23:52 -0700 (PDT) (envelope-from ru) Date: Mon, 11 Jun 2001 02:23:52 -0700 (PDT) From: Message-Id: <200106110923.f5B9NqW08583@freefall.freebsd.org> To: ebd@oau.org, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/28017: 4.3-STABLE build fails after cvs 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 Synopsis: 4.3-STABLE build fails after cvs update State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Mon Jun 11 02:22:12 PDT 2001 State-Changed-Why: Transient error. The latest pam_private.h doesn't have `pam_default_log' field. @@ -134,7 +138,6 @@ struct pam_handle { char *rhost; char *ruser; char *tty; - struct pam_log_state pam_default_log; /* for ident etc., log state */ struct pam_data *data; struct pam_environ *env; /* structure to maintain environment list */ struct _pam_fail_delay fail_delay; /* helper function for easy delays */ http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28017 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 3:30:38 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from jocke.transit.net (jocke.globalwire.se [213.136.48.103]) by hub.freebsd.org (Postfix) with ESMTP id E535537B401 for ; Mon, 11 Jun 2001 03:30:34 -0700 (PDT) (envelope-from stefan@globalwire.se) Received: from tjatte.globalwire.se (tjatte.globalwire.se [213.136.48.100]) by jocke.transit.net (Postfix) with ESMTP id 6FEF8B7EA for ; Mon, 11 Jun 2001 12:31:27 +0200 (CEST) Message-Id: <5.1.0.14.2.20010611122958.0217fb78@mailgw.transit.net> X-Sender: stefan@mailgw.transit.net X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Mon, 11 Jun 2001 12:31:18 +0200 To: freebsd-bugs@freebsd.org From: Stefan Cars Subject: Problem with cvsup.. 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 When I do a cvsup on the ports collection I get the following error: Delete ports/www/jakarta-tomcat/files Updater failed: Cannot delete "/usr/ports/www/jakarta-tomcat/files": Directory not empty If you then delete the files in www/jakarta-tomcat/files and do a cvsup again the same error occurs and the files are there again, so cvsup must first put the files there then try to delete them. Using cvsup.fi.freebsd.org / stefan ---- Stefan Cars Development manager Globalwire Communications Mobile: +46 (0)708 44 36 00 www.globalwire.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 3:33: 7 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.13]) by hub.freebsd.org (Postfix) with SMTP id 6920037B403 for ; Mon, 11 Jun 2001 03:33:04 -0700 (PDT) (envelope-from roam@orbitel.bg) Received: (qmail 16104 invoked by uid 1000); 11 Jun 2001 10:31:46 -0000 Date: Mon, 11 Jun 2001 13:31:46 +0300 From: Peter Pentchev To: Stefan Cars Cc: freebsd-bugs@freebsd.org Subject: Re: Problem with cvsup.. Message-ID: <20010611133146.C564@ringworld.oblivion.bg> Mail-Followup-To: Stefan Cars , freebsd-bugs@freebsd.org References: <5.1.0.14.2.20010611122958.0217fb78@mailgw.transit.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <5.1.0.14.2.20010611122958.0217fb78@mailgw.transit.net>; from stefan@globalwire.se on Mon, Jun 11, 2001 at 12:31:18PM +0200 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 Mon, Jun 11, 2001 at 12:31:18PM +0200, Stefan Cars wrote: > When I do a cvsup on the ports collection I get the following error: > > Delete ports/www/jakarta-tomcat/files > Updater failed: Cannot delete "/usr/ports/www/jakarta-tomcat/files": > Directory not empty > > > If you then delete the files in www/jakarta-tomcat/files and do a cvsup > again the same error occurs and the files are there again, so cvsup must > first put the files there then try to delete them. > > Using cvsup.fi.freebsd.org Take a look at http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27495 for a detailed explanation, a workaround and a fix by John D. Polstra, the CVSup author/maintainer. G'luck, Peter -- This sentence would be seven words long if it were six words shorter. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 4:53:57 2001 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 3976837B405; Mon, 11 Jun 2001 04:53:51 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BBrol34170; Mon, 11 Jun 2001 04:53:50 -0700 (PDT) (envelope-from ru) Date: Mon, 11 Jun 2001 04:53:50 -0700 (PDT) From: Message-Id: <200106111153.f5BBrol34170@freefall.freebsd.org> To: zgabor@zg.CoDe.hu, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/7043: the fstat command doesn't know ISOFS, MSDOSFS, 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: the fstat command doesn't know ISOFS, MSDOSFS, etc State-Changed-From-To: suspended->closed State-Changed-By: ru State-Changed-When: Mon Jun 11 04:53:14 PDT 2001 State-Changed-Why: Superseded by PR bin/16364. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=7043 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 4:55:22 2001 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 E33C037B405; Mon, 11 Jun 2001 04:55:11 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BBtBc34392; Mon, 11 Jun 2001 04:55:11 -0700 (PDT) (envelope-from ru) Date: Mon, 11 Jun 2001 04:55:11 -0700 (PDT) From: Message-Id: <200106111155.f5BBtBc34392@freefall.freebsd.org> To: peter.edwards@openet-telecom.com, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/16364: [PATCH] Add msdosfs and cd9660 support to fstat 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] Add msdosfs and cd9660 support to fstat State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Mon Jun 11 04:53:56 PDT 2001 State-Changed-Why: Committed a year ago, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=16364 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 5: 0:28 2001 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 8477D37B401; Mon, 11 Jun 2001 05:00:16 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BC0GY35140; Mon, 11 Jun 2001 05:00:16 -0700 (PDT) (envelope-from ru) Date: Mon, 11 Jun 2001 05:00:16 -0700 (PDT) From: Message-Id: <200106111200.f5BC0GY35140@freefall.freebsd.org> To: quik@quikbox.ca, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/27892: the uptime command prints out an error message every time I run it. 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 uptime command prints out an error message every time I run it. State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Mon Jun 11 04:59:43 PDT 2001 State-Changed-Why: Originator reports that the utmp file was corrupt. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27892 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 6: 5:19 2001 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 3997F37B403; Mon, 11 Jun 2001 06:05:18 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BD5I647119; Mon, 11 Jun 2001 06:05:18 -0700 (PDT) (envelope-from ru) Date: Mon, 11 Jun 2001 06:05:18 -0700 (PDT) From: Message-Id: <200106111305.f5BD5I647119@freefall.freebsd.org> To: ben@owns.com, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/24351: setkey(8) man page has multiple spelling errors. 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: setkey(8) man page has multiple spelling errors. State-Changed-From-To: analyzed->closed State-Changed-By: ru State-Changed-When: Mon Jun 11 06:04:38 PDT 2001 State-Changed-Why: Fixed in the latest KAME import. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24351 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 6:12:47 2001 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 0617537B405; Mon, 11 Jun 2001 06:12:46 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BDCjq49901; Mon, 11 Jun 2001 06:12:45 -0700 (PDT) (envelope-from des) Date: Mon, 11 Jun 2001 06:12:45 -0700 (PDT) From: Message-Id: <200106111312.f5BDCjq49901@freefall.freebsd.org> To: toasty@dragondata.com, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/5768: Shutdown aborts syncing, when sync isn't done. 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: Shutdown aborts syncing, when sync isn't done. State-Changed-From-To: open->closed State-Changed-By: des State-Changed-When: Mon Jun 11 06:12:32 PDT 2001 State-Changed-Why: Fixed in -CURRENT and -STABLE. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=5768 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 6:20: 6 2001 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 3E0D537B403 for ; Mon, 11 Jun 2001 06:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BDK2850908; Mon, 11 Jun 2001 06:20:02 -0700 (PDT) (envelope-from gnats) Date: Mon, 11 Jun 2001 06:20:02 -0700 (PDT) Message-Id: <200106111320.f5BDK2850908@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: kern/12072 Reply-To: Dag-Erling Smorgrav 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/12072; it has been noted by GNATS. From: Dag-Erling Smorgrav To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/12072 Date: 11 Jun 2001 15:15:11 +0200 This sounds like a bug in the sendfile(2) code which I believe was fixed a long time ago. Does this problem still occur in newer FreeBSD versions? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 6:20: 9 2001 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 5F56537B405 for ; Mon, 11 Jun 2001 06:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BDK4v50913; Mon, 11 Jun 2001 06:20:04 -0700 (PDT) (envelope-from gnats) Date: Mon, 11 Jun 2001 06:20:04 -0700 (PDT) Message-Id: <200106111320.f5BDK4v50913@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: kern/13940 Reply-To: Dag-Erling Smorgrav 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/13940; it has been noted by GNATS. From: Dag-Erling Smorgrav To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/13940 Date: 11 Jun 2001 15:17:49 +0200 Does this problem still occur in newer FreeBSD versions (which no longer has block devices)? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 6:35:34 2001 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 6E7EF37B401; Mon, 11 Jun 2001 06:35:30 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BDZUi52479; Mon, 11 Jun 2001 06:35:30 -0700 (PDT) (envelope-from des) Date: Mon, 11 Jun 2001 06:35:30 -0700 (PDT) From: Message-Id: <200106111335.f5BDZUi52479@freefall.freebsd.org> To: jamie@arpa.com, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/14547: FreeBSD 3.3 box repeated crashes 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: FreeBSD 3.3 box repeated crashes State-Changed-From-To: feedback->closed State-Changed-By: des State-Changed-When: Mon Jun 11 06:35:02 PDT 2001 State-Changed-Why: Feedback timeout. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=14547 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 6:36:29 2001 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 9E15D37B408; Mon, 11 Jun 2001 06:36:27 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BDaRG52667; Mon, 11 Jun 2001 06:36:27 -0700 (PDT) (envelope-from des) Date: Mon, 11 Jun 2001 06:36:27 -0700 (PDT) From: Message-Id: <200106111336.f5BDaRG52667@freefall.freebsd.org> To: cw6738@home.com, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/11196: kernel mode page fault 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: kernel mode page fault State-Changed-From-To: feedback->closed State-Changed-By: des State-Changed-When: Mon Jun 11 06:36:19 PDT 2001 State-Changed-Why: Feedback timeout. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=11196 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 6:40:12 2001 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 810CC37B40C for ; Mon, 11 Jun 2001 06:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BDe2D62692; Mon, 11 Jun 2001 06:40:02 -0700 (PDT) (envelope-from gnats) Date: Mon, 11 Jun 2001 06:40:02 -0700 (PDT) Message-Id: <200106111340.f5BDe2D62692@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: bin/14568 Reply-To: Dag-Erling Smorgrav 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/14568; it has been noted by GNATS. From: Dag-Erling Smorgrav To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: bin/14568 Date: 11 Jun 2001 15:38:07 +0200 The ATA and ATAPI drivers were completely rewritten between 3.x and 4.x. Does this problem still occur on recent versions? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 6:41:14 2001 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 B0D7737B401; Mon, 11 Jun 2001 06:41:12 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BDfBI65530; Mon, 11 Jun 2001 06:41:11 -0700 (PDT) (envelope-from des) Date: Mon, 11 Jun 2001 06:41:11 -0700 (PDT) From: Message-Id: <200106111341.f5BDfBI65530@freefall.freebsd.org> To: ap@bnc.net, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/15483: mount won't mount / after fsck repairing it 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: mount won't mount / after fsck repairing it on boot State-Changed-From-To: open->closed State-Changed-By: des State-Changed-When: Mon Jun 11 06:40:33 PDT 2001 State-Changed-Why: Stale PR. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=15483 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 6:47:37 2001 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 C5A8737B405; Mon, 11 Jun 2001 06:47:34 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BDlYf83854; Mon, 11 Jun 2001 06:47:34 -0700 (PDT) (envelope-from des) Date: Mon, 11 Jun 2001 06:47:34 -0700 (PDT) From: Message-Id: <200106111347.f5BDlYf83854@freefall.freebsd.org> To: des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/26871: change request for pw command 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 request for pw command State-Changed-From-To: open->closed State-Changed-By: des State-Changed-When: Mon Jun 11 06:47:21 PDT 2001 State-Changed-Why: Superfluous PR. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=26871 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 6:48:53 2001 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 428B737B401; Mon, 11 Jun 2001 06:48:52 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BDmqo88001; Mon, 11 Jun 2001 06:48:52 -0700 (PDT) (envelope-from des) Date: Mon, 11 Jun 2001 06:48:52 -0700 (PDT) From: Message-Id: <200106111348.f5BDmqo88001@freefall.freebsd.org> To: reel@sympatico.ca, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/27137: failure of "make world" on FreeBSD 4.3-STABLE (in stage 4) 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: failure of "make world" on FreeBSD 4.3-STABLE (in stage 4) State-Changed-From-To: open->closed State-Changed-By: des State-Changed-When: Mon Jun 11 06:48:04 PDT 2001 State-Changed-Why: Probably a corrupt source tree or a hardware failure. Please seek advice on the mailing lists before submitting PRs for build failures. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27137 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 7:18:56 2001 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 C484F37B403; Mon, 11 Jun 2001 07:18:54 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BEIsR61694; Mon, 11 Jun 2001 07:18:54 -0700 (PDT) (envelope-from des) Date: Mon, 11 Jun 2001 07:18:54 -0700 (PDT) From: Message-Id: <200106111418.f5BEIsR61694@freefall.freebsd.org> To: seb@strollo.org, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/27760: pkg_add -r hangs when fetching via ftp 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: pkg_add -r hangs when fetching via ftp State-Changed-From-To: open->feedback State-Changed-By: des State-Changed-When: Mon Jun 11 07:18:33 PDT 2001 State-Changed-Why: Similar fix committed to -CURRENT, awaiting MFC. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27760 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 7:40: 9 2001 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 3AAD137B403 for ; Mon, 11 Jun 2001 07:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BEe4o64085; Mon, 11 Jun 2001 07:40:04 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5592737B403 for ; Mon, 11 Jun 2001 07:36:58 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BEaw463720; Mon, 11 Jun 2001 07:36:58 -0700 (PDT) (envelope-from nobody) Message-Id: <200106111436.f5BEaw463720@freefall.freebsd.org> Date: Mon, 11 Jun 2001 07:36:58 -0700 (PDT) From: pmarquis@pobox.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/28035: make buildworld fails on 4.2-RELEASE -> RELENG_4 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: 28035 >Category: misc >Synopsis: make buildworld fails on 4.2-RELEASE -> RELENG_4 >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 Jun 11 07:40:03 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Paul Marquis >Release: 4.2-RELEASE >Organization: >Environment: FreeBSD sboy.pmarquis.com 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Mon Jun 4 17:30:36 EDT 2001 pmarquis@sboy.pmarquis.com:/usr/src/sys/compile/SBOY i386 >Description: After upgrading my sources from 4.2-RELEASE to STABLE (as 6/11/2001), make buildworld fails building src/lib/libcrypt/property.o with a undefined symbols (PROPERTY_MAX_NAME, PROPERTY_MAX_VALUE). >How-To-Repeat: - Install 4.2-RELEASE - CVSup or AnonCVS to STABLE - run "make buildworld" >Fix: Patch src/lib/libcrypt/Makefile as follows: cvs diff src/lib/libcrypt/Makefile Index: src/lib/libcrypt/Makefile =================================================================== RCS file: /home/ncvs/src/lib/libcrypt/Makefile,v retrieving revision 1.24.2.3 diff -u -r1.24.2.3 Makefile --- src/lib/libcrypt/Makefile 2001/05/24 12:20:02 1.24.2.3 +++ src/lib/libcrypt/Makefile 2001/06/11 14:33:12 @@ -26,6 +26,7 @@ # And the auth_getval() code and support. .PATH: ${.CURDIR}/../libutil SRCS+= auth.c property.c +CFLAGS+= -I${.CURDIR}/../libutil .for sym in MD5Init MD5Final MD5Update MD5Pad auth_getval \ property_find properties_read properties_free CFLAGS+= -D${sym}=__${sym} >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 Jun 11 9:16:58 2001 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 D6A4337B401; Mon, 11 Jun 2001 09:16:54 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BGGs781480; Mon, 11 Jun 2001 09:16:54 -0700 (PDT) (envelope-from ru) Date: Mon, 11 Jun 2001 09:16:54 -0700 (PDT) From: Message-Id: <200106111616.f5BGGs781480@freefall.freebsd.org> To: pmarquis@pobox.com, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/28035: make buildworld fails on 4.2-RELEASE -> RELENG_4 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 buildworld fails on 4.2-RELEASE -> RELENG_4 State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Mon Jun 11 09:15:27 PDT 2001 State-Changed-Why: Proper set of header files is installed during `buildworld' into ${WORLDTMP} (/usr/obj/usr/src/i386/usr/include). http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28035 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 10:50:14 2001 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 D962037B407 for ; Mon, 11 Jun 2001 10:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BHo0F96278; Mon, 11 Jun 2001 10:50:00 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0663C37B407 for ; Mon, 11 Jun 2001 10:47:47 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BHlku95940; Mon, 11 Jun 2001 10:47:46 -0700 (PDT) (envelope-from nobody) Message-Id: <200106111747.f5BHlku95940@freefall.freebsd.org> Date: Mon, 11 Jun 2001 10:47:46 -0700 (PDT) From: cynic@mail.cz To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/28078: /stand/sysinstall skips distro selection after choosing "no" at final prompt 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: 28078 >Category: conf >Synopsis: /stand/sysinstall skips distro selection after choosing "no" at final prompt >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 Jun 11 10:50:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Roman Neuhauser >Release: 4.3-RELEASE >Organization: >Environment: FreeBSD freepuppy.local 4.3-RELEASE FreeBSD 4.3-RELEASE #2: Mon Jun 11 13:02:42 CEST 2001 toor@freepuppy.local:/usr/src/sys/compile/FREEPUPPY i386 >Description: (appended uname -a shows a custom kernel, but this happens with GENERIC, too) "Standard install" -- when you choose "cancel" or "no" after the distro selection, /stand/sysinstall won't let you select a distro again. >How-To-Repeat: Take a 4.3-RELEASE CD, select "Standard Install", proceed all the way to the "Last chance" dialog, answer "no". Repeat the install. Distro selection is skipped. >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 Jun 11 10:53:23 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp01.mrf.mail.rcn.net (smtp01.mrf.mail.rcn.net [207.172.4.60]) by hub.freebsd.org (Postfix) with ESMTP id 1A83637B401; Mon, 11 Jun 2001 10:53:20 -0700 (PDT) (envelope-from pmarquis@pobox.com) Received: from 146-115-120-232.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([146.115.120.232] helo=sboy.pmarquis.com) by smtp01.mrf.mail.rcn.net with smtp (Exim 3.16 #6) id 159VsN-0003aT-00 ; Mon, 11 Jun 2001 13:53:19 -0400 Content-Type: text/plain; charset="iso-8859-1" From: Paul Marquis To: ru@freeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/28035: make buildworld fails on 4.2-RELEASE -> RELENG_4 Date: Mon, 11 Jun 2001 13:55:14 -0400 X-Mailer: KMail [version 1.2] References: <200106111616.f5BGGs781480@freefall.freebsd.org> In-Reply-To: <200106111616.f5BGGs781480@freefall.freebsd.org> MIME-Version: 1.0 Message-Id: <01061113252003.00418@sboy.pmarquis.com> Content-Transfer-Encoding: 8bit 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 They may get installed properly during a buildworld (or should that be installworld), but without my patch, the libcrypt library gets built against some headers in /usr/include, specifically libutil.h, and can't even be built! Between 4.2-RELEASE and 4.3-RELEASE, the following log entry appears for libutil.h: 1.29 - Added PROPERTY_MAX_VALUE and PROPERTY_MAX_NAME defines to libutil.h so that applications know how large of a buffer they must allocate before calling property_find(). Also added a $FreeBSD$ tag while I'm here. Thus, in 4.2-RELEASE, PROPERTY_MAX_VALUE and PROPERTY_MAX_NAME are not defined in /usr/include/libutil.h. After upgrading my sources to STABLE, when I do a make buildworld without my patch, the compiler uses libutil.h from /usr/include for the files built in lib/libcrypt. Some of those files use the above macros, and since they're not defined in libutil.h from /usr/include, the following errors occur: cc -O -pipe -I/usr/src/secure/lib/libcrypt/../../../lib/libmd -I/usr/src/secure/lib/libcrypt/../../../lib/libcrypt -DHAS_BLOWFISH -DHAS_DES -DLIBC_SCCS -Wall -DMD5Init=__MD5Init -DMD5Final=__MD5Final -DMD5Update=__MD5Update -DMD5Pad=__MD5Pad -Dauth_getval=__auth_getval -Dproperty_find=__property_find -Dproperties_read=__properties_read -Dproperties_free=__properties_free -DNO_IDEA -c /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c -o property.o /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c: In function `__properties_read': /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:60: `PROPERTY_MAX_NAME' undeclared (first use in this function) /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:60: (Each undeclared identifier is reported only once /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:60: for each function it appears in.) /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:60: size of array `hold_n' has non-integer type /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:61: `PROPERTY_MAX_VALUE' undeclared (first use in this function) /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:61: size of array `hold_v' has non-integer type: This is definitely a bug. Please don't just close it. On Monday 11 June 2001 12:16, ru@FreeBSD.org wrote: > Synopsis: make buildworld fails on 4.2-RELEASE -> RELENG_4 > > State-Changed-From-To: open->closed > State-Changed-By: ru > State-Changed-When: Mon Jun 11 09:15:27 PDT 2001 > State-Changed-Why: > Proper set of header files is installed during `buildworld' > into ${WORLDTMP} (/usr/obj/usr/src/i386/usr/include). > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28035 -- Paul Marquis pmarqus@pobox.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 11: 0: 8 2001 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 1914237B408 for ; Mon, 11 Jun 2001 11:00:04 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BI03b97770 for freebsd-bugs@freebsd.org; Mon, 11 Jun 2001 11:00:03 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 11 Jun 2001 11:00:03 -0700 (PDT) Message-Id: <200106111800.f5BI03b97770@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 Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/06/10] pending/28020gnats-adminNew port: print/pcal - PostScript calenda o [2001/06/11] pending/28070gnats-adminsuport Pentium3 SSE 2 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 Jun 11 11: 2: 6 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 79B4637B408 for ; Mon, 11 Jun 2001 11:01:42 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.2/8.11.2) id f5BI1Pc32953; Mon, 11 Jun 2001 21:01:25 +0300 (EEST) (envelope-from ru) Date: Mon, 11 Jun 2001 21:01:25 +0300 From: Ruslan Ermilov To: Paul Marquis Cc: freebsd-bugs@freeBSD.org Subject: Re: misc/28035: make buildworld fails on 4.2-RELEASE -> RELENG_4 Message-ID: <20010611210125.A27882@sunbay.com> Mail-Followup-To: Paul Marquis , freebsd-bugs@freeBSD.org References: <200106111616.f5BGGs781480@freefall.freebsd.org> <01061113252003.00418@sboy.pmarquis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <01061113252003.00418@sboy.pmarquis.com>; from pmarquis@pobox.com on Mon, Jun 11, 2001 at 01:55:14PM -0400 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 definitely a bug on your side. Are you sure you're doing a `make buildworld' and not `make all'? `buildworld' stage of Makefile.inc1 installs new headers into ${WORLDTMP}/usr/include directory, which is usually points to /usr/obj/usr/src/i386/usr/include. Then, all is built with DESTDIR=${WORLDTMP} which causes bsd.prog.mk and bsd.lib.mk to add CFLAGS+=-I${DESTDIR}/usr/include, so you should see the -I/usr/obj/usr/src/i386/usr/include line in the `buildworld' output. Note the missing -I in your output after a -DNO_IDEA. Here is the correct output you should see: cc -nostdinc -O -pipe -I/usr/src/secure/lib/libcrypt/../../../lib/libmd -I/usr/src/secure/lib/libcrypt/../../../lib/libcrypt -DHAS_BLOWFISH -DHAS_DES -DLIBC_SCCS -Wall -DMD5Init=__MD5Init -DMD5Final=__MD5Final -DMD5Update=__MD5Update -DMD5Pad=__MD5Pad -Dauth_getval=__auth_getval -Dproperty_find=__property_find -Dproperties_read=__properties_read -Dproperties_free=__properties_free -DNO_IDEA -I/usr/obj/usr/src/i386/usr/include -c /usr/src/secure/lib/libcrypt/../../../lib/libcrypt/crypt.c -o crypt.o On Mon, Jun 11, 2001 at 01:55:14PM -0400, Paul Marquis wrote: > They may get installed properly during a buildworld (or should that > be installworld), but without my patch, the libcrypt library gets > built against some headers in /usr/include, specifically libutil.h, > and can't even be built! > > Between 4.2-RELEASE and 4.3-RELEASE, the following log entry appears > for libutil.h: > > 1.29 - Added PROPERTY_MAX_VALUE and PROPERTY_MAX_NAME > defines to libutil.h so that applications know how large > of a buffer they must allocate before calling > property_find(). Also added a $FreeBSD$ tag while I'm here. > > Thus, in 4.2-RELEASE, PROPERTY_MAX_VALUE and PROPERTY_MAX_NAME are > not defined in /usr/include/libutil.h. > > After upgrading my sources to STABLE, when I do a make buildworld > without my patch, the compiler uses libutil.h from /usr/include for > the files built in lib/libcrypt. Some of those files use the above > macros, and since they're not defined in libutil.h from /usr/include, > the following errors occur: > > cc -O -pipe -I/usr/src/secure/lib/libcrypt/../../../lib/libmd > -I/usr/src/secure/lib/libcrypt/../../../lib/libcrypt -DHAS_BLOWFISH > -DHAS_DES -DLIBC_SCCS -Wall -DMD5Init=__MD5Init -DMD5Final=__MD5Final > -DMD5Update=__MD5Update -DMD5Pad=__MD5Pad -Dauth_getval=__auth_getval > -Dproperty_find=__property_find -Dproperties_read=__properties_read > -Dproperties_free=__properties_free -DNO_IDEA -c > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c -o > property.o > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c: In > function `__properties_read': > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:60: > `PROPERTY_MAX_NAME' undeclared (first use in this function) > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:60: > (Each undeclared identifier is reported only once > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:60: > for each function it appears in.) > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:60: size > of array `hold_n' has non-integer type > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:61: > `PROPERTY_MAX_VALUE' undeclared (first use in this function) > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:61: size > of array `hold_v' has non-integer type: > > This is definitely a bug. Please don't just close it. > > On Monday 11 June 2001 12:16, ru@FreeBSD.org wrote: > > Synopsis: make buildworld fails on 4.2-RELEASE -> RELENG_4 > > > > State-Changed-From-To: open->closed > > State-Changed-By: ru > > State-Changed-When: Mon Jun 11 09:15:27 PDT 2001 > > State-Changed-Why: > > Proper set of header files is installed during `buildworld' > > into ${WORLDTMP} (/usr/obj/usr/src/i386/usr/include). > > > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28035 > > -- > Paul Marquis > pmarqus@pobox.com -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 11: 3:44 2001 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 3508737B40A for ; Mon, 11 Jun 2001 11:00:15 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BI04897777 for freebsd-bugs@freebsd.org; Mon, 11 Jun 2001 11:00:04 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 11 Jun 2001 11:00:04 -0700 (PDT) Message-Id: <200106111800.f5BI04897777@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 ------------------------------------------------------------------------------- o [1997/12/21] kern/5355 bp Fix for NULLFS problems 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 a [1998/11/08] ports/8609 nectar eklogin service (kerberos klogind) fails o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 o [1999/02/20] kern/10172 [panics] Kernel (esp kern/sys_pipe.c) die o [1999/03/09] kern/10520 bp can't exec files under nullfs f [1999/03/11] kern/10542 page fault while in kernel mode, not kern o [1999/03/11] kern/10545 will When a fork/exec stress test is run, the f [1999/03/27] kern/10828 3.1-STABLE freezes when writing to floppy o [1999/03/30] kern/10872 Panic in sorecieve() due to NULL mbuf poi o [1999/04/20] kern/11241 Install fails after SCSI probe o [1999/05/24] kern/11869 wpaul Network hangging due to xl0: tx underrun o [1999/05/31] kern/11966 TCP copies send and receive socket buffer o [1999/06/02] kern/11988 recvmsg with a cmsghdr but no iovec is br s [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch o [1999/06/07] kern/12072 vm_fault happened in binary file transfer s [1999/06/23] kern/12367 Writing files larger than floppy capacity o [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde o [1999/06/30] kern/12466 Fast system hangs under high FS load o [1999/07/05] kern/12521 lmbench-1.1's context switching test hang o [1999/07/12] misc/12607 System crashes after boot, portmap endles o [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG o [1999/07/21] kern/12730 poll() causes indeterministic program han o [1999/08/02] misc/12923 Installation fails on HP Net Server o [1999/08/10] i386/13059 imp Install aborts with panic:aha0: Invalid C o [1999/09/12] kern/13709 panic: sched_sync: fsync failed o [1999/09/19] kern/13825 tx0 "holds" packets for long periods, eve o [1999/09/19] i386/13844 keyboard locks up when I page through a m o [1999/09/24] i386/13933 nfs server panics in tulip_rx_intr() o [1999/09/24] kern/13940 Panic with dd on block/"cooked" devices u o [1999/09/27] misc/13995 Full duplex mode doesn't work right with o [1999/09/28] i386/14030 imp aha0 probe fails 3.3.0-RELEASE install wi o [1999/10/14] kern/14322 mount respects permissions of underlying o [1999/10/27] bin/14568 page fault while using 'dagrab' o [1999/10/30] kern/14614 dillon VM DoS attack (with exploit attached) o [1999/11/20] kern/15013 SMP Panic on Dell PowerEdge 1300/600 f [1999/11/22] i386/15040 Installation problems with 3.x FreeBSD f [1999/11/23] kern/15069 gibbs T400s hangs on any access o [1999/12/05] kern/15281 Please fix handling Ross(?) host to PCI b o [1999/12/08] kern/15356 ahc driver (Adaptec 7896) cannot see 4x18 f [2000/01/02] kern/15837 mdodd NIC: ex0: Intel EtherExpress Pro/10 stopp o [2000/01/17] misc/16157 green "fire" screensave kills network performan o [2000/01/19] ports/16211 markm pgp5 port creates pgp_old instead of pgpo f [2000/01/24] misc/16334 System crash on Hard Drive Mount o [2000/01/25] bin/16350 Kerberized rlogind no longer compiles o [2000/01/28] kern/16420 mdodd 3C5x9 isa nic card o [2000/01/29] kern/16453 joy(8) doesn't behave as it said in the m o [2000/01/30] i386/16474 SCSI (AHA-2940UW) CDROM install freezes o [2000/02/05] kern/16510 User processes locked on SMP box while bu o [2000/02/07] kern/16574 missing aout shared libs -> panic o [2000/02/14] kern/16708 wpaul 3Com 3c900-Combo Ehternet card make kerne o [2000/02/15] kern/16740 mckusick The kernel panics with "ffs_clusteralloc: o [2000/02/18] i386/16802 An user math program have the system on K o [2000/02/19] kern/16828 High Speed Pinging Over 8184 bytes Kills o [2000/02/21] kern/16890 Fatal trap 12: page fault while in kernel o [2000/02/26] kern/17011 Fatal trap 12 occur, dhclient with BOOTP f [2000/02/28] kern/17067 consistent "make -k buildworld" crash wit f [2000/03/07] kern/17248 FreeBSD 3.4 won't install on 486/100 IBM o [2000/03/10] kern/17305 advansys driver time-out around 30 minute o [2000/03/15] i386/17391 jhb FreeBSD boot loader does not recognize ke o [2000/03/18] i386/17485 Partition editor completely non-functiona o [2000/03/22] i386/17558 ncr1 controller is not working properly i o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy o [2000/03/28] alpha/17642 alpha FreeBSD/alpha 4.0 RELEASE installation fa o [2000/04/04] bin/17791 Restore does not handle bad or missing ta o [2000/04/04] misc/17793 Keyboard not found o [2000/04/04] ports/17806 msmith make in ports/net/citrix_ica loops on scr o [2000/04/04] i386/17808 cannot swap /dev/.... o [2000/04/08] kern/17870 4.0-release consistently crashes a couple o [2000/04/18] kern/18074 Fatal trap 12: page fault while in kernel o [2000/04/23] kern/18182 Remote serial gdb no longer works since m o [2000/04/24] bin/18198 owner of ccontrol file in spool dir is wr o [2000/04/24] misc/18201 Freeze at boot time when trying to upgrad o [2000/04/27] kern/18265 Vendor specific word = FFFF o [2000/05/09] misc/18466 dillon install via nfs or ftp media silently tru o [2000/05/13] bin/18531 installation will not read files frm flop s [2000/05/17] misc/18641 paul FreeBSD V4.0 crashes when using ifconfig o [2000/05/23] misc/18786 SCSI hangs during FreeBSD 4.0 installatio s [2000/05/24] misc/18793 ken Hitachi DK319H needs quirk entry to work o [2000/05/29] kern/18874 32bit NFS servers export wrong negative v o [2000/05/29] bin/18887 Undefined symbol "_krb_err_txt" in telnet o [2000/06/05] kern/19022 cg pcm driver causes immediate panic on use f [2000/06/09] kern/19162 asmodai 4.0-STABLE panics w/ softupdates and quot 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/06/15] kern/19297 Multi-processor kernel fails to boot on T o [2000/06/16] conf/19336 write failure when adding distribution fi o [2000/06/23] kern/19480 System hang when use current (GENERIC) ke a [2000/06/30] ports/19613 nate java causing SIGSEGV 11* segmentation vi o [2000/07/01] conf/19629 imp /etc/rc.sysctl can't set all syctls o [2000/07/05] kern/19726 wpaul fatal trap 12 / page fault o [2000/07/09] kern/19794 FreeBSD 4.0-Stable crash o [2000/07/12] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/20] ports/20077 jmz Latex 99.12 fails to make completely o [2000/07/27] kern/20227 jlemon 4.1-RC: UDP checksum problem 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/01] misc/20353 4.1 doesn't work on Compaq ML370 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] kern/20484 jlemon FreeBSD 4.0 crashes repeatedly: trap 12: o [2000/08/08] bin/20489 davidn pw problems: -w random not working correc o [2000/08/08] i386/20495 yokota 4.1-STABLE and 4.1-RELEASE: keyboard does o [2000/08/15] ports/20624 emulationvmware vmmon module locks kernel o [2000/08/16] kern/20671 wpaul panicstr:page fault; panic messages:Fatal 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 f [2000/09/08] i386/21117 When booting 4.0 install disk receive thi o [2000/09/12] kern/21220 msmith mlx0: I/O error - attempt to write beyond o [2000/09/13] bin/21253 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 o [2000/09/18] kern/21378 Accessing floppy under 4.1-STABLE (with D o [2000/09/19] kern/21397 Floppy drive doesn't work on Compaq ProLi o [2000/09/20] kern/21438 cg Sox recording in 16 bits creates a panic: o [2000/10/01] i386/21677 Instalation crashed when shell started o [2000/10/04] i386/21758 X display font problem o [2000/10/05] i386/21772 No interrupts for 39160 PCI adapter in PR o [2000/10/06] misc/21782 4.1.1 and ADAPTEC 29160N SCSI controller o [2000/10/06] kern/21783 When msgrcv() blocks, it blocks ALL threa o [2000/10/06] kern/21790 marcel fstat64 does not exist in Linux emulation o [2000/10/06] i386/21802 after working fine for a few weeks, mach o [2000/10/23] i386/22236 mouse cursor bug under text console mode o [2000/10/26] kern/22324 Kernel panic when second Compaq Smart Arr o [2000/10/28] kern/22376 Some problems in ar driver with FastTrak o [2000/10/31] ports/22444 ache The 'screen' port has reproducable segfau o [2000/11/01] kern/22494 wpaul Fatal trap 12: page fault while in kernel o [2000/11/02] kern/22557 fatal kernel trap 0x2(memory management) o [2000/11/02] kern/22561 xl networkhanging o [2000/11/03] bin/22595 telnetd tricked into using arbitrary peer o [2000/11/06] i386/22640 SCSI problem halts system after long peri o [2000/11/06] kern/22648 SCSI sup system freezes 4.2-BETA o [2000/11/10] i386/22760 adaptec bios cannot find disks after 4.1. 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 o [2000/11/26] kern/23126 Can't boot kernel with ADAPTEC 1522 SCSI f [2000/11/27] i386/23145 brian pppoe-test-program panics the server o [2000/11/29] kern/23173 read hangs in linux emulation o [2000/12/04] kern/23258 mckusick panic: softdep_lock: locking against myse o [2000/12/04] kern/23281 Installation hangs on PowerEdge 2450 Per3 o [2000/12/09] kern/23411 SMP Kernel Freezes Machines on Dual Proce o [2000/12/11] kern/23480 panic: vm_pageout_flush page 0xc0a0a8fc i o [2000/12/12] bin/23501 pw destroy /etc/master.passwd when pw exe o [2000/12/12] kern/23505 processes die with SIGPROF, usually under a [2000/12/14] kern/23547 msmith only one logical device on Mylex AcceleRA o [2000/12/14] i386/23548 4.x causes Thinkpad 560X disk to spin up/ o [2000/12/19] i386/23681 keyboard is not working when the laptop i a [2000/12/21] kern/23740 roam kernel DoS tha could be executed by any u o [2000/12/22] kern/23752 panic with smp 4.2 kernel and dma lpt o [2000/12/26] kern/23859 panicked on sofree o [2000/12/27] kern/23887 panic: softdep_disk_write_complete: lock o [2000/12/30] misc/23958 Installation fails on an i486 DX2 machine o [2000/12/30] misc/23960 Installation fails on an i486 DX2 machine f [2001/01/01] kern/24018 4.2-STABLE, 4.0-RELEASE fatal trap 12: pa o [2001/01/12] ports/24276 asami XFree86-4 port doesn't put patch-1 in the o [2001/01/16] kern/24378 ahc broken in STABLE o [2001/01/17] kern/24418 jasone read/write in thread library (-lc_r) does o [2001/01/18] kern/24433 NFSv3 service hangs when writing large am o [2001/01/19] i386/24469 system hangs on scsi disk access error o [2001/01/23] ports/24568 jmz Can't get back to X after switching to co o [2001/01/28] ports/24705 jmz Bug concerning Xwrapper/XFree86-4.0.2 f [2001/01/30] kern/24740 filesystem corruption CFP1080 CAM SCSI ca o [2001/02/02] kern/24811 Networking in FreeBSD 4.2-RELEASE doesn't o [2001/02/03] kern/24829 ufs incompatibility (4.1.1-STABLE -> 4.2- o [2001/02/11] kern/25006 cannot ignore arp (ifconfig -arp doesn't o [2001/02/15] i386/25123 Heavy NFS traffic over virtual interface f [2001/02/15] kern/25130 dcs kernel crash with kldload/kldunload md.ko o [2001/02/19] kern/25215 RELENG_4 kernel crashes starting SCSI dis f [2001/02/20] misc/25230 gibbs ... SCB Memory Parity Error at seqaddr = o [2001/02/20] kern/25235 OS Hungs up when using with a Battery of o [2001/02/23] i386/25328 4.x stable kernel crash: page fault o [2001/02/27] misc/25407 Error while booting 4.2 : ahc0 Signaled A a [2001/03/04] kern/25536 ache fix annoying console mouse cursor flicker o [2001/03/09] kern/25632 n_hibma USB modem (umodem) may destroy the cfreel o [2001/03/11] bin/25722 green OpenSSH on 4.2 dumps core from illegal us o [2001/03/20] kern/25950 Bad drives on asr look zero-length and pa o [2001/03/22] kern/26018 Even FreeBSD 4.2 rises ProblemReport kern o [2001/03/24] kern/26048 4.3-RC: SMP and asr driver don't work to o [2001/03/30] kern/26223 Linux /compat/linux/dev devices doesn't w o [2001/03/30] kern/26224 VFS Panic/SMP/CFLOW(HEAVY network)/Heavy o [2001/04/02] bin/26305 Cannnot restore partions with FreeBSD 4.x f [2001/04/07] kern/26417 kernel crash using mpd-netgraph o [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 o [2001/04/17] bin/26665 jlemon [PATCH] syslogd hangs when logging from r a [2001/04/18] kern/26667 Kernel Page Fault/Panic on SWAP Partition o [2001/04/20] i386/26736 System freeze booting from (i386) 4.3 flo o [2001/04/25] kern/26840 process doing mmap() over nfs hangs in vm o [2001/04/27] ports/26890 will KDE Media Player don't work! o [2001/05/02] ports/27036 sobomax All Ports using Mesa3 are required with - o [2001/05/02] i386/27042 4.3-RELEASE installation from CDROM fails o [2001/05/02] kern/27048 Bus support (I believe) broken in freeBSD o [2001/05/03] kern/27059 (symbios) SCSI subsystem hangs under heav o [2001/05/07] ports/27186 ports Firebird's gbak failed at make install a [2001/05/10] kern/27250 bp unionfs filesystem panics in large number o [2001/05/11] bin/27264 green ssh won't do RSA authentication with Open o [2001/05/11] kern/27275 kernel bug ? o [2001/05/11] kern/27278 ex0 panics system at boot with Ethernet c o [2001/05/15] kern/27370 kernel crash when trying to query the USB o [2001/05/16] conf/27385 BusLogic FlashPoint SCSI not found by ins o [2001/05/17] conf/27408 rc.network hangs at rpc.umntall if stale o [2001/05/18] i386/27434 TCP/IP Stack leak on proxy-like programms f [2001/05/18] misc/27435 Can't extract bin to / o [2001/05/20] misc/27475 jlemon Intel 815EEA onboard 82559 causes system f [2001/05/21] misc/27495 jdp ports tree broken while made cvsup upgrad o [2001/05/25] conf/27637 ctm CTM delta generation broken for crypto st o [2001/05/26] misc/27667 jkh sysinstall - unable to install on some bo f [2001/05/29] bin/27760 pkg_add -r hangs when fetching via ftp o [2001/05/30] kern/27767 PPPoE makes 32-bit assumptions and breaks o [2001/06/03] bin/27860 dwmalone sshd dumps core o [2001/06/03] kern/27861 system crashes when trying to access /dev 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 o [2001/06/09] i386/27991 ssh 1 and 2 login with keys is not possib o [2001/06/09] i386/28002 make world fails (ref. to ipf) o [2001/06/11] kern/28031 ThinkPad 570 doesn't need clkrun_hack 221 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1995/10/18] bin/786 wpaul Problem with NIS and large group maps s [1996/10/26] bin/1892 n_hibma install(1) removes target file s [1996/11/08] gnu/1981 ypserv handles null key incorrectly a [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 o [1997/02/22] kern/2800 DDS large data writing probrem f [1997/03/01] kern/2840 tegge mlock+minherit+fork+munlock causes panics o [1997/04/01] bin/3170 vi freaks and dump core if user doesn't e o [1997/04/05] kern/3201 peter de0 not re-enabled after hub down o [1997/04/06] kern/3219 sppp or arnet gets looped after connectio o [1997/04/25] kern/3384 telldir-seekdir can cause livelock o [1997/05/01] kern/3463 netstat -I packet count increase on sl0 w 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 o [1997/07/26] bin/4176 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/13] kern/4295 SL/IP difficulties between 2.2.1 & 2.2.2 s [1997/08/19] kern/4338 New device driver (Cyclades Cyclom-Z) o [1997/08/22] bin/4357 wosch bug in adduser script causes duplicate UI o [1997/09/02] kern/4454 X drops characters/locks up keyboard when o [1997/09/14] i386/4533 Server with Cyclom-Y PCI card rebooted at o [1997/10/01] kern/4666 dfr umount -f doesn't seem to work o [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/03] bin/4683 imp restore doesn't correctly handle "sparse" o [1997/10/16] kern/4774 trying to use IBCS2 shared libraries cras o [1997/10/16] kern/4782 dillon Under certain conditions, several krsh's o [1997/10/31] kern/4909 de ethernet driver is crazy on 100base o [1997/11/03] kern/4927 kernel does not check any quota and permi o [1997/11/05] bin/4949 rpc.rquotad stat()s fs with quota file in o [1997/11/15] conf/5062 login.access not evaluated correctly o [1997/12/06] kern/5244 F00F workaround dosn't always work on SMP o [1997/12/14] bin/5297 will make incompatibility with System V style o [1997/12/19] kern/5347 peter DEC (de0) ethernet card has no buffers af o [1997/12/31] i386/5401 peter de0 selects wrong media when reconnected o [1998/01/16] kern/5513 luigi new PnP code is BAD (soundcards) o [1998/01/27] kern/5587 session id gets dropped o [1998/01/29] kern/5598 Support for magneto-optic SCSI devices wi o [1998/01/31] kern/5611 bind does not check sockaddr->sin_family o [1998/02/28] kern/5877 sb_cc counts control data as well as data o [1998/03/16] kern/6035 The system "sort-of" hangs when playing b o [1998/03/19] kern/6066 paul lnc driver does not work correctly with A o [1998/03/28] bin/6162 kinit does not default to the current use o [1998/04/07] kern/6238 luigi Sound-driver patch for MAD16 (OPTi 928,92 o [1998/04/14] kern/6300 System locks up in SMP mode when accessin o [1998/04/19] kern/6351 DPT RAID controller stops working under h o [1998/04/20] i386/6368 Stallion Easyio 8 port not detected using a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty o [1998/05/25] kern/6755 peter Tulip (if_de) driver buggy in -current s [1998/06/02] bin/6830 will make(1) exhibits confusing and non-standa o [1998/06/19] bin/6994 The netstat(1) -s generates wrong output 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 s [1998/07/06] misc/7190 phk "Invalid partition table" after new insta o [1998/07/11] kern/7245 processes die with signal 6, if machine o 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 o [1998/07/26] kern/7405 dillon in pmap_changebit, pmap_pte_quick() retur s [1998/07/27] kern/7410 [PATCH] driver for arlan-655 s [1998/07/27] i386/7420 [PATCH] Maximum socket buffer size (SB_MA o [1998/07/28] kern/7424 dillon Machine crashes do not occur very often, s [1998/08/10] kern/7556 sl_compress_init() will fail if called an o [1998/08/18] kern/7658 (1) rlogin from some host to the FreeBSD o [1998/08/18] kern/7664 scsiformat reports '0' for all parameters o [1998/08/27] bin/7756 disklabel misbehaving on seriously sick d o [1998/08/27] kern/7766 de driver still buggy - random ifc death o [1998/08/27] kern/7767 de driver still buggy - power cycle of de o [1998/09/09] bin/7876 gethostbyname flags temporary failure as o [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/12] conf/7908 wrong perms on objformat after upgrade o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas o [1998/09/28] i386/8081 Problem with MULTIPORT driver and Boca BB o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio o [1998/10/03] kern/8137 [patch] quotaoff followed by quotaon can o [1998/10/06] kern/8180 open("..",O_RDONLY|O_NONBLOCK) fails o [1998/10/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/10/08] kern/8215 Creating 2 root partitions in sysinstall o [1998/10/14] bin/8322 mikeh Mail doesn't respect REPLYTO in .mailrc o [1998/10/20] i386/8385 2.2.7 hangs while detecting type of COM1' o [1998/10/21] i386/8397 Code using popen compiled on BSDI BSD/OS o [1998/10/22] i386/8414 ibcs2 emulation sets serial baud-rate inc o [1998/10/22] kern/8415 SMP kernel freezes while downloading larg o [1998/11/01] kern/8534 insufficient support routines for poll(2) o [1998/11/03] kern/8561 /kernel inode change time changes every r o [1998/11/08] kern/8607 maxprocsperuid setting causes sybase/linu o [1998/11/10] bin/8646 peter Implement rlogind -a option o [1998/11/11] kern/8655 Umount trouble of SCSI removable device f [1998/11/11] kern/8657 dillon nfs client hung in nfs_bwrite/vfs_busy_pa o [1998/11/18] bin/8745 wosch adduser permit adding `root' and mail ali o [1998/11/20] kern/8773 Intel AN430TX motherboard ps/2 port not r 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/02] kern/8940 system clock runs extremely slowly (and s f [1998/12/16] kern/9095 swap detect error o [1998/12/20] i386/9140 NIS "Magic cookie" in master.passwd slays o [1998/12/21] kern/9163 adrian [patch] squid does not join a multicast g o [1998/12/31] bin/9252 [patch] login program "login" don't set K s [1999/01/06] kern/9355 [MFC] can't select() for writes on a bpf o [1999/01/07] bin/9379 pppd does not go through all interfaces l o [1999/01/08] kern/9391 if_addmulti doesn't check for retifma == f [1999/01/09] kern/9407 "make kernel" yields buggy kernel in cera o [1999/01/09] kern/9411 System crash on swapping to hole-files o [1999/01/11] bin/9440 amd can't mount filesystems with type:=uf o [1999/01/13] kern/9478 support for running a script from kldload o [1999/01/14] bin/9495 su doesn't look at login.cnf all the time o [1999/01/15] bin/9516 ftpd doesn't honor invalid shelll in logi s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/06] i386/9933 No error reported writing to write-protec o [1999/02/08] kern/9961 When loading if_ppp_mod.o system crashes, o [1999/02/08] i386/9962 Install Panics in with integer divide fau o [1999/02/08] kern/9974 Large amounts of kernel clock drift with o [1999/02/11] kern/10021 MOUNTING A EXT2FS A AFTER MOUNTING AN MSD o [1999/02/11] bin/10031 ypxfr does not work with Solaris master s o [1999/02/13] kern/10066 problem with a X-Window and syscons drive 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/25] kern/10265 file locking does not work with kernel pt o [1999/02/26] kern/10280 Display Adapters (PCI) probed wrong way - o [1999/02/28] bin/10312 ken pciconf -l generates output incompatible o [1999/02/28] kern/10316 le0 goes OACTIVE after some time o [1999/03/02] bin/10353 ypserv gets segmentation violation o [1999/03/03] kern/10381 hlfsd/NFS failure -- directory cached bet o [1999/03/05] kern/10411 top, vmstat, iostat show 0% cpu idle & us o [1999/03/07] kern/10466 resume causes crashes if BIOS extmem != R o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/11] bin/10553 syslogd suddenly stopped logging o [1999/03/14] kern/10581 Kernel panic while using find on an ext2 o [1999/03/14] kern/10594 EXT2FS mount problems o [1999/03/14] bin/10596 I can't find out where someone is logged o [1999/03/15] misc/10599 [PATCH included]malloc/free breaks in cer o [1999/03/15] kern/10603 dcs Random system panics o [1999/03/15] kern/10607 Fast forwarding breaks when arp cache exp o [1999/03/16] bin/10633 obrien [patch] tcpslice timezone problem and upd o [1999/03/17] i386/10646 Bridge code missing from ed0 driver in 3. o [1999/03/19] kern/10671 setlogin(2) return EINVAL for length of n o [1999/03/20] kern/10698 de driver doesn't work with some tulip bo a [1999/03/24] kern/10778 ru "ipforward_rt" is not cleared when routin o [1999/03/27] bin/10821 des getpwent() fails on NIS clients after dro o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/04/01] bin/10912 /bin/sh: Fix to prevent infinite loops on o [1999/04/06] bin/10991 lpd hangs system if printer not ready on o [1999/04/07] kern/11004 Quota Issues on SMP o [1999/04/07] bin/11005 `umount -f' does not work if the NFS-serv o [1999/04/08] misc/11024 getpwnam(3) uses incorrect #define to lim o [1999/04/11] kern/11080 fatal trap 18 while trying to mount inval o [1999/04/13] bin/11119 NFS quotas fail to report if alternate fi o [1999/04/26] conf/11336 Broken data sent to printer through devic o [1999/04/28] conf/11376 NFS mount may be happening too soon in /e o [1999/04/29] bin/11382 generated code using rpcgen with -b optio o [1999/04/29] kern/11385 PCNet/PCI Ethernet adapter works in 3.1-R f [1999/04/29] i386/11395 gad ghostscript5.50 does not print properly, o [1999/04/30] kern/11405 pwd_mkdb with no tmp space leads to kerne 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 # o [1999/05/07] gnu/11562 tar verification doesn't work o [1999/05/07] kern/11563 pci_unmap_int doesn't do anything o [1999/05/12] i386/11664 lnc1 NIC fail to work o [1999/05/12] bin/11666 ypserv fails to reply host name resolutio o [1999/05/13] kern/11686 APM: Always "Resume failure" from suspend 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/19] misc/11778 mpz_get_str() in libgmp leads up to cored o [1999/05/21] kern/11821 /dev/fd0a hangs on large files, including o [1999/05/28] kern/11911 3.1-R : writing file larger than floppy s o [1999/05/28] kern/11922 missing reentrant interfaces for getpwnam o [1999/05/29] kern/11928 kldload loads kernel modules even if ther o [1999/05/29] kern/11937 vm problems after havy memory usage o [1999/05/31] kern/11969 VM_fault with mmap'd CDROM data. o [1999/06/04] kern/12022 phk System clock timewarps o [1999/06/06] bin/12054 explicit -ltermcap after -lncurses causes o [1999/06/08] bin/12091 syslog packets from a remote machine are o [1999/06/12] gnu/12175 obrien gdb crashes with pids > 32736 o [1999/06/13] bin/12191 wcol is trying to allocate a shared memor o [1999/06/16] kern/12247 userlevel program let kernel hang o [1999/06/18] bin/12272 The ctype locales print an error message o [1999/06/18] kern/12274 cd mount problem o [1999/06/20] kern/12305 clock() ticks backwards o [1999/06/22] bin/12349 des 3.2-R inetd doesn't re-read ALL configura s [1999/06/24] kern/12381 bde Bad scheduling in FreeBSD o [1999/06/30] kern/12464 bad reference in struct vm_zone o [1999/07/01] kern/12484 [PATCH] bpf_filter() broken o [1999/07/06] bin/12538 getpwuid() NIS UID override fails o [1999/07/07] kern/12551 mks ASIC output is shifted following a short o [1999/07/13] kern/12632 Panic (trap 18) with Symbios SCSI control o [1999/07/15] kern/12646 IGMP reports not sent if no multicast rou o [1999/07/18] kern/12703 tx0 truncates skip packets o [1999/07/20] bin/12727 billf Game patches from NetBSD o [1999/07/21] conf/12745 diffs to delay start of amd rwhod timed o o [1999/07/22] kern/12758 Adjusting the idle priority of a process o [1999/07/23] i386/12771 lpt hangs and never works again, even aft o [1999/07/24] kern/12800 buffer leak in cluster_wbuild o [1999/07/27] kern/12838 PC-Card ctlr(0) Vadem 365 support seems b o [1999/07/29] kern/12869 panic: softdep_flushfiles: looping o [1999/08/02] ports/12930 asami libtool create defuct makefiles if PREFIX o [1999/08/03] misc/12938 gethostbyaddr(209.201.116.19) - Bus error o [1999/08/04] kern/12979 Response time continually slows on idle m o [1999/08/05] kern/12991 system queue is cleared when a port or pi o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/08/15] kern/13150 panic: ufs_dirbad: bad dir o [1999/08/15] gnu/13172 Bug in workaround of russian locale & sor f [1999/08/16] kern/13180 panic: ffs_alloccg: map corrupted o [1999/08/17] gnu/13200 The assembler chokes on very long operand o [1999/08/24] bin/13350 make clean in bsd.obj.mk no longer proper o [1999/08/25] misc/13378 Tecra 8000 hangs in UserConfig, cannot co o [1999/08/26] kern/13405 syslogd get system hang o [1999/08/27] gnu/13427 obrien gdb reports wrong info o [1999/08/28] gnu/13438 objc forward core dump using system cc o [1999/08/29] bin/13463 /bin/sh does not handle interrupts correc o [1999/08/30] misc/13470 Old problem re-introduced: TCP sucket buf o [1999/09/03] kern/13563 mmap() too much ==> hang system o [1999/09/06] kern/13593 Problems with FIFO and select o [1999/09/07] kern/13632 Floppy hangs system o [1999/09/10] bin/13679 ncurses-based programs eat 100% CPU after o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of o [1999/09/11] bin/13703 MCNP compilation problem o [1999/09/13] gnu/13729 strip(1) exits with an error on script fi o [1999/09/13] kern/13740 wrong IP statistics o [1999/09/15] kern/13757 wpaul tl0: adapter check: 180005 mesages keep c o [1999/09/15] bin/13768 sh MAKEDEV cdN creates all cd(N-1)-device o [1999/09/16] conf/13775 multi-user boot may hang in NIS environme o [1999/09/17] i386/13787 lnc driver isn't really the lnc driver o [1999/09/23] misc/13920 pppd acts differently on 3.3-RELEASE ("mi o [1999/09/24] kern/13941 ncr0: SCSI phase error on GENERIC kernel o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/27] kern/13997 phk RLIMIT_NPROC works unadequately for jails o [1999/09/28] kern/14026 Many network connections get left in the f [1999/09/30] bin/14069 mikeh Buffer overflow in mail(1) o [1999/09/30] kern/14072 Rebooting in FreeBSD 3.3 wipes out known o [1999/10/02] kern/14096 parallel port -- ppi -- driver broken aft o [1999/10/04] misc/14121 resurfaced bug in rmt preventing remote d o [1999/10/04] kern/14123 lnc driver is not working f [1999/10/04] i386/14135 lpt1 nolonger exists after 3.2-RELEASE o [1999/10/10] misc/14254 [Fwd: clock(3) runs backwards! (fwd)] (fw f [1999/10/10] kern/14257 error 6: panic: cannot mount root (2) - d o [1999/10/12] i386/14282 Using FreeBSD 3.* ThinkPad 600E doesn't r o [1999/10/12] kern/14285 dillon NFS client appears to lose data o [1999/10/14] misc/14326 kerberos4 pam-related breakage in current o [1999/10/14] misc/14327 names used in netdb.h may conflict with n o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" o [1999/10/20] bin/14444 enigma command can't decrypt files encryp o [1999/10/21] i386/14446 Doesn't boot on Mobile Celeron o [1999/10/25] kern/14536 kernel panic on 64KB block size ufs files o [1999/10/26] kern/14546 SB128PCI work incorrect play wav-files un 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 o [1999/11/03] i386/14689 waitpid doesn't harvest child process whe o [1999/11/04] kern/14712 root has access to NFS mounted directorie o [1999/11/05] kern/14722 TCP connections hangs in FIN_WAIT_2 for > o [1999/11/05] bin/14729 murray when sysinstall is running as init it sho o [1999/11/07] bin/14782 ypbind can not bind to Solaris NIS master o [1999/11/10] kern/14812 de0 driver malfunctions in full-duplex o [1999/11/12] kern/14848 Frame Relay support, corrected a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested f [1999/11/14] kern/14890 ffs_valloc: dup alloc o [1999/11/15] misc/14895 portmap bug (when run with -v flag) o [1999/11/16] bin/14920 install(1) hangs when intalling files sam o [1999/11/17] i386/14946 mjacob rmt - remote magtape protocol o [1999/11/17] kern/14962 PnP doesn't detect AWE64 when PnP modem i o [1999/11/17] misc/14964 Network Interface Configuration Problem a o [1999/11/19] i386/15003 mdodd 3C574 (ep0) reads bogus ethernet address o [1999/11/23] bin/15070 vfprintf/cvt/__dtoa race condition in thr o [1999/11/24] i386/15074 Two different panics when running Linux b o [1999/11/24] kern/15075 Intel Etherexpress Pro timeouts when >1 c o [1999/11/24] kern/15086 Borked sscape drivers :) o [1999/11/25] kern/15089 mmap of files from 2K-block device failed o [1999/11/27] ports/15123 rse www/apache13-modssl has PREFIX problems f o [1999/11/30] misc/15190 crashing while in a multiplatform environ o [1999/12/01] kern/15204 systems panics when ktrace-ing o [1999/12/02] kern/15235 dillon Race conditions in pipe_write causes kern o [1999/12/12] bin/15450 The name of the tagfile is left in the pa o [1999/12/13] kern/15475 pppd(8) sets the Source Address field of o [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c o [1999/12/14] kern/15486 Attempt to write to a "write-prot" floppy o [1999/12/15] kern/15508 disk usage after "strip" is wrong o [1999/12/17] kern/15542 de suddenly stops working o [1999/12/17] i386/15548 Intel EtherExpress Pro/10+: Only 1024 byt o [1999/12/20] bin/15581 ftp(1) file completion does not work if s 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 o [2000/01/02] i386/15845 Driver for RealTek 8029 o [2000/01/03] bin/15877 Perl 5.00503 interpreter crashes with a s o [2000/01/04] i386/15879 System hangs while watching the tv and ap o [2000/01/04] i386/15897 Any fix for rpc.lockd on Free BSD 3.2 nfs o [2000/01/05] ports/15922 chuckr print/a2ps cannot find ogonkfied fonts [p o [2000/01/05] bin/15924 ndc restart don't preserve start options o [2000/01/07] i386/15961 System allows no keyboard input after flo o [2000/01/09] kern/16013 FreeBSD 3.3 sends ICMP reply to IP unicas o [2000/01/09] bin/16014 New cvs in -stable prints consistent erro o [2000/01/10] kern/16040 Read-only files under NFS are not seen as o [2000/01/12] kern/16090 mdodd No buffer space available o [2000/01/14] kern/16122 Incorrect SysV SHM segment accounting by o [2000/01/17] misc/16154 modem ring kills freebsd o [2000/01/17] bin/16155 cp -p does not preserve modification time o [2000/01/18] kern/16171 mmap(2) of /dev/kmem cause kernel panic o [2000/01/18] misc/16197 Installation problems on IBM Thinkpad 365 o [2000/01/19] i386/16214 Driver for Intel EtherExpress 16 is unrel o [2000/01/20] bin/16244 [PATCH] don't allow password re-use when o [2000/01/21] kern/16257 Kernel panic in sbdrop o [2000/01/21] i386/16269 smp dosen't work with >2 cpus on AMI Goli o [2000/01/21] bin/16271 vi has wrong len type in re_tag_conv() o [2000/01/22] kern/16299 nfs.ko can be unloaded when nfsd is runni o [2000/01/23] kern/16318 Fix for wrong interface when adding new r o [2000/01/23] alpha/16319 alpha No trailing newline in /usr/src/lib/libc/ o [2000/01/24] bin/16342 Problems with krb_realmofhost() and/or kr o [2000/01/24] ports/16343 reg bsd.port.mk cannot override make.conf. o [2000/01/25] i386/16349 Intel EtherExpress Pro/10+ card detection o [2000/01/25] bin/16353 rlogin encryption is broken on transmit s o [2000/01/27] ports/16396 reg libtool -export-symbols doesn't restrict o [2000/01/27] kern/16416 Hang on boot with SMP Dell 2400 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/20] conf/16832 amd.map options won't play with Solaris N o [2000/02/20] misc/16860 suggetion on installation process. o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/22] bin/16920 cdcontrol fails under 4.0-20000214-CURREN o [2000/02/23] kern/16937 ie0 not probed in -current of 2000-02-18 o [2000/02/23] conf/16948 murray Sysinstall/disklabel: bad partition table o [2000/02/23] ports/16955 markm 'pgp5' built with ports/security/pgp5 doe o [2000/02/25] ports/16983 ache procmail port not prefix clean o [2000/02/25] misc/16991 jhb booting install disk and USB o [2000/02/28] bin/17056 rshd does improper home directory check o [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm o [2000/03/01] conf/17117 Dial-up problems when using Kppp o [2000/03/02] bin/17134 problem with 3.0-RELEASE cron forgetting o [2000/03/03] kern/17142 4.0-CURRENT hangs in ex_isa_identify() wh o [2000/03/03] kern/17153 mjacob Qlogic Ultra3 cards seem to write very sl o [2000/03/05] kern/17208 3.4 Lock-up during file-completion o [2000/03/06] i386/17228 Installation floppies hang up on Compaq A o [2000/03/06] misc/17235 endless loop? harddrive corrupted? o [2000/03/06] ports/17237 hosokawa in samba suite smbclient -M worked incorr o [2000/03/10] misc/17310 wpaul NIS host name resolving may loop forever o [2000/03/11] ports/17313 ache wu-ftpd ports install invalid file owners o [2000/03/12] bin/17338 netstat shows down counting UDP delivery o [2000/03/12] i386/17346 APIC cannot be enabled without turning on o [2000/03/13] bin/17360 green [PATCH] Cleanup bug in pam_ssh o [2000/03/14] i386/17374 Archive QIC02 tape-unit device randomly h o [2000/03/15] kern/17393 kldload syscall allows the same kernel mo f [2000/03/16] kern/17403 cg CS4232 wont play w/newpcm o [2000/03/16] conf/17406 nis in /etc/host.conf breaks network prog o [2000/03/16] kern/17422 bde 4.0-STABLE: top: nlist failed o [2000/03/17] gnu/17433 libobjc locks mutex before deallocating i o [2000/03/18] bin/17482 ftpd(8) forget to close TCP port in passi o [2000/03/19] kern/17494 Two problems with the tun device 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 o [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg o [2000/03/21] kern/17542 cg random static with GUS PnP o [2000/03/22] misc/17562 PAS16 sound cycles o [2000/03/24] kern/17583 iedowse NETATALK code can corrupt mbuf free lists 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] kern/17634 Non-deterministic PnP sound device config o [2000/03/28] kern/17636 FreeBSD 4 uses network card driver dc whe s [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/29] kern/17680 Multiple crashes due to load in 4.0/5.0 e o [2000/03/30] kern/17695 cg Vibra16X sound card doesn't record audio o [2000/03/30] kern/17697 Boot floppy+local ftp upgrade from 3.4/in o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit o [2000/04/02] i386/17755 FTP install of 4.0 allocates too few inod o [2000/04/02] i386/17761 disk label editor in 4.0 deleted 3.4 part o [2000/04/04] i386/17800 bde [PATCH] problem with statclock initializa o [2000/04/06] kern/17829 The dc driver is seriously broken o [2000/04/07] kern/17842 Erratic user time reports for long runnin o [2000/04/07] bin/17843 ftpd fails to set cwd with mode 700 NFS m o [2000/04/07] kern/17844 Amd wedges every morning since I've upgra o [2000/04/08] kern/17863 Running DAP reboots computer o [2000/04/08] kern/17871 starting to accumulate undeletable direct o [2000/04/09] i386/17883 4.0-RELEASE panics during install. o [2000/04/10] kern/17895 stale unix domain connections o [2000/04/10] kern/17905 dillon 4.0-SNAP keep on crashing every 3 days o [2000/04/10] i386/17915 cg pcm0 direct DMA issues. o [2000/04/11] i386/17926 yokota psm device problems with apm resume o [2000/04/11] i386/17930 wpaul Patch to MFC WaveLAN WEP into 3.4-STABLE o [2000/04/11] kern/17936 panic: resource_list_alloc: resource entr 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/15] kern/18024 when printing through gs: panic: lockmgr: o [2000/04/17] misc/18065 mdodd FREEBSD 4.0 crashes on boot Compaq Prolia o [2000/04/19] i386/18089 4.0R install hangs on newfs or fsck o [2000/04/20] kern/18110 DC-390 SCSI BIOS setting no effect and IB o [2000/04/21] i386/18132 BTX dumps trying to boot w/ dedicated SCS o [2000/04/22] bin/18160 pppd does not hang up sometimes while sta o [2000/04/23] ports/18180 jmz xdm authorization fails with XDM-AUTHORIZ o [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] i386/18268 RTC BIOS error10 (memorysize) o [2000/04/28] kern/18285 the system froze when use scon -s 50 o [2000/04/30] kern/18315 System hang when doing back-to-back captu o [2000/04/30] kern/18316 close-together bt848/878 captures to file o [2000/05/02] kern/18345 cg sbc / pcm not fully recognizing AWE64 o [2000/05/02] kern/18348 yokota ::c_str() o [2000/05/19] bin/18678 Bug in libz o [2000/05/19] kern/18687 mrouted and IPDIVERT cause a panic o [2000/05/20] kern/18704 GLOB_ERR not handled correctly by glob() o [2000/05/22] bin/18742 times.allow field parsed incorrectly o [2000/05/22] kern/18757 dg [PATCH] fxp driver doesn't enable flow co o [2000/05/22] alpha/18768 wpaul Digital DE500-BA with "dc" driver doesn't o [2000/05/29] kern/18875 arpintr() problem o [2000/05/30] kern/18899 if_vr.c can't bridging properly when bpf o [2000/05/30] bin/18903 pkg_add deleted its own database o [2000/05/31] kern/18924 sysctl hw.bt848 crashes machine (bktr dri o [2000/05/31] conf/18925 No X Desktop Environments in 4.0 o [2000/05/31] kern/18932 Total loss of ethernet needing reboot. P o [2000/06/01] i386/18940 Reading from stdin using linux-jdk-1.2.2 o [2000/06/05] kern/19020 kernel reboots sometimes o [2000/06/05] misc/19025 Installer assumes /dev exists if target d o [2000/06/07] ports/19093 obrien problem with mail/muttzilla o [2000/06/08] kern/19121 IPv4 multicast does not work without rout o [2000/06/08] misc/19125 Undefined symbol `_poll' referenced from o [2000/06/12] bin/19231 quota/mount commands inconsistency o [2000/06/13] ports/19238 will sgmltools1 o [2000/06/13] i386/19245 -fexpensive-optimizations buggy (even wit o [2000/06/14] kern/19256 in devicedriver cy.c make_dev (..) probl o [2000/06/14] ports/19281 billf Error in ucd-snmp port with tkmib o [2000/06/16] kern/19347 top, CPU and SMP-problem in new kernel o [2000/06/17] bin/19357 swap info incorrect after using sysinstal o [2000/06/18] kern/19363 Do allow processes know about their file o [2000/06/19] bin/19375 makekey accepts only 8-byte password o [2000/06/19] misc/19376 ncurses alters buffering of stdin/stdout f [2000/06/19] kern/19389 Panic caused by sendfile(2) o [2000/06/19] bin/19393 programs using strftime () dump core if R o [2000/06/20] kern/19402 Signals 127 and 128 cannot be detected in o [2000/06/20] bin/19405 telnetd sends DO AUTHENTICATION even if a o [2000/06/23] conf/19461 X authentication doesn't work off the CD o [2000/06/23] kern/19465 SYNC_CHACHE PROBREM: NEWTECH NDA20128A o [2000/06/23] kern/19479 processes stuck in 'ffsvgt' and 'FFS no' o [2000/06/23] kern/19482 Upgrade from 4.0-RELEASE to 4.0-STABLE ca o [2000/06/25] kern/19499 EtherExpress 16 is not probed o [2000/06/25] i386/19508 pci bus not probed for pci ethernet card o [2000/06/27] conf/19542 Problem with Proxy o [2000/06/28] conf/19569 stock IPFW rules have subtle udp hole o [2000/06/30] kern/19603 luigi 20 ethernet interfaces not compatible wit o [2000/06/30] docs/19604 steve Web query interface doesn't search or Ori o [2000/07/02] kern/19654 wpaul 20 dc ports in one machine (5x 4port card o [2000/07/03] i386/19662 kernel panic after too many socket freed o [2000/07/03] kern/19672 dillon contigmalloc1() oddity for large alignmen o [2000/07/03] misc/19673 dhclient-script will not always set the h o [2000/07/05] ports/19711 portmgr bsd.port.mk and autoconf are conflict o [2000/07/05] kern/19714 dillon swap_pager_getswapspace: failed o [2000/07/06] i386/19737 Cannot build a profiled kernel; load fail o [2000/07/07] bin/19773 [PATCH] telnet infinite loop depending on o [2000/07/09] kern/19814 marcel Oracle8i installer triggers problem in th o [2000/07/10] i386/19820 Installation of Lotus Notes 5.0 for Linux o [2000/07/12] kern/19875 A new protocol family, PF_IPOPTION, to ha o [2000/07/12] kern/19880 Problem with configuring RS-232 multiport o [2000/07/13] misc/19909 dillon Problem with NFS client in 4.0-STABLE o [2000/07/15] misc/19951 jmz moused has problems with XFree86 o [2000/07/17] misc/19994 sscanf() fails on 64-bit operations o [2000/07/18] kern/20016 jasone pthreads: Cannot set scheduling timer/Can o [2000/07/18] docs/20028 doc ASCII docs should reflect tags o [2000/07/19] kern/20040 msmith Toshiba 2775 hangs after pcib0 driver is o [2000/07/22] kern/20115 cg pcm0 doesnot work on Panasonic Let's note o [2000/07/25] misc/20172 byacc 1.9 fails to generate $default tran o [2000/07/26] bin/20194 amd doesn't provide directories automatic o [2000/07/27] kern/20213 NFS and Linuxulator issues in PR kern/194 o [2000/07/27] kern/20217 darrenr IPF default block and inclusion in rc.net o [2000/07/27] bin/20220 unable to Ctrl-C (quit) when using "more" o [2000/07/27] kern/20234 green panic(): lockmgr: pid 259, not exclusive o [2000/07/28] bin/20259 des fetch(1) confused when redirected from ht o [2000/07/29] conf/20282 murray 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 obrien 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] 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] bin/20591 src/usr.bin/file/MAINT & README & file.1 o [2000/08/14] kern/20609 dillon panic: vm_fault: fault on nofault entry, o [2000/08/15] kern/20619 arpintr o [2000/08/15] kern/20631 kernel panics on ifconfig if_le f [2000/08/15] kern/20632 stacking mount_null causes an error: moun o [2000/08/15] bin/20633 fdisk doesn't handle LBA correctly o [2000/08/16] bin/20646 dwmalone [PATCH] /bin/cp -p whines on set[ug]id im f [2000/08/17] i386/20685 fbsd 4.1-stable crashed when compiling st 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 o [2000/08/20] bin/20725 Raw floppy writes fail for partial bytes. o [2000/08/20] kern/20734 n_hibma USB mouse detaches and never reataches f [2000/08/22] bin/20779 assar junk pointer error causes kpasswd to fail o [2000/08/24] ports/20831 torstenb Autoconf Port: Bug introduced by patch-ag o [2000/08/25] gnu/20835 markm Errno.pm is lost in perl system o [2000/08/26] misc/20861 jasone libc_r does not honor socket timeouts o [2000/08/28] gnu/20912 obrien gdb does not recognise old executables. o [2000/08/30] bin/20952 ftpd doesn't honor account expiration tim o [2000/08/31] kern/20958 mdodd ep0 lockup with ifconfig showing OACTIVE o [2000/09/01] ports/20986 reg Mozilla M17 installs incorrectly o [2000/09/06] i386/21087 tanimura ed driver incorrectly fails probe for ISA o [2000/09/07] misc/21089 vi silently corrupt open file on SIGINT w o [2000/09/08] kern/21118 luigi Multiple problems in ipfw's stateful code f [2000/09/08] ports/21126 ports httpd warnings regarding attempts to free o [2000/09/08] kern/21131 Floppy causing cold boot in -STABLE o [2000/09/08] kern/21132 pirzyk setting kern.hostid to 2887705710 fails. o [2000/09/08] bin/21133 sail driver dies f [2000/09/08] kern/21139 ken IBM DNES drives need 'quirk table' entry. o [2000/09/09] kern/21143 `#define schedsofttty' et al. should not o [2000/09/09] ports/21146 green [patch] openssh with LOGIN_CAP don't setu o [2000/09/09] bin/21152 @monthly entry in crontab is run every da o [2000/09/09] kern/21155 Load average (either with uptime both top o [2000/09/10] kern/21162 panic in ffs_softdep.c: handle_workitem_f 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 o [2000/09/11] ports/21210 dima acroread port missing lib 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] kern/21270 Kernel compilation errors and dies when c 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] i386/21297 kernel panic TRAP 18 during kern.flp inst o [2000/09/15] misc/21300 Install CD-ROMs don't give users enough r 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 o [2000/09/18] misc/21384 pcm driver has static in recorded audio o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites o [2000/09/20] kern/21424 Blocking issue while regenerating aliases o [2000/09/20] kern/21429 box reboots with panic: pipeinit: cannot o [2000/09/20] gnu/21433 obrien 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 marcel Linux compatability mode should not allow o [2000/09/21] ports/21464 marcel linux_base port installs insecure glibc r a [2000/09/25] conf/21540 bp installworld panics for diskless clients o [2000/09/25] ports/21548 kbyanc libcoro.a (ports) should use MAP_STACK wh o [2000/09/26] i386/21559 rnordier BTX loader sometime show registers o [2000/09/27] conf/21593 Whither cons25, or, cons25 causing intero f [2000/09/27] bin/21603 green Can't change user passwords on 4.1.1-STAB o [2000/09/28] i386/21624 trap in gusc_attach o [2000/09/28] kern/21625 yokota kernel hangs if SC_NO_FONT_LOADING define o [2000/09/28] kern/21631 4.1.1 Release and Stable don't detect my o [2000/09/28] bin/21637 [telnet] No address associated with hostn o [2000/09/28] kern/21642 Compaq Netelligent 10/100 card (TI Thunde o [2000/09/29] kern/21653 I need a AD1816 Driver o [2000/09/29] bin/21654 Re: nvi's -c flag does no do what it is d o [2000/10/01] kern/21674 Fujitsu MO drives M2513A don't like the s o [2000/10/01] kern/21688 Kernel crash with Adaptec AAA-133 and ahc o [2000/10/02] misc/21701 murray Keymap selection menu broken on initial i o [2000/10/02] ports/21714 sobomax audio problem with nil o [2000/10/02] misc/21716 The site search results *suck*. o [2000/10/04] ports/21756 adrian errors in Squid-2.3.4's configure prevent o [2000/10/04] ports/21761 adrian Re: errors in Squid-2.3.4's configure pre o [2000/10/05] kern/21771 Fix for sppp and Cronyx drivers update o [2000/10/05] gnu/21779 patch(1)'s bug of new file creation o [2000/10/06] kern/21791 Hang on FIN_WAIT_2 a [2000/10/06] kern/21808 [patches] msdosfs incorrectly handles vno o [2000/10/07] i386/21824 bt driver no longer attaches due to chang o [2000/10/07] kern/21827 mount causes freebsd 4.1.1 to reboot o [2000/10/09] kern/21860 The fix to TCP_ISSINCR after the bugtraq o [2000/10/09] kern/21869 Compiling a a.out kernel on FreeBSD 4.0 o [2000/10/09] bin/21877 green [PATCH] DSA support for pam_ssh o [2000/10/10] kern/21898 If options NFS is not in the kernel, moun o [2000/10/11] bin/21918 Revision 1.5 provides incomplete fix for o [2000/10/12] misc/21940 Modem Power-Off kills system o [2000/10/12] kern/21946 vm_fault when (accidentally) attempted to o [2000/10/13] kern/21965 Running ldconfig (linux binary) from ld-1 o [2000/10/15] misc/21998 green ident only for outgoing connections o [2000/10/15] i386/22006 quotacheck halt s [2000/10/16] gnu/22025 markm perl does chmod in installworld o [2000/10/16] kern/22029 mckusick use of softdependencies leads to major fi o [2000/10/17] kern/22063 brian bpf when used with the select system call o [2000/10/18] bin/22105 /usr/src/bin/sh - Permission denied when o [2000/10/19] misc/22111 Install 4.1.1 o [2000/10/19] kern/22142 securelevel does not affect mount o [2000/10/21] kern/22200 4.1.1-RELEASE can't mount CDROMS (negativ o [2000/10/22] bin/22212 skeyaccess(3) doesn't for primary group o [2000/10/22] kern/22225 Trying to build a CURRENT snapshot on 4.1 o [2000/10/23] kern/22265 Suspend only possible once after reboot o [2000/10/24] misc/22283 when attempting to boot from CDROM to ins o [2000/10/24] misc/22284 Change (SunOS) NIS passwd error o [2000/10/25] bin/22286 marcel siglongjmp does not properly restore the o [2000/10/25] conf/22287 binary upgrade install to 4.1.1 does not o [2000/10/25] bin/22291 getcwd() fails on recently-modified NFS-m o [2000/10/26] i386/22315 Cannot reboot or power-off the machine o [2000/10/26] ports/22328 mi new port -- print/ttf2pt1 o [2000/10/29] ports/22403 portmgr "make readmes" hangs if category director o [2000/10/30] ports/22416 reg mozilla segfaults on current 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 o [2000/10/31] kern/22460 PCMCIA card using ed driver temporarily f o [2000/11/01] bin/22482 The sysctl (8) command uses strtol on inp o [2000/11/01] bin/22489 mass IP aliasing via ifconfig broken o [2000/11/02] kern/22532 [patch] /dev/dsp is sometimes busy when n o [2000/11/03] misc/22588 scp hangs when using Lucent 802.11b card f [2000/11/03] kern/22594 NFS can't handle asymmetric server routin o [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 o [2000/11/06] kern/22642 Load average stuck not changing o [2000/11/06] kern/22643 Cannot compile kernel with support for Gr o [2000/11/06] bin/22647 o [2000/11/08] bin/22685 Repairing a directory hard link. o [2000/11/08] i386/22708 fpe in healthd when it starts o [2000/11/08] i386/22712 sysinstall makes wacky keymap choices o [2000/11/09] bin/22727 disklabel crashes if the number of partit o [2000/11/10] bin/22737 syslog gets spammed with /kernel: arp_rtr o [2000/11/12] ports/22802 jseger convert in ImageMagic does not work in co o [2000/11/13] kern/22826 marcel Memory limits have no effect in linux com o [2000/11/14] bin/22846 Routed does not reflect preference of Int o [2000/11/15] kern/22862 ncr probe fails with CACHE TEST FAILED: ? o [2000/11/15] kern/22866 Packets send on INET6 sockets compatible o [2000/11/15] kern/22874 cg newpcm CS461x sound problems o [2000/11/15] kern/22877 installation panic if ep0 presents o [2000/11/16] kern/22896 When kernel boots uhci fails o [2000/11/17] kern/22926 kernel 4.1-RELEASE, 4.1.1-RELEASE (floppy o [2000/11/18] kern/22942 Problem with ext2fs support o [2000/11/18] kern/22943 marcel Problem with linux emulation o [2000/11/18] i386/22944 isa_dmainit fails on machines with 512MB s [2000/11/18] bin/22945 tftp (4.1.1-RELEASE) appears broken a [2000/11/18] kern/22947 jon IBM 10/100 EtherJet Cardbus (Xircom X3201 o [2000/11/18] kern/22951 failed drive causes panic with HPT370 RAI o [2000/11/19] i386/22969 4.1.1 stable kernel cannot find console o [2000/11/20] conf/22998 darrenr ipf fails to load the rules if IPFILTER i o [2000/11/22] i386/23039 disklabel editor couldn't create partitio o [2000/11/23] ports/23041 jmz XFree86 4.0.1 crashes when switching to a o [2000/11/23] ports/23054 olgeni Re: maintainer update: security/nessus su o [2000/11/23] gnu/23058 ncurses: tgoto_internal() ugliness o [2000/11/24] alpha/23064 jkh Alphas do not boot if `a' (/) partition i o [2000/11/24] misc/23069 jkh Compat22 does not work until you reboot o [2000/11/24] ports/23080 jmz fr keymap don't work correctly o [2000/11/25] misc/23094 dd The PR system has no way to let committer o [2000/11/25] bin/23098 If installing on a serial console, enable o [2000/11/26] i386/23108 Boot defaults to wd(4) devices rather tha o [2000/11/26] misc/23120 '|more' takes up to 100% system resources f [2000/11/26] ports/23122 sobomax programs requiring glib13 fail in configu o [2000/11/26] ports/23125 ports Successful emulation of StarOffice depend o [2000/11/27] ports/23140 pst GNU id-utils port is out-of-date o [2000/11/28] misc/23161 tcsh execs /bin/ls --color 80 char. but u o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ o [2001/02/14] ports/25102 ports depends on 'wrong' openldap o [2001/02/14] conf/25105 green S/Key support is broken in sshd o [2001/02/16] bin/25132 sigprocmask problem with pthread o [2001/02/16] kern/25136 Fatal trap 12: page fault while in kernel o [2001/02/16] bin/25153 kdump does not finish displaying data s [2001/02/16] ports/25155 ports `ASSERTION FAILED' errors with security/p a [2001/02/19] kern/25201 imp pccard event and syscons beep duration de o [2001/02/19] ports/25205 greid mail/pop3lite port update o [2001/02/19] kern/25213 Bus abstraction interface doesn't allow p o [2001/02/19] i386/25214 Installing 4.2, and after the initial set o [2001/02/20] i386/25236 Intel 82559 is not working behind a DEC/I o [2001/02/20] bin/25244 termcap and printcap interference o [2001/02/21] kern/25245 mounting NFS to/from same host + activity o [2001/02/21] kern/25248 bde sys/user.h needs sys/param.h, but doesn't o [2001/02/21] bin/25250 segfault on tar Ixvf o [2001/02/21] kern/25255 keyboard response very slow with PCMCIA E f [2001/02/21] kern/25261 gibbs ahc0 no active SCB errors when booting of a [2001/02/21] kern/25266 chris fdesc file system in -STABLE locks up dur 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/24] kern/25344 ipfilter and ppp insecure in 4.2-Stable o [2001/02/24] kern/25346 Some interrupts not delivered on Dell Wor o [2001/02/25] ports/25374 ports A new port math/atlas highly optimized BL o [2001/02/26] bin/25403 darrenr ipfilter: enable ipv6 and STATETOP in 4.2 o [2001/02/26] misc/25404 sys/cdefs.h does not contain definitions o [2001/02/27] kern/25421 jesper route structures are being leaked. o [2001/02/28] bin/25461 jkh sysinstall's fdisk and disklabel don't wo o [2001/02/28] kern/25464 if_xl.so kld does not work with "options o [2001/03/01] kern/25476 [PATCH] The syscall oldgetkerninfo can re o [2001/03/02] ports/25492 ports patche of CLISP 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/05] bin/25561 [PATCH] ksrvtgt contains unsubstituted pa 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/09] kern/25640 DLink DFE-530TX+ cards are not recognized o [2001/03/10] kern/25650 le nic driver causes kernel panic f [2001/03/10] conf/25676 FBSD >= 4.0 does not recongnize NIC card o [2001/03/11] i386/25693 VGA driver on Current not found o [2001/03/11] misc/25694 change passwd on SunOS yp server o [2001/03/12] kern/25755 cg kernel hangs when loading emu10k1 sound d 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 sysinstallSecurity hole in anonymous FTP setup scri o [2001/03/17] bin/25885 telnet -a off still uses SRA authenticati o [2001/03/17] bin/25886 cgetset(3) doesn't get cleared when switc o [2001/03/18] i386/25889 FDISK lost a partition ! o [2001/03/18] misc/25899 As I have NAS storgae more than 1.2 TB wi f [2001/03/18] kern/25900 system crach and reboot when use mount_cd 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] kern/25953 sos Attempt to access CD changer results in p o [2001/03/20] ports/25958 jmz Xfree86's savage and vesa drivers can pan o [2001/03/20] kern/25959 pcn driver disables nic after kernel is l o [2001/03/21] i386/25968 /usr/src/lib/libcrypt/../libutil/property o [2001/03/22] kern/25986 Socket would hang at LAST_ACK forever. f [2001/03/22] kern/25992 System hangs when read-only floppy has be o [2001/03/22] misc/26002 n_hibma Poor read/write performance on uhci USB c a [2001/03/22] bin/26010 ache tar(1) core-dumps on '-I file' 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/23] misc/26044 vsprintf calls __swsetup, then __smakebuf 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/26] ports/26114 bmah [PATCH] pkg_version support for wildchart o [2001/03/26] misc/26132 keyboard hangs during install from the cd o [2001/03/27] kern/26142 Unlink fails on NFS mounted filesystem o [2001/03/27] kern/26161 Kernel Panic on Dual Processor System dur o [2001/03/28] kern/26171 not work Linux-emulator, but hi is work i o [2001/03/28] misc/26185 4.2-R kern.flp won't boot on PS/2 o [2001/03/29] conf/26203 No CODA devices in MAKEDEV o [2001/03/29] ports/26207 ports Selecting KDE in sysinstall as GUI env do f [2001/03/29] bin/26209 imp pccardd will not recognise any pc cards o o [2001/03/30] i386/26216 alloca() couldn't detect thread stack lim o [2001/03/30] ports/26237 ache Apache 1.3.19 segfaulting in ap_get_local o [2001/03/31] i386/26261 silo overflow problem in sio driver o [2001/03/31] ports/26262 ports jgnat is broken o [2001/04/01] conf/26275 darrenr ipfilter_enable in rc.conf does not load o [2001/04/02] kern/26304 pcm only plays left channel in FreeBSD 4. 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 o [2001/04/04] i386/26344 3Com 3C509 EtherLink III Problem. o [2001/04/04] misc/26356 Large copy of files to the machine causes o [2001/04/04] kern/26361 5.0-04022001-CURRENT kernel panic on kern f [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- o [2001/04/06] i386/26382 FreeBSD Bootable CDROM won't boot on IBM o [2001/04/06] kern/26384 dc driver hangs in dc_rxeof o [2001/04/08] bin/26426 vi o [2001/04/08] kern/26430 cg -CURRENT panics on cat /dev/dsp or cat /d o [2001/04/09] ports/26464 ports Citrix client no longer reads files in lo o [2001/04/09] kern/26466 devfs panics 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/15] ports/26607 adrian squid port don't work corretly when compi o [2001/04/16] kern/26613 ethernet vr0 hangs f [2001/04/18] ports/26679 sobomax make on qpopper4 fails because it's using o [2001/04/19] kern/26704 AHA-2940[UW] gives MPARERR on cold boot ( f [2001/04/21] ports/26751 ports gnucash from FreeBSD package doesn't seem o [2001/04/22] gnu/26771 cvs checkout bug with existing val-tags a 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 dump with h flag takes a very long time o [2001/04/25] ports/26848 sobomax jre port core dumps o [2001/04/25] bin/26869 vi(1) crashes in viewing a file with long o [2001/04/26] kern/26877 cg loading snd_emu10k1 module causes lockup o [2001/04/26] kern/26878 Kernel panic in nfs subststem (vrele: neg o [2001/04/26] kern/26880 Unexpected busfree err w/ Adaptec 19160 a o [2001/04/27] ports/26891 ports Star Office 5.2 doesn't run after install o [2001/04/27] ports/26894 ports omniORB 3.0.3 servers die when using Free o [2001/04/27] kern/26896 Kernel panic during ktrace (vrele: negati o [2001/04/27] misc/26897 jkh 4.3R sysinstall fails to create swap part o [2001/04/27] i386/26903 jkh Cannot use DHCP from /stand/sysinstall ne o [2001/04/27] ports/26909 chuckr a2ps cannot handle long hostnames o [2001/04/28] ports/26912 jmz XFree86-4 packing list is fubar o [2001/04/28] kern/26920 imp PCI autoconfiguration of USB, dc ether, a o [2001/04/28] bin/26924 jkh sysinstall has problem parsing "dists=" f o [2001/04/28] misc/26933 jkh sysinstall - fdisk does not properly "dan o [2001/04/29] kern/26953 adter the installation is over it's make o [2001/04/29] ports/26961 clive update port: chinese/tin 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] i386/27009 XFree86 4.0.3_3 fails to start on GeForce o [2001/05/01] bin/27016 ipnat should not require existence of ipf o [2001/05/01] kern/27020 FreeBSD 4.3RC compiled with an SMP kernel o [2001/05/02] kern/27044 remounting a r/w filesystem read-only cau o [2001/05/02] ports/27052 reg libtool port broken in 4.3 RELEASE o [2001/05/03] ports/27056 will kscd installed by x11/kde2 crashes on XFr o [2001/05/04] ports/27073 ports devel/jakarta-ant doesn't work out of the o [2001/05/04] bin/27080 sshd may mis-parse the authorized_keys fi o [2001/05/04] bin/27086 green OpenSSH does not set X11 forwarding o [2001/05/04] kern/27087 FreeBSD 4.3-RELEASE does not recognize Gi o [2001/05/04] bin/27088 syslogd(8) doesn't create log files if th a [2001/05/05] ports/27102 ports lzo-1.07 port broken o [2001/05/06] bin/27153 session settings in pam.conf are ignored o [2001/05/06] bin/27154 login(1) accesses pam_getenvlist() *after o [2001/05/07] i386/27197 4.3-STABLE make buildworld fails at perl a [2001/05/08] ports/27202 dougb mail/pine sucks rocks when saving over NF o [2001/05/08] ports/27203 ports mail/cclient sucks rocks when saving over o [2001/05/08] ports/27204 ports rplayd complains about pcm mixer device o 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 f [2001/05/10] kern/27253 des linprocfs does not implement the loadavg o [2001/05/10] kern/27262 process won't be terminated after CPUTIME o [2001/05/12] kern/27287 poll(2) returns 0 when POLLIN-ing ordinar o [2001/05/13] misc/27303 Error during Commit: Unable to make devic o [2001/05/15] ports/27331 andreas GhostScript6 needs pdf_sec.ps which canno f [2001/05/15] kern/27350 des /compat/linux/proc/meminfo has size overf o [2001/05/15] ports/27358 ports Naming scheme for JDK ports (java) o [2001/05/16] kern/27383 iedowse Client NFS mount hangs with multihomed se o [2001/05/16] misc/27384 SCSI Hardrive bios of COMPAQ Proliant is o [2001/05/16] kern/27395 Problems with Qlogic 2200 FC card. The sy o [2001/05/16] misc/27400 4.3 install hangs because it is looking f o [2001/05/16] ports/27402 tegge Static linking problems with time functin o [2001/05/17] i386/27404 FreeBSD-4.3 crashes in VMware o [2001/05/17] ports/27419 jhb E-FancyLauncer clones itself over and ove o [2001/05/19] kern/27460 Bad entries for EPSON 1240U scanner 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/27504 bp Probelms with mfs in 4.3 Stable o [2001/05/21] misc/27510 Alcatel Speed Touch ASDL Modem - USB 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] bin/27593 sos-bugs burncd msinfo returns wrong info at more s [2001/05/23] kern/27601 infinite loop at end (?) of ifnet list .. o [2001/05/23] docs/27605 doc Cross-document references () f [2001/05/24] bin/27630 mktime failure. o [2001/05/25] ports/27632 reg SNNSv4.2 port has known and fixable bug o [2001/05/25] bin/27636 dwmalone inetd's internal "auth" service exploits o [2001/05/25] ports/27645 portmgr PKG_IGNORE_DEPENDS for X does not work o [2001/05/26] kern/27661 >1000 ipfw rules and heavy traffic crash a [2001/05/26] kern/27674 sos IDE Interrupts disabled on resume o [2001/05/27] kern/27694 cg Panic in csa(4) o [2001/05/28] ports/27705 ports The p5-Tcl port is broken due to wrong in f [2001/05/28] i386/27711 panic: ffs_write: type: 0xc39b2fc9 9 (0,5 o [2001/05/28] ports/27713 ports ports: /usr/ports/japanese/linux_locale: o [2001/05/29] i386/27729 the ls120 device "afd" does not show up u o [2001/05/29] ports/27739 ports Broken Port: textproc/pspell-ispell -- co o [2001/05/29] kern/27753 ATA driver in FreeBSD 4.2 and later no lo o [2001/05/29] kern/27759 linux sysinfo system call is needed for m o [2001/05/30] ports/27769 ports New port: p5-XML-LibXSLT - Interface to G o [2001/05/30] kern/27782 darrenr ipf packet munging bug using "to" option o [2001/06/01] misc/27810 rpc.statd can loop a [2001/06/01] kern/27812 sos Some weird ATA[PI] problem ? o [2001/06/01] kern/27826 [PATCH] correct minor bugs in an(4) ifcon o [2001/06/03] ports/27865 ports mod_python port is broken o [2001/06/04] docs/27870 mail-list subscribtion method change. o [2001/06/04] ports/27875 ports invoked on boot, SIGHUP is delivered and o [2001/06/04] misc/27880 select fails to return incoming connect o [2001/06/04] ports/27883 bp shares mounted by the smbfs-1.4.1 port ar o [2001/06/05] misc/27893 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/06] kern/27905 ipf unable to insert rule of 'log' is use o [2001/06/06] bin/27913 swapinfo/pstat -s does not work. o [2001/06/06] bin/27922 imp FreeBSD-SA-01:40 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/07] ports/27949 ports databases/postgresql7 dependency fix o [2001/06/08] ports/27965 gnome Mozilla's Composer crashes upon startup o [2001/06/08] ports/27980 dirk lyx-1.1.6.1 depends on xpm-3.4k, but it i o [2001/06/09] bin/27988 [PATCH] let pam_ssh.so explicitly start s o [2001/06/09] bin/27990 ypbind uses memory after freeing it o [2001/06/09] kern/27995 src/sys/pci if_pcn.c revision 1.21 resp. o [2001/06/11] ports/28030 ports VMware requires block device for linux /d 1000 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1995/01/11] i386/105 Distributed libm (msun) has non-standard s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p o [1995/10/03] kern/765 asmodai umount -f can`t umount a NFS filesystem i s [1995/11/20] kern/831 one minor complaint about the kernel visu a [1995/11/30] bin/854 swapinfo shows incorrect information for 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/09/08] bin/1589 msmith [PATCH] ftp fails to flush output o [1996/09/14] gnu/1611 phk groff should use "system-wide" papersize s [1996/10/13] misc/1791 tegge syslimits.h does not allow overriding def o [1996/10/20] bin/1849 obrien gdb sets library breakpoints on the wrong s [1996/11/04] gnu/1961 [PATCH] uucp logging files are in /var/sp 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 obrien [PATCH] Ada specs not being compiled into a [1996/12/21] bin/2265 guido su(1) does not call skeyaccess() 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 o [1997/02/02] gnu/2637 tar dumped core with -g option. a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [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) o [1997/03/31] gnu/3157 obrien Patches to gas and gdb to support MMX ext o [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO o [1997/04/07] misc/3225 [PATCH] uucpd.c should normalize host nam o [1997/04/09] bin/3242 incorrect prototype for initgroups o [1997/04/14] bin/3284 [PATCH] symorder(1): -t option doesn´t wo o [1997/04/29] bin/3416 ibcs emulation problems a [1997/05/08] gnu/3552 asmodai the -L option of tar does not work proper o [1997/05/16] bin/3608 Telnet in linemode will break apart long o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) o [1997/06/09] bin/3826 KerberosIV sometimes hangs rcp o [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/15] kern/3879 peter Can't export mounted ext2fs via NFS o [1997/06/19] misc/3912 ctags(1) cannot trace some macro correctl 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/06/27] kern/3968 Hardware probes die on Peak SBCs. f [1997/07/07] kern/4051 pppd connect 'chat ...' broken o [1997/07/18] bin/4116 davidn Kerberized login as .root fails to s [1997/07/24] bin/4157 [PATCH] netstat atalk output should print o [1997/07/26] bin/4172 des suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk s [1997/07/31] bin/4204 [PATCH] ac printed wrong report about tty o [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/12] misc/4285 SDL RISCom/N2 (ISA) 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 sheldonh 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 o [1997/09/13] kern/4528 processes hang if the mount_portal proces o [1997/09/21] kern/4597 Patch to pass NPX status word in signal c o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 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/22] bin/4828 ypxfr makes false assumption about RPC ca o [1997/10/24] kern/4845 Boot complains about disk slices in FAT p o [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/11] kern/5009 ibcs2 emulation o [1997/11/13] bin/5031 gad lpr does not remove original file if -s i o [1997/11/14] kern/5048 dillon Calling shutdown(fd,1) multiple times wil o [1997/11/20] kern/5108 dillon pmap_release panics with 'freeing held pa o [1997/11/20] kern/5110 dillon kernel crash & core in pmap_testbit durin 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/11] kern/5275 dillon [PATCH] Added volume (barcode) support to 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 s [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde 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/24] i386/5559 imp PC-Card joystick ports were not supported o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 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/06] kern/5672 dillon Crash from scsi aborted command 'Overlapp o [1998/02/09] kern/5689 phk sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] bin/5712 /bin/chio code cleaup and option added o [1998/02/14] bin/5745 [PATCH] Add /usr/local/share/mk to defaul o [1998/02/18] i386/5784 ibcs2 emulation not handling ioctl(..FION o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT o [1998/03/03] bin/5912 kinit exits if no user name specified o [1998/03/06] kern/5931 dma errors in syslog with GUS-max 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 o [1998/03/13] bin/6000 kadmin ank uses bad default expiration of o [1998/03/15] bin/6015 indent(1) breaks source with backslash ne f [1998/03/28] bin/6161 assar 2.2.6 kerberos servers are awfully visibl o [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/03] bin/6202 No way to detect removable media. o [1998/04/06] bin/6234 ypserv -d is broken o [1998/04/14] kern/6296 IP_HDRINCL sockets force header fields to s [1998/04/15] bin/6314 [PATCH] /usr/sbin/ac modification o [1998/04/16] kern/6318 pppd does not update wtmp on hangup o [1998/04/16] misc/6320 Sometimes nohup isn't good enough. o [1998/04/17] bin/6332 bde /usr/include/time.h doesn't compile with o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 Kernel version strings need to relate to a [1998/04/27] kern/6432 IFF_NOARP does not affect ethernet interf s [1998/05/05] bin/6521 nbm [MAYBE PATCH] "rmdir -p x/y/z/" fails o [1998/05/07] kern/6544 luigi Only get one channel through sound card o [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/12] misc/6612 will bsd.man.mk can't handle man pages with ": f [1998/05/13] kern/6623 non-root user can crash system if disconn o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje o [1998/05/15] kern/6651 peter Possible NFS deadlock clue s [1998/05/17] kern/6668 babkin [PATCH] new driver: Virtual Ethernet driv a [1998/05/26] misc/6759 phk buggy code in libdisk.a's disk.c 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 o [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/13] misc/6936 phk sysinstall: install from MS-DOS MO divece 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 o [1998/06/25] docs/7065 wosch FreeBSD webpages -> applications, port br s [1998/06/28] i386/7100 integrate pcvt configuration into the /et s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % s [1998/07/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, s [1998/07/10] misc/7232 murray 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). o [1998/07/13] ports/7268 portmgr MASTER_SITE_OVERRIDE works more better o [1998/07/14] kern/7282 some old and rarely used drivers have app o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m a [1998/07/19] bin/7324 wosch Suggestions for minor modifications to ad a [1998/07/31] docs/7456 doc dialog(3) man page outdated 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/08/28] misc/7771 Debugging putenv/getenv o [1998/09/03] bin/7828 Add a command line option to cp to make i o [1998/09/05] kern/7837 rwatson patches to add a p_auth extension pointer 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/17] bin/7962 /usr/bin/ee prompts "save changes" when f o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re o [1998/09/19] kern/7990 patch - teach kernel about RB_POWEROFF fl o [1998/09/20] bin/7998 jkh pkg_add seems to have unneeded umask s [1998/09/21] kern/8015 nbm [patch] Some sysctl descriptions for the o [1998/09/26] bin/8060 install ignores the +X mode flag o [1998/09/27] conf/8061 profiling utilities seperate from profili 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) o [1998/10/12] bin/8295 order of options in printcap causes some f [1998/10/13] conf/8303 3.0-981009-BETA can't make swap device on o [1998/10/16] misc/8346 Strftime can't generate ISO-8601 timezone o [1998/10/16] kern/8349 [PATCH] Changer definition for SureStore o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/24] bin/8438 ex/vi: Error: tcsetattr: Interrupted syst o [1998/10/27] i386/8474 repquota does not pick up NIS information o [1998/10/28] bin/8479 Final \'s in /etc/exports did not work in o [1998/10/30] kern/8498 Race condition between unp_gc() and accep o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> o [1998/11/07] kern/8589 incorrect spelling for "dependency" and " o [1998/11/08] kern/8604 ps u gets confused about process start ti o [1998/11/09] bin/8631 pci interrupts are shown on EISA only mac o [1998/11/09] kern/8633 TCP packet via SLIP/CSLIP containing this o [1998/11/12] bin/8666 X blocks serial port with getty process o o [1998/11/19] misc/8764 pwd_mkdb is slow on many users o [1998/11/19] docs/8765 dwhite some suggested text for describing passwo o [1998/11/27] i386/8867 murray /stand/sysinstall core dumps (signal 11) o [1998/11/30] bin/8913 negative time values for csh 'time' built o [1998/12/01] kern/8925 options kern file needs AWE_DEFAULT_MEM_S 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 o [1998/12/22] bin/9176 dillon placemark to split mount_ufs out of mount o [1998/12/24] bin/9188 telnet gets stuck in ttydrain() 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 o [1999/01/04] i386/9319 D-Link DE-528CT poor performance o [1999/01/05] bin/9333 timestamp dump's progress o [1999/01/08] kern/9392 Alternate system clock OR kernel stats cl o [1999/01/13] kern/9474 "comcontrol rescan 0:8:0" hangs, causes o o [1999/01/14] bin/9494 mikeh new option to prevent mail from sending m o [1999/01/19] kern/9570 dfr ed(4) irq config enhancement o [1999/01/19] bin/9573 ksrvtgt not working o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi f [1999/01/25] kern/9689 panic in sbdrop(kern/uipc_socket2.c) o [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. o [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 luigi Generic AD1816 sound suport in Luigi's pc s [1999/01/30] kern/9791 enhancement for netinet/ip_icmp.c to cont 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/19] bin/10158 Reference to ncheck in quot(8) o [1999/02/25] docs/10240 wosch We need a script which check if our web m f [1999/02/26] bin/10274 will make does not understand "lib(obj)" synta o [1999/02/26] bin/10283 Race condition in rc.network o [1999/03/01] docs/10349 phantom For long .Dt fields, rendering is broken- o [1999/03/02] bin/10358 ftp(1) has problems with long pathnames f [1999/03/05] ports/10396 asami SPIN is in the wrong category o [1999/03/06] bin/10444 avoiding lost mail when mail filesystem i f [1999/03/07] i386/10465 mdodd Must disable ex0 to install. o [1999/03/12] kern/10563 QIC 40/80 tape drive ft present in versio o [1999/03/14] conf/10582 marcel Makefile.upgrade fails with make -j o [1999/03/14] misc/10589 Incorrect assumptions in /etc/security o [1999/03/15] bin/10601 wosch Ownership of symlinks copied by adduser a o [1999/03/15] i386/10608 add Opti Viper-M PCI ID o [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/18] kern/10663 hpscan doesn't like 3.1's pt device o [1999/03/18] misc/10667 murray Sysinstall inserts multiple # -- sysinsta 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 o [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/03/23] kern/10755 de driver says `invalid EESPROM checksum' o [1999/03/25] bin/10793 cvs update modification time check granul o [1999/03/26] misc/10803 joe whois(1) client enchancements a [1999/03/26] misc/10804 joe whois(1) enhancement o [1999/03/29] bin/10856 vty's from ttyvc - ttvf (maybe more?) do o [1999/03/30] bin/10868 BUG in /usr/bin/calendar o [1999/04/02] bin/10924 Extensions to biff(1) o [1999/04/03] bin/10931 biff b o [1999/04/05] ports/10965 obrien lcc-3.6 unable to compile anything o [1999/04/06] bin/10980 With ctags -x no space is left between na o [1999/04/07] docs/10997 doc Problem with query-pr-summary.cgi 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/08] bin/11037 Gencat doesn't properly handle \ddd octal 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] misc/11111 Error opening terminal: su o [1999/04/13] bin/11114 will make(1) does not work as documented with o [1999/04/13] misc/11126 vt100 termcap entry appears broken 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 o [1999/04/18] bin/11205 Suggestion: move mt(1) to /bin o [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/04/27] bin/11360 Allow specification of "search" in resolv o [1999/04/28] kern/11365 plip in Linux mode has trouble with some o [1999/04/29] bin/11387 mount_cd9660 doesn't show rockridge filen o [1999/04/29] bin/11399 Calendar doesn't always handle 'last' day o [1999/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi s [1999/05/09] ports/11611 billf Update port: net/ntop o [1999/05/10] bin/11623 quot uses 32-bit integers for its calcula o [1999/05/12] bin/11671 "vidfont -r" fails, asking for font size o [1999/05/17] bin/11746 mikeh Add support for Solaris mailboxes o [1999/05/18] misc/11767 sppp does not implement VJ compression o [1999/05/19] kern/11789 obrien ELF machine definition missing for ARM o [1999/05/22] misc/11838 xwindows configuration problem o [1999/05/26] bin/11896 cap_mkdb dumps core when non-files passe o [1999/05/26] bin/11900 Sed(1) fails with MALLOC_OPTIONS set to ' 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 o [1999/05/30] kern/11945 tape problems on -stable, mt bl(ocksize), o [1999/05/31] kern/11968 kldload should call module entry point be o [1999/06/01] i386/11979 Vaio 505DX touchpad not detected as Glide o [1999/06/02] conf/11989 pppd(8) output misplaced 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/10] bin/12115 pppd reports wrong connected duration wit o [1999/06/13] ports/12188 trevor new port: misc/pbs - a batch scheduler o [1999/06/16] gnu/12238 bc 1.04 crashes with long formula typed i o [1999/06/16] bin/12244 realpath() fails when there is no permiss o [1999/06/17] bin/12263 hoek "more" problems with long filenames o [1999/06/18] bin/12280 LD_IGNORE_MISSING_OBJECTS not honored for o [1999/06/18] kern/12281 active-filter option in pppd doesn't stop o [1999/06/21] conf/12324 jkh Sysinstall's fdisk partition editor is mi o [1999/06/21] ports/12325 portmgr Adds refetch functionallity to bsd.port.m a [1999/06/22] bin/12357 ru [PATCH] allow route to create "proxy only s [1999/06/23] bin/12358 ken Patch: "camcontrol help" should go to std o [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/27] bin/12421 sysinstall label fails o [1999/06/28] conf/12432 empty amd_flags causes start failure in r o [1999/07/02] docs/12486 mpp listing of (56) utilities in /bin:/sbin:/ o [1999/07/06] kern/12543 dg [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 kldload(8) should be more sensitive to er o [1999/07/08] ports/12566 billf a guide to pyrotechnics o [1999/07/12] kern/12609 At boottime NFS mounts on a 3.2 client fr f [1999/07/15] kern/12655 Kernel config file needs more commenting o [1999/07/18] kern/12697 Out of swap handling [PATCH] o [1999/07/20] bin/12712 release/Makefile: mounting /some/dir with o [1999/07/20] kern/12723 imp Unnecessary use of magic numbers in F_[SG o [1999/07/22] misc/12765 cable problem: link down for de0 NICs. o [1999/07/24] bin/12789 Confusing error msg when dumping a filesy s [1999/07/25] bin/12801 sheldonh nvi infinite recursion with options "left o [1999/07/25] bin/12806 `sh -e' doesn't parse multi-command lines o [1999/07/28] kern/12855 mckusick panic:softdep_flushfiles:looping, caused o [1999/07/30] misc/12887 Problem with "top" command in SMP o [1999/07/30] misc/12888 strange kernel messages when copying file o [1999/07/31] bin/12898 Added a command-line switch to netstat to 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, o [1999/08/04] kern/12966 receiver lockups in vr0 driver o [1999/08/05] bin/12982 last does not support -y option. o [1999/08/05] misc/12983 system hang accessing mounted msdos flopp f [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/07] docs/13020 mpp Manpage capitalization o [1999/08/08] misc/13036 de doesn't work with DEC 21143 based PCI o [1999/08/09] bin/13042 will make doesn't handle wildcards in subdirec o [1999/08/09] bin/13043 minigzip -c option support. o [1999/08/09] i386/13051 after installation on system using COM1, o [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/11] docs/13079 dwhite new man page describing timeradd() family 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 o [1999/08/16] misc/13185 "tengo problemas con el pop3" o [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque s [1999/08/19] kern/13252 niced jobs don't behave really nice o [1999/08/20] misc/13266 Removal of #defines and addition of const o [1999/08/21] bin/13309 Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for pread() in dump and fsc o [2000/03/29] bin/17679 wpaul wicontrol should take multiple args on co o [2000/03/30] kern/17688 cg es_callback() in /sys/pci/es1370.c does n o [2000/03/30] bin/17694 wcstombs(), mbstowcs() not complying with o [2000/03/30] conf/17699 Support for dutch keyboards in the consol o [2000/03/31] bin/17720 presence of old /dev entries causes sysin o [2000/04/01] kern/17728 probe Macronix 98715/98715A 10/100BaseTX f [2000/04/01] misc/17737 dwhite Major repair of PicoBSD o [2000/04/02] kern/17751 wpaul rl driver loaded as module when it alread f [2000/04/02] kern/17758 green Make sl driver dynamicallly expandable. o [2000/04/03] bin/17772 TFTP can not handle big files (> 32MBytes o [2000/04/03] kern/17774 doc stray irq7 o [2000/04/03] kern/17775 4.0-STABLE: Adaptec-155-ATM at en0 causi o [2000/04/04] ports/17801 jake new port: devel/binutils11 o [2000/04/04] ports/17802 jake port update: devel/gcc11 o [2000/04/04] ports/17803 jake new port: devel/gdb11 o [2000/04/05] gnu/17812 gprof gives error: o [2000/04/05] kern/17819 adrian Build ports on nfs & union mount panics k f [2000/04/06] bin/17824 sheldonh [PATCH] /usr/bin/column has arithmetic ov o [2000/04/06] bin/17830 /usr/bin/login called from command line d o [2000/04/07] misc/17848 Patches to remove support for CSRG libm f [2000/04/07] docs/17855 alex PPP Primer is out-of-date o [2000/04/07] misc/17857 During a sysinstall kernel sources say th o [2000/04/09] misc/17889 certain type of DNS queries seem to get d o [2000/04/10] ports/17897 chuckr transfig does not compile with XFree86-4. o [2000/04/10] i386/17906 le ethernet device doesn't work in 4.0 o [2000/04/10] kern/17907 cg Audio record levels are too low o [2000/04/10] docs/17916 alex [PATCH] rewrite of cutting-edge section o a [2000/04/11] bin/17939 sheldonh routed calls ntohs twice on the same fiel o [2000/04/12] ports/17952 torstenb [PATCH] tcp_wrappers port to give better o [2000/04/13] conf/17993 improving on the default /etc/amd.map o [2000/04/13] bin/17997 nvi doesn't set variables on startup (via o [2000/04/14] misc/18014 Machine doesn't boot without keyboard att o [2000/04/17] ports/18057 jmz make install for XFree86-4 fails on alpha o [2000/04/18] bin/18080 davidn [PATCH] pw documentation updated to refle o [2000/04/18] ports/18083 rse Gratuitous Apache package inconsistencies o [2000/04/19] misc/18097 What is this: LIBRATION not specified - u o [2000/04/19] bin/18100 update to src/usr.bin/from/from.c for mul o [2000/04/20] misc/18109 green if pw_shell is empty(/bin/sh is assumed), s [2000/04/20] bin/18114 ken msps from iostat is wrong o [2000/04/21] misc/18131 MAX_IFS in pppd/sys-bsd.c too small for m o [2000/04/22] i386/18154 [PATCH] Add cpu class and features flags o [2000/04/22] bin/18157 pnpinfo only prints first io-start for ev o [2000/04/22] conf/18164 roberto /var/log/ntpstats fill with stat files by o [2000/04/23] ports/18184 ache GNU Patch 2.5.4 Port o [2000/04/26] kern/18232 SMP + APM configerd 4.0 kernel did panic o [2000/04/27] misc/18255 makewhatis weekly job doesn't look at /us o [2000/04/28] kern/18271 simplelock: klds not portable across UP a o [2000/04/28] bin/18275 proposed TMPDIR setting and /usr/bin/mkin o [2000/04/28] kern/18289 CPU Time exceeded delivered multiple time o [2000/04/29] ports/18291 asami make makesum fetches new sources, make fe o [2000/04/29] kern/18293 lack of versapad mouse wheel emulation o [2000/04/29] kern/18295 Audio is gone after hibernation o [2000/04/30] bin/18319 "dump" fails with "cannot reopen disk: in o [2000/05/01] bin/18326 dwmalone no /usr/libdata/lint/llib-lc.ln o [2000/05/01] bin/18329 ben futimes() and lutimes() missing from ' cannot be used in "via" o [2000/05/29] ports/18896 jseger Tcl "info hostname" command returns chop- o [2000/05/30] kern/18909 dwmalone select(2) timeout limited to 100000000 se o [2000/05/31] kern/18928 options ROOTDENAME=xxx on kernel config f o [2000/06/01] bin/18946 jhb Add support for enabling USB daemon from 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/02] bin/18967 ypserv not linked with tcp wrappers o [2000/06/03] misc/18987 Problems with Comtrol RocketPort o [2000/06/03] bin/18992 brian log packets blocked by filter rules o [2000/06/03] misc/18997 markm Kerberos5 CFLAGS needed o [2000/06/04] conf/19001 Delayed fsck + mount of insignificant fil o [2000/06/05] docs/19010 doc Bad144 obsoletion by 4.0 is undocumented; o [2000/06/05] i386/19012 No volume run out for /var and lead my Fr o [2000/06/05] misc/19037 Keyboard not detected on new install o [2000/06/06] bin/19056 yacc in 3.4 and 4.0 reports "maximum tabl o [2000/06/06] bin/19057 offer of patch to uname that produces pre f [2000/06/06] ports/19061 kuriyama ports/textproc/lotusxsl the source zip pa f [2000/06/06] kern/19063 rnordier VGA keyboard sometimes fails to work in b o [2000/06/07] ports/19112 portmgr files with names something,v in patches d o [2000/06/08] bin/19118 vmstat¤Ç avm¤Èfre¤ÎÃͤ¬Àܤ¹¤ë¡£ o [2000/06/08] misc/19124 ps(1) to support SysV-style options? o [2000/06/08] misc/19129 AMI Raid Express 200 card extremely slow o [2000/06/09] kern/19156 jkh Enable the doFS.sh to run in arbitrary lo o [2000/06/09] kern/19158 U.S.Robotics 56K FAX INT not recognize co o [2000/06/10] bin/19183 more(1) doesn't handle redraw correctly 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] ports/19325 tom ports/mail/ezmlm-idx: mysql & pgsql suppo o [2000/06/15] gnu/19327 obrien Fix to build 'a.out' binary. o [2000/06/17] bin/19355 fstat gives signal 10 (SIGBUS) when outpu o [2000/06/18] misc/19367 markm /etc/defaults/make.conf lists wrong value o [2000/06/18] bin/19369 Inadequate error reporting in "mount" com o [2000/06/19] misc/19391 marcel Evilness 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 o [2000/06/20] i386/19410 spontaneous reboot when esd runs on a -ST o [2000/06/21] bin/19422 users can overflow argv to make ps segfau o [2000/06/22] conf/19442 can't install on diverse harddisks. o [2000/06/22] ports/19448 markm filename input broken o [2000/06/22] ports/19456 chuckr the sp port is hardwired to install it's o [2000/06/22] ports/19457 vanilla The gimp port has /usr/local/bin hardwire o [2000/06/23] misc/19467 green OpenSSH (as an rsync tunnel) blocks forev o [2000/06/23] docs/19481 doc Serial Communications chapter in Handbook o [2000/06/24] kern/19490 faith0 network device has high number of o [2000/06/25] ports/19498 ports ssh (1) instal fails o [2000/06/26] bin/19514 patch to prevent tail'ing directories o [2000/06/26] ports/19523 billf Update port: graphics/gd o [2000/06/26] kern/19535 adrian procfs_rlimit tidyup o [2000/06/26] bin/19536 patch to prevent head'ing directories o [2000/06/28] bin/19558 amd doesn't know whether NFS feature is a o [2000/06/28] misc/19564 PNP-Id for ESS1681 o [2000/06/28] ports/19571 tg python/TKinter busy waits o [2000/06/28] conf/19573 des Dot Files for Optional Shells o [2000/06/29] ports/19585 obrien bounce port misconfiguration o [2000/06/29] ports/19591 issei ssh2 port ignores 'ignorenologin' from lo f [2000/06/30] ports/19594 trevor update port: qrash o [2000/07/01] kern/19624 make {DFL,MAX}SSIZ kernel options 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/03] kern/19688 jlemon Some boundry checking KASSERTS in network o [2000/07/05] kern/19706 Framing error on PC/NET 32 also used in o o [2000/07/05] bin/19719 imp pccard_ether lacks the start_if hooks as o [2000/07/05] kern/19720 kbyanc more sysctl signed-ness patches o [2000/07/05] misc/19725 4.0-STABLE: sys/boot/ficl build fails if o [2000/07/06] gnu/19733 obrien GDB 4.18 is not GDB 4.18 o [2000/07/07] bin/19755 nologin not configurable o [2000/07/07] kern/19756 sheldonh 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/09] misc/19805 not installable on old-fashioned dx50 o [2000/07/10] ports/19823 abe gnucache build depends on unimplemented s o [2000/07/10] kern/19827 yokota psm flag bit9(NOIDPROBE) doesn't work cor o [2000/07/10] misc/19837 murray Run Fit it floppy from serial port o [2000/07/11] conf/19849 MAKEDEV still defaults to da0X instead of o [2000/07/11] kern/19863 markm Non-blocking IO not supported on /dev/ran o [2000/07/12] ports/19868 portmgr modify ports/Mk/bsd.port.mk to remove ALL o [2000/07/12] kern/19871 select on named pipes always returns 'ava o [2000/07/13] i386/19890 davidn Stallion serial driver support missing [p o [2000/07/14] kern/19913 des add SYN+FIN counter o [2000/07/15] kern/19966 new syscons screensaver o [2000/07/16] i386/19972 Add of pckg (several pkgs) aborted, error o [2000/07/17] ports/19977 rse mod_php3 and mod_php4 ports doesn't recog f [2000/07/17] docs/19981 doc Indonesian translations o [2000/07/18] gnu/20004 obrien 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] bin/20165 markm PERL_THREADED=true fails; "yes" works; ma o [2000/07/24] misc/20166 billf Corrections & additions to games/quiz/dat f [2000/07/26] kern/20198 luigi log setup of dynamic rules for ipfw 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/30] ports/20301 billf New port: irc/ircd-hybrid6 o [2000/07/31] bin/20311 markm src/release/Makefile: broken CHECKSUM.MD5 o [2000/07/31] misc/20326 marcel [PATCH] installkernel fails if DESTDIR is o [2000/07/31] misc/20333 sheldonh 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 o [2000/08/03] kern/20393 dillon processes get stuck in vmwait instead of o [2000/08/04] docs/20400 doc Building a kernel with debugging info sec o [2000/08/04] bin/20402 ache 4.1R's ls conflicts with Emacs' dired mod o [2000/08/04] misc/20408 Distribution CDs will not boot on IBM Thi o [2000/08/04] kern/20410 sio support for high speed NS16550A, ST16 o [2000/08/05] conf/20436 asmodai Can't make only cd0 under 4.1-STABLE o [2000/08/06] kern/20448 luigi expired dynamic rules shown in "ipfw get" o [2000/08/07] misc/20457 davidn pw command doesn't generate random passwo o [2000/08/07] kern/20473 itojun socket(AF_INET, SOCK_RAW, 4) no longer wo o [2000/08/07] misc/20475 mjacob SES/SAF-TE giving bogus temps on JMR ELEC o [2000/08/08] conf/20479 updates for rc.conf.5 manpage o [2000/08/08] i386/20485 AdvanSys ISA probe problems in 4.1-R GENE o [2000/08/09] ports/20499 obrien [PATCH] conserver port doesn't like MD5 c o [2000/08/09] bin/20501 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 o [2000/08/13] ports/20587 kiri Update port: upsd-2.0.1.6 o [2000/08/13] ports/20588 kiri New port: upsd100-2.0.1.6(sysutils/upsd10 o [2000/08/14] bin/20600 net getpeereid obtains credentials from conne o [2000/08/14] ports/20601 ports DESTDIR and /etc/shells a [2000/08/14] ports/20610 ports New port of cgoban2 o [2000/08/15] bin/20613 des fetch -T n is not timeout correctly when o [2000/08/15] ports/20627 jseger tcl83 build is broken o [2000/08/16] ports/20644 ports Installation of port DAP requires compat3 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/17] bin/20681 des [PATCH] show service names in netstat and o [2000/08/20] ports/20730 adrian Update Squid 2.3-STABLE4 with latest vend o [2000/08/20] docs/20738 doc correction and modification to clocks(7) o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE o [2000/08/22] conf/20774 sheldonh 'NFS access cache time=2' is not a daemon o [2000/08/23] docs/20794 doc Request 2 good documents under people.fre 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/23] misc/20808 ps netstat -m doesn't use -N or -M arguments o [2000/08/24] bin/20824 ftpd returns, "ad0s1a: not a plain file." o [2000/08/24] bin/20827 billf pkg_add -r only fetchs one-level deep dep 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/25] ports/20849 dec fix port: net/gated 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 murray /stand/sysinstall too limited in selectio o [2000/08/29] misc/20920 yokota window(1) interferes with screensaver o [2000/08/30] bin/20944 ru natd enhancements, default config file an o [2000/08/30] docs/20950 kris [PATCH] openssl.1 has bogus section title f [2000/09/01] kern/20992 kern/tty_subr.c, b_to_q to a clist with n f [2000/09/02] ports/20995 sheldonh freeciv-civ gtk make problem. o [2000/09/02] bin/20996 kris permissions on /usr/bin/opiepasswd a [2000/09/02] kern/21000 sheldonh 4.1-STABLE doesn't have card ID f [2000/09/02] ports/21003 ports New Port, modification of tcopy o [2000/09/02] bin/21008 gad Fix for lpr's handling of lots of jobs in a [2000/09/04] ports/21021 ports graphics/quickpics bogus colorspace error o [2000/09/04] bin/21024 pow() ERANGE bug o [2000/09/04] ports/21038 jseger CFengine doesn't install info files o [2000/09/04] kern/21051 Updating 4.1-RELEASE to -current fails be 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 sheldonh top: can't allocate sufficient memory o [2000/09/06] bin/21080 mjacob dump doesn't use eject tape device correc o [2000/09/06] bin/21086 joe Annoying little bug using ls -G with o [2000/09/08] ports/21120 grog Update port: x11-servers/x2x o [2000/09/08] gnu/21128 a proposed patch for uucp package o [2000/09/09] bin/21142 [PATCH] avoid errors from "make objlink" o [2000/09/09] kern/21154 Change the name of *_saver.ko to saver_*. 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 f [2000/09/10] ports/21179 ports New port: math/gul-vdog-qt o [2000/09/11] ports/21211 rse the startup file installed by apache-mods o [2000/09/12] kern/21222 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/12] bin/21231 roberto the ntp HTML docs don't have the images f [2000/09/12] kern/21240 mbufs allocated to data is huge number in o [2000/09/12] kern/21242 Koutech PCI dual port serial card patch f [2000/09/12] bin/21246 nvi's -c flag does no do what it is docum o [2000/09/13] misc/21255 phk /sbin/md5 suggestion o [2000/09/14] misc/21265 Not a bug, say: feature? o [2000/09/14] misc/21273 PLIP Configuration in sysinstall is broke o [2000/09/15] misc/21298 tftpd problem "Socket operation on non-so o [2000/09/16] misc/21310 Telnetd locks up when trying to connect v o [2000/09/16] bin/21312 more incorrectly redraws screen on xterm f [2000/09/16] ports/21313 ports vmwarIPv6 and vmware2 panic: Fatal trap 1 o [2000/09/16] bin/21315 Shells often behave oddly when executing f [2000/09/18] ports/21346 ports ports/biology/platon o [2000/09/18] ports/21351 jhb ports/emulators/bfe sourcetarball no long s [2000/09/18] ports/21371 bp Update port: net/mars_nwe to 0.99.20 o [2000/09/18] misc/21385 yokota About daemon_saver o [2000/09/19] bin/21394 [PATCH] MAKEDEV creates rocketport specia o [2000/09/19] kern/21402 marcel Linuxulator: getpgid(0) fails o [2000/09/19] kern/21405 Default module patch mismatch between ker o [2000/09/19] kern/21409 The ID for the VIA KT133 chipset is not i o [2000/09/20] bin/21436 pkg_install will not compile without erro o [2000/09/22] bin/21476 ftp in 4.1-STABLE fails on http:// URLs o [2000/09/22] conf/21489 imp /etc/pccard_ether feature request o [2000/09/22] misc/21494 ftpd doesn't count o [2000/09/23] misc/21512 cdrdao fails to build with SCGLIB o [2000/09/24] bin/21519 sys/dir.h should be deprecated some more o [2000/09/24] misc/21528 kris installworld fails in secure/usr.bin/open o [2000/09/24] bin/21531 csh/tcsh provide no way to see/adjust new o [2000/09/25] misc/21536 jkh [PATCH] Add Hungarian FTP mirror to sysin a [2000/09/25] docs/21542 asmodai sigaction(2) man page is misleading o [2000/09/25] conf/21551 /etc/services needs a kpop entry f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q o [2000/09/26] ports/21584 archie mpd whines if kernel has option NETGRAPH o [2000/09/26] misc/21587 install problem in 4.1-Stable o [2000/09/28] ports/21621 reg Update port: devel/libtool to 1.3.5 o [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 o [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/10/01] i386/21672 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] docs/21712 dan core(5) manpage fails to mention kern.sug 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/03] conf/21722 The mixer settings are lost on sysetm reb o [2000/10/03] bin/21725 mtree follows symlinks! o [2000/10/03] kern/21737 sendto returns systematically EINVAL with o [2000/10/04] bin/21751 ken libcam's cam_real_open_device() may lose o [2000/10/04] kern/21752 Infortrend IFT-3102 doesn't like SCSI Cac 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/22] bin/22211 typoed tar -c clobbers archives a [2000/10/22] kern/22228 dd Undocumented LINT option 'PANIC_REBOOT_WA o [2000/10/23] ports/22259 obrien bash: root directory change directory bug o [2000/10/24] bin/22279 stock perl5 build does not support %Z spe o [2000/10/25] ports/22288 ports mod_perl dependancy missing from p5-HTML- 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/26] docs/22338 asmodai ugen(4) man page missing o [2000/10/27] bin/22347 dd copies incorrect data after 2^32 bytes o [2000/10/27] bin/22351 sed(1) fails with backslash on buffer bou f [2000/10/28] ports/22379 ports New port: libudbc f [2000/10/28] ports/22381 ports New port: misc/mango 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 s [2000/10/30] docs/22430 darrenr ipresend man page typo o [2000/10/30] misc/22434 problem with certain NIC's using rl on au o [2000/10/31] bin/22442 [PATCH] Increase speed of split(1) o [2000/10/31] kern/22466 yokota function prototype inconsist in kbdreg.h f [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 a [2000/11/03] misc/22582 dd unused descr[] var in sysctl.c:RELENG_4 o [2000/11/03] ports/22590 jseger graphics/xpaint writes pixmaps to stdout o [2000/11/04] kern/22602 CDRoms checked during shutdown (umount) o [2000/11/04] ports/22605 ports xmcd port depends on mailx port o [2000/11/04] bin/22612 crontab -e failures o [2000/11/05] kern/22617 Incorrect PnP ID for ALS120 game/joystick o [2000/11/05] i386/22633 when kernel boots smp scsi fails o [2000/11/06] ports/22637 adrian [PATCH] squid 2.3 fix 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 f [2000/11/07] ports/22683 ports New port net/dnip-update o [2000/11/08] conf/22695 MAKEDEV has no entry for cfs0, the device o [2000/11/08] misc/22696 picobsd build with router configuration c o [2000/11/08] ports/22698 nbm Ports' rc.d files should use rc.conf o [2000/11/08] kern/22709 yokota daemon_saver.c fails compile with -Wall - o [2000/11/08] kern/22710 yokota snake_saver and star_saver fail to compil o [2000/11/09] ports/22716 billf [PATCH] ports/net/ucd-snmp o [2000/11/09] conf/22718 sysinstall in FreeBSD 3.5.1 generates bad o [2000/11/09] ports/22729 billf net/ucd-snmp cannot be made on current o [2000/11/09] bin/22730 tcpslice doesn't handle long file offsets o [2000/11/10] ports/22735 will KGhostView doesn't recognize spaces in fi o [2000/11/10] kern/22754 mmap man page states that non-page aligne o [2000/11/10] alpha/22759 alpha zip cannot work with existing .zip archiv o [2000/11/12] kern/22801 Modem 'OMRON ME5614ISA' is not recognized o [2000/11/13] alpha/22824 alpha unaligned accesses from dhclient f [2000/11/13] bin/22828 darrenr patch to enable use of LOG_SECURITY in ip o [2000/11/14] conf/22859 darrenr rc.network should start ipf/ipnat AFTER p o [2000/11/14] bin/22860 [PATCH] adduser & friends with '$' in use o [2000/11/14] docs/22861 doc 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] bin/22897 su doesnt't compile without LOGIN_CAP def o [2000/11/16] i386/22900 patch: Adds Brand ID support to src/sys/i o [2000/11/16] kern/22905 Netgear FA311 Not supported. 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 o [2000/11/18] i386/22940 Can't install 4.1.1 on ad0s2 if da0 exist o [2000/11/19] kern/22967 stallion driver (stl) shipped with FBSD 4 f [2000/11/20] ports/22970 ports New Port : textproc/py2html a [2000/11/20] i386/22971 marcel RealProducer doesn't work on linux emulat f [2000/11/20] ports/22995 grog Update port: x11-servers/x2x (fix ports/2 o [2000/11/21] bin/23008 df -k reports incorrect amount of disk ta o [2000/11/23] bin/23052 ghelmer [PATCH] rmuser fails to remove at jobs o [2000/11/23] ports/23060 steve lsof warning msg o [2000/11/23] conf/23063 [PATCH] for static ARP tables in rc.netwo o [2000/11/24] bin/23081 Touchpad on NEC Versa laptop is unusable o [2000/11/24] bin/23082 dwmalone ntpd has only one reference-clock parser o [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/25] kern/23099 jlemon tail -f from a fifo goes into a busy loop o [2000/11/26] kern/23123 IP options reveal IPstealth mode. Just t o [2000/11/27] i386/23141 ad1816 audio driver produces noise. o [2000/11/27] misc/23148 getopt(3) works non-intuitively? f [2000/11/28] ports/23151 ports NEW PORT : sysutils/wake-on-lan f [2000/11/28] ports/23172 jseger update cfengine port 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 o [2000/12/02] ports/23234 se port update request: xblast o [2000/12/03] bin/23254 yacc accepts bad grammer o [2000/12/04] ports/23259 asami Please remove the following redundant por f [2000/12/04] ports/23267 sada New port submittion: devel/lxr (lxr-0.3) o [2000/12/04] ports/23287 portmgr allow system-local patches for ports o [2000/12/04] docs/23292 doc /etc/dumpdates is not documented in secti o [2000/12/05] ports/23298 ports New port: lame-devel 3.87 o [2000/12/05] kern/23304 POSIX clock_gettime, clock_getres return o [2000/12/05] kern/23314 aic driver fails to detect Adaptec 1520B o [2000/12/06] bin/23321 [PATCH] reduce redundant code in /bin/cat o [2000/12/06] ports/23332 obrien urlview's url_handler.sh written in bash o [2000/12/06] misc/23339 roberto ntp version is 4.0.99b -- current version f [2000/12/06] ports/23341 billf ucd-snmp fails to build on -current o [2000/12/07] kern/23353 fcntl(F_GETLK) return l_pid equal to -1 f o [2000/12/07] i386/23359 Installation diskettes don't boot o [2000/12/07] misc/23362 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/09] ports/23410 obrien [PATCH] FreeBSD throws away information o o [2000/12/10] kern/23414 fail to probe my pnp modem o [2000/12/10] conf/23416 Adding SSL services and rsync into /etc/s o [2000/12/10] ports/23417 jmz [PATCH] XFree4-port needs patches to buil o [2000/12/10] conf/23419 'make buildkernel' doesn't work in isolat o [2000/12/10] kern/23446 billf ipfw fragment logging misses first frag o [2000/12/11] misc/23463 when the FreeBSD installation menu shows o [2000/12/11] bin/23472 obrien gdb weirdness on programs compiled with - o [2000/12/11] docs/23488 doc A manpage for section 7 regarding a Toron o [2000/12/11] kern/23493 race in 'make -jN buildkernel' pollutes / a [2000/12/12] ports/23499 ports [NEW PORT]: Two LaTeX macro package ports o [2000/12/12] ports/23504 jseger Small stylistic fix in ports/editors/emac o [2000/12/12] bin/23509 Augment dev_mkdb to allow different direc o [2000/12/13] kern/23520 sb0 old style audio support in 4.2-RELEAS o [2000/12/13] bin/23526 Patch for bin/9529 (ftp completion cant h o [2000/12/13] misc/23539 marcel make installworld from nfs mounted /usr/s o [2000/12/14] ports/23543 imp Update net/socks5 to install sample confi o [2000/12/14] kern/23546 tanimura [PATCH] csa DMA-interrupt problem o [2000/12/14] docs/23559 doc missing manpage for hsearch libc function 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 obrien Merge libgcc_r with libgcc o [2000/12/17] ports/23602 portmgr Recursive distclean for bsd.port.mk w/pat o [2000/12/18] misc/23612 patch for PicoBSD building (with diff) o [2000/12/18] bin/23635 [PATCH] whois enhancement - smarter whois o [2000/12/19] i386/23643 dlopen() can't link to symbols in main pr o [2000/12/19] ports/23649 rse the port of mod_php4 does not install cor o [2000/12/20] kern/23692 GENERIC kernel config on 4.2 changes defa o [2000/12/20] kern/23700 AMD 756 Power Management Controller / SMB o [2000/12/21] bin/23712 Unused variable CDB in /usr/src/usr.sbin/ f [2000/12/22] ports/23753 ports [PATCH] audio/mxv has unfetchable distfil o [2000/12/22] ports/23762 jseger Update port: misc/git to 4.3.20 o [2000/12/22] misc/23766 /etc/periodic/daily/440.status-mailq does a [2000/12/22] ports/23780 ports New port (audio/ecawave): Simple graphica o [2000/12/24] kern/23814 .au sound files < 528 bytes actual data d o [2000/12/24] docs/23822 dgrimes mtree entries for German X11 man pages o [2000/12/28] bin/23908 repquota format fix o [2000/12/28] bin/23912 underflow of cnt in vs_paint() by O_NUMBE f [2000/12/28] ports/23937 nectar security/krb5 does not read /etc/login.co o [2000/12/29] bin/23944 Patch for ftpd to add a cd after the chro o [2001/01/01] kern/23989 NEW CODE: AMD 756 Power Management / SMBu o [2001/01/01] ports/24006 greid New port: httrack: An easy to use offline f [2001/01/02] ports/24021 ports New port: textproc/p5-Sort-PolySort (Gene o [2001/01/02] misc/24034 "CWD" discloses the full "real" path in a o [2001/01/02] docs/24035 doc ptrace(2) PT_STEP incorrect documentation o [2001/01/03] bin/24063 /bin/stty ek doesnt work despite man page o [2001/01/04] bin/24066 gdb can't detach from programs linked wit f [2001/01/04] ports/24071 trevor security/digest - md5,md4,sha1,ripemd160 o [2001/01/06] bin/24106 ftpd does not compile without virtual hos o [2001/01/06] ports/24120 portmgr "/usr/ports/Mk/bsd.port.mk", line 626: In o [2001/01/07] misc/24132 gdb output is wrong (same as #13427 ?) o [2001/01/07] kern/24141 emu10k1 has trouble playing non-44.1KHz s o [2001/01/08] i386/24150 network traffic appears bottlecaped. o [2001/01/08] ports/24163 grog ports/benchmarks/rawio checksum error o [2001/01/08] misc/24166 Allow Date to generate an RFC-822 Complia o [2001/01/08] ports/24167 sobomax pango fails to build on -current o [2001/01/09] ports/24207 jseger port "tcl83" cannot load shared objects o [2001/01/10] ports/24214 portmgr [PATCH] verbose 'make index' o [2001/01/10] misc/24226 PicoBSD do not build on 5.0-current o [2001/01/10] bin/24230 getcwd(3) manual page has wrong STANDARDS a [2001/01/10] ports/24237 ports new port: kde-i18n-pl o [2001/01/11] ports/24259 steve port of open-motif on make install compla o [2001/01/11] misc/24261 pthread_mutex_lock/pthread_mutex_unlock d o [2001/01/11] misc/24265 Linksys LNE100TX V.4.1 MAC address not de o [2001/01/11] ports/24267 andreas ghostscript6 port compilation fails o [2001/01/12] kern/24269 Failure to setup DMA on ATA HDs (Alladin 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. s [2001/01/13] docs/24305 ben man page syscons has reference to non exi a [2001/01/14] misc/24324 Greek console support o [2001/01/15] misc/24345 jasone pthread library libc_r causes memory leak o [2001/01/15] ports/24361 asami wrong filemodes o [2001/01/16] ports/24374 dd New port: a display-based tetris game 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 f [2001/01/16] ports/24395 ports Date object is not deserialized correct o [2001/01/17] ports/24408 ijliao new port : java2html o [2001/01/17] ports/24413 jseger Building ImageMagick port with libmalloc o [2001/01/18] docs/24434 ben cipher(3) man pages needs to state that - o [2001/01/18] bin/24435 Changing slice type causes Auto-partition a [2001/01/18] kern/24437 yokota syscons - MOUSE_MOUSECHAR fix o [2001/01/18] bin/24439 suggested replament for adduser(8) o [2001/01/18] bin/24444 syslogd(8) does not update hostname o [2001/01/19] ports/24451 mharo Portlint doesn't catch some literal comma o [2001/01/19] bin/24458 named-xfer executed at 20 priority level 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 o [2001/01/20] conf/24495 Default /etc/printcap refers to wrong han a [2001/01/21] kern/24512 jesper Sent ICMP unreach when packet not for us o [2001/01/21] misc/24513 new options for pppd o [2001/01/21] conf/24515 Fix for find(1) warning in /etc/rc o [2001/01/21] kern/24516 Mouse Logitech M-S48 does not in FreeBSD 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/22] bin/24540 add '-c' flag to src/bin/domainname to cl o [2001/01/22] ports/24558 torstenb Updated port: converters/recode - 3.5 o [2001/01/23] bin/24569 PATCH for PPPD o [2001/01/23] bin/24592 dmesg.boot Gets Overwritten without Reboo f [2001/01/24] misc/24603 dsp will not play .wav files at all o [2001/01/25] kern/24642 NEWCARD broken in RELENG-4 o [2001/01/25] kern/24647 Supported Gigabit Ethernet Interfaces for 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] docs/24662 doc too many questions about source managemen 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] misc/24687 ports QUAKE FORGE & SVGALIB o [2001/01/28] ports/24692 ports setquota port is broken on 4.2 STABLE o [2001/01/28] kern/24696 compile error while defines DEB(x) a [2001/01/29] ports/24713 ports New port: xmotd - message-of-the-day brow o [2001/01/30] bin/24732 dwmalone cmp can not compare files lager 2GB but s 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/24744 sys/socket.h uses u_char without includin o [2001/01/30] misc/24746 green SSH terminal hangs on large paste of data o [2001/01/30] ports/24747 ports new port: MicroEmacs 4.0/PK-TOY o [2001/01/30] ports/24749 dirk mysql323-server pkg-install script doesn' o [2001/01/31] ports/24756 billf net-snmp-4.2 does not compile with LPRng o [2001/01/31] bin/24757 ftpd not RFC compliant o [2001/02/01] conf/24781 MAKEDEV: rast* -> ast* a [2001/02/01] misc/24784 Why isn't bind always running as -u bind 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 Erratic Intellimouse Explorer in 4.1 and o [2001/02/03] bin/24828 [PATCH] ntpd compilation and additional r o [2001/02/03] docs/24839 doc fix ether.bridge o [2001/02/04] gnu/24844 gdb does not support kernel threads o [2001/02/04] ports/24845 tegge linuxthreads does not detect failed rfork o [2001/02/04] kern/24851 ISA PnP Modem Type is unregistered in sio o [2001/02/04] bin/24857 File descriptor leak and frequent crashes o [2001/02/05] docs/24869 doc Some text elf.5 is duplicated o [2001/02/05] kern/24882 ktrace not syncing .out file before panic f [2001/02/05] ports/24885 ports Update Port: audio/icecast 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 Options screen at MenuMedia menu problem o [2001/02/06] bin/24914 /dev explicitly referenced in MAKEDEV o [2001/02/06] docs/24921 phk Typo /devs --> /dev o [2001/02/06] docs/24923 doc 4.2 Release Errata page has no informatio o [2001/02/07] ports/24940 demon prolem with Tnm::icmp echo command due to o [2001/02/07] misc/24942 tftp client timeout failure o [2001/02/07] bin/24944 new execute-file can't running(not found o [2001/02/08] ports/24951 ports New port: devel/omniORB-Notify o [2001/02/08] bin/24953 green adduser ignores passwd_format in login.co o [2001/02/08] kern/24954 Old driver /src/sys/dev/sound/isa/sb.c sh o [2001/02/08] bin/24955 /usr/bin/tail -F in 4.1+ doesn't work if 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/24976 ports gemdropx port is missing a dependency on 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/10] ports/24991 ports New port: eudc-emacs20 o [2001/02/10] kern/24998 More verbose logging for Joliet CDs o [2001/02/11] docs/25000 doc matcd(4) SYNOPSIS is wrong 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 o [2001/02/11] docs/25016 doc 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 f [2001/02/12] ports/25033 bmah pkg_version -c to support packages? o [2001/02/12] ports/25042 peter cvsup missed a couple of deletes in /usr/ o [2001/02/12] misc/25050 dwmalone inetd UDP echo service echos only 8K o [2001/02/12] misc/25055 Header in 'top' too long for SMP system a 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] ports/25071 peter Ports-Skeletons gone after update o [2001/02/13] bin/25085 mlxcontrol utility fails silently if devi a [2001/02/13] ports/25087 ports new port: net/icq-transport a [2001/02/13] ports/25091 ports new port: net/yahoo-transport o [2001/02/15] misc/25109 Fujitsu MO device MCC3064AP could't be c o [2001/02/15] ports/25119 sobomax pango does not build on -current o [2001/02/16] docs/25134 doc Kernel USER_LDT option help incomplete o [2001/02/16] misc/25147 [PATCH] to make D-Link DFE-650 work with o [2001/02/16] misc/25161 During install, after boot get message: P o [2001/02/17] docs/25164 ben makewhatis(1) seems to be fouling up o [2001/02/17] ports/25169 wosch [PATCH] update of p5-libwww port 1.62 -> a [2001/02/17] ports/25177 ports New port: java/jdbcpool-current o [2001/02/19] misc/25217 user with login 'connected' shows bogus f o [2001/02/19] misc/25218 peter mailwrapper invokes sendmail when resourc f [2001/02/19] ports/25219 ports New port: plist-builder o [2001/02/19] conf/25223 darrenr PATCH for rc.network to enable ipnat sepe a [2001/02/20] docs/25239 doc fdp-primer/tools/chapter.sgml says about 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/25267 vmstat displays some parameters incorrect o [2001/02/21] bin/25273 add fs type feature to vnconfig(8) to all o [2001/02/21] kern/25275 X server freezes system randomly on pentu o [2001/02/22] bin/25278 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/25297 kevlo kcontrol writes wrong variable names in c o [2001/02/23] ports/25299 kevlo kdm´s "Console mode" command isn´t meanin o [2001/02/23] ports/25313 wosch Script source displayed at http://www.nl. o [2001/02/24] ports/25342 ports saint: user authentication fails in remot o [2001/02/25] ports/25351 ports x11/colorsel fails to build o [2001/02/25] misc/25354 Slovak (sk_SK) locale missing o [2001/02/25] kern/25369 Miscellaneous CD drivers have potentially 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/25392 doc Chapter 9 pages could use 'location of fu o [2001/02/26] docs/25405 doc misleading warning from catman(1), etc. o [2001/02/27] ports/25419 ports Difficulties installing print/teTeX port o [2001/02/27] docs/25420 doc man page missing important information. o [2001/02/27] docs/25437 doc kernel configs are the only precious file f [2001/02/27] i386/25442 cg T20 CS4624/CS4297a sound problems: "pcm0: o [2001/02/27] ports/25444 andreas gimp-print driver out of date in ghostscr o [2001/02/27] kern/25445 kernel statistics are displayed in wrong o [2001/02/28] ports/25448 ports mpmf20 fails to correctly display the dir f [2001/02/28] misc/25454 rlogin does not pass the DISPLAY environm o [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 o [2001/02/28] i386/25463 PS/2 mouse sync problems with KVM switch o [2001/02/28] bin/25470 ancontrol doesn't output TX rate o [2001/03/01] conf/25472 add bg_BG.CP1251 locale support o [2001/03/01] bin/25474 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 keichii missing et_EE.ISO_8859-15 locale a [2001/03/02] misc/25499 buffer paste functionality from keyboard o [2001/03/02] docs/25500 ben Update of ip(4) manpage to reflect curren o [2001/03/02] misc/25502 TFTP in libstand(3) fails on all transact o [2001/03/03] kern/25507 cg contribute Intel ICH sound driver 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 o [2001/03/04] conf/25527 jdp `man ldconfig' does not reflect its behav o [2001/03/04] ports/25530 torstenb ports/net/cricket port does dependencies 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 f [2001/03/05] ports/25562 ports [UPDATE] net/radiusd-cistron o [2001/03/05] alpha/25564 alpha Port ups-debug doesn't build on the alpha o [2001/03/06] kern/25566 [PATCH] Missing PCI Id's for DLink DFE-53 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/06] kern/25582 paul lnc driver uses wrong driver name s [2001/03/07] bin/25584 arp.c - better printed ether address o [2001/03/07] bin/25587 Add Solaris-like functionality to truss(1 o [2001/03/07] bin/25598 patch to let ftpd output message when cha o [2001/03/08] docs/25606 keichii Incorrect Email Lists on Website a [2001/03/08] kern/25608 sos ATA CD-ROM is not recognized on IBM Netfi s [2001/03/09] bin/25627 will Cannot append hash after .elif in Makefil a [2001/03/09] kern/25634 I obtain kernel trap 9 with interrupts di o [2001/03/09] misc/25635 gad lpr -# didn't work on network printer o [2001/03/09] ports/25643 ports "incompatible pointer" in RgbSink.c for x a [2001/03/10] docs/25648 asmodai typos in some manpages (dependant) o [2001/03/10] bin/25654 minor style(9) fix for sleep o [2001/03/10] docs/25657 doc no netid(5) man page a [2001/03/11] ports/25698 ports [PATCH] Update lopster port to 0.9.8 a [2001/03/11] ports/25704 ports www/webstone - change maintainer a [2001/03/11] ports/25708 dougb pine4 port hard-code /usr/local/include o [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] conf/25730 [PATCH] mount_mfs is being phased out -> o [2001/03/12] kern/25733 mismatch between error reporting in smbus o [2001/03/12] docs/25735 doc error in handbook o [2001/03/12] bin/25736 ac -d option probrem with overdays logon o [2001/03/12] bin/25754 PicoBSD uses broken vnconfig syntax o [2001/03/12] ports/25763 shige XV fails to refresh properly on image dis o [2001/03/13] ports/25773 ports omniORB-Notify update to 3.0.3 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/13] i386/25782 cg CSA sound device repeated sound o [2001/03/13] bin/25786 ume Misdeclared IPv6 macros. o [2001/03/13] bin/25787 dwmalone inetd/auth: -i option to return uid inste o [2001/03/14] gnu/25794 markm [PATCH] make perl use a decent random num o [2001/03/14] bin/25798 adduser does full *pwd.db rebuild, instea o [2001/03/14] conf/25809 /etc/default/rc.conf bad default ipfilter o [2001/03/14] ports/25815 portmgr [PATCH] Port build collision fix. o [2001/03/15] ports/25828 torstenb The devel/autoconf port won't install ins o [2001/03/15] conf/25829 IPSec config in rc.network doesn't allow f [2001/03/15] bin/25833 LOG_FAC() is bogus o [2001/03/15] docs/25836 ben erroneous comment in statfs manual page o [2001/03/15] bin/25837 docs [PATCH] properly document vfc_flags in ge a [2001/03/16] bin/25850 peter CRON shouts o [2001/03/16] misc/25853 jlemon ftpd eats all memory o [2001/03/16] kern/25866 more than 256 ptys, up to 1302 ptys. o [2001/03/16] docs/25876 doc typos in jail.2 o [2001/03/17] ports/25878 tegge error during compilation of linuxthreads a [2001/03/18] bin/25895 keichii Add Big5 multibyte support for tcsh o [2001/03/18] kern/25905 cg Sound failed o [2001/03/18] ports/25906 sf nethack-gtk refuses to run s [2001/03/18] ports/25907 roam Firebird shared libs not added to shared 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/18] ports/25911 ports flash plugin for freebsd netscape 4.7 cra o [2001/03/19] conf/25914 added more modules to /boot/defaults/load o [2001/03/19] misc/25917 green Paste thrue SSH Secure Shell v.2.4.0 (bui o [2001/03/19] docs/25919 doc supported hardware list says 'no' for Sou o [2001/03/19] kern/25923 vm_map.h defines a macro called "min_offs o [2001/03/19] conf/25925 Add service sgi_fam to /etc/rpc o [2001/03/20] misc/25946 Add support for Topic chipset PCI modem o [2001/03/21] i386/25978 Problem with 'moused' or XFree86-4.03 and a [2001/03/21] ports/25983 ports New port: databases/py-bsddb3 o [2001/03/21] misc/25984 bsd.prog.mk doesn't link C++ programs pro o [2001/03/21] docs/25985 ben some small fixes in raycontrol.8 o [2001/03/22] ports/25993 ports New port editors/gnuserv-emacs20 o [2001/03/22] docs/26001 doc typo in sched_get_priority_max.2 f [2001/03/22] docs/26003 doc getgroups(2) lists NGROUPS_MAX but not sy o [2001/03/22] bin/26005 MIME quoted-printable encoding added to v o [2001/03/22] docs/26006 doc Changing zone(9) man page o [2001/03/22] bin/26012 FTPD utmp logging support o [2001/03/22] kern/26016 VMWare is crash on SMP machine o [2001/03/23] misc/26035 System hangs when playing mp3 on PCI Maes o [2001/03/23] ports/26039 ports The port of tidy dumped core o [2001/03/24] ports/26058 billf textproc/htdig simplifications and separa o [2001/03/24] docs/26060 doc No man page for /etc/host.conf o [2001/03/25] docs/26065 mpp assorted broken "SEE ALSO" references o [2001/03/25] bin/26080 [PATCH] various RPC fixes o [2001/03/25] docs/26090 mpp more broken "SEE ALSO" references o [2001/03/26] ports/26092 ports ksh93 port not installing properly o [2001/03/26] ports/26104 billf PORT UPDATE: add ${FREETYPE_CONFIG} suppo o [2001/03/26] docs/26137 wosch update for BSD family tree o [2001/03/27] conf/26145 [PATCH] There is no make.conf equivalent o [2001/03/27] bin/26152 ps compat4x should include librsaINTL.so o [2001/03/27] misc/26153 sed G does not double space o [2001/03/27] ports/26154 ports databases/firebird doesn't compile o [2001/03/28] misc/26187 jkh setting nonInteractive in install.cfg is o [2001/03/28] ports/26192 ports apel appeared both in xemacs/site-package o [2001/03/28] docs/26194 doc BSD Family Tree needs updated o [2001/03/29] ports/26200 ports Update port: devel/py-coro o [2001/03/29] bin/26201 telnet SRA password exchange trap when no o [2001/04/01] i386/26272 Adds a sysctl to get the cpu frequency 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/26292 ports New port: Version 3 of Squeak, the Smallt o [2001/04/02] kern/26295 mount of Olympus Digital Camera via umass 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] kern/26317 /modules not created by make installkerne o [2001/04/03] misc/26323 Quota system create zero-length files o [2001/04/03] kern/26324 Defaults for NFS mounts over TCP are slow o [2001/04/03] ports/26339 adrian squid-2.4_2, ipcCreate: $PREFIX/libexec/s 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] ports/26372 ports ImageMagick 5.3.0 Port doesn't build when 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] misc/26378 All 4.X-Release and 4.3rc2 Panics Install o [2001/04/06] kern/26385 VMWare reboots entire system after starti o [2001/04/06] ports/26387 ports numerous fixes and improvements to micq-0 o [2001/04/07] ports/26401 orion ports/mbone/rat update o [2001/04/07] conf/26420 addition of a serial 3-wire entry into ge o [2001/04/08] ports/26436 kris dejasearch port should be marked broken o [2001/04/08] kern/26437 Kernel Panics on SMP box when subjected t a [2001/04/08] ports/26447 ports New Port: net/py-xmlrpc o [2001/04/08] docs/26451 doc ctype.h defined functions are not accurat o [2001/04/09] kern/26454 mixer volume settings on Maestro-2E (Diam o [2001/04/09] bin/26468 pkg_delete clears dependencies after runn f [2001/04/10] ports/26472 ports Update of the jed port to a newer version o [2001/04/10] ports/26478 will KDE2.1 - Kpresenter & Kmediaplayer Crash o [2001/04/10] conf/26488 incomplete named sandbox information o [2001/04/10] docs/26489 doc incomplete info in the ppp faq about "PPP a [2001/04/12] kern/26508 dd [PATCH] syscons panic in userconfig mode o [2001/04/12] misc/26509 dd [PATCH] Obscure sysinstall NULL dereferen o [2001/04/12] ports/26511 ports New port: mail/emh-emacs20,emh-xemacs21-m o [2001/04/12] misc/26521 Australia's whois.aunic.net as an option a [2001/04/13] ports/26530 markp New port: editors/ted: An easy to use ric f [2001/04/13] bin/26531 sysinstall's disk labeler creates too sma 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] ports/26542 will kscd - part of KDE2.1.1 as package for 4. o [2001/04/13] kern/26546 Add ioctl support to linux emulation and o [2001/04/13] kern/26547 "lnc" problem with shared memory mode wit o [2001/04/13] ports/26551 jseger Update port: graphics/pstoedit to 3.21 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] misc/26573 tcsh incorrectly handles 'postcmd' o [2001/04/14] docs/26574 doc Incorrect link in individual ports README o [2001/04/14] misc/26583 jkh sysinstall display problem if >7 partitio 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 o [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] bin/26637 [PATCH] fstat does not recognize FIFO's o [2001/04/17] kern/26638 kern.fast_vfork sysctl doesn't do anythin o [2001/04/17] ports/26642 ports (Corrected) New port: russian/tac+ia 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] ports/26670 markp ports/biology/molden has a checksum error 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 doc boot manpage describes bootfile prompt in o [2001/04/18] misc/26695 CHANGE REQUEST: kill(all) -l output f [2001/04/19] ports/26700 ports icecast gobbling up 80% of the CPU o [2001/04/19] misc/26720 Both .cshrc and .profile should have the o [2001/04/20] kern/26740 rwatson [PATCH] jail improvement o [2001/04/21] misc/26742 doc misleading information in handbook f [2001/04/21] bin/26746 dmesg only prints the last couple of line o [2001/04/21] kern/26748 Aironet tcpdump wedge bug still exists o [2001/04/21] ports/26759 ports databases/pgaccess port superfluous o [2001/04/22] misc/26763 darrenr installing ipfilter sample files to share o [2001/04/22] conf/26770 jkh sysinstall does not generate correct rc.c o [2001/04/22] ports/26773 ports Update editors/joe to version 2.9.6 o [2001/04/22] conf/26774 Installation of rmail, even without sendm o [2001/04/22] i386/26786 Installing on Legacy Free Systems o [2001/04/22] kern/26787 dd sysctl change request o [2001/04/22] ports/26788 obrien ratfor name incorrect? o [2001/04/23] ports/26793 ports New port: java/ibm-jdk o [2001/04/23] kern/26798 cvsup 4.3-RC -> 4.3-STABLE causes problem o [2001/04/23] kern/26800 Support for Netgear MA-301 wireless o [2001/04/23] ports/26801 ports cyrus port should add periodic file to pr o [2001/04/23] ports/26802 will can't make new directories in kde o [2001/04/23] bin/26803 des Fix fetch to allow FTP puts in '-o' & all a [2001/04/23] bin/26810 dd [PATCH] make cut(1) work with long lines o [2001/04/24] i386/26812 old bootstrap /sys/i386/boot/... still in o [2001/04/24] conf/26818 hm Bad default value for isdn_fsdev in /etc/ o [2001/04/24] ports/26825 ports port xmms-avi won't compile libavixmms.so f [2001/04/25] conf/26846 gshapiro /etc/aliases is not used any more a [2001/04/25] ports/26851 knu Buglet breaks cvsweb in Perl5 environment o [2001/04/25] bin/26854 Better fix for ESS Technology Maestro-2E o [2001/04/25] docs/26861 doc accept(2) manpage documents non-existant o [2001/04/25] ports/26865 dima kpilot requires kdecore3 lib even when kd o [2001/04/26] misc/26870 change request for daily security check a [2001/04/26] ports/26872 olgeni ports/devel/wedit has a checksum error o [2001/04/26] misc/26879 mkfilter not installed, yet referred to v o [2001/04/26] ports/26882 will KDE should use ca-roots port for SSL cert o [2001/04/26] ports/26884 ports new port for visualworks 5i.3 o [2001/04/26] kern/26885 add if_xe as kernel module o [2001/04/27] ports/26904 jim New port(?): net/everybuddy-i18n (i18n pa o [2001/04/28] ports/26913 dwcjr NEW PORT: security/pam_smb o [2001/04/28] kern/26917 HP ScanJet 4300C not recognized by ugen o [2001/04/28] bin/26919 jkh sysinstall' fdisk can ONLY set bootable f f [2001/04/28] ports/26931 ports (NEW PORT) Virtual Terrain Applications o [2001/04/29] bin/26943 will [patch] description of :C modifier is mis o [2001/04/29] kern/26955 marcel-bugsPatches to get the DVD-ROM ioctl()s in th o [2001/04/29] ports/26976 marcel [PORT UPDATE] emulators/linux_base o [2001/04/30] ports/26983 jseger can't compile libwww o [2001/04/30] ports/26986 ports New port: japanese/pycodec o [2001/04/30] ports/26988 ports New port: korean/pycodec o [2001/04/30] misc/26990 jkh no sawfish package in 4.3-release ISO o [2001/04/30] ports/26993 billf update port: net/mtr o [2001/04/30] i386/26994 AMD Athlon Thunderbird not known to ident o [2001/04/30] ports/26997 ports Update/New port: math/scilab 2.6 o [2001/04/30] ports/26998 knu japanese/chasen is old o [2001/05/01] kern/27008 kernel function sysbeep(xxx, 0) does prod o [2001/05/01] misc/27017 printf(3) man page doesn't document "%ll{ o [2001/05/01] ports/27019 marcel patch supplied in PR ports/26976 breaks l o [2001/05/02] docs/27027 doc Update src/share/misc/iso639 o [2001/05/02] bin/27029 strptime: %s formatting missing (patch) o [2001/05/02] ports/27032 ports [mnt port update] www/p5-HTML-Embperl o [2001/05/02] misc/27039 new syscons screensaver o [2001/05/02] docs/27040 doc rc(8) and syscons(4) talk about rc.conf.l o [2001/05/02] misc/27041 modify src/release/Makefile to make anoth o [2001/05/02] misc/27043 jkh WindowMaker missing from FreeBSD 4.3 ISO o [2001/05/02] ports/27049 ports ports/net/rinetd not correctly became a d a [2001/05/02] bin/27050 dd [PATCH] Add snapshot functionality to las o [2001/05/02] misc/27051 [PATCH] /usr/sbin/named.restart does not o [2001/05/03] bin/27063 darrenr /sbin/ipfs missing a [2001/05/03] ports/27065 ports databases/db3 shared libraries & symbolic o [2001/05/03] bin/27068 w and who do not show users / utmp stays o [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 sh trap TSTP () deadly hangs f [2001/05/06] ports/27166 ports pcnfsd.tar.Z doesn't exist o [2001/05/06] ports/27167 ports ETHOberonV4 won't run o [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] ports/27189 ports ports/comms/hylafax completely broken 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] ports/27206 ports ports/astro/xtide missing harmonics.gz f o [2001/05/08] docs/27209 doc [PATCH] ascii.7 table rearrangement and u o [2001/05/08] bin/27218 mjacob fix included -- restore drops files on ta o [2001/05/08] ports/27219 fenner mbone/nte can't run o [2001/05/09] kern/27232 On NFSv3 mounted filesystems, stat return o [2001/05/09] ports/27239 fenner Update ports: mbone/vic 2.8ucl-1.1.3 a [2001/05/10] misc/27251 dd [PATCH]: netstat -s typos s [2001/05/10] ports/27256 dirk mod_php4 doesn't include pspell support i o [2001/05/10] bin/27258 getty didn't check if if= isn't empty o [2001/05/11] ports/27266 kevlo Port textproc/xerces should be named xerc o [2001/05/11] ports/27267 ports New port: www/zope-zwiki 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 sys/soundcard.h fails to define AFMT_S16_ a [2001/05/11] ports/27272 ports New Port: John McCalpin's STREAM Benchmar o [2001/05/12] bin/27281 vidcontrol(1) does not have error codes o [2001/05/12] ports/27282 mharo Proftpd with__modldap seems to be broken 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 a [2001/05/12] misc/27290 Slovak(sk) locale was not present 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] ports/27300 ports ImageMagick-5.3.1 doesn't build on 4.2 o [2001/05/13] ports/27305 ports problem with drop downs in linux-netscape o [2001/05/13] i386/27306 obrien hw watchpoints work unreliable under gdb o [2001/05/13] ports/27307 ports patch for mail/rblcheck ignores quiet fla o [2001/05/14] misc/27311 pthread_attr_setscope always fails o [2001/05/14] ports/27313 ports New port to ports collection: Geheimnis-2 o [2001/05/14] bin/27319 obrien df displays amd pid processes o [2001/05/14] docs/27320 doc excessively vague information in pppoe pa o [2001/05/14] ports/27323 trevor Port out of date. o [2001/05/14] ports/27326 reg Request upgrade of libtool to 1.4 in /usr o [2001/05/15] ports/27332 ports New port: swedish/staroffice52 o [2001/05/15] kern/27334 load average constantly above 1.0, even w o [2001/05/15] kern/27342 change-request o [2001/05/15] ports/27357 joe UPDATE net/jabber o [2001/05/16] bin/27374 Added bold color to the /bin/ls color sup o [2001/05/17] kern/27403 lpt driver doesn't handle flags anymore f [2001/05/17] docs/27410 doc On the book that comes with the 4.2 kit, o [2001/05/17] misc/27415 Mouse inop in X Windows o [2001/05/17] conf/27418 There are *no* examples of using /etc/tty o [2001/05/17] ports/27421 dirk UPDATE databases/mysql323-server o [2001/05/17] bin/27422 change request o [2001/05/17] bin/27423 change request a [2001/05/18] misc/27425 Slovak definitions of locale missing o [2001/05/18] kern/27429 'dependant' is a misspelling o [2001/05/18] docs/27430 doc Addition to the doc/sr_YU/articles tree o [2001/05/18] kern/27432 I don't understand one of the kernel boot o [2001/05/18] bin/27433 ps binary does not do what the man page s o [2001/05/18] ports/27437 ejc UPDATE devel/tcl81-thread o [2001/05/19] ports/27455 jim New port of everybuddy 0.2.1beta3 o [2001/05/19] ports/27461 ports UPDATE misc/dnetc o [2001/05/20] ports/27464 ports New Port: databases/adodb 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_ o [2001/05/20] ports/27477 ports IglooFTP uses Tux in certain icons a [2001/05/20] bin/27480 dd [PATCH] fixes to jot(1) from OpenBSD o [2001/05/20] bin/27482 /var/log/wtmp is not updated on logout o [2001/05/20] bin/27483 make sysinstall ask for the keymap at ins o [2001/05/20] bin/27489 patch for feature sysconf(_SC_NPROCESSORS o [2001/05/21] ports/27503 billf Upgrade ethereal to 0.8.18 and add option o [2001/05/21] ports/27523 dwcjr update to litestream, unretrievable distf o [2001/05/21] ports/27527 torstenb update for mpegaudio o [2001/05/21] ports/27532 ache UPDATE www/apache13 o [2001/05/22] ports/27533 markp tosh cannot fetch distfiles o [2001/05/22] ports/27539 roger h323 fails to build because of redefiniti o [2001/05/22] conf/27540 jkh /stand/sysinstall incorrectly updates /et f [2001/05/22] ports/27542 sobomax xmps should not require gnome o [2001/05/22] ports/27554 max UPDATE japanese/cdrom2 o [2001/05/22] ports/27556 kiri UPDATE japanese/gp o [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] docs/27572 luigi ipfw(8) manpage does not clearly state ch o [2001/05/23] ports/27573 ports The port of ascd dumped core o [2001/05/23] ports/27574 issei UPDATE security/ssh2 o [2001/05/23] ports/27581 dbaker UPDATE misc/proxyper o [2001/05/23] docs/27599 doc md(4) manpage enhancement o [2001/05/23] bin/27604 change truncate to support low case size o [2001/05/24] ports/27610 ports www/apache-jserv: some docs are installed o [2001/05/24] ports/27611 demon Bug in ports/devel/p5-Locale-gettext o [2001/05/24] ports/27612 dwcjr ports/www/wwwcount has a checksum error o [2001/05/24] kern/27615 darrenr ipf restricts rule-changing at secureleve a [2001/05/24] kern/27616 dd Syscons history permits peeking in the pr o [2001/05/24] ports/27619 marcel linux_base -- None of the files exist any 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] ports/27641 billf UPDATE irc/bnc to 2.8.4 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] ports/27658 torstenb UPDATE to mail/metamail o [2001/05/26] kern/27660 Kernel does not return error if adding du o [2001/05/26] ports/27664 jdp UPDATE lang/modula-3 f [2001/05/26] bin/27669 des Add a HTTP_USER_AGENT environment variabl o [2001/05/26] misc/27677 miss BIND name server library o [2001/05/26] docs/27678 murray Kobj documentation for the FreeBSD Develo o [2001/05/27] bin/27687 fsck wrapper is not properly passing opti o [2001/05/27] kern/27691 greid PCM0 driver with AC97 audio board: playba o [2001/05/27] bin/27697 assar trouble compiling libroken o [2001/05/27] ports/27699 vanilla p5-Gnome build fails o [2001/05/27] ports/27700 ports editors/nano 1.0.2 cut/paste patch needed o [2001/05/28] ports/27702 ports New port: databases/mysql2pgsql o [2001/05/28] ports/27703 ports UPDATE to audio/dap o [2001/05/28] ports/27707 bmah Bogus make errors while executing pkg_ver o [2001/05/28] gnu/27715 dwmalone UUCP doesn't recognize traditional BSD co o [2001/05/28] ports/27725 ports du reports halfsizes of shlight mounts o [2001/05/29] docs/27731 doc Incorrect example code in dev handbook ca o [2001/05/29] ports/27736 ports update japanese/hns 2.10.0 to 2.10.1 o [2001/05/29] ports/27737 ports New port: net/py-xmlrpclib f [2001/05/29] ports/27740 ports new port: isoqlog Qmail Log Analyzer o [2001/05/29] ports/27743 kuriyama UPDATE to converters/tcs o [2001/05/29] ports/27746 ports UPDATE to deskutils/zorro o [2001/05/29] ports/27748 ports Update port: java/orion (1.4.5_4 -> 1.4.5 o [2001/05/29] kern/27750 [PATCH] Promise Ultra100 TX2 unsupported o [2001/05/29] bin/27757 chapss(1) converts a large uid to a negat o [2001/05/29] docs/27758 doc ptrace(2) man page outdated o [2001/05/30] ports/27770 kiri UPDATE mail/prom-mew o [2001/05/30] ports/27772 kiri UPDATE mail/prom-wl o [2001/05/30] ports/27773 kris UPDATE www/adzap o [2001/05/30] ports/27774 ports MASTER_SITES update : benchmarks/xengine o [2001/05/30] kern/27777 gensetdefs.pl generates invalid code for f [2001/05/30] bin/27780 des [PATCH] fetch(1): don't divide by zero wh o [2001/05/31] kern/27792 n_hibma can't detect I-O DATA USB-ET/TX(USB Ether f [2001/05/31] bin/27796 brian Use of -v flag of date(1) can give non-in o [2001/05/31] ports/27797 ports MASTER_SITES update : devel/gvd o [2001/05/31] misc/27799 jkh Improve IP address checking in sysinstall o [2001/05/31] gnu/27803 Enhancement to sort(1) o [2001/05/31] ports/27805 ports New port: SQL-Ledger Accounting o [2001/06/01] conf/27811 bad order of rpc.lockd and rpc.statd star o [2001/06/01] ports/27814 ports New port: java/jdom o [2001/06/01] misc/27816 rpcgen -b generates server code which doe o [2001/06/01] ports/27822 nakai MASTER_SITES update : x11-wm/epplets o [2001/06/01] ports/27824 ports New port: pdftohtml and pdftops-converter o [2001/06/01] ports/27825 torstenb MASTER_SITES update : x11-wm/ctwm o [2001/06/01] ports/27828 ports /usr/ports/lang/eperl fails to build o [2001/06/01] misc/27829 kris pax's uid/gid cache is read-only o [2001/06/02] docs/27833 doc 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/27836 ports New port: Trafcount is loadable module fo o [2001/06/02] ports/27837 roam devel/entity port update o [2001/06/02] ports/27838 keichii dot.emacs is 600 o [2001/06/02] gnu/27842 cp has weird errors trying to copy from e o [2001/06/02] docs/27843 doc [PATCH] make.conf WITH_* variables aren't o [2001/06/02] kern/27847 acpi dislikes ASUS CUSL-2 o [2001/06/02] ports/27848 ports New port: du2ps - filter for converting o o [2001/06/02] kern/27849 dfr AGP RELEASE ioctl frees memory f [2001/06/02] ports/27850 dwcjr UPDATE misc/heyu o [2001/06/03] ports/27863 ports Delete net/netatalk-asun f [2001/06/03] ports/27867 roam email address change o [2001/06/03] ports/27868 ports New port: graphics/gdchart o [2001/06/04] misc/27872 "Load Config" (sysinstall) hangs Compaq D f [2001/06/04] ports/27876 fenner upgrade ports/net/tcptrace to 6.0.0a5 o [2001/06/04] ports/27877 ports New port: net/konverse (jabber client for o [2001/06/04] bin/27887 ipfw 'backup' option proposal o [2001/06/05] ports/27889 ports MASTER_SITES update : www/aolserver o [2001/06/05] kern/27894 remounting local filesystem causes nfsd t o [2001/06/05] ports/27897 motoyuki Please include some japanese documentatio o [2001/06/05] bin/27901 Add bzip2 hook to newsyslog(8) o [2001/06/06] ports/27903 peter Update: www/transproxy o [2001/06/06] kern/27906 NG_SEND_MSG_HOOK fails to set the return o [2001/06/06] bin/27907 mikeh /usr/bin/mail dumps core with a Seg Fault o [2001/06/06] ports/27909 portmgr bsd.ports.mk's fetch-list target is wrong o [2001/06/06] ports/27910 ports MASTER_SITE fix : mail/xfmail o [2001/06/06] kern/27912 darrenr ipfilter state table limits are too small o [2001/06/06] docs/27915 doc man 5 passwd does not properly explain th o [2001/06/06] ports/27916 ports pptpclient doesne't work with 4.3 Stable o [2001/06/06] ports/27918 ports Update to textproc/p5-XML-LibXML o [2001/06/06] docs/27919 n_hibma missing usb man pages o [2001/06/06] ports/27920 dwcjr gcombust port update 0.1.42->45 [MAINTAIN o [2001/06/06] docs/27921 doc manpage skey(1) should be skey(7) o [2001/06/07] ports/27927 ports new port: textproc/p5-XML-LibXSLT o [2001/06/07] ports/27928 ports new port: www/p5-AxKit o [2001/06/07] alpha/27930 obrien 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 o [2001/06/07] ports/27935 ports New port: palm/plucker o [2001/06/07] ports/27936 ports Update /usr/ports/deskutils/xmdiary 3.0.1 a [2001/06/07] docs/27937 dd A minor inconsistency in the sysctl(8) ma o [2001/06/07] ports/27941 roam [PATCH] configure fails for fetchmail-5.8 a [2001/06/07] ports/27942 dwcjr New version of graphics/landscape o [2001/06/07] ports/27950 dwcjr New port: mail/rmoldmail o [2001/06/07] ports/27951 ports Update port: linux-lesstif-ns o [2001/06/08] ports/27955 ports Update & New port : net/py-xmlrpc and net o [2001/06/08] ports/27956 ports New port:A messenging client supporting A o [2001/06/08] ports/27957 ports Port update: biology/py-biopython (MAINTA o [2001/06/08] conf/27959 Add cygwin termcap entry o [2001/06/08] ports/27962 ports openldap-1.2.11_2 has pid file in the wro o [2001/06/08] ports/27963 ports Update port www/mod_layout to 2.10.6 o [2001/06/08] bin/27970 cp -pR does not preserve modification tim o [2001/06/08] bin/27972 losing information with talk o [2001/06/08] ports/27976 taoka Update port print/bjfiltercom to version o [2001/06/08] ports/27978 ports Fix lib_depends in www/cadaver o [2001/06/08] ports/27981 ports New port: xmakemol - a motif molecule vie a [2001/06/08] bin/27982 dd dump(8) doesn't seem to correctly grok th o [2001/06/08] kern/27983 [PATCH] make gif fully dynamic o [2001/06/08] ports/27984 ports NEW PORT: tmda - Python-based SPAM reduct a [2001/06/08] bin/27986 dd date usage string is missing -j o [2001/06/09] ports/27993 ports New Ports: bcwip o [2001/06/09] ports/27996 ports nss_ldap port would be needed o [2001/06/09] ports/27998 ports New port: www/mod_extract_forwarded o [2001/06/09] docs/28000 doc adding and changing information in vidcon o [2001/06/10] bin/28007 added "force printing of non-print chars" o [2001/06/10] ports/28009 ports New port : libkmsn o [2001/06/10] ports/28010 ports New port - kmsn - MSN instant messenger c o [2001/06/10] ports/28011 roam New port: net/amyc o [2001/06/10] ports/28016 jedgar Update port: graphics/pngcrush o [2001/06/10] ports/28018 jedgar Update port: mail/grepmail o [2001/06/10] pending/28020gnats-adminNew port: print/pcal - PostScript calenda o [2001/06/10] ports/28022 ports New port: games/prboom o [2001/06/10] i386/28023 sendmail tries to get the netgraph.ko mod o [2001/06/10] ports/28025 ports New port: net/spread o [2001/06/10] bin/28026 Graphics mode suspend causes weird hang o o [2001/06/10] ports/28028 dwcjr Fix pam_ldap's configuration file o [2001/06/11] ports/28036 ports New port nylon a socks 5 proxy o [2001/06/11] ports/28037 ports Update port astro/tkseti to 3.02 o [2001/06/11] ports/28038 ports Update port: biology/gperiodic to 1.2.6a o [2001/06/11] ports/28039 ports Update port: cad/xcircuit to 2.3 o [2001/06/11] ports/28040 knu Update port: databases/unixODBC to 2.0.7 o [2001/06/11] ports/28041 ports Update port: devel/cxref to 1.5c o [2001/06/11] ports/28042 ports Update port: devel/picprog to 1.0.1 o [2001/06/11] ports/28043 ports Update port: emulators/atari800 to 1.0.7 o [2001/06/11] ports/28044 ports Update port: ftp/yafc to 0.7.1 o [2001/06/11] ports/28047 ports Update port: graphics/ImageMagick to 5.3. o [2001/06/11] ports/28048 ports Update port: graphics/epstool to 1.80 o [2001/06/11] ports/28049 ports Update port: graphics/gifsicle to 1.29 o [2001/06/11] ports/28050 ports Update port: graphics/gnofract4d to 1.5 o [2001/06/11] ports/28052 ports Update port: graphics/xfig to 3.2.3d o [2001/06/11] ports/28053 ports Update port: graphics/xzgv to 0.7 o [2001/06/11] ports/28054 ports Update port: mail/althea to 0.5.2 o [2001/06/11] ports/28055 ports Update port: math/plplot to 5.0.3 o [2001/06/11] ports/28056 ports Update port: misc/kcd to 5.0.3 o [2001/06/11] ports/28057 ports New port: news/p5-News-NNTPClient o [2001/06/11] ports/28058 ports Update port: misc/kwatch to 2.0.1 o [2001/06/11] ports/28059 ports Update port: misc/ytree to 1.73 o [2001/06/11] ports/28060 ports Update port: net/kdetelnet to 2.0.43 o [2001/06/11] ports/28061 ports Update port: print/transfig to 3.2.3d o [2001/06/11] ports/28062 ports Update port: textproc/aspell to 0.33.6.3 o [2001/06/11] ports/28063 ports Update port: x11-fm/dfm to 0.99.9 o [2001/06/11] ports/28064 ports Update port: x11-fm/endeavour to 1.30.0 o [2001/06/11] ports/28065 ports Update port: x11-wm/icewm o [2001/06/11] ports/28066 ports Update port: x11-wm/xfce o [2001/06/11] ports/28067 ports New port: news/newsgrab o [2001/06/11] ports/28068 ports Update port: audio/teknap o [2001/06/11] ports/28069 ports Update port: audio/teknap o [2001/06/11] pending/28070gnats-adminsuport Pentium3 SSE o [2001/06/11] ports/28071 greid Update port: net/ettercap o [2001/06/11] ports/28072 ports Fix compile error for games/glasteroids o [2001/06/11] ports/28073 ports Fix compile error for x11-clocks/glclock o [2001/06/11] ports/28074 ports Fix compile errors for games/gleyes o [2001/06/11] ports/28075 ports Fix Depends for news/glitter o [2001/06/11] ports/28076 ports Fix port emulators/ia64sim o [2001/06/11] ports/28077 ports Update port astro/sunclock o [2001/06/11] conf/28078 /stand/sysinstall skips distro selection 1828 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 Jun 11 11:13:51 2001 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 D08CC37B40A; Mon, 11 Jun 2001 11:13:44 -0700 (PDT) (envelope-from greid@FreeBSD.org) Received: (from greid@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BIDiD03224; Mon, 11 Jun 2001 11:13:44 -0700 (PDT) (envelope-from greid) Date: Mon, 11 Jun 2001 11:13:44 -0700 (PDT) From: Message-Id: <200106111813.f5BIDiD03224@freefall.freebsd.org> To: greid@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/28070: suport Pentium3 SSE 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: suport Pentium3 SSE Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: greid Responsible-Changed-When: Mon Jun 11 11:13:08 PDT 2001 Responsible-Changed-Why: Misfiled http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28070 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 12:21:26 2001 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 1AEF037B401; Mon, 11 Jun 2001 12:21:25 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BJLOx12256; Mon, 11 Jun 2001 12:21:24 -0700 (PDT) (envelope-from phk) Date: Mon, 11 Jun 2001 12:21:24 -0700 (PDT) From: Message-Id: <200106111921.f5BJLOx12256@freefall.freebsd.org> To: darren780@bolt.com, phk@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/17235: endless loop? harddrive corrupted? 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: endless loop? harddrive corrupted? State-Changed-From-To: open->closed State-Changed-By: phk State-Changed-When: Mon Jun 11 12:21:17 PDT 2001 State-Changed-Why: timed out http://www.FreeBSD.org/cgi/query-pr.cgi?pr=17235 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 13:10:16 2001 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 5FE2837B40C for ; Mon, 11 Jun 2001 13:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BKA1a19176; Mon, 11 Jun 2001 13:10:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2EB3F37B405 for ; Mon, 11 Jun 2001 13:07:51 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BK7pv18947; Mon, 11 Jun 2001 13:07:51 -0700 (PDT) (envelope-from nobody) Message-Id: <200106112007.f5BK7pv18947@freefall.freebsd.org> Date: Mon, 11 Jun 2001 13:07:51 -0700 (PDT) From: cynic@mail.cz To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/28081: /stand/sysinstall errs out if /cdrom/ already mounted 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: 28081 >Category: conf >Synopsis: /stand/sysinstall errs out if /cdrom/ already mounted >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 Jun 11 13:10:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Roman Neuhauser >Release: 4.3-RELEASE >Organization: >Environment: FreeBSD freepuppy.local 4.3-RELEASE FreeBSD 4.3-RELEASE #2: Mon Jun 11 13:02:42 CEST 2001 toor@freepuppy.local:/usr/src/sys/compile/FREEPUPPY i386 >Description: if you mount the install CD, and then enter the Packages item in /stand/sysinstall you get a warning that the CD probably isn't an install CD, and whether to continue anyway. if you choose "yes", another msgbox pops up saying that it could not locate INDEX. >How-To-Repeat: # mount /cdrom # /stand/sysinstall (select "Packages") >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 Jun 11 13:10:21 2001 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 C885E37B40D for ; Mon, 11 Jun 2001 13:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BKA1619185; Mon, 11 Jun 2001 13:10:01 -0700 (PDT) (envelope-from gnats) Received: from coffee.q9media.com (coffee.q9media.com [216.94.229.19]) by hub.freebsd.org (Postfix) with ESMTP id D728937B405 for ; Mon, 11 Jun 2001 13:07:51 -0700 (PDT) (envelope-from mike@coffee.q9media.com) Received: (from mike@localhost) by coffee.q9media.com (8.11.2/8.11.2) id f5BKITm67332; Mon, 11 Jun 2001 16:18:29 -0400 (EDT) (envelope-from mike) Message-Id: <200106112018.f5BKITm67332@coffee.q9media.com> Date: Mon, 11 Jun 2001 16:18:29 -0400 (EDT) From: mike@q9media.com Reply-To: mike@q9media.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/28082: [patch] src/usr.bin/whois clean-up 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: 28082 >Category: bin >Synopsis: [patch] src/usr.bin/whois clean-up >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 Jun 11 13:10:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Mike Barcroft >Release: FreeBSD 5.0-CURRENT i386 >Organization: Q9 Media >Environment: $FreeBSD: /c/ncvs/src/usr.bin/whois/Makefile,v 1.3 1999/11/17 19:11:51 ache Exp $ $FreeBSD: /c/ncvs/src/usr.bin/whois/whois.c,v 1.18 2001/06/01 13:43:20 ume Exp $ >Description: The following patch has been sent to -audit. Reviewed by mikeh and gad. All problems brought up were resolved. 20010605 whois.patch o Silence warnings and set WARNS=2 o Fix two memory leaks o asprint -> strdup where appropriate o calloc/strcpy/strcat -> aprintf o Convert to ANSI C to avoid having to prototype main() o Fix two minor tab issues >How-To-Repeat: >Fix: Index: whois/Makefile =================================================================== RCS file: /home/ncvs/src/usr.bin/whois/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- whois/Makefile 1999/11/17 19:11:51 1.3 +++ whois/Makefile 2001/06/05 05:06:59 @@ -2,8 +2,8 @@ # $FreeBSD: src/usr.bin/whois/Makefile,v 1.3 1999/11/17 19:11:51 ache Exp $ PROG= whois +WARNS?= 2 -CFLAGS+=-Wall .if defined(SOCKS) CFLAGS+=-DSOCKS CFLAGS+=-Dconnect=Rconnect -Dgetsockname=Rgetsockname -Dlisten=Rlisten \ Index: whois/whois.c =================================================================== RCS file: /home/ncvs/src/usr.bin/whois/whois.c,v retrieving revision 1.18 diff -u -r1.18 whois.c --- whois/whois.c 2001/06/01 13:43:20 1.18 +++ whois/whois.c 2001/06/05 05:07:00 @@ -75,17 +75,15 @@ #define WHOIS_INIC_FALLBACK 0x02 #define WHOIS_QUICK 0x04 -static void usage __P((void)); -static void whois __P((char *, struct addrinfo *, int)); +static void usage(void); +static void whois(char *, struct addrinfo *, int); int -main(argc, argv) - int argc; - char **argv; +main(int argc, char *argv[]) { int ch, i, j, error; int use_qnichost, flags; - char *host; + const char *host; char *qnichost; struct addrinfo hints, *res; @@ -157,10 +155,6 @@ } while (argc--) { if (use_qnichost) { - if (qnichost) { - free(qnichost); - qnichost = NULL; - } for (i = j = 0; (*argv)[i]; i++) { if ((*argv)[i] == '.') { j = i; @@ -168,17 +162,16 @@ } if (j != 0) { if (isdigit(*(*argv + j + 1))) { - (void) asprintf(&qnichost, "%s", - ANICHOST); + qnichost = strdup(ANICHOST); + if (qnichost == NULL) { + err(1, "strdup"); + } } else { - qnichost = (char *) calloc(i - j - + 1 + strlen(QNICHOST_TAIL), - sizeof(char)); - if (!qnichost) { - err(1, "calloc"); + (void)asprintf(&qnichost, "%s%s", + *argv + j + 1, QNICHOST_TAIL); + if (qnichost == NULL) { + err(1, "asprintf"); } - strcpy(qnichost, *argv + j + 1); - strcat(qnichost, QNICHOST_TAIL); } memset(&hints, 0, sizeof(hints)); @@ -186,10 +179,10 @@ hints.ai_family = AF_UNSPEC; hints.ai_socktype = SOCK_STREAM; error = getaddrinfo(qnichost, "whois", - &hints, &res); + &hints, &res); if (error != 0) errx(EX_NOHOST, "%s: %s", qnichost, - gai_strerror(error)); + gai_strerror(error)); } } if (!qnichost) { @@ -203,6 +196,8 @@ gai_strerror(error)); } + free(qnichost); + qnichost = NULL; whois(*argv++, res, flags); freeaddrinfo(res); } @@ -210,10 +205,7 @@ } static void -whois(name, res, flags) - char *name; - struct addrinfo *res; - int flags; +whois(char *name, struct addrinfo *res, int flags) { FILE *sfi, *sfo; char *buf, *p, *nhost; @@ -277,7 +269,10 @@ /* Do second lookup as needed */ if (nomatch && !nhost) { (void)printf("Looking up %s at %s.\n\n", name, INICHOST); - nhost = INICHOST; + nhost = strdup(INICHOST); + if (nhost == NULL) { + err(1, "strdup"); + } } if (nhost) { struct addrinfo hints, *res2; @@ -301,7 +296,7 @@ } static void -usage() +usage(void) { (void)fprintf(stderr, "usage: whois [-adgimpQrR6] [-h hostname] name ...\n"); >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 Jun 11 14:35:13 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp01.mrf.mail.rcn.net (smtp01.mrf.mail.rcn.net [207.172.4.60]) by hub.freebsd.org (Postfix) with ESMTP id 10A7D37B40D; Mon, 11 Jun 2001 14:35:03 -0700 (PDT) (envelope-from pmarquis@pobox.com) Received: from 146-115-120-232.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([146.115.120.232] helo=sboy.pmarquis.com) by smtp01.mrf.mail.rcn.net with smtp (Exim 3.16 #6) id 159ZKw-0005a0-00 ; Mon, 11 Jun 2001 17:35:02 -0400 Content-Type: text/plain; charset="iso-8859-1" From: Paul Marquis To: Ruslan Ermilov Subject: Re: misc/28035: make buildworld fails on 4.2-RELEASE -> RELENG_4 Date: Mon, 11 Jun 2001 17:36:57 -0400 X-Mailer: KMail [version 1.2] Cc: freebsd-bugs@freeBSD.org References: <200106111616.f5BGGs781480@freefall.freebsd.org> <01061113252003.00418@sboy.pmarquis.com> <20010611210125.A27882@sunbay.com> In-Reply-To: <20010611210125.A27882@sunbay.com> MIME-Version: 1.0 Message-Id: <01061114582203.08564@sboy.pmarquis.com> Content-Transfer-Encoding: 8bit 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 just removed my src and obj dirs and did a clean checkout and though it's still failing, it gets by the problem I've been seeing (it's now failing with "rm: security: is a directory" problem recently reported on stable). FWIW, I originally tried updating by checking out the sources into a directory other than /usr/src (/share/src) and building from there. The manual says this should work -- could this be the problem? On Monday 11 June 2001 14:01, Ruslan Ermilov wrote: > This is definitely a bug on your side. Are you sure you're > doing a `make buildworld' and not `make all'? > > `buildworld' stage of Makefile.inc1 installs new headers into > ${WORLDTMP}/usr/include directory, which is usually points to > /usr/obj/usr/src/i386/usr/include. Then, all is built with > DESTDIR=${WORLDTMP} which causes bsd.prog.mk and bsd.lib.mk > to add CFLAGS+=-I${DESTDIR}/usr/include, so you should see > the -I/usr/obj/usr/src/i386/usr/include line in the `buildworld' > output. Note the missing -I in your output after a -DNO_IDEA. > Here is the correct output you should see: > > cc -nostdinc -O -pipe > -I/usr/src/secure/lib/libcrypt/../../../lib/libmd > -I/usr/src/secure/lib/libcrypt/../../../lib/libcrypt -DHAS_BLOWFISH > -DHAS_DES -DLIBC_SCCS -Wall -DMD5Init=__MD5Init > -DMD5Final=__MD5Final -DMD5Update=__MD5Update -DMD5Pad=__MD5Pad > -Dauth_getval=__auth_getval -Dproperty_find=__property_find > -Dproperties_read=__properties_read > -Dproperties_free=__properties_free -DNO_IDEA > -I/usr/obj/usr/src/i386/usr/include -c > /usr/src/secure/lib/libcrypt/../../../lib/libcrypt/crypt.c -o > crypt.o > > On Mon, Jun 11, 2001 at 01:55:14PM -0400, Paul Marquis wrote: > > They may get installed properly during a buildworld (or should > > that be installworld), but without my patch, the libcrypt library > > gets built against some headers in /usr/include, specifically > > libutil.h, and can't even be built! > > > > Between 4.2-RELEASE and 4.3-RELEASE, the following log entry > > appears for libutil.h: > > > > 1.29 - Added PROPERTY_MAX_VALUE and PROPERTY_MAX_NAME > > defines to libutil.h so that applications know how large > > of a buffer they must allocate before calling > > property_find(). Also added a $FreeBSD$ tag while I'm here. > > > > Thus, in 4.2-RELEASE, PROPERTY_MAX_VALUE and PROPERTY_MAX_NAME > > are not defined in /usr/include/libutil.h. > > > > After upgrading my sources to STABLE, when I do a make buildworld > > without my patch, the compiler uses libutil.h from /usr/include > > for the files built in lib/libcrypt. Some of those files use the > > above macros, and since they're not defined in libutil.h from > > /usr/include, the following errors occur: > > > > cc -O -pipe -I/usr/src/secure/lib/libcrypt/../../../lib/libmd > > -I/usr/src/secure/lib/libcrypt/../../../lib/libcrypt > > -DHAS_BLOWFISH -DHAS_DES -DLIBC_SCCS -Wall -DMD5Init=__MD5Init > > -DMD5Final=__MD5Final -DMD5Update=__MD5Update -DMD5Pad=__MD5Pad > > -Dauth_getval=__auth_getval -Dproperty_find=__property_find > > -Dproperties_read=__properties_read > > -Dproperties_free=__properties_free -DNO_IDEA -c > > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c -o > > property.o > > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c: In > > function `__properties_read': > > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:60: > > `PROPERTY_MAX_NAME' undeclared (first use in this function) > > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:60: > > (Each undeclared identifier is reported only once > > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:60: > > for each function it appears in.) > > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:60: > > size of array `hold_n' has non-integer type > > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:61: > > `PROPERTY_MAX_VALUE' undeclared (first use in this function) > > /usr/src/secure/lib/libcrypt/../../../lib/libutil/property.c:61: > > size of array `hold_v' has non-integer type: > > > > This is definitely a bug. Please don't just close it. > > > > On Monday 11 June 2001 12:16, ru@FreeBSD.org wrote: > > > Synopsis: make buildworld fails on 4.2-RELEASE -> RELENG_4 > > > > > > State-Changed-From-To: open->closed > > > State-Changed-By: ru > > > State-Changed-When: Mon Jun 11 09:15:27 PDT 2001 > > > State-Changed-Why: > > > Proper set of header files is installed during `buildworld' > > > into ${WORLDTMP} (/usr/obj/usr/src/i386/usr/include). > > > > > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28035 > > > > -- > > Paul Marquis > > pmarqus@pobox.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 15:40:25 2001 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 375B537B412 for ; Mon, 11 Jun 2001 15:40:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BMe8f47020; Mon, 11 Jun 2001 15:40:08 -0700 (PDT) (envelope-from gnats) Date: Mon, 11 Jun 2001 15:40:08 -0700 (PDT) Message-Id: <200106112240.f5BMe8f47020@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Michael Tokarev Subject: Re: bin/27972: talk feature Reply-To: Michael Tokarev 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/27972; it has been noted by GNATS. From: Michael Tokarev To: sebster@sebster.com Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/27972: talk feature Date: Tue, 12 Jun 2001 02:35:54 +0400 sebster@sebster.com wrote: > [] > >Description: > Using the talk utility it is possible to communicate to other users, however > if they have something to say that is longer than your buffer you lose the > information without any way to check what was said. > >How-To-Repeat: > Say a lot to somebody in a talk window in a short amount of time. > >Fix: > A very simple fix which would make talk about 1000 times more convenient > (IMHO) would be to flip the windows: put "me" in the bottom, and "him" in > the top window. That way, whether you are on the console or in an xterm, > you can scroll back to see what the other person said. Please take a look to e.g. talk in linux's netkit package. Talk there has "slightly" different feature that is "the right thing(TM)" to do IMHO: it can scroll both half-windows of its own, using ^P and ^N for other window and M-P and M-N for my window. Don't know how many lines it remembers, maybe even all conversation... I also saw a version of talk that displays tiny scrollbars (all in textmode) and allows to click to it with a mouse. BTW, I don't know how to properly respond to such messages and gnats... ;) Regards, Michael. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 15:40:30 2001 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 DFD9437B40C for ; Mon, 11 Jun 2001 15:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5BMe1146970; Mon, 11 Jun 2001 15:40:01 -0700 (PDT) (envelope-from gnats) Received: from h132-197-97-45.gte.com (h132-197-97-45.gte.com [132.197.97.45]) by hub.freebsd.org (Postfix) with ESMTP id B369537B401; Mon, 11 Jun 2001 15:31:03 -0700 (PDT) (envelope-from ak03@gte.com) Received: (from ak03@localhost) by h132-197-97-45.gte.com (8.11.4/8.11.4) id f5BMV2k00928; Mon, 11 Jun 2001 18:31:02 -0400 (EDT) (envelope-from ak03) Message-Id: <200106112231.f5BMV2k00928@h132-197-97-45.gte.com> Date: Mon, 11 Jun 2001 18:31:02 -0400 (EDT) From: "Alexander N. Kabaev" Reply-To: "Alexander N. Kabaev" To: FreeBSD-gnats-submit@freebsd.org Cc: cg@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/28084: Two possible PCM problems and 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 >Number: 28084 >Category: kern >Synopsis: Two possible PCM problems and patch >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 Jun 11 15:40:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Alexander N. Kabaev >Release: FreeBSD 5.0-CURRENT i386 >Organization: Verizon Information Technology >Environment: System: FreeBSD kanpc.gte.com 5.0-CURRENT FreeBSD 5.0-CURRENT #21: Fri Jun 8 12:48:33 EDT 2001 root@kanpc.gte.com:/usr/src/sys/compile/KANPC i386 >Description: There are three possible promlems in the -CURRENT PCM code a) pcm_chn_add deletes channel passed to it as a parameter, even though all pcm_chn_add callers call pcm_chn_destroy themselves when pcm_chn_add fails. pcm_chn_destroy then attempts to delete pcm_channel struct which already has been deleted b) dynamic sysctl handler for the number of virtual channels does not resize d->arec and d->aplay arrays. The code like d->aplay[chan] is used all over the place in PCM, and in presence of dynamically allocated vchannels channel number can be bigger than d->maxchan which is statically computed in pcm_register based of the number of actual hardware channels. c) When creating additional vchannels, the code sets CHN_F_BUSY flag _before_ calling vchan_create and fails to clean that flag when vchan_create returns error and no other vchannels weres created, thus leaving the parent channel permanently busy. >How-To-Repeat: N/A >Fix: Attached patch patch tries to address the above problems. With patch applied I was able to run my sbc16 sound card with 4 vchannels all playing simultaneously :) Index: pcm/sound.c =================================================================== RCS file: /usr/ncvs/src/sys/dev/sound/pcm/sound.c,v retrieving revision 1.48 diff -u -r1.48 sound.c --- pcm/sound.c 2001/06/10 15:48:03 1.48 +++ pcm/sound.c 2001/06/11 20:09:47 @@ -345,10 +345,8 @@ int unit = device_get_unit(d->dev); sce = malloc(sizeof(*sce), M_DEVBUF, M_WAITOK | M_ZERO); - if (!sce) { - free(ch, M_DEVBUF); + if (!sce) return ENOMEM; - } snd_mtxlock(d->lock); sce->channel = ch; Index: pcm/vchan.c =================================================================== RCS file: /usr/ncvs/src/sys/dev/sound/pcm/vchan.c,v retrieving revision 1.2 diff -u -r1.2 vchan.c --- pcm/vchan.c 2001/06/07 20:06:22 1.2 +++ pcm/vchan.c 2001/06/11 22:07:31 @@ -331,8 +331,8 @@ { struct snddev_info *d; struct snddev_channel *sce; - struct pcm_channel *c; - int err, newcnt, cnt; + struct pcm_channel *c, **arec, **aplay; + int err, newcnt, cnt, sz; d = oidp->oid_arg1; @@ -373,12 +373,36 @@ snd_mtxunlock(d->lock); return EBUSY; addok: + if (d->maxchans < (d->chancount + newcnt - cnt)) { + sz = (d->chancount + newcnt - cnt) * + sizeof(struct pcm_channel *); + aplay = (struct pcm_channel **) + malloc(sz, M_DEVBUF, M_WAITOK | M_ZERO); + arec = (struct pcm_channel **) + malloc(sz, M_DEVBUF, M_WAITOK | M_ZERO); + if (!arec || !aplay) { + if (aplay) free(aplay, M_DEVBUF); + if (arec) free(arec, M_DEVBUF); + return ENOMEM; + } + sz = d->maxchans * sizeof(struct pcm_channel *); + bcopy(d->arec, arec, sz); + bcopy(d->aplay, aplay, sz); + free(d->arec, M_DEVBUF); + free(d->aplay, M_DEVBUF); + d->arec = arec; + d->aplay = aplay; + d->maxchans = d->chancount + newcnt - cnt; + } c->flags |= CHN_F_BUSY; while (err == 0 && newcnt > cnt) { err = vchan_create(c); if (err == 0) cnt++; } + /* Clear parent busy flag if no children were created */ + if (SLIST_EMPTY(&c->children)) + c->flags &= ~CHN_F_BUSY; } else if (newcnt < cnt) { while (err == 0 && newcnt < cnt) { SLIST_FOREACH(sce, &d->channels, link) { >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 Jun 11 19: 0:19 2001 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 E2AE537B405 for ; Mon, 11 Jun 2001 19:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5C205W75781; Mon, 11 Jun 2001 19:00:05 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A75A37B401 for ; Mon, 11 Jun 2001 18:56:22 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5C1uMM75577; Mon, 11 Jun 2001 18:56:22 -0700 (PDT) (envelope-from nobody) Message-Id: <200106120156.f5C1uMM75577@freefall.freebsd.org> Date: Mon, 11 Jun 2001 18:56:22 -0700 (PDT) From: bugs@canyoncountry.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/28087: Fatal trap 12: page fault while in kernel 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: 28087 >Category: kern >Synopsis: Fatal trap 12: page fault while in kernel mode >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 Jun 11 19:00:05 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Gerry Allen >Release: 4.1 >Organization: Canyon Country Communications >Environment: FreeBSD page3.canyoncountry.net 4.1-RELEASE FreeBSD 4.1-RELEASE #8: Sun Jun 10 00:36:31 MST 2001 root@page3. canyoncountry.net:/usr/src/sys/compile/PAGE3 i386 >Description: (508 / 8) [/sys/compile/PAGE3]$: gdb -k kernel.debug /var/crash/vmcore.13 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 3506176 initial pcb at 2cdec0 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0xc093c000 fault code = supervisor read, page not present instruction pointer = 0x8:0xc01abf5d stack pointer = 0x10:0xc02ab4b4 frame pointer = 0x10:0xc02ab4ec 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 = net tty trap number = 12 panic: page fault syncing disks... 7 7 done Uptime: 1d3h33m21s dumping to dev #ad/0x20001, offset 786432 dump ata0: resetting devices .. done 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 2 6 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 boot (howto=256) at ../../kern/kern_shutdown.c:302 302 dumppcb.pcb_cr3 = rcr3(); (kgdb) where #0 boot (howto=256) at ../../kern/kern_shutdown.c:302 #1 0xc0144ebc in poweroff_wait (junk=0xc02a346f, howto=0) at ../../kern/kern_shutdown.c:552 #2 0xc026c519 in trap_fatal (frame=0xc02ab474, eva=3230908416) at ../../i386/i386/trap.c:927 #3 0xc026c1f1 in trap_pfault (frame=0xc02ab474, usermode=0, eva=3230908416) at ../../i386/i386/trap.c:820 #4 0xc026bdef in trap (frame={tf_fs = -1050542064, tf_es = 16, tf_ds = -1070989296, tf_edi = -1064058908, tf_esi = 0, tf_ebp = -1070942996, tf_isp = -1070943072, tf_ebx = 0, tf_edx = -1070942948, tf_ecx = -1070942952, tf_eax = 905904131, tf_trapno = 12, tf_err = 0, tf_eip = -1071988899, tf_cs = 8, tf_eflags = 66118, tf_esp = 2461, tf_ss = 3862}) at ../../i386/i386/trap.c:426 #5 0xc01abf5d in fr_makefrip (hlen=20, ip=0xc093bfe4, fin=0xc02ab518) at ../../netinet/fil.c:258 #6 0xc01b1d1c in fr_checkicmpmatchingstate (ip=0xc093bfc8, fin=0xc02ab628) at ../../netinet/ip_state.c:1032 #7 0xc01b20cd in fr_checkstate (ip=0xc093bfc8, fin=0xc02ab628) at ../../netinet/ip_state.c:1194 #8 0xc01acb4c in fr_check (ip=0xc093bfc8, hlen=20, ifp=0xc14f6000, out=1, mp=0xc02ab6e4) at ../../netinet/fil.c:887 #9 0xc01a0c00 in ip_output (m0=0xc093bf00, opt=0x0, ro=0xc02ab724, flags=0, imo=0x0) at ../../netinet/ip_output.c:437 #10 0xc019edc2 in icmp_send (m=0xc093bf00, opts=0x0) at ../../netinet/ip_icmp.c:748 #11 0xc019ed43 in icmp_reflect (m=0xc093bf00) at ../../netinet/ip_icmp.c:710 #12 0xc019e66c in icmp_error (n=0xc0931a00, type=11, code=0, dest=0, destifp=0x0) at ../../netinet/ip_icmp.c:220 #13 0xc01a0429 in ip_forward (m=0xc0931a00, srcrt=0) at ../../netinet/ip_input.c:1508 #14 0xc019f566 in ip_input (m=0xc0931a00) at ../../netinet/ip_input.c:570 #15 0xc0199a46 in transmit_event (pipe=0xc1586e00) at ../../netinet/ip_dummynet.c:399 #16 0xc0199c37 in ready_event (q=0xc16b6500) at ../../netinet/ip_dummynet.c:525 ---Type to continue, or q to quit--- #17 0xc019a96b in dummynet_io (pipe_nr=5, dir=2, m=0xc0931a00, ifp=0x0, ro=0x0, dst=0x0, rule=0xc14f98e0, flags=0) at ../../netinet/ip_dummynet.c:1062 #18 0xc019f361 in ip_input (m=0xc0931a00) at ../../netinet/ip_input.c:413 #19 0xc019f8cf in ipintr () at ../../netinet/ip_input.c:766 #20 0xc0262255 in swi_net_next () (kgdb) up 4 #4 0xc026bdef in trap (frame={tf_fs = -1050542064, tf_es = 16, tf_ds = -1070989296, tf_edi = -1064058908, tf_esi = 0, tf_ebp = -1070942996, tf_isp = -1070943072, tf_ebx = 0, tf_edx = -1070942948, tf_ecx = -1070942952, tf_eax = 905904131, tf_trapno = 12, tf_err = 0, tf_eip = -1071988899, tf_cs = 8, tf_eflags = 66118, tf_esp = 2461, tf_ss = 3862}) at ../../i386/i386/trap.c:426 426 (void) trap_pfault(&frame, FALSE, eva); (kgdb) list 421 kernel_trap: 422 /* kernel trap */ 423 424 switch (type) { 425 case T_PAGEFLT: /* page fault */ 426 (void) trap_pfault(&frame, FALSE, eva); 427 return; 428 429 case T_DNA: 430 #if NNPX > 0 (kgdb) up #5 0xc01abf5d in fr_makefrip (hlen=20, ip=0xc093bfe4, fin=0xc02ab518) at ../../netinet/fil.c:258 258 fi->fi_dst.in6 = ip6->ip6_dst; (kgdb) list 253 p = ip6->ip6_nxt; 254 fi->fi_p = p; 255 fi->fi_ttl = ip6->ip6_hlim; 256 tcp = (tcphdr_t *)(ip6 + 1); 257 fi->fi_src.in6 = ip6->ip6_src; 258 fi->fi_dst.in6 = ip6->ip6_dst; 259 fin->fin_id = (u_short)(ip6->ip6_flow & 0xffff); 260 fi->fi_tos = 0; 261 fi->fi_fl = 0; 262 plen = ntohs(ip6->ip6_plen); (kgdb) up #6 0xc01b1d1c in fr_checkicmpmatchingstate (ip=0xc093bfc8, fin=0xc02ab628) at ../../netinet/ip_state.c:1032 1032 fr_makefrip(oip->ip_hl << 2, oip, &ofin); (kgdb) list 1027 hv += icmp->icmp_id; 1028 hv += icmp->icmp_seq; 1029 hv %= fr_statesize; 1030 1031 oip->ip_len = ntohs(oip->ip_len); 1032 fr_makefrip(oip->ip_hl << 2, oip, &ofin); 1033 oip->ip_len = htons(oip->ip_len); 1034 ofin.fin_ifp = fin->fin_ifp; 1035 ofin.fin_out = !fin->fin_out; 1036 ofin.fin_mp = NULL; /* if dereferenced, panic XXX */ (kgdb) up #7 0xc01b20cd in fr_checkstate (ip=0xc093bfc8, fin=0xc02ab628) at ../../netinet/ip_state.c:1194 1194 fr = fr_checkicmpmatchingstate(ip, fin); (kgdb) list 1189 #ifdef USE_INET6 1190 if (v == 6) 1191 fr = fr_checkicmp6matchingstate((ip6_t *)ip, fin); 1192 else 1193 #endif 1194 fr = fr_checkicmpmatchingstate(ip, fin); 1195 if (fr) 1196 return fr; 1197 break; 1198 case IPPROTO_TCP : (kgdb) up #8 0xc01acb4c in fr_check (ip=0xc093bfc8, hlen=20, ifp=0xc14f6000, out=1, mp=0xc02ab6e4) at ../../netinet/fil.c:887 887 if (apass || (!(fr = ipfr_knownfrag(ip, fin)) && (kgdb) list 882 (fr_scanlist(FR_NOMATCH, ip, fin, m) & FR_ACCOUNT)) { 883 ATOMIC_INCL(frstats[0].fr_acct); 884 } 885 } 886 887 if (apass || (!(fr = ipfr_knownfrag(ip, fin)) && 888 !(fr = fr_checkstate(ip, fin)))) { 889 /* 890 * If a packet is found in the auth table, then skip checking 891 * the access lists for permission but we do need to consider (kgdb) up #9 0xc01a0c00 in ip_output (m0=0xc093bf00, opt=0x0, ro=0xc02ab724, flags=0, imo=0x0) at ../../netinet/ip_output.c:437 437 if ((error = (*fr_checkp)(ip, hlen, ifp, 1, &m1)) || !m1) (kgdb) list 432 * - Encapsulate: put it in another IP and send out. 433 */ 434 if (fr_checkp) { 435 struct mbuf *m1 = m; 436 437 if ((error = (*fr_checkp)(ip, hlen, ifp, 1, &m1)) || !m1) 438 goto done; 439 ip = mtod(m = m1, struct ip *); 440 } 441 (kgdb) up #10 0xc019edc2 in icmp_send (m=0xc093bf00, opts=0x0) at ../../netinet/ip_icmp.c:748 748 (void) ip_output(m, opts, &ro, 0, NULL); (kgdb) list 743 printf("icmp_send dst %s src %s\n", 744 buf, inet_ntoa(ip->ip_src)); 745 } 746 #endif 747 bzero(&ro, sizeof ro); 748 (void) ip_output(m, opts, &ro, 0, NULL); 749 if (ro.ro_rt) 750 RTFREE(ro.ro_rt); 751 } 752 (kgdb) up #11 0xc019ed43 in icmp_reflect (m=0xc093bf00) at ../../netinet/ip_icmp.c:710 710 icmp_send(m, opts); (kgdb) list 705 optlen += sizeof(struct ip); 706 bcopy((caddr_t)ip + optlen, (caddr_t)(ip + 1), 707 (unsigned)(m->m_len - sizeof(struct ip))); 708 } 709 m->m_flags &= ~(M_BCAST|M_MCAST); 710 icmp_send(m, opts); 711 done: 712 if (opts) 713 (void)m_free(opts); 714 } (kgdb) up #12 0xc019e66c in icmp_error (n=0xc0931a00, type=11, code=0, dest=0, destifp=0x0) at ../../netinet/ip_icmp.c:220 220 icmp_reflect(m); (kgdb) list 215 bcopy((caddr_t)oip, (caddr_t)nip, sizeof(struct ip)); 216 nip->ip_len = m->m_len; 217 nip->ip_vhl = IP_VHL_BORING; 218 nip->ip_p = IPPROTO_ICMP; 219 nip->ip_tos = 0; 220 icmp_reflect(m); 221 222 freeit: 223 m_freem(n); 224 } (kgdb) up #13 0xc01a0429 in ip_forward (m=0xc0931a00, srcrt=0) at ../../netinet/ip_input.c:1508 1508 icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_HOST, dest, 0); (kgdb) list 1503 sin->sin_len = sizeof(*sin); 1504 sin->sin_addr = ip->ip_dst; 1505 1506 rtalloc_ign(&ipforward_rt, RTF_PRCLONING); 1507 if (ipforward_rt.ro_rt == 0) { 1508 icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_HOST, dest, 0); 1509 return; 1510 } 1511 rt = ipforward_rt.ro_rt; 1512 } (kgdb) up #14 0xc019f566 in ip_input (m=0xc0931a00) at ../../netinet/ip_input.c:570 570 ip_forward(m, 0); (kgdb) list 565 */ 566 if (ipforwarding == 0) { 567 ipstat.ips_cantforward++; 568 m_freem(m); 569 } else 570 ip_forward(m, 0); 571 #ifdef IPFIREWALL_FORWARD 572 ip_fw_fwd_addr = NULL; 573 #endif 574 return; (kgdb) up #15 0xc0199a46 in transmit_event (pipe=0xc1586e00) at ../../netinet/ip_dummynet.c:399 399 ip_input((struct mbuf *)pkt) ; (kgdb) list 394 (void)ip_output((struct mbuf *)pkt, NULL, NULL, 0, NULL); 395 rt_unref (pkt->ro.ro_rt) ; 396 break ; 397 398 case DN_TO_IP_IN : 399 ip_input((struct mbuf *)pkt) ; 400 break ; 401 402 #ifdef BRIDGE 403 case DN_TO_BDG_FWD : { (kgdb) up #16 0xc0199c37 in ready_event (q=0xc16b6500) at ../../netinet/ip_dummynet.c:525 525 transmit_event(p); (kgdb) list 520 /* 521 * If the delay line was empty call transmit_event(p) now. 522 * Otherwise, the scheduler will take care of it. 523 */ 524 if (p_was_empty) 525 transmit_event(p); 526 } 527 528 /* 529 * Called when we can transmit packets on WF2Q queues. Take pkts out of (kgdb) up #17 0xc019a96b in dummynet_io (pipe_nr=5, dir=2, m=0xc0931a00, ifp=0x0, ro=0x0, dst=0x0, rule=0xc14f98e0, flags=0) at ../../netinet/ip_dummynet.c:1062 1062 ready_event( q ); (kgdb) list 1057 dn_key t = 0 ; 1058 if (pipe->bandwidth) 1059 t = SET_TICKS(pkt, q, pipe); 1060 q->sched_time = curr_time ; 1061 if (t == 0) /* must process it now */ 1062 ready_event( q ); 1063 else 1064 heap_insert(&ready_heap, curr_time + t , q ); 1065 } else { 1066 /* (kgdb) up #18 0xc019f361 in ip_input (m=0xc0931a00) at ../../netinet/ip_input.c:413 413 dummynet_io(i&0xffff,DN_TO_IP_IN,m,NULL,NULL,0, rule, (kgdb) list 408 if (i == 0 && ip_fw_fwd_addr == NULL) /* common case */ 409 goto pass; 410 #ifdef DUMMYNET 411 if ((i & IP_FW_PORT_DYNT_FLAG) != 0) { 412 /* Send packet to the appropriate pipe */ 413 dummynet_io(i&0xffff,DN_TO_IP_IN,m,NULL,NULL,0, rule, 414 0); 415 return; 416 } 417 #endif (kgdb) up #19 0xc019f8cf in ipintr () at ../../netinet/ip_input.c:766 766 ip_input(m); (kgdb) list 761 s = splimp(); 762 IF_DEQUEUE(&ipintrq, m); 763 splx(s); 764 if (m == 0) 765 return; 766 ip_input(m); 767 } 768 } 769 770 /* (kgdb) up #20 0xc0262255 in swi_net_next () (kgdb) list 771 * Take incoming datagram fragment and try to reassemble it into 772 * whole datagram. If a chain for reassembly of this datagram already 773 * exists, then it is given as fp; otherwise have to make a chain. 774 * 775 * When IPDIVERT enabled, keep additional state with each packet that 776 * tells us if we need to divert or tee the packet we're building. 777 */ 778 779 static struct mbuf * 780 #ifdef IPDIVERT (kgdb) up Initial frame selected; you cannot go up. (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 Mon Jun 11 20:40: 8 2001 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 9897837B401 for ; Mon, 11 Jun 2001 20:40:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5C3e6Y90202; Mon, 11 Jun 2001 20:40:06 -0700 (PDT) (envelope-from gnats) Date: Mon, 11 Jun 2001 20:40:06 -0700 (PDT) Message-Id: <200106120340.f5C3e6Y90202@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dima Dorfman Subject: Re: bin/28082: [patch] src/usr.bin/whois clean-up Reply-To: Dima Dorfman 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/28082; it has been noted by GNATS. From: Dima Dorfman To: mike@q9media.com Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/28082: [patch] src/usr.bin/whois clean-up Date: Mon, 11 Jun 2001 20:38:19 -0700 mike@q9media.com writes: >Description: > > The following patch has been sent to -audit. Reviewed by mikeh and gad. > All problems brought up were resolved. > > > 20010605 whois.patch > > o Silence warnings and set WARNS=2 > o Fix two memory leaks > o asprint -> strdup where appropriate > o calloc/strcpy/strcat -> aprintf > o Convert to ANSI C to avoid having to prototype main() I don't think this is a good reason to ANSIify something, especially since gcc no longer complains about that. Dima Dorfman dima@unixfreak.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 11 23:49:31 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 1AC9937B403 for ; Mon, 11 Jun 2001 23:49:22 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.2/8.11.2) id f5C6nDi98942; Tue, 12 Jun 2001 09:49:13 +0300 (EEST) (envelope-from ru) Date: Tue, 12 Jun 2001 09:49:13 +0300 From: Ruslan Ermilov To: Paul Marquis Cc: freebsd-bugs@freeBSD.org Subject: Re: misc/28035: make buildworld fails on 4.2-RELEASE -> RELENG_4 Message-ID: <20010612094913.B95192@sunbay.com> Mail-Followup-To: Paul Marquis , freebsd-bugs@freeBSD.org References: <200106111616.f5BGGs781480@freefall.freebsd.org> <01061113252003.00418@sboy.pmarquis.com> <20010611210125.A27882@sunbay.com> <01061114582203.08564@sboy.pmarquis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <01061114582203.08564@sboy.pmarquis.com>; from pmarquis@pobox.com on Mon, Jun 11, 2001 at 05:36:57PM -0400 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 Mon, Jun 11, 2001 at 05:36:57PM -0400, Paul Marquis wrote: > I just removed my src and obj dirs and did a clean checkout and > though it's still failing, it gets by the problem I've been seeing > (it's now failing with "rm: security: is a directory" problem > recently reported on stable). > A hunk of a context would be nice seeing. > FWIW, I originally tried updating by checking out the sources into a > directory other than /usr/src (/share/src) and building from there. > The manual says this should work -- could this be the problem? > Should not. -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 12 0:50:33 2001 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 64E0B37B405; Tue, 12 Jun 2001 00:50:30 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5C7oU032986; Tue, 12 Jun 2001 00:50:30 -0700 (PDT) (envelope-from dwmalone) Date: Tue, 12 Jun 2001 00:50:30 -0700 (PDT) From: Message-Id: <200106120750.f5C7oU032986@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, cg@FreeBSD.org Subject: Re: kern/28084: Two possible PCM problems and 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: Two possible PCM problems and patch Responsible-Changed-From-To: freebsd-bugs->cg Responsible-Changed-By: dwmalone Responsible-Changed-When: Tue Jun 12 00:49:18 PDT 2001 Responsible-Changed-Why: Cameron is the boss of sound. Cameron - is there any way we can assign sound PRs to all the sound guys instead of you in particular? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28084 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 12 3:10: 8 2001 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 3927C37B403 for ; Tue, 12 Jun 2001 03:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CAA1M54358; Tue, 12 Jun 2001 03:10:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A3F837B401 for ; Tue, 12 Jun 2001 03:08:49 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CA8nC54137; Tue, 12 Jun 2001 03:08:49 -0700 (PDT) (envelope-from nobody) Message-Id: <200106121008.f5CA8nC54137@freefall.freebsd.org> Date: Tue, 12 Jun 2001 03:08:49 -0700 (PDT) From: bill@twwells.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/28095: [PATCH] pax may descend into directories even when -d specified 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: 28095 >Category: misc >Synopsis: [PATCH] pax may descend into directories even when -d specified >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 Jun 12 03:10:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Bill Wells >Release: 4.3-STABLE >Organization: >Environment: >Description: When the -d option is specified and a -T, -G, or -U option causes a directory to be skipped, pax will descend into that directory. Other selection options may have a similar problem. I have not addressed that. >How-To-Repeat: pax -w -v -d -G tty -f /dev/null /usr/bin This will dump wall and write, which are group tty, even though the -d option says to not descend into /usr/bin. >Fix: Sorry for the very likely screwiness of this patch; this is not my normal interface. When my system is back up, I'll e-mail the patch if requested. diff -bru pax.orig/ar_subs.c pax/ar_subs.c --- pax.orig/ar_subs.c Fri Aug 27 16:14:39 1999 +++ pax/ar_subs.c Tue Jun 12 02:53:37 2001 @@ -395,8 +395,10 @@ /* * check if this file meets user specified options match. */ - if (sel_chk(arcn) != 0) + if (sel_chk(arcn) != 0) { + ftree_notsel(arcn); continue; + } fd = -1; if (uflag) { /* @@ -791,9 +793,10 @@ /* * check if this file meets user specified options */ - if (sel_chk(arcn) != 0) + if (sel_chk(arcn) != 0) { + ftree_notsel(arcn); continue; - + } /* * if there is already a file in the destination directory with * the same name and it is newer, skip the one stored on the diff -bru pax.orig/extern.h pax/extern.h --- pax.orig/extern.h Mon Mar 5 04:30:41 2001 +++ pax/extern.h Tue Jun 12 02:48:42 2001 @@ -157,6 +157,7 @@ int ftree_start __P((void)); int ftree_add __P((register char *)); void ftree_sel __P((register ARCHD *)); +void ftree_notsel __P((register ARCHD *)); void ftree_chk __P((void)); int next_file __P((register ARCHD *)); diff -bru pax.orig/ftree.c pax/ftree.c --- pax.orig/ftree.c Fri Aug 27 16:14:42 1999 +++ pax/ftree.c Tue Jun 12 02:48:21 2001 @@ -234,6 +234,24 @@ } /* + * ftree_notsel() + * this entry has been skipped by pax. + */ + +#if __STDC__ +void +ftree_notsel(register ARCHD *arcn) +#else +void +ftree_notsel(arcn) + register ARCHD *arcn; +#endif +{ + if (ftent != NULL) + (void)fts_set(ftsp, ftent, FTS_SKIP); +} + +/* * ftree_chk() * called at end on pax execution. Prints all those file args that did not * have a selected member (reference count still 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 Tue Jun 12 5:30:19 2001 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 0738937B616 for ; Tue, 12 Jun 2001 05:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CCU1N78956; Tue, 12 Jun 2001 05:30:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4909337B405 for ; Tue, 12 Jun 2001 05:28:40 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CCSe678796; Tue, 12 Jun 2001 05:28:40 -0700 (PDT) (envelope-from nobody) Message-Id: <200106121228.f5CCSe678796@freefall.freebsd.org> Date: Tue, 12 Jun 2001 05:28:40 -0700 (PDT) From: conrad@th.physik.uni-bonn.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/28098: mbus leakage in FreeBSD 4.3R somewhere 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: 28098 >Category: i386 >Synopsis: mbus leakage in FreeBSD 4.3R somewhere >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 12 05:30:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Jan Conrad >Release: FreeBSD 4.3R >Organization: Univ. Bonn, Germany >Environment: FreeBSD wigner.th.physik.uni-bonn.de 4.3-RELEASE FreeBSD 4.3-RELEASE #1: Thu May 24 18:01:27 CEST 2001 conrad@merlin.th.physik.uni-bonn.de:/freebsd/misc/src/sys/compile/MERLIN i386 >Description: There seems to be a mbuf leakage which can be triggered by userland programs (i.e.: gtk-gnutella run by our young folk :-) in 4.3R. The mbufs remain allocated AFTER THE PROGRAM TERMINATES! After the program was running one gets outputs like the following: [159]# netstat -m 1397/4224/6144 mbufs in use (current/peak/max): 1337 mbufs allocated to data 60 mbufs allocated to packet headers 69/806/1536 mbuf clusters in use (current/peak/max) 2668 Kbytes allocated to network (57% of mb_map in use) 0 requests for memory denied 0 requests for memory delayed 0 calls to protocol drain routines Normal operation looks like (we run a FreeBSD cluster and our machines are very stable otherwise...) [20]# netstat -m 80/624/6144 mbufs in use (current/peak/max): 77 mbufs allocated to data 3 mbufs allocated to packet headers 64/184/1536 mbuf clusters in use (current/peak/max) 524 Kbytes allocated to network (11% of mb_map in use) 0 requests for memory denied 0 requests for memory delayed 0 calls to protocol drain routines If one lets run the program for a longer time, the following error message is generated: Jun 12 11:54:20 wigner /kernel: looutput: mbuf allocation failed Letting it run even further, the system panics with a page fault and dumps core. However the core dump gives no reference to mbufs whatsoever (dumps etc. are available). Du to the broken '-M' of netstat I can give no mbuf output from the core... In addition, even if the system did not yet panic and the program is terminated (with the above err msg occuring several times) the box may panic after a while. This case I observed once, and the mbuf usage had gone back to something like 3000/6144/6144 before the crash >How-To-Repeat: run gtk-gnutella for a while >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 Tue Jun 12 6:10: 7 2001 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 2476037B403 for ; Tue, 12 Jun 2001 06:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CDA1385066; Tue, 12 Jun 2001 06:10:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BCDED37B401 for ; Tue, 12 Jun 2001 06:02:51 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CD2p581810; Tue, 12 Jun 2001 06:02:51 -0700 (PDT) (envelope-from nobody) Message-Id: <200106121302.f5CD2p581810@freefall.freebsd.org> Date: Tue, 12 Jun 2001 06:02:51 -0700 (PDT) From: gte024h2prism.gatech.edu@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/28100: Hang after device probe on EISA machine 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: 28100 >Category: kern >Synopsis: Hang after device probe on EISA machine >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 Jun 12 06:10:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Steven Hicox >Release: 4.3-RELEASE >Organization: >Environment: >Description: On Acer Altos 19000 dual processor (Orion chipset) server, installation hangs after probing devices. After quiting out of the visual configuration, the system is probed and depending on what disks are present when it attempts to access the disks the system hangs and is only able to be reset with a power cycle. I have tried installing the GENERIC kernel onto the hard disk on another machine and moving over to this one, but it made no difference. The system has a SCSI-2 2gb hard drive (that I know is good), 32mb of FPM parity memory (which I know is good), and an S3 Virge/VX PCI video card. The motherboard has an embedded AIC-7880 U/UW SCSI host. It also has 6 PCI slots, 3 EISA slots, and 2 socket8 P6/200 processors. As a side note, WindowsNT 4 installs and runs like a champ on this machine, so I believe the hardware to be good. >How-To-Repeat: Attempt to boot using 4.2-RELEASE or 4.3-RELEASE. >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 Jun 12 6:42: 9 2001 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 52B5337B401; Tue, 12 Jun 2001 06:42:07 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CDg7Z12229; Tue, 12 Jun 2001 06:42:07 -0700 (PDT) (envelope-from ru) Date: Tue, 12 Jun 2001 06:42:07 -0700 (PDT) From: Message-Id: <200106121342.f5CDg7Z12229@freefall.freebsd.org> To: ponds!rivers@dg-rtp.dg.com, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/3463: netstat -I packet count increase on sl0 when there's no traffic 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: netstat -I packet count increase on sl0 when there's no traffic State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Tue Jun 12 06:40:56 PDT 2001 State-Changed-Why: Timed out. Please resubmit if the problem still occurs in the newer versions. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=3463 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 12 7: 3:34 2001 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 4D55B37B405; Tue, 12 Jun 2001 07:03:32 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CE3TC91008; Tue, 12 Jun 2001 07:03:29 -0700 (PDT) (envelope-from ru) Date: Tue, 12 Jun 2001 07:03:29 -0700 (PDT) From: Message-Id: <200106121403.f5CE3TC91008@freefall.freebsd.org> To: zgabor@zg.CoDe.hu, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, ru@FreeBSD.org Subject: Re: bin/6994: The netstat(1) -s generates wrong output with IPX and Appletalk 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 netstat(1) -s generates wrong output with IPX and Appletalk State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Tue Jun 12 07:00:57 PDT 2001 State-Changed-Why: Fixed, thanks! The IPX part was already fixed in ipx.c,v 1.12 as part of the PR 14168. Responsible-Changed-From-To: freebsd-bugs->ru Responsible-Changed-By: ru Responsible-Changed-When: Tue Jun 12 07:00:57 PDT 2001 Responsible-Changed-Why: Increment counter. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=6994 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 12 11:50:30 2001 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 D0ED737B403 for ; Tue, 12 Jun 2001 11:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CIo4K34330; Tue, 12 Jun 2001 11:50:04 -0700 (PDT) (envelope-from gnats) Date: Tue, 12 Jun 2001 11:50:04 -0700 (PDT) Message-Id: <200106121850.f5CIo4K34330@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Thomas Fricke Subject: Re: kern/27370: kernel crash when trying to query the USB device "wingman rumblepad" (logitech gamepad) Reply-To: Thomas Fricke 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/27370; it has been noted by GNATS. From: Thomas Fricke To: David Malone Cc: Alec , freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/27370: kernel crash when trying to query the USB device "wingman rumblepad" (logitech gamepad) Date: Tue, 12 Jun 2001 20:44:21 +0200 (CEST) Hi David, hi Alec, I got some infos for this problem. I attached a Logitech Wingman Force Feedback Wheel ;-) Other device, same problem... but I have the panic-message: --------------- uhci0: port 0xd400-0xd41f irq5 at device 4.2/ on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhid0: Logitech Inc. product 0xc293, rev 1.00/1.01, addr 2, iclass 3/0 uhid0: no report descriptor device_probe_and_attach: uhid0 attach returned 6 ugen0: Logitech Inc. product 0xc293, rev 1.00/1.01, addr 2 ugen0: setting configuration index 0 failed device_probe_and_attach: ugen0 attach returned 6 uhci1: port 0xd000-0xd01f irq 5 at device 4.3/ on pci0 usb1: on uhci1 usb1: USB revision 1.0 Fatal trap12: page fault while in Kernel mode fault virtual address = 0x64003a fault code = supervisor read, page not present instruction pointer = 0x8:0xc016a8b2 stack pointer = 0x10:0xc03cb954 frame pointer = 0x10:0xc03cb968 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 = 0 (swapper) interrupt mask = net tty bio cam trap number = 12 panic: page fault Uptime 0s -------------------------- bye... Thomas To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 12 12: 0:34 2001 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 B544B37B408 for ; Tue, 12 Jun 2001 12:00:21 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CJ0LZ35764; Tue, 12 Jun 2001 12:00:21 -0700 (PDT) (envelope-from gnats) Date: Tue, 12 Jun 2001 12:00:21 -0700 (PDT) Message-Id: <200106121900.f5CJ0LZ35764@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Mike Barcroft Subject: Re: bin/28082: [patch] src/usr.bin/whois clean-up Reply-To: Mike Barcroft 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/28082; it has been noted by GNATS. From: Mike Barcroft To: Dima Dorfman Cc: Subject: Re: bin/28082: [patch] src/usr.bin/whois clean-up Date: Tue, 12 Jun 2001 14:58:09 -0400 On 6/11/01 11:38 PM, Dima Dorfman at dima@unixfreak.org wrote: > mike@q9media.com writes: >> Description: >> >> The following patch has been sent to -audit. Reviewed by mikeh and gad. >> All problems brought up were resolved. >> >> >> 20010605 whois.patch >> >> o Silence warnings and set WARNS=2 >> o Fix two memory leaks >> o asprint -> strdup where appropriate >> o calloc/strcpy/strcat -> aprintf >> o Convert to ANSI C to avoid having to prototype main() > > I don't think this is a good reason to ANSIify something, especially > since gcc no longer complains about that. Would you not agree that prototyping main() is evil? :) Also, was the change to gcc also applied to -stable. Eventually this change will be MFC. I recall David saying something about it only being applied to the current verion of gcc, and future versions may not have it. I would hate to introduce something that could result in future breakage, as a result of a new gcc import. My goal was to take a more proactive step towards current style(9) conventions. Although style(9) recommends staying with current conventions unless you're changing 50% or more, I feel I'm justified in this change. Others in -audit also felt it was "the right thing to do". If you still feel ANSIify this is the wrong thing to do in this case, I'd be more than happy to convert the prototypes back to __P() and produce a new patch. Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 12 12:45:48 2001 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 2A6E737B409; Tue, 12 Jun 2001 12:45:44 -0700 (PDT) (envelope-from unfurl@FreeBSD.org) Received: (from unfurl@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CJjhD44817; Tue, 12 Jun 2001 12:45:43 -0700 (PDT) (envelope-from unfurl) Date: Tue, 12 Jun 2001 12:45:43 -0700 (PDT) From: Message-Id: <200106121945.f5CJjhD44817@freefall.freebsd.org> To: sysadmin@mfn.org, unfurl@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/9140: NIS "Magic cookie" in master.passwd slays non-NIS enabled systems 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: NIS "Magic cookie" in master.passwd slays non-NIS enabled systems State-Changed-From-To: open->closed State-Changed-By: unfurl State-Changed-When: Tue Jun 12 12:44:44 PDT 2001 State-Changed-Why: This problem seems to have been fixed somewhere along the way. Tested on the following machine: FreeBSD snarf.sf.swansystems.com 4.3-STABLE FreeBSD 4.3-STABLE #1: Thu May 24 14:23:34 PDT 2001 bswingle@snarf.sf.swansystems.com:/usr/obj/usr/src/sys/SNARF i386 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=9140 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 12 12:48:43 2001 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 4FA0937B409; Tue, 12 Jun 2001 12:48:37 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CJmb145154; Tue, 12 Jun 2001 12:48:37 -0700 (PDT) (envelope-from schweikh) Date: Tue, 12 Jun 2001 12:48:37 -0700 (PDT) From: Message-Id: <200106121948.f5CJmb145154@freefall.freebsd.org> To: eugene@infospace.com, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/25267: vmstat displays some parameters incorrectly 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: vmstat displays some parameters incorrectly State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Tue Jun 12 12:47:55 PDT 2001 State-Changed-Why: Fixed in -current. Thanks, Eugene! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=25267 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 12 13:10: 8 2001 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 2118337B407 for ; Tue, 12 Jun 2001 13:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CKA3149745; Tue, 12 Jun 2001 13:10:03 -0700 (PDT) (envelope-from gnats) Received: from webmail.chimesnet.com (mail001.level3.chc-chimes.com [63.211.16.2]) by hub.freebsd.org (Postfix) with ESMTP id AA46737B407 for ; Tue, 12 Jun 2001 13:07:14 -0700 (PDT) (envelope-from mayres@jade.chc-chimes.com) Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by webmail.chimesnet.com (Postfix) with ESMTP id 218ECCAC515; Tue, 12 Jun 2001 16:07:08 -0400 (EDT) Received: by jade.chc-chimes.com (Postfix, from userid 1101) id E7D341C8D; Tue, 12 Jun 2001 16:05:19 -0400 (EDT) Message-Id: <20010612200519.E7D341C8D@jade.chc-chimes.com> Date: Tue, 12 Jun 2001 16:05:19 -0400 (EDT) From: mayres@chimesnet.com Reply-To: mayres@chimesnet.com To: FreeBSD-gnats-submit@freebsd.org Cc: mayres@chimesnet.com X-Send-Pr-Version: 3.113 Subject: misc/28107: ident not working under jail 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: 28107 >Category: misc >Synopsis: identd does not return usernames while running under a jail. >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 Jun 12 13:10:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 4.3-STABLE i386 >Organization: None >Environment: System: FreeBSD solar.kindhosts.com 4.3-STABLE FreeBSD 4.3-STABLE #2: Mon Jun 11 22:08:39 EDT 2001 matta@solar.kindhosts.com:/usr/obj/usr/src/sys/DIS i386 >Description: While running under a jailed enviroment no ident servers will return a valid username. Below is a connection to the hosts ident server and to the jails. The hosts inetd is set to only listen on the hosts ip address. If inetd's internal auth is set to respond with a random string (-g) all works as wanted. host: telnet 64.156.64.2 113 Trying 64.156.64.2... Connected to solar.kindhosts.com. Escape character is '^]'. 113, 1258 113 , 1258 : USERID : UNKNOWN : root Connection closed by foreign host. jail: telnet 64.156.64.12 113 Trying 64.156.64.12... Connected to 64.156.64.12. Escape character is '^]'. 113, 1259 113 , 1259 : ERROR : Operation not permitted Connection closed by foreign host. jail (auth w/ -g): telnet 64.156.64.12 113 Trying 64.156.64.12... Connected to 64.156.64.12. Escape character is '^]'. 113, 1263 113 , 1263 : USERID : UNKNOWN : 6w1l60 Connection closed by foreign host. >How-To-Repeat: See above. >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 Jun 12 13:50:25 2001 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 9BB8D37B405 for ; Tue, 12 Jun 2001 13:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CKo1x52726; Tue, 12 Jun 2001 13:50:01 -0700 (PDT) (envelope-from gnats) Received: from whistle.com (s204m90.isp.whistle.com [207.76.204.90]) by hub.freebsd.org (Postfix) with ESMTP id 8112137B403 for ; Tue, 12 Jun 2001 13:40:02 -0700 (PDT) (envelope-from mark@whistle.com) Received: (from mark@localhost) by whistle.com (8.11.3/8.11.3) id f5CKe2K09865; Tue, 12 Jun 2001 13:40:02 -0700 (PDT) (envelope-from mark) Message-Id: <200106122040.f5CKe2K09865@whistle.com> Date: Tue, 12 Jun 2001 13:40:02 -0700 (PDT) From: mark@whistle.com Reply-To: mark@whistle.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/28108: [PATCH] cron leaks memory when reloading crontab 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: 28108 >Category: bin >Synopsis: [PATCH] cron leaks memory when reloading crontab files >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 Jun 12 13:50:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Mark Peek >Release: FreeBSD 4.3-RELEASE i386 >Organization: Whistle Communications, Inc. >Environment: System: FreeBSD shark.whistle.com 4.3-RELEASE FreeBSD 4.3-RELEASE #5: Mon May 7 11:42:59 PDT 2001 root@shark.whistle.com:/usr/obj/usr/src/sys/INTELLISTATION_SMP i386 >Description: Based on a cron.core image from my favorite, long running internet server appliance, I discovered (with help from gdb) that cron was leaking memory. By code inspection, I discovered 2 leaks. 1. Calls were made to login_getclass() without a cooresponding call to login_close(). This leaks 1 login_cap_t (plus associated data storage) for every crontab entry. It appears this bug was introduced back in late 1997. 2. There was a possibility of additional leakage (e->class) due to the way storage was freed in the error case for the call to entry.c:loadentry(). >How-To-Repeat: Fire up cron and keep touching crontab files to ensure it reloads the files often. Use ps to check on the memory usage or wait long enough for it to exhaust its memory limit. (While testing, I also put in a syslog() in to verify it is leaking the login_cap_t once per entry.) >Fix: Apply the patch below. Index: usr.sbin/cron/lib/entry.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/cron/lib/entry.c,v retrieving revision 1.9.2.2 diff -u -r1.9.2.2 entry.c --- usr.sbin/cron/lib/entry.c 2000/07/01 10:35:07 1.9.2.2 +++ usr.sbin/cron/lib/entry.c 2001/06/12 18:13:53 @@ -262,6 +262,9 @@ char *username = cmd; /* temp buffer */ char *s, *group; struct group *grp; +#ifdef LOGIN_CAP + login_cap_t *lc; +#endif Debug(DPARS, ("load_entry()...about to parse username\n")) ch = get_string(username, MAX_COMMAND, file, " \t"); @@ -287,10 +290,11 @@ ecode = e_mem; goto eof; } - if (login_getclass(e->class) == NULL) { + if ((lc = login_getclass(e->class)) == NULL) { ecode = e_class; goto eof; } + login_close(lc); #endif grp = NULL; if ((s = strrchr(username, ':')) != NULL) { @@ -416,7 +420,7 @@ return e; eof: - free(e); + free_entry(e); if (ecode != e_none && error_func) (*error_func)(ecodes[(int)ecode]); while (ch != EOF && ch != '\n') >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 Jun 12 15:50:11 2001 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 2286137B40A for ; Tue, 12 Jun 2001 15:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5CMo1k72332; Tue, 12 Jun 2001 15:50:01 -0700 (PDT) (envelope-from gnats) Received: from whistle.com (s204m90.isp.whistle.com [207.76.204.90]) by hub.freebsd.org (Postfix) with ESMTP id 3FCED37B401 for ; Tue, 12 Jun 2001 15:41:34 -0700 (PDT) (envelope-from mark@whistle.com) Received: (from mark@localhost) by whistle.com (8.11.3/8.11.3) id f5CMfYD10147; Tue, 12 Jun 2001 15:41:34 -0700 (PDT) (envelope-from mark) Message-Id: <200106122241.f5CMfYD10147@whistle.com> Date: Tue, 12 Jun 2001 15:41:34 -0700 (PDT) From: mark@whistle.com Reply-To: mark@whistle.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/28109: [PATCH] Add "kill -s" to tcsh builtin for doc and POSIX compatibility 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: 28109 >Category: bin >Synopsis: [PATCH] Add "kill -s" to tcsh builtin for doc and POSIX compatibility >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 Jun 12 15:50:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Mark Peek >Release: FreeBSD 4.3-RELEASE i386 >Organization: Whistle Communications, Inc. >Environment: System: FreeBSD shark.whistle.com 4.3-RELEASE FreeBSD 4.3-RELEASE #5: Mon May 7 11:42:59 PDT 2001 root@shark.whistle.com:/usr/obj/usr/src/sys/INTELLISTATION_SMP i386 >Description: Several man pages (such as mountd and exports) contain instructions to use "kill -s HUP" to invoke behaviors within the commands. However, the "-s" option is not implemented in the default tcsh shell builtin kill. This can lead to users scratching their heads when they get an error message: "s: Unknown signal; kill -l lists signals." >How-To-Repeat: /bin/tcsh -c "kill -s HUP 1" >Fix: This can be fixed a variety of ways: 1. Change the documentation to use the obsolete "kill -HUP" or the non-builtin "/bin/kill -HUP". 2. Apply the patch below to add "kill -s" to the tcsh command 3. Wait for the next version of tcsh to become available that (hopefully) will have the patch below contributed (I sent it to the tcsh mailing list). I don't believe #1 should be done since that moves us backwards instead of forwards. I'd like to see #2 but this might require moving this file off the vendor branch. I'm just not sure about #3, since it would require the patch to be applied to the tcsh source base and I'm unclear when the next tcsh release will be available. -------- Index: contrib/tcsh/sh.proc.c =================================================================== RCS file: /home/ncvs/src/contrib/tcsh/sh.proc.c,v retrieving revision 1.1.1.1.2.2 diff -u -r1.1.1.1.2.2 sh.proc.c --- contrib/tcsh/sh.proc.c 2001/03/05 05:50:09 1.1.1.1.2.2 +++ contrib/tcsh/sh.proc.c 2001/06/12 22:20:36 @@ -1524,6 +1524,7 @@ { register int signum, len = 0; register char *name; + Char *sigptr; extern int T_Cols; extern int nsig; @@ -1544,17 +1545,26 @@ xputchar('\n'); return; } - if (Isdigit(v[0][1])) { - signum = atoi(short2str(v[0] + 1)); + sigptr = &v[0][1]; + if (v[0][1] == 's') { + if (v[1]) { + v++; + sigptr = &v[0][0]; + } else { + stderror(ERR_NAME | ERR_TOOFEW); + } + } + if (Isdigit(*sigptr)) { + signum = atoi(short2str(sigptr)); if (signum < 0 || signum > (MAXSIG-1)) stderror(ERR_NAME | ERR_BADSIG); } else { for (signum = 0; signum <= nsig; signum++) if (mesg[signum].iname && - eq(&v[0][1], str2short(mesg[signum].iname))) + eq(sigptr, str2short(mesg[signum].iname))) goto gotsig; - setname(short2str(&v[0][1])); + setname(short2str(sigptr)); stderror(ERR_NAME | ERR_UNKSIG); } gotsig: Index: contrib/tcsh/tcsh.man =================================================================== RCS file: /home/ncvs/src/contrib/tcsh/tcsh.man,v retrieving revision 1.1.1.3.2.2 diff -u -r1.1.1.3.2.2 tcsh.man --- contrib/tcsh/tcsh.man 2001/03/05 05:50:10 1.1.1.3.2.2 +++ contrib/tcsh/tcsh.man 2001/06/12 22:20:37 @@ -2851,8 +2851,11 @@ .B kill \fR[\fB\-\fIsignal\fR] \fB%\fIjob\fR|\fIpid\fR ... .PD 0 .TP 8 +.B kill \fR[\fB\-s \fIsignal\fR] \fB%\fIjob\fR|\fIpid\fR ... +.TP 8 .B kill \-l -The first form sends the specified \fIsignal\fR (or, if none is given, +The first and second forms sends the specified \fIsignal\fR (or, if none +is given, the TERM (terminate) signal) to the specified jobs or processes. \fIjob\fR may be a number, a string, `', `%', `+' or `\-' as described under \fBJobs\fR. @@ -2862,7 +2865,7 @@ to the current job. If the signal being sent is TERM (terminate) or HUP (hangup), then the job or process is sent a CONT (continue) signal as well. -The second form lists the signal names. +The third form lists the signal names. .PD .ig \" Obsolete tcsh command .TP 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 Tue Jun 12 17:58: 7 2001 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 4FD5D37B407; Tue, 12 Jun 2001 17:58:05 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5D0w5I86511; Tue, 12 Jun 2001 17:58:05 -0700 (PDT) (envelope-from des) Date: Tue, 12 Jun 2001 17:58:05 -0700 (PDT) From: Message-Id: <200106130058.f5D0w5I86511@freefall.freebsd.org> To: mike@q9media.com, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/28082: [patch] src/usr.bin/whois clean-up 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] src/usr.bin/whois clean-up State-Changed-From-To: open->suspended State-Changed-By: des State-Changed-When: Tue Jun 12 17:53:17 PDT 2001 State-Changed-Why: I'm sponsoring Mike for commit privileges, and am suspending this PR until core have processed his application so he can have a shot at closing it himself. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28082 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 12 18: 7:48 2001 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 A30D237B403; Tue, 12 Jun 2001 18:07:46 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5D17kV90052; Tue, 12 Jun 2001 18:07:46 -0700 (PDT) (envelope-from des) Date: Tue, 12 Jun 2001 18:07:46 -0700 (PDT) From: Message-Id: <200106130107.f5D17kV90052@freefall.freebsd.org> To: mayres@chimesnet.com, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/28107: identd does not return usernames while running under a jail. 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: identd does not return usernames while running under a jail. State-Changed-From-To: open->closed State-Changed-By: des State-Changed-When: Tue Jun 12 18:07:34 PDT 2001 State-Changed-Why: That's a feature, not a bug. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28107 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 12 18:15:16 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from elvis.mu.org (elvis.mu.org [216.33.66.196]) by hub.freebsd.org (Postfix) with ESMTP id 2861137B405; Tue, 12 Jun 2001 18:15:15 -0700 (PDT) (envelope-from billf@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1098) id CBCE681D06; Tue, 12 Jun 2001 20:15:04 -0500 (CDT) Date: Tue, 12 Jun 2001 20:15:04 -0500 From: Bill Fumerola To: des@FreeBSD.org Cc: mayres@chimesnet.com, freebsd-bugs@FreeBSD.org Subject: Re: misc/28107: identd does not return usernames while running under a jail. Message-ID: <20010612201504.J37979@elvis.mu.org> References: <200106130107.f5D17kV90052@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200106130107.f5D17kV90052@freefall.freebsd.org>; from des@FreeBSD.org on Tue, Jun 12, 2001 at 06:07:46PM -0700 X-Operating-System: FreeBSD 4.3-FEARSOME-20010328 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 On Tue, Jun 12, 2001 at 06:07:46PM -0700, des@FreeBSD.org wrote: > Synopsis: identd does not return usernames while running under a jail. > > State-Changed-From-To: open->closed > State-Changed-By: des > State-Changed-When: Tue Jun 12 18:07:34 PDT 2001 > State-Changed-Why: > That's a feature, not a bug. how is that a feature, what resource is it protecting? -- Bill Fumerola - security yahoo / Yahoo! inc. - fumerola@yahoo-inc.com / billf@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 Jun 12 18:35:58 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id BA03037B401 for ; Tue, 12 Jun 2001 18:35:54 -0700 (PDT) (envelope-from des@ofug.org) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id DAA19921; Wed, 13 Jun 2001 03:35:51 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Bill Fumerola Cc: mayres@chimesnet.com, freebsd-bugs@FreeBSD.org Subject: Re: misc/28107: identd does not return usernames while running under a jail. References: <200106130107.f5D17kV90052@freefall.freebsd.org> <20010612201504.J37979@elvis.mu.org> From: Dag-Erling Smorgrav Date: 13 Jun 2001 03:35:50 +0200 In-Reply-To: <20010612201504.J37979@elvis.mu.org> Message-ID: Lines: 15 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 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 Bill Fumerola writes: > how is that a feature, what resource is it protecting? Information about sockets owned by processes outside the jail. There's no (non-trivial) way to determine a socket belongs inside or outside a jail - there's no direct mapping from sockets to processes, so you'd have to traverse the process list and scan the file table of every process not in the same jail as inetd(8) to see if the socket is listed there. This is both expensive and invasive, so the best (or at least, simplest) solution is to deny jailed processes access to this information. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 12 19: 0:15 2001 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 157A537B408 for ; Tue, 12 Jun 2001 19:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5D203i93878; Tue, 12 Jun 2001 19:00:03 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3DA5337B403 for ; Tue, 12 Jun 2001 18:50:48 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5D1omm93213; Tue, 12 Jun 2001 18:50:48 -0700 (PDT) (envelope-from nobody) Message-Id: <200106130150.f5D1omm93213@freefall.freebsd.org> Date: Tue, 12 Jun 2001 18:50:48 -0700 (PDT) From: jl@ntt-20.ecl.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/28112: Packet capture does not work well with -pthead option. 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: 28112 >Category: kern >Synopsis: Packet capture does not work well with -pthead option. >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 Jun 12 19:00:02 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Kugimoto Takeshi >Release: 4.3-RELEASE >Organization: NTT Network Innovations Labs. >Environment: 4.3-RELEASE FreeBSD 4.3-RELEASE >Description: When a program that uses pcap library is compiled with -pthread option, the program rarely caputure packets. The problem started with 4.3-RELEASE. >How-To-Repeat: The problem occurs with any program that uses pcap library, eg. trafshow. Trafshow is in FreeBSD ports collection. Compile trafshow with -pthread option and run it. >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 Jun 12 21:40: 9 2001 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 DEF5437B407 for ; Tue, 12 Jun 2001 21:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5D4e2Y15189; Tue, 12 Jun 2001 21:40:02 -0700 (PDT) (envelope-from gnats) Date: Tue, 12 Jun 2001 21:40:02 -0700 (PDT) Message-Id: <200106130440.f5D4e2Y15189@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dima Dorfman Subject: Re: bin/28082: [patch] src/usr.bin/whois clean-up Reply-To: Dima Dorfman 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/28082; it has been noted by GNATS. From: Dima Dorfman To: Mike Barcroft Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/28082: [patch] src/usr.bin/whois clean-up Date: Tue, 12 Jun 2001 21:31:19 -0700 Mike Barcroft writes: > On 6/11/01 11:38 PM, Dima Dorfman at dima@unixfreak.org wrote: > > > mike@q9media.com writes: > >> Description: > >> > >> The following patch has been sent to -audit. Reviewed by mikeh and gad. > >> All problems brought up were resolved. > >> > >> > >> 20010605 whois.patch > >> > >> o Silence warnings and set WARNS=2 > >> o Fix two memory leaks > >> o asprint -> strdup where appropriate > >> o calloc/strcpy/strcat -> aprintf > >> o Convert to ANSI C to avoid having to prototype main() > > > > I don't think this is a good reason to ANSIify something, especially > > since gcc no longer complains about that. > > Would you not agree that prototyping main() is evil? :) I agree that prototyping main() is evil in most cases. It makes sense to prototype it if main() is recursive, but a program with a recursive main() probably has other problems ;-). > Also, was the > change to gcc also applied to -stable. Not yet. But neither have the WARNS= patches, so it isn't a problem. David did say that he would apply the patch to -stable as well. > Eventually this change will be MFC. If it were to be MFC'd as is, no breakage would result because -stable doesn't have WARNS=. > > I recall David saying something about it only being applied to the current > verion of gcc, and future versions may not have it. I would hate to > introduce something that could result in future breakage, as a result of a > new gcc import. I don't think this will be much of a problem. whois(1) also wouldn't be the only program in this position, and a temporary remedy is readily available, namely NO_WERROR. Granted this isn't ideal, but it's enough to fix it until we can decide what to do. Furthermore, I don't think it's appropriate to ANSIify a program simply for the sake of removing the warning. I don't mean this case, but there are programs which are WARNS=1-ready modulo this warning. It'd be nice to set WARNS=1 for them without having to ANSIify. > > My goal was to take a more proactive step towards current style(9) > conventions. Although style(9) recommends staying with current conventions > unless you're changing 50% or more, I feel I'm justified in this change. > Others in -audit also felt it was "the right thing to do". > > If you still feel ANSIify this is the wrong thing to do in this case, I'd be > more than happy to convert the prototypes back to __P() and produce a new > patch. Personally, I don't particularly care. It looks like DES is sponoring you for a commit bit, so you can decide which you prefer (probably the ANSIfication). Good luck! Dima Dorfman dima@unixfreak.org > > Best regards, > Mike Barcroft > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 12 22:50:15 2001 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 9D6F137B403; Tue, 12 Jun 2001 22:49:56 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5D5nuT30922; Tue, 12 Jun 2001 22:49:56 -0700 (PDT) (envelope-from dd) Date: Tue, 12 Jun 2001 22:49:56 -0700 (PDT) From: Message-Id: <200106130549.f5D5nuT30922@freefall.freebsd.org> To: mark@whistle.com, dd@FreeBSD.org, freebsd-bugs@FreeBSD.org, dd@FreeBSD.org Subject: Re: bin/28108: [PATCH] cron leaks memory when reloading crontab 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 Synopsis: [PATCH] cron leaks memory when reloading crontab files State-Changed-From-To: open->analyzed State-Changed-By: dd State-Changed-When: Tue Jun 12 22:49:42 PDT 2001 State-Changed-Why: Committed, thanks! Responsible-Changed-From-To: freebsd-bugs->dd Responsible-Changed-By: dd Responsible-Changed-When: Tue Jun 12 22:49:42 PDT 2001 Responsible-Changed-Why: My MFC reminder. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28108 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 12 22:51:58 2001 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 A064C37B407; Tue, 12 Jun 2001 22:51:49 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5D5pjT31092; Tue, 12 Jun 2001 22:51:45 -0700 (PDT) (envelope-from dd) Date: Tue, 12 Jun 2001 22:51:45 -0700 (PDT) From: Message-Id: <200106130551.f5D5pjT31092@freefall.freebsd.org> To: master@iaas.msu.ru, dd@FreeBSD.org, freebsd-bugs@FreeBSD.org, dd@FreeBSD.org Subject: Re: bin/24106: ftpd does not compile without virtual hosting support 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: ftpd does not compile without virtual hosting support State-Changed-From-To: open->analyzed State-Changed-By: dd State-Changed-When: Tue Jun 12 22:51:17 PDT 2001 State-Changed-Why: Fixed in -current. Responsible-Changed-From-To: freebsd-bugs->dd Responsible-Changed-By: dd Responsible-Changed-When: Tue Jun 12 22:51:17 PDT 2001 Responsible-Changed-Why: My MFC reminder. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24106 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 0:30:23 2001 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 F052E37B407 for ; Wed, 13 Jun 2001 00:30:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5D7UBi44512; Wed, 13 Jun 2001 00:30:11 -0700 (PDT) (envelope-from gnats) Received: from segfault.kiev.ua (segfault.kiev.ua [193.193.193.4]) by hub.freebsd.org (Postfix) with ESMTP id B78E837B408 for ; Wed, 13 Jun 2001 00:21:01 -0700 (PDT) (envelope-from netch@iv.nn.kiev.ua) Received: (from uucp@localhost) by segfault.kiev.ua (8) with UUCP id KIB44049; Wed, 13 Jun 2001 10:20:58 +0300 (EEST) (envelope-from netch@iv.nn.kiev.ua) Received: (from netch@localhost) by iv.nn.kiev.ua (8.11.3/8.11.3) id f5D7Jpr00636; Wed, 13 Jun 2001 10:19:51 +0300 (EEST) (envelope-from netch) Message-Id: <200106130719.f5D7Jpr00636@iv.nn.kiev.ua> Date: Wed, 13 Jun 2001 10:19:51 +0300 (EEST) From: netch@netch.kiev.ua (Valentin Nechayev) Reply-To: netch@netch.kiev.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/28116: init: allow reboot during runcom 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: 28116 >Category: bin >Synopsis: init: allow reboot during runcom >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: Wed Jun 13 00:30:11 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Valentin Nechayev >Release: FreeBSD 4.3-STABLE i386 >Organization: private >Environment: FreeBSD 4.3-STABLE i386 >Description: /sbin/init does not react on Ctrl-Alt-Del in "runcom" state (during running /etc/rc). If boot process hangs (even some fresh FreeBSD ports caused hanging due to bugs in startup scripts), there often is no possibility to interrupt it correctly (without reset button). >How-To-Repeat: >Fix: In runcom(), init does not check for transitions requested from signal handlers before /etc/rc finished. Modify it to check for `death'. Patch to RELENG_4 (but also applicable cleanly to HEAD): --- /usr/src/sbin/init/init.c.orig Sat May 26 21:48:37 2001 +++ /usr/src/sbin/init/init.c Wed Jun 13 09:44:00 2001 @@ -798,10 +798,13 @@ /* * Copied from single_user(). This is a bit paranoid. */ + requested_transition = 0; do { if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1) collect_child(wpid); if (wpid == -1) { + if (requested_transition == death) + return death; if (errno == EINTR) continue; warning("wait for %s on %s failed: %m; going to single user mode", >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 Jun 13 3:50:22 2001 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 AE8CD37B403; Wed, 13 Jun 2001 03:50:20 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DAoKB71649; Wed, 13 Jun 2001 03:50:20 -0700 (PDT) (envelope-from dwmalone) Date: Wed, 13 Jun 2001 03:50:20 -0700 (PDT) From: Message-Id: <200106131050.f5DAoKB71649@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, dwmalone@FreeBSD.org Subject: Re: misc/28107: identd does not return usernames while running under a jail. 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: identd does not return usernames while running under a jail. Responsible-Changed-From-To: freebsd-bugs->dwmalone Responsible-Changed-By: dwmalone Responsible-Changed-When: Wed Jun 13 03:50:01 PDT 2001 Responsible-Changed-Why: I'll have a look at this. .. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28107 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 6:20: 5 2001 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 E80F237B403 for ; Wed, 13 Jun 2001 06:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DDK1t98886; Wed, 13 Jun 2001 06:20:01 -0700 (PDT) (envelope-from gnats) Date: Wed, 13 Jun 2001 06:20:01 -0700 (PDT) Message-Id: <200106131320.f5DDK1t98886@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Christoph Sold Subject: Re: bin/4157: [PATCH] netstat atalk output should print symbolic names for port #s Reply-To: Christoph Sold 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/4157; it has been noted by GNATS. From: Christoph Sold To: freebsd-gnats-submit@FreeBSD.org, denny1@home.com Cc: Subject: Re: bin/4157: [PATCH] netstat atalk output should print symbolic names for port #s Date: Wed, 13 Jun 2001 15:18:46 +0200 This PR can be closed ..because it prints symbolic names: # netstat atalk Active Internet connections Proto Recv-Q Send-Q Local Address Foreign Address (state) tcp4 0 4 informatix.telnet automatix.1130 ESTABLISHED HTH -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 6:25:39 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id E97A637B408 for ; Wed, 13 Jun 2001 06:25:17 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.2/8.11.2) id f5DDOXc58068; Wed, 13 Jun 2001 16:24:33 +0300 (EEST) (envelope-from ru) Date: Wed, 13 Jun 2001 16:24:32 +0300 From: Ruslan Ermilov To: Christoph Sold Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/4157: [PATCH] netstat atalk output should print symbolic names for port #s Message-ID: <20010613162432.A57432@sunbay.com> Mail-Followup-To: Christoph Sold , freebsd-bugs@FreeBSD.ORG References: <200106131320.f5DDK1t98886@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200106131320.f5DDK1t98886@freefall.freebsd.org>; from so@server.i-clue.de on Wed, Jun 13, 2001 at 06:20:01AM -0700 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 As well as `netstat foo' and `netstat bar' :-) On Wed, Jun 13, 2001 at 06:20:01AM -0700, Christoph Sold wrote: > The following reply was made to PR bin/4157; it has been noted by GNATS. > > From: Christoph Sold > To: freebsd-gnats-submit@FreeBSD.org, denny1@home.com > Cc: > Subject: Re: bin/4157: [PATCH] netstat atalk output should print symbolic names > for port #s > Date: Wed, 13 Jun 2001 15:18:46 +0200 > > This PR can be closed > > ..because it prints symbolic names: > > # netstat atalk > Active Internet connections > Proto Recv-Q Send-Q Local Address Foreign Address > (state) > tcp4 0 4 informatix.telnet automatix.1130 > ESTABLISHED > > HTH > -Christoph Sold > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 10: 0:10 2001 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 D318037B405 for ; Wed, 13 Jun 2001 10:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DH05031471; Wed, 13 Jun 2001 10:00:05 -0700 (PDT) (envelope-from gnats) Date: Wed, 13 Jun 2001 10:00:05 -0700 (PDT) Message-Id: <200106131700.f5DH05031471@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "setantae" Subject: Re: bin/20220: unable to Ctrl-C (quit) when using "more" functionality Reply-To: "setantae" 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/20220; it has been noted by GNATS. From: "setantae" To: , Cc: Subject: Re: bin/20220: unable to Ctrl-C (quit) when using "more" functionality Date: Wed, 13 Jun 2001 17:50:55 +0100 On FreeBSD 4.0, press ``q'', or ``:q'' or ``ZZ''. On FreeBSD 4.3, you can also use ``Q'' or ``:Q''. Check more(1). This PR can be closed Ceri To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 10: 0:11 2001 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 D73BE37B408 for ; Wed, 13 Jun 2001 10:00:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DH07X31478; Wed, 13 Jun 2001 10:00:07 -0700 (PDT) (envelope-from gnats) Date: Wed, 13 Jun 2001 10:00:07 -0700 (PDT) Message-Id: <200106131700.f5DH07X31478@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "setantae" Subject: Re: bin/21637: [telnet] No address associated with hostname Reply-To: "setantae" 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/21637; it has been noted by GNATS. From: "setantae" To: , Cc: Subject: Re: bin/21637: [telnet] No address associated with hostname Date: Wed, 13 Jun 2001 17:53:04 +0100 Originator reports fixed. This PR can be closed. Ceri To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 10: 2:50 2001 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 291D937B407; Wed, 13 Jun 2001 10:02:47 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: (from roam@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DH2k931774; Wed, 13 Jun 2001 10:02:46 -0700 (PDT) (envelope-from roam) Date: Wed, 13 Jun 2001 10:02:46 -0700 (PDT) From: Message-Id: <200106131702.f5DH2k931774@freefall.freebsd.org> To: nakaji@jp.freebsd.org, roam@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/21637: [telnet] No address associated with hostname 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: [telnet] No address associated with hostname State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Wed Jun 13 10:02:08 PDT 2001 State-Changed-Why: Closed at originator's request (possible pilot error). http://www.FreeBSD.org/cgi/query-pr.cgi?pr=21637 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 11:37:25 2001 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 E724B37B401; Wed, 13 Jun 2001 11:37:23 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DIbN145999; Wed, 13 Jun 2001 11:37:23 -0700 (PDT) (envelope-from schweikh) Date: Wed, 13 Jun 2001 11:37:23 -0700 (PDT) From: Message-Id: <200106131837.f5DIbN145999@freefall.freebsd.org> To: patl@phoenix.volant.org, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/8346: Strftime can't generate ISO-8601 timezone offsets 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: Strftime can't generate ISO-8601 timezone offsets State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Wed Jun 13 11:35:15 PDT 2001 State-Changed-Why: Joerg added '%z' -> -0230 as specified in ISO9899 to strftime in -current in Jan 2000; it is also in -stable for quite some time now. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=8346 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 12: 5:53 2001 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 D6B1137B401; Wed, 13 Jun 2001 12:05:46 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DJ5kt51798; Wed, 13 Jun 2001 12:05:46 -0700 (PDT) (envelope-from des) Date: Wed, 13 Jun 2001 12:05:46 -0700 (PDT) From: Message-Id: <200106131905.f5DJ5kt51798@freefall.freebsd.org> To: des@FreeBSD.org, freebsd-bugs@FreeBSD.org, des@FreeBSD.org Subject: Re: bin/28116: init: allow reboot during runcom 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: init: allow reboot during runcom Responsible-Changed-From-To: freebsd-bugs->des Responsible-Changed-By: des Responsible-Changed-When: Wed Jun 13 11:56:15 PDT 2001 Responsible-Changed-Why: I'll handle this one. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28116 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 12: 6:13 2001 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 519BC37B412; Wed, 13 Jun 2001 12:06:03 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DJ63m51857; Wed, 13 Jun 2001 12:06:03 -0700 (PDT) (envelope-from schweikh) Date: Wed, 13 Jun 2001 12:06:03 -0700 (PDT) From: Message-Id: <200106131906.f5DJ63m51857@freefall.freebsd.org> To: guy@alum.mit.edu, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/27017: printf(3) man page doesn't document "%ll{d,o,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 Synopsis: printf(3) man page doesn't document "%ll{d,o,x}" State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Wed Jun 13 12:05:20 PDT 2001 State-Changed-Why: Fixed in -current; soon to be MFC'd. Thanks, Guy! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27017 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 12:31:30 2001 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 6A8CE37B414; Wed, 13 Jun 2001 12:31:21 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DJVLx54435; Wed, 13 Jun 2001 12:31:21 -0700 (PDT) (envelope-from imp) Date: Wed, 13 Jun 2001 12:31:21 -0700 (PDT) From: Message-Id: <200106131931.f5DJVLx54435@freefall.freebsd.org> To: fenner@parc.xerox.com, imp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/3170: vi freaks and dump core if user doesn't 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: vi freaks and dump core if user doesn't exist State-Changed-From-To: open->analyzed State-Changed-By: imp State-Changed-When: Wed Jun 13 13:20:36 MDT 2001 State-Changed-Why: This bug is well analyzed, so transition its state from open to that state. It still happens on a -current system as of June 8th. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=3170 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 12:33:50 2001 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 4EA1237B40B; Wed, 13 Jun 2001 12:33:45 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DJXj254714; Wed, 13 Jun 2001 12:33:45 -0700 (PDT) (envelope-from imp) Date: Wed, 13 Jun 2001 12:33:45 -0700 (PDT) From: Message-Id: <200106131933.f5DJXj254714@freefall.freebsd.org> To: root@kodiak.sdsmt.edu, imp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/13995: Full duplex mode doesn't work right with de0 driver DEC/Intel DC21x4x (``Tulip'') 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: Full duplex mode doesn't work right with de0 driver DEC/Intel DC21x4x (``Tulip'') State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Wed Jun 13 13:33:03 MDT 2001 State-Changed-Why: Since this happens only with the '43 cards, this can be closed because the new dc driver handles these cards properly. I'm typing this over a connection to freefall that goes through at least three of them. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=13995 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 12:38:22 2001 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 6982A37B40B; Wed, 13 Jun 2001 12:38:16 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DJcG455363; Wed, 13 Jun 2001 12:38:16 -0700 (PDT) (envelope-from imp) Date: Wed, 13 Jun 2001 12:38:16 -0700 (PDT) From: Message-Id: <200106131938.f5DJcG455363@freefall.freebsd.org> To: imp@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org Subject: Re: kern/23535: 4.x kernels seem to no longer support Adaptec 1542CP SCSI 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: 4.x kernels seem to no longer support Adaptec 1542CP SCSI Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: imp Responsible-Changed-When: Wed Jun 13 13:36:53 MDT 2001 Responsible-Changed-Why: This worked the last time I tried it. There are some people that have plug and play issues because the PnP stuff of the card sets the address/ DRQ, etc to conflicts. I'll see if I can recreate the panic on my testbox. Warner http://www.FreeBSD.org/cgi/query-pr.cgi?pr=23535 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 12:40: 9 2001 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 2D75237B408 for ; Wed, 13 Jun 2001 12:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DJe3i55554; Wed, 13 Jun 2001 12:40:03 -0700 (PDT) (envelope-from gnats) Date: Wed, 13 Jun 2001 12:40:03 -0700 (PDT) Message-Id: <200106131940.f5DJe3i55554@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: i386/21758: X display font problem Reply-To: Giorgos Keramidas 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/21758; it has been noted by GNATS. From: Giorgos Keramidas To: freebsd-gnats-submit@FreeBSD.org, cdburgess75@yahoo.com Cc: Subject: Re: i386/21758: X display font problem Date: Wed, 13 Jun 2001 22:38:28 +0300 Hello Charles, This is not really a FreeBSD bug, but more likely a setup problem with your X11. Please refrain from posting things that are not really bug reports through the PR system, with send-pr. You can always ask such questions by sending a message to . This PR can be closed. -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 12:43:22 2001 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 5FA1337B40A; Wed, 13 Jun 2001 12:43:17 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DJhH655788; Wed, 13 Jun 2001 12:43:17 -0700 (PDT) (envelope-from imp) Date: Wed, 13 Jun 2001 12:43:17 -0700 (PDT) From: Message-Id: <200106131943.f5DJhH655788@freefall.freebsd.org> To: satz@iranger.com, imp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/22760: adaptec bios cannot find disks after 4.1.1 reboots 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: adaptec bios cannot find disks after 4.1.1 reboots State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Wed Jun 13 13:42:30 MDT 2001 State-Changed-Why: This bug report is too vague. My ahc based machine works great. Closed pending better information. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=22760 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 12:50:21 2001 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 096BA37B40D for ; Wed, 13 Jun 2001 12:50:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DJo4656492; Wed, 13 Jun 2001 12:50:04 -0700 (PDT) (envelope-from gnats) Date: Wed, 13 Jun 2001 12:50:04 -0700 (PDT) Message-Id: <200106131950.f5DJo4656492@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: kern/13940: Panic with dd on block/"cooked" devices using 3.3-RELEASE Reply-To: Giorgos Keramidas 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/13940; it has been noted by GNATS. From: Giorgos Keramidas To: freebsd-gnats-submit@FreeBSD.org, regnauld@S44.eu.org Cc: Subject: Re: kern/13940: Panic with dd on block/"cooked" devices using 3.3-RELEASE Date: Wed, 13 Jun 2001 22:45:57 +0300 Phil Regnauld wrote: > When using dd to copy a block device to another (i.e.: > /dev/wd0a -> /dev/wd2a for example), the system panics. > > Greg Lehey is aware of the problem. Does this occur only in 3.3-RELEASE ? Is it a problem of the wd driver only? I tested this on 4-STABLE with ad driver for atapi disks, and dd(1) works for me. With floppies, it works too. I even tried copying a floppy to a raw disk device ( Can you please provide with more information on this? I'm most interested to know a) if this bug appears only in 3.3-RELEASE or is present in newer 3.x releases too b) if this is a bug of the wd driver, or you seem to be having the same problems with ad driver too. Thank you. -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 12:55:42 2001 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 11E3B37B408; Wed, 13 Jun 2001 12:55:33 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DJtXB57053; Wed, 13 Jun 2001 12:55:33 -0700 (PDT) (envelope-from imp) Date: Wed, 13 Jun 2001 12:55:33 -0700 (PDT) From: Message-Id: <200106131955.f5DJtXB57053@freefall.freebsd.org> To: ponds!rivers@dg-rtp.dg.com, imp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/4295: SL/IP difficulties between 2.2.1 & 2.2.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: SL/IP difficulties between 2.2.1 & 2.2.2 State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Wed Jun 13 13:54:52 MDT 2001 State-Changed-Why: The village had this setup for years and it works. I'm assuming that this is no longer a problem in the latest versions (since that's what the village is using for one of its links right now). http://www.FreeBSD.org/cgi/query-pr.cgi?pr=4295 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 12:57:54 2001 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 F101337B407; Wed, 13 Jun 2001 12:57:46 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DJvkl57355; Wed, 13 Jun 2001 12:57:46 -0700 (PDT) (envelope-from imp) Date: Wed, 13 Jun 2001 12:57:46 -0700 (PDT) From: Message-Id: <200106131957.f5DJvkl57355@freefall.freebsd.org> To: bmcgover@cisco.com, imp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/4338: New device driver (Cyclades Cyclom-Z) 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 device driver (Cyclades Cyclom-Z) State-Changed-From-To: suspended->closed State-Changed-By: imp State-Changed-When: Wed Jun 13 13:57:32 MDT 2001 State-Changed-Why: This appears to have been integrated a long time ago. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=4338 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 12:59:12 2001 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 CF68737B405; Wed, 13 Jun 2001 12:59:03 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DJx2F57506; Wed, 13 Jun 2001 12:59:02 -0700 (PDT) (envelope-from imp) Date: Wed, 13 Jun 2001 12:59:02 -0700 (PDT) From: Message-Id: <200106131959.f5DJx2F57506@freefall.freebsd.org> To: sergey@nk.ukrtel.net, imp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/4533: Server with Cyclom-Y PCI card rebooted at random time without visible reason 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: Server with Cyclom-Y PCI card rebooted at random time without visible reason State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Wed Jun 13 13:58:37 MDT 2001 State-Changed-Why: There's a new driver for these cards in the tree now. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=4533 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 14:10:18 2001 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 1319137B40C for ; Wed, 13 Jun 2001 14:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DLA3b69194; Wed, 13 Jun 2001 14:10:03 -0700 (PDT) (envelope-from gnats) Received: from meow.osd.bsdi.com (meow.osd.bsdi.com [204.216.28.88]) by hub.freebsd.org (Postfix) with ESMTP id C7B3B37B401 for ; Wed, 13 Jun 2001 14:07:40 -0700 (PDT) (envelope-from chern@meow.osd.bsdi.com) Received: (from chern@localhost) by meow.osd.bsdi.com (8.11.3/8.11.2) id f5DL7YY43460; Wed, 13 Jun 2001 14:07:34 -0700 (PDT) (envelope-from chern) Message-Id: <200106132107.f5DL7YY43460@meow.osd.bsdi.com> Date: Wed, 13 Jun 2001 14:07:34 -0700 (PDT) From: chern.lee@windriver.com Reply-To: chern.lee@windriver.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/28130: When an incorrect login is attempted, then a successful one goes through, the login process displays the incorrect first login name 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: 28130 >Category: bin >Synopsis: When an incorrect login is attempted, then a successful one goes through, the login process displays the incorrect first login name >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jun 13 14:10:02 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Chern Lee >Release: FreeBSD 5.0-CURRENT i386 >Organization: Wind River Systems, Inc. >Environment: System: FreeBSD vision.osd.bsdi.com 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Fri May 18 17:54:33 PDT 2001 chern@vision.osd.bsdi.com:/usr/src/sys/compile/VISION i386 >Description: The login binary is invoked as "login -p user" once the user enters a username within the "login:" prompt to bring up the corresponding "password:" prompt for that particular user. This causes some problems with multiple logins. login can retry logins many times. However, the same username as the first login attempt shows up. >How-To-Repeat: In a console, attempt to login with a bogus user/password. Then, login. Look at the corresponding login process running as root. It will show up as login -p bogususer instead of the correct user. >Fix: Perhaps rewrite argv each time a login is attempted such that it always appears correctly. >Release-Note: >Audit-Trail: >Unformatted: >Severity: non-critical To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 15:38:18 2001 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 A6C4437B403; Wed, 13 Jun 2001 15:38:15 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DMcFp84699; Wed, 13 Jun 2001 15:38:15 -0700 (PDT) (envelope-from billf) Date: Wed, 13 Jun 2001 15:38:15 -0700 (PDT) From: Message-Id: <200106132238.f5DMcFp84699@freefall.freebsd.org> To: chern.lee@windriver.com, billf@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/28130: When an incorrect login is attempted, then a successful one goes through, the login process displays the incorrect first login name 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: When an incorrect login is attempted, then a successful one goes through, the login process displays the incorrect first login name State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Wed Jun 13 15:36:42 PDT 2001 State-Changed-Why: lots of programs modify their behavior after starting. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28130 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 16:45:38 2001 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 07CDF37B405; Wed, 13 Jun 2001 16:45:37 -0700 (PDT) (envelope-from archie@FreeBSD.org) Received: (from archie@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5DNjZr92953; Wed, 13 Jun 2001 16:45:35 -0700 (PDT) (envelope-from archie) Date: Wed, 13 Jun 2001 16:45:35 -0700 (PDT) From: Message-Id: <200106132345.f5DNjZr92953@freefall.freebsd.org> To: plamendp@bgstore.com, archie@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/26748: Aironet tcpdump wedge bug still exists 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: Aironet tcpdump wedge bug still exists State-Changed-From-To: open->closed State-Changed-By: archie State-Changed-When: Wed Jun 13 16:44:53 PDT 2001 State-Changed-Why: Problem fixed in latest -current and -stable. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=26748 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 17:20: 6 2001 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 D384337B401 for ; Wed, 13 Jun 2001 17:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E0K2o98180; Wed, 13 Jun 2001 17:20:02 -0700 (PDT) (envelope-from gnats) Date: Wed, 13 Jun 2001 17:20:02 -0700 (PDT) Message-Id: <200106140020.f5E0K2o98180@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bill Fenner Subject: Re: kern/26546: Add ioctl support to linux emulation and permit ethX syntax Reply-To: Bill Fenner 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/26546; it has been noted by GNATS. From: Bill Fenner To: freebsd-gnats-submit@FreeBSD.org, ambrisko@ambrisko.com Cc: Subject: Re: kern/26546: Add ioctl support to linux emulation and permit ethX syntax Date: Wed, 13 Jun 2001 17:16:13 -0700 What do you think about: - using strtoul(), to allow more than 10 eth%d's. - The value could be the ifindex (won't change if a dynamic interface in the middle of the list is deleted); you can then also use ifindex2ifnet[index] (if index < if_index) instead of walking ifnet. Advantages of using ifindex: mapping is known-map "Link#X" in netstat -ni to "ethX", mapping doesn't change, O(1) to find the right ifnet Disadvantage of using ifindex: you don't get to skip P2P, loopback and non-broadcast interfaces in the mapping. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 18:38:53 2001 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 4D5C237B401; Wed, 13 Jun 2001 18:38:52 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E1cpd07292; Wed, 13 Jun 2001 18:38:51 -0700 (PDT) (envelope-from mikeh) Date: Wed, 13 Jun 2001 18:38:51 -0700 (PDT) From: Message-Id: <200106140138.f5E1cpd07292@freefall.freebsd.org> To: gene@nttlabs.com, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/4828: ypxfr makes false assumption about RPC callback 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: ypxfr makes false assumption about RPC callback State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Wed Jun 13 18:37:48 PDT 2001 State-Changed-Why: This was fixed with rev 1.13 of ypxfr_main.c. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=4828 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 19:18:48 2001 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 49EB937B405; Wed, 13 Jun 2001 19:18:44 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E2IiX12911; Wed, 13 Jun 2001 19:18:44 -0700 (PDT) (envelope-from mikeh) Date: Wed, 13 Jun 2001 19:18:44 -0700 (PDT) From: Message-Id: <200106140218.f5E2IiX12911@freefall.freebsd.org> To: mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org, mikeh@FreeBSD.org Subject: Re: bin/5712: /bin/chio code cleaup and option added 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: /bin/chio code cleaup and option added Responsible-Changed-From-To: freebsd-bugs-> mikeh Responsible-Changed-By: mikeh Responsible-Changed-When: Wed Jun 13 19:17:05 PDT 2001 Responsible-Changed-Why: I'll look at fixing parts of this that are still applicable. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=5712 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 19:26:18 2001 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 1CEF537B407; Wed, 13 Jun 2001 19:26:15 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E2QEl13539; Wed, 13 Jun 2001 19:26:14 -0700 (PDT) (envelope-from mikeh) Date: Wed, 13 Jun 2001 19:26:14 -0700 (PDT) From: Message-Id: <200106140226.f5E2QEl13539@freefall.freebsd.org> To: street@iName.com, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/5912: kinit exits if no user name specified 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: kinit exits if no user name specified State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Wed Jun 13 19:25:00 PDT 2001 State-Changed-Why: This appears to have been fixed by rev 1.3 of kinit.c. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=5912 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 19:53: 0 2001 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 3A4E237B407; Wed, 13 Jun 2001 19:52:59 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E2qw815882; Wed, 13 Jun 2001 19:52:58 -0700 (PDT) (envelope-from mikeh) Date: Wed, 13 Jun 2001 19:52:58 -0700 (PDT) From: Message-Id: <200106140252.f5E2qw815882@freefall.freebsd.org> To: toasty@dragondata.com, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/6234: ypserv -d is broken 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: ypserv -d is broken State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Wed Jun 13 19:47:50 PDT 2001 State-Changed-Why: Many changes have been made since then. If this is still a problem, please file another PR. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=6234 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 20: 0:14 2001 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 AD9C437B405 for ; Wed, 13 Jun 2001 20:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E302b16561; Wed, 13 Jun 2001 20:00:02 -0700 (PDT) (envelope-from gnats) Date: Wed, 13 Jun 2001 20:00:02 -0700 (PDT) Message-Id: <200106140300.f5E302b16561@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: bin/7265: A warning flag is added to ln(1). Reply-To: Giorgos Keramidas 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/7265; it has been noted by GNATS. From: Giorgos Keramidas To: freebsd-gnats-submit@FreeBSD.org Cc: joelh@gnu.org Subject: Re: bin/7265: A warning flag is added to ln(1). Date: Thu, 14 Jun 2001 05:50:05 +0300 I cant locate the thread that is referenced in the PR in the -current archives. This PR seems to be too old and the change it suggests does not seem to interest anyone, for such a long time. Maybe its time we killed this beast... -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 20:30:11 2001 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 CFAD237B403 for ; Wed, 13 Jun 2001 20:30:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E3U7m22050; Wed, 13 Jun 2001 20:30:07 -0700 (PDT) (envelope-from gnats) Date: Wed, 13 Jun 2001 20:30:07 -0700 (PDT) Message-Id: <200106140330.f5E3U7m22050@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: bin/9233: gmp's mpq_add and mpq_sub are buggy Reply-To: Giorgos Keramidas 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/9233; it has been noted by GNATS. From: Giorgos Keramidas To: freebsd-gnats-submit@FreeBSD.org, schmr000@mail.uni-mainz.de Cc: Subject: Re: bin/9233: gmp's mpq_add and mpq_sub are buggy Date: Thu, 14 Jun 2001 06:25:48 +0300 I did a bit of research on this. Tested it on 4-STABLE, and it still crashes in mpq_sub(). The version of libgmp included in 4-STABLE is 2.0.2 :/ A quick search in the bug-gmp mailing list archives shows no replies on the thread linked below http://www.geocrawler.com/mail/thread.php3?subject=bug+in+gmp+version+2.0.2&list=367 Will try to test a newer version of libgmp, and see if the bug still persists. I have already contacted markm@freebsd.org about it, since he's the one who imported the version of libgmp that we currently have in 4-STABLE. -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 20:32:42 2001 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 F291737B40B; Wed, 13 Jun 2001 20:32:36 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E3Wam22467; Wed, 13 Jun 2001 20:32:36 -0700 (PDT) (envelope-from mikeh) Date: Wed, 13 Jun 2001 20:32:36 -0700 (PDT) From: Message-Id: <200106140332.f5E3Wam22467@freefall.freebsd.org> To: mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org, mikeh@FreeBSD.org Subject: Re: bin/7962: /usr/bin/ee prompts "save changes" when file unchanged if multiple files specified 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: /usr/bin/ee prompts "save changes" when file unchanged if multiple files specified Responsible-Changed-From-To: freebsd-bugs->mikeh Responsible-Changed-By: mikeh Responsible-Changed-When: Wed Jun 13 20:32:03 PDT 2001 Responsible-Changed-Why: I'll take a look at this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=7962 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 20:57:52 2001 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 3F2E437B405; Wed, 13 Jun 2001 20:57:49 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E3vnp25104; Wed, 13 Jun 2001 20:57:49 -0700 (PDT) (envelope-from mikeh) Date: Wed, 13 Jun 2001 20:57:49 -0700 (PDT) From: Message-Id: <200106140357.f5E3vnp25104@freefall.freebsd.org> To: mi@aldan.algebra.com, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/8631: pci interrupts are shown on EISA only machine 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: pci interrupts are shown on EISA only machine State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Wed Jun 13 20:56:52 PDT 2001 State-Changed-Why: There have been many changes since 3.0. If this is still a problem, please file another PR. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=8631 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 21: 0:11 2001 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 B194D37B409 for ; Wed, 13 Jun 2001 21:00:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E407n25342; Wed, 13 Jun 2001 21:00:07 -0700 (PDT) (envelope-from gnats) Date: Wed, 13 Jun 2001 21:00:07 -0700 (PDT) Message-Id: <200106140400.f5E407n25342@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: bin/11896: cap_mkdb dumps core when non-files passed as arguments Reply-To: Giorgos Keramidas 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/11896; it has been noted by GNATS. From: Giorgos Keramidas To: freebsd-gnats-submit@FreeBSD.org, adrian@ubergeeks.com Cc: Subject: Re: bin/11896: cap_mkdb dumps core when non-files passed as arguments Date: Thu, 14 Jun 2001 06:56:08 +0300 I tested this on 4-STABLE and it seems to work correctly: The source essentially the same in RELENG_3 (where this was reported) and RELENG_4, apart from err() and errx() usage, or wanr() and warnx(). Running the proposed command to test the problem: # cap_mkdb /etc cap_mkdb: file argument: Undefined error: 0 It seems that the problem was not in cap_mkdb itself, but most likely in the dbopen() call. This doesnt seem to be a problem anymore. This PR can be closed. -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 21: 2:54 2001 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 1A11037B407; Wed, 13 Jun 2001 21:02:50 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E42nC25730; Wed, 13 Jun 2001 21:02:49 -0700 (PDT) (envelope-from mikeh) Date: Wed, 13 Jun 2001 21:02:49 -0700 (PDT) From: Message-Id: <200106140402.f5E42nC25730@freefall.freebsd.org> To: tim@softpulse.com, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/8666: X blocks serial port with getty process on it 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: X blocks serial port with getty process on it State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Wed Jun 13 20:59:49 PDT 2001 State-Changed-Why: Sounds like a misconfiguration. Try again with a newer release of XFree86 and FreeBSD and open another PR if it's still a problem, and include XFree86 config file. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=8666 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 21:15:32 2001 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 B5C6C37B401; Wed, 13 Jun 2001 21:15:30 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E4FUx29586; Wed, 13 Jun 2001 21:15:30 -0700 (PDT) (envelope-from mikeh) Date: Wed, 13 Jun 2001 21:15:30 -0700 (PDT) From: Message-Id: <200106140415.f5E4FUx29586@freefall.freebsd.org> To: staffanu@nada.kth.se, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/9573: ksrvtgt not working 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: ksrvtgt not working State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Wed Jun 13 21:15:15 PDT 2001 State-Changed-Why: Fixed. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=9573 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 21:26:42 2001 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 5E91037B407; Wed, 13 Jun 2001 21:26:36 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E4Qa031023; Wed, 13 Jun 2001 21:26:36 -0700 (PDT) (envelope-from mikeh) Date: Wed, 13 Jun 2001 21:26:36 -0700 (PDT) From: Message-Id: <200106140426.f5E4Qa031023@freefall.freebsd.org> To: mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org, mikeh@FreeBSD.org Subject: Re: bin/10358: ftp(1) has problems with long pathnames 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: ftp(1) has problems with long pathnames Responsible-Changed-From-To: freebsd-bugs->mikeh Responsible-Changed-By: mikeh Responsible-Changed-When: Wed Jun 13 21:25:43 PDT 2001 Responsible-Changed-Why: Hrm...still getting strange problems with this, I'll look at it. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=10358 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 21:30:11 2001 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 74C0637B403 for ; Wed, 13 Jun 2001 21:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E4U3D31535; Wed, 13 Jun 2001 21:30:03 -0700 (PDT) (envelope-from gnats) Date: Wed, 13 Jun 2001 21:30:03 -0700 (PDT) Message-Id: <200106140430.f5E4U3D31535@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dima Dorfman Subject: Re: bin/27990: ypbind uses memory after freeing it Reply-To: Dima Dorfman 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/27990; it has been noted by GNATS. From: Dima Dorfman To: ben@FreeBSD.org Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: bin/27990: ypbind uses memory after freeing it Date: Wed, 13 Jun 2001 21:21:44 -0700 ben@FreeBSD.org writes: > >Fix: > > This has fixed the problem for me on -stable, not sure if it applies to > current too or not though. If someone can just review it I can commit > it. It applies to -current. I've tried it and it works fine. I also agree with your analysis of the problem. > > --- ypbind.c.orig Sat Jun 9 17:03:47 2001 > +++ ypbind.c Sat Jun 9 17:04:32 2001 > @@ -394,7 +394,7 @@ > int i; > DIR *dird; > struct dirent *dirp; > - struct _dom_binding *ypdb; > + struct _dom_binding *ypdb, *next; > > /* Check that another ypbind isn't already running. */ > if ((yplockfd = (open(YPBINDLOCK, O_RDONLY|O_CREAT, 0444))) == -1) > @@ -493,7 +493,8 @@ > syslog(LOG_WARNING, "select: %m"); > break; > default: > - for(ypdb=ypbindlist; ypdb; ypdb=ypdb->dom_pnext) { > + for(ypdb=ypbindlist; ypdb; ypdb=next) { > + next = ypdb->dom_pnext; > if (READFD > 0 && FD_ISSET(READFD, &fdsr)) { > handle_children(ypdb); > if (children == (MAX_CHILDREN - 1)) > > >Release-Note: > >Audit-Trail: > >Unformatted: > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 21:30:14 2001 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 9F32137B407 for ; Wed, 13 Jun 2001 21:30:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E4U6M31541; Wed, 13 Jun 2001 21:30:06 -0700 (PDT) (envelope-from gnats) Date: Wed, 13 Jun 2001 21:30:06 -0700 (PDT) Message-Id: <200106140430.f5E4U6M31541@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Hal Peterson Subject: Re: kern/19219: le driver causes kernel panic during ifconfig Reply-To: Hal Peterson 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/19219; it has been noted by GNATS. From: Hal Peterson To: freebsd-gnats-submit@FreeBSD.org, alex@wnm.net Cc: Subject: Re: kern/19219: le driver causes kernel panic during ifconfig Date: Wed, 13 Jun 2001 23:18:52 -0500 I am seeing this problem in a 4.3-STABLE system. It runs fine until I try to start the network; then it crashes. The kernel backtrace looks like this: #0 dumpsys #1 boot #2 poweroff_wait #3 trap_fatal #4 trap_pfault #5 trap #6 ?? #7 intr_mux #8 vec9 #9 softclock #10 splz_swi #11 in_control #12 if_ioctl #13 soo_ioctl #14 ioctl #15 syscall2 #16 Xint0x80_syscall #17 ?? #18 ?? I'm available to dig more information from the dump whenever you ask. (The machine is almost useless when it's off the net, and I want to get it back up and running.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 21:31: 9 2001 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 7724337B414; Wed, 13 Jun 2001 21:30:58 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E4Uwc31754; Wed, 13 Jun 2001 21:30:58 -0700 (PDT) (envelope-from dd) Date: Wed, 13 Jun 2001 21:30:58 -0700 (PDT) From: Message-Id: <200106140430.f5E4Uwc31754@freefall.freebsd.org> To: akimoto@xephion.ne.jp, dd@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/26870: change request for daily security check 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 request for daily security check State-Changed-From-To: open->closed State-Changed-By: dd State-Changed-When: Wed Jun 13 21:30:50 PDT 2001 State-Changed-Why: Committed, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=26870 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 21:35: 9 2001 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 BA98B37B401; Wed, 13 Jun 2001 21:35:06 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E4Z6b32126; Wed, 13 Jun 2001 21:35:06 -0700 (PDT) (envelope-from dd) Date: Wed, 13 Jun 2001 21:35:06 -0700 (PDT) From: Message-Id: <200106140435.f5E4Z6b32126@freefall.freebsd.org> To: maxim@macomnet.ru, dd@FreeBSD.org, freebsd-bugs@FreeBSD.org, dd@FreeBSD.org Subject: Re: misc/27051: [PATCH] /usr/sbin/named.restart does not use ${named_program} from rc.conf 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] /usr/sbin/named.restart does not use ${named_program} from rc.conf State-Changed-From-To: open->analyzed State-Changed-By: dd State-Changed-When: Wed Jun 13 21:34:54 PDT 2001 State-Changed-Why: Committed, thanks! Responsible-Changed-From-To: freebsd-bugs->dd Responsible-Changed-By: dd Responsible-Changed-When: Wed Jun 13 21:34:54 PDT 2001 Responsible-Changed-Why: My MFC reminder. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27051 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 22:40:23 2001 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 01E2637B405 for ; Wed, 13 Jun 2001 22:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E5e3g47838; Wed, 13 Jun 2001 22:40:03 -0700 (PDT) (envelope-from gnats) Date: Wed, 13 Jun 2001 22:40:03 -0700 (PDT) Message-Id: <200106140540.f5E5e3g47838@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Joel Ray Holveck Subject: Re: bin/7265: A warning flag is added to ln(1). Reply-To: Joel Ray Holveck 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/7265; it has been noted by GNATS. From: Joel Ray Holveck To: Giorgos Keramidas Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/7265: A warning flag is added to ln(1). Date: 13 Jun 2001 22:33:22 -0700 > I cant locate the thread that is referenced in the PR > in the -current archives. This PR seems to be too old > and the change it suggests does not seem to interest > anyone, for such a long time. > Maybe its time we killed this beast... I think it should be applied, under the "better late than never" clause. My apologies on the reference, the thread was in -hackers; see http://docs.freebsd.org/mail/archive/1998/freebsd-hackers/19980705.freebsd-hackers.html and http://docs.freebsd.org/mail/archive/1998/freebsd-hackers/19980712.freebsd-hackers.html for the details, and note the typo in "Improvemnet" when you search. Or, I can briefly sum up what happened. Shigio Yamaguchi noticed that doing things like "cd /usr; ln -s src/sys /tmp; cd /tmp/sys" didn't work as a naive user may expect, or even an experienced user whose brain skipped a groove briefly. He made a suggestion to add flags to ln which would cause it to do the expected thing-- one flag which would create a symlink to "/usr/src/sys" in that event, and another to create a "../usr/src/sys" symlink. rminnich replied that it may be simpler-- and possibly more effective-- just to issue a warning whenever such a symlink was made. Somebody replied that it would be against the Unix philosophy to do that, since Unix shouldn't keep you from doing what you said. I replied that this wouldn't keep you from making the symlink; it'd just remind you in case you forgot that something may be amiss. Some people argued against the change, stating that it would most certainly break something. (Quote: "As you are not able to prove for -all- cases that this change will not break things...") Some people argued against the change, stating that it was against the Unix philosophy to issue warnings. (Quote: "If dmr & ken had wanted warnings they would have added stdwarn [warning: that is a joke]") And some people argued against the change, since they simply misunderstood the effect, thinking that it would be a fatal error. (Quote: "Besides, creating a link to a non existant directory is not cause for an error condition") Then, there were those who supported the change, because they believed it would be useful, and did not believe that the above arguments were valid. (Quote: "Obviously this guy is on crack.") Now, I had some fairly strong opinions about the Unix UI at that time. (I still do, but I'm not as vocal about them.) I myself argued for the change most vehemently. To address the first point, I described the absurdity of the situation (My quote: "So, we've now got a script which relies on the stderr of another script, the latter of which makes symlinks to non-existent files, and the former of which will break if a line is added. Have I got you right?"). I also cited previous changes which had (IMHO) greater potential to break things, but didn't. Then, I challenged the list members to cite an example of something which would break, and offered a beer as bounty. To address the second point, I argued that the Unix philosophy was not to prevent stuff, but that warnings were okay; to back this up, I cited other staples which issued "superfluous" warnings (16 core programs, including cp, make, lex, and cdcontrol). I just now realized that I'm the one who seems to have proposed the "-w" flag, in a sentence in which I objected to it. Nobody else objected to adding the "-w" flag (although Terry Lambert reserved the right to do so later, on the grounds that POSIX may someday define a -w flag). It soon became clear that the entire issue was a religious war-- which I was helping to perpetuate-- and not worth the effort. In an effort to end it, I wrote a patch to implement the -w flag, submitted a pr, and sent out a message with the subject line "Re: Improvemnet of ln(1). (THE END OF IT!)" and went on with my life. I had expected the patch to be merged quickly, and figured I'd add an alias to my .bash_profile once it was. Today, I'm not sure whether I would hold the same position as I did before. I definitely support the -w addition, though; I still think it's a good idea. Seeing as how there were no objections (other than mine, and I'm the guy who later wrote the patch), I see no reason to refrain from applying the patch. Hope this helps, joelh -- Joel Ray Holveck - joelh@gnu.org Fourth law of programming: Anything that can go wrong wi sendmail: segmentation violation - core dumped To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 23:12:27 2001 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 EF6C537B408; Wed, 13 Jun 2001 23:12:16 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E6CGO54406; Wed, 13 Jun 2001 23:12:16 -0700 (PDT) (envelope-from ru) Date: Wed, 13 Jun 2001 23:12:16 -0700 (PDT) From: Message-Id: <200106140612.f5E6CGO54406@freefall.freebsd.org> To: scottw@lawinfo.com, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/20220: unable to Ctrl-C (quit) when using "more" functionality 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: unable to Ctrl-C (quit) when using "more" functionality State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Wed Jun 13 23:11:24 PDT 2001 State-Changed-Why: Problem not reproduceable. Check your stty(1) settings. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=20220 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 13 23:37:29 2001 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 00D6F37B40C; Wed, 13 Jun 2001 23:37:25 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E6bOw56371; Wed, 13 Jun 2001 23:37:24 -0700 (PDT) (envelope-from ru) Date: Wed, 13 Jun 2001 23:37:24 -0700 (PDT) From: Message-Id: <200106140637.f5E6bOw56371@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, ru@FreeBSD.org Subject: Re: kern/25006: cannot ignore arp (ifconfig -arp doesn't 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: cannot ignore arp (ifconfig -arp doesn't work) Responsible-Changed-From-To: freebsd-bugs->ru Responsible-Changed-By: ru Responsible-Changed-When: Wed Jun 13 23:37:06 PDT 2001 Responsible-Changed-Why: I will handle it. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=25006 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 1:42:15 2001 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 993EA37B403; Thu, 14 Jun 2001 01:42:12 -0700 (PDT) (envelope-from tobez@FreeBSD.org) Received: (from tobez@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5E8gCp76233; Thu, 14 Jun 2001 01:42:12 -0700 (PDT) (envelope-from tobez) Date: Thu, 14 Jun 2001 01:42:12 -0700 (PDT) From: Message-Id: <200106140842.f5E8gCp76233@freefall.freebsd.org> To: tobez@FreeBSD.org, freebsd-bugs@FreeBSD.org, tobez@FreeBSD.org Subject: Re: misc/15421: initgroups(3) spits out messages to stderr; it probably shouldn't 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: initgroups(3) spits out messages to stderr; it probably shouldn't Responsible-Changed-From-To: freebsd-bugs->tobez Responsible-Changed-By: tobez Responsible-Changed-When: Thu Jun 14 01:41:48 PDT 2001 Responsible-Changed-Why: It's my PR. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=15421 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 3: 6:54 2001 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 8E1F337B40B; Thu, 14 Jun 2001 03:06:47 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EA6l389911; Thu, 14 Jun 2001 03:06:47 -0700 (PDT) (envelope-from schweikh) Date: Thu, 14 Jun 2001 03:06:47 -0700 (PDT) From: Message-Id: <200106141006.f5EA6l389911@freefall.freebsd.org> To: crandall@matchlogic.com, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/24590: timezone function not compatible witn Single Unix Spec v2 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: timezone function not compatible witn Single Unix Spec v2 State-Changed-From-To: open->suspended State-Changed-By: schweikh State-Changed-When: Thu Jun 14 03:05:14 PDT 2001 State-Changed-Why: According to Garrett Wollmann: I think suspended is probably the right state. There has been some movement on fixing the time APIs recently, although it will not make it into this review cycle. It's worth keeping the PR around for the next time someone notices this difference. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24590 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 3:18:37 2001 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 8575037B405; Thu, 14 Jun 2001 03:18:31 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EAIVU91152; Thu, 14 Jun 2001 03:18:31 -0700 (PDT) (envelope-from schweikh) Date: Thu, 14 Jun 2001 03:18:31 -0700 (PDT) From: Message-Id: <200106141018.f5EAIVU91152@freefall.freebsd.org> To: taz@lagmonster.org, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/24166: Allow Date to generate an RFC-822 Compliant output. 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: Allow Date to generate an RFC-822 Compliant output. State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Thu Jun 14 03:16:46 PDT 2001 State-Changed-Why: Committed maintainer change. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24166 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 3:20:12 2001 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 B21F737B407 for ; Thu, 14 Jun 2001 03:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EAK1A91274; Thu, 14 Jun 2001 03:20:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7354D37B401 for ; Thu, 14 Jun 2001 03:16:19 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EAGJd90872; Thu, 14 Jun 2001 03:16:19 -0700 (PDT) (envelope-from nobody) Message-Id: <200106141016.f5EAGJd90872@freefall.freebsd.org> Date: Thu, 14 Jun 2001 03:16:19 -0700 (PDT) From: Jonas Jochum To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/28142: csa driver doesn't play sound on -current 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: 28142 >Category: kern >Synopsis: csa driver doesn't play sound on -current >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 14 03:20:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Jonas Jochum >Release: FreeBSD-CURRENT >Organization: >Environment: FreeBSD mahatma.commandline.de 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Wed Jun 13 22:05:54 CEST 2001 root@mahatma.commandline.de:/usr/src/sys/compile/M i386 >Description: The csa driver doesn't play any sounds on recent -current-kernels. It complains about "play interrupt" timeouts. The following is, what dmesg says about my sound card: csa0: mem 0xdb800000-0xdb8fffff, 0xdc000000-0xdc000fff irq 5 at device 13.0 on pci0 csa: card is Unknown/invalid SSID (CS4614) pcm0: on csa0 midi0: on csa0 >How-To-Repeat: use xmms to play mp3s ;) >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 3:29:33 2001 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 D6E8037B401; Thu, 14 Jun 2001 03:29:30 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EATU792228; Thu, 14 Jun 2001 03:29:30 -0700 (PDT) (envelope-from schweikh) Date: Thu, 14 Jun 2001 03:29:30 -0700 (PDT) From: Message-Id: <200106141029.f5EATU792228@freefall.freebsd.org> To: ian@mahuron.org, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/22279: stock perl5 build does not support %Z spec in strftime 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: stock perl5 build does not support %Z spec in strftime State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Thu Jun 14 03:28:31 PDT 2001 State-Changed-Why: Fixed in -current (which uses perl 5.6.0). http://www.FreeBSD.org/cgi/query-pr.cgi?pr=22279 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 3:40: 8 2001 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 8E9AC37B403 for ; Thu, 14 Jun 2001 03:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EAe5292889; Thu, 14 Jun 2001 03:40:05 -0700 (PDT) (envelope-from gnats) Date: Thu, 14 Jun 2001 03:40:05 -0700 (PDT) Message-Id: <200106141040.f5EAe5292889@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Volker Stolz Subject: Re: bin/22071: mtree hangs on fifos Reply-To: Volker Stolz 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/22071; it has been noted by GNATS. From: Volker Stolz To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: bin/22071: mtree hangs on fifos Date: Thu, 14 Jun 2001 12:31:40 +0200 Patch has been provided. Apply. Verify. This PR can be closed -- Abstrakte Syntaxträume. Volker Stolz * stolz@i2.informatik.rwth-aachen.de * PGP + S/MIME To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 4:27:45 2001 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 592B637B403; Thu, 14 Jun 2001 04:27:36 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EBRZA05520; Thu, 14 Jun 2001 04:27:35 -0700 (PDT) (envelope-from schweikh) Date: Thu, 14 Jun 2001 04:27:35 -0700 (PDT) From: Message-Id: <200106141127.f5EBRZA05520@freefall.freebsd.org> To: inoue@siterock.co.jp, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/19118: vmstat¤Ç avm¤Èfre¤ÎÃͤ¬Àܤ¹¤ë¡£ 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: vmstat¤Ç avm¤Èfre¤ÎÃͤ¬Àܤ¹¤ë¡£ State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Thu Jun 14 04:25:21 PDT 2001 State-Changed-Why: Duplicate of PR 25267 which has been fixed lately. Please don't write in Japanese when sending PRs. Using English is probably best as most committers can then figure out the problem. Thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19118 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 5: 5:41 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from proxy.ejunction (ejunction-adsl.sentex.ca [199.212.135.196]) by hub.freebsd.org (Postfix) with ESMTP id E41B637B405; Thu, 14 Jun 2001 05:05:38 -0700 (PDT) (envelope-from tallman@qjunction.com) Received: from TALLMAN-WINPC (tallman-winpc.ejunction [192.168.0.165]) by proxy.ejunction (8.9.3/8.9.3) with ESMTP id HAA08786; Thu, 14 Jun 2001 07:57:21 -0400 Date: Thu, 14 Jun 2001 08:05:59 -0400 (Eastern Daylight Time) From: Tim Allman To: Cc: , Subject: Re: bin/8666: X blocks serial port with getty process on it In-Reply-To: <200106140402.f5E42nC25730@freefall.freebsd.org> Message-ID: X-X-Sender: tallman@mail.ejunction 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 Mmmm. It's great that you got back to me but you might check the date of the bug report. It was literally years ago that I submitted it. Anyway, I don't want to sound ungrateful and I still use FreeBSD at home. Thanks for the reply. On Wed, 13 Jun 2001 mikeh@FreeBSD.org wrote: > Synopsis: X blocks serial port with getty process on it > > State-Changed-From-To: open->closed > State-Changed-By: mikeh > State-Changed-When: Wed Jun 13 20:59:49 PDT 2001 > State-Changed-Why: > Sounds like a misconfiguration. Try again with a newer release of XFree86 > and FreeBSD and open another PR if it's still a problem, and include > XFree86 config file. > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=8666 > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 6: 3:28 2001 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 4572937B41D; Thu, 14 Jun 2001 06:03:16 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5ED3FL15952; Thu, 14 Jun 2001 06:03:15 -0700 (PDT) (envelope-from ru) Date: Thu, 14 Jun 2001 06:03:15 -0700 (PDT) From: Message-Id: <200106141303.f5ED3FL15952@freefall.freebsd.org> To: ben@destek.net, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/12898: Added a command-line switch to netstat to output the number of routes in the routing table. 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: Added a command-line switch to netstat to output the number of routes in the routing table. State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Thu Jun 14 06:02:20 PDT 2001 State-Changed-Why: Sorry, but this smells more like a bloat. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=12898 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 6:10:45 2001 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 A3F4237B40B; Thu, 14 Jun 2001 06:10:32 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EDAWW19729; Thu, 14 Jun 2001 06:10:32 -0700 (PDT) (envelope-from schweikh) Date: Thu, 14 Jun 2001 06:10:32 -0700 (PDT) From: Message-Id: <200106141310.f5EDAWW19729@freefall.freebsd.org> To: kbyanc@posi.net, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/19514: patch to prevent tail'ing directories 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 to prevent tail'ing directories State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Thu Jun 14 06:07:46 PDT 2001 State-Changed-Why: We think that it's better to stick to the WYGIWYAF principle (what you get is what you asked for). As bde points out, why should "head /" not do the same thing as "cat / | head"? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19514 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 6:12:55 2001 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 E094037B406; Thu, 14 Jun 2001 06:12:50 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EDCHO19963; Thu, 14 Jun 2001 06:12:17 -0700 (PDT) (envelope-from schweikh) Date: Thu, 14 Jun 2001 06:12:17 -0700 (PDT) From: Message-Id: <200106141312.f5EDCHO19963@freefall.freebsd.org> To: kbyanc@posi.net, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/19536: patch to prevent head'ing directories 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 to prevent head'ing directories State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Thu Jun 14 06:11:18 PDT 2001 State-Changed-Why: We think that it's better to stick to the WYGIWYAF principle (what you get is what you asked for). As bde points out, why should "tail /" not do the same thing as "cat / | tail"? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19536 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 6:14:30 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp016.mail.yahoo.com (smtp016.mail.yahoo.com [216.136.174.113]) by hub.freebsd.org (Postfix) with SMTP id 519F337B401 for ; Thu, 14 Jun 2001 06:14:20 -0700 (PDT) (envelope-from secarlisle@yahoo.com) Received: from unknown (HELO carlislepc) (204.208.108.78) by smtp.mail.vip.sc5.yahoo.com with SMTP; 14 Jun 2001 13:14:20 -0000 X-Apparently-From: From: "Steve Carlisle" To: Cc: , Subject: Re: kern/25507: contribute Intel ICH sound driver Date: Thu, 14 Jun 2001 08:14:19 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 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 am having a really hard time loading this driver ... any tips? ***************** Date: Sun, 11 Mar 2001 16:06:50 -0800 (PST) From: To: kris@FreeBSD.org, freebsd-bugs@FreeBSD.org, cg@FreeBSD.org Subject: Re: kern/25507: contribute Intel ICH sound driver Message-ID: <200103120006.f2C06oD91688@freefall.freebsd.org> ---------------------------------------------------------------------------- ---- Next in thread | Raw E-Mail | Index | Archive | Help ---------------------------------------------------------------------------- ---- Synopsis: contribute Intel ICH sound driver Responsible-Changed-From-To: freebsd-bugs->cg Responsible-Changed-By: kris Responsible-Changed-When: Sun Mar 11 16:06:39 PST 2001 Responsible-Changed-Why: cg is Mr. Sound. http://www.freebsd.org/cgi/query-pr.cgi?pr=25507 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message ---------------------------------------------------------------------------- ---- www@FreeBSD.org _________________________________________________________ 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 Thu Jun 14 6:20: 5 2001 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 670A437B405 for ; Thu, 14 Jun 2001 06:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EDK3e21015; Thu, 14 Jun 2001 06:20:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 14 Jun 2001 06:20:03 -0700 (PDT) Message-Id: <200106141320.f5EDK3e21015@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jens Schweikhardt Subject: Re: bin/15877 Perl 5.00503 interpreter crashes with a signal 11 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/15877; it has been noted by GNATS. From: Jens Schweikhardt To: rfg@monkeys.com Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/15877 Perl 5.00503 interpreter crashes with a signal 11 Date: Thu, 14 Jun 2001 14:48:24 +0200 Ronald, does perl still crash for more recent FreeBSD releases (preferably 4.3-Stable)? In -current we use perl 5.6.0 and before I go testing I'd like to know if the bug still persists. 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 Thu Jun 14 6:40: 5 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from vilnya.demon.co.uk (vilnya.demon.co.uk [158.152.19.238]) by hub.freebsd.org (Postfix) with ESMTP id 3689237B40B; Thu, 14 Jun 2001 06:39:56 -0700 (PDT) (envelope-from gandalf@vilnya.demon.co.uk) Received: from haveblue (haveblue.rings [10.2.4.5]) by vilnya.demon.co.uk (Postfix) with SMTP id 3AC22D9BC; Thu, 14 Jun 2001 14:39:51 +0100 (BST) Message-ID: <01fa01c0f4d7$b0594400$0504020a@haveblue> From: "Cameron Grant" To: "Steve Carlisle" , Cc: , References: Subject: Re: kern/25507: contribute Intel ICH sound driver Date: Thu, 14 Jun 2001 14:40:19 +0100 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.2462.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2462.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 > I am having a really hard time loading this driver ... any tips? the driver is probably outdated by recent changes. a functioning driver will be committed once my ich-based hardware arrives. -cg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 6:48:32 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp014.mail.yahoo.com (smtp014.mail.yahoo.com [216.136.173.58]) by hub.freebsd.org (Postfix) with SMTP id 721A737B40E for ; Thu, 14 Jun 2001 06:48:20 -0700 (PDT) (envelope-from secarlisle@yahoo.com) Received: from unknown (HELO carlislepc) (204.208.108.78) by smtp.mail.vip.sc5.yahoo.com with SMTP; 14 Jun 2001 13:48:20 -0000 X-Apparently-From: From: "Steve Carlisle" To: "Cameron Grant" , Cc: , Subject: RE: kern/25507: contribute Intel ICH sound driver Date: Thu, 14 Jun 2001 08:48:19 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-reply-to: <01fa01c0f4d7$b0594400$0504020a@haveblue> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 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 Cameron (et al), Okay, I am not THAT dumb then ... Thanks. Can you let me know when it is available? Thanks, Steve -----Original Message----- From: Cameron Grant [mailto:gandalf@vilnya.demon.co.uk] Sent: Thursday, June 14, 2001 8:40 AM To: Steve Carlisle; kris@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org; cg@FreeBSD.org Subject: Re: kern/25507: contribute Intel ICH sound driver > I am having a really hard time loading this driver ... any tips? the driver is probably outdated by recent changes. a functioning driver will be committed once my ich-based hardware arrives. -cg _________________________________________________________ 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 Thu Jun 14 7:41:36 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from sentry.granch.com (sentry.granch.com [212.109.197.55]) by hub.freebsd.org (Postfix) with ESMTP id 7C75C37B401 for ; Thu, 14 Jun 2001 07:41:31 -0700 (PDT) (envelope-from shelton@sentry.granch.com) Received: (from shelton@localhost) by sentry.granch.com (8.11.3/8.11.3) id f5EEfS700798 for freebsd-bugs@freebsd.org; Thu, 14 Jun 2001 21:41:28 +0700 (NOVST) (envelope-from shelton) Content-Type: text/plain; charset="koi8-r" From: "Rashid N. Achilov" Organization: Granch Ltd. To: freebsd-bugs@freebsd.org Subject: At Least! I'm fed up! Date: Thu, 14 Jun 2001 21:41:27 +0700 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <01061421412700.00698@sentry.granch.com> Content-Transfer-Encoding: 8bit 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 Now I'm fed up to the throat. My box (FreeBSD 4.3-STABLE, cvsup at last saturday) again hung up, when I tried to read read-only mounted floppy. We have recently discussed this - what now? Ten (10) minutes to write this stupid patch. I won't discuss annoyed this user or not annoyed - for me it's worked. For you... --- /tmp/mount.c Sat Jun 9 03:36:00 2001 +++ mount.c Thu Jun 14 21:12:08 2001 @@ -380,7 +380,7 @@ const char *argv[100], **edir; struct statfs sf; pid_t pid; - int argc, i, status; + int argc, i, status = 0; char *optbuf, execname[MAXPATHLEN + 1], mntpath[MAXPATHLEN]; #if __GNUC__ @@ -388,6 +388,29 @@ (void)&name; #endif +// Check if mounting floppy. When true, ask about doing. + + if (!strcmp(spec,"/dev/fd0")) + { + while(status == 0) + { + fprintf(stderr,"Mounting floppy. Be sure that R/W curtains is CLOSED! Proceed? [Y,N]:"); + + fpurge(stdin); + i = getchar(); + + switch(toupper(i)) + { + case 'Y': status = 1; + break; // You has been warned :-( + + case 'N': return(1); + + default : ; + } + } + } + /* resolve the mountpoint with realpath(3) */ (void)checkpath(name, mntpath); name = mntpath; -- With Best Regards. Rashid N. Achilov (RNA1-RIPE), Web: http://granch.ru/~shelton Granch Ltd. system administrator, e-mail: achilov@granch.ru PGP: 83 CD E2 A7 37 4A D5 81 D6 D6 52 BF C9 2F 85 AF 97 BE CB 0A To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 8: 0:18 2001 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 ADEC537B403 for ; Thu, 14 Jun 2001 08:00:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EF08K35920; Thu, 14 Jun 2001 08:00:08 -0700 (PDT) (envelope-from gnats) Date: Thu, 14 Jun 2001 08:00:08 -0700 (PDT) Message-Id: <200106141500.f5EF08K35920@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Josef Karthauser Subject: Re: bin/28026: Rage 128 Suspend issues 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 bin/28026; it has been noted by GNATS. From: Josef Karthauser To: spadger@best.com Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/28026: Rage 128 Suspend issues Date: Thu, 14 Jun 2001 15:50:42 +0100 --EVF5PPMfhYS0aIcm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jun 11, 2001 at 03:30:48AM +0100, spadger@best.com wrote: >=20 > On such a machine as described (laptop with APM enabled > and Rage Mobility chipset), suspend the machine, either > via hardware or via 'apm', whilst running X. >=20 I also have a similar problem with a Dell Inspiron 5000e with the same video chipset. I'm running -current and acpi. Joe --EVF5PPMfhYS0aIcm 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 iEYEARECAAYFAjsoz0EACgkQXVIcjOaxUBbnhwCg7l/mByGzGvXSWDRHyEWcDhgz vtIAnj34BM7aP7dRXbalpxu599kmPnuM =LFBo -----END PGP SIGNATURE----- --EVF5PPMfhYS0aIcm-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 9:30:14 2001 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 2894837B401 for ; Thu, 14 Jun 2001 09:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EGU2U51186; Thu, 14 Jun 2001 09:30:02 -0700 (PDT) (envelope-from gnats) Received: from soralx.cydem.zp.ua (usr115.marka.net.ua [217.24.162.115]) by hub.freebsd.org (Postfix) with ESMTP id 0EE9D37B401 for ; Thu, 14 Jun 2001 09:21:37 -0700 (PDT) (envelope-from root@soralx.cydem.zp.ua) Received: (from root@localhost) by usr176.marka.net.ua (8.9.3/8.9.3) id XAA00892; Wed, 13 Jun 2001 23:50:49 +0300 (EEST) (envelope-from root) Message-Id: <200106132050.XAA00892@usr176.marka.net.ua> Date: Wed, 13 Jun 2001 23:50:49 +0300 (EEST) From: alex@spsl.zp.ua Reply-To: alex@spsl.zp.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/28151: bin 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: 28151 >Category: bin >Synopsis: HUGE bin's filesizes >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jun 14 09:30:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 4.0-RELEASE i386 >Organization: >Environment: >Description: 1. Huge binarie's size. For example, FreeBSD's 'ls' is 3.75 times larger than in Linux Hey, where did you take so heavy binaries? There were the same sources for Linux & for FreeBSD, AFAIK. 2. Is it impossible to correct: FreeBSD works with swap very slowly? 3. Where can I get info about system's interrupts, kernel functions and the whole architecture of FreeBSD? 4. Sorry for my English =) Plz, replay me to: alex@spsl.zp.ua >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 9:30:15 2001 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 E7B7937B403 for ; Thu, 14 Jun 2001 09:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EGU1P51177; Thu, 14 Jun 2001 09:30:01 -0700 (PDT) (envelope-from gnats) Received: from soralx.cydem.zp.ua (usr115.marka.net.ua [217.24.162.115]) by hub.freebsd.org (Postfix) with ESMTP id 4CD5637B405 for ; Thu, 14 Jun 2001 09:21:24 -0700 (PDT) (envelope-from root@soralx.cydem.zp.ua) Received: (from root@localhost) by usr176.marka.net.ua (8.9.3/8.9.3) id AAA01040; Thu, 14 Jun 2001 00:01:56 +0300 (EEST) (envelope-from root) Message-Id: <200106132101.AAA01040@usr176.marka.net.ua> Date: Thu, 14 Jun 2001 00:01:56 +0300 (EEST) From: alex@spsl.zp.ua Reply-To: alex@spsl.zp.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/28150: HUGE bin's filesizes 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: 28150 >Category: bin >Synopsis: HUGE bin's filesizes >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jun 14 09:30:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 4.0-RELEASE i386 >Organization: >Environment: >Description: 1. Huge binaries size. For example, FreeBSD's 'ls' is 3.75 times larger than in Linux Hey, where did you take so heavy binaries? There were the same sources for Linux & for FreeBSD, AFAIK. 2. Is it impossible to correct: FreeBSD works with swap very slowly? 3. Where can I get info about system's interrupts, kernel functions and the whole architecture of FreeBSD? 4. Sorry for my English =) Plz, replay me to: alex@spsl.zp.ua >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 9:34:43 2001 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 3B6AE37B406; Thu, 14 Jun 2001 09:34:36 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EGYar51721; Thu, 14 Jun 2001 09:34:36 -0700 (PDT) (envelope-from phk) Date: Thu, 14 Jun 2001 09:34:36 -0700 (PDT) From: Message-Id: <200106141634.f5EGYar51721@freefall.freebsd.org> To: alex@spsl.zp.ua, phk@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/28151: HUGE bin's filesizes 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: HUGE bin's filesizes State-Changed-From-To: open->closed State-Changed-By: phk State-Changed-When: Thu Jun 14 09:33:23 PDT 2001 State-Changed-Why: Please see http://www.freebsd.org for more information on FreeBSD. To answer you questions 1-3 probably requires that you read a couple of good CS textbooks in order for you to understand tha answers. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28151 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 9:41:24 2001 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 0D69637B405; Thu, 14 Jun 2001 09:41:21 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EGfLc52422; Thu, 14 Jun 2001 09:41:21 -0700 (PDT) (envelope-from ru) Date: Thu, 14 Jun 2001 09:41:21 -0700 (PDT) From: Message-Id: <200106141641.f5EGfLc52422@freefall.freebsd.org> To: alex@spsl.zp.ua, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/28150: HUGE bin's filesizes 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: HUGE bin's filesizes State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Thu Jun 14 09:39:59 PDT 2001 State-Changed-Why: Superseded by duplicate PR 28151. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28150 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 10:24:28 2001 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 2756E37B405; Thu, 14 Jun 2001 10:24:26 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EHOQn60843; Thu, 14 Jun 2001 10:24:26 -0700 (PDT) (envelope-from des) Date: Thu, 14 Jun 2001 10:24:26 -0700 (PDT) From: Message-Id: <200106141724.f5EHOQn60843@freefall.freebsd.org> To: des@FreeBSD.org, freebsd-bugs@FreeBSD.org, des@FreeBSD.org Subject: Re: kern/26546: Add ioctl support to linux emulation and permit ethX syntax 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: Add ioctl support to linux emulation and permit ethX syntax Responsible-Changed-From-To: freebsd-bugs->des Responsible-Changed-By: des Responsible-Changed-When: Thu Jun 14 10:23:49 PDT 2001 Responsible-Changed-Why: I'll take this one. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=26546 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 12:19:31 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from free-asia.com (www.free-asia.com [64.23.81.203]) by hub.freebsd.org (Postfix) with ESMTP id 7CDCD37B401 for ; Thu, 14 Jun 2001 12:19:19 -0700 (PDT) (envelope-from info@free-asia.com) Received: (from nobody@localhost) by free-asia.com (8.9.3/8.9.3) id PAA31116; Fri, 15 Jun 2001 15:12:46 -0400 Date: Fri, 15 Jun 2001 15:12:46 -0400 From: info@free-asia.com Message-Id: <200106151912.PAA31116@free-asia.com> X-Authentication-Warning: free-asia.com: nobody set sender to info@free-asia.com using -f To: freebsd-bugs@FreeBSD.ORG Reply_to: info@free-asia.com Subject: $B!JL5NA%3%s%F%s%D!K(BFREE JAPANESE TOONS UPDATED DAILY! Content-Transfer-Encoding: 7bit Content-Type: text/plain 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 To cancel your subscription please click on the link : http://64.23.86.178/rejectmail.html XXX FREE-ASIAN DAYLY PICTURE ARCHIVE! Japanese 10 pics updated daily! Point your browser at: http://www.free-asia.com/free/okazu/ JAPANESE SCHOOL GIRL'S GOLDEN ARCHIVES! Our favorite now with over 1000 good NO CUT samples at: http://www.hentaij.com/gold/ JAPANESE TEENS PUSSY ARCHIVE! JAPANESE PUSSY!! 10+ nice free 10 pics updated daily from my lists at: http://www.free-asia.com/free/pussy/ AMATEUR 2000 JAPANESE GIRLS! Best favorite 2000 good samples and more than 2000 girls photo at: http://www.amateurj.com/2000/ HENTAI SUKIYAKI GIRLS ARCHIVE! Get the latest on Asian's bad girl and her boy toy at: http://www.free-asia.com/free/sukiyaki/ JAPANESE HENTAI CRAZY MAG! All Japanese Crazy pics. Definitely So great mag at: http://www.hentaij.com/crazy/ SEXY MODELS AND QUEENS ROSE SCAN! 1000 free pics if you scroll down the page from: http://151.196.201.3/ ALL AMATEUR WOMAN ARCHIVE! Lots of Amateur pics rotated here. Check it out now: http://www.amateurj.com/ama/ MANIA BONDEGE AND RAPE JAPANESE WOMAN! 1000 + nice Hentai SM pics. there is this: http://151.196.93.148/sm/ JAPANESE AMATEUR XXX ARCHIVE! Lots of Asian Amateur Teens pics rotated here: http://www.hentaij.com/teens_vip/ Copyrighted (c) FREE-ASIA.COM To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 12:40: 8 2001 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 CA5BC37B408 for ; Thu, 14 Jun 2001 12:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EJe3Q80920; Thu, 14 Jun 2001 12:40:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 14 Jun 2001 12:40:03 -0700 (PDT) Message-Id: <200106141940.f5EJe3Q80920@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Konstantinos Konstantinidis Subject: Re: kern/14322: mount respects permissions of underlying directoy!! (This PR can be closed) Reply-To: Konstantinos Konstantinidis 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/14322; it has been noted by GNATS. From: Konstantinos Konstantinidis To: freebsd-gnats-submit@FreeBSD.org, lkoeller@cc.fh-lippe.de Cc: Subject: Re: kern/14322: mount respects permissions of underlying directoy!! (This PR can be closed) Date: Thu, 14 Jun 2001 22:39:50 +0300 Hello, I just tested this on a recent -STABLE and 4.3-RELEASE and it does not have this "unexpected" behaviour, I also doubt that anyone is going to fix this for 3-STABLE :> This PR can be closed --kkonstan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 12:40:11 2001 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 21B6837B406 for ; Thu, 14 Jun 2001 12:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EJe1P80915; Thu, 14 Jun 2001 12:40:01 -0700 (PDT) (envelope-from gnats) Received: from ler-freebie.iadfw.net (ler-freebie.iadfw.net [206.66.13.221]) by hub.freebsd.org (Postfix) with ESMTP id 7CA6137B407 for ; Thu, 14 Jun 2001 12:37:05 -0700 (PDT) (envelope-from ler@ler-freebie.iadfw.net) Received: (from ler@localhost) by ler-freebie.iadfw.net (8.11.4/8.11.3) id f5EJb3U26594; Thu, 14 Jun 2001 14:37:03 -0500 (CDT) (envelope-from ler) Message-Id: <200106141937.f5EJb3U26594@ler-freebie.iadfw.net> Date: Thu, 14 Jun 2001 14:37:03 -0500 (CDT) From: Larry Rosenman Reply-To: Larry Rosenman To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/28152: StarOffice 5.2 broke between 10Jun2001 and 13Jun2001 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: 28152 >Category: kern >Synopsis: StarOffice 5.2 broke between 10Jun2001 and 13Jun2001 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 14 12:40:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Larry Rosenman >Release: FreeBSD 4.3-STABLE i386 >Organization: Internet America, Inc. >Environment: System: FreeBSD ler-freebie.iadfw.net 4.3-STABLE FreeBSD 4.3-STABLE #15: Wed Jun 13 17:01:14 CDT 2001 ler@ler-freebie.iadfw.net:/usr/obj/usr/src/sys/LER-FREEBIE i386 >Description: StarOffice 5.2 which was running fine on a 4Jun2001 RELENG_4 build, now puts up it's splash screen and gets stuck in a linux_new_select sched_yield loop, and never initializes. >How-To-Repeat: update to 13Jun2001 Kernel sources, compile kernel, try and run staroffice 5.2 >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 13:10: 7 2001 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 0B21E37B406 for ; Thu, 14 Jun 2001 13:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EKA2n86157; Thu, 14 Jun 2001 13:10:02 -0700 (PDT) (envelope-from gnats) Date: Thu, 14 Jun 2001 13:10:02 -0700 (PDT) Message-Id: <200106142010.f5EKA2n86157@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Konstantinos Konstantinidis Subject: Re: i386/17883: 4.0-RELEASE panics during install. Reply-To: Konstantinos Konstantinidis 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/17883; it has been noted by GNATS. From: Konstantinos Konstantinidis To: freebsd-gnats-submit@FreeBSD.org, adam@nine.net Cc: Subject: Re: i386/17883: 4.0-RELEASE panics during install. Date: Thu, 14 Jun 2001 23:03:28 +0300 Hello, This is a really old PR, and it does not supply enough information either... Is it still relevant? Do you still have that Packad Bell box? Have you tried a newer release since then? Anyway... This PR can be closed --kkonstan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 13:20:27 2001 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 869C137B406 for ; Thu, 14 Jun 2001 13:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EKK3t87282; Thu, 14 Jun 2001 13:20:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 14 Jun 2001 13:20:03 -0700 (PDT) Message-Id: <200106142020.f5EKK3t87282@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Thomas Quinot Subject: Re: kern/24596: sysinstall crash: Page fault while in kernel mode Reply-To: Thomas Quinot 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/24596; it has been noted by GNATS. From: Thomas Quinot To: freebsd-gnats-submit@FreeBSD.org Cc: ernst@jollem.com Subject: Re: kern/24596: sysinstall crash: Page fault while in kernel mode Date: Thu, 14 Jun 2001 22:10:34 +0200 I reproduced the very same crash today with: 4.3-STABLE FreeBSD 4.3-STABLE #2: Tue May 1 20:28:53 CEST 2001 I have a make world on a freshly-cvsupped source tree in progess right now, in the hope that it will relieve the problem. dmesg output: Copyright (c) 1992-2001 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.3-STABLE #2: Tue May 1 20:28:53 CEST 2001 thomas@melusine.cuivre.fr.eu.org:/usr/obj/usr/src/sys/MELUSINE Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Pentium II Xeon/Celeron (300.68-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x660 Stepping = 0 Features=0x183f9ff real memory = 134205440 (131060K bytes) avail memory = 126836736 (123864K bytes) Preloaded elf kernel "kernel" at 0xc03b6000. Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 11 isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0xb800-0xb80f at device 4.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 4.2 irq 9 chip1: port 0xe800-0xe80f at device 4.3 on pci0 pci0: (vendor=0x109e, dev=0x0350) at 9.0 irq 9 xl0: <3Com 3c900-COMBO Etherlink XL> port 0xb000-0xb03f irq 9 at device 10.0 on pci0 xl0: Ethernet address: 00:60:97:7c:8c:2c xl0: selecting 10baseT transceiver, half duplex pcm0: port 0xa800-0xa83f irq 9 at device 11.0 on pci0 sym0: <875> port 0xa400-0xa4ff mem 0xdf800000-0xdf800fff,0xe0000000-0xe00000ff irq 11 at device 12.0 on pci0 sym0: Tekram NVRAM, ID 7, Fast-20, SE, parity checking fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model MouseMan+, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 5 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A sio2 at port 0x3e8-0x3ef irq 4 on isa0 sio2: type 16550A sio3 at port 0x2e8-0x2ef irq 10 on isa0 sio3: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/9 bytes threshold ppi0: on ppbus0 plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port IP Filter: v3.4.16 initialized. Default = pass all, Logging = enabled ad0: 6149MB [13328/15/63] at ata0-master UDMA33 ad1: 14324MB [29104/16/63] at ata0-slave UDMA33 acd0: DVD-ROM at ata1-master using PIO4 Waiting 3 seconds for SCSI devices to settle sa0 at sym0 bus 0 target 5 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 10.000MB/s transfers (10.000MHz, offset 8) Mounting root from ufs:/dev/ad1s1a WARNING: / was not properly dismounted da0 at sym0 bus 0 target 6 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 40.000MB/s transfers (20.000MHz, offset 15, 16bit), Tagged Queueing Enabled da0: 8715MB (17850000 512 byte sectors: 255H 63S/T 1111C) (cd0:sym0:0:2:0): got CAM status 0x4c (cd0:sym0:0:2:0): fatal error, failed to attach to device (cd0:sym0:0:2:0): lost device (cd0:sym0:0:2:0): removing device entry IP Filter: already initialized uhci0: port 0xb400-0xb41f irq 9 at device 4.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered -- Thomas.Quinot@Cuivre.FR.EU.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 13:40:16 2001 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 A17C137B40D for ; Thu, 14 Jun 2001 13:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EKe2a89464; Thu, 14 Jun 2001 13:40:02 -0700 (PDT) (envelope-from gnats) Date: Thu, 14 Jun 2001 13:40:02 -0700 (PDT) Message-Id: <200106142040.f5EKe2a89464@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Konstantinos Konstantinidis Subject: Re: misc/23284: locate database does not get rebuilt Reply-To: Konstantinos Konstantinidis 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/23284; it has been noted by GNATS. From: Konstantinos Konstantinidis To: freebsd-gnats-submit@FreeBSD.org, malachai@iname.com Cc: Subject: Re: misc/23284: locate database does not get rebuilt Date: Thu, 14 Jun 2001 23:36:15 +0300 Hello, It appears that this is no longer the case, I ran /etc/periodic/weekly/310.locate numerous times on a few hosts of mine and i'm quite confident that the locatedb is complete. This PR can be closed --kkonstan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 14:10: 7 2001 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 EBE6537B403 for ; Thu, 14 Jun 2001 14:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5ELA3K95057; Thu, 14 Jun 2001 14:10:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 14 Jun 2001 14:10:03 -0700 (PDT) Message-Id: <200106142110.f5ELA3K95057@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: avn@any.ru Subject: Re: i386/23643: dlopen() can't link to symbols in% Reply-To: avn@any.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 i386/23643; it has been noted by GNATS. From: avn@any.ru To: freebsd-gnats-submit@FreeBSD.org, blaze@infosec.ru Cc: Subject: Re: i386/23643: dlopen() can't link to symbols in% Date: Fri, 15 Jun 2001 01:09:47 +0400 (MSD) This PR can be closed. (wrong usage of gcc flags by originator). À To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 14:30:37 2001 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 78B0F37B406 for ; Thu, 14 Jun 2001 14:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5ELU2197700; Thu, 14 Jun 2001 14:30:02 -0700 (PDT) (envelope-from gnats) Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id 0EE3837B401 for ; Thu, 14 Jun 2001 14:20:13 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from hades.hell.gr (patr530-a017.otenet.gr [212.205.215.17]) by mailsrv.otenet.gr (8.11.1/8.11.1) with ESMTP id f5ELK9617390 for ; Fri, 15 Jun 2001 00:20:09 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.3/8.11.3) id f5ELK8o87388; Fri, 15 Jun 2001 00:20:08 +0300 (EEST) (envelope-from charon) Message-Id: <200106142120.f5ELK8o87388@hades.hell.gr> Date: Fri, 15 Jun 2001 00:20:08 +0300 (EEST) From: Giorgos Keramidas Reply-To: charon@labs.gr To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: misc/28154: new termcap entry (rxvt) 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: 28154 >Category: misc >Synopsis: addition of an entry for rxvt to our termcap >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: Thu Jun 14 14:30:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Giorgos Keramidas >Release: FreeBSD 4.3-STABLE i386 >Organization: >Environment: System: FreeBSD hades.hell.gr 4.3-STABLE FreeBSD 4.3-STABLE #0: Wed May 30 01:28:12 EEST 2001 root@hades.hell.gr:/usr/obj/usr/src/sys/NEWTON i386 >Description: Our termcap does not include an entry for TERM=rxvt. The attached patches modify src/share/termcap/termcap.src to include the termcap entry found in the rxvt-2.6.3 sources (patch-aa) and to fix the key_end capability of that termcap entry (patch-ab). >How-To-Repeat: Try using rxvt with TERM=vt220. Most of the keys work fine, except for HOME, END, and function-keys. If you add the attached termcap entry to the system termcap then most of the keys that seem problematic with TERM set to vt100, vt102, vt220, or vt320, then work correctly. >Fix: ------------------------------------------------------------------------- ( patch-aa ) add rxvt termcap entry to /usr/src/share/termcap/termcap.src ------------------------------------------------------------------------- --- termcap.src Fri Jun 15 00:01:13 2001 +++ termcap.rxvt.0 Fri Jun 15 00:00:07 2001 @@ -4191,6 +4191,26 @@ pi|pilot|tgtelnet:am:xn:bs:co#39:li#16:cl=\Ec:cm=\Em%+ %+ :ho=\Em :nw=\Em~ :\ :so=\Eb:se=\EB:bl=^g:cr=^m:do=^j:le=^h:kP=^k:kN=^l: +# Termcap entry for rxvt, taken from the sources of rxvt-2.6.3 +rxvt|rxvt terminal emulator (X Window System):\ + :am:eo:km:mi:ms:xn:xo:\ + :co#80:it#8:li#24:\ + :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\ + :K1=\EOw:K2=\EOu:K3=\EOy:K4=\EOq:K5=\EOs:LE=\E[%dD:\ + :RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:bl=^G:cd=\E[J:\ + :ce=\E[K:cl=\E[H\E[2J:cm=\E[%i%d;%dH:cr=^M:\ + :cs=\E[%i%d;%dr:ct=\E[3g:dc=\E[P:dl=\E[M:do=^J:ei=\E[4l:\ + :ho=\E[H:i1=\E[?47l\E=\E[?1l:ic=\E[@:im=\E[4h:\ + :is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l:\ + :k0=\E[21~:k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~:\ + :k5=\E[15~:k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:\ + :kD=\E[3~:kI=\E[2~:kN=\E[6~:kP=\E[5~:kb=^H:kd=\E[B:ke=\E>:\ + :kh=\E[7~:kl=\E[D:kr=\E[C:ks=\E=:ku=\E[A:le=^H:mb=\E[5m:\ + :md=\E[1m:me=\E[m\017:mr=\E[7m:nd=\E[C:rc=\E8:sc=\E7:\ + :se=\E[27m:sf=^J:so=\E[7m:sr=\EM:st=\EH:ta=^I:\ + :te=\E[?47l\E8:ti=\E7\E[?47h:ue=\E[24m:up=\E[A:us=\E[4m:\ + :vb=\E[?5h\E[?5l:ve=\E[?25h:vi=\E[?25l:vs=\E[?25h: + # # END OF TERMCAP # ------------------------ ------------------------------------------------------------------------- ( patch-ab ) add @7 capability to rxvt termcap to make END work correctly ------------------------------------------------------------------------- --- termcap.src Fri Jun 15 00:01:49 2001 +++ termcap.rxvt.1 Fri Jun 15 00:00:31 2001 @@ -4205,7 +4205,7 @@ :k0=\E[21~:k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~:\ :k5=\E[15~:k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:\ :kD=\E[3~:kI=\E[2~:kN=\E[6~:kP=\E[5~:kb=^H:kd=\E[B:ke=\E>:\ - :kh=\E[7~:kl=\E[D:kr=\E[C:ks=\E=:ku=\E[A:le=^H:mb=\E[5m:\ + :kh=\E[7~:@7=\E[8~:kl=\E[D:kr=\E[C:ks=\E=:ku=\E[A:le=^H:mb=\E[5m:\ :md=\E[1m:me=\E[m\017:mr=\E[7m:nd=\E[C:rc=\E8:sc=\E7:\ :se=\E[27m:sf=^J:so=\E[7m:sr=\EM:st=\EH:ta=^I:\ :te=\E[?47l\E8:ti=\E7\E[?47h:ue=\E[24m:up=\E[A:us=\E[4m:\ >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 Jun 14 15: 0:20 2001 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 3989637B406 for ; Thu, 14 Jun 2001 15:00:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5EM0GK07187; Thu, 14 Jun 2001 15:00:16 -0700 (PDT) (envelope-from gnats) Date: Thu, 14 Jun 2001 15:00:16 -0700 (PDT) Message-Id: <200106142200.f5EM0GK07187@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Konstantinos Konstantinidis Subject: Re: bin/8060: install ignores the +X mode flag Reply-To: Konstantinos Konstantinidis 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/8060; it has been noted by GNATS. From: Konstantinos Konstantinidis To: freebsd-gnats-submit@FreeBSD.org, Studded@dal.net Cc: Subject: Re: bin/8060: install ignores the +X mode flag Date: Fri, 15 Jun 2001 00:56:04 +0300 Hello, This is not a bug, it's a feature; install creates a file and either sets permissions to 0755, or if -m is specified sets the permissions to whatever was requested *relative to 0000*. All but the last point are explicitly mentioned in the man page, which reads: -m Specify an alternate mode. The default mode is set to rwxr-xr-x (0755). The specified mode may be either an octal or symbolic value; see chmod(1) for a description of possible mode values. Here's the relevant bit from chmod(1): +X make a directory or file searchable/executable by everyone if it is already searchable/executable by anyone. It seems clear to me at least that since we're not modifying, but rather specifying permissions, there are no existing permissions to leave untouched, hence "+X" has no meaning whatsoever. Setting the permissions relative to those of the original file seems to me like a particularly bad idea, so there's nothing to fix. This PR can be closed --kkonstan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 16:50: 8 2001 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 17FC337B406 for ; Thu, 14 Jun 2001 16:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5ENo4Y48002; Thu, 14 Jun 2001 16:50:04 -0700 (PDT) (envelope-from gnats) Date: Thu, 14 Jun 2001 16:50:04 -0700 (PDT) Message-Id: <200106142350.f5ENo4Y48002@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Larry Rosenman Subject: Re: kern/28152: StarOffice 5.2 broke between 10Jun2001 and 13Jun2001 Reply-To: Larry Rosenman 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/28152; it has been noted by GNATS. From: Larry Rosenman To: freebsd-gnats-submit@FreeBSD.org, ler@ler-freebie.iadfw.net Cc: Subject: Re: kern/28152: StarOffice 5.2 broke between 10Jun2001 and 13Jun2001 Date: Thu, 14 Jun 2001 18:42:04 -0500 See freebsd-stable discussion earlier today on why I believe between 10Jun2001 and 13Jun2001 is the break point. LER -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: ler@lerctr.org US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 20:30:13 2001 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 74F3C37B407 for ; Thu, 14 Jun 2001 20:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F3U3v79456; Thu, 14 Jun 2001 20:30:03 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D866E37B401 for ; Thu, 14 Jun 2001 20:25:28 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F3PSG79242; Thu, 14 Jun 2001 20:25:28 -0700 (PDT) (envelope-from nobody) Message-Id: <200106150325.f5F3PSG79242@freefall.freebsd.org> Date: Thu, 14 Jun 2001 20:25:28 -0700 (PDT) From: Simon Shapiro To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/28163: in_pcballoc Panic in RELENG_4 with large memory. _Not_ Related to swap_pager 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: 28163 >Category: kern >Synopsis: in_pcballoc Panic in RELENG_4 with large memory. _Not_ Related to swap_pager >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 14 20:30:03 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Simon Shapiro >Release: RELENG_4, 4.2, 4.3 >Organization: >Environment: FreeBSD nomis.simon-shapiro.org 4.3-20010522-STABLE FreeBSD 4.3-20010522-STABLE #10: Thu Jun 14 22:14:16 EDT 2001 root@:/usr/src/RELENG_4/src/sys/compile/NOMIS-smp i386 >Description: Regardless of the swap_pager problem (which apppears new since 4.2), the kernel will panic immediately after mounting the root fs. It appears to have a NULL poiner passed to in_pcballoc. >How-To-Repeat: Boot any FreeBSD 4.2 and above on a machine with lots of memory. >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 Thu Jun 14 20:30:16 2001 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 4A6D237B405 for ; Thu, 14 Jun 2001 20:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F3U3H79447; Thu, 14 Jun 2001 20:30:03 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F4B537B401 for ; Thu, 14 Jun 2001 20:21:22 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F3LM079019; Thu, 14 Jun 2001 20:21:22 -0700 (PDT) (envelope-from nobody) Message-Id: <200106150321.f5F3LM079019@freefall.freebsd.org> Date: Thu, 14 Jun 2001 20:21:22 -0700 (PDT) From: Simon Shapiro To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/28162: RELENG_4 (4.2, 4.3) Panics when system has 2GB of memory (SWAP) 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: 28162 >Category: kern >Synopsis: RELENG_4 (4.2, 4.3) Panics when system has 2GB of memory (SWAP) >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 14 20:30:02 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Simon Shapiro >Release: 4.2, 4.3, RELENG_4 (as of today) >Organization: >Environment: FreeBSD nomis.simon-shapiro.org 4.3-20010522-STABLE FreeBSD 4.3-20010522-STABLE #10: Thu Jun 14 22:14:16 EDT 2001 root@:/usr/src/RELENG_4/src/sys/compile/NOMIS-smp i386 >Description: /usr/src/sys/vm/swap_pager.c, line 310 or thereabout calls zinit. zinit returns NULL because it calls zinita with too large a number. I tried to force the value down but that only helps in SMP. A UP kernel still crashes. I forced the value down like this: if ((swap_zone = zinit( "SWAPMETA", sizeof(struct swblock), n, ZONE_INTERRUPT, 1 )) == NULL) { int m = 127332; /* This number is from 256MB system */ printf("%s.%s(%d) ERROR: swap_zone is NULL\n" " Reducing n from %d to %d\n", __FILE__, __FUNCTION__, __LINE__, n, m); if ((swap_zone = zinit( "SWAPMETA", sizeof(struct swblock), m, ZONE_INTERRUPT, 1 )) == NULL) { panic("swap_pager_swap_init: swap_zone == NULL"); } n = m; /* Prevents failure and panic */ } NOTE: The above snippet is _not_ a fix. >How-To-Repeat: Boot on a Pentium III with 2 or 4 GB of RAM. >Fix: Not sure. The code needs to be re-written to examine how much memory is really there. I did not have this problem, in the identical machine, in RELENG_3. >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 Jun 14 21: 8:34 2001 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 AD1C737B408; Thu, 14 Jun 2001 21:08:29 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F48TT84627; Thu, 14 Jun 2001 21:08:29 -0700 (PDT) (envelope-from mikeh) Date: Thu, 14 Jun 2001 21:08:29 -0700 (PDT) From: Message-Id: <200106150408.f5F48TT84627@freefall.freebsd.org> To: barry@lustig.com, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/10353: ypserv gets segmentation violation 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: ypserv gets segmentation violation State-Changed-From-To: open->feedback State-Changed-By: mikeh State-Changed-When: Thu Jun 14 21:07:28 PDT 2001 State-Changed-Why: Is this still a problem with 4-stable? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=10353 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 21:14:12 2001 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 BD2C937B406; Thu, 14 Jun 2001 21:14:10 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F4EA485206; Thu, 14 Jun 2001 21:14:10 -0700 (PDT) (envelope-from mikeh) Date: Thu, 14 Jun 2001 21:14:10 -0700 (PDT) From: Message-Id: <200106150414.f5F4EA485206@freefall.freebsd.org> To: sparky@tccn.cs.kun.nl, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/5444: [PATCH] ypserv uses wrong dns lookup order 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] ypserv uses wrong dns lookup order State-Changed-From-To: suspended->feedback State-Changed-By: mikeh State-Changed-When: Thu Jun 14 21:13:29 PDT 2001 State-Changed-Why: I believe this is fixed, is it still a problem with 4-stable? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=5444 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 21:22: 3 2001 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 4068437B407; Thu, 14 Jun 2001 21:22:01 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F4M1c85857; Thu, 14 Jun 2001 21:22:01 -0700 (PDT) (envelope-from mikeh) Date: Thu, 14 Jun 2001 21:22:01 -0700 (PDT) From: Message-Id: <200106150422.f5F4M1c85857@freefall.freebsd.org> To: philipp@mirapoint.com, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/11037: Gencat doesn't properly handle \ddd octal sequences. 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: Gencat doesn't properly handle \ddd octal sequences. State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Thu Jun 14 21:21:24 PDT 2001 State-Changed-Why: Fixed in rev 1.9 of genlib.c. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=11037 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 21:30:36 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id C568737B403; Thu, 14 Jun 2001 21:30:22 -0700 (PDT) (envelope-from dirk.meyer@dinoex.sub.org) Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.11.4/8.11.3) with BSMTP id f5F4U4l11273; Fri, 15 Jun 2001 06:30:04 +0200 (CEST) (envelope-from dirk.meyer@dinoex.sub.org) To: freebsd-gnats-submit@FreeBSD.org, bmilekic@FreeBSD.org, freebsd-bugs@FreeBSD.org Message-ID: <7/ft6ur3lU@dmeyer.dinoex.sub.org> From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: i386/24949: mbuf memory leak in de0 driver Date: Fri, 15 Jun 2001 06:24:33 +0200 X-Mailer: Dinoex 1.77 References: <200106042159.f54Lx0m17278@freefall.freebsd.org> X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect 0.91] X-Accept-Language: de,en X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-Noad: Please don't send me ad's by mail. I'm bored by this type of mail. X-Copyright: (C) Copyright 1999 by Dirk Meyer -- All rights reserved. X-Note: sending SPAM is a violation of both german and US law and will at least trigger a complaint at your provider's postmaster. X-PGP-Key-Avail: mailto:pgp-public-keys@keys.de.pgp.net Subject:GET 0x331CDA5D X-ZC-VIA: 20010615000000S+2@dinoex.sub.org Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > Test with 4.3 in progress, final information will follow in a few days. The network slowdown did not oocur any more, we can take this Problem as fixed and close the PR. The new kernal was compiled with NMBCLUSTERS=8192 too. kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 21:35:43 2001 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 BFCD037B405; Thu, 14 Jun 2001 21:35:38 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F4Zcc86883; Thu, 14 Jun 2001 21:35:38 -0700 (PDT) (envelope-from mikeh) Date: Thu, 14 Jun 2001 21:35:38 -0700 (PDT) From: Message-Id: <200106150435.f5F4Zcc86883@freefall.freebsd.org> To: fenner@research.att.com, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/11360: Allow specification of "search" in resolv.conf when using dhclient 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: Allow specification of "search" in resolv.conf when using dhclient State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Thu Jun 14 21:33:53 PDT 2001 State-Changed-Why: This can be overridden with 'supersede domain-name "foo.com bar.com";' in dhclient.conf. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=11360 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 21:40: 5 2001 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 02D1F37B403 for ; Thu, 14 Jun 2001 21:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F4e3J87390; Thu, 14 Jun 2001 21:40:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 14 Jun 2001 21:40:03 -0700 (PDT) Message-Id: <200106150440.f5F4e3J87390@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Subject: Re: i386/24949: mbuf memory leak in de0 driver Reply-To: dirk.meyer@dinoex.sub.org (Dirk Meyer) 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/24949; it has been noted by GNATS. From: dirk.meyer@dinoex.sub.org (Dirk Meyer) To: freebsd-gnats-submit@FreeBSD.org, bmilekic@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: i386/24949: mbuf memory leak in de0 driver Date: Fri, 15 Jun 2001 06:24:33 +0200 > Test with 4.3 in progress, final information will follow in a few days. The network slowdown did not oocur any more, we can take this Problem as fixed and close the PR. The new kernal was compiled with NMBCLUSTERS=8192 too. kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 21:42:34 2001 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 8590A37B405; Thu, 14 Jun 2001 21:42:30 -0700 (PDT) (envelope-from bmilekic@FreeBSD.org) Received: (from bmilekic@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F4gU887734; Thu, 14 Jun 2001 21:42:30 -0700 (PDT) (envelope-from bmilekic) Date: Thu, 14 Jun 2001 21:42:30 -0700 (PDT) From: Message-Id: <200106150442.f5F4gU887734@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, bmilekic@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/24949: mbuf memory leak in de0 driver 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: mbuf memory leak in de0 driver State-Changed-From-To: feedback->closed State-Changed-By: bmilekic State-Changed-When: Thu Jun 14 21:41:15 PDT 2001 State-Changed-Why: Problem fixed. Submitter says it no longer happens. Thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24949 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 21:42:35 2001 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 01DF437B403; Thu, 14 Jun 2001 21:42:30 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F4gTU87713; Thu, 14 Jun 2001 21:42:29 -0700 (PDT) (envelope-from mikeh) Date: Thu, 14 Jun 2001 21:42:29 -0700 (PDT) From: Message-Id: <200106150442.f5F4gTU87713@freefall.freebsd.org> To: richard@jezebel.demon.co.uk, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/12115: pppd reports wrong connected duration with demand option 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: pppd reports wrong connected duration with demand option State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Thu Jun 14 21:40:57 PDT 2001 State-Changed-Why: Fixed, duplicate of PR 11943. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=12115 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 21:44:36 2001 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 D0CA237B408; Thu, 14 Jun 2001 21:44:26 -0700 (PDT) (envelope-from dougb@FreeBSD.org) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F4iQ688031; Thu, 14 Jun 2001 21:44:26 -0700 (PDT) (envelope-from dougb) Date: Thu, 14 Jun 2001 21:44:26 -0700 (PDT) From: Message-Id: <200106150444.f5F4iQ688031@freefall.freebsd.org> To: malachai@iname.com, dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/23284: locate database does not get rebuilt 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: locate database does not get rebuilt State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Thu Jun 14 21:42:52 PDT 2001 State-Changed-Why: What's likely to have changed is something on your local system. The -s option to find could not possibly be the culprit. If you are still having trouble, please send some more details to freebsd-questions@freebsd.org. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=23284 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 21:45:21 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id 6947C37B40E for ; Thu, 14 Jun 2001 21:45:06 -0700 (PDT) (envelope-from DougB@DougBarton.net) Received: from DougBarton.net (master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id VAA02564; Thu, 14 Jun 2001 21:44:47 -0700 (PDT) (envelope-from DougB@DougBarton.net) Message-ID: <3B2992BF.F8C4EE27@DougBarton.net> Date: Thu, 14 Jun 2001 21:44:47 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Konstantinos Konstantinidis Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: misc/23284: locate database does not get rebuilt References: <200106142040.f5EKe2a89464@freefall.freebsd.org> 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 Konstantinos Konstantinidis wrote: > > The following reply was made to PR misc/23284; it has been noted by GNATS. > > From: Konstantinos Konstantinidis > To: freebsd-gnats-submit@FreeBSD.org, malachai@iname.com > Cc: > Subject: Re: misc/23284: locate database does not get rebuilt > Date: Thu, 14 Jun 2001 23:36:15 +0300 > > Hello, > > It appears that this is no longer the case, I > ran /etc/periodic/weekly/310.locate numerous > times on a few hosts of mine and i'm quite > confident that the locatedb is complete. > > This PR can be closed Done, thanks. -- If you're never wrong, you're not trying hard enough. Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 21:56:49 2001 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 2095A37B401; Thu, 14 Jun 2001 21:56:42 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F4ufj89030; Thu, 14 Jun 2001 21:56:41 -0700 (PDT) (envelope-from mikeh) Date: Thu, 14 Jun 2001 21:56:41 -0700 (PDT) From: Message-Id: <200106150456.f5F4ufj89030@freefall.freebsd.org> To: Studded@dal.net, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/8060: install ignores the +X mode flag 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 ignores the +X mode flag State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Thu Jun 14 21:54:20 PDT 2001 State-Changed-Why: install creates a file, so -m is specified relative to 0000. Therefore +X is meaningless. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=8060 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 22: 0:18 2001 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 AEB2F37B405 for ; Thu, 14 Jun 2001 22:00:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F507t89242; Thu, 14 Jun 2001 22:00:07 -0700 (PDT) (envelope-from gnats) Received: from dorfl.internal.moreton.com.au (ppp4.adsl238.pacific.net.au [203.143.238.4]) by hub.freebsd.org (Postfix) with ESMTP id 4268B37B409 for ; Thu, 14 Jun 2001 21:54:51 -0700 (PDT) (envelope-from pdh@moreton.com.au) Received: (from pdh@localhost) by dorfl.internal.moreton.com.au (8.11.4/8.11.4) id f5F4shQ00570; Fri, 15 Jun 2001 14:54:43 +1000 (EST) (envelope-from pdh) Message-Id: <200106150454.f5F4shQ00570@dorfl.internal.moreton.com.au> Date: Fri, 15 Jun 2001 14:54:43 +1000 (EST) From: Phil Homewood Reply-To: Phil Homewood To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/28164: [PATCH] crashdump can trash disklabel/other partitions 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: 28164 >Category: kern >Synopsis: [PATCH] crashdump can trash disklabel/other partitions >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 14 22:00:07 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Phil Homewood >Release: FreeBSD 4.3-STABLE i386 >Organization: >Environment: System: FreeBSD dorfl.internal.moreton.com.au 4.3-STABLE FreeBSD 4.3-STABLE #7: Fri Jun 15 11:14:57 EST 2001 root@:/usr/obj/usr/src/sys/DORFL i386 >Description: Crashdumps can overwrite the last few blocks of the device immediately before the dumpdev, if the dumpdev is approximately the same size as physical memory. >How-To-Repeat: Set up a swap device of the same size as physical memory and force a crashdump (eg, from DDB). >Fix: The following patch works but is probably incorrect (in tests on this machine, I needed an extra 10 blocks of disk space, and one page of physical memory requires 8 blocks of disk). Someone with a better understanding than I have should review this patch, but it should provide a good starting point. --- kern/kern_shutdown.c.orig Mon Jun 11 23:12:10 2001 +++ kern/kern_shutdown.c Fri Jun 15 14:46:53 2001 @@ -421,7 +421,7 @@ /* * XXX should clean up checking in dumpsys() to be more like this. */ - newdumplo = psize - Maxmem * PAGE_SIZE / DEV_BSIZE; + newdumplo = psize - (Maxmem + 2) * PAGE_SIZE / DEV_BSIZE; if (newdumplo < 0) return (ENOSPC); dumpdev = dev; --- kern/subr_disk.c.orig Fri Jun 1 02:47:45 2001 +++ kern/subr_disk.c Fri Jun 15 14:46:53 2001 @@ -91,7 +91,7 @@ dl = dsgetlabel(dev, dp->d_slice); if (!dl) return (ENXIO); - *count = (u_long)Maxmem * PAGE_SIZE / dl->d_secsize; + *count = (u_long)(Maxmem + 2) * PAGE_SIZE / dl->d_secsize; if (dumplo < 0 || (dumplo + *count > dl->d_partitions[dkpart(dev)].p_size)) return (EINVAL); >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 Jun 14 22:50:16 2001 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 BA44037B408 for ; Thu, 14 Jun 2001 22:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F5o3m99286; Thu, 14 Jun 2001 22:50:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 14 Jun 2001 22:50:03 -0700 (PDT) Message-Id: <200106150550.f5F5o3m99286@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bill Fumerola Subject: Re: kern/28163: in_pcballoc Panic in RELENG_4 with large memory. _Not_ Related to swap_pager Reply-To: Bill Fumerola 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/28163; it has been noted by GNATS. From: Bill Fumerola To: Simon Shapiro Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/28163: in_pcballoc Panic in RELENG_4 with large memory. _Not_ Related to swap_pager Date: Fri, 15 Jun 2001 00:45:25 -0500 On Thu, Jun 14, 2001 at 08:25:28PM -0700, Simon Shapiro wrote: > >Description: > Regardless of the swap_pager problem (which apppears new since 4.2), > the kernel will panic immediately after mounting the root fs. > It appears to have a NULL poiner passed to in_pcballoc. > >How-To-Repeat: > Boot any FreeBSD 4.2 and above on a machine with lots of memory. > >Fix: > none :-( so it panics, but you don't include the string[1]. it has a traceback, but you don't include it. on top of that you provide a way of "repeating" the problem that is so obviously ambigious that it couldn't even be considered helpful. do you expect someone to even look at this PR or is it just a way to get some anger off your chest? if its the latter, let us know so we can close this... -- Bill Fumerola - security yahoo / Yahoo! inc. - fumerola@yahoo-inc.com / billf@FreeBSD.org 1. in_pcb.c::in_pcballoc() doesn't even have a panic() in it, unless something it calls panic()s. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 14 23:50:27 2001 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 9CD7137B40D for ; Thu, 14 Jun 2001 23:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F6o3x07088; Thu, 14 Jun 2001 23:50:03 -0700 (PDT) (envelope-from gnats) Received: from kost.svzserv.kemerovo.su (kost.svzserv.kemerovo.su [213.184.65.82]) by hub.freebsd.org (Postfix) with ESMTP id E82F637B403 for ; Thu, 14 Jun 2001 23:45:27 -0700 (PDT) (envelope-from eugen@kost.svzserv.kemerovo.su) Received: (from root@localhost) by kost.svzserv.kemerovo.su (8.11.3/8.11.3) id f5F6jMa00466; Fri, 15 Jun 2001 14:45:22 +0800 (KRAST) (envelope-from eugen) Message-Id: <200106150645.f5F6jMa00466@kost.svzserv.kemerovo.su> Date: Fri, 15 Jun 2001 14:45:22 +0800 (KRAST) From: "Eugene B. Grosbein" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/28166: Mounted CD-ROM can be ejected in some cases 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: 28166 >Category: bin >Synopsis: Mounted CD-ROM can be ejected in some cases >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 Jun 14 23:50:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 4.3-STABLE i386 >Organization: ISP Svyaz-Service >Environment: System: 4.3-STABLE FreeBSD 4.3-STABLE acd0: CD-RW at ata1-master using PIO4 amd is not running, if that is worth to mention >Description: This is possible to eject mounted CD-ROM >How-To-Repeat: Insert any CD-ROM in drive. Then type: export CDROM=/dev/acd0c mount /cdrom cd /cdrom Now CD-ROM is locked. 'Eject' button on the front panel of drive does not work. Now type: umount /cdrom; cdcontrol eject Filesystem is busy so umount failed. cdcontrol failed as well. But now 'Eject' button on the front panel of drive DOES work and CD-ROM is ejected when you press 'Eject'. Note, that filesystem is still mounted. >Fix: Unknown for 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 Fri Jun 15 0:32:12 2001 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 E809237B410; Fri, 15 Jun 2001 00:32:03 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F7W3O13539; Fri, 15 Jun 2001 00:32:03 -0700 (PDT) (envelope-from ru) Date: Fri, 15 Jun 2001 00:32:03 -0700 (PDT) From: Message-Id: <200106150732.f5F7W3O13539@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: kern/28166: Mounted CD-ROM can be ejected in some cases 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: Mounted CD-ROM can be ejected in some cases Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: ru Responsible-Changed-When: Fri Jun 15 00:31:33 PDT 2001 Responsible-Changed-Why: Over to Mr. ATA. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28166 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 1:30:30 2001 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 085C937B408 for ; Fri, 15 Jun 2001 01:30:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F8U5n26367; Fri, 15 Jun 2001 01:30:05 -0700 (PDT) (envelope-from gnats) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id C202737B408 for ; Fri, 15 Jun 2001 01:26:27 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by david.siemens.de (8.11.0/8.11.0) with ESMTP id f5F8QN505933 for ; Fri, 15 Jun 2001 10:26:26 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail2.siemens.de (8.11.0/8.11.0) with ESMTP id f5F8QMh24331 for ; Fri, 15 Jun 2001 10:26:22 +0200 (MET DST) Received: (from localhost) by curry.mchp.siemens.de (8.11.3/8.11.3) id f5F8QMu68162 for FreeBSD-gnats-submit@freebsd.org; Fri, 15 Jun 2001 10:26:22 +0200 (CEST) Message-Id: <200106150826.f5F8QMA50898@curry.mchp.siemens.de> Date: Fri, 15 Jun 2001 10:26:22 +0200 (CEST) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/28171: [PATCH] to support a HTTP_REFERER env variable in libfetch 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: 28171 >Category: bin >Synopsis: [PATCH] to support a HTTP_REFERER env variable in libfetch >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: Fri Jun 15 01:30:04 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 4.3-STABLE i386 >Organization: >Environment: All FreeBSD systems >Description: Some webservers insist on a Referer: header in http requests. >How-To-Repeat: >Fix: The patch is similar as for HTTP_USER_AGENT. Additionally, if HTTP_REFERER=auto is used, an appropriate referer is constructed from the URL (this is OK in 95% of all cases). --- lib/libfetch/http.c.ORI Fri Jun 15 09:21:40 2001 +++ lib/libfetch/http.c Fri Jun 15 10:14:38 2001 @@ -775,6 +775,15 @@ } /* other headers */ + if ((p = getenv("HTTP_REFERER")) != NULL && *p != '\0') { + if (strcmp(p,"auto") == 0) { + char ps[7]; + snprintf (ps,sizeof(ps),":%d",url->port); + _http_cmd(fd, "Referer: %s://%s%s%s", + url->scheme, host, url->port == 80 ? "" : ps, url->doc); + } else + _http_cmd(fd,"Referer: %s",p); + } if ((p = getenv("HTTP_USER_AGENT")) != NULL && *p != '\0') _http_cmd(fd, "User-Agent: %s", p); else --- lib/libfetch/fetch.3.ORI Fri Jun 15 09:46:18 2001 +++ lib/libfetch/fetch.3 Fri Jun 15 10:16:14 2001 @@ -491,6 +491,10 @@ Specifies the User-Agent string to use for HTTP requests. This can be useful when working with HTTP origin or proxy servers that differentiate between usder agents. +.It Ev HTTP_REFERER +Specifies the Referer string to use for HTTP requests. +This can be useful when working with HTTP servers that insist in them. +When set to "auto" the URL is taken to construct a referer value. .El .Sh SEE ALSO .Xr fetch 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 Fri Jun 15 2:47:29 2001 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 A259B37B401; Fri, 15 Jun 2001 02:47:21 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5F9lLl37086; Fri, 15 Jun 2001 02:47:21 -0700 (PDT) (envelope-from dwmalone) Date: Fri, 15 Jun 2001 02:47:21 -0700 (PDT) From: Message-Id: <200106150947.f5F9lLl37086@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, des@FreeBSD.org Subject: Re: bin/28171: [PATCH] to support a HTTP_REFERER env variable in libfetch 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] to support a HTTP_REFERER env variable in libfetch Responsible-Changed-From-To: freebsd-bugs->des Responsible-Changed-By: dwmalone Responsible-Changed-When: Fri Jun 15 02:46:51 PDT 2001 Responsible-Changed-Why: fetch is des's/ http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28171 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 4:40:16 2001 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 7D74537B40D for ; Fri, 15 Jun 2001 04:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FBe1g57769; Fri, 15 Jun 2001 04:40:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F0DDE37B406 for ; Fri, 15 Jun 2001 04:37:03 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FBb3D57468; Fri, 15 Jun 2001 04:37:03 -0700 (PDT) (envelope-from nobody) Message-Id: <200106151137.f5FBb3D57468@freefall.freebsd.org> Date: Fri, 15 Jun 2001 04:37:03 -0700 (PDT) From: Jan Conrad To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/28172: No device /dev/wd0s1a present by default, but kernel uses it as a fallback 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: 28172 >Category: i386 >Synopsis: No device /dev/wd0s1a present by default, but kernel uses it as a fallback >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 Jun 15 04:40:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Jan Conrad >Release: FreeBSD 4.3R >Organization: Univ. Bonn, Germany >Environment: FreeBSD wigner.th.physik.uni-bonn.de 4.3-RELEASE FreeBSD 4.3-RELEASE #1: Thu May 24 18:01:27 CEST 2001 conrad@merlin.th.physik.uni-bonn.de:/freebsd/misc/src/sys/compile/MERLIN i386 >Description: In some cases, for instance if your /etc/fstab is corrupted, the 4.3R kernel mounts / as wd0a for IDE drives. However, there is no device to remount root to rw (/dev/wd0a does not work, /dev/wd0s1a is not present) This is only a small thing, but since nowadays the boot device on IDE depends on the hardware (ad0 or ad4), this might be a problem for many people >How-To-Repeat: delete fstab, reboot :-) >Fix: Either include /dev/wd0s1a by default or make the kernel mount using the ad driver if fstab is present >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 Jun 15 4:50: 8 2001 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 61C2937B407 for ; Fri, 15 Jun 2001 04:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FBo2f58659; Fri, 15 Jun 2001 04:50:02 -0700 (PDT) (envelope-from gnats) Received: from tao.org.uk (genesis.tao.org.uk [212.135.162.62]) by hub.freebsd.org (Postfix) with ESMTP id 92FA137B40B for ; Fri, 15 Jun 2001 04:49:14 -0700 (PDT) (envelope-from joe@tao.org.uk) Received: by tao.org.uk (Postfix, from userid 100) id 39AD8521; Fri, 15 Jun 2001 12:49:13 +0100 (BST) Message-Id: <20010615114913.39AD8521@tao.org.uk> Date: Fri, 15 Jun 2001 12:49:13 +0100 (BST) From: Joe Karthauser Reply-To: Joe Karthauser To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/28173: Problem with Touchpad on Inspiron 5000e 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: 28173 >Category: kern >Synopsis: Problem with Touchpad on Inspiron 5000e >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 Jun 15 04:50:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Joe Karthauser >Release: FreeBSD 5.0-CURRENT i386 >Organization: Tao Research >Environment: System: FreeBSD genius.tao.org.uk 5.0-CURRENT FreeBSD 5.0-CURRENT #2: Wed Jun 13 19:40:11 BST 2001 root@genius.tao.org.uk:/usr/obj/usr/src/sys/GENIUS i386 Dell Inspiron 5000e laptop. >Description: The touchpad doesn't work properly, either with moused or X11. It moves in jerky steps. It started when I updated the Windows ME (dual boot) driver, but even if uninstall the Windows software the touchpad is still not working in FreeBSD. Before the update I got this in the dmesg: May 16 15:48:41 genius /boot/kernel/kernel: psm0: irq 12 on atkbdc0 May 16 15:48:41 genius /boot/kernel/kernel: psm0: model Generic PS/2 mouse, device ID 0 Afterwards, I now get this: psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 psm1: unable to allocate the IRQ resource (12). >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 Fri Jun 15 5: 0: 7 2001 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 7D62C37B408 for ; Fri, 15 Jun 2001 05:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FC05l59623; Fri, 15 Jun 2001 05:00:05 -0700 (PDT) (envelope-from gnats) Date: Fri, 15 Jun 2001 05:00:05 -0700 (PDT) Message-Id: <200106151200.f5FC05l59623@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ben Smithurst Subject: Re: bin/27990: ypbind uses memory after freeing it Reply-To: Ben Smithurst 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/27990; it has been noted by GNATS. From: Ben Smithurst To: audit@FreeBSD.org Cc: phk@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: bin/27990: ypbind uses memory after freeing it Date: Fri, 15 Jun 2001 12:56:02 +0100 [ cc'd to phk as my mentor for src commits... ] could someone please review this fairly simple patch for me? If someone could test it on -current too that would be great, I don't have a -current machine at the moment. It works fine on -stable though. It's had one review already but a few more can't hurt. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27990 -- Ben Smithurst / ben@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 Jun 15 5:10: 6 2001 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 20BB237B403 for ; Fri, 15 Jun 2001 05:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FCA4h63237; Fri, 15 Jun 2001 05:10:04 -0700 (PDT) (envelope-from gnats) Date: Fri, 15 Jun 2001 05:10:04 -0700 (PDT) Message-Id: <200106151210.f5FCA4h63237@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Poul-Henning Kamp Subject: Re: bin/27990: ypbind uses memory after freeing it Reply-To: Poul-Henning Kamp 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/27990; it has been noted by GNATS. From: Poul-Henning Kamp To: Ben Smithurst Cc: audit@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: bin/27990: ypbind uses memory after freeing it Date: Fri, 15 Jun 2001 14:00:48 +0200 Looks good to my eyes, but I'm not able to test it. Poul-Henning In message <20010615125602.A31582@comp.leeds.ac.uk>, Ben Smithurst writes: >[ cc'd to phk as my mentor for src commits... ] > >could someone please review this fairly simple patch for me? If someone >could test it on -current too that would be great, I don't have a >-current machine at the moment. It works fine on -stable though. It's >had one review already but a few more can't hurt. > >http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27990 > >-- >Ben Smithurst / ben@FreeBSD.org > -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 6:50:10 2001 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 C106B37B406 for ; Fri, 15 Jun 2001 06:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FDo3c31255; Fri, 15 Jun 2001 06:50:03 -0700 (PDT) (envelope-from gnats) Date: Fri, 15 Jun 2001 06:50:03 -0700 (PDT) Message-Id: <200106151350.f5FDo3c31255@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Thomas Quinot Subject: Re: kern/24596: sysinstall crash: Page fault while in kernel mode Reply-To: Thomas Quinot 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/24596; it has been noted by GNATS. From: Thomas Quinot To: freebsd-gnats-submit@FreeBSD.org, ernst@jollem.com Cc: Subject: Re: kern/24596: sysinstall crash: Page fault while in kernel mode Date: Fri, 15 Jun 2001 15:48:36 +0200 Could this be due to using a /stand/sysinstall from an old release on a -stable system where world and kernel have been updated? -- Thomas Quinot ** Département Informatique & Réseaux ** quinot@inf.enst.fr ENST // 46 rue Barrault // 75634 PARIS CEDEX 13 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 7: 0:26 2001 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 1849237B403 for ; Fri, 15 Jun 2001 07:00:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FE06R72226; Fri, 15 Jun 2001 07:00:06 -0700 (PDT) (envelope-from gnats) Date: Fri, 15 Jun 2001 07:00:06 -0700 (PDT) Message-Id: <200106151400.f5FE06R72226@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ernst de Haan Subject: Re: kern/24596: sysinstall crash: Page fault while in kernel mode Reply-To: Ernst de Haan 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/24596; it has been noted by GNATS. From: Ernst de Haan To: Thomas Quinot Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/24596: sysinstall crash: Page fault while in kernel mode Date: Fri, 15 Jun 2001 15:55:00 +0200 Thomas, It could be, I don't know. It's been a while since I've seen this problem myself. I'm running 4.3-STABLE without any problems now. Ernst Thomas Quinot wrote: > Could this be due to using a /stand/sysinstall from an old release on a > -stable system where world and kernel have been updated? > > -- > Thomas Quinot ** Département Informatique & Réseaux ** > quinot@inf.enst.fr > ENST // 46 rue Barrault // 75634 PARIS CEDEX 13 > -- Ernst de Haan Java Architect Jollem Information Technology "Come to me all who are weary and burdened and I will give you rest" -- Jesus Christ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 7: 4:49 2001 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 3C6E037B401; Fri, 15 Jun 2001 07:04:48 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FE4mV77822; Fri, 15 Jun 2001 07:04:48 -0700 (PDT) (envelope-from schweikh) Date: Fri, 15 Jun 2001 07:04:48 -0700 (PDT) From: Message-Id: <200106151404.f5FE4mV77822@freefall.freebsd.org> To: stado_slonov@mail.ru, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/25793: Fw: misc/25249: cc compiler not 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: Fw: misc/25249: cc compiler not work State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Fri Jun 15 07:01:40 PDT 2001 State-Changed-Why: Broken PR. Subject doesn't seem to match body, no usable information, repeated audit trails referencing unrelated PRs and probably a -current problem which should be discussed in the mailing list and not using a PR. If the originator or whoever thinks this is worth a PR, please resubmit the PR. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=25793 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 7:42:50 2001 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 B0B2937B406; Fri, 15 Jun 2001 07:42:48 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FEgmE85574; Fri, 15 Jun 2001 07:42:48 -0700 (PDT) (envelope-from schweikh) Date: Fri, 15 Jun 2001 07:42:48 -0700 (PDT) From: Message-Id: <200106151442.f5FEgmE85574@freefall.freebsd.org> To: schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org, tobez@FreeBSD.org Subject: Re: bin/15877: Perl 5.00503 interpreter crashes with a signal 11 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: Perl 5.00503 interpreter crashes with a signal 11 Responsible-Changed-From-To: freebsd-bugs->tobez Responsible-Changed-By: schweikh Responsible-Changed-When: Fri Jun 15 07:39:20 PDT 2001 Responsible-Changed-Why: Torture our new commiter, who unfortunately was so unwise to claim "all things perl" in the news flash :-) Seriously, I've verified that the crash still occurs for perl5.6.0 on a recent -current system. The originator's email bounces, however. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=15877 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 8: 0:25 2001 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 53A6D37B407 for ; Fri, 15 Jun 2001 08:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FF04987484; Fri, 15 Jun 2001 08:00:04 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6014A37B40A for ; Fri, 15 Jun 2001 07:54:38 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FEscK86968; Fri, 15 Jun 2001 07:54:38 -0700 (PDT) (envelope-from nobody) Message-Id: <200106151454.f5FEscK86968@freefall.freebsd.org> Date: Fri, 15 Jun 2001 07:54:38 -0700 (PDT) From: Hal Peterson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/28178: Ethernet drivers cause kernel panic 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: 28178 >Category: kern >Synopsis: Ethernet drivers cause kernel panic >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 15 08:00:03 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Hal Peterson >Release: 4.3-STABLE >Organization: >Environment: (unavailable until this evening; I'll fill this in when I can.) >Description: When I use ifconfig to set the IPv4 address of an Ethernet interface (either xl0 or ne0), FreeBSD panics. For more details, see PR #19219: http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19219 I have a couple of kernel dumps on the machine, which I'll be happy to provide if I can figure out how to get them OFF the machine without a network connection. Failing that, I can run gdb and dig further information from the dumps at your request. For now, here is the backtrace from one of the dumps: #0 dumpsys #1 boot #2 poweroff_wait #3 trap_fatal #4 trap_pfault #5 trap #6 ?? #7 intr_mux #8 vec9 #9 softclock #10 splz_swi #11 in_control #12 if_ioctl #13 soo_ioctl #14 ioctl #15 syscall2 #16 Xint0x80_syscall #17 ?? #18 ?? This machine, my primary desktop, is nearly useless without a network connection, so quick attention would be helpful. >How-To-Repeat: Boot the system in single-user mode. Connect Ethernet interface (xl0 or ne0) to a hub. ifconfig xl0 up ifconfig xl0 media 100baseTX ifconfig xl0 inet 10.0.1.2 netmask 255.255.255.0 Panic! >Fix: No fix. No workaround. >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 Jun 15 8:18:41 2001 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 53D1F37B401; Fri, 15 Jun 2001 08:18:31 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FFIUC92077; Fri, 15 Jun 2001 08:18:30 -0700 (PDT) (envelope-from schweikh) Date: Fri, 15 Jun 2001 08:18:30 -0700 (PDT) From: Message-Id: <200106151518.f5FFIUC92077@freefall.freebsd.org> To: daniel@cyberjunky.net, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/10856: vty's from ttyvc - ttvf (maybe more?) do now show up in w or who outputs 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: vty's from ttyvc - ttvf (maybe more?) do now show up in w or who outputs State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Fri Jun 15 08:17:05 PDT 2001 State-Changed-Why: This works in -current: $ tty;w /dev/ttyvf 5:16PM up 3:05, 8 users, load averages: 0.20, 0.14, 0.15 USER TTY FROM LOGIN@ IDLE WHAT schweikh v0 - 2:11PM 2:40 -zsh (zsh) schweikh vb - 5:12PM 3 -zsh (zsh) schweikh p0 :0 2:12PM 17 mutt schweikh p1 :0 2:12PM 14 vim open-prs schweikh vf - 5:14PM - w schweikh p3 :0 2:12PM 1:04 zsh -l schweikh p4 :0.0 3:36PM 4 zsh -l schweikh p5 :0.0 3:45PM 1 vim /tmp/ep7117 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=10856 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 8:40:36 2001 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 430BF37B415; Fri, 15 Jun 2001 08:40:27 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FFeRE94408; Fri, 15 Jun 2001 08:40:27 -0700 (PDT) (envelope-from schweikh) Date: Fri, 15 Jun 2001 08:40:27 -0700 (PDT) From: Message-Id: <200106151540.f5FFeRE94408@freefall.freebsd.org> To: tronkko@hytti.uku.fi, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: gnu/12238: bc 1.04 crashes with long formula typed into one 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: bc 1.04 crashes with long formula typed into one line State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Fri Jun 15 08:39:45 PDT 2001 State-Changed-Why: We're now using bc 1.06 which works properly. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=12238 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 9:26:51 2001 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 662EF37B403; Fri, 15 Jun 2001 09:26:50 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FGQnF02064; Fri, 15 Jun 2001 09:26:49 -0700 (PDT) (envelope-from schweikh) Date: Fri, 15 Jun 2001 09:26:49 -0700 (PDT) From: Message-Id: <200106151626.f5FGQnF02064@freefall.freebsd.org> To: charon@labs.gr, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/28154: addition of an entry for rxvt to our termcap 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: addition of an entry for rxvt to our termcap State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Fri Jun 15 09:25:39 PDT 2001 State-Changed-Why: Committed to -current; expect a MFC within next weeks. Thanks, Giorgos! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28154 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 10:20:16 2001 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 BC9FC37B401 for ; Fri, 15 Jun 2001 10:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FHK4w09852; Fri, 15 Jun 2001 10:20:04 -0700 (PDT) (envelope-from gnats) Date: Fri, 15 Jun 2001 10:20:04 -0700 (PDT) Message-Id: <200106151720.f5FHK4w09852@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: avn@any.ru Subject: Re: bin/27887: ipfw 'backup' option proposal Reply-To: avn@any.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 bin/27887; it has been noted by GNATS. From: avn@any.ru To: freebsd-gnats-submit@FreeBSD.org, avn@any.ru Cc: Subject: Re: bin/27887: ipfw 'backup' option proposal Date: Fri, 15 Jun 2001 21:10:37 +0400 (MSD) This PR can be closed. A sample script was committed by des into share/examples/ipfw, which implements the same functionality. billf's note has almost nothing in common with this PR (though I'd be glad to have a look at announced changes:) ) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 10:28:25 2001 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 636AE37B40D; Fri, 15 Jun 2001 10:28:17 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: (from roam@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FHSHT10940; Fri, 15 Jun 2001 10:28:17 -0700 (PDT) (envelope-from roam) Date: Fri, 15 Jun 2001 10:28:17 -0700 (PDT) From: Message-Id: <200106151728.f5FHSHT10940@freefall.freebsd.org> To: avn@any.ru, roam@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/27887: ipfw 'backup' option proposal 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 'backup' option proposal State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Fri Jun 15 10:27:16 PDT 2001 State-Changed-Why: Closed at originator's request: he likes DES's change_rules.sh script in /usr/share/examples/ipfw/ http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27887 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 10:45:27 2001 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 E4D8937B408; Fri, 15 Jun 2001 10:45:23 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FHi3H12469; Fri, 15 Jun 2001 10:44:03 -0700 (PDT) (envelope-from schweikh) Date: Fri, 15 Jun 2001 10:44:03 -0700 (PDT) From: Message-Id: <200106151744.f5FHi3H12469@freefall.freebsd.org> To: khayes@enstar.com, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/19125: Undefined symbol `_poll' referenced from text segment 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: Undefined symbol `_poll' referenced from text segment State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Fri Jun 15 10:41:15 PDT 2001 State-Changed-Why: RTFM. Each function lists the library its in. NAME poll - synchronous I/O multiplexing LIBRARY Standard C Library (libc, -lc) You might need to get the path for aout libs right, but we've moved to elf long ago. Try to use the much better supported elf format. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19125 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 10:55:33 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from west.lustig.com (west.lustig.com [209.157.26.130]) by hub.freebsd.org (Postfix) with SMTP id D72AE37B401 for ; Fri, 15 Jun 2001 10:55:29 -0700 (PDT) (envelope-from barry@lustig.com) Received: (qmail 22865 invoked from network); 15 Jun 2001 17:55:29 -0000 Received: from unknown (HELO lustig.com) (10.10.11.198) by west.lustig.com with SMTP; 15 Jun 2001 17:55:29 -0000 Message-ID: <3B2A4B98.370985C2@lustig.com> Date: Fri, 15 Jun 2001 13:53:28 -0400 From: Barry Lustig Organization: Barry Lustig & Associates, Inc. X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: mikeh@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/10353: ypserv gets segmentation violation References: <200106150408.f5F48TT84627@freefall.freebsd.org> 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 not sure. I'm no longer working in that environment and have no way to check ypserve with the number of ypbinds that were running at that client's shop. barry mikeh@FreeBSD.org wrote: > > Synopsis: ypserv gets segmentation violation > > State-Changed-From-To: open->feedback > State-Changed-By: mikeh > State-Changed-When: Thu Jun 14 21:07:28 PDT 2001 > State-Changed-Why: > Is this still a problem with 4-stable? > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=10353 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 11:15: 9 2001 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 42D8A37B403; Fri, 15 Jun 2001 11:15:08 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: (from roam@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FIF7919227; Fri, 15 Jun 2001 11:15:07 -0700 (PDT) (envelope-from roam) Date: Fri, 15 Jun 2001 11:15:07 -0700 (PDT) From: Message-Id: <200106151815.f5FIF7919227@freefall.freebsd.org> To: blaze@infosec.ru, roam@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/23643: dlopen() can't link to symbols in main program module 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: dlopen() can't link to symbols in main program module State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Fri Jun 15 11:14:17 PDT 2001 State-Changed-Why: Asked and answered - read the dlopen(3) man page, pay particular attention to the NOTES section. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=23643 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 12: 5:56 2001 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 EC83B37B403; Fri, 15 Jun 2001 12:05:49 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FJ5nL26918; Fri, 15 Jun 2001 12:05:49 -0700 (PDT) (envelope-from schweikh) Date: Fri, 15 Jun 2001 12:05:49 -0700 (PDT) From: Message-Id: <200106151905.f5FJ5nL26918@freefall.freebsd.org> To: cys@wlc.com, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/8561: /kernel inode change time changes every reboot 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: /kernel inode change time changes every reboot State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Fri Jun 15 12:04:23 PDT 2001 State-Changed-Why: dset has been nuked long ago when we went ELF. A look on -current shows that inode change time on /boot/kernel/kernel is not modified. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=8561 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 13:20: 8 2001 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 BC7BA37B406 for ; Fri, 15 Jun 2001 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FKK1l36572; Fri, 15 Jun 2001 13:20:01 -0700 (PDT) (envelope-from gnats) Received: from fountainhead.sd.bluemt.net (fountainhead.sd.bluemt.net [209.247.76.98]) by hub.freebsd.org (Postfix) with ESMTP id D268F37B403 for ; Fri, 15 Jun 2001 13:18:27 -0700 (PDT) (envelope-from gordont@fountainhead.sd.bluemt.net) Received: (from gordont@localhost) by fountainhead.sd.bluemt.net (8.11.3/8.11.3) id f5FKIcr51833; Fri, 15 Jun 2001 13:18:38 -0700 (PDT) (envelope-from gordont) Message-Id: <200106152018.f5FKIcr51833@fountainhead.sd.bluemt.net> Date: Fri, 15 Jun 2001 13:18:38 -0700 (PDT) From: gordont@bluemtn.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: conf/28185: Fixup entries in /etc/defaults/rc.conf 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: 28185 >Category: conf >Synopsis: arpproxy_all and start_vinum are blank, should be set to NO >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 Jun 15 13:20:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Gordon Tetlow >Release: FreeBSD 4.3-STABLE i386 >Organization: Blue Mountain >Environment: System: FreeBSD fountainhead.sd.bluemt.net 4.3-STABLE FreeBSD 4.3-STABLE #3: Thu May 24 18:24:26 PDT 2001 gordont@fountainhead.sd.bluemt.net:/local/usr.obj/usr/src/sys/FOUNTAINHEAD i386 >Description: For consistency arpproxy_all and start_vinum should ="NO" not ="" This will also make importing the NetBSD rc scripts silence some warnings. >How-To-Repeat: N/A >Fix: Patch is against revision 1.111 (HEAD) Index: rc.conf =================================================================== RCS file: /home/ncvs/src/etc/defaults/rc.conf,v retrieving revision 1.111 diff -u -r1.111 rc.conf --- rc.conf 2001/06/11 13:28:05 1.111 +++ rc.conf 2001/06/15 20:12:33 @@ -196,7 +196,7 @@ ipxgateway_enable="NO" # Set to YES to enable IPX routing. ipxrouted_enable="NO" # Set to YES to run the IPX routing daemon. ipxrouted_flags="" # Flags for IPX routing daemon. -arpproxy_all="" # replaces obsolete kernel option ARP_PROXYALL. +arpproxy_all="NO" # replaces obsolete kernel option ARP_PROXYALL. forward_sourceroute="NO" # do source routing (only if gateway_enable is set to "YES") accept_sourceroute="NO" # accept source routed packets to us @@ -339,7 +339,7 @@ kern_securelevel_enable="NO" # kernel security level (see init(8)), kern_securelevel="-1" # range: -1..3 ; `-1' is the most insecure update_motd="YES" # update version info in /etc/motd (or NO) -start_vinum="" # set to YES to start vinum +start_vinum="NO" # set to YES to start vinum unaligned_print="YES" # print unaligned access warnings on the alpha (or NO). entropy_file="/entropy" # Set to NO to disable caching entropy through reboots. # /var/db/entropy is preferred if / is not available. >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 Jun 15 13:34:40 2001 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 BE7F537B403; Fri, 15 Jun 2001 13:34:33 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FKYXr38073; Fri, 15 Jun 2001 13:34:33 -0700 (PDT) (envelope-from imp) Date: Fri, 15 Jun 2001 13:34:33 -0700 (PDT) From: Message-Id: <200106152034.f5FKYXr38073@freefall.freebsd.org> To: lkoeller@cc.fh-lippe.de, imp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/14322: mount respects permissions of underlying directoy!! 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: mount respects permissions of underlying directoy!! State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Fri Jun 15 14:33:58 MDT 2001 State-Changed-Why: From: Konstantinos Konstantinidis says it can be closed. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=14322 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 13:35:27 2001 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 4312E37B406; Fri, 15 Jun 2001 13:35:19 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FKZJN38190; Fri, 15 Jun 2001 13:35:19 -0700 (PDT) (envelope-from imp) Date: Fri, 15 Jun 2001 13:35:19 -0700 (PDT) From: Message-Id: <200106152035.f5FKZJN38190@freefall.freebsd.org> To: cdburgess75@yahoo.com, imp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/21758: X display font 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 Synopsis: X display font problem State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Fri Jun 15 14:35:11 MDT 2001 State-Changed-Why: Too vague. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=21758 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 13:39:18 2001 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 43B1437B408; Fri, 15 Jun 2001 13:39:08 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FKbmS38521; Fri, 15 Jun 2001 13:37:48 -0700 (PDT) (envelope-from imp) Date: Fri, 15 Jun 2001 13:37:48 -0700 (PDT) From: Message-Id: <200106152037.f5FKbmS38521@freefall.freebsd.org> To: adam@nine.net, imp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/17883: 4.0-RELEASE panics during install. 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: 4.0-RELEASE panics during install. State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Fri Jun 15 14:36:46 MDT 2001 State-Changed-Why: This bug report is too vague to fix. Unless a lot more information appaers, it should be closed. Since it is against a release that's really old, I'm closing it and will reopen if info is forthcoming. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=17883 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 13:40:57 2001 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 5331337B403; Fri, 15 Jun 2001 13:40:56 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FKeua38885; Fri, 15 Jun 2001 13:40:56 -0700 (PDT) (envelope-from imp) Date: Fri, 15 Jun 2001 13:40:56 -0700 (PDT) From: Message-Id: <200106152040.f5FKeua38885@freefall.freebsd.org> To: denny1@home.com, imp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/4157: [PATCH] netstat atalk output should print symbolic names for port #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: [PATCH] netstat atalk output should print symbolic names for port #s State-Changed-From-To: suspended->closed State-Changed-By: imp State-Changed-When: Fri Jun 15 14:40:42 MDT 2001 State-Changed-Why: This has been updated in the tree now, it would seem. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=4157 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 13:47:41 2001 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 1DE0F37B403; Fri, 15 Jun 2001 13:47:33 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FKlXH39678; Fri, 15 Jun 2001 13:47:33 -0700 (PDT) (envelope-from imp) Date: Fri, 15 Jun 2001 13:47:33 -0700 (PDT) From: Message-Id: <200106152047.f5FKlXH39678@freefall.freebsd.org> To: denny1@home.com, imp@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org Subject: Re: bin/4157: [PATCH] netstat atalk output should print symbolic names for port #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: [PATCH] netstat atalk output should print symbolic names for port #s State-Changed-From-To: closed->open State-Changed-By: imp State-Changed-When: Fri Jun 15 14:47:07 MDT 2001 State-Changed-Why: No, it isn't fixed. Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: imp Responsible-Changed-When: Fri Jun 15 14:47:07 MDT 2001 Responsible-Changed-Why: I'll fix it. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=4157 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 13:51:58 2001 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 7B21037B40D; Fri, 15 Jun 2001 13:51:45 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FKpju40492; Fri, 15 Jun 2001 13:51:45 -0700 (PDT) (envelope-from imp) Date: Fri, 15 Jun 2001 13:51:45 -0700 (PDT) From: Message-Id: <200106152051.f5FKpju40492@freefall.freebsd.org> To: adrian@ubergeeks.com, imp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/11896: cap_mkdb dumps core when non-files passed as arguments 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: cap_mkdb dumps core when non-files passed as arguments State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Fri Jun 15 14:51:22 MDT 2001 State-Changed-Why: This appears to be fixed. I've also confirmed that it works as expected in current this date. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=11896 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 15:28:22 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from limekiller.braithwaite.net (foo82.dsl.alink.net [207.135.112.82]) by hub.freebsd.org (Postfix) with ESMTP id DE3BD37B401; Fri, 15 Jun 2001 15:28:19 -0700 (PDT) (envelope-from matt@braithwaite.net) Received: by limekiller.braithwaite.net (Postfix, from userid 1001) id 786D95A7D; Fri, 15 Jun 2001 15:28:19 -0700 (PDT) To: ru@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org Subject: Re: misc/26833: `route change default' broken when gateway is over down interface References: <200106081324.f58DOPm77871@freefall.freebsd.org> From: Matthew Braithwaite X-Attribution: mab X-Face: @fge8WW'#w^hZghU$,3gfTP2@56+jGR+wSn|.Ddh,5d6qi")q;sCrYh[W;z-]Q0avfG):{3&hq61!)x&&PUrp%upUD9v9bB2_bw-"0v(87+A`?=1+P`# Date: 08 Jun 2001 12:53:07 -0700 In-Reply-To: ru@FreeBSD.org's message of "Fri, 8 Jun 2001 06:24:25 -0700 (PDT)" Message-ID: <86iti64ul8.fsf@limekiller.braithwaite.net> Lines: 34 User-Agent: Gnus/5.0803 (Gnus v5.8.3) XEmacs/21.1 (Bryce Canyon) Content-Type: text/plain; charset=us-ascii MIME-Version: 1.0 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 8 Jun 2001 06:24:25 -0700 (PDT), ru@FreeBSD.org said: > > This is the normal behavior of the route(8) command. Kernel just > tells you that the gateway route could not be allocated for a route > due to a misconfigured routing table. I've put some explanations > here: > > sbin/route/route.c,v 1.47 > sbin/route/route.8,v 1.25 I ought to have made two things clearer: first, I didn't encounter this problem with the route(8) command. I encountered it while feeding routing messages directly to the kernel. Second, while I agree that route(8)'s diagnostic in this case was lousy, that's not the problem I was reporting -- the problem is that the kernel's behavior is wrong, because it violates the rule of least surprise. It is unreasonable on its face for the kernel to give an error for an RTM_CHANGE that it a no-op, as in my example, where the RTM_CHANGE attempts to change an existing route to what it already is. Similarly it is unreasonable for the kernel to permit the addition of a route, but to prevent it from being subsequently changed. Although I only skimmed through the kernel code, my take on the problem was that the EDQUOT is generated because the route's gateway is considered in the context of the current routing table. Thus, the kernel thinks you are attempting to change the default route to use a gateway that is reachable over the default route, which is to say, over itself, which is an error. But the correct behavior would be to consider the route's gateway in the context of the routing table as it would be without the route that is being changed. If the kernel did this, it would see the RTM_CHANGE in the same light as the initial RTM_ADD. Such a change may be very difficult to accomplish; I don't know. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 16: 0: 7 2001 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 E38CF37B406 for ; Fri, 15 Jun 2001 16:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FN02r68183; Fri, 15 Jun 2001 16:00:02 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C910537B40D for ; Fri, 15 Jun 2001 15:57:46 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FMvkC67939; Fri, 15 Jun 2001 15:57:46 -0700 (PDT) (envelope-from nobody) Message-Id: <200106152257.f5FMvkC67939@freefall.freebsd.org> Date: Fri, 15 Jun 2001 15:57:46 -0700 (PDT) From: Brad Huntting To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/28188: Cron is being started to early in /etc/rc (potential security hole) 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: 28188 >Category: misc >Synopsis: Cron is being started to early in /etc/rc (potential security hole) >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 Jun 15 16:00:02 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Brad Huntting >Release: 4.3 >Organization: Univ of Colorado Boulder >Environment: FreeBSD hunkular.glarp.com 4.3-STABLE FreeBSD 4.3-STABLE #0: Mon May 14 18:39:38 MDT 2001 root@hunkular.glarp.com:/usr/src/sys/compile/HUNKULAR i386 >Description: Cron allows users to run jobs at boot time by specifying "@reboot". While this is a very usefull feature, it is also a potential security hole if these jobs are started before the kern.securelevel level is raised. >How-To-Repeat: Put these in /etc/rc.conf kern_securelevel_enable="YES" kern_securelevel="0" And put this in your (non-root) crontab file: @reboot /sbin/sysctl kern.securelevel And reboot. You should get a mail message indicating that your cron job was run with kern.securelevel=-1. Not something ordinary users should really be doing. >Fix: in /etc/rc, start cron _after_ kern.securelevel is set: --- /etc/rc.orig Fri Jun 15 16:42:02 2001 +++ /etc/rc Fri Jun 15 16:42:06 2001 @@ -483,14 +483,6 @@ ;; esac -case ${cron_enable} in -[Nn][Oo]) - ;; -*) - echo -n ' cron'; ${cron_program:-/usr/sbin/cron} ${cron_flags} - ;; -esac - case ${lpd_enable} in [Yy][Ee][Ss]) echo -n ' printer'; ${lpd_program:-/usr/sbin/lpd} ${lpd_flags} @@ -691,6 +683,14 @@ echo 'Raising kernel security level: ' sysctl -w kern.securelevel=${kern_securelevel} fi + ;; +esac + +case ${cron_enable} in +[Nn][Oo]) + ;; +*) + echo 'Starting cron'; ${cron_program:-/usr/sbin/cron} ${cron_flags} ;; esac (forgive me, but the tabs->spaces thing will probably corrupt this patch, but you get the idea). thanx, brad >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 Jun 15 16:50:16 2001 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 457BD37B405 for ; Fri, 15 Jun 2001 16:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5FNo3R76571; Fri, 15 Jun 2001 16:50:03 -0700 (PDT) (envelope-from gnats) Date: Fri, 15 Jun 2001 16:50:03 -0700 (PDT) Message-Id: <200106152350.f5FNo3R76571@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Thomas Quinot Subject: Re: kern/24596: sysinstall crash: Page fault while in kernel mode Reply-To: Thomas Quinot 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/24596; it has been noted by GNATS. From: Thomas Quinot To: freebsd-gnats-submit@FreeBSD.org Cc: stable@freebsd.org Subject: Re: kern/24596: sysinstall crash: Page fault while in kernel mode Date: Sat, 16 Jun 2001 01:41:10 +0200 After makeing kernel and world and recompiling sysinstall from a freshly-cvsupped source tree, I still get a panic right after the 'probing devices' message. Excerpts from kgdb session follow. If any other system information or any further forensics are necessary, please feel free to ask. :) I am very intrigued by this crash dump. Why dp can be NULL at this point is beyond my understanding. Thomas. Script started on Sat Jun 16 01:26:24 2001 $ uname -a FreeBSD melusine.cuivre.fr.eu.org 4.3-STABLE FreeBSD 4.3-STABLE #4: Fri Jun 15 01:25:04 CEST 2001 thomas@melusine.cuivre.fr.eu.org:/usr/obj/usr/src/sys/MELUSINE i386 $ gdb -k /usr/obj/usr/src/sys/MELUSINE/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 4087808 initial pcb at 343a60 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0x0 fault code = supervisor read, page not present instruction pointer = 0x8:0xc0176cfa stack pointer = 0x10:0xc8fcad58 frame pointer = 0x10:0xc8fcad74 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 = 541 (sysinstall) interrupt mask = none trap number = 12 panic: page fault syncing disks... 53 3 1 done Uptime: 51s dumping to dev #ad/0x20009, offset 270360 dump ata0: resetting devices .. 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 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 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:472 472 if (dumping++) { (kgdb) bt #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:472 #1 0xc016d761 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:312 #2 0xc016daf9 in panic (fmt=0xc02ec7cf "page fault") at /usr/src/sys/kern/kern_shutdown.c:559 #3 0xc02a4506 in trap_fatal (frame=0xc8fcad18, eva=0) at /usr/src/sys/i386/i386/trap.c:951 #4 0xc02a41c5 in trap_pfault (frame=0xc8fcad18, usermode=0, eva=0) at /usr/src/sys/i386/i386/trap.c:844 #5 0xc02a3d6b in trap (frame={tf_fs = -922353648, tf_es = -1070661616, tf_ds = -933822448, tf_edi = 0, tf_esi = -1060864640, tf_ebp = -922964620, tf_isp = -922964668, tf_ebx = -1060872140, tf_edx = 1, tf_ecx = 0, tf_eax = 0, tf_trapno = 12, tf_err = 0, tf_eip = -1072206598, tf_cs = 8, tf_eflags = 66118, tf_esp = -1060864640, tf_ss = 1}) at /usr/src/sys/i386/i386/trap.c:443 #6 0xc0176cfa in diskopen (dev=0xc0cb0580, oflags=1, devtype=8192, p=0xc857c040) at /usr/src/sys/kern/subr_disk.c:189 #7 0xc01a4cd2 in spec_open (ap=0xc8fcadf4) at /usr/src/sys/miscfs/specfs/spec_vnops.c:193 #8 0xc01a4bd9 in spec_vnoperate (ap=0xc8fcadf4) at /usr/src/sys/miscfs/specfs/spec_vnops.c:119 #9 0xc023cf19 in ufs_vnoperatespec (ap=0xc8fcadf4) at /usr/src/sys/ufs/ufs/ufs_vnops.c:2391 #10 0xc01a0a68 in vn_open (ndp=0xc8fcaec4, fmode=1, cmode=1164) at vnode_if.h:189 #11 0xc019c920 in open (p=0xc857c040, uap=0xc8fcaf80) at /usr/src/sys/kern/vfs_syscalls.c:995 #12 0xc02a47a6 in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = -1077939732, tf_esi = 0, tf_ebp = -1077943140, tf_isp = -922964012, tf_ebx = -1077939732, tf_edx = 110, tf_ecx = 135105439, tf_eax = 5, tf_trapno = 12, tf_err = 2, tf_eip = 134909580, tf_cs = 31, tf_eflags = 643, tf_esp = -1077943264, tf_ss = 47}) at /usr/src/sys/i386/i386/trap.c:1150 #13 0xc0296015 in Xint0x80_syscall () #14 0x804b29a in ?? () #15 0x80576c5 in ?? () #16 0x8048137 in ?? () (kgdb) fr 6 #6 0xc0176cfa in diskopen (dev=0xc0cb0580, oflags=1, devtype=8192, p=0xc857c040) at /usr/src/sys/kern/subr_disk.c:189 189 error = dp->d_devsw->d_open(pdev, oflags, devtype, p); (kgdb) print dp $1 = (struct disk *) 0x0 (kgdb) print pdev $2 = 0xc0c47d80 (kgdb) print *pdev $3 = {si_flags = 0, si_udev = 69378, si_hash = {le_next = 0xc0342818, le_prev = 0xc0c48a88}, si_hlist = {slh_first = 0x0}, si_name = "cd0", '\000' , si_drv1 = 0x0, si_drv2 = 0x0, si_devsw = 0xc033e540, si_devfs = 0x0, si_bdevfs = 0x0, si_iosize_max = 65536, __si_u = {__si_tty = {__sit_tty = 0xc0c46034}, __si_disk = {__sid_disk = 0xc0c46034, __sid_mountpoint = 0x0, __sid_bsize_phys = 0, __sid_bsize_best = 0}}} (kgdb) print pdev->si_disk There is no member named si_disk. (kgdb) print pdev->__si_u.__si_disk.__sid_disk $4 = (struct disk *) 0xc0c46034 (kgdb) print pdev->si_iosize_max $5 = 65536 (kgdb) print pdev->__si_u.__si_disk.__sid_disk->d_slice $6 = (struct diskslices *) 0x0 (kgdb) print dp $7 = (struct disk *) 0x0 Script done on Sat Jun 16 01:33:30 2001 -- Thomas.Quinot@Cuivre.FR.EU.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 17: 9:39 2001 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 B30AB37B407; Fri, 15 Jun 2001 17:09:36 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G09aY80821; Fri, 15 Jun 2001 17:09:36 -0700 (PDT) (envelope-from mikeh) Date: Fri, 15 Jun 2001 17:09:36 -0700 (PDT) From: Message-Id: <200106160009.f5G09aY80821@freefall.freebsd.org> To: kuku@freebsd.org, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/26426: vi crashes when xterm is resized 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 Old Synopsis: vi New Synopsis: vi crashes when xterm is resized State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Fri Jun 15 17:08:44 PDT 2001 State-Changed-Why: Duplicate of bin/8438. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=26426 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 17:27:51 2001 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 E434437B401; Fri, 15 Jun 2001 17:27:47 -0700 (PDT) (envelope-from dd@FreeBSD.org) Received: (from dd@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G0Rlc81941; Fri, 15 Jun 2001 17:27:47 -0700 (PDT) (envelope-from dd) Date: Fri, 15 Jun 2001 17:27:47 -0700 (PDT) From: Message-Id: <200106160027.f5G0Rlc81941@freefall.freebsd.org> To: gordont@bluemtn.net, dd@FreeBSD.org, freebsd-bugs@FreeBSD.org, dd@FreeBSD.org Subject: Re: conf/28185: arpproxy_all and start_vinum are blank, should be set to NO 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: arpproxy_all and start_vinum are blank, should be set to NO State-Changed-From-To: open->analyzed State-Changed-By: dd State-Changed-When: Fri Jun 15 17:27:33 PDT 2001 State-Changed-Why: Committed, thanks! Responsible-Changed-From-To: freebsd-bugs->dd Responsible-Changed-By: dd Responsible-Changed-When: Fri Jun 15 17:27:33 PDT 2001 Responsible-Changed-Why: My MFC reminder. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28185 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 17:40: 8 2001 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 0ED0F37B406 for ; Fri, 15 Jun 2001 17:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G0e4B82911; Fri, 15 Jun 2001 17:40:04 -0700 (PDT) (envelope-from gnats) Date: Fri, 15 Jun 2001 17:40:04 -0700 (PDT) Message-Id: <200106160040.f5G0e4B82911@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dima Dorfman Subject: Re: misc/28188: Cron is being started to early in /etc/rc (potential security hole) Reply-To: Dima Dorfman 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/28188; it has been noted by GNATS. From: Dima Dorfman To: Brad Huntting Cc: freebsd-gnats-submit@FreeBSD.org, security@freebsd.org Subject: Re: misc/28188: Cron is being started to early in /etc/rc (potential security hole) Date: Fri, 15 Jun 2001 17:38:37 -0700 Brad Huntting writes: > >Description: > Cron allows users to run jobs at boot time by specifying "@reboot". > While this is a very usefull feature, it is also a potential security > hole if these jobs are started before the kern.securelevel level is > raised. This is a general problem; cron just makes it easy to take advantage of. The problem is that the securelevel is raised as late as possible; it is the last thing to happen in /etc/rc in -stable, and second to last in -current (background fsck's are started after it). The real solution[1] is to move the setting of securelevel up, above the starting of most of the non-essential daemons (e.g., sshd, cron, et al). Anyone from -security care to comment on the feasibility of this? Any reason why it isn't already done like this? OpenBSD sets it quite early, FWIW. Thanks, Dima Dorfman dima@unixfreak.org [1] Actually, the real solution is to axe the entire concept of securelevel. Of course, this won't be done until a suitable replacement is available (e.g., MAC). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 20:20:17 2001 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 A83A337B405 for ; Fri, 15 Jun 2001 20:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G3K4x01254; Fri, 15 Jun 2001 20:20:04 -0700 (PDT) (envelope-from gnats) Date: Fri, 15 Jun 2001 20:20:04 -0700 (PDT) Message-Id: <200106160320.f5G3K4x01254@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Assar Westerlund Subject: Re: misc/27880: select fails to return incoming connect Reply-To: Assar Westerlund 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/27880; it has been noted by GNATS. From: Assar Westerlund To: proett@pbspro.com Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/27880: select fails to return incoming connect Date: 16 Jun 2001 05:13:46 +0200 I'm not able to reproduce your problem on either 4.3 RELEASE or current 4.3-STABLE. On both of these I get: $ ./sockin 4711 ./sockin: 127.0.0.1 close (which I assume is the correct behaviour). Could you give me more information to allow me to debug your problem? Thanks. /assar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 20:20:17 2001 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 408CC37B403 for ; Fri, 15 Jun 2001 20:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G3K3j01249; Fri, 15 Jun 2001 20:20:03 -0700 (PDT) (envelope-from gnats) Date: Fri, 15 Jun 2001 20:20:03 -0700 (PDT) Message-Id: <200106160320.f5G3K3j01249@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brian Mitchell Subject: Re: kern/28112: Packet capture does not work well with -pthead option. Reply-To: Brian Mitchell 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/28112; it has been noted by GNATS. From: Brian Mitchell To: freebsd-gnats-submit@FreeBSD.org, jl@ntt-20.ecl.net?sub Cc: Subject: Re: kern/28112: Packet capture does not work well with -pthead option. Date: Fri, 15 Jun 2001 23:12:02 -0400 The problem is due to how pcap works. It is largely blocking based, and will return packets as it gets them. PCAP was never intended to be multithreaded, and the read of the bpf device will call sys_read() rather than the libc_r wrapper for read, so your other threads will never be scheduled. If you only want to read packets in 1 thread, and do other things in the other threads, compiling pcap with -pthread _may_ be acceptable, but I have not looked at the code recently. As I recall, there was atleast _some_ static data, but as long as all the pcap calls take place in a single thread, you should be ok. YMMV. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 20:20:37 2001 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 CB3A237B40F for ; Fri, 15 Jun 2001 20:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G3K4o01263; Fri, 15 Jun 2001 20:20:04 -0700 (PDT) (envelope-from gnats) Received: from phaidor.thuvia.org (thuvia.demon.co.uk [193.237.34.248]) by hub.freebsd.org (Postfix) with ESMTP id 04B6737B401 for ; Fri, 15 Jun 2001 20:14:56 -0700 (PDT) (envelope-from mark@thuvia.demon.co.uk) Received: from dotar-sojat.thuvia.org (dotar-sojat.thuvia.org [10.0.0.4]) by phaidor.thuvia.org (8.11.3/8.11.3) with ESMTP id f5G3F6S02031 for ; Sat, 16 Jun 2001 04:15:18 +0100 (BST) (envelope-from mark@dotar-sojat.thuvia.org) Received: (from mark@localhost) by dotar-sojat.thuvia.org (8.11.4/8.11.4) id f5G3En399530; Sat, 16 Jun 2001 04:14:49 +0100 (BST) (envelope-from mark) Message-Id: <200106160314.f5G3En399530@dotar-sojat.thuvia.org> Date: Sat, 16 Jun 2001 04:14:49 +0100 (BST) From: Mark Valentine Reply-To: Mark Valentine To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: gnu/28189: [PATCH] fix for detecting empty CVS commit log message 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: 28189 >Category: gnu >Synopsis: [PATCH] fix for detecting empty CVS commit log message >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 Jun 15 20:20:04 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Mark Valentine >Release: FreeBSD 5.0-CURRENT i386 >Organization: Thuvia Labs >Environment: System: FreeBSD dotar-sojat.thuvia.org 5.0-CURRENT FreeBSD 5.0-CURRENT #7: Thu Jun 7 16:34:58 BST 2001 root@dotar-sojat:/usr/obj/usr/src/sys/DOTAR i386 >Description: CVS attempts to detect an empty or unchanged log message from a commit log editing session, but misses a case where someone tries to abort a commit by deleting all but the CVS: lines before quitting the editor (it does detect the case where the leading blank line inserted by cvs is left in; note that the latest CVS sources don't appear to insert this blank line). The patch below detects this case, which I know has caught many people out over the years, but I'd always put down to the effects of a very simple detection algorithm rather than a bug (until I finally looked at the code just now, trying to be more clever than I'd had it down for). With this fix, all of the following ways of aborting a commit work: a) quit the edit without saving the temp file b) delete all lines in the file before saving and quitting c) delete all non-CVS: prefix lines before saving and quitting d) delete all non-CVS: prefix lines but for a single blank line before saving and quitting That is, the file must be either untouched after the edit (mtime), or must be empty or contain a single newline apart from any CVS: prefixed lines. You can do whatever you want with the CVS: lines, it's what's left once these are stripped which counts. Specifically, the patch fixes case (c). >How-To-Repeat: Delete all lines _not_ beginning with ``CVS:'' before quitting the editor when creating a cvs commit log message; watch your commit go through with an empty log message. >Fix: A version of this fix against the current CVS sources has been submitted to bug-cvs@gnu.org. Index: contrib/cvs/src/logmsg.c =================================================================== RCS file: /usr/cvs/src/contrib/cvs/src/logmsg.c,v retrieving revision 1.7 diff -u -r1.7 logmsg.c --- contrib/cvs/src/logmsg.c 2000/10/02 06:43:56 1.7 +++ contrib/cvs/src/logmsg.c 2001/06/16 02:20:58 @@ -339,7 +339,7 @@ error (0, errno, "warning: cannot close %s", fname); if (pre_stbuf.st_mtime == post_stbuf.st_mtime || - *messagep == NULL || + *messagep == NULL || (*messagep)[0] == '\0' || strcmp (*messagep, "\n") == 0) { for (;;) >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 Jun 15 20:22:59 2001 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 3904C37B40A; Fri, 15 Jun 2001 20:22:50 -0700 (PDT) (envelope-from assar@FreeBSD.org) Received: (from assar@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G3Moc01457; Fri, 15 Jun 2001 20:22:50 -0700 (PDT) (envelope-from assar) Date: Fri, 15 Jun 2001 20:22:50 -0700 (PDT) From: Message-Id: <200106160322.f5G3Moc01457@freefall.freebsd.org> To: proett@pbspro.com, assar@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/27880: select fails to return incoming connect 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: select fails to return incoming connect State-Changed-From-To: open->feedback State-Changed-By: assar State-Changed-When: Fri Jun 15 20:22:24 PDT 2001 State-Changed-Why: tried on 4.3 and 4.3-stable and send back mail to submitter for more details http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27880 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 20:28: 0 2001 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 9FCAE37B403; Fri, 15 Jun 2001 20:27:57 -0700 (PDT) (envelope-from assar@FreeBSD.org) Received: (from assar@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G3RvX01766; Fri, 15 Jun 2001 20:27:57 -0700 (PDT) (envelope-from assar) Date: Fri, 15 Jun 2001 20:27:57 -0700 (PDT) From: Message-Id: <200106160327.f5G3RvX01766@freefall.freebsd.org> To: ino-waiting@gmx.net, assar@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/27287: poll(2) returns 0 when POLLIN-ing ordinary 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 Synopsis: poll(2) returns 0 when POLLIN-ing ordinary files State-Changed-From-To: open->closed State-Changed-By: assar State-Changed-When: Fri Jun 15 20:27:32 PDT 2001 State-Changed-Why: this was fixed in vfs_default.c:1.51 and 1.28.2.2 (on RELENG_4) http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27287 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 20:30:31 2001 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 2D74637B409 for ; Fri, 15 Jun 2001 20:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G3U2G01922; Fri, 15 Jun 2001 20:30:02 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35B1F37B401 for ; Fri, 15 Jun 2001 20:25:36 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G3Pa601560; Fri, 15 Jun 2001 20:25:36 -0700 (PDT) (envelope-from nobody) Message-Id: <200106160325.f5G3Pa601560@freefall.freebsd.org> Date: Fri, 15 Jun 2001 20:25:36 -0700 (PDT) From: James Halstead To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/28190: Mergemaster lying about install problems 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: 28190 >Category: misc >Synopsis: Mergemaster lying about install problems >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 Jun 15 20:30:02 PDT 2001 >Closed-Date: >Last-Modified: >Originator: James Halstead >Release: 4-stable >Organization: >Environment: FreeBSD Halstead007 4.3-STABLE FreeBSD 4.3-STABLE #2: Fri Jun 1 18:47:12 EDT 2001 jah@Halstead007:/usr/obj/usr/src/sys/MYKERN i386 >Description: mergemaster will tell you it had problems installing files and they will be left to merge by hand, however the file will have been installed and it is already deleted from the temproot. >How-To-Repeat: use mergemaster after an update, and install a file. >Fix: add the '-c' to the install commands. there was an update to have it do install && test && rm, but install has already removed the file, causing rm to fail and thus pollute the $? shell variable. Patch: --- mergemaster.sh.orig Fri Jun 15 00:41:45 2001 +++ mergemaster.sh Sat Jun 16 03:27:18 2001 @@ -471,7 +471,7 @@ echo ' *** Press [Enter] or [Return] key to continue' read ANY_KEY unset ANY_KEY - diff -qr ${DESTDIR}/etc ${TEMPROOT}/etc | grep "^Only in /etc" | ${PAGER} + diff -qr ${DESTDIR}/etc ${TEMPROOT}/etc | grep "^Only in ${DESTDIR}/etc" | ${PAGER} echo '' echo ' *** Press [Enter] or [Return] key to continue' read ANY_KEY @@ -592,7 +592,7 @@ NEED_CAP_MKDB=yes ;; /etc/master.passwd) - install -m 600 "${1}" "${DESTDIR}${INSTALL_DIR}" && + install -c -m 600 "${1}" "${DESTDIR}${INSTALL_DIR}" && [ -f "${1}" ] && rm "${1}" NEED_PWD_MKDB=yes DONT_INSTALL=yes @@ -651,7 +651,7 @@ case "${DONT_INSTALL}" in '') - install -m "${FILE_MODE}" "${1}" "${DESTDIR}${INSTALL_DIR}" && + install -c -m "${FILE_MODE}" "${1}" "${DESTDIR}${INSTALL_DIR}" && [ -f "${1}" ] && rm "${1}" ;; *) @@ -664,7 +664,7 @@ NEED_MAKEDEV=yes ;; esac - install -m "${FILE_MODE}" "${1}" "${DESTDIR}${INSTALL_DIR}" && + install -c -m "${FILE_MODE}" "${1}" "${DESTDIR}${INSTALL_DIR}" && [ -f "${1}" ] && rm "${1}" fi return $? >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 Jun 15 20:51:33 2001 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 CBE6937B408; Fri, 15 Jun 2001 20:51:25 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G3pPg03117; Fri, 15 Jun 2001 20:51:25 -0700 (PDT) (envelope-from mikeh) Date: Fri, 15 Jun 2001 20:51:25 -0700 (PDT) From: Message-Id: <200106160351.f5G3pPg03117@freefall.freebsd.org> To: bicknell@ufp.org, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/6202: No way to detect removable media. 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 way to detect removable media. State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Fri Jun 15 20:44:10 PDT 2001 State-Changed-Why: It's not likely that this will ever be fixed as there is no easy way of fixing this. You can also use fdisk to display info on the disk. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=6202 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 21:10:29 2001 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 88CC437B411; Fri, 15 Jun 2001 21:10:18 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G4AHi06740; Fri, 15 Jun 2001 21:10:17 -0700 (PDT) (envelope-from mikeh) Date: Fri, 15 Jun 2001 21:10:17 -0700 (PDT) From: Message-Id: <200106160410.f5G4AHi06740@freefall.freebsd.org> To: naryaz@escortnet.com, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/3416: ibcs emulation problems 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: ibcs emulation problems State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Fri Jun 15 21:09:32 PDT 2001 State-Changed-Why: Feedback timeout. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=3416 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 21:10:33 2001 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 A3F3437B403 for ; Fri, 15 Jun 2001 21:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G4A4r06699; Fri, 15 Jun 2001 21:10:04 -0700 (PDT) (envelope-from gnats) Date: Fri, 15 Jun 2001 21:10:04 -0700 (PDT) Message-Id: <200106160410.f5G4A4r06699@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brian Mitchell Subject: Re: misc/27311: pthread_attr_setscope always fails Reply-To: Brian Mitchell 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/27311; it has been noted by GNATS. From: Brian Mitchell To: freebsd-gnats-submit@FreeBSD.org Cc: rblaze@mail.ru Subject: Re: misc/27311: pthread_attr_setscope always fails Date: Sat, 16 Jun 2001 00:02:33 -0400 Something along these lines should let PTHREAD_SCOPE_PROCESS work, I believe. *** uthread_attr_setscope.c.old Fri Jun 15 23:28:19 2001 --- uthread_attr_setscope.c Fri Jun 15 23:47:49 2001 *************** *** 43,56 **** int ret = 0; if ((attr == NULL) || (*attr == NULL)) { ! /* Return an invalid argument: */ ! ret = EINVAL; ! } else if ((contentionscope != PTHREAD_SCOPE_PROCESS) || ! (contentionscope != PTHREAD_SCOPE_SYSTEM)) { ! /* We don't support PTHREAD_SCOPE_SYSTEM. */ ! ret = ENOTSUP; ! } else ! (*attr)->flags |= contentionscope; ! return(ret); } --- 43,62 ---- int ret = 0; if ((attr == NULL) || (*attr == NULL)) { ! return EINVAL; ! } ! switch(contentionscope) ! { ! case PTHREAD_SCOPE_SYSTEM: ! return ENOTSUP; ! case PTHREAD_SCOPE_PROCESS: ! (*attr)->flags |= contentionscope; ! return ret; ! default: ! return ENOTSUP; ! } ! /* not reached */ ! return ret; } + To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 21:26:23 2001 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 B132D37B408; Fri, 15 Jun 2001 21:26:13 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G4QD007855; Fri, 15 Jun 2001 21:26:13 -0700 (PDT) (envelope-from mikeh) Date: Fri, 15 Jun 2001 21:26:13 -0700 (PDT) From: Message-Id: <200106160426.f5G4QD007855@freefall.freebsd.org> To: mjacob@feral.com, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org, mikeh@FreeBSD.org Subject: Re: bin/13339: ntpdate now has unaligned accesses 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: ntpdate now has unaligned accesses State-Changed-From-To: open->feedback State-Changed-By: mikeh State-Changed-When: Fri Jun 15 21:24:02 PDT 2001 State-Changed-Why: Is this still a problem with 4.0.99b? Responsible-Changed-From-To: freebsd-bugs->mikeh Responsible-Changed-By: mikeh Responsible-Changed-When: Fri Jun 15 21:24:02 PDT 2001 Responsible-Changed-Why: I'll handle feedback. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=13339 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 21:56:12 2001 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 588E537B401; Fri, 15 Jun 2001 21:56:05 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G4u5j09880; Fri, 15 Jun 2001 21:56:05 -0700 (PDT) (envelope-from mikeh) Date: Fri, 15 Jun 2001 21:56:05 -0700 (PDT) From: Message-Id: <200106160456.f5G4u5j09880@freefall.freebsd.org> To: epeters@207.92.104.97, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org, mikeh@FreeBSD.org Subject: Re: bin/13557: [PATCH] top(1) sorts processes incorrectly 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] top(1) sorts processes incorrectly State-Changed-From-To: open->feedback State-Changed-By: mikeh State-Changed-When: Fri Jun 15 21:54:45 PDT 2001 State-Changed-Why: Can you report if this was fixed by rev 1.28 of machine.c? Responsible-Changed-From-To: freebsd-bugs->mikeh Responsible-Changed-By: mikeh Responsible-Changed-When: Fri Jun 15 21:54:45 PDT 2001 Responsible-Changed-Why: I'll handle feedback. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=13557 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 22:10:22 2001 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 432D837B406; Fri, 15 Jun 2001 22:10:13 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G5ADj13888; Fri, 15 Jun 2001 22:10:13 -0700 (PDT) (envelope-from mikeh) Date: Fri, 15 Jun 2001 22:10:13 -0700 (PDT) From: Message-Id: <200106160510.f5G5ADj13888@freefall.freebsd.org> To: takehiro@coral.ocn.ne.jp, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/14246: kvm_open and kvm_openfiles not works correctly. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: kvm_open and kvm_openfiles not works correctly. State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Fri Jun 15 22:08:25 PDT 2001 State-Changed-Why: Is this still a problem? There's not enough information here to solve the problem. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=14246 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 22:14:26 2001 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 8B7DF37B411; Fri, 15 Jun 2001 22:14:20 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G5EKf14415; Fri, 15 Jun 2001 22:14:20 -0700 (PDT) (envelope-from mikeh) Date: Fri, 15 Jun 2001 22:14:20 -0700 (PDT) From: Message-Id: <200106160514.f5G5EKf14415@freefall.freebsd.org> To: mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org, mikeh@FreeBSD.org Subject: Re: bin/14255: rup and rusers could not deal with many host 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: rup and rusers could not deal with many host Responsible-Changed-From-To: freebsd-bugs->mikeh Responsible-Changed-By: mikeh Responsible-Changed-When: Fri Jun 15 22:13:56 PDT 2001 Responsible-Changed-Why: I'll look at this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=14255 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 22:24: 4 2001 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 5404E37B405; Fri, 15 Jun 2001 22:23:59 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G5NwZ19226; Fri, 15 Jun 2001 22:23:58 -0700 (PDT) (envelope-from mikeh) Date: Fri, 15 Jun 2001 22:23:58 -0700 (PDT) From: Message-Id: <200106160523.f5G5NwZ19226@freefall.freebsd.org> To: eugen@pal.svznov.kemerovo.su, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/15301: Bug in /usr/sbin/syslogd: strips 8th bits, breaking NLS 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: Bug in /usr/sbin/syslogd: strips 8th bits, breaking NLS State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Fri Jun 15 22:23:29 PDT 2001 State-Changed-Why: Fixed in rev 1.60 of syslogd.c. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=15301 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 22:47:25 2001 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 24FA237B407; Fri, 15 Jun 2001 22:47:20 -0700 (PDT) (envelope-from assar@FreeBSD.org) Received: (from assar@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G5lFr24181; Fri, 15 Jun 2001 22:47:15 -0700 (PDT) (envelope-from assar) Date: Fri, 15 Jun 2001 22:47:15 -0700 (PDT) From: Message-Id: <200106160547.f5G5lFr24181@freefall.freebsd.org> To: miles@turboflux.net, assar@FreeBSD.org, freebsd-bugs@FreeBSD.org, assar@FreeBSD.org Subject: Re: misc/26044: vsprintf calls __swsetup, then __smakebuf, it allocates mem and never frees it 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: vsprintf calls __swsetup, then __smakebuf, it allocates mem and never frees it State-Changed-From-To: open->closed State-Changed-By: assar State-Changed-When: Fri Jun 15 22:46:30 PDT 2001 State-Changed-Why: thanks. fixed. Responsible-Changed-From-To: freebsd-bugs->assar Responsible-Changed-By: assar Responsible-Changed-When: Fri Jun 15 22:46:30 PDT 2001 Responsible-Changed-Why: I fixed it http://www.FreeBSD.org/cgi/query-pr.cgi?pr=26044 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 23:14:47 2001 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 59FD537B405; Fri, 15 Jun 2001 23:14:45 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G6EjV28396; Fri, 15 Jun 2001 23:14:45 -0700 (PDT) (envelope-from mikeh) Date: Fri, 15 Jun 2001 23:14:45 -0700 (PDT) From: Message-Id: <200106160614.f5G6EjV28396@freefall.freebsd.org> To: takamune@avrl.mei.co.jp, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/15456: Usage of ktrace(1) is invalid 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: Usage of ktrace(1) is invalid State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Fri Jun 15 23:13:57 PDT 2001 State-Changed-Why: http://www.FreeBSD.org/cgi/query-pr.cgi?pr=15456 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 23:16:30 2001 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 C925937B406; Fri, 15 Jun 2001 23:16:22 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G6GMJ28542; Fri, 15 Jun 2001 23:16:22 -0700 (PDT) (envelope-from mikeh) Date: Fri, 15 Jun 2001 23:16:22 -0700 (PDT) From: Message-Id: <200106160616.f5G6GMJ28542@freefall.freebsd.org> To: takamune@avrl.mei.co.jp, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org, mikeh@FreeBSD.org Subject: Re: bin/15456: Usage of ktrace(1) is invalid 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: Usage of ktrace(1) is invalid State-Changed-From-To: closed->open State-Changed-By: mikeh State-Changed-When: Fri Jun 15 23:14:50 PDT 2001 State-Changed-Why: Doh! Meant to take ownership, not close it. What's the correct way to abort a PR change? Responsible-Changed-From-To: freebsd-bugs-> mikeh Responsible-Changed-By: mikeh Responsible-Changed-When: Fri Jun 15 23:14:50 PDT 2001 Responsible-Changed-Why: I have a patch for this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=15456 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 23:35:39 2001 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 3BA4B37B407; Fri, 15 Jun 2001 23:35:36 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G6ZaH29984; Fri, 15 Jun 2001 23:35:36 -0700 (PDT) (envelope-from mikeh) Date: Fri, 15 Jun 2001 23:35:36 -0700 (PDT) From: Message-Id: <200106160635.f5G6ZaH29984@freefall.freebsd.org> To: mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org, tg@FreeBSD.org Subject: Re: bin/15593: [SECURITY] ustrcpy() buffer overflow in doscmd(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: [SECURITY] ustrcpy() buffer overflow in doscmd(1) Responsible-Changed-From-To: freebsd-bugs->tg Responsible-Changed-By: mikeh Responsible-Changed-When: Fri Jun 15 23:34:14 PDT 2001 Responsible-Changed-Why: tg has recently done some work with doscmd http://www.FreeBSD.org/cgi/query-pr.cgi?pr=15593 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 23:49:19 2001 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 8225137B403; Fri, 15 Jun 2001 23:49:14 -0700 (PDT) (envelope-from assar@FreeBSD.org) Received: (from assar@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G6nE230776; Fri, 15 Jun 2001 23:49:14 -0700 (PDT) (envelope-from assar) Date: Fri, 15 Jun 2001 23:49:14 -0700 (PDT) From: Message-Id: <200106160649.f5G6nE230776@freefall.freebsd.org> To: ajk@iu.edu, assar@FreeBSD.org, freebsd-bugs@FreeBSD.org, assar@FreeBSD.org Subject: Re: bin/25561: [PATCH] ksrvtgt contains unsubstituted path variable 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] ksrvtgt contains unsubstituted path variable State-Changed-From-To: open->closed State-Changed-By: assar State-Changed-When: Fri Jun 15 23:48:44 PDT 2001 State-Changed-Why: applied, thanks Responsible-Changed-From-To: freebsd-bugs->assar Responsible-Changed-By: assar Responsible-Changed-When: Fri Jun 15 23:48:44 PDT 2001 Responsible-Changed-Why: mine http://www.FreeBSD.org/cgi/query-pr.cgi?pr=25561 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 15 23:50:28 2001 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 0325C37B40A for ; Fri, 15 Jun 2001 23:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G6o1a30862; Fri, 15 Jun 2001 23:50:01 -0700 (PDT) (envelope-from gnats) Received: from topperwein.dyndns.org (acs-24-154-28-172.zoominternet.net [24.154.28.172]) by hub.freebsd.org (Postfix) with ESMTP id 8DB4137B401 for ; Fri, 15 Jun 2001 23:48:56 -0700 (PDT) (envelope-from behanna@topperwein.dyndns.org) Received: (from behanna@localhost) by topperwein.dyndns.org (8.11.4/8.11.4) id f5G6nqP89676; Sat, 16 Jun 2001 02:49:52 -0400 (EDT) (envelope-from behanna) Message-Id: <200106160649.f5G6nqP89676@topperwein.dyndns.org> Date: Sat, 16 Jun 2001 02:49:52 -0400 (EDT) From: Chris BeHanna Reply-To: behanna@topperwein.dyndns.org To: FreeBSD-gnats-submit@freebsd.org Cc: jdp@polstra.com X-Send-Pr-Version: 3.113 Subject: bin/28191: rtld-elf apparently ignores LD_LIBRARY_PATH 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: 28191 >Category: bin >Synopsis: rtld-elf ignores LD_LIBRARY_PATH >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 15 23:50:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Chris BeHanna >Release: FreeBSD 4.3-STABLE i386 >Organization: >Environment: System: FreeBSD topperwein.dyndns.org 4.3-STABLE FreeBSD 4.3-STABLE #0: Tue Jun 12 09:06:55 EDT 2001 root@topperwein.dyndns.org:/usr/obj/usr/src/sys/TOPPERWEIN i386 CPU: AMD Athlon, 1.333 GHz (AMD K-7) Affected file: /usr/libexec/ld-elf.so.1 >Description: The XFree86 4.1.0_4 port fails on this box when attempting to build the Type 1 fonts. In particular, this line fails: LD_LIBRARY_PATH=../../../exports/lib XFT_CONFIG=../../../lib/Xft/XftConfig ../../../exports/bin/xftcache . /usr/libexec/ld-elf.so.1: ../../../exports/bin/xftcache: Undefined symbol "XftDirSave" where `pwd` is /usr/ports/x11/XFree86-4/work/xc/programs/xftcache. According to rtld(1), LD_LIBRARY_PATH should supercede the default search path except for setuid and setgid executables, of which xftcache is neither. I verified this problem by running the command by hand and by doing "LD_LIBRARY_PATH=../../../exports/lib ldd xftcache". The output pointed to the installed /usr/X11R6/lib/libXft.so instead of the one within the XFree86 build tree and, indeed the installed libXft.so doesn't have the symbol XftDirSave, but the one in the build tree does. Note that ldconfig -r reveals an entry for libXft.so that does indeed point to /usr/X11R6/lib/libXft.so. That said, if I can't selectively override that by setting LD_LIBRARY_PATH on the command line, that's a big problem. From the comment from find_library(), I see that the executable's RPATH entry takes precedence over LD_LIBRARY_PATH. If that's the case, then how can LD_LIBRARY_PATH be used to force an executable to bootstrap itself from a build tree? >How-To-Repeat: Attempt to build XFree86 4.1.0_4 on an Athlon running 4.3-STABLE from the date indicated in uname -a, above. >Fix: Change find_library() to look in LD_LIBRARY_PATH before RPATH for non-setuid, non-setgid executables: --- rtld.c Mon May 14 01:01:35 2001 +++ rtld.c.new Sat Jun 16 02:45:03 2001 @@ -803,8 +803,8 @@ dbg(" Searching for \"%s\"", name); if ((refobj != NULL && - (pathname = search_library_path(name, refobj->rpath)) != NULL) || (pathname = search_library_path(name, ld_library_path)) != NULL || + (pathname = search_library_path(name, refobj->rpath)) != NULL) || (pathname = search_library_path(name, gethints())) != NULL || (pathname = search_library_path(name, STANDARD_LIBRARY_PATH)) != NULL) return pathname; If I completely misunderstand, please let me know, and I'll raise no fuss about closing this PR. >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 Jun 16 0:11:28 2001 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 9D56237B403; Sat, 16 Jun 2001 00:11:25 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G7BPC35131; Sat, 16 Jun 2001 00:11:25 -0700 (PDT) (envelope-from mikeh) Date: Sat, 16 Jun 2001 00:11:25 -0700 (PDT) From: Message-Id: <200106160711.f5G7BPC35131@freefall.freebsd.org> To: ryan@sasknow.com, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org, mikeh@FreeBSD.org Subject: Re: bin/16649: /bin/lastcomm: output contains extraneous trailing spaces 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: /bin/lastcomm: output contains extraneous trailing spaces State-Changed-From-To: open->analyzed State-Changed-By: mikeh State-Changed-When: Sat Jun 16 00:10:32 PDT 2001 State-Changed-Why: Fix committed to current. Responsible-Changed-From-To: freebsd-bugs-> mikeh Responsible-Changed-By: mikeh Responsible-Changed-When: Sat Jun 16 00:10:32 PDT 2001 Responsible-Changed-Why: My MFC reminder. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=16649 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 0:20:10 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 5FDA837B403; Sat, 16 Jun 2001 00:20:07 -0700 (PDT) (envelope-from mjacob@feral.com) Received: from beppo (mjacob@beppo [192.67.166.79]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id f5G7K6g50344; Sat, 16 Jun 2001 00:20:06 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Sat, 16 Jun 2001 00:20:06 -0700 (PDT) From: Matthew Jacob Reply-To: mjacob@feral.com To: mikeh@FreeBSD.ORG Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/13339: ntpdate now has unaligned accesses In-Reply-To: <200106160426.f5G4QD007855@freefall.freebsd.org> 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 I don't recall seeing this in a while. Close it. On Fri, 15 Jun 2001 mikeh@FreeBSD.ORG wrote: > Synopsis: ntpdate now has unaligned accesses > > State-Changed-From-To: open->feedback > State-Changed-By: mikeh > State-Changed-When: Fri Jun 15 21:24:02 PDT 2001 > State-Changed-Why: > Is this still a problem with 4.0.99b? > > > Responsible-Changed-From-To: freebsd-bugs->mikeh > Responsible-Changed-By: mikeh > Responsible-Changed-When: Fri Jun 15 21:24:02 PDT 2001 > Responsible-Changed-Why: > I'll handle feedback. > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=13339 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 0:21:44 2001 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 8CDFE37B407; Sat, 16 Jun 2001 00:21:39 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5G7Ldl35904; Sat, 16 Jun 2001 00:21:39 -0700 (PDT) (envelope-from mikeh) Date: Sat, 16 Jun 2001 00:21:39 -0700 (PDT) From: Message-Id: <200106160721.f5G7Ldl35904@freefall.freebsd.org> To: mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org, gad@FreeBSD.org Subject: Re: bin/17289: [PATCH] wrong permissions on /var/run/printer 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] wrong permissions on /var/run/printer Responsible-Changed-From-To: freebsd-bugs->gad Responsible-Changed-By: mikeh Responsible-Changed-When: Sat Jun 16 00:20:45 PDT 2001 Responsible-Changed-Why: Garance has been doing some work with lpr http://www.FreeBSD.org/cgi/query-pr.cgi?pr=17289 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 4:33:46 2001 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 87D6D37B403; Sat, 16 Jun 2001 04:33:40 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GBXea70856; Sat, 16 Jun 2001 04:33:40 -0700 (PDT) (envelope-from schweikh) Date: Sat, 16 Jun 2001 04:33:40 -0700 (PDT) From: Message-Id: <200106161133.f5GBXea70856@freefall.freebsd.org> To: card@ens.uvsq.fr, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/10158: Reference to ncheck in quot(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: Reference to ncheck in quot(8) State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Sat Jun 16 04:32:43 PDT 2001 State-Changed-Why: Man page no longer references non-existent ncheck. Thanks, Remy! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=10158 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 4:36:46 2001 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 56FE137B403; Sat, 16 Jun 2001 04:36:39 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GBadb71515; Sat, 16 Jun 2001 04:36:39 -0700 (PDT) (envelope-from schweikh) Date: Sat, 16 Jun 2001 04:36:39 -0700 (PDT) From: Message-Id: <200106161136.f5GBadb71515@freefall.freebsd.org> To: dhesi@rahul.net, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/10444: avoiding lost mail when mail filesystem is not mounted 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: avoiding lost mail when mail filesystem is not mounted State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Sat Jun 16 04:33:53 PDT 2001 State-Changed-Why: The proposed solution of having all MTAs looking for some files is certainly out of the question. There's an easy and viable workaround as Chris proposed: don't have user's mailboxen in the directory of the mountpoint but at least one directory below. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=10444 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 5:22:44 2001 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 D268437B403; Sat, 16 Jun 2001 05:22:42 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GCMgg76791; Sat, 16 Jun 2001 05:22:42 -0700 (PDT) (envelope-from schweikh) Date: Sat, 16 Jun 2001 05:22:42 -0700 (PDT) From: Message-Id: <200106161222.f5GCMgg76791@freefall.freebsd.org> To: schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org, tobez@FreeBSD.org Subject: Re: misc/23376: The version of CGI.pm bundled with perl in -STABLE is outdated (more than 2 years) 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 version of CGI.pm bundled with perl in -STABLE is outdated (more than 2 years) Responsible-Changed-From-To: freebsd-bugs->tobez Responsible-Changed-By: schweikh Responsible-Changed-When: Sat Jun 16 05:21:14 PDT 2001 Responsible-Changed-Why: Anton wanted "all things perl". Could you have a look at this? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=23376 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 5:26: 9 2001 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 E3C3137B416; Sat, 16 Jun 2001 05:26:01 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GCQ1K77023; Sat, 16 Jun 2001 05:26:01 -0700 (PDT) (envelope-from schweikh) Date: Sat, 16 Jun 2001 05:26:01 -0700 (PDT) From: Message-Id: <200106161226.f5GCQ1K77023@freefall.freebsd.org> To: dhchen@dns.ktvs.org, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/24226: PicoBSD do not build on 5.0-current 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: PicoBSD do not build on 5.0-current State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Sat Jun 16 05:23:17 PDT 2001 State-Changed-Why: If this problem still exists, please use the freebsd-current@freebsd.org mailing list to discuss these matters. PRs should be used only for STABLE and RELEASE (i.e. non-current) problems. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24226 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 5:27:28 2001 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 3AB5C37B408; Sat, 16 Jun 2001 05:27:26 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GCRQQ77159; Sat, 16 Jun 2001 05:27:26 -0700 (PDT) (envelope-from schweikh) Date: Sat, 16 Jun 2001 05:27:26 -0700 (PDT) From: Message-Id: <200106161227.f5GCRQQ77159@freefall.freebsd.org> To: matusita@jp.FreeBSD.org, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/14078: -stable 'make release' does not work on -current environment 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: -stable 'make release' does not work on -current environment State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Sat Jun 16 05:26:53 PDT 2001 State-Changed-Why: If this problem still exists, please use the freebsd-current@freebsd.org mailing list to discuss these matters. PRs should be used only for STABLE and RELEASE (i.e. non-current) problems. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=14078 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 5:28:37 2001 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 9E8AA37B401; Sat, 16 Jun 2001 05:28:33 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GCSXZ77274; Sat, 16 Jun 2001 05:28:33 -0700 (PDT) (envelope-from schweikh) Date: Sat, 16 Jun 2001 05:28:33 -0700 (PDT) From: Message-Id: <200106161228.f5GCSXZ77274@freefall.freebsd.org> To: Martin.Birgmeier@aon.at, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/16937: ie0 not probed in -current of 2000-02-18 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: ie0 not probed in -current of 2000-02-18 State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Sat Jun 16 05:27:53 PDT 2001 State-Changed-Why: If this problem still exists, please use the freebsd-current@freebsd.org mailing list to discuss these matters. PRs should be used only for STABLE and RELEASE (i.e. non-current) problems. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=16937 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 5:30:32 2001 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 2CD6137B408; Sat, 16 Jun 2001 05:30:26 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GCUPu77403; Sat, 16 Jun 2001 05:30:25 -0700 (PDT) (envelope-from schweikh) Date: Sat, 16 Jun 2001 05:30:25 -0700 (PDT) From: Message-Id: <200106161230.f5GCUPu77403@freefall.freebsd.org> To: caesar@starkreality.com, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/9974: Large amounts of kernel clock drift with a SMP 4.0-current 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: Large amounts of kernel clock drift with a SMP 4.0-current State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Sat Jun 16 05:29:20 PDT 2001 State-Changed-Why: If this problem still exists, please use the freebsd-current@freebsd.org mailing list to discuss these matters. PRs should be used only for STABLE and RELEASE (i.e. non-current) problems. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=9974 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 5:32:40 2001 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 1B95C37B407; Sat, 16 Jun 2001 05:32:32 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GCWVY77543; Sat, 16 Jun 2001 05:32:31 -0700 (PDT) (envelope-from schweikh) Date: Sat, 16 Jun 2001 05:32:31 -0700 (PDT) From: Message-Id: <200106161232.f5GCWVY77543@freefall.freebsd.org> To: jj@commandline.de, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/28142: csa driver doesn't play sound on -current 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: csa driver doesn't play sound on -current State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Sat Jun 16 05:30:49 PDT 2001 State-Changed-Why: If this problem still exists, please use the freebsd-current@freebsd.org mailing list to discuss these matters. PRs should be used only for STABLE and RELEASE (i.e. non-current) problems. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28142 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 7:20:30 2001 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 A736337B40A for ; Sat, 16 Jun 2001 07:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GEK3q92681; Sat, 16 Jun 2001 07:20:03 -0700 (PDT) (envelope-from gnats) Received: from mail.drkshdw.org (user4.net011.fl.sprint-hsd.net [207.30.203.4]) by hub.freebsd.org (Postfix) with ESMTP id E0A9B37B401 for ; Sat, 16 Jun 2001 07:13:54 -0700 (PDT) (envelope-from root@mail.drkshdw.org) Received: (qmail 2024 invoked by uid 0); 16 Jun 2001 14:13:52 -0000 Message-Id: <20010616141352.2023.qmail@mail.drkshdw.org> Date: 16 Jun 2001 14:13:52 -0000 From: scorpio@drkshdw.org Reply-To: scorpio@drkshdw.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: conf/28200: UPDATE to etc/rc.firewall 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: 28200 >Category: conf >Synopsis: UPDATE to etc/rc.firewall >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 Jun 16 07:20:02 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Jeff Palmer >Release: FreeBSD 4.3-STABLE i386 >Organization: >Environment: System: FreeBSD jeff.isni.net 4.3-STABLE FreeBSD 4.3-STABLE #4: Wed May 16 12:55:48 EDT 2001 root@jeff.isni.net:/usr/obj/usr/src/sys/FreeBSD i386 >Description: In the "simple" configuration, we have the rfc1918 and draf-dodgind rules in twice. >How-To-Repeat: >Fix: Index: rc.firewall =================================================================== RCS file: /home/ncvs/src/etc/rc.firewall,v retrieving revision 1.30.2.12 diff -u -r1.30.2.12 rc.firewall --- rc.firewall 2001/03/06 01:58:02 1.30.2.12 +++ rc.firewall 2001/06/16 14:11:20 @@ -233,20 +233,6 @@ ;; esac - # Stop RFC1918 nets on the outside interface - ${fwcmd} add deny all from 10.0.0.0/8 to any via ${oif} - ${fwcmd} add deny all from 172.16.0.0/12 to any via ${oif} - ${fwcmd} add deny all from 192.168.0.0/16 to any via ${oif} - - # Stop draft-manning-dsua-03.txt (1 May 2000) nets (includes RESERVED-1, - # DHCP auto-configuration, NET-TEST, MULTICAST (class D), and class E) - # on the outside interface - ${fwcmd} add deny all from 0.0.0.0/8 to any via ${oif} - ${fwcmd} add deny all from 169.254.0.0/16 to any via ${oif} - ${fwcmd} add deny all from 192.0.2.0/24 to any via ${oif} - ${fwcmd} add deny all from 224.0.0.0/4 to any via ${oif} - ${fwcmd} add deny all from 240.0.0.0/4 to any via ${oif} - # Allow TCP through if setup succeeded ${fwcmd} add pass tcp from any to any established >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 Jun 16 7:42:12 2001 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 8396237B40A; Sat, 16 Jun 2001 07:42:06 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GEg6b94505; Sat, 16 Jun 2001 07:42:06 -0700 (PDT) (envelope-from mikeh) Date: Sat, 16 Jun 2001 07:42:06 -0700 (PDT) From: Message-Id: <200106161442.f5GEg6b94505@freefall.freebsd.org> To: ayan@kiwi.datasys.net, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/17395: This is a replacement for the perl version of which. 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: This is a replacement for the perl version of which. State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Sat Jun 16 07:41:23 PDT 2001 State-Changed-Why: which(1) has been converted to C. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=17395 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 7:50:19 2001 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 3E8B437B409 for ; Sat, 16 Jun 2001 07:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GEo2e95122; Sat, 16 Jun 2001 07:50:02 -0700 (PDT) (envelope-from gnats) Date: Sat, 16 Jun 2001 07:50:02 -0700 (PDT) Message-Id: <200106161450.f5GEo2e95122@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Thomas Quinot Subject: Re: kern/24596: sysinstall crash: Page fault while in kernel mode Reply-To: Thomas Quinot 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/24596; it has been noted by GNATS. From: Thomas Quinot To: freebsd-gnats-submit@FreeBSD.org, stable@freebsd.org Cc: Subject: Re: kern/24596: sysinstall crash: Page fault while in kernel mode Date: Sat, 16 Jun 2001 16:40:53 +0200 Le 2001-06-16, Thomas Quinot écrivait : > (kgdb) print *pdev > $3 = {si_flags = 0, si_udev = 69378, si_hash = {le_next = 0xc0342818, > le_prev = 0xc0c48a88}, si_hlist = {slh_first = 0x0}, > si_name = "cd0", '\000' , si_drv1 = 0x0, si_drv2 = 0x0, > si_devsw = 0xc033e540, si_devfs = 0x0, si_bdevfs = 0x0, > si_iosize_max = 65536, __si_u = {__si_tty = {__sit_tty = 0xc0c46034}, > __si_disk = {__sid_disk = 0xc0c46034, __sid_mountpoint = 0x0, > __sid_bsize_phys = 0, __sid_bsize_best = 0}}} Since we had some indication (si_name) that this problem was related to cd0 (an HP Surestore CDW 6020) I investigated that direction a bit further. I was able to recreate a similar crash when trying to mount a CD, but the crash dump was of no help (the stack frame pointer was apparently wrong, and gdb was unable to produce a backtrace). However, I noted that these crashes occur only when one specific faulty disc is present in the CD burner at boot time (a failed disc that was not fixated correctly). When this CD is in the drive at boot time, I get the following messages: (cd0:sym0:0:2:0): got CAM status 0x4c (cd0:sym0:0:2:0): fatal error, failed to attach to device (cd0:sym0:0:2:0): lost device (cd0:sym0:0:2:0): removing device entry When the CD is not in the drive at boot time, I get no such error, and sysinstall and mounting a CD work correctly afterward. Hope this helps, Thomas. -- Thomas.Quinot@Cuivre.FR.EU.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 8:14:56 2001 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 C1F2737B403; Sat, 16 Jun 2001 08:14:50 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GFEoI99586; Sat, 16 Jun 2001 08:14:50 -0700 (PDT) (envelope-from mikeh) Date: Sat, 16 Jun 2001 08:14:50 -0700 (PDT) From: Message-Id: <200106161514.f5GFEoI99586@freefall.freebsd.org> To: mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org, mikeh@FreeBSD.org Subject: Re: bin/17640: lseek();read() -> pread() in dump and fsck 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: lseek();read() -> pread() in dump and fsck Responsible-Changed-From-To: freebsd-bugs->mikeh Responsible-Changed-By: mikeh Responsible-Changed-When: Sat Jun 16 08:13:40 PDT 2001 Responsible-Changed-Why: I'll commit the change to dump after I take a look at it. It appears that the fsck part doesn't apply anymore. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=17640 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 8:18:23 2001 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 A749D37B403; Sat, 16 Jun 2001 08:18:17 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GFIHX99855; Sat, 16 Jun 2001 08:18:17 -0700 (PDT) (envelope-from mikeh) Date: Sat, 16 Jun 2001 08:18:17 -0700 (PDT) From: Message-Id: <200106161518.f5GFIHX99855@freefall.freebsd.org> To: robert+freebsd@cyrus.watson.org, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/17720: presence of old /dev entries causes sysinstall to list twice 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: presence of old /dev entries causes sysinstall to list twice State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Sat Jun 16 08:17:24 PDT 2001 State-Changed-Why: This appears to be fixed. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=17720 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 8:19:53 2001 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 1A6F737B401; Sat, 16 Jun 2001 08:19:51 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GFJoF00160; Sat, 16 Jun 2001 08:19:50 -0700 (PDT) (envelope-from mikeh) Date: Sat, 16 Jun 2001 08:19:50 -0700 (PDT) From: Message-Id: <200106161519.f5GFJoF00160@freefall.freebsd.org> To: ph.jounin@computer.org, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/17772: TFTP can not handle big files (> 32MBytes) 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: TFTP can not handle big files (> 32MBytes) State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Sat Jun 16 08:19:31 PDT 2001 State-Changed-Why: Fixed in rev 1.6 of tftp.c. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=17772 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 8:24:54 2001 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 DC59337B403; Sat, 16 Jun 2001 08:24:52 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GFOqq00600; Sat, 16 Jun 2001 08:24:52 -0700 (PDT) (envelope-from mikeh) Date: Sat, 16 Jun 2001 08:24:52 -0700 (PDT) From: Message-Id: <200106161524.f5GFOqq00600@freefall.freebsd.org> To: jobaldwi@vt.edu, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/11399: Calendar doesn't always handle 'last' days right... 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: Calendar doesn't always handle 'last' days right... State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Sat Jun 16 08:24:14 PDT 2001 State-Changed-Why: Fixed in rev 1.12 of day.c. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=11399 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 8:26:37 2001 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 C0B2437B401; Sat, 16 Jun 2001 08:26:29 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GFQTU00739; Sat, 16 Jun 2001 08:26:29 -0700 (PDT) (envelope-from mikeh) Date: Sat, 16 Jun 2001 08:26:29 -0700 (PDT) From: Message-Id: <200106161526.f5GFQTU00739@freefall.freebsd.org> To: wosch@freebsd.first.gmd.de, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/10868: BUG in /usr/bin/calendar 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: BUG in /usr/bin/calendar State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Sat Jun 16 08:26:06 PDT 2001 State-Changed-Why: Fixed in rev 1.12 of day.c. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=10868 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 8:27:30 2001 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 1086537B408; Sat, 16 Jun 2001 08:27:23 -0700 (PDT) (envelope-from mikeh@FreeBSD.org) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GFRNf00844; Sat, 16 Jun 2001 08:27:23 -0700 (PDT) (envelope-from mikeh) Date: Sat, 16 Jun 2001 08:27:23 -0700 (PDT) From: Message-Id: <200106161527.f5GFRNf00844@freefall.freebsd.org> To: jhs@freebsd.org, mikeh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/15182: "* Wed-1 event" in calendar produces "31 Nov* event" in mail 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: "* Wed-1 event" in calendar produces "31 Nov* event" in mail State-Changed-From-To: open->closed State-Changed-By: mikeh State-Changed-When: Sat Jun 16 08:27:06 PDT 2001 State-Changed-Why: Fixed in rev 1.12 of day.c. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=15182 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 8:46:31 2001 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 2232F37B40A; Sat, 16 Jun 2001 08:46:22 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GFkM401966; Sat, 16 Jun 2001 08:46:22 -0700 (PDT) (envelope-from schweikh) Date: Sat, 16 Jun 2001 08:46:22 -0700 (PDT) From: Message-Id: <200106161546.f5GFkM401966@freefall.freebsd.org> To: jsd@gamespot.com, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/11387: mount_cd9660 doesn't show rockridge filenames without -g 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: mount_cd9660 doesn't show rockridge filenames without -g State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Sat Jun 16 08:43:32 PDT 2001 State-Changed-Why: This appears to be fixed in -current. I have mdconfig'd a rock ridge iso file system as /dev/md3: root@hal9000:/mnt # mount_cd9660 /dev/md3 /mnt/cd3 root@hal9000:/mnt/cd3/packages/All 1 # ls C* CHECKSUM.MD5 root@hal9000:/mnt/cd3/packages/All # ls X* XFree86-aoutlibs-3.3.3.tgz Xaw3d-1.5.tgz root@hal9000:/mnt/cd3/packages/All # ls -l X* -r--r--r-- 1 root wheel 692175 Apr 19 22:19 XFree86-aoutlibs-3.3.3.tgz -r--r--r-- 1 root wheel 331870 Apr 19 22:19 Xaw3d-1.5.tgz http://www.FreeBSD.org/cgi/query-pr.cgi?pr=11387 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 10:23:48 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from localhost.cygnus.com (to-velocet.redhat.com [216.138.202.10]) by hub.freebsd.org (Postfix) with ESMTP id 6530837B401; Sat, 16 Jun 2001 10:23:43 -0700 (PDT) (envelope-from cagney@tpgi.com.au) Received: from tpgi.com.au (localhost [127.0.0.1]) by localhost.cygnus.com (Postfix) with ESMTP id 347813C5D; Sat, 16 Jun 2001 13:23:37 -0400 (EDT) Message-ID: <3B2B9619.6010809@tpgi.com.au> Date: Sat, 16 Jun 2001 13:23:37 -0400 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD 1.5W macppc; en-US; rv:0.9.1) Gecko/20010612 X-Accept-Language: en-us MIME-Version: 1.0 To: iedowse@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/14257: error 6: panic: cannot mount root (2) - da2s1a vs da1s1a References: <200106070104.f5714i240542@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed 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 > Synopsis: error 6: panic: cannot mount root (2) - da2s1a vs da1s1a > > State-Changed-From-To: open->feedback > State-Changed-By: iedowse > State-Changed-When: Wed Jun 6 18:04:16 PDT 2001 > State-Changed-Why: > > Is this still a problem with more recent releases? > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=14257 I don't know. I've not recently done an upgrade. Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 16 10:50:53 2001 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 AE0C137B40C for ; Sat, 16 Jun 2001 10:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GHo1A17188; Sat, 16 Jun 2001 10:50:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 505C337B410 for ; Sat, 16 Jun 2001 10:42:30 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5GHgUg16598; Sat, 16 Jun 2001 10:42:30 -0700 (PDT) (envelope-from nobody) Message-Id: <200106161742.f5GHgUg16598@freefall.freebsd.org> Date: Sat, 16 Jun 2001 10:42:30 -0700 (PDT) From: Viren Shah To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/28203: NEWCARD won't recognize my cardbus controllers or my Xircom Realport 10/100+56k 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: 28203 >Category: misc >Synopsis: NEWCARD won't recognize my cardbus controllers or my Xircom Realport 10/100+56k card >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 Jun 16 10:50:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Viren Shah >Release: -current from 13 Jun 2001 >Organization: >Environment: slithytove# uname -a FreeBSD slithytove.cigital.com 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Wed Jun 13 08:55:17 EDT 2001 root@slithytove.cigital.com:/usr/src/sys/compile/LAPTOP i386 >Description: This is a Dell C800 Latitude Laptop. I'm using the stock NEWCARD kernel config after removing the following options: cpu I486_CPU options MD_ROOT options NFS_ROOT The problem is twofold: 1a. The cardbus (newcard) drivers will not allocate the resources that the cardbus controllers (TI4451) are asking for (essentially the the memory range asked for) 1b. If I edit pci_pci.c and ignore the error check routines in the pcib_alloc_resource() function, then the card is attached to dc0 (the ethernet part) but the card still is unrecognized (or so it seems from the messages received upon card insertion). Note that dc0 will not be attached if the Xircom card is in the slot on boot, but only if (re)inserted after bootup is complete. 2. The modem part of the card does not work (but this seems to be a known problem. Here is the dmesg with editing pci_pci.c Jun 13 08:36:08 Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #3: Tue Jun 5 12:57:23 EDT 2001 root@slithytove.cigital.com:/usr/src/sys/compile/LAPTOP Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 848146936 Hz CPU: Pentium III/Pentium III Xeon/Celeron (848.15-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x686 Stepping = 6 Features=0x383f9ff real memory = 268353536 (262064K bytes) config> di pcic1 config> di pcic0 config> q avail memory = 255283200 (249300K bytes) Preloaded elf kernel "kernel" at 0xc05c1000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc05c109c. Pentium Pro MTRR support enabled WARNING: Driver mistake: destroy_dev on 154/0 Using $PIR table, 10 entries at 0xc00fbc20 npx0: on motherboard npx0: INT 16 interface pcib0: at pcibus 0 on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 (no driver attached) pcib2: at device 30.0 on pci0 pci2: on pcib2 pci2: at 3.0 (no driver attached) xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0xe880-0xe8ff mem 0xf8ffdc00-0xf8ffdc7f irq 10 at device 8.0 on pci2 xl0: Ethernet address: 00:b0:d0:a7:a4:c1 miibus0: on xl0 xlphy0: <3c905C 10/100 internal PHY> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pccbb0: irq 11 at device 15.0 on pci2 pcib2: device pccbb0 requested unsupported memory range 0x44000000-0xefffffff (decoding 0xf4000000-0xfbffffff, 0xfff00000-0xfffff) pccbb0: Could not grab register memory device_probe_and_attach: pccbb0 attach returned 12 pccbb0: irq 11 at device 15.1 on pci2 pcib2: device pccbb0 requested unsupported memory range 0x44000000-0xefffffff (decoding 0xf4000000-0xfbffffff, 0xfff00000-0xfffff) pccbb0: Could not grab register memory device_probe_and_attach: pccbb0 attach returned 12 pci2: at 15.2 (no driver attached) isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0xbfa0-0xbfaf at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xdce0-0xdcff irq 11 at device 31.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered orm0: