From owner-freebsd-bugs Sun Feb 18 1:44: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 4A0BE37B491; Sun, 18 Feb 2001 01:44:41 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1I9iV726009; Sun, 18 Feb 2001 01:44:31 -0800 (PST) (envelope-from phk) Date: Sun, 18 Feb 2001 01:44:31 -0800 (PST) From: Message-Id: <200102180944.f1I9iV726009@freefall.freebsd.org> To: jesper@skriver.dk, phk@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/23986: Update of "react to ICMP unreachables" code Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update of "react to ICMP unreachables" code State-Changed-From-To: open->closed State-Changed-By: phk State-Changed-When: Sun Feb 18 01:44:12 PST 2001 State-Changed-Why: Commited closed. http://www.freebsd.org/cgi/query-pr.cgi?pr=23986 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 18 3: 0: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 C792D37B503 for ; Sun, 18 Feb 2001 03:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1IB02O33749; Sun, 18 Feb 2001 03:00:02 -0800 (PST) (envelope-from gnats) Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id 8AE3E37B491 for ; Sun, 18 Feb 2001 02:59:24 -0800 (PST) Received: from hornet.unixfreak.org (hornet [63.198.170.140]) by bazooka.unixfreak.org (Postfix) with ESMTP id 25BB83E0D for ; Sun, 18 Feb 2001 02:59:24 -0800 (PST) Received: (from dima@localhost) by hornet.unixfreak.org (8.11.1/8.11.1) id f1IAxN195336; Sun, 18 Feb 2001 02:59:23 -0800 (PST) (envelope-from dima) Message-Id: <200102181059.f1IAxN195336@hornet.unixfreak.org> Date: Sun, 18 Feb 2001 02:59:23 -0800 (PST) From: dima@unixfreak.org Reply-To: dima@unixfreak.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/25187: [PATCH] pw(8) seg faults; man page doesn't document lock feature Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25187 >Category: bin >Synopsis: [PATCH] pw(8) seg faults; man page doesn't document lock feature >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 18 03:00:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Dima Dorfman >Release: FreeBSD 4.2-20010102-STABLE i386 >Organization: Private >Environment: pw(8) since October 1999. Tested on 3.5-STABLE, 4.2-STABLE, and 5.0-CURRENT (about a month old). Patch below applies to 4-STABLE and 5-CURRENT. >Description: When the user locking feature was added to pw(8), the help text in the program and the manual page were not ammended. The former problem causes a segmentation fault due to an out-of-range array index when trying to do `pw (un)lock help`. The latter, combined with the former, makes it unnecessarily difficult to figure out what lock and unlock do. >How-To-Repeat: dima@hornet% /usr/sbin/pw lock help Segmentation fault (core dumped) dima@hornet% /usr/sbin/pw unlock help Segmentation fault (core dumped) >Fix: The following patch, - documents the 'lock' and 'unlock' commands in the pw.8 manual page, - adds help text to pw.c which prevents the segmentation fault, and - mentions, in the built-in help, that the '-q' option is accepted for the 'usernext' and 'groupnext' commands (not entirely relevant to this problem). Index: pw.8 =================================================================== RCS file: /st/src/FreeBSD/src/usr.sbin/pw/pw.8,v retrieving revision 1.21 diff -u -r1.21 pw.8 --- pw.8 2001/02/01 16:43:57 1.21 +++ pw.8 2001/02/13 23:50:32 @@ -169,6 +169,18 @@ .Ar groupnext .Op Fl C Ar config .Op Fl q +.Nm +.Op Fl V Ar etcdir +.Ar lock +.Op name|uid +.Op Fl C Ar config +.Op Fl q +.Nm +.Op Fl V Ar etcdir +.Ar unlock +.Op name|uid +.Op Fl C Ar config +.Op Fl q .Sh DESCRIPTION .Nm Pw is a command-line based editor for the system @@ -758,6 +770,26 @@ The command .Ar groupnext returns the next available group id on standard output. +.Sh USER LOCKING +.Nm Pw +supports a simple password locking mechanism for users; it works by +prepending the string +.Ql *LOCKED* +to the beginning of the password field in +.Pa master.passwd +to prevent successful authentication. +.Pp +The +.Ar lock +and +.Ar unlock +commands take a user name or uid of the account to lock or unlock, +respectively. The +.Ql Fl V , +.Ql Fl C , +and +.Ql Fl q +options as described above are accepted by these commands. .Sh DIAGNOSTICS .Nm Pw returns EXIT_SUCCESS on successful operation, otherwise Index: pw.c =================================================================== RCS file: /st/src/FreeBSD/src/usr.sbin/pw/pw.c,v retrieving revision 1.23 diff -u -r1.23 pw.c --- pw.c 2000/12/29 18:04:49 1.23 +++ pw.c 2001/02/13 23:16:03 @@ -370,6 +370,15 @@ "usage: pw usernext [switches]\n" "\t-V etcdir alternate /etc location\n" "\t-C config configuration file\n" + "\t-q quiet operation\n", + "usage pw: lock [switches]\n" + "\t-V etcdir alternate /etc locations\n" + "\t-C config configuration file\n" + "\t-q quiet operation\n", + "usage pw: unlock [switches]\n" + "\t-V etcdir alternate /etc locations\n" + "\t-C config configuration file\n" + "\t-q quiet operation\n" }, { "usage: pw groupadd [group|gid] [switches]\n" @@ -409,6 +418,7 @@ "usage: pw groupnext [switches]\n" "\t-V etcdir alternate /etc location\n" "\t-C config configuration file\n" + "\t-q quiet operation\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 Sun Feb 18 10: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 E948337B401 for ; Sun, 18 Feb 2001 10:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1IIA2Q74505; Sun, 18 Feb 2001 10:10:02 -0800 (PST) (envelope-from gnats) Date: Sun, 18 Feb 2001 10:10:02 -0800 (PST) Message-Id: <200102181810.f1IIA2Q74505@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Rolf Grossmann Subject: Re: misc/19994: sscanf() fails on 64-bit operations Reply-To: Rolf Grossmann Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/19994; it has been noted by GNATS. From: Rolf Grossmann To: freebsd-gnats-submit@FreeBSD.org, j_guojun@lbl.gov Cc: Subject: Re: misc/19994: sscanf() fails on 64-bit operations Date: Sun, 18 Feb 2001 19:04:05 +0100 (CET) Hi, I really think we should support %lld with *scanf. After all, we support it with *printf. It bit me when trying to compile the latest ORBit (0.5.7). Here's a patch that does the trick. Bye, Rolf Index: stdio/vfscanf.c =================================================================== RCS file: /home/ncvs/src/lib/libc/stdio/vfscanf.c,v retrieving revision 1.14 diff -c -r1.14 vfscanf.c *** stdio/vfscanf.c 1999/08/28 00:01:20 1.14 --- stdio/vfscanf.c 2001/02/18 18:03:04 *************** *** 165,171 **** flags |= SUPPRESS; goto again; case 'l': ! flags |= LONG; goto again; case 'q': flags |= QUAD; --- 165,174 ---- flags |= SUPPRESS; goto again; case 'l': ! if (flags & LONG) ! flags |= QUAD; ! else ! flags |= LONG; goto again; case 'q': flags |= QUAD; *************** *** 265,276 **** nconversions++; if (flags & SUPPRESS) /* ??? */ continue; ! if (flags & SHORT) ! *va_arg(ap, short *) = nread; else if (flags & LONG) *va_arg(ap, long *) = nread; ! else if (flags & QUAD) ! *va_arg(ap, quad_t *) = nread; else *va_arg(ap, int *) = nread; continue; --- 268,279 ---- nconversions++; if (flags & SUPPRESS) /* ??? */ continue; ! if (flags & QUAD) ! *va_arg(ap, quad_t *) = nread; else if (flags & LONG) *va_arg(ap, long *) = nread; ! else if (flags & SHORT) ! *va_arg(ap, short *) = nread; else *va_arg(ap, int *) = nread; continue; *************** *** 555,566 **** if (flags & POINTER) *va_arg(ap, void **) = (void *)(u_long)res; - else if (flags & SHORT) - *va_arg(ap, short *) = res; - else if (flags & LONG) - *va_arg(ap, long *) = res; else if (flags & QUAD) *va_arg(ap, quad_t *) = res; else *va_arg(ap, int *) = res; nassigned++; --- 558,569 ---- if (flags & POINTER) *va_arg(ap, void **) = (void *)(u_long)res; else if (flags & QUAD) *va_arg(ap, quad_t *) = res; + else if (flags & LONG) + *va_arg(ap, long *) = res; + else if (flags & SHORT) + *va_arg(ap, short *) = res; else *va_arg(ap, int *) = res; nassigned++; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 18 12:32:23 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from eagle.prod.itd.earthlink.net (eagle.prod.itd.earthlink.net [207.217.120.24]) by hub.freebsd.org (Postfix) with ESMTP id 242EE37B491; Sun, 18 Feb 2001 12:32:20 -0800 (PST) Received: from scraemondaemon.mydomain.org (1Cust61.tnt6.buffalo.ny.da.uu.net [63.10.187.61]) by eagle.prod.itd.earthlink.net (8.9.3-EL_1_3/8.9.3) with ESMTP id MAA16963; Sun, 18 Feb 2001 12:32:17 -0800 (PST) Received: (from ipthomas@localhost) by scraemondaemon.mydomain.org (8.9.3/8.9.3) id PAA00286; Sun, 18 Feb 2001 15:32:26 -0500 (EST) (envelope-from ipthomas) Date: Sun, 18 Feb 2001 15:32:26 -0500 (EST) From: Ian Patrick Thomas Message-Id: <200102182032.PAA00286@scraemondaemon.mydomain.org> To: FreeBSD-bugs@freebsd.org, grog@lemis.com, questions@freebsd.org Subject: Re: HEADS UP: Possible breakage in fetchmail package on 4.2-RELEASE CD-ROMs In-Reply-To: <20010218105517.N21615@wantadilla.lemis.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I had the line ALL : ALL : deny in /etc/hosts.allow. Fetchmail would get the mail and delete it off the server but it would never reach my account. Anyway I fixed the problem. I don't think this was the problem but someone else may benefit from my error. Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 18 12:50: 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 1B9A937B503 for ; Sun, 18 Feb 2001 12:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1IKo2m89863; Sun, 18 Feb 2001 12:50:02 -0800 (PST) (envelope-from gnats) Received: from tam.skriver.dk (tam.skriver.dk [193.162.74.6]) by hub.freebsd.org (Postfix) with ESMTP id DC5AD37B67D for ; Sun, 18 Feb 2001 12:49:03 -0800 (PST) Received: (from root@localhost) by tam.skriver.dk (8.11.2/8.11.1) id f1IKn0B00683; Sun, 18 Feb 2001 21:49:00 +0100 (CET) (envelope-from jesper) Message-Id: <200102182049.f1IKn0B00683@tam.skriver.dk> Date: Sun, 18 Feb 2001 21:49:00 +0100 (CET) From: Jesper Skriver Reply-To: Jesper Skriver To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/25195: security update to sys/netinet/in_pcb.c:in_pcbnotify Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25195 >Category: kern >Synopsis: a attacker can make ICMP messages apply to all sessions. >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 Feb 18 12:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jesper Skriver >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD tam 5.0-CURRENT FreeBSD 5.0-CURRENT #2: Sun Feb 18 21:15:41 CET 2001 root@tam:/usr/obj/usr/src/sys/TAM2 i386 >Description: In the current code we take the port numbers and address from the ICMP packet we get in, and we use 0 as a wildcard indicator - this means if a attacker sends us a ICMP packet where the attached IP header (+ 8 bytes) has the address and port numbers == 0, then we'll treat it as a wildcard, and apply the notification to all sessions. >How-To-Repeat: >Fix: Apply this fix. diff -ru sys/netinet.old/in_pcb.c sys/netinet/in_pcb.c --- sys/netinet.old/in_pcb.c Sun Feb 18 19:28:38 2001 +++ sys/netinet/in_pcb.c Sun Feb 18 21:03:13 2001 @@ -671,7 +671,8 @@ * a valid TCP sequence number for the session. */ void -in_pcbnotify(head, dst, fport_arg, laddr, lport_arg, cmd, notify, tcp_sequence, tcp_seq_check) +in_pcbnotify(head, dst, fport_arg, laddr, lport_arg, cmd, notify, tcp_sequence, + tcp_seq_check, wild_match) struct inpcbhead *head; struct sockaddr *dst; u_int fport_arg, lport_arg; @@ -680,6 +681,7 @@ void (*notify) __P((struct inpcb *, int)); u_int32_t tcp_sequence; int tcp_seq_check; + int wild_match; { register struct inpcb *inp, *oinp; struct in_addr faddr; @@ -700,9 +702,7 @@ * deliver only to that socket. */ if (PRC_IS_REDIRECT(cmd) || cmd == PRC_HOSTDEAD) { - fport = 0; - lport = 0; - laddr.s_addr = 0; + wild_match = IN_PCBNOTIFY_WILDCARD; if (cmd != PRC_HOSTDEAD) notify = in_rtchange; } @@ -715,11 +715,10 @@ continue; } #endif - if (inp->inp_faddr.s_addr != faddr.s_addr || - inp->inp_socket == 0 || - (lport && inp->inp_lport != lport) || - (laddr.s_addr && inp->inp_laddr.s_addr != laddr.s_addr) || - (fport && inp->inp_fport != fport)) { + if (inp->inp_faddr.s_addr != faddr.s_addr || inp->inp_socket == 0 || + (wild_match == IN_PCBNOTIFY_NOT_WILDCARD && + (inp->inp_lport != lport || inp->inp_laddr.s_addr != laddr.s_addr || + inp->inp_fport != fport))) { inp = LIST_NEXT(inp, inp_list); continue; } @@ -733,7 +732,6 @@ * and TCP port numbers. */ if ((tcp_seq_check == 1) && (tcp_seq_vs_sess(inp, tcp_sequence) == 0)) { - inp = LIST_NEXT(inp, inp_list); break; } oinp = inp; diff -ru sys/netinet.old/in_pcb.h sys/netinet/in_pcb.h --- sys/netinet.old/in_pcb.h Sun Feb 18 19:28:38 2001 +++ sys/netinet/in_pcb.h Sun Feb 18 20:42:57 2001 @@ -291,7 +291,9 @@ int, struct ifnet *)); void in_pcbnotify __P((struct inpcbhead *, struct sockaddr *, u_int, struct in_addr, u_int, int, void (*)(struct inpcb *, int), - u_int32_t, int)); + u_int32_t, int, int)); +#define IN_PCBNOTIFY_NOT_WILDCARD 0 +#define IN_PCBNOTIFY_WILDCARD 1 void in_pcbrehash __P((struct inpcb *)); int in_setpeeraddr __P((struct socket *so, struct sockaddr **nam)); int in_setsockaddr __P((struct socket *so, struct sockaddr **nam)); diff -ru sys/netinet.old/tcp_subr.c sys/netinet/tcp_subr.c --- sys/netinet.old/tcp_subr.c Sun Feb 18 19:28:38 2001 +++ sys/netinet/tcp_subr.c Sun Feb 18 20:46:58 2001 @@ -1033,9 +1033,11 @@ if (tcp_seq_check == 1) tcp_sequence = ntohl(th->th_seq); in_pcbnotify(&tcb, sa, th->th_dport, ip->ip_src, th->th_sport, - cmd, notify, tcp_sequence, tcp_seq_check); + cmd, notify, tcp_sequence, tcp_seq_check, + IN_PCBNOTIFY_NOT_WILDCARD); } else - in_pcbnotify(&tcb, sa, 0, zeroin_addr, 0, cmd, notify, 0, 0); + in_pcbnotify(&tcb, sa, 0, zeroin_addr, 0, cmd, notify, 0, + 0, IN_PCBNOTIFY_WILDCARD); } #ifdef INET6 diff -ru sys/netinet.old/udp_usrreq.c sys/netinet/udp_usrreq.c --- sys/netinet.old/udp_usrreq.c Sun Feb 18 19:28:38 2001 +++ sys/netinet/udp_usrreq.c Sun Feb 18 20:46:05 2001 @@ -512,9 +512,10 @@ if (ip) { uh = (struct udphdr *)((caddr_t)ip + (ip->ip_hl << 2)); in_pcbnotify(&udb, sa, uh->uh_dport, ip->ip_src, uh->uh_sport, - cmd, udp_notify, 0, 0); + cmd, udp_notify, 0, 0, IN_PCBNOTIFY_NOT_WILDCARD); } else - in_pcbnotify(&udb, sa, 0, zeroin_addr, 0, cmd, udp_notify, 0, 0); + in_pcbnotify(&udb, sa, 0, zeroin_addr, 0, cmd, udp_notify, 0, + 0, IN_PCBNOTIFY_WILDCARD); } static int >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 18 13: 0: 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 8F7E637B401 for ; Sun, 18 Feb 2001 13:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1IL03E90603; Sun, 18 Feb 2001 13:00:03 -0800 (PST) (envelope-from gnats) Date: Sun, 18 Feb 2001 13:00:03 -0800 (PST) Message-Id: <200102182100.f1IL03E90603@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: kern/25067: able to mount a pathname > 80 char. but unable to unmount it Reply-To: Edwin Groothuis Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/25067; it has been noted by GNATS. From: Edwin Groothuis To: freebsd-gnats-submit@FreeBSD.org Cc: clefevre@poboxes.com Subject: Re: kern/25067: able to mount a pathname > 80 char. but unable to unmount it Date: Sun, 18 Feb 2001 21:56:52 +0100 > >Fix: This is a small patch for it: --- /old/cd9660_vfsops.c Sun Feb 18 22:28:23 2001 +++ /usr/src/sys/isofs/cd9660/cd9660_vfsops.c Sun Feb 18 22:26:51 2001 @@ -188,6 +188,12 @@ cd9660_mount(mp, path, data, ndp, p) mode_t accessmode; struct iso_mnt *imp = 0; + /* + * Do not allow paths-names bigger than MNAMELEN characters. + */ + if (strlen(path) >= MNAMELEN) + return (ENAMETOOLONG); + if ((mp->mnt_flag & MNT_ROOTFS) != 0) { return (iso_mountroot(mp, p)); } --- /old/vfs_syscalls.c Sun Feb 18 22:28:23 2001 +++ /usr/src/sys/kern/vfs_syscalls.c Sun Feb 18 22:27:12 2001 @@ -133,6 +133,13 @@ mount1(p, uap, segflag) if (usermount == 0 && (error = suser(p))) return (error); + + /* + * Do not allow paths-names bigger than MNAMELEN characters. + */ + if (strlen(uap->path) >= MNAMELEN) + return (ENAMETOOLONG); + /* * Do not allow NFS export by non-root users. */ This works for cdrom-based and for "general" filesystems (ufs, msdos, procfs..., actually, everything handled in the kernel) As soon as you try to mount something like you gave in your example now it gives: [~] root@p6>mount /dev/vn0c /a/very_very_very_very_very_very_very_very_long_pathname_with_more_than_80_characters mount: File name too long Maximum lenght of a mount-path (for i386) is 79 characters (buffer is 80, one for the padding 0), for alpha it's 71 characters (untested, but I assume it's the same kind of idea) Edwin -- Edwin Groothuis | Interested in MUDs? Visit Fatal Dimensions: mavetju@chello.nl | http://fataldimensions.nl.eu.org/ ------------------+ telnet://fataldimensions.nl.eu.org:4000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 18 13: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 1432E37B4EC for ; Sun, 18 Feb 2001 13:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1ILe1T95263; Sun, 18 Feb 2001 13:40:01 -0800 (PST) (envelope-from gnats) Received: from postoffice.aims.com.au (advanc2.lnk.telstra.net [139.130.119.73]) by hub.freebsd.org (Postfix) with ESMTP id 8F42437B401 for ; Sun, 18 Feb 2001 13:33:52 -0800 (PST) Received: from postoffice.aims.com.au (nts-ts1.aims.private [192.168.10.2]) by postoffice.aims.com.au with ESMTP id IAA17807 for ; Mon, 19 Feb 2001 08:33:50 +1100 (EST) (envelope-from chris@aims.com.au) Received: from ntsts1 by aims.com.au with SMTP (MDaemon.v3.5.3.R) for ; Mon, 19 Feb 2001 08:33:12 +1100 Message-Id: <008c01c099f2$64cee570$020aa8c0@aims.private> Date: Mon, 19 Feb 2001 08:33:10 +1100 From: "Chris Knight" Reply-To: To: Subject: conf/25196: [PATCH] Add COMPAT4X to make.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25196 >Category: conf >Synopsis: [PATCH] Add COMPAT4X to make.conf >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 Feb 18 13:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Chris Knight >Release: FreeBSD 5.0-CURRENT i386 >Organization: AIMS Independent Computer Professionals >Environment: System: FreeBSD ait0fd01.aims.private 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Mon Feb 19 00:02:29 EST 2001 root@ait0fd01.aims.private:/usr/obj/usr/src/sys/THINKPAD i386 >Description: COMPAT4X libraries were recently added, but not reflected in /etc/defaults/make.conf. >How-To-Repeat: N/A >Fix: The following patch updates /usr/src/etc/defaults/make.conf: --- etc/defaults/make.conf.orig Mon Feb 19 07:02:24 2001 +++ etc/defaults/make.conf Mon Feb 19 07:02:41 2001 @@ -120,6 +120,7 @@ #COMPAT21= yes #COMPAT22= yes #COMPAT3X= yes +#COMPAT4X= yes # # # If you do not want additional documentation (some of which are >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 18 14: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 5B84637B401 for ; Sun, 18 Feb 2001 14:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1IMA2O99288; Sun, 18 Feb 2001 14:10:02 -0800 (PST) (envelope-from gnats) Date: Sun, 18 Feb 2001 14:10:02 -0800 (PST) Message-Id: <200102182210.f1IMA2O99288@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Philipp Mergenthaler Subject: Re: i386/23562: telnetd doesn't show message in file specified by if in gettytab Reply-To: Philipp Mergenthaler Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/23562; it has been noted by GNATS. From: Philipp Mergenthaler To: freebsd-gnats-submit@FreeBSD.org, tanes73@yahoo.com Cc: Subject: Re: i386/23562: telnetd doesn't show message in file specified by if in gettytab Date: Sun, 18 Feb 2001 23:06:25 +0100 Hi, the following patch adds the "issue file" capability to the telnetd in the crypto source tree. It is almost identical to this commit: http://www.freebsd.org/cgi/cvsweb.cgi/src/libexec/telnetd/telnetd.c#rev1.14 (This patch also initializes altlogin to NULL. Without this, there can be crashes in start_login() in sys_term.c. They only seem to occur when telnetd is run with option -debug, though.) Bye, Philipp diff -u telnetd/telnetd.8 telnetd.new/telnetd.8 --- telnetd/telnetd.8 Sun Feb 4 11:44:19 2001 +++ telnetd.new/telnetd.8 Sun Feb 18 19:26:49 2001 @@ -527,10 +527,34 @@ indicates a willingness to decrypt the data stream. .El -.Sh ENVIRONMENT +.Sh NOTES +By default +.Nm +will read the +.Em \&he , +.Em \&hn , +and +.Em \&im +capabilities from +.Pa /etc/gettytab +and use that information (if present) to determine +what to display before the login: prompt. You can +also use a System V style +.Pa /etc/issue +file by using the +.Em \&if +capability, which will override +.Em \&im . +The information specified in either +.Em \&im +or +.Em \&if +will be displayed to both console and remote logins. +.\" .Sh ENVIRONMENT .Sh FILES .Bl -tag -width /usr/ucb/bftp -compact .It Pa /etc/services +.It Pa /etc/gettytab .It Pa /etc/inittab (UNICOS systems only) .It Pa /etc/iptos @@ -541,6 +565,7 @@ .Sh "SEE ALSO" .Xr bftp 1 , .Xr login 1 , +.Xr gettytab 5 , .Xr telnet 1 (if supported) .Sh STANDARDS diff -u telnetd/telnetd.c telnetd.new/telnetd.c --- telnetd/telnetd.c Wed Feb 7 20:45:07 2001 +++ telnetd.new/telnetd.c Sun Feb 18 14:48:05 2001 @@ -60,6 +60,7 @@ #include #include +#include #include #include @@ -149,7 +150,7 @@ int debug = 0; int keepalive = 1; -char *altlogin; +char *altlogin = NULL; void doit __P((struct sockaddr *)); int terminaltypeok __P((char *)); @@ -958,6 +959,11 @@ char *HE; char *HN; char *IM; + char *IF; + char *if_buf; + int if_fd; + struct stat statbuf; + void netflush(); int nfd; @@ -1157,8 +1163,11 @@ HE = Getstr("he", &cp); HN = Getstr("hn", &cp); IM = Getstr("im", &cp); + IF = Getstr("if", &cp); if (HN && *HN) (void) strlcpy(host_name, HN, sizeof(host_name)); + if (IF && (if_fd = open(IF, O_RDONLY, 000)) != -1) + IM = 0; if (IM == 0) IM = ""; } else { @@ -1168,6 +1177,14 @@ edithost(HE, host_name); if (hostinfo && *IM) putf(IM, ptyibuf2); + else if (IF && if_fd != -1) { + fstat (if_fd, &statbuf); + if_buf = (char *) mmap (0, statbuf.st_size, PROT_READ, + 0, if_fd, 0); + putf(if_buf, ptyibuf2); + munmap (if_buf, statbuf.st_size); + close (if_fd); + } if (pcc) (void) strncat(ptyibuf2, ptyip, pcc+1); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 18 21: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 5DBF437B503 for ; Sun, 18 Feb 2001 21:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1J5A1G51759; Sun, 18 Feb 2001 21:10:01 -0800 (PST) (envelope-from gnats) Received: from proxy.convey.ru (news.convey.ru [195.182.128.2]) by hub.freebsd.org (Postfix) with ESMTP id 16AAE37B401 for ; Sun, 18 Feb 2001 21:05:19 -0800 (PST) Received: (from slw@localhost) by proxy.convey.ru (8.11.2/8.11.2) id f1J55F200476; Mon, 19 Feb 2001 08:05:15 +0300 (MSK) (envelope-from slw) Message-Id: <200102190505.f1J55F200476@proxy.convey.ru> Date: Mon, 19 Feb 2001 08:05:15 +0300 (MSK) From: slw@convey.ru Reply-To: slw@convey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/25198: fsck kernel crash Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25198 >Category: kern >Synopsis: kernel crash on fsck >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 18 21:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Slawa Olhovchenkov >Release: FreeBSD 5.0-CURRENT i386 >Organization: Convey ISP >Environment: System: FreeBSD proxy.convey.ru 5.0-CURRENT FreeBSD 5.0-CURRENT #5: Mon Feb 19 07:32:54 MSK 2001 slw@proxy.convey.ru:/usr/obj/usr/src/sys/PROXY i386 hw.atadmamodes=dma,pio >Description: fsck of partition 'f' disk ad1 caused kernel panic. fsck of this partition on 4.1-R system success and no problem. proxy# gdb -k -c /var/crash/vmcore.0 /var/crash/ bounds kernel.0 vmcore.0 proxy# gdb -k -c /var/crash/vmcore.0 /var/crash/kernel.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 3125248 initial pcb at 260540 panicstr: general protection fault panic messages: --- panic: general protection fault syncing disks... done Uptime: 2m26s dumping to dev ad0b, offset 524416 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:476 476 if (dumping++) { (kgdb) where #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:476 #1 0xc0149138 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:319 #2 0xc01494f4 in poweroff_wait (junk=0xc02396a5, howto=-918537632) at /usr/src/sys/kern/kern_shutdown.c:569 #3 0xc020c9a9 in trap_fatal (frame=0xc940ab78, eva=0) at /usr/src/sys/i386/i386/trap.c:995 #4 0xc020c2e5 in trap (frame={tf_fs = -918552552, tf_es = 16, tf_ds = 16, tf_edi = 14, tf_esi = 0, tf_ebp = -918508540, tf_isp = -918508636, tf_ebx = -918537632, tf_edx = 582, tf_ecx = -918537632, tf_eax = -918537632, tf_trapno = 9, tf_err = 32, tf_eip = -1071638838, tf_cs = 8, tf_eflags = 66118, tf_esp = 36, tf_ss = 14}) at /usr/src/sys/i386/i386/trap.c:655 #5 0xc02016ca in doreti_popl_ds () #6 0x8 in ?? () #7 0x8 in ?? () #8 0x8 in ?? () #9 0x8 in ?? () #10 0x8 in ?? () #11 0x8 in ?? () #12 0x8 in ?? () #13 0x8 in ?? () #14 0x8 in ?? () #15 0x8 in ?? () #16 0x8 in ?? () #17 0x8 in ?? () #18 0x8 in ?? () #19 0x8 in ?? () #20 0x8 in ?? () #21 0x8 in ?? () #22 0x8 in ?? () #23 0x8 in ?? () #24 0x8 in ?? () #25 0x8 in ?? () #26 0x8 in ?? () #27 0x8 in ?? () #28 0x8 in ?? () #29 0x8 in ?? () #30 0x8 in ?? () #31 0x8 in ?? () #32 0x8 in ?? () #33 0x8 in ?? () #34 0x8 in ?? () #35 0x8 in ?? () #36 0x8 in ?? () #37 0x8 in ?? () #38 0x8 in ?? () #39 0x8 in ?? () #40 0x8 in ?? () #41 0x8 in ?? () #42 0x8 in ?? () #43 0x8 in ?? () #44 0x8 in ?? () #45 0x8 in ?? () #46 0x8 in ?? () #47 0x8 in ?? () #48 0x8 in ?? () #49 0x8 in ?? () #50 0x8 in ?? () #51 0x8 in ?? () #52 0x8 in ?? () #53 0x8 in ?? () #54 0x8 in ?? () #55 0x8 in ?? () #56 0x8 in ?? () #57 0x8 in ?? () #58 0xc013e569 in idle_proc (dummy=0x0) at /usr/src/sys/kern/kern_idle.c:110 #59 0xc013e38f in fork_exit (callout=0xc013e558 , arg=0x0, frame=0xc940bfa8) at /usr/src/sys/kern/kern_fork.c:671 (kgdb) >How-To-Repeat: fsck /dev/ad1f >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 4:50: 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 622BB37B4EC for ; Mon, 19 Feb 2001 04:50:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1JCo3b20506; Mon, 19 Feb 2001 04:50:03 -0800 (PST) (envelope-from gnats) Received: from misao.kuicr.kyoto-u.ac.jp (misao.kuicr.kyoto-u.ac.jp [133.3.28.70]) by hub.freebsd.org (Postfix) with SMTP id 24A1437B65D for ; Mon, 19 Feb 2001 04:40:46 -0800 (PST) Received: (qmail 57666 invoked by uid 1000); 19 Feb 2001 12:40:43 -0000 Message-Id: <20010219124043.57665.qmail@misao.kuicr.kyoto-u.ac.jp> Date: 19 Feb 2001 12:40:43 -0000 From: amorita@meadow.scphys.kyoto-u.ac.jp Reply-To: amorita@meadow.scphys.kyoto-u.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/25201: pccard event and syscons beep duration depend on HZ Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25201 >Category: kern >Synopsis: pccard event and syscons beep duration depend on HZ >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 19 04:50:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Akio Morita >Release: FreeBSD 4.2-STABLE i386 >Organization: NSRF, ICR, Kyoto Univ. >Environment: FreeBSD sasami.jyurai 4.2-STABLE FreeBSD 4.2-STABLE #0: Sat Feb 17 23:26:18 JST 2001 amorita@sasami.jyurai:/usr/SRC/src/sys/compile/SASAMI i386 >Description: The beep duration of pccard event and syscons is changed on the kernel compiled with ``options HZ=1000'' option. Checking code using sysbeep, I found hz depend coding in sys/pccard/pccard_beep.c, sys/i386/isa/pcvt/pcvt_kbd.c, sys/dev/syscons/syscons.h, sys/pc98/pc98/sc_machdep.h. These four codes have hard coded duration of sysbeep function, but the unit of sysbeep's duration argument is 1/hz second. Thus, the duration scaling of hz is needed. Furthermore, sc_bell's duration is loaded from escape sequence in sys/dev/syscons/scterm-sc.c, sys/pc98/pc98/scterm-sck.c. From kbdcontrol manual and usr.sbin/kbdcontrol/kbdcontrol.c coding, the unit of duration value in escape sequence is 10msec. Thus hz scaling is needed in the case hz != 100. The codes calling timeout with hard coded ticks would cause the same problem. >How-To-Repeat: Add ``options HZ=1000'' and install new kernel. Hear pccard beep/syscons beep. >Fix: o sys/pccard/pccard_beep.c Add hz scaling code to pccard_beep_sub and pccard_beep_start. o sys/i386/isa/pcvt/pcvt_kbd.c Add hz scaling to PLING and PLONG macros. o sys/dev/syscons/syscons.h, sys/pc98/pc98/sc_machdep.h Add hz scaling to BELL_DURATION macro. o sys/dev/syscons/scterm-sc.c, sys/pc98/pc98/scterm-sck.c Add hz scaling code to ``set bell pitch and duration'' escape sequence. ---- Index: sys/pc98/pc98/sc_machdep.h =================================================================== RCS file: /CVSrepository/FreeBSD/src/sys/pc98/pc98/sc_machdep.h,v retrieving revision 1.4 diff -d -u -r1.4 sc_machdep.h --- sys/pc98/pc98/sc_machdep.h 2000/01/20 15:16:26 1.4 +++ sys/pc98/pc98/sc_machdep.h 2001/02/18 09:19:49 @@ -44,7 +44,7 @@ #define KANJI 1 -#define BELL_DURATION 5 +#define BELL_DURATION ((5 * hz + 99) / 100) #define BELL_PITCH_8M 1339 #define BELL_PITCH_5M 1678 Index: sys/pc98/pc98/scterm-sck.c =================================================================== RCS file: /CVSrepository/FreeBSD/src/sys/pc98/pc98/scterm-sck.c,v retrieving revision 1.2.2.5 diff -d -u -r1.2.2.5 scterm-sck.c --- sys/pc98/pc98/scterm-sck.c 2000/07/30 08:12:41 1.2.2.5 +++ sys/pc98/pc98/scterm-sck.c 2001/02/18 09:19:49 @@ -628,7 +628,7 @@ case 'B': /* set bell pitch and duration */ if (tcp->num_param == 2) { scp->bell_pitch = tcp->param[0]; - scp->bell_duration = tcp->param[1]; + scp->bell_duration = (tcp->param[1] * hz + 99) / 100; } break; Index: sys/dev/syscons/scterm-sc.c =================================================================== RCS file: /CVSrepository/FreeBSD/src/sys/dev/syscons/scterm-sc.c,v retrieving revision 1.4.2.7 diff -d -u -r1.4.2.7 scterm-sc.c --- sys/dev/syscons/scterm-sc.c 2000/07/27 20:31:14 1.4.2.7 +++ sys/dev/syscons/scterm-sc.c 2001/02/18 09:19:49 @@ -545,7 +545,7 @@ case 'B': /* set bell pitch and duration */ if (tcp->num_param == 2) { scp->bell_pitch = tcp->param[0]; - scp->bell_duration = tcp->param[1]; + scp->bell_duration = (tcp->param[1] * hz + 99) / 100; } break; Index: sys/dev/syscons/syscons.h =================================================================== RCS file: /CVSrepository/FreeBSD/src/sys/dev/syscons/syscons.h,v retrieving revision 1.60.2.1 diff -d -u -r1.60.2.1 syscons.h --- sys/dev/syscons/syscons.h 2000/04/03 13:03:32 1.60.2.1 +++ sys/dev/syscons/syscons.h 2001/02/18 09:19:49 @@ -120,7 +120,7 @@ #define PCBURST 128 #ifndef BELL_DURATION -#define BELL_DURATION 5 +#define BELL_DURATION ((5 * hz + 99) / 100) #define BELL_PITCH 800 #endif Index: sys/i386/isa/pcvt/pcvt_kbd.c =================================================================== RCS file: /CVSrepository/FreeBSD/src/sys/i386/isa/pcvt/pcvt_kbd.c,v retrieving revision 1.32.2.1 diff -d -u -r1.32.2.1 pcvt_kbd.c --- sys/i386/isa/pcvt/pcvt_kbd.c 2000/10/29 16:59:06 1.32.2.1 +++ sys/i386/isa/pcvt/pcvt_kbd.c 2001/02/18 09:19:49 @@ -1342,8 +1342,8 @@ * pulates the spl mask - jw */ -# define PLING sysbeep(PCVT_SYSBEEPF / 1500, 2) -# define PLONG sysbeep(PCVT_SYSBEEPF / 1200, 2) +# define PLING sysbeep(PCVT_SYSBEEPF / 1500, (2 * hz + 99) / 100) +# define PLONG sysbeep(PCVT_SYSBEEPF / 1200, (2 * hz + 99) / 100) if(mousedef.stickybuttons) { Index: sys/pccard/pccard_beep.c =================================================================== RCS file: /CVSrepository/FreeBSD/src/sys/pccard/pccard_beep.c,v retrieving revision 1.3.2.1 diff -d -u -r1.3.2.1 pccard_beep.c --- sys/pccard/pccard_beep.c 2000/12/02 12:49:34 1.3.2.1 +++ sys/pccard/pccard_beep.c 2001/02/18 09:19:49 @@ -74,8 +74,8 @@ melody = (struct tone *)arg; if (melody->pitch != NULL) { - sysbeep(melody->pitch, melody->duration); - timeout(pccard_beep_sub, ++melody, melody->duration); + sysbeep(melody->pitch, (melody->duration * hz + 99) / 100); + timeout(pccard_beep_sub, ++melody, (melody->duration * hz + 99) / 100); } else allow_beep = BEEP_ON; } @@ -88,8 +88,8 @@ if (allow_beep == BEEP_ON && melody->pitch != NULL) { allow_beep = BEEP_OFF; - sysbeep(melody->pitch, melody->duration); - timeout(pccard_beep_sub, ++melody, melody->duration); + sysbeep(melody->pitch, (melody->duration * hz + 99) / 100); + timeout(pccard_beep_sub, ++melody, (melody->duration * hz + 99) / 100); } } ---- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 5:51:28 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from pgt.mpt.gov.brail.pgt.mpt.gov.br (mail.pgt.mpt.gov.br [200.236.82.229]) by hub.freebsd.org (Postfix) with ESMTP id 8BD5E37B401 for ; Mon, 19 Feb 2001 05:51:24 -0800 (PST) Received: from 516a (516a.pgt.mpt.gov.br [200.236.82.6]) by pgt.mpt.gov.brail.pgt.mpt.gov.br (8.9.3/8.9.3) with SMTP id KAA07194 for ; Mon, 19 Feb 2001 10:50:54 -0300 (EST) (envelope-from jaeckel@pgt.mpt.gov.br) Message-ID: <000901c09a7b$38085920$0652ecc8@pgt.mpt.gov.br> From: "Alex" To: Subject: Problem with device rst0 - FreeBSD 4.2 Date: Mon, 19 Feb 2001 10:52:37 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Good morning! I installed FreeBSD 4.0 in a ALPHA( DECstation 5000/240).The device rst0 was working properlly. When I installed FreeBSD 4.2 and tried to use the device rst0 I got the following messages: /kernel: (sa0:isp0:0:5:0): isp0: watchdog timeout (f,0) /kernel: (sa0:isp0:0:5:0): unable to rewind after test read /kernel: isp0: cannot find handle 0xa in xflist I tried MAKEDEV but the device still didn't work. I installed again FreeBSD 4.0 and the device returned to work. The problem is in the kernel of FreeBSD 4.2. What should I do to solve the problem? Thanks for your attention! Alex Jaeckel. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 9:19:15 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 76F1E37B401 for ; Mon, 19 Feb 2001 09:19:11 -0800 (PST) Received: from zeppo.feral.com (IDENT:mjacob@zeppo [192.67.166.71]) by feral.com (8.9.3/8.9.3) with ESMTP id JAA06418; Mon, 19 Feb 2001 09:18:30 -0800 Date: Mon, 19 Feb 2001 09:18:30 -0800 (PST) From: Matthew Jacob Reply-To: mjacob@feral.com To: Alex Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: Problem with device rst0 - FreeBSD 4.2 In-Reply-To: <000901c09a7b$38085920$0652ecc8@pgt.mpt.gov.br> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Good morning! > I installed FreeBSD 4.0 in a ALPHA( DECstation 5000/240).The device rst0 was > working properlly. > When I installed FreeBSD 4.2 and tried to use the device rst0 I got the > following messages: > > /kernel: (sa0:isp0:0:5:0): isp0: watchdog timeout (f,0) > /kernel: (sa0:isp0:0:5:0): unable to rewind after test read > /kernel: isp0: cannot find handle 0xa in xflist > > I tried MAKEDEV but the device still didn't work. > > I installed again FreeBSD 4.0 and the device returned to work. > > The problem is in the kernel of FreeBSD 4.2. Yes. > What should I do to solve the problem? Get the latest -stable kernel past 4.2 and see if this works better. > > Thanks for your attention! > > Alex Jaeckel. > > > > > > 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 Mon Feb 19 9: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 670D037B4EC for ; Mon, 19 Feb 2001 09:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1JHo1d52534; Mon, 19 Feb 2001 09:50:01 -0800 (PST) (envelope-from gnats) Received: from sonic.icon.bg (ll.icon.bg [62.176.80.180]) by hub.freebsd.org (Postfix) with ESMTP id E478B37B401 for ; Mon, 19 Feb 2001 09:47:50 -0800 (PST) Received: (from root@localhost) by sonic.icon.bg (8.11.2/8.11.2) id f1JHmtY07839; Mon, 19 Feb 2001 19:48:55 +0200 (EET) (envelope-from v0rbiz) Message-Id: <200102191748.f1JHmtY07839@sonic.icon.bg> Date: Mon, 19 Feb 2001 19:48:55 +0200 (EET) From: v0rbiz@icon.bg Reply-To: v0rbiz@icon.bg To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/25204: another isa/pnp modem for sio.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25204 >Category: kern >Synopsis: another isa/pnp modem for sio.c >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 19 09:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Victor Ivanov >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: PC (i386+) with EISA slots... >Description: The device is Rockwell V.34 Plug & Play Modem (ISA). It is not detected by the system (sio.c). The device id is not present in the sio_ids[] list. >How-To-Repeat: Insert the modem in the EISA slot :) >Fix: Here is the diff -c: *** src/sys/isa/sio.c.orig Mon Feb 19 19:21:55 2001 --- src/sys/isa/sio.c Mon Feb 19 19:26:05 2001 *************** *** 673,678 **** --- 673,679 ---- {0x1200c31e, NULL}, /* GVC0012 - VF1128HV-R9 (win modem?) */ {0x0303c31e, NULL}, /* GVC0303 - MaxTech 33.6 PnP D/F/V */ {0x0505c31e, NULL}, /* GVC0505 - GVC 56k Faxmodem */ + {0x0116c31e, NULL}, /* GVC1601 - Rockwell V.34 Plug & Play Modem */ {0x0050c31e, NULL}, /* GVC5000 - some GVC modem */ {0x3800f91e, NULL}, /* GWY0038 - Telepath with v.90 */ {0x9062f91e, NULL}, /* GWY6290 - Telepath with x2 Technology */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 11:22: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 A6A9B37B491; Mon, 19 Feb 2001 11:22:32 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1JJMWT68545; Mon, 19 Feb 2001 11:22:32 -0800 (PST) (envelope-from peter) Date: Mon, 19 Feb 2001 11:22:32 -0800 (PST) From: Message-Id: <200102191922.f1JJMWT68545@freefall.freebsd.org> To: peter@FreeBSD.org, shimon@simon-shapiro.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/7038: Kernel panic caused by DPT driver (Got a NULL CCB from pop_free()) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Kernel panic caused by DPT driver (Got a NULL CCB from pop_free()) Responsible-Changed-From-To: shimon@simon-shapiro.org->freebsd-bugs Responsible-Changed-By: peter Responsible-Changed-When: Mon Feb 19 11:22:15 PST 2001 Responsible-Changed-Why: Mail bounced http://www.freebsd.org/cgi/query-pr.cgi?pr=7038 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 11:27:36 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 0D62637B4EC for ; Mon, 19 Feb 2001 11:24:57 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1JJOhd69084 for freebsd-bugs@freebsd.org; Mon, 19 Feb 2001 11:24:43 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 19 Feb 2001 11:24:43 -0800 (PST) Message-Id: <200102191924.f1JJOhd69084@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 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/03/08] kern/2923 panic: vm_fault: fault on nofault entry, o [1997/12/21] kern/5355 bp Fix for NULLFS problems o [1998/02/03] kern/5641 jasone running processes at the IDLE priority (i o [1998/02/10] kern/5703 CDROM Media Error triggers complete syste s [1998/05/13] kern/6630 julian [PATCH] Fix for Cyrix I8254 bug o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/08/15] kern/7622 Kernel panic with Fatal trap 18. o [1998/09/28] kern/8074 se CAM rescan operation fatal f [1998/10/06] i386/8179 Install failure with motherbord using SIS a [1998/11/08] ports/8609 nectar eklogin service (kerberos klogind) fails o [1998/11/24] bin/8829 bug in innetgr (was: Fix port: security/s o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 f [1998/12/09] kern/9036 Boot 3.0-Release hangs with BT-445S after o [1999/02/19] kern/10166 panic during heavy sio i/o;no coproc; ves o [1999/02/20] kern/10172 [panics] Kernel (esp kern/sys_pipe.c) die s [1999/02/26] kern/10281 Crash of 3.1-STABLE system due to scsi er o [1999/03/01] kern/10332 gibbs System freezes during certain SCSI activi o [1999/03/07] misc/10473 Incorrect aout compat libraries in XF8633 o [1999/03/09] kern/10507 Process hangs in state VM pgd o [1999/03/09] misc/10509 Cvs can hang system when used with pserve o [1999/03/09] kern/10520 bp can't exec files under nullfs o [1999/03/11] kern/10542 page fault while in kernel mode, not kern o [1999/03/11] kern/10545 When a fork/exec stress test is run, the o [1999/03/20] i386/10690 Installation freezes after device selecti f [1999/03/20] kern/10701 ppbus printing problems o [1999/03/23] bin/10744 call to login() from aout/libutil.so.2.2 o [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 f [1999/04/13] kern/11112 Amanda on FreeBSD can wipe the _next_ tap f [1999/04/17] kern/11196 kernel mode page fault o [1999/04/20] kern/11238 Synchronous PPP not functional in leased o [1999/04/20] kern/11241 Install fails after SCSI probe o [1999/04/27] kern/11351 system reboot for error with popper and d o [1999/05/12] kern/11680 server freezes, all processes stuck in "i o [1999/05/13] i386/11681 gibbs Adaptec 2940 UW SCSI Controller BIOS 1.34 o [1999/05/14] kern/11707 ncr isn't recognized in 3.1-19990512-STAB 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 f [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 o [1999/06/09] kern/12106 error 6: panic: cannot mount root o [1999/06/10] kern/12127 persistent crash on idle SMP system o [1999/06/16] kern/12248 CRON in malloc(): warning: pointer to wr o [1999/06/18] i386/12286 Segmentation violation when invoking JNI 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 f [1999/07/20] misc/12720 gdbm (And possibly other libraries in /us o [1999/07/21] kern/12730 poll() causes indeterministic program han f [1999/07/21] misc/12743 Cannot boot the 3.2 floppies 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 a [1999/08/20] kern/13270 dillon NFS hangs if written through self-mount o [1999/08/30] misc/13474 Maximum Number of IPs Permitted in the .. 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/22] i386/13892 Kern.flp does not boot on Compaq Presario 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/24] kern/13944 ATAPI cd-rom not boot to install, nor de o [1999/09/27] misc/13995 Full duplex mode doesn't work right with o [1999/09/28] kern/14028 ATAPI cd-rom not boot to install and can' o [1999/09/28] i386/14030 imp aha0 probe fails 3.3.0-RELEASE install wi o [1999/10/05] kern/14141 3.3-RELEASE crashing often o [1999/10/06] kern/14162 sudden reboot problem ( maybe kernel pani o [1999/10/08] misc/14204 error 6: panic: cannot mout root(2) o [1999/10/10] i386/14256 System doesn't boot under FreeBSD 3.2 o [1999/10/14] kern/14322 mount respects permissions of underlying o [1999/10/15] kern/14347 kdump & truss won't compile because addit f [1999/10/24] i386/14492 FreeBSD won't install/work with an Asus S o [1999/10/25] kern/14510 kernel panic while pressing panic o [2000/02/09] i386/16620 mdodd 4.0-20000208-CURRENT fails to boot on ASU 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 o [2000/02/28] kern/17067 consistent "make -k buildworld" crash wit o [2000/03/03] kern/17152 alfred kernel panic:aio_write o [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 f [2000/03/15] i386/17398 imp Install failure of 4.0-Release via ftp an 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/23] kern/17565 4.0-RELEASE install does not access IDE d 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/03] kern/17776 RAID5 with crashed disk corrupts filesyst 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/05] kern/17821 Wavelan driver not working in 4.0 o [2000/04/08] kern/17870 n_hibma 4.0-release consistently crashes a couple o [2000/04/09] kern/17881 4.0-RELEASE kern.flp boot crashes upon pr f [2000/04/13] kern/17971 cannot boot 4.0 floppies to install o [2000/04/18] kern/18074 Fatal trap 12: page fault while in kernel o [2000/04/20] i386/18123 4.0-RELEASE crashes during boot from CD-R 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/25] misc/18205 Install via CD-Romm hangs o [2000/04/25] i386/18207 3.2-RELEASE to 4.0-RELEASE FTP upgrade fa 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 o [2000/05/17] kern/18623 out of swap s [2000/05/17] misc/18641 paul FreeBSD V4.0 crashes when using ifconfig o [2000/05/18] i386/18655 4.0-RELEASE Fails to install o [2000/05/18] kern/18665 Unpredictable crashes. Page fault while i o [2000/05/21] kern/18712 Kernel panic o [2000/05/22] kern/18754 grog Vinum: reviving RAID5 volume corrupts dat 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/25] alpha/18808 alpha Unalligned trap handler fails on quadword 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 f [2000/06/03] kern/18982 make buildworld freezes my machine with a o [2000/06/04] kern/19000 Automatic Reebot, Fatal o [2000/06/05] kern/19022 pcm driver causes immediate panic on use o [2000/06/05] i386/19027 FTP install operation does not find XFree f [2000/06/09] kern/19162 asmodai 4.0-STABLE panics w/ softupdates and quot o [2000/06/10] misc/19175 mounting NFS can be done multiple times C 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/17] kern/19353 Cannot install 4.0 o [2000/06/23] kern/19480 System hang when use current (GENERIC) ke o [2000/06/28] kern/19572 alfred executing command cd ../cdrom after mount 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 f [2000/07/03] kern/19661 imp hang or reboot when pcmcia ethernet adapt 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 f [2000/07/25] kern/20175 Unknown Ethernet Card o [2000/07/26] misc/20205 FreeBSD 4 will not install on a Compaq Pr o [2000/07/27] kern/20227 jlemon 4.1-RC: UDP checksum problem f [2000/07/29] kern/20296 sheldonh matcd driver is a) not in GENERIC and b) 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 f [2000/08/22] kern/20776 rnordier Cannot boot the install floppy for versio o [2000/08/22] i386/20791 gibbs Adaptec 2940UW bootup errors in FSD 4.0/3 o [2000/08/28] kern/20895 groudier sym driver doesn't work for SYM53C895A o [2000/09/02] i386/20994 /etc/fstab or kernel not correctly instal f [2000/09/02] kern/21009 /etc/security make the system hangup 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/05] i386/21071 gibbs SCSI Controller Not Detected When Attempt o [2000/09/06] kern/21079 ume IPSEC, kernel ARPs for tunnel endpoint in 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] misc/21269 Install does not see disk on Advansys car 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/09/26] bin/21566 passwd does not work after updating from o [2000/09/27] kern/21592 insufficient PAP authentication in isp pr o [2000/10/01] i386/21677 Instalation crashed when shell started o [2000/10/02] i386/21717 DOS while opening /dev/audio o [2000/10/04] kern/21757 cp from nullfs-mounted filesystem aborts 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/08] kern/21831 gibbs kernel trap 12 crash in 4.1.1-STABLE o [2000/10/08] kern/21845 phk crash, while tring to send udp via half-b o [2000/10/09] misc/21861 PostgreSQL on jailed enviroment fails o [2000/10/11] kern/21915 gibbs Machine dies sig 12 in ahc driver (Freebs f [2000/10/12] kern/21929 lpd cause system crash o [2000/10/12] kern/21932 gibbs 4.1.1-RELEASE : trap 12 during install f [2000/10/18] kern/22086 grog DMA errors during intensive disk activity o [2000/10/23] i386/22236 mouse cursor bug under text console mode o [2000/10/23] i386/22240 unstable UDMA on Iwill VD133PL v1.6 (Apol a [2000/10/23] kern/22245 Incorrect handling of end-of-media in ata 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/16] kern/22909 Vinum RAID5 degraded write not consistenc 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/21] bin/23013 Cannot buildworld in 4.2-RELEASE o [2000/11/23] kern/23061 cg kernel doesn't boot when compiled with pc 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 o [2000/11/27] i386/23145 pppoe-test-program panics the server o [2000/11/29] kern/23173 read hangs in linux emulation o [2000/12/03] ports/23257 ports Star office 5.2 has problem being install o [2000/12/04] kern/23258 panic: softdep_lock: locking against myse o [2000/12/04] kern/23281 Installation hangs on PowerEdge 2450 Per3 s [2000/12/05] bin/23300 will make assumes readdir returns '.' and '..' o [2000/12/08] kern/23379 panic: page fault o [2000/12/08] i386/23399 fbsd 4.2 locks up on my cardbus system if 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 o [2000/12/13] ports/23525 ports pgsql 7.0.3 port REMOVES data dir when tr 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/17] misc/23595 rnordier boot problem after install o [2000/12/19] ports/23646 ports Staroffice 5.2 fails to install on FreeBS o [2000/12/19] i386/23681 keyboard is not working when the laptop i a [2000/12/21] kern/23740 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 o [2001/01/01] kern/24018 4.2-STABLE, 4.0-RELEASE fatal trap 12: pa o [2001/01/02] kern/24019 Frequent panics in ep driver, 3c556 pcmci o [2001/01/03] ports/24049 ports SO5.2 fails to install on FreeBSD 4.2-REL o [2001/01/09] kern/24197 4.2-R floppies fail: "timeout waiting for o [2001/01/12] ports/24276 asami XFree86-4 port doesn't put patch-1 in the o [2001/01/14] kern/24334 random kernel panic o [2001/01/16] kern/24378 ahc broken in STABLE o [2001/01/16] ports/24395 ports Date object is not deserialized correct o [2001/01/17] kern/24418 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 ports Can't get back to X after switching to co o [2001/01/25] i386/24653 can't get working install of X under 4.2 o [2001/01/28] ports/24705 ports Bug concerning Xwrapper/XFree86-4.0.2 f [2001/01/30] kern/24740 filesystem corruption CFP1080 CAM SCSI ca o [2001/01/30] kern/24741 Reboot when using vlans on a xl card with 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/03] kern/24831 panic in net code in many places o [2001/02/05] i386/24871 Pagefaults occur at random on a 4.2-STABL o [2001/02/06] i386/24920 moused weird o [2001/02/11] kern/25006 cannot ignore arp (ifconfig -arp doesn't o [2001/02/13] kern/25062 uid0 processes get killed after getswapsp o [2001/02/14] kern/25104 file corruption with Adaptec 29160 SCSI a o [2001/02/15] i386/25123 Heavy NFS traffic over virtual interface o [2001/02/15] kern/25125 fsck kernel crash o [2001/02/15] kern/25130 kernel crash with kldload/kldunload md.ko f [2001/02/16] ports/25159 dirk too much, too soon o [2001/02/18] kern/25198 kernel crash on fsck 295 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1995/10/18] bin/786 wpaul Problem with NIS and large group maps f [1996/08/22] kern/1533 dillon Machine can be panicked by a userland pro o [1996/09/29] kern/1689 TCP extensions throttles distant connecti s [1996/10/26] bin/1892 n_hibma install(1) removes target file s [1996/11/08] gnu/1981 ypserv handles null key incorrectly f [1996/12/22] kern/2270 Hayes ESP serial card locks system as of a [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA f [1997/01/09] bin/2430 grog mountd stops on loading if subnet mask is o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/16] gnu/2749 peter cvs export using remote cvs fails - CVS/T 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 mlock+minherit+fork+munlock causes panics o [1997/03/03] kern/2858 peter FreeBSD NFS client can't mount filesystem 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/3381 peter 2.2.x kernel panic on traversing and remo 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/05/12] kern/3579 peter de driver doesn't support newer SMC 9332 o [1997/05/12] kern/3581 intermittent trap 12 in lockstatus() f [1997/05/12] kern/3582 panic: bad dir (mangled entry) in 2.2-STA s [1997/05/25] kern/3685 [PATCH] panic: fdesc attr o [1997/05/30] kern/3726 peter process hangs in 2.2-stable when working f [1997/06/03] kern/3771 dillon NFS hangs when writing to local FS re-mou f [1997/06/04] i386/3779 changing cursor to blinking block causes 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 o [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/28] kern/4186 peter nfsiod, panic, page fault in kernel mode o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/06] kern/4240 kernel fails to recognise 2nd serial port o [1997/08/10] kern/4265 Panic in dsinit when multiple FreeBSD sli 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 o [1997/08/16] kern/4312 arp table gets messed up, syslog "gateway o [1997/08/17] kern/4327 peter NFS over TCP reconnect problem 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/03] bin/4460 lpd hangs exiting (IE in ps table) o [1997/09/11] kern/4513 System lockup appears to be VM related. o [1997/09/14] i386/4533 Server with Cyclom-Y PCI card rebooted at o [1997/09/21] kern/4600 peter nfs lookups might give incorrect result o [1997/09/30] kern/4663 checkalias panic 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/11/18] kern/5085 System crash during mount command for CD o [1997/11/23] i386/5128 Adaptec 2940U Timeouts with QUANTUM disk 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/30] kern/5396 fdesc fs crashes system o [1997/12/31] i386/5401 peter de0 selects wrong media when reconnected f [1998/01/08] kern/5456 After writing more than 100MB to SCSI Exa 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/01] kern/5618 kernel memory leak in routetbl. o [1998/02/04] kern/5643 NCR 810/815 do not handle rewind correctl o [1998/02/19] kern/5794 Kernel Panic o [1998/02/28] kern/5877 sb_cc counts control data as well as data f [1998/03/11] kern/5975 can't boot freebsd: fatal trap12: page fa 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 f [1998/03/22] kern/6103 panic: ffs_valloc: dup alloc o [1998/03/28] bin/6162 kinit does not default to the current use f [1998/04/03] kern/6203 kernel panics with "blkfree: freeing free f [1998/04/03] conf/6205 NFS/NIS freak out o [1998/04/04] kern/6212 dillon Two bugs with MFS filesystems fixed, one 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 o [1998/05/03] kern/6506 system will not soft reboot a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty o [1998/05/12] kern/6603 ncr driver hangs under high load f [1998/05/17] kern/6670 PANIC on boot with FreeBSD 3.0 (same comp o [1998/05/25] kern/6751 audio cd play suddenly stops. o [1998/05/25] kern/6755 peter Tulip (if_de) driver buggy in -current o [1998/05/27] misc/6773 kris [PATCH] tempnam.c security problems s [1998/06/02] bin/6830 will make(1) exhibits confusing and non-standa o [1998/06/05] kern/6865 OS crashes when exiting shell with suspen o [1998/06/10] kern/6908 kernel crash from user land 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] kern/7038 Kernel panic caused by DPT driver (Got a s [1998/06/24] bin/7043 the fstat command doesn't know ISOFS, MSD 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 s [1998/07/10] kern/7237 NCR SCSI driver ch0 troubles 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 f [1998/08/10] kern/7557 dillon -current machine running Diablo, lockup, s [1998/08/10] kern/7561 CDROM (wcd) is prone to lock up system/pr 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/7764 ps(1) hangs in pfslck/lockrd - All subseq 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/7872 dwmalone [PATCH] mountd(8) can apply flags to wron o [1998/09/09] bin/7876 gethostbyname flags temporary failure as o [1998/09/10] kern/7880 mount_cd9660 incorrect on multitrack CD-R 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/16] gnu/7951 The gnu readline library core dumps when 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 f [1998/10/05] kern/8158 sio driver breaks in 2.2.7R in kernels wi 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/13] kern/8312 Under heavy load, the system panics with o [1998/10/14] bin/8322 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/10/31] bin/8518 freopen() in append mode followed by ftel 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 f [1998/11/05] kern/8580 dillon Hanging NFS pagein in nfs_bio.c (2.2.7, w o [1998/11/08] kern/8607 maxprocsperuid setting causes sybase/linu o [1998/11/08] ports/8622 markm exmh2 has problems with some date formats 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/14] bin/8685 sending a SYST by ftp client closes conne 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/06] kern/8981 this also fixes X crashes and sio silo ov o [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 peter [patch] squid does not join a multicast g o [1998/12/31] bin/9252 [patch] login program "login" don't set K o [1999/01/06] kern/9355 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 == o [1999/01/09] kern/9407 "make kernel" yields buggy kernel in cera o [1999/01/09] kern/9408 parameter reversed to a pci_cfgwrite in p 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 f [1999/01/14] kern/9487 pcm: mixer's synth and cd devices are swa 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 o [1999/01/17] kern/9548 UNION fs corrupts data and has undefined o [1999/01/21] kern/9599 SMP hang after reseting CPU 1 f [1999/01/25] kern/9673 ISO CD-ROM Problem f [1999/01/28] i386/9759 Tar process hangs on buggy tapes o [1999/02/01] kern/9862 system crashes writing to msdos jaz disk o [1999/02/02] kern/9883 MGET()(and variants) return NULL with M_W 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/06] kern/9935 vmstat reprots bad AVM values 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 f [1999/02/09] bin/9982 ume inet_addr(3) should be return 32bit uint. 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] misc/10302 jkh installer 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/08] kern/10492 broadcast IP address can be set on interf 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 f [1999/03/16] i386/10626 RTC BIOS diagnostic error on install 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 o [1999/03/24] bin/10774 sio0 doesn't work well, i belive the prob o [1999/03/24] kern/10778 "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/03/30] bin/10880 Profiler libraries missing o [1999/04/01] bin/10912 /bin/sh: Fix to prevent infinite loops on o [1999/04/03] i386/10935 PCI cards detected twice o [1999/04/05] i386/10969 kernel fails to compile with ccs0 f [1999/04/06] i386/10983 lnc NIC driver doesn't work 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/11] kern/11084 3.1-R kernel trap 12 with interrupts o [1999/04/13] bin/11119 NFS quotas fail to report if alternate fi o [1999/04/18] kern/11208 Complete system hang/freeze. No PANIC me o [1999/04/21] kern/11255 Fore System ATM Card not working o [1999/04/21] kern/11266 frequent crashes with "Page fault, fatal o [1999/04/26] conf/11336 Broken data sent to printer through devic o [1999/04/28] kern/11366 Filesystem can cause hang/crash in certai 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 o [1999/04/29] i386/11395 ghostscript5.50 does not print properly, o [1999/04/30] kern/11405 pwd_mkdb with no tmp space leads to kerne o [1999/05/02] i386/11454 mkdir() and chdir() doesn't check argumen o [1999/05/03] kern/11462 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 msmith CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] kern/11513 cannot mount CD-ROM: Device not configure 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 f [1999/05/12] kern/11679 httpd and perl5 processes stuck in "nocha o [1999/05/13] kern/11686 APM: Always "Resume failure" from suspend o [1999/05/13] kern/11692 3.1-stable deadlock o [1999/05/13] kern/11697 gibbs Disk failure hangs system f [1999/05/18] kern/11766 darrenr Can not traceroute through ipnat. 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 f [1999/05/20] misc/11800 gibbs Problem with scsi AHA2940 and sony SDT-20 o [1999/05/20] i386/11801 Remounting CD on IDE CDROM after eject fa o [1999/05/21] kern/11821 /dev/fd0a hangs on large files, including o [1999/05/23] kern/11867 Sound driver loses interrupts, no sound o [1999/05/28] kern/11911 3.1-R : writing file larger than floppy s o [1999/05/28] kern/11915 access system call says file is readable 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. f [1999/06/02] i386/11991 fdisk does not assign slices to unused pa o [1999/06/02] bin/11992 /usr/src/sbin/mountd/mountd.c has '#ifdef o [1999/06/04] kern/12022 phk System clock timewarps o [1999/06/06] bin/12054 explicit -ltermcap after -lncurses causes f [1999/06/06] kern/12062 sa tape driver with Cipher 60M SCSI QIC t o [1999/06/08] bin/12091 syslog packets from a remote machine are o [1999/06/09] kern/12104 Certain cdcontrol commands don't work pro o [1999/06/10] bin/12120 named crashes. 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] bin/12242 segmentation fault running /usr/bin/fmt o [1999/06/16] kern/12247 userlevel program let kernel hang f [1999/06/17] kern/12262 pcm sound driver with SB16pnp does not ap 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/21] kern/12320 error 6: panic: cannot mount root (2) 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/25] conf/12387 CDROM boot failure on Thinpad 770X, 380ED o [1999/06/25] kern/12394 3.2-RELEASE, rl0 ethernet interface freez o [1999/06/30] kern/12464 bad reference in struct vm_zone o [1999/07/01] kern/12484 [PATCH] bpf_filter() broken f [1999/07/06] i386/12529 Linksys ether16 NE2000 compat. won't conf 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/14] misc/12640 Can use 2nd CD-ROM for fixit mode. 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/28] misc/12856 installworld over nfs broken (3.2S) o [1999/07/29] kern/12869 panic: softdep_flushfiles: looping o [1999/07/30] kern/12884 Hot to panic FreeBSD-3.2-Release 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 f [1999/08/06] kern/12996 ifconf in sys/net/if.c returns larger buf o [1999/08/07] conf/13013 Selecting CDROM as install media doesn't o [1999/08/08] misc/13027 sysinstall has no /dev entry for wfd0s4 ( f [1999/08/10] i386/13058 Installation hangs after commit 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 o [1999/08/16] kern/13180 panic: ffs_alloccg: map corrupted o [1999/08/17] kern/13198 panic: vm_fault: fault on nofault entry o [1999/08/17] gnu/13200 The assembler chokes on very long operand o [1999/08/18] kern/13234 .../netinet/ip_input.c should include opt 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/25] kern/13382 Only 1 parallel port supported if pps ena 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 f [1999/08/29] i386/13452 changing to root device wd0s1a \n error 2 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/01] kern/13517 hang system o [1999/09/05] kern/13587 Voxware MIXER_READ ioctl corrupts memory o [1999/09/06] kern/13593 Problems with FIFO and select o [1999/09/07] kern/13612 gibbs "Timedout SCB handled by another timeout" o [1999/09/07] kern/13630 system halts after npx0 detected on 3.2 i o [1999/09/07] kern/13632 Floppy hangs system o [1999/09/08] kern/13646 Kernel Trap error when booting 3.3-RC ker f [1999/09/09] i386/13655 sysmouse, signal 10 and XF86_S3 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/12] bin/13711 root fs not properly unmounted after shut 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 f [1999/09/15] i386/13765 memory problem: compilation of emacs dies 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/18] i386/13811 ide cdrom stops recognizing audio cdroms f [1999/09/20] i386/13857 Problem with switching between processes 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/26] bin/13980 Parameter expansion pattern removal bug i 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 o [1999/09/28] kern/14033 Data acq process gets stuck in vmopar o [1999/09/30] kern/14060 3.3-STABLE on primary mail server panics o [1999/09/30] bin/14069 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/03] bin/14102 make world -DWANT_AOUT fails in lib/compa o [1999/10/04] misc/14121 resurfaced bug in rmt preventing remote d o [1999/10/04] kern/14123 lnc driver is not working o [1999/10/04] i386/14135 lpt1 nolonger exists after 3.2-RELEASE o [1999/10/05] kern/14144 bad conversions in kern_fork() o [1999/10/10] misc/14254 [Fwd: clock(3) runs backwards! (fwd)] (fw o [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 f [1999/10/14] i386/14324 wst OR atapi drivers won't work 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/15] kern/14354 grog vinum cannot compile for alpha 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] bin/14524 markm PERL 5.005_03 Config.PM on 3.2-STABLE say 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/11] ports/14826 ports security/fwtk smapd calls sendmail with w 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 o [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/15] kern/14900 3.3-RELEASE panic in pmap_pte_quick() o [1999/11/16] kern/14917 grog DMA doesn't works with ALI ALADDIN M1543/ 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/21] i386/15018 Printingproblem 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/15087 3.3-STABLE panic while starting daemons ( o [1999/11/25] kern/15089 mmap of files from 2K-block device failed f [1999/11/26] ports/15107 green Patch for FreeBSD s/key support in OpenSS o [1999/11/26] misc/15109 problem printing graphic pages o [1999/11/27] ports/15123 rse www/apache13-modssl has PREFIX problems f o [1999/11/28] conf/15150 phantom Taking encoding scheme latin1 into accoun 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/05] misc/15269 error server timeout downloading small fi o [1999/12/06] i386/15327 Unable to use ISA sound card with AD1816A o [1999/12/08] i386/15364 Flash Player 4 for Linux has no sound wit o [1999/12/11] kern/15420 3.3-RELEASE Kernel freeze 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] ports/15543 hosokawa Samba + DHCP = UNKNOWN HOST NAME o [1999/12/17] i386/15548 Intel EtherExpress Pro/10+: Only 1024 byt o [1999/12/18] kern/15554 malloc fails in OMAGIC programs o [1999/12/20] bin/15581 ftp(1) file completion does not work if s o [1999/12/21] misc/15610 3.4-RELEASE installation hang on aic0 SCS o [1999/12/21] kern/15611 EIDE Large Disk Support, Newfs problem, F f [1999/12/22] i386/15631 3.4 won't install with IBM 37.5 gb disks 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 [1999/12/29] conf/15766 My desktop display is too large, I canŽt o [2000/01/01] kern/15825 dillon Softupdates gets behind, runs the system o [2000/01/01] bin/15829 peter cvs -C not_a_number core dumps o [2000/01/02] i386/15845 Driver for RealTek 8029 o [2000/01/03] misc/15869 3.4-STABLE-20000103 install fails to disk 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] gnu/15892 NFS-exported ext2 file system makes Linux 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/11] misc/16068 FreeBSD 3.3 with IDE > 32GB causes Panic: o [2000/01/12] kern/16090 mdodd No buffer space available o [2000/01/13] misc/16102 root's home directory is too open o [2000/01/14] kern/16122 Incorrect SysV SHM segment accounting by o [2000/01/15] i386/16132 FreeBSD doesn't install on Notebook w/ Sy 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/17] i386/16164 "vga"/"sc" don't work when a video card i 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 f [2000/01/20] misc/16238 e-bones has a Y2K bug o [2000/01/20] kern/16239 dillon NFS mount file system from multi-homed re 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 f [2000/01/27] ports/16410 kris ssh and x forwarding problem o [2000/01/27] kern/16416 Hang on boot with SMP Dell 2400 o [2000/01/28] misc/16423 Installation problem of 3.4-RELEASE using o [2000/01/30] gnu/16481 Cpp crashes frequently o [2000/01/30] i386/16482 IDE disk fails on secondary IDE master de o [2000/02/06] kern/16515 Deadlock by ntpd o [2000/02/08] bin/16578 host-name field is hexadecimal instead of o [2000/02/08] conf/16586 net if down after fail during install o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P o [2000/02/09] kern/16598 xmcd stopped by racd0c ioctl error while o [2000/02/09] kern/16605 samba 2.0.6 under 3.4-RELEASE can't open o [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/02/10] bin/16645 Inetd(8) internal ident won't work with m o [2000/02/18] bin/16812 level 0 dump runs forever -- generates a o [2000/02/18] kern/16816 vop_stdpoll() in /sys/kern/vfs_default.c o [2000/02/20] conf/16832 amd.map options won't play with Solaris N o [2000/02/20] kern/16849 Close on an ide tape drive hangs 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/27] kern/17033 Samsung SN-124 ATAPI CD-ROM not supported 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/17146 panic in devfs_open() while mounting devi 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/11] ports/17314 hosokawa in samba: testparm incorrectly generate w 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 o [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/16] i386/17423 System hangs then reboots 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/18] kern/17483 Cannot run disklabel on virgin disk o [2000/03/19] kern/17494 Two problems with the tun device o [2000/03/19] kern/17499 grog Can't revive VINUM RAID5 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 f [2000/03/21] i386/17526 PB of frequency heuristic in uipc_socket. 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/23] misc/17567 make buildworld bombing at KerbIV o [2000/03/24] kern/17583 julian 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/26] kern/17613 impossible to build FS KLD without kernel o [2000/03/27] i386/17626 green sshd cores when I scp to it o [2000/03/28] kern/17634 cg 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/28] ports/17652 ports netatalk port modification for des/md5 ch 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/03/31] kern/17715 io memory requests from pnp devices lands o [2000/04/01] kern/17738 reboot after panic: softdep_lock: locking 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 f [2000/04/03] kern/17779 ADIC 1200d (DAT changer) and Symbios SCSI 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] bin/17841 ttyp0 (and only 0!) produces stdout input 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 pcm0 direct DMA issues. o [2000/04/10] kern/17923 cg SB16 ISA-PnP sometimes produces loud stat 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/11] i386/17940 Cannot recongize the scsi card AIC-7899 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/15] kern/18031 alpha system panics cpu_fork during AIO c o [2000/04/17] misc/18065 FREEBSD 4.0 crashes on boot Compaq Prolia o [2000/04/18] misc/18071 I cannot install Oracle 8i in FreeBSD 4.0 o [2000/04/19] i386/18089 4.0R install hangs on newfs or fsck o [2000/04/19] kern/18096 random crashes probably caused by lockmgr o [2000/04/20] kern/18110 DC-390 SCSI BIOS setting no effect and IB f [2000/04/20] kern/18113 Kernel panic while untarring a large arch 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 o [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 o [2000/04/25] kern/18209 green rlimits are never checked in exec() if ex f [2000/04/25] i386/18212 4.0-RELEASE does not see all disk. f [2000/04/25] bin/18221 dougb DNS resolver can fail for large DNS respo f [2000/04/26] kern/18234 phk 4.0-CURRENT crashes when "make test" in p o [2000/04/27] kern/18252 sysctl -a causes panic o [2000/04/28] i386/18268 RTC BIOS error10 (memorysize) a [2000/04/28] kern/18270 n_hibma [PATCH] kldunload "vn" doesn't clean up e o [2000/04/28] kern/18285 the system froze when use scon -s 50 f [2000/04/29] kern/18303 grog panic: vinvalbuf: dirty bufs 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 kernel crash o [2000/05/18] kern/18650 panic when enabling linux with emu10k1 dr o [2000/05/19] gnu/18672 std::basic_string::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/21] misc/18728 Audio and video desynch in Realplayer on s [2000/05/21] kern/18735 asmodai add support to Accton EN1217 network adap o [2000/05/22] bin/18742 times.allow field parsed incorrectly o [2000/05/22] kern/18751 if_dc doesn't autosense 100Mb mode o [2000/05/22] kern/18757 dg [PATCH] fxp driver doesn't enable flow co o [2000/05/22] kern/18763 kernel crashes when sysctl(3) is called o [2000/05/22] alpha/18768 wpaul Digital DE500-BA with "dc" driver doesn't f [2000/05/28] kern/18858 microuptime() errors even after disabling o [2000/05/28] misc/18860 Cannot write DATA record to /home/archive o [2000/05/29] kern/18869 4.0-Stable SMP kernel from 22. May unstab 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/02] kern/18980 ATAPI Drive boots Install CD but then say o [2000/06/03] i386/18981 3.4 CDROM fails to boot on Dell PowerEdge f [2000/06/04] kern/19009 Mounting bad CD-ROM causes crash o [2000/06/05] kern/19020 kernel reboots sometimes o [2000/06/05] misc/19025 Installer assumes /dev exists if target d f [2000/06/06] conf/19080 murray sysinstall's use of host.conf prevents ft 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 f [2000/06/12] kern/19219 le driver causes kernel panic during ifco 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 o [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 f [2000/06/25] i386/19512 get problem in compile gcc-2.7.2.3 o [2000/06/27] conf/19542 Problem with Proxy o [2000/06/27] misc/19557 Denying more than 10 ports with an 'open' 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/06/30] kern/19612 cg SBLive produces 75% static and 25% actual f [2000/06/30] kern/19614 johan missing blowfish in current kernel tree ( f [2000/06/30] kern/19615 cannot build current kernel (30-june-2000 f [2000/06/30] kern/19616 current kernel build failes on miibus o [2000/07/02] misc/19646 Level 0 dump takes way longer than it sho 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 asami 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 a [2000/07/08] bin/19789 sos [PATCH] msinfo reports incorrect data for 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] bin/19946 possible bug in sh(1) with -p flag (privi 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] misc/20210 4.1-RC crashes o [2000/07/27] kern/20213 NFS and Linuxulator issues in PR kern/194 o [2000/07/27] kern/20217 avalon 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] kern/20256 phk microuptime went backwards message keeps o [2000/07/28] bin/20259 des fetch(1) confused when redirected from ht o [2000/07/28] conf/20272 jkh Missing subdirs in the src/usr.sbin src p o [2000/07/29] conf/20282 murray sysinstall does not recover some /etc fil o [2000/07/30] kern/20299 cg Noise / Scratchiness in 4.1 SBLive driver f [2000/07/31] kern/20335 yokota S3Trio64V+ is detected as CGA by syscons o [2000/08/01] kern/20340 cg SNDCTL_DSP_GETODELAY on pcm device is inc o [2000/08/02] kern/20361 In in.c:in_addmulti, missing splx when if o [2000/08/02] bin/20372 ftp login incorrect when s/key active but 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, o [2000/08/09] ports/20503 sheldonh apache w/ mod_perl segfaults on 'use IO;' 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 f [2000/08/13] ports/20581 dirk current cdrecord port fails to install o [2000/08/14] bin/20591 src/usr.bin/file/MAINT & README & file.1 f [2000/08/14] gnu/20608 Problem by 'make world' from update 4.0-R 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 jhb fdisk doesn't handle LBA correctly o [2000/08/16] bin/20646 dwmalone [PATCH] /bin/cp -p whines on set[ug]id im o [2000/08/17] ports/20679 ports Port of Tcpview-1.0 f [2000/08/17] i386/20685 fbsd 4.1-stable crashed when compiling st f [2000/08/17] misc/20687 murray FTP Install thru http proxy jumps to extr f [2000/08/17] kern/20689 groudier Newbusified version of ncr driver does no o [2000/08/18] ports/20705 trevor xwave port fails to build 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 o [2000/08/22] bin/20779 assar junk pointer error causes kpasswd to fail o [2000/08/22] kern/20785 ru changing IP address on an interface may n o [2000/08/24] ports/20819 ports XFMail 1.4.0 dumps core w/signal 6 when c o [2000/08/24] ports/20831 torstenb Autoconf Port: Bug introduced by patch-ag f [2000/08/25] i386/20833 On first boot, filesystem failed, startup 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/26] misc/20865 murray Installation auto default 50 MB root not o [2000/08/28] gnu/20912 obrien gdb does not recognise old executables. o [2000/08/29] i386/20925 doscmd(1) does not truncate a file int wr o [2000/08/29] kern/20933 sos ATAPI ZIP drive allows mounted disks to b 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 f [2000/08/31] i386/20973 Probing error-------cannot install o [2000/09/01] ports/20986 reg Mozilla M17 installs incorrectly s [2000/09/03] ports/21014 will [PATCH] Fix for kdelibs2 PLIST s [2000/09/03] ports/21015 will [PATCH] Fix for kdebase2 PLIST a [2000/09/04] kern/21028 sheldonh Add Zoom V90 Internal modem support 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 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/10] kern/21173 cg pcm "panic: no feed" with Creative SB AWE o [2000/09/10] kern/21175 peter ISA DMA channels 4-7 operate on wrong mem 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/13] misc/21252 dhclient opens too many files o [2000/09/14] gnu/21260 buffer overrun in uux o [2000/09/14] ports/21264 markm tn3270 port receives segmentation fault s [2000/09/14] bin/21268 [MFC] user set no nobody is not good 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/16] ports/21306 ports New ports: GB2JIS, a tool to convert GB t o [2000/09/16] ports/21319 ports ports submission - wmx10 o [2000/09/17] misc/21328 Should newer version of OS-BS be on CDROM o [2000/09/18] kern/21363 cg Panic in pcm/channel.c when running RealP a [2000/09/18] bin/21375 [PATCH] dhclient runs away on interface r o [2000/09/18] misc/21384 pcm driver has static in recorded audio o [2000/09/19] kern/21400 ata driver stealing IRQ15 on Compaq Proli o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites o [2000/09/20] ports/21417 ports ports/news/trn/pkg/PLIST misses bin/inews 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] misc/21451 murray [PATCH] Release/Sysinstall documentation: o [2000/09/21] kern/21461 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 ports libcoro.a (ports) should use MAP_STACK wh o [2000/09/26] i386/21559 rnordier BTX loader sometime show registers o [2000/09/26] misc/21583 CVS pserver - login succeeds but checkout o [2000/09/27] conf/21593 Whither cons25, or, cons25 causing intero o [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/09/30] bin/21660 crontab mishandles day range o [2000/10/01] kern/21674 Fujitsu MO drives M2513A don't like the s o [2000/10/01] kern/21676 CDROM drive not recognised during install o [2000/10/01] kern/21688 Kernel crash with Adaptec AAA-133 and ahc o [2000/10/02] kern/21693 cg hwptr went backwards 2112 -> 1312 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*. f [2000/10/03] kern/21736 Source-tree broken, can't compile Kernel o [2000/10/04] ports/21756 peter errors in Squid-2.3.4's configure prevent o [2000/10/04] ports/21761 peter 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 s [2000/10/14] docs/21990 asmodai exec(3) manpage vs source inconsistency 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/16] ports/22036 ports StarOffice 5.2 CDROM install still fails f [2000/10/16] ports/22037 ports Missing shared xpm lib prevents windowmak o [2000/10/17] kern/22063 brian bpf when used with the select system call o [2000/10/18] kern/22078 Option ROM(s) must be excluded from ISA I 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/20] i386/22153 make installworld error when upgrading fr o [2000/10/20] ports/22172 ports freetds port does not work to access MS-S 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/22] misc/22229 X configuration 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 f [2000/10/26] misc/22305 o [2000/10/26] bin/22307 green ssh dumps core if fields in password entr o [2000/10/26] ports/22311 ports upgrade of www/cadaver to the latest 1.15 o [2000/10/26] i386/22315 Cannot reboot or power-off the machine o [2000/10/26] ports/22328 ports new port -- print/ttf2pt1 o [2000/10/27] ports/22368 ports new port x11-fonts/koi8u-monaco; new cate o [2000/10/28] kern/22372 cg |4.1.1-STABLE|[PATCH] resume from suspend f [2000/10/29] kern/22397 n_hibma ulpt0 usage leads to kernel panic o [2000/10/29] ports/22400 kevlo klaptopdaemon is useless o [2000/10/29] ports/22403 asami "make readmes" hangs if category director o [2000/10/30] kern/22411 sos CD-RW drive works mostly, but can't fixat 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 o [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] kern/22484 System locks on reboot with a Severworks o [2000/11/01] bin/22489 mass IP aliasing via ifconfig broken o [2000/11/02] kern/22521 netgroup can't work on FreeBSD-4.1.1-STAB 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/03] ports/22597 billf [PATCH] ports/net/ucd-snmp 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/05] kern/22634 4.2-Beta (11/06) Kernel does not detect S 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/07] kern/22664 [PATCH] mounting an audio CD causes kerne f [2000/11/07] kern/22667 dwmalone kernel panic when attepmt to remove file o [2000/11/07] bin/22670 green pam_ssh dumps core due to bug in env_dest o [2000/11/07] kern/22680 ATA driver think Ultra ATA-100 drive is A o [2000/11/08] bin/22685 Repairing a directory hard link. o [2000/11/08] ports/22689 will o [2000/12/19] gnu/23678 gdb won't exit if attached process disapp o [2000/12/20] ports/23687 will qt22 port for qt-2.2.3 fails to compile o [2000/12/20] kern/23697 panic at _pl_download_mhroute+0x247 o [2000/12/20] ports/23701 ports XpostitPlus fails when height or width is o [2000/12/22] kern/23771 bridge/firewall doesn't work as in bridge o [2000/12/25] misc/23827 Can't boot from the cd-rom drive o [2000/12/26] bin/23866 dwmalone patch for pointing out current date o [2000/12/26] i386/23870 Crashing on make buildworld o [2000/12/26] misc/23873 4.2 install hangs on probing hardware f [2000/12/26] ports/23878 ports New port: IO - various IO modules o [2000/12/28] ports/23907 olgeni Cannot install x11/XFree86-aoutlibs from o [2000/12/28] ports/23909 kevlo KDE2 fails to compile with QT2.2.3 & XFre o [2000/12/28] docs/23910 doc Handbook Chapter 14. Sound -- some fixes o [2000/12/28] kern/23913 UDMA 66 Drive forced to PIO4 on DFI AK-74 o [2000/12/28] kern/23935 Repeatable panic: blockable mtx_enter() o o [2000/12/29] i386/23939 rnordier IBM (A,T,X Series) Thinkpad won't boot of o [2000/12/30] misc/23972 releng4.freebsd.org has strange ftp behav o [2001/01/01] kern/23990 access(2) system call reports an immutabl o [2001/01/01] ports/23992 ports infinite recursion in rtelnet, setupterm( o [2001/01/02] kern/24032 rndcontrol and pccardd use of interupt ha o [2001/01/03] ports/24042 ports New port: IO - various IO modules o [2001/01/03] kern/24059 USB support broken in SMP kernel o [2001/01/03] bin/24061 sysinstall fdisk's wizard mode is started o [2001/01/04] conf/24065 sysinstall uses different crypto scheme f o [2001/01/04] kern/24070 n_hibma uhci USB driver disables port on reatachi o [2001/01/04] kern/24073 oltr driver set work memory at wrong phas o [2001/01/04] kern/24074 Properties of token-ring protocol must be o [2001/01/04] misc/24079 make release fails in 4.2-STABLE o [2001/01/04] ports/24080 ports tircproxy and freebsd 4.2 o [2001/01/04] gnu/24082 Use of seekp() in C++ programs causes seg o [2001/01/05] docs/24083 doc change layout and content of kernel build o [2001/01/05] ports/24084 dbaker misc/proxyper port fails to install o [2001/01/05] kern/24085 syncing on shutdown leaves filesystem dir o [2001/01/05] ports/24098 demon port www/links bug o [2001/01/06] kern/24100 Having a 3c589 PCMCIA/PCCARD inserted pre o [2001/01/06] i386/24117 System fails to initialize built-in PNP t o [2001/01/06] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN o [2001/01/07] bin/24136 sysinstall's install.cfg tryRTSOL and try o [2001/01/07] kern/24137 Aironet driver breaks after firmware upgr o [2001/01/08] ports/24143 ports graphics/sane won't build if GIMP already o [2001/01/08] ports/24165 ports windowmaker-0.63.1 fails to build in libw o [2001/01/09] i386/24210 compaq dl360 hangs with smp kernel o [2001/01/10] bin/24218 dwmalone Tcp_wrappers is missing some syslog facil o [2001/01/10] kern/24219 <4.2R can't use Pentium3 SSE instructions o [2001/01/10] kern/24223 "tail -f file" is a CPU hog when file is o [2001/01/10] conf/24238 First physical interface always has IPv6 o [2001/01/11] ports/24258 ports netsaint port is missing run dependencies o [2001/01/12] bin/24270 fsck should notice some inconsistencies o [2001/01/12] bin/24271 dumpon should check its argument more o [2001/01/12] ports/24290 ports qt22 port is broken o [2001/01/13] kern/24315 getcwd under Linux emulation fails after o [2001/01/14] kern/24320 DMA doesn't work with Alladain V and K6-2 o [2001/01/14] kern/24325 Athlon Thunderbird 700 on Asus K7M vs. Fr o [2001/01/14] ports/24327 des inn (ckpasswd) does not support master.pa o [2001/01/14] ports/24328 ports kdelibs2 fails to compile, `CP_1251' is n o [2001/01/14] kern/24335 Crash when returning from single user mod o [2001/01/14] ports/24336 taoka ja-FreeWnn-server port fail to compile on o [2001/01/15] ports/24344 vanilla New port: Apache::Reload - Reload changed o [2001/01/15] ports/24347 vanilla New port: Apache::NNTPGateway - A NNTP in o [2001/01/15] ports/24359 ports jgnat fails with a compiler error in jvm_ o [2001/01/15] docs/24363 doc lack of explanation o [2001/01/15] kern/24365 delete alias from ipv6 p-t-p iface will c o [2001/01/15] kern/24368 sos Not having ATA_ENABLE_ATAPI_DMA still has o [2001/01/16] bin/24377 make(1) does not correctly substitute in o [2001/01/16] ports/24381 ports graphics/dia does not support "libraries" o [2001/01/16] ports/24383 ports libtool, USE_LIBTOOL, and graphics/dia o [2001/01/16] i386/24387 4.2 compile bombs at PERL build o [2001/01/16] misc/24391 cannot kill amd after interface disappear o [2001/01/16] kern/24392 panic() if kldload used to load module wh o [2001/01/16] bin/24399 green OpenSSH forced commands munge output o [2001/01/18] kern/24423 yokota [Fix] syscons VT switching code errors o [2001/01/18] misc/24424 linux-programms under BSD cannot display o [2001/01/18] ports/24428 ports logtool port looking in wrong directory f o [2001/01/18] bin/24438 sys.mk is lacking single suffix rules for o [2001/01/18] bin/24443 Fix for spurious "arith: syntax error: " o [2001/01/18] gnu/24445 ipnat does not parse its file properly o [2001/01/19] misc/24452 random panics with Fatal trap 19 and Open o [2001/01/19] ports/24455 andreas [PATCH] print/apsfilter does not work pro o [2001/01/19] ports/24459 ports New port: package for the solution of PDE o [2001/01/19] ports/24460 ports Postgresql7 install problem o [2001/01/19] bin/24461 Being able to increase the YP timeout wit o [2001/01/19] kern/24465 archie Will process packets not for this host if o [2001/01/19] ports/24466 lioux net/kicq UPGRADE to 2.0.0b1 o [2001/01/19] bin/24472 libc_r does not honor SO_SNDTIMEO/SO_RCVT o [2001/01/19] ports/24473 ports ports/www/galeon configure fails o [2001/01/21] kern/24511 keyboard lockup on boot (about 1/3 of the o [2001/01/22] conf/24524 /etc/security uses dmesg instead dmesg -a o [2001/01/22] ports/24525 asami USE_NEWGCC specifies incorrect port o [2001/01/22] kern/24559 aio_suspend() had Bus error when using -l o [2001/01/23] misc/24590 timezone function not compatible witn Sin o [2001/01/23] bin/24591 jobs command differs in interactive vs. n o [2001/01/23] kern/24593 NFS hang between stable and current boxes o [2001/01/24] kern/24596 sysinstall crash: Page fault while in ker o [2001/01/24] kern/24608 FreeBSD 4.2 Panics in Realtek rl driver o [2001/01/25] kern/24628 if netgraph seriously runs out of queue e o [2001/01/25] kern/24629 ng_socket failes to declare connected dat o [2001/01/25] bin/24632 libc_r delicate deviation from libc in ha o [2001/01/25] ports/24639 dirk two problems when compiling MySQL 3.23.32 o [2001/01/25] misc/24641 pthread_rwlock_rdlock can deadlock o [2001/01/25] kern/24645 sometimes delayed ACKs timeout o [2001/01/28] bin/24691 map-mbone segfaults at getsockname o [2001/01/28] i386/24701 tempnam() possibly used unsafely by libg2 o [2001/01/29] ports/24711 ports ${MAKEFILE} causing trouble with ports o [2001/01/29] misc/24712 Getting message /usr/libexec/ld-elf.so.1: o [2001/01/29] bin/24721 libgcc_r problem - library precedence wit o [2001/01/29] misc/24725 failing install: not loading proper adapt o [2001/01/30] ports/24734 ports Update port: Spreadsheet::WriteExcel - Wr o [2001/01/30] i386/24737 Socks5 clients die with leaving zombie pr o [2001/01/30] kern/24739 darrenr "kldunload ipf" kernel module (V3.4.16) c o [2001/01/30] bin/24748 green OpenSSH creates broken pipes o [2001/01/31] ports/24753 ports Pipsecd may get a tun device with the IFH o [2001/01/31] pending/24760gnats-admininstallkernel fails trying to install *.m o [2001/01/31] ports/24763 green Licq 1.0.2 will not compile on my 4.2-sta o [2001/01/31] kern/24765 sos /dev mounted from devfs has excessively l o [2001/01/31] bin/24769 tcsh: broken handling of comment in first o [2001/01/31] bin/24773 the -v flag of the date command does not o [2001/02/01] ports/24776 ports New port: japanese address book software o [2001/02/01] ports/24778 ports "update" target not available in categori o [2001/02/01] conf/24779 sysinstall 4.2 regresssions todo with sta o [2001/02/02] ports/24800 ports When i trying to compile mysql323-server o [2001/02/02] bin/24810 kerberosIV and heimdal ftpd is vulnerable o [2001/02/03] ports/24840 ports port update: net/nslint o [2001/02/04] kern/24854 NEWCARD support for Aironet driver an(4) o [2001/02/06] ports/24895 adrian New port: www/sqmgrlog o [2001/02/06] gnu/24903 Patch to remove 32bit limit from tar o [2001/02/06] ports/24912 ports mod_frontpage.c has a bogus sprintf() lin o [2001/02/06] kern/24913 Random panics related to ppp and high CPU o [2001/02/06] i386/24916 SCSI timeout errors with adv0 driver (Adv o [2001/02/07] kern/24937 flaky connection through vlan interface o [2001/02/08] ports/24947 ports New port: gc - a garbage collecting stora o [2001/02/08] ports/24948 ports New port: Orchard - innovative, lightweig o [2001/02/08] i386/24949 mbuf memory leak in de0 driver o [2001/02/08] ports/24952 ports kdebase2 fails to install when using qt-2 o [2001/02/09] kern/24978 "dc" network interface goes into continuo o [2001/02/09] kern/24982 stack gap usage o [2001/02/09] ports/24984 ports fmio port o [2001/02/10] kern/24992 Writing to a write-protected floppy cause o [2001/02/10] i386/24997 /boot/loader cannot handle extended dos p o [2001/02/11] ports/25007 ports telnetx problem on 4.x o [2001/02/11] ports/25027 ports samba nmbd core dumped on isolated machin o [2001/02/11] ports/25029 archie mpd-netgraph crashes when using netmeetin o [2001/02/12] kern/25037 top doesn't show CPU states (shows zeroes o [2001/02/12] kern/25038 dhcp client could not set hostname on boo o [2001/02/13] kern/25061 CS46xx sound broken in 4.2-STABLE (Thinkp o [2001/02/13] kern/25067 able to mount a pathname > 80 char. but u o [2001/02/13] ports/25069 ports Enlightenment dumps in homedir() specific o [2001/02/13] kern/25083 Page fault (kernel trap 12) o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ o [2001/02/14] pending/25096gnats-admintest o [2001/02/14] pending/25100gnats-admin< port update> o [2001/02/14] ports/25102 ports depends on 'wrong' openldap o [2001/02/14] ports/25103 ports Install of mysql-server package (mysql-se o [2001/02/14] conf/25105 green S/Key support is broken in sshd o [2001/02/14] misc/25107 natd (and others?) segfault caused by err o [2001/02/15] bin/25110 pthread signal handler fails after forkin o [2001/02/15] ports/25116 dirk mod_php4 fails to load with "Undefined sy o [2001/02/15] kern/25118 brian Unloading the if_tun module causes a rebo o [2001/02/15] pending/25122gnats-adminlots of undefined references o [2001/02/15] ports/25129 ports Update port, problem with one last submit 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 o [2001/02/16] ports/25155 ports `ASSERTION FAILED' errors with security/p o [2001/02/17] ports/25176 ports ports/graphics/xpaint 2.6.1 allocates tem o [2001/02/19] kern/25201 pccard event and syscons beep duration de o [2001/02/19] ports/25205 ports mail/pop3lite port update 1177 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1995/01/11] i386/105 Distributed libm (msun) has non-standard s [1995/05/13] bin/401 Add REMOTE_* variables s [1995/06/15] bin/517 Bad group change with 'install' s [1995/08/07] bin/658 ifconfig alias has to be separately given 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 s [1996/03/20] bin/1093 route's diagnostic is weird 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 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/06] bin/2898 fenner arp -a -n buglet o [1997/03/10] bin/2934 cracauer sh(1) has problems with $ENV o [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/14] bin/3286 [PATCH] missing error checking in mount_m 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) f [1997/06/07] bin/3805 single process tftpd 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/18] kern/3901 dg Multicast for Intel 10/100 Ethernet Card 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 nonworking t/tcp server side o [1997/06/27] kern/3968 Hardware probes die on Peak SBCs. o [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 asami 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 f [1997/09/16] misc/4556 will make can't build executable from single F o [1997/09/21] kern/4597 Patch to pass NPX status word in signal c f [1997/09/21] kern/4601 Contrib: userconfig patch to edit SCSI co 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/09/29] conf/4654 Need to do post-ifconfig commands o [1997/10/04] bin/4688 peter sys/utsname.h SYS_NMLN 32 too small 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/10/24] kern/4847 imp pccard stuff fails after running Win95 wi o [1997/11/01] bin/4915 peter NFS mounts to linux machine can hang syst o [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/10] kern/4997 DDB_UNATTENDED doesn't always work 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/15] kern/5059 peter mountd, nfsd, etc. fail when lp0 defined 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 o [1997/11/23] bin/5134 cdcontrol will eject a mounted CDROM 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 f [1997/12/30] i386/5398 dillon silo overflows running o [1998/01/02] bin/5410 phantom pkg_info options s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with f [1998/01/08] kern/5429 Ethernet collision during file transfers s [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde o [1998/01/11] bin/5483 Login(1) clears utmp entry o [1998/01/15] kern/5502 nfsd process usage doesn't get accounted s [1998/01/20] misc/5531 [SUBMISSION] new library function abs2rel s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/24] i386/5559 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 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/14] bin/5746 bootparamd will not netboot sun 3 compute o [1998/02/14] bin/5747 ld.so error message o [1998/02/17] kern/5768 Shutdown aborts syncing, when sync isn't o [1998/02/18] i386/5784 ibcs2 emulation not handling ioctl(..FION o [1998/02/26] bin/5857 non-functional lpr/lpr o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT o [1998/03/02] bin/5901 new version of `fmt' 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 o [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 o [1998/03/16] kern/6032 poor TCP performance using FDDI over long o [1998/03/22] gnu/6107 obrien gdb should support PRINTF_HAS_LONG_LONG 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/01] bin/6187 peter mounting nfs directories with -b can caus o [1998/04/03] bin/6202 No way to detect removable media. o [1998/04/04] kern/6213 peter NFS-mounted swap (via vnconfig) easily cr o [1998/04/06] bin/6234 ypserv -d is broken o [1998/04/14] kern/6296 IP_HDRINCL sockets force header fields to a [1998/04/14] kern/6299 vmstat -i does not show PnP device interr 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 f [1998/04/20] bin/6359 routed does sent router discovry solicita 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 ": o [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 [PATCH] new driver: Virtual Ethernet driv a [1998/05/26] misc/6759 phk buggy code in libdisk.a's disk.c o [1998/05/26] kern/6769 peter panic: nfs rcvunlock s [1998/05/29] kern/6781 [PATCH] exabyte changer doesn't grok LUNs s [1998/05/29] bin/6785 place for all the default dump flags o [1998/06/01] kern/6820 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/18] kern/6981 CD unmount w/o CD in drive can cause pani o [1998/06/22] bin/7022 asami changes to bsd.port.mk to accompany PR bi o [1998/06/22] bin/7023 asami bsd.port.(%|subdir.).mk patches for size f [1998/06/23] i386/7031 Our RocketPort port does not support DEVF 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 % f [1998/07/02] kern/7146 imp The PCCARD doesnt recognize cards in top 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 asami 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 o [1998/07/16] bin/7298 Improvements to ln(1). a [1998/07/19] bin/7324 wosch Suggestions for minor modifications to ad f [1998/07/23] kern/7377 we have a new digiboard driver supporting a [1998/07/31] docs/7456 doc dialog(3) man page outdated f [1998/08/12] kern/7589 Tulip Driver parses SROM contents wrong f [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 o [1998/08/20] kern/7693 Misleading warning in cblock_alloc_cblock o [1998/08/22] kern/7722 Changes to acct format o [1998/08/23] bin/7728 ftpd processes hang o [1998/08/27] bin/7753 arp command fails silently on invalid pro 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 patches to add a p_auth extension pointer o [1998/09/08] bin/7860 Extra option to pr(1). s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/11] bin/7895 multiple identical NFS mounts accepted 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 o [1998/09/20] misc/8005 yokota Keyboard freezes going from KDE to text m s [1998/09/21] kern/8015 nbm [patch] Some sysctl descriptions for the o [1998/09/24] ports/8042 torstenb If pidentd dies, you must kill all telnet 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 asami [PATCH] Add multiple CDROM support to bsd o [1998/09/29] bin/8084 NIT: non-working code in rshd o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) o [1998/10/03] misc/8139 [patch] missing /usr/src/share/examples/d f [1998/10/08] bin/8211 Script to search kernel for an address o [1998/10/12] bin/8295 order of options in printcap causes some o [1998/10/13] conf/8303 3.0-981009-BETA can't make swap device on o [1998/10/13] kern/8311 kernel panic on de0 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/22] kern/8420 __getcwd() from an (forcibly) unmounted f o [1998/10/24] misc/8434 boot.flp /bin/init crashes during probe w o [1998/10/24] i386/8436 boot.flp sysinstall crashes when probing 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/07] i386/8598 MAKEDEV fails if not run from current dir 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 s [1998/11/12] kern/8661 ports sys/netatalk/at_control.c needs to correc 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/08] bin/9012 route add -host hostIP -interface localIP o [1998/12/15] kern/9092 DELF raid volumes cause panics under CAM f [1998/12/16] i386/9102 Voxware does not provide /dev/mixer for E o [1998/12/16] ports/9107 asami Addition to bsd.port.mk for searching mul o [1998/12/18] bin/9123 pax can't read tar archives that contain o [1998/12/20] kern/9144 luigi acd driver inconsistency (byte order in C 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 f [1999/01/07] bin/9374 roberto Improved functionality for find(1) 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 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/20] kern/9590 Clean up for -Wall warnings o [1999/01/21] kern/9611 MFS calculates the size incorrectly when o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi o [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 o [1999/01/30] kern/9791 enhancement for netinet/ip_icmp.c to cont o [1999/01/31] ports/9840 asami 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/19] kern/10160 kldload of umap module panics the system f [1999/02/21] ports/10178 kris USE_SOCKS=YES option broken for security/ a [1999/02/23] misc/10231 inet_addr() doesn't check for illegal val 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] misc/10351 /usr/share/examples/worm is out of date 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 a [1999/03/06] kern/10455 pcaudio breakage 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/13] kern/10574 3.1-stable kernel reports k6 cpu as "\^E" 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 asami 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/03/30] misc/10871 wst0 fails with Sony SuperStation streami o [1999/03/31] kern/10894 wrong error message in svctcp_create() 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/09] ports/11048 ports variable not initialized in fwtk-lib lead 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/04/30] kern/11416 code typo in sequencer.c: "if (!processed o [1999/05/02] misc/11448 Better looking VGA font for iso2 o [1999/05/03] misc/11478 assar Non-functional AFS support in KerberosIV o [1999/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi o [1999/05/09] bin/11608 vnconfig not supporting swap-backed vn de o [1999/05/09] bin/11609 vnconfig -v reports page numbers, not byt 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/11669 gcc 2.7.2.1 gets bad magic error linking o [1999/05/12] bin/11671 "vidfont -r" fails, asking for font size o [1999/05/12] kern/11676 PCIless kernel will not compile with ATAP o [1999/05/13] i386/11683 olpt/nlpt name change not in man pages o [1999/05/13] misc/11689 Change "netstat" mode in daily "status-ne o [1999/05/17] bin/11746 Add support for Solaris mailboxes o [1999/05/18] kern/11765 performance bug: network devices fxp & de o [1999/05/18] misc/11767 sppp does not implement VJ compression o [1999/05/19] kern/11789 ELF machine definition missing for ARM o [1999/05/21] bin/11818 Added a feature to ping(8) o [1999/05/21] i386/11829 Boot Failure (Register Dump) with MFSroot 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] i386/11898 Connot wirte to floppy on HP OB800CT with 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/29] kern/11941 FreeBSD box reboots itself when changing 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 Fix SysV Semaphore handling o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor a [1999/06/06] bin/12052 sh type builtin appends first path compon 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/09] kern/12095 [PATCH] Buggy ATAPI Zip Drive is not dete o [1999/06/09] bin/12107 Add switch to dump to support multiple du o [1999/06/10] i386/12113 ESS1688 support for VoxWare sound driver o [1999/06/10] bin/12115 pppd reports wrong connected duration wit 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 asami Adds refetch functionallity to bsd.port.m o [1999/06/21] i386/12326 wdc flag 0x1000 (LBA addressing) prevents o [1999/06/21] kern/12333 ProAudio Spectrum sound card broken model o [1999/06/21] kern/12334 Some ProAudio SPectrum cards do not do DM o [1999/06/21] kern/12335 if_pn.c lacks bridging support; patch enc o [1999/06/22] bin/12357 [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/02] bin/12489 /sbin/route exits with 0 on some errors o [1999/07/05] bin/12528 [PATCH] tip's "tipout" child doesn't alwa 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/12] misc/12612 ncurses ash shipped with 3.2-R missing sy o [1999/07/13] misc/12633 CMI8330 chip based integrated sound card o [1999/07/15] kern/12655 Kernel config file needs more commenting o [1999/07/16] kern/12668 The kernel clock goes slow with PLIP devi 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. f [1999/07/23] bin/12782 roberto xntpd doesn't handle interface aliases pr 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 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/03] bin/12942 m4: len(`') returns `' o [1999/08/04] ports/12952 asami make _PORT_USE touch cookies by variable, o [1999/08/04] bin/12957 rpc.rusersd dumps core with signal 11 whe 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 o [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/07] conf/13016 gshapiro Wrong sendmail.cf file used by mergemaste 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/15] kern/13164 jhb kthread_exit stops, but doesn't release p o [1999/08/16] misc/13185 "tengo problemas con el pop3" a [1999/08/18] docs/13218 phantom Many manpages still not conformed mdoc(7) o [1999/08/18] kern/13220 mkdep: compile failed - ../../pci/if_de.c 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/19] bin/13254 yp_all error messages have wrong text o [1999/08/20] misc/13266 Removal of #defines and addition of const o [1999/08/20] bin/13278 rogue: killed by fire corrupts score file o [1999/08/21] bin/13309 Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for 512MB o [1999/09/23] conf/13918 Termcap entries for VESA modes missing a [1999/09/23] gnu/13921 sheldonh awk -v var=val coredump o [1999/09/23] kern/13924 sb/snd driver broken under 4.0-19990918-C o [1999/09/24] i386/13936 murray No clear indictaion of how much space to o [1999/09/25] docs/13950 doc webpage idea o [1999/09/25] docs/13967 doc FreeBSD Related Publications in Korea o [1999/09/26] kern/13979 [PATCH] add serial number to IDE HD probe o [1999/09/27] kern/14006 pas2_pcm.c pcm playback problem, with fix o [1999/09/29] bin/14040 amd has wrong uname data compile in it o [1999/09/30] i386/14048 ``doscmd -r'' doesn't work o [1999/10/01] ports/14077 dec Multicast not available on multicast enab o [1999/10/01] bin/14078 -stable 'make release' does not work on - f [1999/10/01] kern/14083 gibbs CAM 3.3-RELEASE fails boot w/2940UW + non o [1999/10/05] bin/14142 gshapiro sendmail: mci.c: bad pointer conversion i o [1999/10/06] docs/14158 doc md5(1) manpage should not claim the md5 a o [1999/10/06] docs/14165 nbm FDP introduction article o [1999/10/06] kern/14166 roger AVER TVPhone o [1999/10/07] bin/14175 route for ip aliasing o [1999/10/07] ports/14182 asami Patch: bsd.port.mk: add plist target o [1999/10/08] kern/14217 bde [PATCH] EXT2FS as a KLD o [1999/10/09] ports/14225 markm Patches for security/pgp5 o [1999/10/09] kern/14240 compilation error: __cmpdi2 unresolved o [1999/10/09] bin/14246 kvm_open and kvm_openfiles not works corr o [1999/10/10] bin/14255 rup and rusers could not deal with many h o [1999/10/11] misc/14258 IP_TOS and IP_TTL sockopt doesn't work on a [1999/10/11] ports/14260 jkoshy new port: www/woda - A Web Oriented Datab o [1999/10/11] misc/14263 phantom There ara no ukrainian locale in stable/c o [1999/10/11] misc/14273 Somewhat bogus entry in termcap o [1999/10/13] ports/14316 markm exmh not recognizing mh and uses too many o [1999/10/13] bin/14318 jkh sysinstall upon install has some counter- o [1999/10/14] ports/14323 markm [PATCH] ports/security/pgp5: Invoked with o [1999/10/14] bin/14330 peter [PATCH] fix clash between /usr/src/contri o [1999/10/14] bin/14335 peter Manual page for ndc gives incorrect path o [1999/10/15] kern/14346 imp Both pccard/cardinfo.h and sys/memrange.h o [1999/10/15] kern/14350 Security enhancement to ICMP o [1999/10/15] kern/14355 perhaps a guard page needed for UP-mode k o [1999/10/15] kern/14356 grog vinum and ``some processes would not die; o [1999/10/16] bin/14361 locate bogusly converts to network byte o o [1999/10/17] kern/14380 [PATCH] if_de workaround for when BIOS do o [1999/10/18] i386/14396 Floppy install of 3.2-release, 3.3-releas o [1999/10/21] bin/14448 ftp-client may not recognize failure, rep o [1999/10/23] misc/14488 kget doesnŽt write the key word "enable" o [1999/10/25] misc/14511 chapss Y2K problem o [1999/10/25] bin/14533 imp pccardd improperly assigns irqs o [1999/10/26] bin/14545 quota reports in K, but header says 'bloc a [1999/10/27] kern/14561 ken ioctl (fd, CDIOCEJECT, (void*) 0) doesn't s [1999/10/27] kern/14562 ken ioctl() codes should be provided for ejec o [1999/10/27] docs/14565 doc ioctl() codes for device type `fd' (flopp o [1999/10/27] i386/14574 ISA based ESS1688 support(partially) for o [1999/10/28] kern/14584 Proposition for improved file permissions o [1999/10/29] misc/14599 pam_kerberosIV.so in the 'krb.??' package o [1999/10/29] kern/14602 struct utsname fields are allocated too s o [1999/10/31] kern/14639 convert proc.p_peers to a queue(3) LIST o [1999/11/01] kern/14646 kern.boottime affected by APM suspend/res o [1999/11/01] bin/14648 markm `make world' now requires -DNOCRYPT in my o [1999/11/02] gnu/14664 tar checks for volno-file even if it shou o [1999/11/02] docs/14677 chris listing of (48) utilities in /bin:/sbin:/ a [1999/11/03] docs/14682 marko lprm(1) unaware of lp(1) Environment Vari o [1999/11/03] bin/14697 grog Exploitable buffer overflow in Vinum (Fre o [1999/11/04] conf/14714 phantom Need support for imap4 and pop3 in /etc/p o [1999/11/06] misc/14746 xf86config shell script leaves arrow keys o [1999/11/08] ports/14783 jmz mgetty 1.1.12 always sets clocal o [1999/11/08] bin/14786 dwmalone [PATCH] tail breaks on large files o [1999/11/08] conf/14791 Optionally change the behaviour of fsck u o [1999/11/08] i386/14793 more fdisk partition types o [1999/11/09] i386/14800 FreeBSD BootMgr not configurable (or at l o [1999/11/10] conf/14810 [PATCH] initialising multiple interfaces a [1999/11/10] bin/14817 strptime(3) '%C' conversion incorrect o [1999/11/11] ports/14824 wosch no '\0' at the end of buffer o [1999/11/11] bin/14829 rc.shutdown is handled unconsistently by o [1999/11/12] kern/14839 RELENG_2_2 boot kernel is large size prob o [1999/11/12] kern/14840 Opti930 doesn't work. o [1999/11/12] kern/14841 adrian IEEE 802 encapsulation for arp on etherne o [1999/11/12] ports/14854 peter port comms/conserver partially ignores ${ o [1999/11/13] conf/14864 I can not get dual Boot to boot FreeBSD f o [1999/11/14] i386/14891 New smbus driver lmsmb a [1999/11/16] ports/14924 markm p5-Apache-Radius with mod_perl broken on o [1999/11/16] bin/14925 getsubopt isn't poisonous enough f [1999/11/16] ports/14933 imp Simple patch to log password attempts on o [1999/11/17] ports/14965 wosch stat port doesn't know fifo file type o [1999/11/18] conf/14973 Digi-multiport serial card? f [1999/11/18] conf/14974 jhb In RELENG_3, fdisk reports sizes incorrec o [1999/11/18] ports/14977 peter conserver doesn't support speed over than o [1999/11/19] misc/14999 phantom ISO8859-5 locale missing from RELENG_3 o [1999/11/19] misc/15000 ftp(1) needs to send HTTP/1.1 Host: heade o [1999/11/20] conf/15010 "client" firewall configuration kills inc o [1999/11/21] ports/15021 asami some port installs fail for non-root user o [1999/11/21] kern/15022 jkh Suggestion for enhancement: move isp firm o [1999/11/21] conf/15038 jkh In sysinstall, easy to not notice that se o [1999/11/25] kern/15095 TCP's advertised window is not scaled imm o [1999/11/27] i386/15119 pcm sound driver dma problems with isa-pn o [1999/11/28] ports/15142 jmz Added DIST_SUBDIR to print/tex port o [1999/11/29] misc/15168 Adding tracklist support to fdformat o [1999/11/29] kern/15175 tcp_input() fails to update m->m_pkthdr.l o [1999/11/30] bin/15182 "* Wed-1 event" in calendar produces "31 o [1999/11/30] misc/15196 shutdown -h no longer synching disks, thu o [1999/12/01] misc/15205 billf Addition to /usr/games/random o [1999/12/02] i386/15218 kernel says: raw partition size != slice o [1999/12/02] bin/15229 joe mtree - different from mtree in NetBSD 1. o [1999/12/05] kern/15280 kernel panic during FreeBSD install o [1999/12/06] bin/15301 Bug in /usr/sbin/syslogd: strips 8th bits o [1999/12/06] misc/15304 bmah proposed modifications to pkg_version f [1999/12/07] ports/15329 jeh amanda24 modification o [1999/12/07] misc/15339 fdformat should exit non-zero when user c a [1999/12/09] ports/15387 billf ethereal's packet-smb.c calls str*() func o [1999/12/10] bin/15410 edquota -p copies current usage as well a o [1999/12/11] bin/15416 addr2line is unable to find line numbers o [1999/12/11] bin/15418 tput(1) doesn't work with new libncurses. o [1999/12/11] misc/15421 initgroups(3) spits out messages to stder o [1999/12/12] kern/15435 Attempts to execute programs from a noexe o [1999/12/12] kern/15436 syscons extension: "propellers" o [1999/12/13] bin/15456 Usage of ktrace(1) is invalid a [1999/12/13] bin/15458 sort(1) doesn't sort correctly in some ca o [1999/12/13] bin/15470 Proposed change to comments in /etc/named o [1999/12/14] ports/15477 ports wwwstat-2.01 port is not Y2K compliant: 1 o [1999/12/14] misc/15480 Change-request for /usr/src/usr.sbin/cdco o [1999/12/14] kern/15489 running fstat causes a bus error o [1999/12/15] kern/15492 Patch to fixup bridging support for 2.2-S o [1999/12/15] kern/15493 Patch to enable bridging support for if_c o [1999/12/15] ports/15495 asami Add "addsum" target to bsd.port.mk o [1999/12/15] bin/15496 killall(1) limited to 16 character proces o [1999/12/15] bin/15497 NIS does not deal well with comments o [1999/12/15] bin/15510 df(1) does not lineup with large filesyst o [1999/12/15] kern/15511 Cannot scroll up after panic? o [1999/12/17] i386/15528 doscmd exec function fail. o [1999/12/17] i386/15531 doscmd DOS function 0a fail when DL is 0 o [1999/12/17] kern/15532 Reboot just to kill a print job? o [1999/12/17] misc/15546 Need to enable LBA flag for large IDE dis o [1999/12/17] i386/15547 discmd function 51 ( get ps ) fail o [1999/12/18] misc/15555 some enhancements for uudecode o [1999/12/20] bin/15593 [SECURITY] ustrcpy() buffer overflow in d s [1999/12/20] ports/15594 will kscd-1.2.7 in -STABLE ports not playing A o [1999/12/20] bin/15596 netstat -rn does'n fit on a 80 chars wide o [1999/12/21] kern/15608 acd0 / cd0 give inconsistent errors on em o [1999/12/21] conf/15612 jkh Re-Scan devices in 3.4-Release options me o [1999/12/21] i386/15619 standard pppd doesn't authenticate users o [1999/12/22] kern/15636 dillon reminder to self for MAP_ VM defines o [1999/12/23] misc/15658 edquota misinterprets usernames as uid ra o [1999/12/24] bin/15663 yokota none o [1999/12/28] bin/15739 repquota report format fix for better par o [1999/12/28] kern/15747 dcs loader's builtin "more" command won't res o [1999/12/28] conf/15748 jkh sysinstall - upgrade a [2000/01/01] docs/15821 asmodai Wrong device names in manpages for lpt(4) o [2000/01/01] kern/15827 Power-Off causes Trap 9 in kernel o [2000/01/01] bin/15830 imp PATCH: rdump over ssh o [2000/01/02] kern/15838 Conversion tables in msdosfs_conv.c are b o [2000/01/02] bin/15852 asmodai predefined \*(DT string has Y2K bug o [2000/01/02] bin/15853 tar --newer-mtime flag has Y2K bug o [2000/01/03] bin/15855 comsat(8) failes to open system mail box o [2000/01/03] kern/15860 patch to make default kern.maxfilesperpro o [2000/01/03] misc/15871 small CVS directories copied to PicoBSD filesys o [2000/01/03] misc/15874 small PicoBSD can only update files from within o [2000/01/03] misc/15876 small PicoBSD message of the day problems o [2000/01/05] misc/15908 patch to fix argument mismatch in getnano s [2000/01/06] docs/15959 phantom misplaced lines in psignal.9 man page o [2000/01/08] kern/15983 n_hibma C++ keywords in kernel header files o [2000/01/08] ports/15992 joe [PATCH] Add a default for $SUP in the /us o [2000/01/08] ports/15993 asami [PATCH]No line-feed in warnings from ``ma o [2000/01/09] misc/16003 sysinstall crashes if it gets more than o o [2000/01/09] bin/16005 alex add new option to date(1) o [2000/01/09] misc/16009 Invoking /stand/sysinstall from kde termi o [2000/01/10] kern/16021 To support SMP on NEC PC98, call mp_probe o [2000/01/10] kern/16023 Add an idletime counter for sppp, just li s [2000/01/10] bin/16048 asmodai "file" command cannot recognize LaTeX2e f o [2000/01/10] kern/16049 Connor Drive fails cache sync o [2000/01/11] conf/16076 markm [PATCH] pam_ssh examples for /etc/pam.con o [2000/01/14] bin/16119 ctm_rmail does not honor umask o [2000/01/15] ports/16139 billf Ntop port fails to find lsof o [2000/01/18] kern/16169 The U.S. Robotics 56K Voice Int modem is o [2000/01/18] misc/16189 Advansys ASB-3940U2W SCSI Card does not w o [2000/01/18] kern/16195 16-bit uid/gid struct in sys/ipc.h o [2000/01/19] bin/16206 PATCH: vmstat column alignment, %ll not s o [2000/01/19] misc/16208 ps/2 mouse problem o [2000/01/19] misc/16212 in /stand/sysinstall -- cannot exit menu o [2000/01/20] ports/16220 obrien -frepo is broken in gcc-devel and egcs po o [2000/01/21] ports/16252 asami bsd.port.mk: Add bzip2 support for distri o [2000/01/21] bin/16275 steve approve send-pr(1) (attach files, use env o [2000/01/22] kern/16292 performance problem of divert socket o [2000/01/23] bin/16316 Enhancement: allow .fakeid to be a named o [2000/01/23] bin/16320 fstat -f confuses some partitions o [2000/01/24] kern/16339 vm/vm_page.h PQ_L2_SIZE options too limit o [2000/01/25] ports/16347 sobomax Inconsistencies between Java ports o [2000/01/25] kern/16360 kernel timestamping of ICMP echo requests o [2000/01/26] bin/16364 [PATCH] Add msdosfs and cd9660 support to f [2000/01/26] ports/16374 ache Ports fix: news/tin o [2000/01/27] i386/16411 DUMP freezes system if uucico or samba wr o [2000/01/28] bin/16422 newfs always make root's / directory o [2000/01/30] bin/16480 locked accounts and adduser o [2000/02/06] conf/16536 size of /var/spool/uucp/Log, a UUCP logfi o [2000/02/06] kern/16551 cosmetic cleanup in sys/dev/ppbus/pcfcloc o [2000/02/07] ports/16570 asami ports toplevel README.html has bad link t o [2000/02/08] conf/16584 jkh Hostname field too small during install ( o [2000/02/09] bin/16619 trimdomain does not handle peer domains o [2000/02/09] bin/16625 Incorrect information in routed(8) error o [2000/02/10] ports/16640 jfitz rwhois port install tries to copy wrong l o [2000/02/10] bin/16649 /bin/lastcomm: output contains extraneous o [2000/02/11] bin/16657 /bin/hostname: New feature to return subc o [2000/02/13] bin/16705 ftpd doesn't support -h option o [2000/02/14] kern/16709 PATCH: make poll work for -STABLE's Audio o [2000/02/14] kern/16713 grog Vinum: some processes would not die; ps a o [2000/02/14] misc/16719 /stand/sysinstall does not redraw the scr o [2000/02/14] i386/16722 squid (a 3.x binary) won't run under 4.0- o [2000/02/15] bin/16726 rpc.rstatd from inetd sig11's o [2000/02/16] kern/16745 Kernel Makefile doesn't sanitise PATH [PA o [2000/02/16] kern/16765 Add support for mark/space parity o [2000/02/18] kern/16815 dillon Cannot "rm -rf" for not-existed file on r o [2000/02/19] misc/16830 markm PAM-related error messages on -current o [2000/02/20] misc/16839 dan MFC Matthew D. Fuller's patch to deal wit o [2000/02/20] misc/16840 dan MFC: Matthew D. Fuller's teach pkg_info t o [2000/02/20] misc/16843 jkh Knob for release/Makefile to prevent dele o [2000/02/21] ports/16872 max Update port: japanese/pine o [2000/02/21] bin/16880 davidn [PATCH] pw(8) hardcodes directory creatio o [2000/02/22] bin/16924 tmpfile(3) ignores TMPDIR and always uses o [2000/02/22] bin/16926 kris [PATCH] banner doesn't allocate space fo o [2000/02/22] kern/16928 dynamic sysctl enhancement o [2000/02/23] misc/16938 FTP does not fully parse ftp:// URLs o [2000/02/24] misc/16969 yokota /kernel: psmintr: out of sync (0000 != 00 o [2000/02/24] bin/16971 Exiting from /usr/sbin/login does not res o [2000/02/26] kern/17003 dscheck() overzealously protects labels o o [2000/02/26] kern/17007 This is a code for implementing ethernet o [2000/02/27] conf/17022 rwatson newsyslog.conf not in sync with syslog.co o [2000/02/27] alpha/17032 alpha strtod(3) floating exception o [2000/02/28] misc/17045 Cannot install on Siemens Primergy 870 (d o [2000/02/28] kern/17058 mjacob SCSI tape driver can't drive devs that ca o [2000/02/29] bin/17077 yokota write() error o [2000/03/01] docs/17104 phantom gethostbyname(3) contains a reference to o [2000/03/01] kern/17109 darrenr fastroute crashes for lo0 udp o [2000/03/02] misc/17132 bugs in xdr functions o [2000/03/02] ports/17139 billf PLIST correction for Apache13-fp o [2000/03/04] misc/17185 main ncurses headerfile is installed as c f [2000/03/04] i386/17198 3.4 doesn't boot from CD on dell 3500 o [2000/03/04] gnu/17202 uucp grade patch and policy o [2000/03/05] conf/17207 disktab support for Fuji-MO o [2000/03/05] gnu/17214 obrien gdb doesn't honor auto-solib-add o [2000/03/06] kern/17222 Avance Logic ALS/100 sound card doesn't r o [2000/03/06] kern/17224 4.0-20000214-CURRENT: pcm/csa sound - sha o [2000/03/06] bin/17226 markm ftpd can't use PAM a [2000/03/06] ports/17241 mharo Update: japanese/tkdesk o [2000/03/07] ports/17255 pst Update the GNATS port to 3.113 o [2000/03/08] misc/17270 FreeBSD should support nsswitch.conf, or o [2000/03/08] misc/17272 deleting a file that a program has open c o [2000/03/08] misc/17275 asami make release fails when making readmes fo o [2000/03/09] bin/17289 [PATCH] wrong permissions on /var/run/pri o [2000/03/09] ports/17293 hosokawa samba port installs man-pages twice, fail o [2000/03/09] kern/17297 Panic when mounting a CDRom o [2000/03/13] kern/17358 PCI ids for Aureal 8810, 8820 and 8830 au o [2000/03/13] bin/17363 crontab(1) leaves files in /var/cron/tabs o [2000/03/13] bin/17368 billf Bad error messaging from mountd(8) o [2000/03/14] misc/17377 "Checking for rejected mail hosts:" gives o [2000/03/14] kern/17385 Support for IIT's "XC87SLC-33" numeric pr o [2000/03/15] bin/17389 /bin/cp failed on some synthetic vfs o [2000/03/15] bin/17395 This is a replacement for the perl versio o [2000/03/15] misc/17399 FTPing into machine slows it down o [2000/03/16] bin/17405 one more fstat patch o [2000/03/16] alpha/17411 alpha No link/activity lights Alpha ethernet ca o [2000/03/16] kern/17425 nsouch [PATCH] fix two small printing errors in o [2000/03/17] bin/17430 jkh Missing Czech keyboard in /stand/sysinsta o [2000/03/17] kern/17438 cg newpcm volume too low on Soundblaster Pro o [2000/03/18] ports/17471 rse presence of devel/pth-devel port breaks w o [2000/03/18] ports/17479 asami bsd.port.mk: PARALLEL_BUILD o [2000/03/18] bin/17480 m4 changecom doesn't work as documented o [2000/03/19] ports/17489 ports Zephyr port is broken with Kerberos enabl o [2000/03/19] ports/17490 markm ports fail for some gnu programs as the g o [2000/03/19] kern/17493 Updates to use FreeBSD as a firewall and o [2000/03/20] i386/17505 Problems with with SMP on Compaq proliant f [2000/03/20] docs/17521 doc Proposed FAQ on assembly programming o [2000/03/21] bin/17532 "host" only prints A records by default o [2000/03/22] bin/17546 murray Sysinstall does not let you configure NIS o [2000/03/24] kern/17581 devices failing probing do so silently o [2000/03/25] docs/17598 doc installworld over NFS documentation no lo o [2000/03/25] ports/17602 jmz Port fix x11/XFree86-4.0 (make deinstall o [2000/03/26] bin/17611 f77 man page needs updated o [2000/03/27] bin/17619 pax cannot read all tar files created by o [2000/03/27] bin/17623 date(1) -v doesn't handle time changes (D o [2000/03/27] i386/17628 mdodd 3c509b hangs on running ifconfig o [2000/03/28] bin/17640 lseek();read() -> 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 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/01] bin/17739 Traceroute will not compile without IPSEC 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] kern/17796 cg pcm drivers failes to load for Neomagic o 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/08] bin/17864 PATCH: sys/resource.h needs sys/time.h fo 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 o [2000/04/10] ports/17921 green licq in the ports collection is missing a 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/12] misc/17957 installer navigation is confusing o [2000/04/13] misc/17983 Minikernel build instructions do not work 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] kern/18001 PCM - Yamaha OPL-SAx doesn't have treble/ 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 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 a [2000/04/22] conf/18152 /etc/exports should suggest how to get mo 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] misc/18175 strtok(3) example doesn't work. o [2000/04/23] ports/18184 ache GNU Patch 2.5.4 Port o [2000/04/24] bin/18191 pac core dumped without set /etc/printcap o [2000/04/24] bin/18193 Bogus diagnostics by nslookup(1) o [2000/04/26] kern/18232 SMP + APM configerd 4.0 kernel did panic o [2000/04/26] docs/18243 alex wrong description of -p option in sh(1) m o [2000/04/27] misc/18255 makewhatis weekly job doesn't look at /us o [2000/04/27] ports/18256 sada www/netscape4* lacks Fortify on alpha o [2000/04/27] ports/18259 obrien ElectricFence installation breaks if the 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 a [2000/05/30] ports/18911 sada New port - plptools 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 asami 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/02] misc/18969 sound card not recognized by probe o [2000/06/03] misc/18987 Problems with Comtrol RocketPort o [2000/06/03] bin/18992 log packets blocked by filter rules o [2000/06/03] misc/18995 assar Kerberos5 INCLUDES needed for make world 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/05] bin/19044 billf Some games compare initscr() to ERR. 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/06] bin/19071 fmt not folding very long lines o [2000/06/07] misc/19088 STL from SGI for FreeBSD 3.4 o [2000/06/07] ports/19112 asami files with names something,v in patches d o [2000/06/08] bin/19118 vmstat€Ç avm€Èfre€ÎÃÍ€¬ÀÜ€¹€ë¡£ o [2000/06/08] ports/19119 jmz un-forbid x11/XFree86-4 and unbreak its x o [2000/06/08] misc/19124 ps(1) to support SysV-style options? o [2000/06/08] kern/19127 kernel panic on mount on burncd'd device o [2000/06/08] misc/19129 AMI Raid Express 200 card extremely slow o [2000/06/08] kern/19132 ATM HARP support apparently does not supp 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 f [2000/06/10] conf/19178 ume add reject routes and comments in /etc/rc o [2000/06/10] bin/19183 more(1) doesn't handle redraw correctly o [2000/06/11] ports/19212 ports New port py-amk-crypto-0.13 o [2000/06/11] kern/19213 SC_DFLT_FONT compile option breaks kernel o [2000/06/12] ports/19227 ports Installation problem: apache13-ssl port 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 ports 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 asami 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/16] bin/19337 obrien c89(1) not POSIX compliant (-l lib) and m o [2000/06/17] bin/19355 fstat gives signal 10 (SIGBUS) when outpu o [2000/06/18] i386/19365 gj lnc1 is not worked with Am79C973 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] ports/19403 ports portsifying of the glide3 source for dri 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] conf/19413 Too few MCAM SCSI devices in /dev o [2000/06/21] bin/19422 users can overflow argv to make ps segfau o [2000/06/22] kern/19436 when using vlanX interface arp ageing wor 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/19462 using HARP atm driver on FreeBSD3.4 freez 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] kern/19497 Adaptec AHA-1530P PNP scsi card is not re o [2000/06/25] ports/19498 kris 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] bin/19532 cdcontrol does not handle EOF on stdin pr 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/27] kern/19541 Want to marge ds1 sound card driver from o [2000/06/27] kern/19546 No CD audio o [2000/06/27] kern/19553 "panic: zone: entry not free" in namei() 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 f [2000/06/28] conf/19573 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 o [2000/06/29] bin/19592 imp pccard_ether does not honor dhcp_{program f [2000/06/30] ports/19594 trevor update port: qrash o [2000/06/30] bin/19598 traceroutes default of 30 Hops is too low 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] misc/19670 jkh Incorrect duplicate in fortunes2 o [2000/07/03] bin/19683 green mount displays incorrect mount point on f o [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/09] ports/19806 ports error message w/xcdplayer: ioctl (cdromr f [2000/07/09] kern/19807 incorrect dates 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 asami 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] kern/19887 mjacob Boot hang while scanning SCSI bus o [2000/07/13] i386/19890 davidn Stallion serial driver support missing [p o [2000/07/13] bin/19897 gshapiro Allow building more then 1 SENDMAIL_CF 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 o [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/20] bin/20074 darrenr enable STATETOP for ipfstat (ipfilter) 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] kern/20161 cg Integrate VIA VT82C686 AC'97 audio driver 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 o [2000/07/25] ports/20179 nbm Follow up on ports/20168 o [2000/07/25] bin/20188 brian tcpdump -d enables promisc mode on tun0 a 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] kern/20255 cg [PATCH] resume from suspend breaks pcm o [2000/07/28] ports/20270 reg libtool needlessly runs ldconfig after in o [2000/07/28] kern/20278 cg YMF724 initialization fails on my environ s [2000/07/29] docs/20294 darrenr ipf(5) defines icmp rule twice f [2000/07/29] bin/20295 fdisk -s give incorrect disk size 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] ports/20364 dburr audio/ripit-atapi can use 'dagrab' instea 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/20474 jkh Spelling fixes to fortune data file 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/08] ports/20491 ports AbiWord-0.7.10 fails to compile on FreeBS o [2000/08/09] conf/20498 brian All FreeBSD systems trigger massive late- 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 o [2000/08/09] misc/20502 assar kerberos5 w/o kerberos4 attempts to build o [2000/08/09] misc/20504 assar [PATCH] ssh (openssh) cannot connect to s o [2000/08/10] ports/20520 will New port: lang/mercury o [2000/08/10] bin/20527 ume redundant binaries for similar IPv4 and I 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/12] bin/20569 sos libvgl tries to free global array 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 o [2000/08/14] ports/20610 ports New port of cgoban2 o [2000/08/14] kern/20611 VLAN parent device does not count VLAN ou 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/16] ports/20662 ports New port of viewkit o [2000/08/16] kern/20670 imp No PC-CARD Slots; Device Not Configured o [2000/08/17] ports/20678 asami make SORTED_MASTER_SITES_CMD variable ove o [2000/08/17] bin/20681 des [PATCH] show service names in netstat and o [2000/08/18] bin/20696 Pkg_add does not make use of HTTP_PROXY / o [2000/08/18] conf/20698 cg pcm device o [2000/08/20] ports/20730 peter Update Squid 2.3-STABLE4 with latest vend o [2000/08/20] i386/20731 cg syslog reports pcm0: hwptr went backwards 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/22] kern/20781 ESS Solo is not listed in supported sound o [2000/08/22] ports/20793 ports (socket-server) of clisp does not create 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 s [2000/08/26] bin/20858 sos libvgl does not handle fonts wider than 8 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/27] misc/20891 cg Suspend/Resume does not work for the YMF7 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/29] misc/20921 yokota `Splash' screen fails to display splash.b f [2000/08/29] kern/20927 ume dmesg output: looutput: mbuf allocation f o [2000/08/30] bin/20944 ru natd enhancements, default config file an o [2000/08/30] docs/20950 kris [PATCH] openssl.1 has bogus section title o [2000/08/31] ports/20964 ports New port: databases/hypersonicsql 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] bin/21144 des [PATCH] fetch(1): don't bonk if ftp SIZE 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] misc/21230 jhb The URL for splash window is gone 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] bin/21261 burncd blank fails 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/21287 "make all" for a jail build fails at lib/ o [2000/09/15] ports/21291 ports New port: Free EcmaScript Interpreter (fe o [2000/09/15] misc/21298 tftpd problem "Socket operation on non-so o [2000/09/16] kern/21308 Sound Blaster 16 (using pcm) and new DEVF 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 o [2000/09/17] conf/21339 green ssh-keygen: not found f [2000/09/18] ports/21346 ports ports/biology/platon o [2000/09/18] ports/21351 jhb ports/emulators/bfe sourcetarball no long o [2000/09/18] misc/21354 FreeBSD4.1 + SMP + vinum = crashes o [2000/09/18] ports/21356 ports New port: mbone/rat30 (rat-3.0.35), the s 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/18] ports/21389 ports g2c libraries and compatibility for DJGPP o [2000/09/18] kern/21391 WARNING messages occur when bpf is used w o [2000/09/19] bin/21394 [PATCH] MAKEDEV creates rocketport specia f [2000/09/19] ports/21401 ports Update port sysutils/wmtop to 0.83 with f 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] ports/21435 okazaki New port Jakarta Ant (A Java based build o [2000/09/20] bin/21436 pkg_install will not compile without erro o [2000/09/21] i386/21452 cg Add speaker volume adjusting support for o [2000/09/21] ports/21460 jseger Patch net/trafshow: Allow showing ipv6 p o [2000/09/22] bin/21476 ftp in 4.1-STABLE fails on http:// URLs o [2000/09/22] conf/21489 /etc/pccard_ether feature request o [2000/09/22] misc/21494 ftpd doesn't count o [2000/09/23] ports/21504 ports New port: korean/tin o [2000/09/23] ports/21507 lioux New port emulators/sope (Playstation(tm) o [2000/09/23] misc/21512 cdrdao fails to build with SCGLIB o [2000/09/23] ports/21513 ports stunnel port should be compiled using non o [2000/09/24] ports/21515 ports pine4 complains about wrong permissions o o [2000/09/24] ports/21516 ports New FreeBSD port for Fuzz o [2000/09/24] bin/21519 sys/dir.h should be deprecated some more o [2000/09/24] ports/21520 ports Configure the synaptics touchpad. o [2000/09/24] kern/21524 Crashs while using talk with another loca 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/24] ports/21532 ports No formal mechanism in place for discussi o [2000/09/24] ports/21533 ports A homebrewer's recipe calculator o [2000/09/25] misc/21536 jkh [PATCH] Add Hungarian FTP mirror to sysin o [2000/09/25] ports/21541 ports Replacement for pr 21538 a [2000/09/25] docs/21542 asmodai sigaction(2) man page is misleading f [2000/09/25] ports/21545 ports emulators/vmware broken... o [2000/09/25] bin/21546 netstat -rn output needs netmask info add o [2000/09/25] conf/21551 /etc/services needs a kpop entry o [2000/09/26] ports/21558 ports Skill fails to ID os and fails build f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q o [2000/09/26] ports/21584 ports mpd whines if kernel has option NETGRAPH o [2000/09/26] misc/21587 install problem in 4.1-Stable o [2000/09/27] ports/21598 ports port of wm x10 controller 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 s [2000/09/28] ports/21636 ade gnomelibs PLIST bug o [2000/09/29] misc/21644 /usr/include/sys/mman.h uses a type defin f [2000/09/29] conf/21649 [Patch] rc.conf knob for unaligned access o [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/09/30] bin/21661 green SSH connections die when using some X11 a o [2000/09/30] ports/21664 ports port of gmail gnome email-client 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/21700 bmah Description of SysKonnect Gigabit Etherne o [2000/10/02] ports/21705 ports CSCOPE writes incorrect offset into index 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] misc/21728 KDE won't start with kernel_securelevel=" 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 Sound stops working when NetGear USB Devi o [2000/10/04] ports/21759 ports New port: py-BisonGen-0.5.0 o [2000/10/05] ports/21765 asami I cat't make ports using pw_gid) != typeof(group->g o [2000/10/22] bin/22211 typoed tar -c clobbers archives o [2000/10/22] kern/22228 Undocumented LINT option 'PANIC_REBOOT_WA s [2000/10/23] kern/22244 wollman [MFC] Uninitialized field in radix_node s o [2000/10/23] ports/22259 bash: root directory change directory bug o [2000/10/24] bin/22270 [patch] /usr/bin/top wraps wrong w/SMP on o [2000/10/24] ports/22277 green Port Licq 0.85 with qt2.2.0--Messages get 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/25] ports/22295 ports lua 4.0 beta port o [2000/10/25] ports/22296 ports New port: cannadic - Dictionary of Canna o [2000/10/25] ports/22303 ports New port: urlendec. Contains urlencode an o [2000/10/26] conf/22308 mounting NFS during boot blocks if host m o [2000/10/26] ports/22316 hosokawa [PATCH] samba port in a jail(2) environme o [2000/10/26] misc/22332 request to add vtys to /etc/ttys o [2000/10/26] docs/22333 doc share/doc/smm/07.lpd building moved in 3. o [2000/10/26] ports/22336 ports New port: scrot-0.1 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/22393 ports New port: Ipe-5.0: Interactive Picture Ed o [2000/10/29] ports/22395 dburr update of ports/audio/napster 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 o [2000/10/30] misc/22428 FTP: Mirror-TR down a [2000/10/30] docs/22430 darrenr ipresend man page typo o [2000/10/30] ports/22431 ports New Port: 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] ports/22456 kde installs but incorrectly o [2000/10/31] kern/22466 yokota function prototype inconsist in kbdreg.h o [2000/11/01] docs/22470 doc man 3 msgrcv's BUGS section needs updatin f [2000/11/02] ports/22546 ports Update port: games/pentix o [2000/11/02] ports/22550 obrien Patch for conserver for log file rotation o [2000/11/03] misc/22577 486SLC2-50MHz won't boot 3.x or 4.x flopp o [2000/11/03] misc/22582 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] ports/22611 ports New port: audio/gdrdao 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 peter [PATCH] squid 2.3 fix o [2000/11/06] conf/22645 Cannot override "ignore" in /etc/mail.rc o [2000/11/06] ports/22646 ports SAINT doesn't install correctly o [2000/11/07] misc/22660 termcap kterm entry tc=xterm is wrong o [2000/11/07] bin/22672 Add "next" and "prev" commands to cdcontr o [2000/11/07] ports/22682 ports [PATCH] java/jdk-tutorial fix f [2000/11/07] ports/22683 ports New port net/dnip-update 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] docs/22701 doc lists missing from search options o [2000/11/08] ports/22704 ports cyrus and cyrus-sasl both install pwcheck f [2000/11/08] ports/22706 ports Update driver 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/22721 paul libldap clash between openldap and ldapsd 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 ports KGhostView doesn't recognize spaces in fi o [2000/11/10] ports/22752 okazaki remove qclock port 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/11] ports/22773 ports Port of GNU Eiffel compiler SmallEiffel o [2000/11/11] docs/22778 doc Typo's in About.txt-Layout.txt o [2000/11/12] ports/22794 ports New port: ccdoc 0.7a (second try) o [2000/11/12] kern/22801 Modem 'OMRON ME5614ISA' is not recognized o [2000/11/13] ports/22819 nbm ports/www/zope-ptk missing file "pkg-mess o [2000/11/13] kern/22821 darrenr Document IPFILTER_DEFAULT_BLOCK o [2000/11/13] alpha/22824 alpha unaligned accesses from dhclient o [2000/11/13] bin/22828 darrenr patch to enable use of LOG_SECURITY in ip o [2000/11/14] conf/22859 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] ports/22865 ports New port: devel/omniORBpy o [2000/11/15] kern/22868 getsockname may return an incorrect addre o [2000/11/15] bin/22871 burncd fails o [2000/11/15] misc/22873 Perl's core'h conflicts with ncurses.h o [2000/11/15] docs/22875 gshapiro vacation man page omits -l option o [2000/11/15] ports/22876 mi new port: security/pam_pgsql f [2000/11/15] ports/22878 ports piewm doesn't build a [2000/11/16] ports/22883 ade p5-Audio-CD port not functioning correctl o [2000/11/16] misc/22885 /usr/share/misc/units.lib contains typo o [2000/11/16] bin/22897 su doesnt't compile without LOGIN_CAP def o [2000/11/16] ports/22898 kbyanc cclient port should add SSL support 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] ports/22917 kevlo KDE2 Sound appications do not produce sou o [2000/11/17] ports/22918 kevlo Kpresenter (part of Koffice2) crashes wit 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/18] ports/22952 ports NEW PORT : eggdrop o [2000/11/19] kern/22958 sos Missing ATA_ENABLE_TAGS in -STABLE LINT o [2000/11/19] kern/22967 stallion driver (stl) shipped with FBSD 4 f [2000/11/20] ports/22970 ports New Port : textproc/py2html o [2000/11/20] ports/22976 ports New port: mimelib, C++ class fro encoding f [2000/11/20] ports/22985 ports NEW PORT : 6tunnel (2) 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/21] kern/23011 UDMA 66 not working on 4.1.1-Release ? f [2000/11/22] conf/23040 ume ipv6_defaultrouter is not work fine o [2000/11/23] misc/23048 jkh [PATCH] Upgrade install does not restore o [2000/11/23] bin/23052 ghelmer [PATCH] rmuser fails to remove at jobs o [2000/11/23] ports/23053 ports New devel port, cppadvio; request for loc 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/24] conf/23088 gshapiro make etc-sendmail.cf broke mergemaster f [2000/11/25] i386/23089 Kernel panic in network code 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] misc/23118 static link-level route bug? o [2000/11/26] kern/23123 IP options reveal IPstealth mode. Just t o [2000/11/27] bin/23132 jkh Another dup in games/fortune/datfiles/for o [2000/11/27] i386/23141 ad1816 audio driver produces noise. o [2000/11/27] misc/23148 getopt(3) works non-intuitively? o [2000/11/27] bin/23150 sscanf is used on a buffer that is not NU f [2000/11/28] ports/23151 ports NEW PORT : sysutils/wake-on-lan o [2000/11/28] misc/23162 threaded perl incorrectly suggests -lc wh 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/11/30] kern/23191 alfred [PATCH] Fix for panics in lookup() after o [2000/12/01] bin/23204 length of salt in crypt() is not the same o [2000/12/01] kern/23216 [PATCH] PCIOCGETCONF ioctl requires write o [2000/12/01] bin/23217 [PATCH] 'pciconf -l' opens /dev/pci with o [2000/12/01] docs/23230 doc missing index.html links 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] docs/23251 doc exports(5) man page erroneous in 4.2-STAB 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/23261 kevlo kdelibs2 from ports in not compiling f [2000/12/04] ports/23267 sada New port submittion: devel/lxr (lxr-0.3) o [2000/12/04] bin/23286 green openssh is too verbose o [2000/12/04] ports/23287 asami allow system-local patches for ports o [2000/12/04] ports/23288 imp MD5 checksum of socks5 distfile has chang o [2000/12/04] docs/23292 doc /etc/dumpdates is not documented in secti o [2000/12/05] ports/23294 ports new port: deskutils/kdepim o [2000/12/05] misc/23296 /usr/src/etc/isdn/Makefile doesn't instal o [2000/12/05] ports/23298 ports New port: lame-devel 3.87 o [2000/12/05] ports/23301 ports ports/graphics/opendx does not compile du o [2000/12/05] kern/23304 POSIX clock_gettime, clock_getres return o [2000/12/05] ports/23306 jseger Upgrade TCL 8.3.1 to 8.3.2 o [2000/12/05] ports/23313 mi new port: ukrainian/ispell o [2000/12/05] kern/23314 aic driver fails to detect Adaptec 1520B o [2000/12/05] kern/23315 Some "valid" Joliet discs cannot be read o [2000/12/06] bin/23321 [PATCH] reduce redundant code in /bin/cat o [2000/12/06] misc/23322 Addition / Alteration to Handbook/FAQ o [2000/12/06] docs/23324 doc add information to FAQ on how to use whee 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 o [2000/12/06] ports/23341 billf ucd-snmp fails to build on -current o [2000/12/06] docs/23342 doc Inaccuracy of the dialup-firewall tutoria o [2000/12/07] kern/23353 fcntl(F_GETLK) return l_pid equal to -1 f o [2000/12/07] misc/23354 reg Mozilla M18 segfaults on Release 4.2 o [2000/12/07] bin/23356 ps [PATCH] killall(1) refuses to kill root-o 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] kern/23409 CD-RW driver fails unless CD in drive at 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] ports/23465 scrappy Port Update: net/xicq 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 / o [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] ports/23507 ports new port: linux-q3ademo 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 a [2000/12/13] ports/23524 dougb New port: rdesktop - RDP client for Windo o [2000/12/13] bin/23526 Patch for bin/9529 (ftp completion cant h o [2000/12/13] misc/23531 PERL_THREADED should specify -lc_r in Con 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 asami 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/23575 ports ksh93 port no longer specifies current AT a [2000/12/15] ports/23578 ade GNUCash 1.4.9 fails to install on FreeBSD o [2000/12/15] ports/23581 asami Updates to bsd.port.mk to detect changing o [2000/12/17] gnu/23598 Merge libgcc_r with libgcc o [2000/12/17] kern/23600 agp.ko module cannot be loaded f [2000/12/17] ports/23601 ports Update www/hypermail o [2000/12/17] ports/23602 asami Recursive distclean for bsd.port.mk w/pat f [2000/12/18] ports/23608 kbyanc cclient-maildir does not install headers o [2000/12/18] ports/23611 ports palm/pose coredumps o [2000/12/18] misc/23612 patch for PicoBSD building (with diff) o [2000/12/18] conf/23616 IC-CARD+ not properly recognized by pccar o [2000/12/18] ports/23630 kris Update port: www/nscache to 0.4 o [2000/12/18] ports/23632 ports QuakeForge --with-svga= not works o [2000/12/18] ports/23634 ports QuakeForge --with-svga= not works o [2000/12/18] bin/23635 [PATCH] whois enhancement - smarter whois o [2000/12/18] ports/23637 mharo Update ftp/proftpd update pkg-plist o [2000/12/19] i386/23643 dlopen() can't link to symbols in main pr o [2000/12/19] ports/23649 ports the port of mod_php4 does not install cor o [2000/12/19] ports/23658 ports NEW PORT: net/cryptcat - twofish armored o [2000/12/19] ports/23660 ache Update russian/elm.language update pkg-pl o [2000/12/19] ports/23663 obrien Update chineese/cxterm update pkg-plist a o [2000/12/19] ports/23665 obrien Update editors/vim5 update pkg-plist o [2000/12/19] ports/23666 obrien Update editors/vim6 update pkg-plist o [2000/12/19] ports/23668 sobomax Update graphics/utah-glx update pkg-plist o [2000/12/20] ports/23685 ports Fxtv always starts with apectlock true 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/20] ports/23705 ports japanese zipcodes data is old at ports/ja o [2000/12/21] kern/23708 VESA support broken in 4.1-RELEASE with A o [2000/12/21] misc/23709 Changing from DES to MD5 passwords does n o [2000/12/21] bin/23710 [PATCH] there is no termcap(3) manpage pe o [2000/12/21] ports/23711 ports new ports: mail/ftrack (FTN Messages trac o [2000/12/21] bin/23712 Unused variable CDB in /usr/src/usr.sbin/ o [2000/12/21] ports/23727 ports Remove ports/misc/sma, as it is no longer o [2000/12/21] ports/23732 ports [PATCH] devel/cs has unfetchable distfile o [2000/12/21] ports/23734 jhb [PATCH] emulators/bfe has unfetchable dis o [2000/12/21] ports/23735 obrien [PATCH] emulators/dlx has unfetchable dis f [2000/12/21] ports/23739 ports [PATCH] irc/tircproxy has unfetchable dis o [2000/12/22] ports/23748 ports New port: Matrix like console screensaver o [2000/12/22] ports/23751 ports [PATCH] audio/openal has unfetchable dist 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] ports/23763 kris Update port: www/nscache to 0.5 (fix port o [2000/12/22] misc/23766 /etc/periodic/daily/440.status-mailq does o [2000/12/22] docs/23767 doc ifconfig(8) manual page does not document o [2000/12/22] kern/23768 I can't install sound driver in kernel o [2000/12/22] ports/23770 ports There is not an IPv6 + SSL lynx f [2000/12/22] ports/23776 ports [PATCH] audio/wmusic has unfetchable dist o [2000/12/22] ports/23779 ports New port (audio/qtecasound): Graphical us o [2000/12/22] ports/23780 ports New port (audio/ecawave): Simple graphica o [2000/12/22] ports/23782 nik www/sitecopy port broken f [2000/12/23] conf/23805 brian periodic/daily/100.clean-disks doesn't re o [2000/12/23] ports/23806 ports update port: fix some mtree problem o [2000/12/23] bin/23811 gshapiro Patch to Sendmail Mail Filter (Milter) AP f [2000/12/24] ports/23813 ports tirc doesn't compile from ports o [2000/12/24] kern/23814 .au sound files < 528 bytes actual data d o [2000/12/24] bin/23817 gshapiro Sendmail 8.11 ignores host lookup order w o [2000/12/24] docs/23822 dgrimes mtree entries for German X11 man pages s [2000/12/25] docs/23823 alex gethostbyname2 man page is inaccurate o [2000/12/26] ports/23863 ports Update math/Scilab o [2000/12/26] kern/23864 2 New USB dev types o [2000/12/26] ports/23871 ports ports - net/mrt needs to be updated to 2. o [2000/12/26] kern/23877 [PATCH] New device entry for IO DATA USB- o [2000/12/27] misc/23881 dwmalone Wrong calculation of easter day in calend o [2000/12/27] ports/23893 max Update port: textproc/nfbtrans to 7.58 o [2000/12/27] ports/23899 ports error in LEGAL file o [2000/12/27] ports/23903 ports New Port: py-4Suite-0.10.0 o [2000/12/28] ports/23904 ports Extipl is a partition-selectable boot loa o [2000/12/28] bin/23908 repquota format fix o [2000/12/28] bin/23912 underflow of cnt in vs_paint() by O_NUMBE o [2000/12/28] ports/23917 mi replacing sane with sane-backends and san o [2000/12/28] ports/23923 kiri [PATCH] editors/muggy has unfetchable dis o [2000/12/28] ports/23924 ports heimdal port fails to build under 4.2-Sta o [2000/12/28] ports/23927 billf [PATCH] graphics/stamp has unfetchable di 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 [2000/12/30] ports/23953 torstenb update port/astro/sunclock and change mas f [2000/12/30] ports/23961 ports New port: textproc/p5-Text-FixedLength-Ex o [2000/12/31] ports/23982 obrien [PATCH] net/queso has unfetchable distfil o [2001/01/01] kern/23989 NEW CODE: AMD 756 Power Management / SMBu 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] misc/24048 natd/libalias doesn't always properly mod o [2001/01/03] ports/24051 ports New port: biabam: A command-line attachme o [2001/01/03] ports/24055 kiri [PATCH] mail/prom-wl has unfetchable dist o [2001/01/03] ports/24060 ports New port: Java Platform Debugger Architec 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 o [2001/01/04] ports/24071 ports security/digest - md5,md4,sha1,ripemd160 o [2001/01/04] ports/24076 okazaki Update port: devel/libgii 0.6 to 0.7 o [2001/01/04] ports/24077 okazaki Update port: graphics/libggi 2.0b2.1 to 2 o [2001/01/05] ports/24086 ports [NEW PORT] sysutils/mksunbootcd - make sp o [2001/01/05] ports/24088 ports New Port: 6tunnel (3) o [2001/01/06] ports/24099 ports New Port: x11-wm/kappdock o [2001/01/06] bin/24102 will Fix for make(1) null suffixes after clean o [2001/01/06] bin/24106 ftpd does not compile without virtual hos o [2001/01/06] ports/24107 ports New port: dnrd: A proxy DNS daemon o [2001/01/06] ports/24114 ports New port: libtar: A library for manipulat o [2001/01/06] ports/24119 ports PORT - UPDATE : shells/perlsh 0.007 -> 0. o [2001/01/06] ports/24120 asami "/usr/ports/Mk/bsd.port.mk", line 626: In o [2001/01/06] misc/24121 linprocfs setup/startup lost when port mo o [2001/01/07] misc/24132 gdb output is wrong (same as #13427 ?) o [2001/01/07] ports/24135 ports Update port: mail/imap-uw o [2001/01/07] kern/24141 emu10k1 has trouble playing non-44.1KHz s o [2001/01/08] bin/24146 obrien indent broken by commit from 09/12/2000 o [2001/01/08] i386/24150 network traffic appears bottlecaped. o [2001/01/08] ports/24161 ports new port: OpenVRML 0.9.0 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/08] ports/24174 kris Update of cfengine port to 1.6.1 o [2001/01/09] ports/24178 ports NEW PORT: net/netsed, alters packets in r o [2001/01/09] ports/24180 ports ports/devel/arm-aout-gcc295 tries to get o [2001/01/09] ports/24183 ports BitchX won't compile with tcl support o [2001/01/09] ports/24185 obrien ports/devel/sfio: use MASTER_SITE_NETBSD o [2001/01/09] ports/24202 ports New port: mtrxmath: A small tool for matr o [2001/01/09] ports/24207 ports port "tcl83" cannot load shared objects o [2001/01/10] ports/24212 ports japanese/ng (also master for japanese/ng- o [2001/01/10] ports/24214 asami [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 o [2001/01/10] ports/24231 ports Enable pyexpat module in python port o [2001/01/10] ports/24236 ports new port: ssmtp o [2001/01/10] ports/24237 ports new port: kde-i18n-pl o [2001/01/10] conf/24239 rc.conf ipv6 missing options o [2001/01/11] ports/24251 ports Update ports: sysutils/extipl o [2001/01/11] kern/24252 IPFILTER Kernel Module cannot find osreld o [2001/01/11] misc/24254 Security hole in use of kbdcontrol o [2001/01/11] ports/24255 ports New port: dircproxy: A detachable irc pro o [2001/01/11] ports/24256 ports slrn port update (fix patch applied,and f o [2001/01/11] ports/24257 ports New port: sms_client: A simple UNIX SMS c 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] ports/24262 ports new port: slrn-pl, slrn with polish langu o [2001/01/11] ports/24263 ports port update: ssmtp o [2001/01/11] misc/24264 [PATCH] crypto/CHECKSUM.MD5 is incorrect 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] ports/24268 ports new port : gmp3 o [2001/01/12] kern/24269 Failure to setup DMA on ATA HDs (Alladin o [2001/01/12] i386/24272 ATAPI CD "open" causes "ticks" as ATA dri o [2001/01/12] ports/24291 ports New port: ant build tool for Java o [2001/01/12] ports/24292 asami update-patches target in ports/Mk/bsd.por o [2001/01/12] ports/24299 ports Configure the synaptics touchpad. s [2001/01/13] ports/24303 dirk php4_cgi port o [2001/01/13] docs/24305 doc man page syscons has reference to non exi o [2001/01/13] docs/24307 dwmalone man page for inetd(8) missing /etc/protoc o [2001/01/13] ports/24309 ports New port: wapsh: A system to allow remote o [2001/01/13] ports/24312 ports New Port: poppwd, a Eudora password chang o [2001/01/13] ports/24313 ports New port: firebird (InterBase spin-off) o [2001/01/13] ports/24317 ports USE_IMAKE ports magic is broken o [2001/01/13] misc/24318 burncd fails on fixate a [2001/01/14] misc/24324 Greek console support a [2001/01/14] ports/24326 ports [PATCH] Update net/dhid to version 4.0.2 o [2001/01/14] ports/24333 ports New port: html2wml: A CGI that can do on- o [2001/01/14] ports/24337 ports sarah port update o [2001/01/14] ports/24338 sf [UPDATE] XFree86-4-* o [2001/01/14] ports/24339 ports New port submission o [2001/01/15] ports/24340 ports Update port: devel/cervisia A much more n o [2001/01/15] bin/24341 Another device for /usr/src/sys/devs/usb/ o [2001/01/15] misc/24345 pthread library libc_r causes memory leak o [2001/01/15] ports/24348 ports stunnel bugs ports/22121 still exists for o [2001/01/15] i386/24351 setkey(8) man page has multiple spelling o [2001/01/15] ports/24355 kris Update port: www/nscache to 0.6 (fix port o [2001/01/15] ports/24357 ports can't compile snes9x on 4-stable a [2001/01/15] conf/24358 dougb [MFC] [PATCH] etc/rc variables for cron(8 o [2001/01/15] ports/24361 ports wrong filemodes o [2001/01/15] kern/24367 ATA driver finds non-existent drives o [2001/01/15] bin/24369 dwmalone typo "millenium" in units.lib o [2001/01/15] gnu/24372 [PATCH] (cosmetic) -current send-pr break o [2001/01/16] ports/24374 ports 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] ports/24389 ports New port: eps2png o [2001/01/16] bin/24390 Replacing old dir-symlinks when using /bi o [2001/01/16] kern/24393 Patch to msdosfs to handle a kind of inco o [2001/01/16] ports/24396 trevor New port. o [2001/01/16] bin/24397 gshapiro o [2001/01/16] kern/24398 gibbs Unit number is not set in ahc driver. o [2001/01/17] ports/24400 ports ports-update: audio/soundtracker to 0.6.2 o [2001/01/17] kern/24406 n_hibma USB Image scanner not worked o [2001/01/17] ports/24408 ports new port : java2html o [2001/01/17] kern/24412 kernel fail to probe EPSON GT-8700F (USB o [2001/01/17] ports/24413 ports Building ImageMagick port with libmalloc o [2001/01/17] ports/24417 ports skin support not working without unzip o [2001/01/17] ports/24420 ports Update to New Port: pic2fig o [2001/01/17] ports/24422 ports New port: astro/ksetiwatch o [2001/01/18] misc/24426 CDROM not detected on a multi processosr f [2001/01/18] ports/24427 ports small fixes for audio/sox o [2001/01/18] ports/24432 ports New port: cryptopp: A free C++ class libr 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 o [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/18] ports/24450 ports [PATCH] "make udpate" in /usr/ports launc o [2001/01/19] ports/24451 mharo Portlint doesn't catch some literal comma o [2001/01/19] ports/24454 ports New port: BugSeeker for Java 2 (Trial ver o [2001/01/19] bin/24458 named-xfer executed at 20 priority level o [2001/01/19] ports/24467 ports new ports graphics/libfpx o [2001/01/20] ports/24478 ports Un-broke the 'ports/audio/aureal-kmod' po o [2001/01/20] ports/24480 ports 41upgrade.tzg not accessible from http:// o [2001/01/20] ports/24481 ports new port: news/cleanfeed o [2001/01/20] bin/24485 [PATCH] to make cron(8) handle clock jump o [2001/01/20] gnu/24487 jkh [PATCH] libdialog's no/yes box jumps butt o [2001/01/20] ports/24488 ports New port: ftp/kbear a ftp client for KDE2 o [2001/01/20] ports/24492 jhs [PATCH] misc/estic has unfetchable distfi 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 o [2001/01/20] ports/24496 ports New port, accessx o [2001/01/20] ports/24498 ports new port p5-PDF-Create o [2001/01/20] ports/24499 ports new port ascii2pdf o [2001/01/21] conf/24503 /stand/sysinstall fdisk/label can't acces o [2001/01/21] misc/24508 i have this error when i start X xf860Ope o [2001/01/21] kern/24512 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] ports/24519 ports New port: asmutils: A set of UNIX utiliti o [2001/01/21] bin/24521 green ssh-agent exits when authenticating DSA v o [2001/01/21] ports/24522 asami new port audio/spiralloops--repo copy req o [2001/01/22] bin/24523 [PATCH] ps no longer supports the rsz for o [2001/01/22] gnu/24530 [PATCH] use "less -is" for man(1) instead o [2001/01/22] bin/24540 add '-c' flag to src/bin/domainname to cl o [2001/01/22] ports/24552 ports Update port: japanese/xklock o [2001/01/22] ports/24558 ports Updated port: converters/recode - 3.5 o [2001/01/22] ports/24563 ports Updated port: databases/gdbm - 1.8.0 a [2001/01/22] bin/24564 dougb local ident strings interfere with mergem o [2001/01/22] ports/24565 ports Updated port: sysutils/fileutils - 4.0 o [2001/01/23] bin/24569 PATCH for PPPD o [2001/01/23] ports/24570 nakai misc/rpm - unusable librpm, getmntent unr o [2001/01/23] ports/24571 ports New port: quelcom: A set of command-line o [2001/01/23] ports/24572 ports [NEW PORT] p5-Net-SSH o [2001/01/23] ports/24574 ports addition of kdestudio port o [2001/01/23] ports/24575 ports addition of kdepim port o [2001/01/23] misc/24576 -lssh problem with libpam o [2001/01/23] ports/24580 ports cfengine giving errors when invoked o [2001/01/23] ports/24585 ports new port: www/p5-Apache-MP3 o [2001/01/23] bin/24592 dmesg.boot Gets Overwritten without Reboo o [2001/01/24] i386/24598 with IPFilter options in the kernel, it e o [2001/01/24] misc/24603 dsp will not play .wav files at all o [2001/01/24] ports/24605 ports New port: umix: An advanced tool for adju o [2001/01/24] ports/24607 ports new port o [2001/01/24] bin/24610 [PATCH] make inetd log hostnames when spe o [2001/01/24] ports/24614 ports New port: plasma: A plasma-effect screens o [2001/01/24] docs/24622 doc Man page of "ugen" missing. o [2001/01/24] bin/24623 /bin/pr €Ç²þÊÇ¥³¡Œ¥É€¬¹ÍΞ€µ€ì€Æ€€€Ê€€ o [2001/01/25] ports/24638 ports Mesa-3.2.1_1 fails to build on 4.2-STABLE o [2001/01/25] kern/24640 Abocom usb ethernet adapter not supported 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/24649 ports New port: IBM's icu (International Compon o [2001/01/25] ports/24651 mharo portlint gives a bogus warning o [2001/01/25] conf/24652 rc.firewall contains incorrect ISBN numbe o [2001/01/25] bin/24654 /usr/bin/w doesn't close all files o [2001/01/26] ports/24658 ports Enhancement to src/release/Makefile o [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] ports/24682 ports pop3lite port is out of date o [2001/01/27] bin/24683 obscure natd(8) error message o [2001/01/27] ports/24685 ports Enable PP mode in SANE o [2001/01/27] misc/24687 ports QUAKE FORGE & SVGALIB o [2001/01/27] ports/24688 ports Full Screen Editor - MicroEmacs 4.0/PK-TO 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) o [2001/01/28] ports/24703 ports New port of 'libusb' to commit to the 'de o [2001/01/28] bin/24707 [patch] Whois IP Address Handling o [2001/01/29] ports/24713 ports New port: xmotd - message-of-the-day brow o [2001/01/29] ports/24726 ports update port: astro/seti_applet o [2001/01/29] ports/24728 ports dog port is out of date o [2001/01/30] bin/24730 tail -f barfs on files bigger than 2 Gig o [2001/01/30] bin/24732 cmp can not compare files lager 2GB but s o [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/30] misc/24750 unable to make reinstall on a fresh insta o [2001/01/31] docs/24751 doc [PATCH] Digest list descriptions are out o [2001/01/31] ports/24755 ports iconv port depends on /usr/share/mk from 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/01/31] ports/24758 ports New port: opeensched-0.1.0 o [2001/01/31] ports/24761 ports [NEW PORT] editors/chexedit - ncurses hex o [2001/01/31] bin/24762 pw doesn't allow false as a shell o [2001/01/31] misc/24764 Typo in src/libc_r/uthread/uthread_kevent o [2001/01/31] ports/24767 ports usage of WANT_GNOME is mistaken in ports/ o [2001/01/31] kern/24770 ATA_ENABLE_TAGS doesn't enable tags o [2001/01/31] ports/24771 ports New port: security/op - 1.11 o [2001/01/31] ports/24774 ports New port: BFBTester: Security tool for te o [2001/01/31] ports/24775 ports Gabber freezes upon login o [2001/02/01] ports/24777 ports ports/textproc/aspell is broken o [2001/02/01] conf/24781 MAKEDEV: rast* -> ast* o [2001/02/01] misc/24782 Duplicate fortune o [2001/02/01] ports/24783 ports port update: mail/mahogany - fix for inst 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/01] ports/24793 ports New port: japanese/kpcal (making postscri o [2001/02/02] docs/24797 phk when using MALLOC_DEFINE sys/param.h and o [2001/02/02] bin/24798 pac dumps core if printer accounting not o [2001/02/02] misc/24801 Copyright web page needs small correction o [2001/02/02] docs/24802 doc fcntl man page does not specify what happ o [2001/02/02] bin/24804 [PATCH] ps_showallprocs isn't documented. o [2001/02/02] ports/24805 ports New port: Fvwm-themes (for fvwm2-beta) o [2001/02/02] docs/24809 doc info on X and securelevels o [2001/02/02] ports/24812 ports Existing patch-ab and patch-ac invoke com o [2001/02/03] ports/24824 ports gphoto fails to start 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] ports/24837 ports [NEW PORT] security/fwbuilder - GUI ipfil o [2001/02/03] docs/24839 doc fix ether.bridge o [2001/02/04] gnu/24843 gcc does not recognize -kthread o [2001/02/04] gnu/24844 gdb does not support kernel threads o [2001/02/04] ports/24845 ports linuxthreads does not detect failed rfork o [2001/02/04] kern/24851 ISA PnP Modem Type is unregistered in sio o [2001/02/04] ports/24853 ports Change devel/libslang to not directly lin o [2001/02/04] ports/24855 ports New port of FSF GMP library o [2001/02/04] bin/24857 File descriptor leak and frequent crashes o [2001/02/04] ports/24858 ports new port for ocamlweb 0.9 o [2001/02/04] ports/24862 nakai Port assumes a directory exists that does f [2001/02/04] ports/24863 ports postfix-current version is now 20010204 o [2001/02/05] conf/24865 WITH FIX: /etc/rc.isdn overwrites $isdn_t o [2001/02/05] ports/24867 ports ftp/wget cannot be patched o [2001/02/05] docs/24869 doc Some text elf.5 is duplicated o [2001/02/05] ports/24880 sf Update port: print/pbm2ppa to pnm2ppa-1.0 o [2001/02/05] kern/24882 ktrace not syncing .out file before panic o [2001/02/05] ports/24885 ports Update Port: audio/icecast o [2001/02/05] docs/24887 doc "make -j# installworld" can (will?) fail o [2001/02/05] docs/24888 doc [PATCH] New FAQ entry about inappropriate o [2001/02/05] bin/24890 make top better o [2001/02/06] ports/24893 ports mail/solidpop3d installation problems o [2001/02/06] ports/24896 ports Problem installing xaos-3.0 port 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] ports/24906 eivind [UPGRADE PORT] devel/re2c 0.5 -> 0.9.1 o [2001/02/06] misc/24907 Options screen at MenuMedia menu problem o [2001/02/06] ports/24909 ports New port: Perl module for fetching and mo 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/24928 ports Update port: graphics/ImageMagick to 5.2. o [2001/02/07] ports/24931 mi Update port: graphics/sane to 1.0.4 (fix o [2001/02/07] ports/24934 ports Upgrade ports/lang/ghc to version 4.08.2 o [2001/02/07] ports/24935 gnats-adminFix for missing distfile for editors/yudi o [2001/02/07] ports/24939 ports [NEW PORT] graphics/xmms-avi - .avi and . o [2001/02/07] ports/24940 ports 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 o [2001/02/08] bin/24953 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] ports/24956 ports New port: games/tetrinet, A tetrinet clie o [2001/02/08] kern/24959 proper TCP_NOPUSH/TCP_CORK compatibility o [2001/02/08] kern/24960 ibcs2_enable="YES" in rc.conf does not en o [2001/02/08] kern/24962 properly delay acks in half-closed TCP co o [2001/02/08] i386/24963 perfmon(4) doesn't work on SMP systems o [2001/02/09] misc/24964 some reinstall misfunction o [2001/02/09] ports/24969 ports x3270 port won't finish install o [2001/02/09] bin/24971 pkg_delete -n should call delete_package( o [2001/02/09] ports/24976 ports gemdropx port is missing a dependency on o [2001/02/09] ports/24983 ports Emacs ports have misleading names o [2001/02/10] ports/24987 ports Courier mail server. o [2001/02/10] ports/24989 ports [PATCH] security/john has unfetchable dis o [2001/02/10] ports/24991 ports New port: eudc-emacs20 o [2001/02/10] ports/24994 ports New port: gnuserv-3.12.1 o [2001/02/10] kern/24998 More verbose logging for Joliet CDs o [2001/02/10] ports/24999 ports Missing lib in ports/mail/postifx* o [2001/02/11] docs/25000 doc matcd(4) SYNOPSIS is wrong o [2001/02/11] ports/25001 ports Update port: audio/xmp o [2001/02/11] ports/25003 ports New port: www/mod_throttle o [2001/02/11] misc/25004 it is easy for a user to lock the entire 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] misc/25014 junk files in ~ncvs/CVSROOT/commitlogs 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/11] kern/25019 Problem trying to build new kernel o [2001/02/11] ports/25021 ports [PATCH] emulators/spim has unfetchable di a [2001/02/11] bin/25028 imp make installworld uses wrong time o [2001/02/12] misc/25030 LINT (NOTES) has incomplete list of uses o [2001/02/12] pending/25031gnats-adminwww/apache: dbmmanage fails verifying md5 o [2001/02/12] ports/25032 obrien mail/mutt: wrong permissions of ${PREFIX} o [2001/02/12] ports/25033 ports pkg_version -c to support packages? o [2001/02/12] ports/25034 ports Allow sftp to interoperate with gftp. o [2001/02/12] kern/25039 -stable LINT missing the twe device o [2001/02/12] ports/25042 peter cvsup missed a couple of deletes in /usr/ o [2001/02/12] misc/25043 Tools directory on ftp site should includ o [2001/02/12] ports/25046 cg ports/audio/mpg123: Fixes for newpcm form o [2001/02/12] misc/25049 named.restart does not use named_flags fr o [2001/02/12] misc/25050 dwmalone inetd UDP echo service echos only 8K o [2001/02/12] docs/25053 doc kld(4) manpage is obsolete for -current o [2001/02/12] ports/25054 ports smbfs-1.3.5 port installs module into wro 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] ports/25063 ports new version of math/ntl port o [2001/02/13] pending/25065gnats-adminINN port is old o [2001/02/13] ports/25066 ports update port: net/jabber o [2001/02/13] ports/25068 ports [PATCH] ports/www/kannel update 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] ports/25073 ports cups bugfix version bump o [2001/02/13] ports/25077 ports Update port: graphics/ImageMagick to 5.2. o [2001/02/13] ports/25080 ports New port: ecgi: A library for the creatio o [2001/02/13] ports/25082 ports textproc/java2html is *very* outdated o [2001/02/13] bin/25085 mlxcontrol utility fails silently if devi o [2001/02/13] ports/25086 ports new port: net/aim-transport o [2001/02/13] ports/25087 ports new port: net/icq-transport o [2001/02/13] ports/25088 ports new port: net/irc-transport o [2001/02/13] ports/25089 ports new port: net/jud o [2001/02/13] ports/25090 ports new port: net/msn-transport o [2001/02/13] ports/25091 ports new port: net/yahoo-transport o [2001/02/13] ports/25092 ports new port: net/conference o [2001/02/14] ports/25094 ports NetSaint port creates netsaint user with o [2001/02/14] ports/25098 ports New port: net/hagelslag o [2001/02/14] ports/25099 ports libmcrypt moved into ./old/ dir at Master o [2001/02/14] ports/25101 ports New port: japanese/ical o [2001/02/14] ports/25106 ports "pkg_version -c" should "make install cle o [2001/02/14] ports/25108 ports Maintainer's update: japanese/samba o [2001/02/15] misc/25109 Fujitsu MO device MCC3064AP could't be c o [2001/02/15] ports/25111 ports cannot logout from KDE2 o [2001/02/15] ports/25112 ports math/gnuplot+ install demos o [2001/02/15] kern/25114 vinum kernel module is compiled without d o [2001/02/15] kern/25117 ICMP Destination Port Unreachable Error M o [2001/02/15] ports/25119 ports pango does not build on -current o [2001/02/15] docs/25124 doc No man pages for quota.user(5) and/or quo o [2001/02/15] docs/25126 doc minor nits in whatis(1) command o [2001/02/15] ports/25127 ports Update port: www/mod_python (by maintain o [2001/02/15] ports/25128 ports New Port o [2001/02/15] ports/25131 ports cannot install php with imap support o [2001/02/16] docs/25134 doc Kernel USER_LDT option help incomplete o [2001/02/16] ports/25135 ports x11/kdelibs2 builds failed... o [2001/02/16] ports/25137 ports New port: A curses word gam o [2001/02/16] ports/25139 ports [MAINTAINER UPDATE] audio/lopster 0.9.7_1 o [2001/02/16] docs/25142 doc my e-mail address is out of date in the l o [2001/02/16] ports/25143 ports new port: aggregate-1.1 (with port includ o [2001/02/16] ports/25144 ports upgrade port to 1.1 o [2001/02/16] ports/25145 ports new port of uisp o [2001/02/16] kern/25146 A tiny typo o [2001/02/16] misc/25147 [PATCH] to make D-Link DFE-650 work with o [2001/02/16] ports/25148 ports Update port: graphics/gifsicle to 1.25 o [2001/02/16] ports/25154 ports atmel AVR microcontroller in-circuit prog o [2001/02/16] bin/25156 Improved user-interface for mixer(8) o [2001/02/16] misc/25161 During install, after boot get message: P o [2001/02/16] misc/25162 syntax error in src/release/Makefile o [2001/02/17] ports/25163 ports make package fails for mail/lbdb o [2001/02/17] docs/25164 doc makewhatis(1) seems to be fouling up o [2001/02/17] ports/25169 ports [PATCH] update of p5-libwww port 1.62 -> o [2001/02/17] ports/25170 ports New port: tempest_for_eliza: A program to o [2001/02/17] ports/25171 ports [PATCH] update port net/mrtg -> 2.9.8 o [2001/02/17] ports/25172 ports New port: lexter: A word game for text co o [2001/02/17] kern/25173 How to use a PnP ISA modem card 1 o [2001/02/18] ports/25199 ports update ports mail/smapi (new version) o [2001/02/19] ports/25202 ports New port: oregano o [2001/02/19] ports/25203 ports Update port: mail/sylpheed o [2001/02/19] kern/25204 another isa/pnp modem for sio.c 1999 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 11: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 DFA0637B503 for ; Mon, 19 Feb 2001 11:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1JJe1o71310; Mon, 19 Feb 2001 11:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C7A9837B401 for ; Mon, 19 Feb 2001 11:34:40 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1JJYew70666; Mon, 19 Feb 2001 11:34:40 -0800 (PST) (envelope-from nobody) Message-Id: <200102191934.f1JJYew70666@freefall.freebsd.org> Date: Mon, 19 Feb 2001 11:34:40 -0800 (PST) From: mm@omnix.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25206: Kernel Panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25206 >Category: kern >Synopsis: Kernel Panic >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 19 11:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Meadele Mathieu >Release: FreeBSD-4.2-Stable >Organization: - >Environment: FreeBSD PAF 4.2-RELEASE FreeBSD 4.2-RELEASE #9: Wed Feb 7 22:01:11 CET 2001 root@PAF:/usr/src/sys/compile/PAF i386 >Description: By default, /dev/ttyp* have perm set to 0666, until someone remotely log in, in this case the user's ttyp is chmod'ed to 0600 and chown'ed to this user. if noone is remotely logged in, the next ttyp associated with telnet or ssh for example will be ttyp1. My box crashed if a local user open the next /dev/ttyp normally used for remote connection: luser@PAF$ w 8:37PM up 32 mins, 2 users, load averages: 0.41, 0.17, 0.14 USER TTY FROM LOGIN@ IDLE WHAT luser v0 - 8:08PM - w luser@PAF$ tail -f /dev/ttyp1 now ruser is going to connect to my box: ruser@NOWHERE$ telnet PAF Connection closed by foreign host. luser@PAF$ Fatal trap 12 = Page Fault while in kernel mode Fault virtual address = 0x88 Fault code = supervisor read, page not present Instruction pointer = 0x8:0xc0167c1b Stack pointer = 0x10:0xd11f2ecc Frame pointer = 0x10:0xd11f2ed0 Code segment = base 0x0, limit 0xfffff, type 0x1b = DLP 0, pres 1, def32 1, gran 1 Processor eflags = interrupt enabled, resume, IO PL=0 Current process = 257(tail) Interrupt mask = net tty bio cam trap number = 12 panic = page fault syncing disk: 13 13 13 [...] 13 13 giving up on 13 buffers uptime 32m36s Automatic reboot in 15 seconds... Have you this problem on your box ? It seems that a malicious local user can easily cause a denial of service like this. >How-To-Repeat: luser@A$ tail -f /dev/ttypx (where ttypx is the next ttyp associated with a remote connection) ruser@B$ telnet A -->machine A crashes >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 11:53:48 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 B296B37B4EC for ; Mon, 19 Feb 2001 11:53:44 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1JJrhZ72920 for freebsd-bugs@freebsd.org; Mon, 19 Feb 2001 11:53:43 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 19 Feb 2001 11:53:43 -0800 (PST) Message-Id: <200102191953.f1JJrhZ72920@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 X-Loop: FreeBSD.org Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2000/11/06] pending/22647gnats-admin o [2000/11/07] pending/22677gnats-admin(Was pr: misc/11525) similar behavior in o [2000/11/09] pending/22722gnats-adminRe: apache-jserv (fwd) o [2000/11/11] pending/22771gnats-adminRe: traceroute enhancement o [2000/11/23] pending/23054gnats-adminRe: maintainer update: security/nessus su o [2000/11/27] pending/23147gnats-admined driver hanging system o [2000/12/06] pending/23319gnats-adminRe: gogo: invalid source download locatio o [2000/12/10] pending/23453gnats-adminRe: New port: audio/gdrdao o [2000/12/13] pending/23519gnats-adminRe: xlock port doesn't check password o [2000/12/13] pending/23527gnats-adminRe: xlock port doesn't check password o [2000/12/14] pending/23542gnats-adminRe: xlock port doesn't check password o [2000/12/16] pending/23593gnats-adminpossible fix to awk(1) o [2000/12/19] pending/23676gnats-adminRe: libc_r: non-delivery of previously bl o [2000/12/20] pending/23689gnats-adminRe: libc_r: non-delivery of previously bl o [2000/12/26] pending/23869gnats-adminRe: your mail o [2000/12/26] pending/23876gnats-adminsmpeg-xmms port fail to compile o [2000/12/27] pending/23885gnats-admin=09New port: quelcom: A set of command-li o [2000/12/27] pending/23888gnats-admin=09New port: quelcom: A set of command-li o [2000/12/27] pending/23896gnats-adminRe: o [2000/12/27] pending/23898gnats-admin=09New port: quelcom: A set of command-li o [2000/12/31] pending/23979gnats-adminRe: patch: ports/audio/linux-realplayer o [2001/01/01] pending/24006gnats-admin=09New port: httrack: An easy to use offl o [2001/01/01] pending/24015gnats-admin01-01-2001 o [2001/01/01] pending/24016gnats-admin01-01-2001 o [2001/01/03] pending/24037gnats-admin o [2001/01/09] pending/24187gnats-adminRe: Updated port: mail/elm+ME - 2.4ME+87 o [2001/01/09] pending/24190gnats-adminnew port o [2001/01/09] pending/24195gnats-adminNew port o [2001/01/10] pending/24215gnats-adminRe: Updated port: mail/elm+ME - 2.4ME+87 o [2001/01/10] pending/24216gnats-adminnew port: kde-i18n-pl o [2001/01/10] pending/24217gnats-adminnew port: ssmtp o [2001/01/10] pending/24240gnats-adminRe: Updated port: mail/elm+ME - 2.4ME+87 o [2001/01/20] pending/24477gnats-adminRe: syslogd(8) does not update hostname o [2001/01/20] pending/24482gnats-adminRe: syslogd(8) does not update hostname o [2001/01/20] pending/24483gnats-adminRe: syslogd(8) does not update hostname o [2001/01/20] pending/24484gnats-adminRe: syslogd(8) does not update hostname o [2001/01/24] pending/24599gnats-adminNew ports collection: youbin-3.4 o [2001/01/31] pending/24760gnats-admininstallkernel fails trying to install *.m o [2001/02/04] pending/24859gnats-admin o [2001/02/04] pending/24860gnats-admin o [2001/02/11] pending/25010gnats-admin o [2001/02/11] pending/25020gnats-admintest o [2001/02/14] pending/25096gnats-admintest o [2001/02/14] pending/25097gnats-adminms-dos version 3.0 o [2001/02/14] pending/25100gnats-admin< port update> 45 problems total. Non-critical problems To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 11:56: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 46A7037B65D; Mon, 19 Feb 2001 11:56:18 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1JJuIa73203; Mon, 19 Feb 2001 11:56:18 -0800 (PST) (envelope-from peter) Date: Mon, 19 Feb 2001 11:56:18 -0800 (PST) From: Message-Id: <200102191956.f1JJuIa73203@freefall.freebsd.org> To: peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/22647: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: peter Responsible-Changed-When: Mon Feb 19 11:54:45 PST 2001 Responsible-Changed-Why: Misfiled http://www.freebsd.org/cgi/query-pr.cgi?pr=22647 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 12: 5: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 9BB2E37B491; Mon, 19 Feb 2001 12:05:50 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1JK5oJ77105; Mon, 19 Feb 2001 12:05:50 -0800 (PST) (envelope-from peter) Date: Mon, 19 Feb 2001 12:05:50 -0800 (PST) From: Message-Id: <200102192005.f1JK5oJ77105@freefall.freebsd.org> To: peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/24760: installkernel fails trying to install *.mk files Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: installkernel fails trying to install *.mk files Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: peter Responsible-Changed-When: Mon Feb 19 12:04:51 PST 2001 Responsible-Changed-Why: Misfiled http://www.freebsd.org/cgi/query-pr.cgi?pr=24760 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 13: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 516A637B4EC for ; Mon, 19 Feb 2001 13:50:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1JLo3q94192; Mon, 19 Feb 2001 13:50:03 -0800 (PST) (envelope-from gnats) Received: from netau1.alcanet.com.au (ntp.alcanet.com.au [203.62.196.27]) by hub.freebsd.org (Postfix) with ESMTP id A788C37B491 for ; Mon, 19 Feb 2001 13:42:19 -0800 (PST) Received: from mfg1.cim.alcatel.com.au (mfg1.cim.alcatel.com.au [139.188.23.1]) by netau1.alcanet.com.au (8.9.3 (PHNE_22672)/8.9.3) with ESMTP id IAA11992 for ; Tue, 20 Feb 2001 08:42:12 +1100 (EDT) Received: from gsmx07.alcatel.com.au by cim.alcatel.com.au (PMDF V5.2-32 #37645) with ESMTP id <01K0BSCVTLZ4O2JOE7@cim.alcatel.com.au> for FreeBSD-gnats-submit@freebsd.org; Tue, 20 Feb 2001 08:42:00 +1100 Received: (from jeremyp@localhost) by gsmx07.alcatel.com.au (8.11.1/8.11.1) id f1JLg6m96100; Tue, 20 Feb 2001 08:42:06 +1100 (EST envelope-from jeremyp) Message-Id: <200102192142.f1JLg6m96100@gsmx07.alcatel.com.au> Date: Tue, 20 Feb 2001 08:42:06 +1100 (EST) From: peter.jeremy@alcatel.com.au Reply-To: peter.jeremy@alcatel.com.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/25213: Bus abstraction interface doesn't allow physical device addresses Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25213 >Category: kern >Synopsis: Bus abstraction interface doesn't allow physical device addresses >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 19 13:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Peter Jeremy >Release: FreeBSD 5.0-CURRENT alpha >Organization: Alcatel Australia Limited >Environment: System: FreeBSD multia.alcatel.com.au 5.0-CURRENT FreeBSD 5.0-CURRENT #4: Fri Feb 9 20:26:31 EST 2001 root@:/usr/obj/usr/src/sys/multia alpha >Description: This is not so much a software bug as a design bug, but there's no class for the latter. The existing bus abstraction interface does not provide any mechanism to access a device by a `physical' address (bus type, location on bus). During early kernel initialisation, it is necessary to switch from the firmware (BIOS/SRM/...) console to the FreeBSD console (typically syscons). This switch currently occurs very early in the kernel startup - well before device probing has occurred. Typically, the firmware will provide the kernel with the console device location as a physical location (eg PCI bus, bus number, slot number, function). In -STABLE, this access is possible (for the PCI bus) using pci_cfg{read,write}(), and (on the Alpha) pci_cvt_to_{sparse,dense}(). Following the re-organisation of device access in -CURRENT, these interfaces are no longer implemented (though there are still prototypes for the pci_cvt_to_{sparse,dense}() functions). The bus abstraction interface implemented in -CURRENT has no mechanism to provide access via an address in a `physical' format. Instead, the interface relies on access via a bus hierarchy starting at (what used to be) nexus. This interface cannot be used during system console initialisation for two reasons: Firstly, the device probing has not yet occurred so the necessary device_t information is not available. Secondly, the firmware provides the address in a physical format which cannot be easily translated into a device_t. Currently, FreeBSD in the i386 and Alpha supports two console types - serial and VGA. (I'm not sure how the ia64, Sun and PPC consoles work). In both cases, the console initialisation is achieved via a hack: The VGA console is assumed to be at a fixed address on the ISA bus. A serial console must also be at a known address on the ISA bus and is identified via a hints flag. On an i386, no firmware console information is used. On the Alpha, only the serial or graphical information is used. The actual console location is ignored. I identified this problem whilst trying to port a TGA console driver to -CURRENT. (The TGA is a PCI only device and hence does not have any known fixed addresses that can be hard-coded into the driver). Whilst my particular problem is Alpha- specific, there is a general problem with trying to create new console types. >How-To-Repeat: Create a -CURRENT driver for a system console that is located at an arbitrary PCI location. >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 Mon Feb 19 14: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 88C4E37B65D for ; Mon, 19 Feb 2001 14:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1JMK1A01295; Mon, 19 Feb 2001 14:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA8D637B491 for ; Mon, 19 Feb 2001 14:14:52 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1JMEqM00649; Mon, 19 Feb 2001 14:14:52 -0800 (PST) (envelope-from nobody) Message-Id: <200102192214.f1JMEqM00649@freefall.freebsd.org> Date: Mon, 19 Feb 2001 14:14:52 -0800 (PST) From: jackmays@earthlink.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/25214: Installing 4.2, and after the initial setup, BSD tries to init the HD's and create the partitions. My computer starts the process and then automacially reboots everytime. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25214 >Category: i386 >Synopsis: Installing 4.2, and after the initial setup, BSD tries to init the HD's and create the partitions. My computer starts the process and then automacially reboots everytime. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 19 14:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jack Mays >Release: 4.2 >Organization: Celco Software >Environment: >Description: After i choose Custom Install and finish all of it, you get to a window that says "ARE YOU SURE YOU WANT TO blah blah blah..." after this step the loader is supposed to format/partition your HDs and proceed to install packages.. My computer on the other hand reboots automacially when attempting to repartition the HD's. Computer is: Tomato board from Zida.com 1 - AMD 6k-2 500 64 meg EDO ram(yea i know) 2 meg graphic S3 video card 3 - 2.1 gig HD's (quantum fireball and 2 seagate's) If you need any other specs let me know. Thank you and have a good day. >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 Feb 19 15: 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 B14C937B401 for ; Mon, 19 Feb 2001 15:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1JN02O05362; Mon, 19 Feb 2001 15:00:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6929137B401 for ; Mon, 19 Feb 2001 14:53:54 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1JMrsb04662; Mon, 19 Feb 2001 14:53:54 -0800 (PST) (envelope-from nobody) Message-Id: <200102192253.f1JMrsb04662@freefall.freebsd.org> Date: Mon, 19 Feb 2001 14:53:54 -0800 (PST) From: satz@iranger.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25215: RELENG_4 kernel crashes starting SCSI disks with ahc Adaptec 274X Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25215 >Category: kern >Synopsis: RELENG_4 kernel crashes starting SCSI disks with ahc Adaptec 274X >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 19 15:00:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Greg Satz >Release: 4.X Stable >Organization: >Environment: FreeBSD fnu.iranger.com 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #0: Tue Sep 26 00:46:59 GMT 2000 jkh@narf.osd.bsdi.com:/usr/src/sys/compile/GENERIC i386 >Description: This is a repeat of a similar problem that I reported earilier. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=22762 When kernel with Adaptexc 274X (EISA) boots, it crashes soon after initializing the SCSI Disks. The generic kernel works as did the kernel from the previous fix. >How-To-Repeat: ok ? Available commands: reboot reboot the system heap show heap usage bcachestat get disk block cache stats boot boot a file or loaded kernel autoboot boot automatically after a delay help detailed help ? list commands show show variable(s) set set a variable unset unset a variable more show contents of a file lsdev list all devices include read commands from a file ls list files load load a kernel or module unload unload all modules lsmod list loaded modules pnpscan scan for PnP devices ok boot SMAP type=01 base=00000000 00000000 len=00000000 0009fc00 SMAP type=01 base=00000000 0009fc00 len=00000000 00000400 SMAP type=02 base=00000000 000f0000 len=00000000 00010000 SMAP type=01 base=00000000 00100000 len=00000000 04700000 SMAP type=02 base=00000000 fee00000 len=00000000 00001000 SMAP type=02 base=00000000 ffff0000 len=00000000 00010000 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.2-STABLE #1: Mon Feb 19 08:33:49 MST 2001 root@fnu.iranger.com:/usr/src/sys/compile/IRANGER Calibrating clock(s) ... TSC clock: 166455199 Hz, i8254 clock: 1193228 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz CLK_USE_TSC_CALIBRATION not specified - using old calibration method Timecounter "TSC" frequency 166449658 Hz CPU: Pentium/P54C (166.45-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x52c Stepping = 12 Features=0x3bf real memory = 75497472 (73728K bytes) Physical memory chunk(s): 0x00001000 - 0x0009ffff, 651264 bytes (159 pages) 0x00317000 - 0x047f7fff, 72224768 bytes (17633 pages) avail memory = 70467584 (68816K bytes) bios32: Found BIOS32 Service Directory header at 0xc00fa570 bios32: Entry = 0xfa8a0 (c00fa8a0) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xa8d0 Other BIOS signatures found: ACPI: 00000000 Preloaded elf kernel "kernel" at 0xc02f1000. Intel Pentium detected, installing workaround for F00F bug Math emulator present pci_open(1): mode 1 addr port (0x0cf8) is 0x00000000 pci_open(1a): mode1res=0x00000000 (0x80000000) pci_open(1b): mode1res=0x80000000 (0xff000001) pci_cfgcheck: device 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 2 23 24 25 26 27 28 29 30 31 -- nothing found pci_open(2): mode 2 enable port (0x0cf8) is 0x00 pci_open(2a): mode2res=0x0e (0x0e) pci_open(2a): now trying mechanism 2 pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=04a38086) npx0: on motherboard npx0: INT 16 interface i586_bzero() bandwidth = 74476800 bytes/sec bzero() bandwidth = 37280047 bytes/sec pci_open(1): mode 1 addr port (0x0cf8) is 0x00000000 pci_open(1a): mode1res=0x00000000 (0x80000000) pci_open(1b): mode1res=0x80000000 (0xff000001) pci_cfgcheck: device 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 2 23 24 25 26 27 28 29 30 31 -- nothing found pci_open(2): mode 2 enable port (0x0cf8) is 0x00 pci_open(2a): mode2res=0x0e (0x0e) pci_open(2a): now trying mechanism 2 pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=04a38086) pcib0: on motherboard found-> vendor=0x8086, dev=0x04a3, revid=0x11 class=06-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 found-> vendor=0x8086, dev=0x0482, revid=0x05 class=00-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 found-> vendor=0x9004, dev=0x7478, revid=0x03 class=01-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=5 map[10]: type 1, range 32, base 00006000, size 8 map[14]: type 1, range 32, base f4001000, size 12 found-> vendor=0x1106, dev=0x3043, revid=0x06 class=02-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=9 map[10]: type 1, range 32, base 00006100, size 7 map[14]: type 1, range 32, base f4000000, size 7 found-> vendor=0x5333, dev=0x5631, revid=0x06 class=03-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=10 map[10]: type 1, range 32, base f0000000, size 26 pci0: on pcib0 CPU: Pentium, 100MHz, CPU->Memory posting ON Warning: Cache parity disabled! Warning: DRAM parity mask! Cache: 512KB writeback, cache clocks=3-2-2-2/4-2-2-2 Cache flags: byte-control DRAM: page mode memory clocks=X-4-4-4 (70ns) CPU->PCI: posting ON, burst mode OFF, PCI clocks=2-1-1-1 PCI->Memory: posting OFF Refresh: RAS#Only isab0: at device 2.0 on pci0 eisa0: on isab0 mainboard0: on eisa0 slot 0 ahc0: at 0x4c00-0x4cff, irq 11 (level) ahc0: on eisa0 slot 4 ahc0: Downloading Sequencer Program... 411 instructions downloaded aic7770: Twin Channel, A SCSI Id=7, B SCSI Id=7, primary A, 4/255 SCBs isa0: on isab0 ahc1: port 0x6000-0x60ff mem 0xf4001000-0xf4001fff i rq 5 at device 13.0 on pci0 ahc1: Reading SEEPROM...done. ahc1: Low byte termination Enabled ahc1: High byte termination Enabled ahc1: Downloading Sequencer Program... 409 instructions downloaded aic7870: Wide Channel A, SCSI Id=7, 16/255 SCBs vr0: port 0x6100-0x617f mem 0xf4000000-0xf4000 07f irq 9 at device 14.0 on pci0 vr0: Ethernet address: 00:80:c8:e1:1d:85 miibus0: on vr0 amphy0: on miibus0 amphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto bpf: vr0 attached pci0: (vendor=0x5333, dev=0x5631) at 15.0 irq 10 Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0x0000 ata0: mask=00 status0=ff status1=ff ata0: probe allocation failed ata0 failed to probe at port 0x1f0-0x1f7,0x3f6 irq 14 on isa0 ata1: iobase=0x0170 altiobase=0x0376 bmaddr=0x0000 ata1: mask=00 status0=ff status1=ff ata1: probe allocation failed ata1 failed to probe at port 0x170-0x177,0x376 irq 15 on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0065 atkbd: keyboard ID 0x41ab (2) kbdc: RESET_KBD return code:00fa kbdc: RESET_KBD status:00aa kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x1, flags:0x1d0000 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 fb0: vga0, vga, type:VGA (5), flags:0x7007f fb0: port:0x3c0-0x3df, crtc:0x3d4, mem:0xa0000 0x20000 fb0: init mode:24, bios mode:3, current mode:24 fb0: window:0xc00b8000 size:32k gran:32k, buf:0 size:32k VGA parameters upon power-up 50 18 10 00 00 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0e 0f 00 00 07 80 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff VGA parameters in BIOS for mode 24 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff EGA/VGA parameters to be used for mode 24 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x100> sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) sio0: irq maps: 0x41 0x51 0x41 0x41 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16450, console sio1: irq maps: 0x41 0x49 0x41 0x41 sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16450 sio2: irq maps: 0x41 0x1041 0x41 0x41 sio2 at port 0x100-0x107 flags 0x905 on isa0 sio2: type 16550A (multiport) sio3: irq maps: 0x41 0x1041 0x41 0x41 sio3 at port 0x108-0x10f flags 0x905 on isa0 sio3: type 16550A (multiport) sio4: irq maps: 0x41 0x1041 0x41 0x41 sio4 at port 0x110-0x117 flags 0x905 on isa0 sio4: type 16550A (multiport) sio5: irq maps: 0x41 0x1041 0x41 0x41 sio5 at port 0x118-0x11f flags 0x905 on isa0 sio5: type 16550A (multiport) sio6: irq maps: 0x41 0x1041 0x41 0x41 sio6 at port 0x120-0x127 flags 0x905 on isa0 sio6: type 16550A (multiport) sio7: irq maps: 0x41 0x1041 0x41 0x41 sio7 at port 0x128-0x12f flags 0x905 on isa0 sio7: type 16550A (multiport) sio8: irq maps: 0x41 0x1041 0x41 0x41 sio8 at port 0x130-0x137 flags 0x905 on isa0 sio8: type 16550A (multiport) sio9: irq maps: 0x41 0x1041 0x41 0x41 sio9 at port 0x138-0x13f irq 12 flags 0x905 on isa0 sio9: type 16550A (multiport master) ppc0: parallel port found at 0x378 ppc0: using extended I/O port range ppc0: SPP ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 isa_probe_children: probing PnP devices BIOS Geometries: 0:03fefe3f 0..1022=1023 cylinders, 0..254=255 heads, 1..63=63 sectors 0 accounted for Device configuration finished. bpf: lo0 attached Waiting 5 seconds for SCSI devices to settle (noperiph:ahc0:0:-1:-1): SCSI bus reset delivered. 0 SCBs aborted. (noperiph:ahc0:1:-1:-1): SCSI bus reset delivered. 0 SCBs aborted. (noperiph:ahc1:0:-1:-1): SCSI bus reset delivered. 0 SCBs aborted. ahc0: No free or disconnected SCBs ahc0: Dumping Card State at SEQADDR 0x19a SCB count = 20 Kernel NEXTQSCB = 16 Card NEXTQSCB = 3 QINFIFO entries: 3 2 1 0 19 18 17 Waiting Queue entries: Disconnected Queue entries: QOUTFIFO entries: Sequencer Free SCB List: Pending list: 6 15 17 18 19 0 1 2 3 Kernel Free SCB list: 4 5 7 8 9 14 13 12 11 10 Untagged Q(0): 2 Untagged Q(1): 1 Untagged Q(2): 0 Untagged Q(3): 19 6 Untagged Q(4): 18 Untagged Q(5): 17 Untagged Q(6): 3 15 panic: for safety syncing disks... done Uptime: 7s Automatic reboot in 15 seconds - press a key on the console to abort --> Press a key on the console to reboot <-- Rebooting... >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 15:25:45 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from surreal.nl (surreal.nl [212.204.236.10]) by hub.freebsd.org (Postfix) with ESMTP id C323637B698 for ; Mon, 19 Feb 2001 15:25:34 -0800 (PST) Received: by surreal.nl (Postfix, from userid 666) id E01137FE9B; Tue, 20 Feb 2001 00:01:40 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by surreal.nl (Postfix) with ESMTP id 8E3529EE75 for ; Tue, 20 Feb 2001 00:01:39 +0100 (CET) Date: Tue, 20 Feb 2001 00:01:39 +0100 (CET) From: "Walter W. Hop" To: FreeBSD bugs Subject: OpenSSH <-> SSH.com's SSH2 incompatible? Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-2051247766-982623422=:22640" Content-ID: X-Virus-Scanned: This message passed the virus scan (BinityScan 0.9/AVP) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-2051247766-982623422=:22640 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-ID: Hi all, after the ssh advisory of last week I have patched a box and tried if SSH2 works out. All good at first sight, but I can't get the FreeBSD-supplied OpenSSH and SSH.com's client/servers to talk to eachother. [connect with ssh.com client to OpenSSH server] % ssh -V ssh: SSH Secure Shell 2.4.0 (non-commercial version) on i386-unknown-freebsd4.0 % ssh warning: Authentication failed. Disconnected; MAC error (Message authentication check fails.). [connect with OpenSSH client to ssh.com server] % ssh -V SSH version OpenSSH_2.2.0, protocol versions 1.5/2.0. Compiled with SSL (0x0090581f). % ssh -2 Disconnecting: Corrupted HMAC on input. Attached are the 'verbose' outputs of both commands. Several other SSH2 clients (including some of ssh.com's own clients) are able to connect to both servers without problems. I guess this might be just a configuration error, if so, as probably lots of other people have deployed ssh.com's toolset, it might be advisable to change the default configuration.. I don't know if I should send this to the OpenSSH people because they're already 0.3 versions ahead ;-) grtx, walter -- Walter W. Hop | +31 6 24290808 | PGP key: 0x84813998 --0-2051247766-982623422=:22640 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; NAME="ssh240.log" Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: ssh-to-openssh Content-Disposition: ATTACHMENT; FILENAME="ssh240.log" ZGVidWc6IGhvc3RuYW1lIGlzICctLS0nLg0KZGVidWc6IFVuYWJsZSB0byBv cGVuIC9ob21lL3dhbHRlci8uc3NoMi9zc2gyX2NvbmZpZw0KZGVidWc6IGNv bm5lY3RpbmcgdG8gLS0tLi4uDQpkZWJ1ZzogZW50ZXJpbmcgZXZlbnQgbG9v cA0KZGVidWc6IHNzaF9jbGllbnRfd3JhcDogY3JlYXRpbmcgdHJhbnNwb3J0 IHByb3RvY29sDQpkZWJ1ZzogU3NoQXV0aE1ldGhvZENsaWVudC9zc2hhdXRo bWV0aG9kYy5jOjExNy9zc2hfY2xpZW50X2F1dGhlbnRpY2F0aW9uX2luaXRp YWxpemU6IEFkZGVkICJwdWJsaWNrZXkiIHRvIHVzYWJsZSBtZXRob2RzLg0K ZGVidWc6IFNzaEF1dGhNZXRob2RDbGllbnQvc3NoYXV0aG1ldGhvZGMuYzox MTcvc3NoX2NsaWVudF9hdXRoZW50aWNhdGlvbl9pbml0aWFsaXplOiBBZGRl ZCAicGFzc3dvcmQiIHRvIHVzYWJsZSBtZXRob2RzLg0KZGVidWc6IFNzaDJD bGllbnQvc3NoY2xpZW50LmM6MTE0Mi9zc2hfY2xpZW50X3dyYXA6IGNyZWF0 aW5nIHVzZXJhdXRoIHByb3RvY29sDQpkZWJ1ZzogU3NoMkNvbW1vbi9zc2hj b21tb24uYzo1MDIvc3NoX2NvbW1vbl93cmFwOiBsb2NhbCBpcCA9IC0tLSwg bG9jYWwgcG9ydCA9IDIwOTgNCmRlYnVnOiBTc2gyQ29tbW9uL3NzaGNvbW1v bi5jOjUwNC9zc2hfY29tbW9uX3dyYXA6IHJlbW90ZSBpcCA9IC0tLSwgcmVt b3RlIHBvcnQgPSAyMg0KZGVidWc6IFNzaENvbm5lY3Rpb24vc3NoY29ubi5j OjE4NjYvc3NoX2Nvbm5fd3JhcDogV3JhcHBpbmcuLi4NCmRlYnVnOiBTc2gy VHJhbnNwb3J0L3RyY29tbW9uLmM6NTk5L3NzaF90cl9pbnB1dF92ZXJzaW9u OiBSZW1vdGUgdmVyc2lvbjogU1NILTEuOTktT3BlblNTSF8yLjIuMA0KZGVi dWc6IFNzaDJUcmFuc3BvcnQvdHJjb21tb24uYzo3ODkvc3NoX3RyX2lucHV0 X3ZlcnNpb246IFJlbW90ZSB2ZXJzaW9uIGhhcyByZWtleSBpbmNvbXBhdGli aWxpdHkgYnVnLg0KZGVidWc6IFNzaDJUcmFuc3BvcnQvdHJjb21tb24uYzox MTIwL3NzaF90cl9uZWdvdGlhdGU6IGNfdG9fczogY2lwaGVyIDNkZXMtY2Jj LCBtYWMgaG1hYy1zaGExLCBjb21wcmVzc2lvbiBub25lDQpkZWJ1ZzogU3No MlRyYW5zcG9ydC90cmNvbW1vbi5jOjExMjMvc3NoX3RyX25lZ290aWF0ZTog c190b19jOiBjaXBoZXIgM2Rlcy1jYmMsIG1hYyBobWFjLXNoYTEsIGNvbXBy ZXNzaW9uIG5vbmUNCmRlYnVnOiBTc2gyQ2xpZW50L3NzaGNsaWVudC5jOjQw Ni9rZXljaGVja19rZXlfbWF0Y2g6IEhvc3Qga2V5IGZvdW5kIGZyb20gZGF0 YWJhc2UuDQpkZWJ1ZzogU3NoMkNvbW1vbi9zc2hjb21tb24uYzoxMzcvc3No X2NvbW1vbl9kaXNjb25uZWN0OiBESVNDT05ORUNUIHJlY2VpdmVkOiBNZXNz YWdlIGF1dGhlbnRpY2F0aW9uIGNoZWNrIGZhaWxzLg0Kd2FybmluZzogQXV0 aGVudGljYXRpb24gZmFpbGVkLg0KZGVidWc6IFNzaDIvc3NoMi5jOjg1L2Ns aWVudF9kaXNjb25uZWN0OiBsb2NhbGx5X2dlbmVyYXRlZCA9IFRSVUUNCkRp c2Nvbm5lY3RlZDsgTUFDIGVycm9yIChNZXNzYWdlIGF1dGhlbnRpY2F0aW9u IGNoZWNrIGZhaWxzLikuDQpkZWJ1ZzogdW5pbml0aWFsaXppbmcgZXZlbnQg bG9vcA0K --0-2051247766-982623422=:22640 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; NAME="openssh.log" Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: openssh-to-ssh Content-Disposition: ATTACHMENT; FILENAME="openssh.log" U1NIIFZlcnNpb24gT3BlblNTSF8yLjIuMCwgcHJvdG9jb2wgdmVyc2lvbnMg MS41LzIuMC4NCkNvbXBpbGVkIHdpdGggU1NMICgweDAwOTA1ODFmKS4NCmRl YnVnOiBSZWFkaW5nIGNvbmZpZ3VyYXRpb24gZGF0YSAvZXRjL3NzaC9zc2hf Y29uZmlnDQpkZWJ1Zzogc3NoX2Nvbm5lY3Q6IGdldHVpZCAwIGdldGV1aWQg MCBhbm9uIDANCmRlYnVnOiBDb25uZWN0aW5nIHRvIC0tLSBwb3J0IDIyLg0K ZGVidWc6IEFsbG9jYXRlZCBsb2NhbCBwb3J0IDk5NC4NCmRlYnVnOiBDb25u ZWN0aW9uIGVzdGFibGlzaGVkLg0KZGVidWc6IFJlbW90ZSBwcm90b2NvbCB2 ZXJzaW9uIDEuOTksIHJlbW90ZSBzb2Z0d2FyZSB2ZXJzaW9uIDIuNC4wIFNT SCBTZWN1cmUgU2hlbGwgKG5vbi1jb21tZXJjaWFsKQ0KZGF0YWZlbGxvd3M6 IDIuNC4wIFNTSCBTZWN1cmUgU2hlbGwgKG5vbi1jb21tZXJjaWFsKQ0KRW5h YmxpbmcgY29tcGF0aWJpbGl0eSBtb2RlIGZvciBwcm90b2NvbCAyLjANCmRl YnVnOiBMb2NhbCB2ZXJzaW9uIHN0cmluZyBTU0gtMi4wLU9wZW5TU0hfMi4y LjANCmRlYnVnOiBzZW5kIEtFWElOSVQNCmRlYnVnOiBkb25lDQpkZWJ1Zzog d2FpdCBLRVhJTklUDQpkZWJ1ZzogZ290IGtleGluaXQ6IGRpZmZpZS1oZWxs bWFuLWdyb3VwMS1zaGExDQpkZWJ1ZzogZ290IGtleGluaXQ6IHNzaC1kc3MN CmRlYnVnOiBnb3Qga2V4aW5pdDogM2Rlcy1jYmMsYmxvd2Zpc2gtY2JjLHR3 b2Zpc2gtY2JjLGFyY2ZvdXIsY2FzdDEyOC1jYmMsM2Rlcy1lY2IsM2Rlcy1j ZmIsM2Rlcy1vZmIsY2FzdDEyOC1lY2IsY2FzdDEyOC1jZmIsY2FzdDEyOC1v ZmIsY2FzdDEyOC0xMi1lY2IsY2FzdDEyOC0xMi1jYmMsY2FzdDEyOC0xMi1j ZmIsY2FzdDEyOC0xMi1vZmIsYmxvd2Zpc2gtZWNiLGJsb3dmaXNoLWNmYixi bG93ZmlzaC1vZmIsZGVzLWVjYixkZXMtY2JjLGRlcy1jZmIsZGVzLW9mYix0 d29maXNoLWVjYix0d29maXNoLWNmYix0d29maXNoLW9mYg0KZGVidWc6IGdv dCBrZXhpbml0OiAzZGVzLWNiYyxibG93ZmlzaC1jYmMsdHdvZmlzaC1jYmMs YXJjZm91cixjYXN0MTI4LWNiYywzZGVzLWVjYiwzZGVzLWNmYiwzZGVzLW9m YixjYXN0MTI4LWVjYixjYXN0MTI4LWNmYixjYXN0MTI4LW9mYixjYXN0MTI4 LTEyLWVjYixjYXN0MTI4LTEyLWNiYyxjYXN0MTI4LTEyLWNmYixjYXN0MTI4 LTEyLW9mYixibG93ZmlzaC1lY2IsYmxvd2Zpc2gtY2ZiLGJsb3dmaXNoLW9m YixkZXMtZWNiLGRlcy1jYmMsZGVzLWNmYixkZXMtb2ZiLHR3b2Zpc2gtZWNi LHR3b2Zpc2gtY2ZiLHR3b2Zpc2gtb2ZiDQpkZWJ1ZzogZ290IGtleGluaXQ6 IGhtYWMtc2hhMSxobWFjLXNoYTEtOTYsaG1hYy1tZDUsaG1hYy1tZDUtOTYs aG1hYy1yaXBlbWQxNjAsaG1hYy1yaXBlbWQxNjAtOTYsc2hhMS04LHNoYTEs bWQ1LTgsbWQ1LHJpcGVtZDE2MC04LHJpcGVtZDE2MA0KZGVidWc6IGdvdCBr ZXhpbml0OiBobWFjLXNoYTEsaG1hYy1zaGExLTk2LGhtYWMtbWQ1LGhtYWMt bWQ1LTk2LGhtYWMtcmlwZW1kMTYwLGhtYWMtcmlwZW1kMTYwLTk2LHNoYTEt OCxzaGExLG1kNS04LG1kNSxyaXBlbWQxNjAtOCxyaXBlbWQxNjANCmRlYnVn OiBnb3Qga2V4aW5pdDogbm9uZSx6bGliDQpkZWJ1ZzogZ290IGtleGluaXQ6 IG5vbmUsemxpYg0KZGVidWc6IGdvdCBrZXhpbml0OiANCmRlYnVnOiBnb3Qg a2V4aW5pdDogDQpkZWJ1ZzogZmlyc3Qga2V4IGZvbGxvdzogMCANCmRlYnVn OiByZXNlcnZlZDogMCANCmRlYnVnOiBkb25lDQpkZWJ1Zzoga2V4OiBzZXJ2 ZXItPmNsaWVudCAzZGVzLWNiYyBobWFjLXNoYTEgbm9uZQ0KZGVidWc6IGtl eDogY2xpZW50LT5zZXJ2ZXIgM2Rlcy1jYmMgaG1hYy1zaGExIG5vbmUNCmRl YnVnOiBTZW5kaW5nIFNTSDJfTVNHX0tFWERIX0lOSVQuDQpkZWJ1ZzogYml0 cyBzZXQ6IDUxNS8xMDI0DQpkZWJ1ZzogV2FpdCBTU0gyX01TR19LRVhESF9S RVBMWS4NCmRlYnVnOiBHb3QgU1NIMl9NU0dfS0VYREhfUkVQTFkuDQpkZWJ1 ZzogSG9zdCAnLS0tJyBpcyBrbm93biBhbmQgbWF0Y2hlcyB0aGUgRFNBIGhv c3Qga2V5Lg0KZGVidWc6IGJpdHMgc2V0OiA1MzgvMTAyNA0KZGVidWc6IGxl biA1NSBkYXRhZmVsbG93cyAyMA0KZGVidWc6IGRzYV92ZXJpZnk6IHNpZ25h dHVyZSBjb3JyZWN0DQpkZWJ1ZzogV2FpdCBTU0gyX01TR19ORVdLRVlTLg0K ZGVidWc6IEdPVCBTU0gyX01TR19ORVdLRVlTLg0KZGVidWc6IHNlbmQgU1NI Ml9NU0dfTkVXS0VZUy4NCmRlYnVnOiBkb25lOiBzZW5kIFNTSDJfTVNHX05F V0tFWVMuDQpkZWJ1ZzogZG9uZTogS0VYMi4NCmRlYnVnOiBzZW5kIFNTSDJf TVNHX1NFUlZJQ0VfUkVRVUVTVA0KRGlzY29ubmVjdGluZzogQ29ycnVwdGVk IEhNQUMgb24gaW5wdXQuDQpkZWJ1ZzogQ2FsbGluZyBjbGVhbnVwIDB4ODA1 YjIzNCgweDApDQo= --0-2051247766-982623422=:22640-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 16:50: 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 80AA337B4EC for ; Mon, 19 Feb 2001 16:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1K0o1D19141; Mon, 19 Feb 2001 16:50:01 -0800 (PST) (envelope-from gnats) Received: from dataloss.net (massive.dataloss.net [212.189.232.193]) by hub.freebsd.org (Postfix) with SMTP id 9CB6637B4EC for ; Mon, 19 Feb 2001 16:43:44 -0800 (PST) Received: (qmail 897 invoked by uid 1000); 20 Feb 2001 00:40:48 -0000 Message-Id: <20010220004048.896.qmail@massive.dataloss.net> Date: 20 Feb 2001 00:40:48 -0000 From: peter@dataloss.net Reply-To: peter@dataloss.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/25217: user with login 'connected' shows bogus ftpd ps output Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25217 >Category: misc >Synopsis: user with login 'connected' shows bogus ftpd ps output >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 19 16:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Peter van Dijk >Release: FreeBSD 4.2-STABLE i386 >Organization: Vuurwerk Internet >Environment: FreeBSD 4.2-STABLE. >Description: If a user's loginname is 'connected', the setproctitle code in ftpd will show his login as "remote.host.name: connected". This same text is used for still-unauthenticated logins. This creates ambiguity. I ran into this problem while contemplating writing an ftpwho-like tool for FreeBSD, btw. >How-To-Repeat: - proctitle before login ftpd: minor.dataloss.net: connected (ftpd) - proctitle after user 'peter' logs in ftpd: minor.dataloss.net: peter (ftpd) - proctitle before login ftpd: minor.dataloss.net: connected (ftpd) - proctitle after user 'connected' logs in ftpd: minor.dataloss.net: connected (ftpd) >Fix: A possible fix would be changing snprintf(proctitle, sizeof(proctitle), "%s: %s", remotehost, pw->pw_name); to snprintf(proctitle, sizeof(proctitle), "%s: user[%s]", remotehost, pw->pw_name); or something similar. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 17: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 994BB37B491 for ; Mon, 19 Feb 2001 17:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1K1K2s24149; Mon, 19 Feb 2001 17:20:02 -0800 (PST) (envelope-from gnats) Received: from dataloss.net (massive.dataloss.net [212.189.232.193]) by hub.freebsd.org (Postfix) with SMTP id 5993037B503 for ; Mon, 19 Feb 2001 17:11:33 -0800 (PST) Received: (qmail 1197 invoked by uid 1000); 20 Feb 2001 01:08:38 -0000 Message-Id: <20010220010838.1196.qmail@massive.dataloss.net> Date: 20 Feb 2001 01:08:38 -0000 From: peter@dataloss.net Reply-To: peter@dataloss.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/25218: mailwrapper invokes sendmail when resources are tight Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25218 >Category: misc >Synopsis: mailwrapper invokes sendmail when resources are tight >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 19 17:20:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Peter van Dijk >Release: FreeBSD 4.2-STABLE i386 >Organization: Vuurwerk Internet >Environment: FreeBSD 4.2-STABLE. This code hasn't changed for a while, I think :) >Description: If mailwrapper can't open /etc/mail/mailer.conf (which may happen when resources are tight) it defaults to starting sendmail instead of aborting. This is a terrible bug. Mail administrators everywhere have chosen an MTA *other* than sendmail. The sendmail configuration on a box might not be setup correctly. These admins expect mailwrapper to start their MTA :) >How-To-Repeat: I have not reproduced the situation. It should be obvious from the code. >Fix: Make mailwrapper abort if it can't read /etc/mail/mailer.conf, like it does when it can't find a mapping. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 17:30: 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 D56E337B4EC for ; Mon, 19 Feb 2001 17:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1K1U4426718; Mon, 19 Feb 2001 17:30:04 -0800 (PST) (envelope-from gnats) Date: Mon, 19 Feb 2001 17:30:04 -0800 (PST) Message-Id: <200102200130.f1K1U4426718@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Gschwendtner Subject: Re: kern/25083: Page fault (kernel trap 12) Reply-To: Gschwendtner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/25083; it has been noted by GNATS. From: Gschwendtner To: freebsd-gnats-submit@FreeBSD.org, tirloni@techie.com Cc: Subject: Re: kern/25083: Page fault (kernel trap 12) Date: Tue, 20 Feb 2001 02:28:35 +0100 the problem has been resolved with the update from monday. thanks lenz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 19 23: 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 2147E37B684 for ; Mon, 19 Feb 2001 23:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1K702r74180; Mon, 19 Feb 2001 23:00:02 -0800 (PST) (envelope-from gnats) Received: from goliath.siemens.de (goliath.siemens.de [194.138.37.131]) by hub.freebsd.org (Postfix) with ESMTP id 678F837B503 for ; Mon, 19 Feb 2001 22:58:40 -0800 (PST) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by goliath.siemens.de (8.11.0/8.11.0) with ESMTP id f1K6wcC11301 for ; Tue, 20 Feb 2001 07:58:38 +0100 (MET) 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 f1K6wbY11201 for ; Tue, 20 Feb 2001 07:58:38 +0100 (MET) Received: (from localhost) by curry.mchp.siemens.de (8.11.2/8.11.2) id f1K6wbS31611 for FreeBSD-gnats-submit@freebsd.org; Tue, 20 Feb 2001 07:58:37 +0100 (CET) Message-Id: <200102200658.f1K6wb352425@curry.mchp.siemens.de> Date: Tue, 20 Feb 2001 07:58:37 +0100 (CET) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/25223: PATCH for rc.network to enable ipnat seperately from ipfilter Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25223 >Category: conf >Synopsis: PATCH for rc.network to enable ipnat seperately from ipfilter >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 19 23:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: All FreeBSD machines that support ipfilter >Description: The current way of initialasing ipfilter during system boot makes it very hard to use ipnat without ipfilter since ${ipfilter_enable} must be "yes" in order to get ${ipnat_enable} evaluated at all. >How-To-Repeat: Try a config in rc.network where ipnat rules are loaded and ipfilter stuff is left alone. >Fix: Move ${ipnat_enable} stuff out of the ${ipfilter_enable} conditional. Don't know if the ipmon stuff should be seperate as well... --- rc.network.ORI Mon Jan 15 15:21:37 2001 +++ rc.network Tue Feb 20 07:49:18 2001 @@ -60,20 +60,20 @@ ${ipmon_program:-/sbin/ipmon} ${ipmon_flags} ;; esac - case "${ipnat_enable}" in - [Yy][Ee][Ss]) - if [ -r "${ipnat_rules}" ]; then - echo -n ' ipnat'; - eval ${ipnat_program:-/sbin/ipnat -CF -f} \ - "${ipnat_rules}" ${ipnat_flags} - else - echo -n ' NO IPNAT RULES' - fi - ;; - esac else ipfilter_enable="NO" echo -n ' NO IPF RULES' + fi + ;; + esac + case "${ipnat_enable}" in + [Yy][Ee][Ss]) + if [ -r "${ipnat_rules}" ]; then + echo -n ' ipnat'; + eval ${ipnat_program:-/sbin/ipnat -CF -f} \ + "${ipnat_rules}" ${ipnat_flags} + else + echo -n ' NO IPNAT RULES' fi ;; 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 Mon Feb 19 23:55: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 3149337B4EC; Mon, 19 Feb 2001 23:55:41 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1K7tfT82476; Mon, 19 Feb 2001 23:55:41 -0800 (PST) (envelope-from ru) Date: Mon, 19 Feb 2001 23:55:41 -0800 (PST) From: Message-Id: <200102200755.f1K7tfT82476@freefall.freebsd.org> To: roman@xpert.com, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: gnu/24530: [PATCH] use "less -is" for man(1) instead of "more -s" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] use "less -is" for man(1) instead of "more -s" State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Mon Feb 19 23:52:37 PST 2001 State-Changed-Why: PAGER is a certified way to change the default pager used by man(1). http://www.freebsd.org/cgi/query-pr.cgi?pr=24530 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 0:30: 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 3148337B4EC for ; Tue, 20 Feb 2001 00:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1K8U1k88432; Tue, 20 Feb 2001 00:30:01 -0800 (PST) (envelope-from gnats) Received: from ns5.sony.co.jp (ns5.Sony.CO.JP [202.238.80.5]) by hub.freebsd.org (Postfix) with ESMTP id D175937B401 for ; Tue, 20 Feb 2001 00:28:29 -0800 (PST) (envelope-from mistral@imasy.or.jp) Received: from mail1.sony.co.jp (gatekeeper8.Sony.CO.JP [202.238.80.22]) by ns5.sony.co.jp (R8) with ESMTP id f1K8SS303720 for ; Tue, 20 Feb 2001 17:28:28 +0900 (JST) Received: from mail1.sony.co.jp (localhost [127.0.0.1]) by mail1.sony.co.jp (R8) with ESMTP id f1K8SSm21765 for ; Tue, 20 Feb 2001 17:28:28 +0900 (JST) Received: from mistral.imasy.or.jp ([43.1.172.41]) by mail1.sony.co.jp (R8) with ESMTP id f1K8SPT21697 for ; Tue, 20 Feb 2001 17:28:25 +0900 (JST) Received: (from yohta@localhost) by mistral.imasy.or.jp (8.11.2/3.7Wpl2-010215) id f1K8S7016119; Tue, 20 Feb 2001 17:28:08 +0900 (JST) Message-Id: <200102200828.f1K8S7016119@mistral.imasy.or.jp> Date: Tue, 20 Feb 2001 17:28:08 +0900 (JST) From: mistral@imasy.or.jp Reply-To: mistral@imasy.or.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/25225: patch for new LUA-TX USB ethernet adaptor Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25225 >Category: kern >Synopsis: A new version of LUA-TX USB ethernet adaptor for aue driver >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 20 00:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Yoshihiko Sarumaru >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: 4.2-STABLE >Description: Melco Inc. released another LUA-TX USB ethernet driver. That is likely the same as old LUA-TX, but has another product id. That id was already registered into usbdevs_data.h, but not yet registered into if_aue.c. So we can't attach LUA-TX as ethernet device, but generic USB device. >How-To-Repeat: Jack in new LUA-TX >Fix: --- dev/usb/if_aue.c.orig Tue Jan 9 11:30:26 2001 +++ dev/usb/if_aue.c Tue Feb 13 10:19:45 2001 @@ -107,6 +107,7 @@ { USB_VENDOR_ADMTEK, USB_PRODUCT_ADMTEK_PEGASUS }, { USB_VENDOR_BILLIONTON, USB_PRODUCT_BILLIONTON_USB100 }, { USB_VENDOR_MELCO, USB_PRODUCT_MELCO_LUATX1 }, + { USB_VENDOR_MELCO, USB_PRODUCT_MELCO_LUATX5 }, { USB_VENDOR_DLINK, USB_PRODUCT_DLINK_DSB650 }, { USB_VENDOR_DLINK, USB_PRODUCT_DLINK_DSB650TX }, { USB_VENDOR_DLINK, USB_PRODUCT_DLINK_DSB650TX_PNA }, >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 0: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 02A6437B503 for ; Tue, 20 Feb 2001 00:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1K8o2B91508; Tue, 20 Feb 2001 00:50:02 -0800 (PST) (envelope-from gnats) Date: Tue, 20 Feb 2001 00:50:02 -0800 (PST) Message-Id: <200102200850.f1K8o2B91508@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Yoshihiko SARUMARU Subject: Re: kern/25225: A new version of LUA-TX USB ethernet adaptor for aue driver Reply-To: Yoshihiko SARUMARU Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/25225; it has been noted by GNATS. From: Yoshihiko SARUMARU To: freebsd-gnats-submit@FreeBSD.org, mistral@imasy.or.jp Cc: Subject: Re: kern/25225: A new version of LUA-TX USB ethernet adaptor for aue driver Date: Tue, 20 Feb 2001 17:41:23 +0900 Self-followup: NetBSD already had its entry since December 13. http://cvsweb.netbsd.org/bsdweb.cgi/syssrc/sys/dev/usb/if_aue.c.diff?r1=1.48&r2=1.49 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 3:13: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 3655437B6BA; Tue, 20 Feb 2001 03:13:15 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KBDEo16861; Tue, 20 Feb 2001 03:13:14 -0800 (PST) (envelope-from kris) Date: Tue, 20 Feb 2001 03:13:14 -0800 (PST) From: Message-Id: <200102201113.f1KBDEo16861@freefall.freebsd.org> To: kaz@kobe1995.net, kris@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/25146: A tiny typo Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: A tiny typo State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Tue Feb 20 03:11:02 PST 2001 State-Changed-Why: Patch committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=25146 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 3:16:29 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-53.dsl.lsan03.pacbell.net [64.165.226.53]) by hub.freebsd.org (Postfix) with ESMTP id D1BC937B491 for ; Tue, 20 Feb 2001 03:16:27 -0800 (PST) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 8C78066CBE; Tue, 20 Feb 2001 03:16:27 -0800 (PST) Date: Tue, 20 Feb 2001 03:16:27 -0800 From: Kris Kennaway To: "Walter W. Hop" Cc: FreeBSD bugs Subject: Re: OpenSSH <-> SSH.com's SSH2 incompatible? Message-ID: <20010220031627.B16615@mollari.cthul.hu> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="4bRzO86E/ozDv8r1" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from walter@binity.com on Tue, Feb 20, 2001 at 12:01:39AM +0100 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --4bRzO86E/ozDv8r1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Feb 20, 2001 at 12:01:39AM +0100, Walter W. Hop wrote: > I don't know if I should send this to the OpenSSH people because they're > already 0.3 versions ahead ;-) Yes, talk to them about it. We don't maintain OpenSSH separately for bug fixes, except as they relate to FreeBSD-specific code. Kris --4bRzO86E/ozDv8r1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6klILWry0BWjoQKURAmx+AJ98KLxj19aA4DW+UjJqw5YuGtgdmgCeIr2G 38A7wwzfqYDxbnvRMuxTEms= =/wfk -----END PGP SIGNATURE----- --4bRzO86E/ozDv8r1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 3:17: 2 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 C433437B4EC; Tue, 20 Feb 2001 03:17:00 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KBH0U17311; Tue, 20 Feb 2001 03:17:00 -0800 (PST) (envelope-from kris) Date: Tue, 20 Feb 2001 03:17:00 -0800 (PST) From: Message-Id: <200102201117.f1KBH0U17311@freefall.freebsd.org> To: tirloni@techie.com, kris@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/25083: Page fault (kernel trap 12) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Page fault (kernel trap 12) State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Tue Feb 20 03:16:43 PST 2001 State-Changed-Why: Submitted reports problem is resolved http://www.freebsd.org/cgi/query-pr.cgi?pr=25083 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 3: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 BD3E837B491 for ; Tue, 20 Feb 2001 03:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KBK2B17664; Tue, 20 Feb 2001 03:20:02 -0800 (PST) (envelope-from gnats) Date: Tue, 20 Feb 2001 03:20:02 -0800 (PST) Message-Id: <200102201120.f1KBK2B17664@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Kris Kennaway Subject: Re: kern/25130: kernel crash with kldload/kldunload md.ko Reply-To: Kris Kennaway Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/25130; it has been noted by GNATS. From: Kris Kennaway To: davidx@viasoft.com.cn Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/25130: kernel crash with kldload/kldunload md.ko Date: Tue, 20 Feb 2001 03:10:34 -0800 --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Feb 15, 2001 at 10:15:33PM -0800, davidx@viasoft.com.cn wrote: > >Originator: David Xu > >Release: FreeBSD 4.2-RELEASE ^^^^^^^^^^^^^^^^^^^ > when I kldload and kldunload malloc disk module md.ko, kernel crashed. > blah, blah, .... md(4) isn't in 4.x. If you're trying to kldload a module built under -current in 4.x, it won't work. Is this the case? Kris --C7zPtVaVf+AK4Oqc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6klCpWry0BWjoQKURApZzAKCGlfc9z63UtlF/HwaJKRRcOffUOACgquyB TOdmOanZK3RyZhDaKFjcivM= =mGKn -----END PGP SIGNATURE----- --C7zPtVaVf+AK4Oqc-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 3: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 79C0537B401; Tue, 20 Feb 2001 03:20:15 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KBKFH17780; Tue, 20 Feb 2001 03:20:15 -0800 (PST) (envelope-from kris) Date: Tue, 20 Feb 2001 03:20:15 -0800 (PST) From: Message-Id: <200102201120.f1KBKFH17780@freefall.freebsd.org> To: kris@FreeBSD.org, freebsd-bugs@FreeBSD.org, green@FreeBSD.org Subject: Re: bin/24953: adduser ignores passwd_format in login.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: adduser ignores passwd_format in login.conf Responsible-Changed-From-To: freebsd-bugs->green Responsible-Changed-By: kris Responsible-Changed-When: Tue Feb 20 03:20:02 PST 2001 Responsible-Changed-Why: green added the passwd_format stuff http://www.freebsd.org/cgi/query-pr.cgi?pr=24953 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 3:21:36 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-53.dsl.lsan03.pacbell.net [64.165.226.53]) by hub.freebsd.org (Postfix) with ESMTP id 4C4C537B491 for ; Tue, 20 Feb 2001 03:21:34 -0800 (PST) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 16DE666CBE; Tue, 20 Feb 2001 03:21:34 -0800 (PST) Date: Tue, 20 Feb 2001 03:21:33 -0800 From: Kris Kennaway To: Dag-Erling Smorgrav Cc: freebsd-bugs@FreeBSD.org Subject: Re: misc/24964: some reinstall misfunction Message-ID: <20010220032133.C16615@mollari.cthul.hu> References: <200102091720.f19HK3984753@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="Qbvjkv9qwOGw/5Fx" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200102091720.f19HK3984753@freefall.freebsd.org>; from des@ofug.org on Fri, Feb 09, 2001 at 09:20:03AM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --Qbvjkv9qwOGw/5Fx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 09, 2001 at 09:20:03AM -0800, Dag-Erling Smorgrav wrote: > The following reply was made to PR misc/24964; it has been noted by GNATS. >=20 > From: Dag-Erling Smorgrav > To: wb@vestein.arb-phys.uni-dortmund.de > Cc: FreeBSD-gnats-submit@FreeBSD.ORG > Subject: Re: misc/24964: some reinstall misfunction > Date: 09 Feb 2001 17:37:17 +0100 >=20 > "Wilhelm B. Kloke" writes: > > When installing world on a 2nd system, I found that make > > -DNO_SHARE installworld or make -f Makefile.inc1 -DNO_SHARE > > reinstall tries to build hierarchy in /usr/share. This fails > > when /usr/share is RO (e.g. if it is REALLY shared). > =20 > This is not a bug. The NO_SHARE option simply does not exist; where > did you get the idea that it did? I think he wanted #NOSHARE=3D true # do not go into the share subdir Kris --Qbvjkv9qwOGw/5Fx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6klM9Wry0BWjoQKURAtj1AKDFAdvZMirbQGRJrj9pvEpjEAqE9ACg9ncR /2xJdAITJ8plq2CmIt6yA9k= =66bF -----END PGP SIGNATURE----- --Qbvjkv9qwOGw/5Fx-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 3:21: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 8CD0237B4EC; Tue, 20 Feb 2001 03:21:53 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KBLr518071; Tue, 20 Feb 2001 03:21:53 -0800 (PST) (envelope-from kris) Date: Tue, 20 Feb 2001 03:21:53 -0800 (PST) From: Message-Id: <200102201121.f1KBLr518071@freefall.freebsd.org> To: wb@vestein.arb-phys.uni-dortmund.de, kris@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/24964: some reinstall misfunction Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: some reinstall misfunction State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Tue Feb 20 03:20:36 PST 2001 State-Changed-Why: NO_SHARE doesn't exist, you want NOSHARE as documented in /etc/defaults/make.conf http://www.freebsd.org/cgi/query-pr.cgi?pr=24964 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 3:23: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 4920837B491; Tue, 20 Feb 2001 03:23:13 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KBNAK18178; Tue, 20 Feb 2001 03:23:10 -0800 (PST) (envelope-from kris) Date: Tue, 20 Feb 2001 03:23:10 -0800 (PST) From: Message-Id: <200102201123.f1KBNAK18178@freefall.freebsd.org> To: davidx@viasoft.com.cn, kris@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/24890: make top better Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: make top better State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Tue Feb 20 03:22:15 PST 2001 State-Changed-Why: Thanks for the suggestion, but I don't think this feature is ever likely to be implemented. http://www.freebsd.org/cgi/query-pr.cgi?pr=24890 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 4: 2:25 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by hub.freebsd.org (Postfix) with ESMTP id E28BE37B491 for ; Tue, 20 Feb 2001 04:02:21 -0800 (PST) (envelope-from k@numeri.campus.luth.se) Received: from numeri.campus.luth.se (localhost [127.0.0.1]) by numeri.campus.luth.se (8.11.1/8.11.1) with ESMTP id f1KC3EP69152; Tue, 20 Feb 2001 13:03:14 +0100 (CET) (envelope-from k@numeri.campus.luth.se) Message-Id: <200102201203.f1KC3EP69152@numeri.campus.luth.se> X-Mailer: exmh version 2.1.1 10/15/1999 To: Kris Kennaway Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/25130: kernel crash with kldload/kldunload md.ko In-Reply-To: Your message of "Tue, 20 Feb 2001 03:20:02 PST." <200102201120.f1KBK2B17664@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 20 Feb 2001 13:03:14 +0100 From: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Tue, 20 Feb 2001 03:20:02 PST, Kris Kennaway wrote: > The following reply was made to PR kern/25130; it has been noted by GNATS. > > From: Kris Kennaway > To: davidx@viasoft.com.cn > Cc: freebsd-gnats-submit@FreeBSD.org > Subject: Re: kern/25130: kernel crash with kldload/kldunload md.ko > Date: Tue, 20 Feb 2001 03:10:34 -0800 > > --C7zPtVaVf+AK4Oqc > Content-Type: text/plain; charset=us-ascii > Content-Disposition: inline > > On Thu, Feb 15, 2001 at 10:15:33PM -0800, davidx@viasoft.com.cn wrote: > > > >Originator: David Xu > > >Release: FreeBSD 4.2-RELEASE > > ^^^^^^^^^^^^^^^^^^^ > > > when I kldload and kldunload malloc disk module md.ko, kernel crashed. > > blah, blah, .... > > md(4) isn't in 4.x. If you're trying to kldload a module built under > -current in 4.x, it won't work. Is this the case? > md(4) _is_ in 4.2 !! /Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 6: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 B5E5137B4EC for ; Tue, 20 Feb 2001 06:10:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KEA5948150; Tue, 20 Feb 2001 06:10:05 -0800 (PST) (envelope-from gnats) Date: Tue, 20 Feb 2001 06:10:05 -0800 (PST) Message-Id: <200102201410.f1KEA5948150@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Malone Subject: Re: kern/25206: Kernel Panic Reply-To: David Malone Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/25206; it has been noted by GNATS. From: David Malone To: mm@omnix.net Cc: freebsd-gnats-submit@FreeBSD.org, peter@FreeBSD.org, iedowse@maths.tcd.ie Subject: Re: kern/25206: Kernel Panic Date: Tue, 20 Feb 2001 14:03:29 +0000 On Mon, Feb 19, 2001 at 11:34:40AM -0800, mm@omnix.net wrote: > luser@PAF$ tail -f /dev/ttyp1 > > now ruser is going to connect to my box: > ruser@NOWHERE$ telnet PAF > Connection closed by foreign host. This seems to be caused by kqueue trying to work on a revoked file discriptor. I think this bug is inaccessable in more recent versions of -stable after Peter's commit to vfs_vnops.c on 2001/02/09. The offending code looks like: static int filt_vnread(struct knote *kn, long hint) { struct vnode *vp = (struct vnode *)kn->kn_fp->f_data; struct inode *ip = VTOI(vp); kn->kn_data = ip->i_size - kn->kn_fp->f_offset; return (kn->kn_data != 0); } There is now a check to make sure that the file is in a UFS filesystem at the time the filter is attached. However, if the file is revoked it could change type, so checking something like: if (vp->v_tag != VT_UFS) return 1; might be a good idea. (Currently only device files can be revoked, but that's only 'cos it was disabeled on other file types 'cos it didn't work on fifos). David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 8: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 9998737B4EC for ; Tue, 20 Feb 2001 08:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KGK1W57085; Tue, 20 Feb 2001 08:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A51937B491 for ; Tue, 20 Feb 2001 08:14:31 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KGEV456525; Tue, 20 Feb 2001 08:14:31 -0800 (PST) (envelope-from nobody) Message-Id: <200102201614.f1KGEV456525@freefall.freebsd.org> Date: Tue, 20 Feb 2001 08:14:31 -0800 (PST) From: feczo@koli.kando.hu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/25230: ... SCB Memory Parity Error at seqaddr = 0x1 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25230 >Category: misc >Synopsis: ... SCB Memory Parity Error at seqaddr = 0x1 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 20 08:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Szabolcs Feczak >Release: 4.2 >Organization: Kando Kalman Dormority >Environment: FreeBSD bsdevil.koli 4.2-RELEASE FreeBSD 4.2-RELEASE #2: Tue Feb 13 20:41:14 CET 2001 root@bsdevil.koli:/usr/src/sys/compile/BSDEVIL i386 >Description: I've set up a gateway with 4 interfaces, 2 private network and dmz. I'm using private address ranges on lan and using NAT to reach the outside world from the workstations, I've also set up transparent proxy with oops. The machine based on the Intel DK440LX mainboard, using a 4GB scsi-2 disk and 128Mb of ram with 2 Compaq netelligent PCI, 1 3Com 509B combo ISA, and 1 Digital chip based PCI card. The machine frozes if it gets more than some connection to NAT, and after restart during booting the kernel I see the following displayed : ... SCB Memory Parity Error at seqaddr = 0x1 And several other numbers 5 or 6 times, but I can't read, because the text is shaking (alternately prints the one line and the other) I'v changed memory bank, and changed memory card 2 times ... First time a similar 100Mhz one second time a brand (Memory Technology) 133Mhz one. I have changed the motherboard (same type), but problem still exist. This message only appears at kernel boot time and it won't start at all, just shaking. Before the freeze I can't see any suspicious message. I don't know maybe it it is still a hardware problem (but some other os was working good on this hw config, but I've heard, that bsd is more sensitive for good hw components) or just I'm too lame to set some of the kernel parameters ....etc, but I can't find it (what where and why) Or just hit a bug ? >How-To-Repeat: unpredictable >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 8:50: 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 5485A37B4EC for ; Tue, 20 Feb 2001 08:50:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KGo4R61276; Tue, 20 Feb 2001 08:50:04 -0800 (PST) (envelope-from gnats) Date: Tue, 20 Feb 2001 08:50:04 -0800 (PST) Message-Id: <200102201650.f1KGo4R61276@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Malone Subject: Re: misc/25230: ... SCB Memory Parity Error at seqaddr = 0x1 Reply-To: David Malone Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/25230; it has been noted by GNATS. From: David Malone To: feczo@koli.kando.hu Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/25230: ... SCB Memory Parity Error at seqaddr = 0x1 Date: Tue, 20 Feb 2001 16:44:35 +0000 On Tue, Feb 20, 2001 at 08:14:31AM -0800, feczo@koli.kando.hu wrote: > ... SCB Memory Parity Error at seqaddr = 0x1 > And several other numbers 5 or 6 times, but I can't read, because > the text is shaking (alternately prints the one line and the other) SCBs are to do with SCSI, so it could be that your scsi card is busted. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 8:50: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 8900337B65D for ; Tue, 20 Feb 2001 08:50:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KGo4X61285; Tue, 20 Feb 2001 08:50:04 -0800 (PST) (envelope-from gnats) Received: from mta06-svc.ntlworld.com (mta06-svc.ntlworld.com [62.253.162.46]) by hub.freebsd.org (Postfix) with ESMTP id 7DAE037B4EC for ; Tue, 20 Feb 2001 08:47:08 -0800 (PST) (envelope-from greid@ukug.uk.freebsd.org) Received: from m171-mp1-cvx1b.gui.ntl.com ([62.252.8.171]) by mta06-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20010220164704.HCBC285.mta06-svc.ntlworld.com@m171-mp1-cvx1b.gui.ntl.com> for ; Tue, 20 Feb 2001 16:47:04 +0000 Message-Id: Date: Tue, 20 Feb 2001 16:55:57 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Subject: bin/25232: [PATCH] fix fortune out-of-tree build Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25232 >Category: bin >Synopsis: [PATCH] fix fortune out-of-tree build >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 20 08:50:04 PST 2001 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UK Usergroup >Environment: FreeBSD 5.0-CURRENT i386 >Description: games/fortune out-of-tree build is broken. make tries to include ${CURDIR}../../Makefile.inc which exists in src/games in-tree. This prevents the program from compiling out-of-tree. There is a Makefile.inc in fortune/ which includes src/games/Makefile.inc if it exists (i.e. if doing an in-tree build). >How-To-Repeat: cd /tmp; cvs co -r HEAD fortune; cd fortune; make >Fix: Index: fortune/Makefile =================================================================== RCS file: /usr/home/ncvs/src/games/fortune/fortune/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- fortune/Makefile 1996/09/05 17:13:50 1.3 +++ fortune/Makefile 2001/02/20 16:54:08 @@ -6,5 +6,5 @@ DPADD= ${LIBCOMPAT} LDADD= -lcompat -.include "${.CURDIR}/../../Makefile.inc" +.include "${.CURDIR}/../Makefile.inc" .include Index: strfile/Makefile =================================================================== RCS file: /usr/home/ncvs/src/games/fortune/strfile/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- strfile/Makefile 1996/05/27 22:43:35 1.2 +++ strfile/Makefile 2001/02/20 16:54:14 @@ -5,5 +5,5 @@ MLINKS= strfile.8 unstr.8 CFLAGS+= -Wall -.include "${.CURDIR}/../../Makefile.inc" +.include "${.CURDIR}/../Makefile.inc" .include Index: unstr/Makefile =================================================================== RCS file: /usr/home/ncvs/src/games/fortune/unstr/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- unstr/Makefile 1996/05/27 22:43:41 1.2 +++ unstr/Makefile 2001/02/20 16:54:20 @@ -4,5 +4,5 @@ NOMAN= noman CFLAGS+=-Wall -I${.CURDIR}/../strfile -.include "${.CURDIR}/../../Makefile.inc" +.include "${.CURDIR}/../Makefile.inc" .include >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 9:55:21 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from seagull.cpinternet.com (mail.cpinternet.com [204.220.140.4]) by hub.freebsd.org (Postfix) with ESMTP id 02D1A37B65D for ; Tue, 20 Feb 2001 09:55:18 -0800 (PST) (envelope-from ocean@ecenet.com) Received: from ecenet.com (pr-5300-1-fa216.ecenet.com [209.240.250.216]) by seagull.cpinternet.com (8.9.2/8.9.2) with ESMTP id LAA03273 for ; Tue, 20 Feb 2001 11:18:49 -0600 (CST) Message-ID: <3A92AA59.1678FE66@ecenet.com> Date: Tue, 20 Feb 2001 11:33:14 -0600 From: Porter X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-bugs@FreeBSD.ORG Subject: UNABLE TO MAIL TO FREEBSD.ORG Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ok, I've been trying to send mail to questions-freebsd.org for four days now. I've tried various links and addresses, all get returned with the following message. ********************************************** ** THIS IS A WARNING MESSAGE ONLY ** ** YOU DO NOT NEED TO RESEND YOUR MESSAGE ** ********************************************** The original message was received at Mon, 19 Feb 2001 13:51:29 -0600 (CST) from pr-5300-1-fa194.ecenet.com [209.240.250.194] ----- The following addresses had transient non-fatal errors ----- ----- Transcript of session follows ----- ... while talking to hub.freebsd.org.: >>> RCPT To: <<< 450 Client host rejected: cannot find your hostname, [204.220.140.4] ... Deferred: 450 Client host rejected: cannot find your hostname, [204.220.140.4] Warning: message still undelivered after 4 hours Will keep trying until message is 5 days old Reporting-MTA: dns; seagull.cpinternet.com Arrival-Date: Mon, 19 Feb 2001 13:51:29 -0600 (CST) Final-Recipient: RFC822; freebsd-questions@FreeBSD.ORG Action: delayed Status: 4.2.0 Remote-MTA: DNS; hub.freebsd.org Diagnostic-Code: SMTP; 450 Client host rejected: cannot find your hostname, [204.220.140.4] Last-Attempt-Date: Mon, 19 Feb 2001 18:03:07 -0600 (CST) Will-Retry-Until: Sat, 24 Feb 2001 13:51:29 -0600 (CST) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 10: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 DA68F37B699 for ; Tue, 20 Feb 2001 10:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KIe2c78097; Tue, 20 Feb 2001 10:40:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 98C6E37B4EC for ; Tue, 20 Feb 2001 10:32:00 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KIW0B76917; Tue, 20 Feb 2001 10:32:00 -0800 (PST) (envelope-from nobody) Message-Id: <200102201832.f1KIW0B76917@freefall.freebsd.org> Date: Tue, 20 Feb 2001 10:32:00 -0800 (PST) From: is92518@e.cc.titech.ac.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25235: OS Hungs up when using with a Battery of Laptop PC(Dynabook 2520JA). Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25235 >Category: kern >Synopsis: OS Hungs up when using with a Battery of Laptop PC(Dynabook 2520JA). >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 20 10:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Yoshisato YANAGISAWA >Release: 4.2-STABLE("cvsup"ed at Feb. 18th,2001.) >Organization: Tokyo Institute of Technology. Dept. of Information Science. >Environment: FreeBSD shi-sanmei.pcc-software.org 4.2-STABLE FreeBSD 4.2-STABLE #0: Mon Feb 19 11:36:30 JST 2001 root@shi-sanmei.pcc-software.org:/usr/src/sys/compile/MYKERN i386 >Description: Whole system hungs up(symptons are such...no reaction to mouse moving and keybord typing,and no displaying of a screen) when running the machine with its battery on the kernel including ata(4) which is standard at 4.x-Releases and after. I made sure this on "TOSHIBA Dynabook Satellite 2520CDSA". It seems that if "CPU Sleep MODE(Battery setting of the machine's BIOS)" is Enabled,ata(4) doesn't work correctly. >How-To-Repeat: Enables "CPU Sleep MODE" at BIOS setting,and make the machine to work with its battery. >Fix: I found 2 solutions following... 1. At BIOS setting,set "Battery Save Mode" to "User Setting" and Disables "CPU Sleep Mode". 2. Use wdc(4) instead of ata(4). !!Notice!!: wdc(4) doesn't exist at 5.x and after. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 11:27: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 E88D337B67D; Tue, 20 Feb 2001 11:27:44 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KJRgV29529; Tue, 20 Feb 2001 11:27:42 -0800 (PST) (envelope-from phk) Date: Tue, 20 Feb 2001 11:27:42 -0800 (PST) From: Message-Id: <200102201927.f1KJRgV29529@freefall.freebsd.org> To: crb@ChrisBowman.com, phk@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/8139: [patch] missing /usr/src/share/examples/drivers/make_pci_driver.sh Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [patch] missing /usr/src/share/examples/drivers/make_pci_driver.sh State-Changed-From-To: open->closed State-Changed-By: phk State-Changed-When: Tue Feb 20 11:26:54 PST 2001 State-Changed-Why: Overtaken by Events, sorry. http://www.freebsd.org/cgi/query-pr.cgi?pr=8139 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 11:29: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 2F5EB37B4EC; Tue, 20 Feb 2001 11:29:30 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KJTUN30688; Tue, 20 Feb 2001 11:29:30 -0800 (PST) (envelope-from phk) Date: Tue, 20 Feb 2001 11:29:30 -0800 (PST) From: Message-Id: <200102201929.f1KJTUN30688@freefall.freebsd.org> To: phk@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: kern/11676: PCIless kernel will not compile with ATAPI support. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: PCIless kernel will not compile with ATAPI support. Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: phk Responsible-Changed-When: Tue Feb 20 11:28:58 PST 2001 Responsible-Changed-Why: This is a sos@ thing, but I supposed he can just close this PR considering the age of the thing. http://www.freebsd.org/cgi/query-pr.cgi?pr=11676 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 11:30: 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 9221437B4EC; Tue, 20 Feb 2001 11:30:02 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KJU1K30977; Tue, 20 Feb 2001 11:30:01 -0800 (PST) (envelope-from phk) Date: Tue, 20 Feb 2001 11:30:01 -0800 (PST) From: Message-Id: <200102201930.f1KJU1K30977@freefall.freebsd.org> To: gem@express.ru, phk@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/17146: panic in devfs_open() while mounting device from devfs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: panic in devfs_open() while mounting device from devfs State-Changed-From-To: open->closed State-Changed-By: phk State-Changed-When: Tue Feb 20 11:29:47 PST 2001 State-Changed-Why: Overtaken by events. Sorry. http://www.freebsd.org/cgi/query-pr.cgi?pr=17146 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 11:31: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 45FEC37B698; Tue, 20 Feb 2001 11:31:27 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KJVQe31297; Tue, 20 Feb 2001 11:31:26 -0800 (PST) (envelope-from phk) Date: Tue, 20 Feb 2001 11:31:26 -0800 (PST) From: Message-Id: <200102201931.f1KJVQe31297@freefall.freebsd.org> To: pushf@mail.dotcom.fr, phk@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/18982: make buildworld freezes my machine with a kernel panic "Fatal trap 12: page fault while in kernel mode..." Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: make buildworld freezes my machine with a kernel panic "Fatal trap 12: page fault while in kernel mode..." State-Changed-From-To: feedback->closed State-Changed-By: phk State-Changed-When: Tue Feb 20 11:31:14 PST 2001 State-Changed-Why: No response from originator. http://www.freebsd.org/cgi/query-pr.cgi?pr=18982 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 11:34: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 296A137B4EC; Tue, 20 Feb 2001 11:34:12 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KJYAG31816; Tue, 20 Feb 2001 11:34:10 -0800 (PST) (envelope-from phk) Date: Tue, 20 Feb 2001 11:34:10 -0800 (PST) From: Message-Id: <200102201934.f1KJYAG31816@freefall.freebsd.org> To: lazaro@online.no, salem@statoil.com, phk@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/22153: make installworld error when upgrading from 3.1-RELEASE to 3.5.1-RELEASE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: make installworld error when upgrading from 3.1-RELEASE to 3.5.1-RELEASE State-Changed-From-To: open->closed State-Changed-By: phk State-Changed-When: Tue Feb 20 11:33:56 PST 2001 State-Changed-Why: Overtaken by events. Sorry. http://www.freebsd.org/cgi/query-pr.cgi?pr=22153 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 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 8829837B491 for ; Tue, 20 Feb 2001 13:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KLK1q86959; Tue, 20 Feb 2001 13:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7185037B491 for ; Tue, 20 Feb 2001 13:17:37 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KLHba85256; Tue, 20 Feb 2001 13:17:37 -0800 (PST) (envelope-from nobody) Message-Id: <200102202117.f1KLHba85256@freefall.freebsd.org> Date: Tue, 20 Feb 2001 13:17:37 -0800 (PST) From: cmjensen@dohnut.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/25236: Intel 82559 is not working behind a DEC/Intel 21152 Bridge Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25236 >Category: i386 >Synopsis: Intel 82559 is not working behind a DEC/Intel 21152 Bridge >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 20 13:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Chris Jensen >Release: 4.2-RELEASE >Organization: >Environment: FreeBSD 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Mon Nov 20 13:02:55 GMT 2000 jkh@bento.FreeBSD.org:/usr/src/sys/compile/GENERIC i386 >Description: The NIC simply cannot initialize. I have not had time and am probably not the most qualified person to debug this problem. I searched for fixes to this problem and found several people with similar 82559/21152 setups who have the same issue. I did not find a fix, so that's why I'm posting here. So, forgive me if there is an easy fix, but I could not find anything. Below is the first half of the boot dump, where the problem occurs. The NIC works without a problem in all other tested operating systems (windows, linux, SCO). Feb 20 11:07:02 /kernel: Copyright (c) 1992-2000 The FreeBSD Project. Feb 20 11:07:02 /kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Feb 20 11:07:02 /kernel: The Regents of the University of California. All rights reserved. Feb 20 11:07:02 /kernel: FreeBSD 4.2-RELEASE #0: Mon Nov 20 13:02:55 GMT 2000 Feb 20 11:07:02 /kernel: jkh@bento.FreeBSD.org:/usr/src/sys/compile/GENERIC Feb 20 11:07:02 /kernel: Timecounter "i8254" frequency 1193182 Hz Feb 20 11:07:02 /kernel: CPU: Pentium II/Pentium II Xeon/Celeron (432.25-MHz 686-class CPU) Feb 20 11:07:02 /kernel: Origin = "GenuineIntel" Id = 0x665 Stepping = 5 Feb 20 11:07:02 /kernel: Features=0x183fbff Feb 20 11:07:02 /kernel: real memory = 67108864 (65536K bytes) Feb 20 11:07:02 /kernel: avail memory = 61083648 (59652K bytes) Feb 20 11:07:02 /kernel: Preloaded elf kernel "kernel" at 0xc0436000. Feb 20 11:07:02 /kernel: Pentium Pro MTRR support enabled Feb 20 11:07:02 /kernel: md0: Malloc disk Feb 20 11:07:02 /kernel: npx0: on motherboard Feb 20 11:07:02 /kernel: npx0: INT 16 interface Feb 20 11:07:02 /kernel: pcib0: on motherboard Feb 20 11:07:02 /kernel: pci0: on pcib0 Feb 20 11:07:02 /kernel: pcib1: at device 4.0 on pci0 Feb 20 11:07:02 /kernel: pci1: on pcib1 Feb 20 11:07:02 /kernel: pci1: at 1.0 irq 10 Feb 20 11:07:02 /kernel: fxp0: irq 0 at device 2.0 on pci1 Feb 20 11:07:02 /kernel: fxp0: could not map memory Feb 20 11:07:02 /kernel: device_probe_and_attach: fxp0 attach returned 6 Feb 20 11:07:03 /kernel: isab0: at device 8.0 on pci0 ... >How-To-Repeat: Try getting an Intel 82559 ( could not try a 82557/8, the NIC is embedded ) behind a 21152 PCI-to-PCI bridge. NOTE: The system is a PICMG standard system with a passive backplane and a single PICMG CPU card which contains all of the CPU, chipset, and peripherals. I may be able to get/loan the FreeBSD organization a system to debug with if the problem cannot be reproduced by other means. Please reply to me at cmjensen@dohnut.org. Thanks. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 13: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 7D9B037B4EC for ; Tue, 20 Feb 2001 13:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KLe3H94073; Tue, 20 Feb 2001 13:40:03 -0800 (PST) (envelope-from gnats) Date: Tue, 20 Feb 2001 13:40:03 -0800 (PST) Message-Id: <200102202140.f1KLe3H94073@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Matthew Jacob Subject: Re: i386/25236: Intel 82559 is not working behind a DEC/Intel 21152 Bridge Reply-To: Matthew Jacob Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/25236; it has been noted by GNATS. From: Matthew Jacob To: cmjensen@dohnut.org Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: i386/25236: Intel 82559 is not working behind a DEC/Intel 21152 Bridge Date: Tue, 20 Feb 2001 13:33:49 -0800 (PST) Try these patches from -current on if_fxp (they may not patch cleanly) and see if setting fxp_iomap=N either at the ok prompt for the boot loader (with the 'set' command) or in /boot/loader.conf (where N is the bitmap of fxp's you want to configure in I/O space) helps. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 13:40: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 58A3937B67D for ; Tue, 20 Feb 2001 13:40:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KLe6t94098; Tue, 20 Feb 2001 13:40:06 -0800 (PST) (envelope-from gnats) Date: Tue, 20 Feb 2001 13:40:06 -0800 (PST) Message-Id: <200102202140.f1KLe6t94098@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Matthew Jacob Subject: Re: i386/25236: Intel 82559 is not working behind a DEC/Intel 21152 Bridge Reply-To: Matthew Jacob Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/25236; it has been noted by GNATS. From: Matthew Jacob To: cmjensen@dohnut.org Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: i386/25236: Intel 82559 is not working behind a DEC/Intel 21152 Bridge Date: Tue, 20 Feb 2001 13:34:11 -0800 (PST) > > Try these patches from -current on if_fxp (they may not patch cleanly) and see > if setting > > fxp_iomap=N > > either at the ok prompt for the boot loader (with the 'set' command) or in > /boot/loader.conf (where N is the bitmap of fxp's you want to configure in I/O > space) helps. Argh: Index: if_fxp.c =================================================================== RCS file: /home/ncvs/src/sys/pci/if_fxp.c,v retrieving revision 1.102 retrieving revision 1.103 diff -u -r1.102 -r1.103 --- if_fxp.c 2001/01/19 01:59:10 1.102 +++ if_fxp.c 2001/01/23 23:22:17 1.103 @@ -313,8 +313,8 @@ int error = 0; struct fxp_softc *sc = device_get_softc(dev); struct ifnet *ifp; - u_long val; - int rid; + u_int32_t val; + int rid, m1, m2, ebitmap; mtx_init(&sc->sc_mtx, device_get_nameunit(dev), MTX_DEF | MTX_RECURSE); callout_handle_init(&sc->stat_ch); @@ -322,11 +322,13 @@ FXP_LOCK(sc); /* - * Enable bus mastering. + * Enable bus mastering. Enable memory space too, in case + * BIOS/Prom forgot about it. */ val = pci_read_config(dev, PCIR_COMMAND, 2); val |= (PCIM_CMD_MEMEN|PCIM_CMD_BUSMASTEREN); pci_write_config(dev, PCIR_COMMAND, val, 2); + val = pci_read_config(dev, PCIR_COMMAND, 2); if (pci_get_powerstate(dev) != PCI_POWERSTATE_D0) { u_int32_t iobase, membase, irq; @@ -349,16 +351,44 @@ } /* - * Map control/status registers. + * Figure out which we should try first - memory mapping or i/o mapping? + * We default to memory mapping. Then we accept an override from the + * command line. Then we check to see which one is enabled. */ - rid = FXP_PCI_MMBA; - sc->mem = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid, - 0, ~0, 1, RF_ACTIVE); + m1 = PCIM_CMD_MEMEN; + m2 = PCIM_CMD_PORTEN; + ebitmap = 0; + if (getenv_int("fxp_iomap", &ebitmap)) { + if (ebitmap & (1 << device_get_unit(dev))) { + m1 = PCIM_CMD_PORTEN; + m2 = PCIM_CMD_MEMEN; + } + } + + if (val & m1) { + sc->rtp = + (m1 == PCIM_CMD_MEMEN)? SYS_RES_MEMORY : SYS_RES_IOPORT; + sc->rgd = (m1 == PCIM_CMD_MEMEN)? FXP_PCI_MMBA : FXP_PCI_IOBA; + sc->mem = bus_alloc_resource(dev, sc->rtp, &sc->rgd, + 0, ~0, 1, RF_ACTIVE); + } + if (sc->mem == NULL && (val & m2)) { + sc->rtp = + (m2 == PCIM_CMD_MEMEN)? SYS_RES_MEMORY : SYS_RES_IOPORT; + sc->rgd = (m2 == PCIM_CMD_MEMEN)? FXP_PCI_MMBA : FXP_PCI_IOBA; + sc->mem = bus_alloc_resource(dev, sc->rtp, &sc->rgd, + 0, ~0, 1, RF_ACTIVE); + } + if (!sc->mem) { - device_printf(dev, "could not map memory\n"); + device_printf(dev, "could not map device registers\n"); error = ENXIO; goto fail; } + if (bootverbose) { + device_printf(dev, "using %s space register mapping\n", + sc->rtp == SYS_RES_MEMORY? "memory" : "I/O"); + } sc->sc_st = rman_get_bustag(sc->mem); sc->sc_sh = rman_get_bushandle(sc->mem); @@ -387,7 +417,7 @@ /* Failed! */ bus_teardown_intr(dev, sc->irq, sc->ih); bus_release_resource(dev, SYS_RES_IRQ, 0, sc->irq); - bus_release_resource(dev, SYS_RES_MEMORY, FXP_PCI_MMBA, sc->mem); + bus_release_resource(dev, sc->rtp, sc->rgd, sc->mem); error = ENXIO; goto fail; } @@ -451,7 +481,7 @@ */ bus_teardown_intr(dev, sc->irq, sc->ih); bus_release_resource(dev, SYS_RES_IRQ, 0, sc->irq); - bus_release_resource(dev, SYS_RES_MEMORY, FXP_PCI_MMBA, sc->mem); + bus_release_resource(dev, sc->rtp, sc->rgd, sc->mem); /* * Free all the receive buffers. Index: if_fxpvar.h =================================================================== RCS file: /home/ncvs/src/sys/pci/if_fxpvar.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- if_fxpvar.h 2000/09/18 21:12:19 1.13 +++ if_fxpvar.h 2001/01/23 23:22:17 1.14 @@ -38,6 +38,8 @@ struct fxp_softc { struct arpcom arpcom; /* per-interface network data */ struct resource *mem; /* resource descriptor for registers */ + int rtp; /* register resource type */ + int rgd; /* register descriptor in use */ struct resource *irq; /* resource descriptor for interrupt */ void *ih; /* interrupt handler cookie */ struct mtx sc_mtx; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 14: 4: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 3AC9E37B401; Tue, 20 Feb 2001 14:04:37 -0800 (PST) (envelope-from jesper@FreeBSD.org) Received: (from jesper@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KM4bm98653; Tue, 20 Feb 2001 14:04:37 -0800 (PST) (envelope-from jesper) Date: Tue, 20 Feb 2001 14:04:37 -0800 (PST) From: Message-Id: <200102202204.f1KM4bm98653@freefall.freebsd.org> To: jesper@skriver.dk, jesper@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/24512: Sent ICMP unreach when packet not for us is received, and forwarding is disabled Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Sent ICMP unreach when packet not for us is received, and forwarding is disabled State-Changed-From-To: open->closed State-Changed-By: jesper State-Changed-When: Tue Feb 20 14:03:28 PST 2001 State-Changed-Why: Slighly different fix committed after approval from jlemon http://www.freebsd.org/cgi/query-pr.cgi?pr=24512 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 15:30: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 8073B37B401; Tue, 20 Feb 2001 15:30:51 -0800 (PST) (envelope-from jesper@FreeBSD.org) Received: (from jesper@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1KNUpe18222; Tue, 20 Feb 2001 15:30:51 -0800 (PST) (envelope-from jesper) Date: Tue, 20 Feb 2001 15:30:51 -0800 (PST) From: Message-Id: <200102202330.f1KNUpe18222@freefall.freebsd.org> To: jesper@skriver.dk, jesper@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/25195: a attacker can make ICMP messages apply to all sessions. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: a attacker can make ICMP messages apply to all sessions. State-Changed-From-To: open->closed State-Changed-By: jesper State-Changed-When: Tue Feb 20 15:30:19 PST 2001 State-Changed-Why: Different fix to problem committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=25195 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 17: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 C481E37B503 for ; Tue, 20 Feb 2001 17:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1L1o1V37281; Tue, 20 Feb 2001 17:50:01 -0800 (PST) (envelope-from gnats) Received: from hand.dotat.at (sfo-gw.covalent.net [207.44.198.62]) by hub.freebsd.org (Postfix) with ESMTP id E640437B401 for ; Tue, 20 Feb 2001 17:47:24 -0800 (PST) (envelope-from fanf@dotat.at) Received: from fanf by hand.dotat.at with local (Exim 3.20 #3) id 14VONA-0000FZ-00 for FreeBSD-gnats-submit@freebsd.org; Wed, 21 Feb 2001 01:47:16 +0000 Message-Id: Date: Wed, 21 Feb 2001 01:47:16 +0000 From: Tony Finch Reply-To: Tony Finch To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/25240: incomplete CDIOCREADSUBCHANNEL support in atapi-cd Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25240 >Category: kern >Synopsis: incomplete CDIOCREADSUBCHANNEL support in atapi-cd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 20 17:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Tony Finch >Release: FreeBSD 4.2-STABLE i386 >Organization: Covalent Technologies, Inc. >Environment: FreeBSD hand.dotat.at 4.2-STABLE FreeBSD 4.2-STABLE #4: Wed Feb 21 00:26:12 GMT 2001 fanf@hand.dotat.at:/FreeBSD/obj/FreeBSD/releng4/sys/DELL-Latitude-CSx i386 >Description: The implementation of CDIOCREADSUBCHANNEL in sys/dev/ata/atapi-cd.c only supports the CD_CURRENT_POSITION data_format, but it doesn't actually check the data_format to ensure that it is CD_CURRENT_POSITION. This manifests as garbage printed by `cdcontrol status media`. >How-To-Repeat: `cdcontrol status media` with an audio CD in an ATAPI drive prints garbage for the catalogue number. >Fix: This patch just checks that the data_format is supported. I'm not sure if ENODEV is right: would EOPNOTSUPP (as suggested by bfumerola) be more appropriate or does the fact that it isn't mentioned in the ioctl(2) man page mean that isn't allowed? Index: atapi-cd.c =================================================================== RCS file: /home/ncvs/src/sys/dev/ata/atapi-cd.c,v retrieving revision 1.48.2.9 diff -u -r1.48.2.9 atapi-cd.c --- atapi-cd.c 2001/01/29 18:07:18 1.48.2.9 +++ atapi-cd.c 2001/02/21 01:42:14 @@ -730,6 +730,11 @@ sizeof(cdp->subchan)>>8, sizeof(cdp->subchan), 0, 0, 0, 0, 0, 0, 0 }; + if (args->data_format != CD_CURRENT_POSITION) { + error = ENODEV; + break; + } + if (len > sizeof(data) || len < sizeof(struct cd_sub_channel_header)) { error = 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 Tue Feb 20 18: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 68A5C37B503 for ; Tue, 20 Feb 2001 18:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1L2K1v42853; Tue, 20 Feb 2001 18:20:01 -0800 (PST) (envelope-from gnats) Received: from baby.int.thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 1001037B491 for ; Tue, 20 Feb 2001 18:13:40 -0800 (PST) (envelope-from housley@thehousleys.net) Received: (from housley@localhost) by baby.int.thehousleys.net (8.11.2/8.11.2) id f1L2Dcg14055; Tue, 20 Feb 2001 21:13:38 -0500 (EST) (envelope-from housley) Message-Id: <200102210213.f1L2Dcg14055@baby.int.thehousleys.net> Date: Tue, 20 Feb 2001 21:13:38 -0500 (EST) From: "James E. Housley" Reply-To: housley@thehousleys.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/25241: ipfw shouldn't show dynamics rules when specific rules are requested Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25241 >Category: bin >Synopsis: ipfw shouldn't show dynamics rules when specific rules are requested >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 20 18:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: James E. Housley >Release: FreeBSD 4.2-STABLE i386 >Organization: The Housleys dot Net >Environment: 4.2-STABLE >Description: When using ipfw in a stateful mode all the current dynamic rules are displayed even when specific rules are requested. The attached patch only displays the dynamic rules when no specific rules are requested. A better solution might be to bring "Display Dynamic" into a seperate function. Thus allowing the static and dynamic rules matching a requested rule number to be displayed. >How-To-Repeat: >Fix: --- ipfw.c.orig Fri Jan 12 11:32:32 2001 +++ ipfw.c Tue Feb 20 21:09:00 2001 @@ -718,6 +718,44 @@ show_ipfw(r, pcwidth, bcwidth); } + /* + * show dynamic rules + */ + if (num * sizeof (rules[0]) != nbytes ) { + struct ipfw_dyn_rule *d = + (struct ipfw_dyn_rule *)&rules[num] ; + struct in_addr a ; + struct protoent *pe; + + printf("## Dynamic rules:\n"); + for (;; d++) { + printf("%05d %qu %qu (T %d, # %d) ty %d", + (int)(d->chain), + d->pcnt, d->bcnt, + d->expire, + d->bucket, + d->type); + pe = getprotobynumber(d->id.proto); + if (pe) + printf(" %s,", pe->p_name); + else + printf(" %u,", d->id.proto); + a.s_addr = htonl(d->id.src_ip); + printf(" %s", inet_ntoa(a)); + printf(" %d", d->id.src_port); + switch (d->type) { + default: /* bidir, no mask */ + printf(" <->"); + break ; + } + a.s_addr = htonl(d->id.dst_ip); + printf(" %s", inet_ntoa(a)); + printf(" %d", d->id.dst_port); + printf("\n"); + if (d->next == NULL) + break ; + } + } } else { /* display specific rules requested on command line */ int exitval = EX_OK; @@ -754,44 +792,6 @@ if (exitval != EX_OK) exit(exitval); } - /* - * show dynamic rules - */ - if (num * sizeof (rules[0]) != nbytes ) { - struct ipfw_dyn_rule *d = - (struct ipfw_dyn_rule *)&rules[num] ; - struct in_addr a ; - struct protoent *pe; - - printf("## Dynamic rules:\n"); - for (;; d++) { - printf("%05d %qu %qu (T %d, # %d) ty %d", - (int)(d->chain), - d->pcnt, d->bcnt, - d->expire, - d->bucket, - d->type); - pe = getprotobynumber(d->id.proto); - if (pe) - printf(" %s,", pe->p_name); - else - printf(" %u,", d->id.proto); - a.s_addr = htonl(d->id.src_ip); - printf(" %s", inet_ntoa(a)); - printf(" %d", d->id.src_port); - switch (d->type) { - default: /* bidir, no mask */ - printf(" <->"); - break ; - } - a.s_addr = htonl(d->id.dst_ip); - printf(" %s", inet_ntoa(a)); - printf(" %d", d->id.dst_port); - printf("\n"); - if (d->next == NULL) - break ; - } - } free(data); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 18:44: 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 160C537B503; Tue, 20 Feb 2001 18:44:04 -0800 (PST) (envelope-from jeh@FreeBSD.org) Received: (from jeh@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1L2i3j45885; Tue, 20 Feb 2001 18:44:03 -0800 (PST) (envelope-from jeh) Date: Tue, 20 Feb 2001 18:44:03 -0800 (PST) From: Message-Id: <200102210244.f1L2i3j45885@freefall.freebsd.org> To: jeh@FreeBSD.org, freebsd-bugs@FreeBSD.org, luigi@FreeBSD.org Subject: Re: bin/25241: ipfw shouldn't show dynamics rules when specific rules are requested Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ipfw shouldn't show dynamics rules when specific rules are requested Responsible-Changed-From-To: freebsd-bugs->luigi Responsible-Changed-By: jeh Responsible-Changed-When: Tue Feb 20 18:43:27 PST 2001 Responsible-Changed-Why: luigi is the maintainer of ipfw http://www.freebsd.org/cgi/query-pr.cgi?pr=25241 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 21:40: 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 AF9F237B503 for ; Tue, 20 Feb 2001 21:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1L5e1D72397; Tue, 20 Feb 2001 21:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D70837B401 for ; Tue, 20 Feb 2001 21:35:01 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1L5Z1M71942; Tue, 20 Feb 2001 21:35:01 -0800 (PST) (envelope-from nobody) Message-Id: <200102210535.f1L5Z1M71942@freefall.freebsd.org> Date: Tue, 20 Feb 2001 21:35:01 -0800 (PST) From: fumis@bigfoot.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/25243: ftp crashes in remotemodtime (). Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25243 >Category: bin >Synopsis: ftp crashes in remotemodtime (). >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 20 21:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: SHIMIZU Fumiyuki >Release: 4.2-STABLE >Organization: >Environment: FreeBSD ***snip*** 4.2-STABLE FreeBSD 4.2-STABLE #1: Tue Feb 20 14:01:10 JST 2001 ***snip*** >Description: /usr/bin/ftp crashes after getting a file. ftp> get foobar local: foobar remote: foobar 227 Entering Passive Mode (***snip***) 150 Opening data connection for foobar (696075740 bytes). 100% |**************************************************| 663 MB 00:00 ETA 226 Transfer complete. 696075740 bytes received in 11999.42 seconds (56.65 KB/s) Segmentation fault - core dumped >How-To-Repeat: Connect to ftpd which answers with less than 14 or more than 15 characters against `MDTM' request, and get some files. >Fix: Braces required just after `if (fmt != NULL)' in remotemodtime (). /usr/src/usr.bin/ftp/util.c, line 533 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 22:40: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 DC41A37B684 for ; Tue, 20 Feb 2001 22:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1L6e2P85365; Tue, 20 Feb 2001 22:40:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 22D0337B4EC for ; Tue, 20 Feb 2001 22:38:35 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1L6cZP84991; Tue, 20 Feb 2001 22:38:35 -0800 (PST) (envelope-from nobody) Message-Id: <200102210638.f1L6cZP84991@freefall.freebsd.org> Date: Tue, 20 Feb 2001 22:38:35 -0800 (PST) From: ywata@st.rim.or.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/25244: termcap and printcap interference Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25244 >Category: bin >Synopsis: termcap and printcap interference >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 20 22:40:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Yasuhiko WATANABE >Release: 4.2-STABLE >Organization: >Environment: FreeBSD ross.codec.mrit.mei.co.jp 4.2-STABLE FreeBSD 4.2-STABLE #7 Wed Feb 21 10+28+53 JST 2001 yasu@rosso.codec.mrit.mei.co.jp:/export/FreeBSD/STABLE/src/sys/compile/DESKTOP i386 >Description: When you restart all the printer with lpc's "restart all" command and your environment defines TERMCAP, lpc tries to restart your $TERM entriy. It is because lpc first tries to initialize your terminal and the initialization cause to set toprec(defined in libc/gen/getcap.c) which is declared as static variable. And then lpc read printcap entries through the same interface in which toprec is already defined. >How-To-Repeat: (1) In your shell environment, define TERM and TERMCAP appropriately. (2) Use "restart all" command in lpc. Lpc tries to restart undefined $TERM entry. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 22:40: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 B4C8C37B65D for ; Tue, 20 Feb 2001 22:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1L6e2c85356; Tue, 20 Feb 2001 22:40:02 -0800 (PST) (envelope-from gnats) Date: Tue, 20 Feb 2001 22:40:02 -0800 (PST) Message-Id: <200102210640.f1L6e2c85356@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: bin/25232: [PATCH] fix fortune out-of-tree build Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25232; it has been noted by GNATS. From: Bruce Evans To: George Reid Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/25232: [PATCH] fix fortune out-of-tree build Date: Wed, 21 Feb 2001 17:31:03 +1100 (EST) On Tue, 20 Feb 2001, George Reid wrote: > >Description: > games/fortune out-of-tree build is broken. > > make tries to include ${CURDIR}../../Makefile.inc which exists in > src/games in-tree. This prevents the program from compiling out-of-tree. > ... > >Fix: > Index: fortune/Makefile > =================================================================== > RCS file: /usr/home/ncvs/src/games/fortune/fortune/Makefile,v > retrieving revision 1.3 > diff -u -r1.3 Makefile > --- fortune/Makefile 1996/09/05 17:13:50 1.3 > +++ fortune/Makefile 2001/02/20 16:54:08 > @@ -6,5 +6,5 @@ > DPADD= ${LIBCOMPAT} > LDADD= -lcompat > > -.include "${.CURDIR}/../../Makefile.inc" > +.include "${.CURDIR}/../Makefile.inc" > .include > ... I just committed an equivalent "fix" (remove these includes; your version of them is duplicated in ). But this is not really right. The Makefile.inc at the next level up (still in the fortune tree) does the old version of the includes (include from 2 levels up, at the top of the games tree), except it does the include conditionally. It should include from 1 level up for technical reasons (so that it doesn't know too much about the depth of the subdirs) and do the include unconditionally so that security-related macros are defined, but including it unconditionally would bring back your out-of-tree problem. I'm not even sure how to test for its existence. `.include' has an undocumented search path, which IIRC begins with the directory of the file containing the include statement and ends with ${.CURDIR}. I'm not sure if this magic does/should apply to exists(). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Feb 20 23: 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 E34B637B491 for ; Tue, 20 Feb 2001 23:00:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1L704987238; Tue, 20 Feb 2001 23:00:04 -0800 (PST) (envelope-from gnats) Date: Tue, 20 Feb 2001 23:00:04 -0800 (PST) Message-Id: <200102210700.f1L704987238@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/25243: ftp crashes in remotemodtime (). Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25243; it has been noted by GNATS. From: Peter Pentchev To: fumis@bigfoot.com Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/25243: ftp crashes in remotemodtime (). Date: Wed, 21 Feb 2001 08:55:45 +0200 On Tue, Feb 20, 2001 at 09:35:01PM -0800, fumis@bigfoot.com wrote: > > >Number: 25243 > >Category: bin > >Synopsis: ftp crashes in remotemodtime (). > >Originator: SHIMIZU Fumiyuki > >Release: 4.2-STABLE > >Organization: > >Environment: > FreeBSD ***snip*** 4.2-STABLE FreeBSD 4.2-STABLE #1: Tue Feb 20 14:01:10 JST 2001 ***snip*** > >Description: > /usr/bin/ftp crashes after getting a file. > > ftp> get foobar > local: foobar remote: foobar > 227 Entering Passive Mode (***snip***) > 150 Opening data connection for foobar (696075740 bytes). > 100% |**************************************************| 663 MB 00:00 ETA > 226 Transfer complete. > 696075740 bytes received in 11999.42 seconds (56.65 KB/s) > Segmentation fault - core dumped > > >How-To-Repeat: > Connect to ftpd which answers with less than 14 or more than 15 characters against `MDTM' request, and get some files. > > >Fix: > Braces required just after `if (fmt != NULL)' in remotemodtime (). > /usr/src/usr.bin/ftp/util.c, line 533 And the patch itself (trivial, yet needed indeed).. G'luck, Peter -- "yields falsehood, when appended to its quotation." yields falsehood, when appended to its quotation. Index: src/usr.bin/ftp/util.c =================================================================== RCS file: /home/ncvs/src/usr.bin/ftp/util.c,v retrieving revision 1.13 diff -u -r1.13 util.c --- src/usr.bin/ftp/util.c 2000/05/22 17:18:38 1.13 +++ src/usr.bin/ftp/util.c 2001/02/21 06:52:52 @@ -529,7 +529,7 @@ y2kbug = 1; } else if (len == 14) fmt = "%04d%02d%02d%02d%02d%02d"; - if (fmt != NULL) + if (fmt != NULL) { memset(&timebuf, 0, sizeof(timebuf)); if (sscanf(mtbuf, fmt, &year, &month, &timebuf.tm_mday, &timebuf.tm_hour, @@ -542,6 +542,7 @@ timebuf.tm_year = year - 1900; rtime = mktime(&timebuf); } + } } if (rtime == -1 && (noisy || debug != 0)) printf("Can't convert %s to a time.\n", mtbuf); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 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 741FC37B67D for ; Wed, 21 Feb 2001 01:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1L9A1L10198; Wed, 21 Feb 2001 01:10:01 -0800 (PST) (envelope-from gnats) Received: from ns1-dmz.rh.dk (gw-ext.rh.dk [130.226.106.3]) by hub.freebsd.org (Postfix) with ESMTP id 5BA2837B401 for ; Wed, 21 Feb 2001 01:05:43 -0800 (PST) (envelope-from regnauld@td.rh.dk) Received: from ns1.int.rh.dk (ns1-108.rh.dk [130.226.108.194]) by ns1-dmz.rh.dk (Postfix) with ESMTP id 759F0567D2 for ; Wed, 21 Feb 2001 10:05:41 +0100 (CET) Received: from aylee.td.rh.dk (aylee.td.rh.dk [172.31.211.70]) by ns1.int.rh.dk (8.9.3/8.9.3/mailhub-rh-dk-0.1) with SMTP id KAA02796 for ; Wed, 21 Feb 2001 10:05:41 +0100 (CET) (envelope-from regnauld@td.rh.dk) Received: by aylee.td.rh.dk (Postfix, from userid 1001) id C4996B946; Wed, 21 Feb 2001 10:05:40 +0100 (CET) Message-Id: <20010221090540.C4996B946@aylee.td.rh.dk> Date: Wed, 21 Feb 2001 10:05:40 +0100 (CET) From: regnauld@td.rh.dk Reply-To: regnauld@td.rh.dk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/25245: system deadlock via loopback NFS (maybe jail) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25245 >Category: kern >Synopsis: mounting NFS to/from same host + activity will eventually lock up all processes >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 21 01:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Phil Regnauld >Release: FreeBSD 5.0-CURRENT i386 >Organization: Copenhagen Kingdom Hospital - Rigshospitalet >Environment: System: FreeBSD beurk.balder 4.2-STABLE FreeBSD 4.2-STABLE #0: Tue Jan 30 23:41:34 CET 2001 regnauld@beurk.balder:/var/obj/var/src/sys/BEURK i386 >Description: When mounting an NFS exported FS where the client and the server are the same (not explicitly using loopback, but using the ethernet IP), it is possible to lockup the system after some activity has occurred (usually some hours). >How-To-Repeat: Example: (this has been repeatedly observed on a system running jail, but should be repeatable without). - export /src or some other directory containing with lots of data - mount myhost:/src /usr/src (for example) You then have a NFS mount of a local filesystem onto another mountpoint (very practical for jails with the ports collection) Go into that directory, and do for example a "make world". Processes will progressively hang until the machine will completely freeze (to the point where console switching is possible, but typing does not have any effect...) Has been observed with /ports nfs mounted to /usr/ports >Fix: No known workaround for this particular setup... >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 2: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 8748637B491 for ; Wed, 21 Feb 2001 02:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LAo1a24670; Wed, 21 Feb 2001 02:50:01 -0800 (PST) (envelope-from gnats) Received: from thor.piqnet.org (adsl-63-197-64-194.dsl.snfc21.pacbell.net [63.197.64.194]) by hub.freebsd.org (Postfix) with ESMTP id B7F4637B4EC for ; Wed, 21 Feb 2001 02:46:26 -0800 (PST) (envelope-from joelh@gnu.org) Received: (from joelh@localhost) by thor.piqnet.org (8.11.1/8.11.1) id f1LAo5v45814; Wed, 21 Feb 2001 02:50:05 -0800 (PST) (envelope-from joelh) Message-Id: <200102211050.f1LAo5v45814@thor.piqnet.org> Date: Wed, 21 Feb 2001 02:50:05 -0800 (PST) From: joelh@gnu.org Reply-To: joelh@gnu.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/25248: sys/user.h needs sys/param.h, but doesn't include it. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25248 >Category: kern >Synopsis: sys/user.h needs sys/param.h, but doesn't include it. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 21 02:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Joel Ray Holveck >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: 4.2-STABLE from Jan 2000 >Description: The file (needed for the KERN_PROC sysctl oid) uses variables defined by , but neither is documented as necessary, and the latter is not automatically included by the former. >How-To-Repeat: #include #include #include int main() { } >Fix: include in . It may be good to either document in sysctl(3) that is needed to interpret the KERN_PROC oid, or include it in . >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 2: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 BEB0337B401 for ; Wed, 21 Feb 2001 02:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LAo1N24679; Wed, 21 Feb 2001 02:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 88A6037B491 for ; Wed, 21 Feb 2001 02:47:46 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LAlkC24212; Wed, 21 Feb 2001 02:47:46 -0800 (PST) (envelope-from nobody) Message-Id: <200102211047.f1LAlkC24212@freefall.freebsd.org> Date: Wed, 21 Feb 2001 02:47:46 -0800 (PST) From: stado_slonov@mail.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/25249: cc compiler not work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25249 >Category: misc >Synopsis: cc compiler not work >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 21 02:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Vasya Pupkin >Release: FreeBSD 5.0 Current >Organization: chelgu >Environment: #uname -a FreeBSD sys.maktor.ru 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sat Feb 17 19:52:35 MSK 2 001 root@sys.maktor.ru:/usr/src/sys/compile/SYS i386 >Description: cd /usr/src make world >How-To-Repeat: ===> lib/libtacplus ===> lib/libutil cc -O -pipe -Wall -DLIBC_SCCS -I/usr/src/lib/libutil -I/usr/src/lib/libutil/../. ./sys -DINET6 -c /usr/src/lib/libutil/login_class.c -o login_class.o cc -O -pipe -Wall -DLIBC_SCCS -I/usr/src/lib/libutil -I/usr/src/lib/libutil/../. ./sys -DINET6 -c /usr/src/lib/libutil/login_auth.c -o login_auth.o In file included from /usr/src/lib/libutil/login_auth.c:49: /usr/src/lib/libutil/../../sys/sys/socket.h:312: syntax error before `socklen_t' /usr/src/lib/libutil/../../sys/sys/socket.h:316: syntax error before `socklen_t' /usr/src/lib/libutil/../../sys/sys/socket.h:338: syntax error before `socklen_t' /usr/src/lib/libutil/../../sys/sys/socket.h:433: syntax error before `socklen_t' /usr/src/lib/libutil/../../sys/sys/socket.h:434: syntax error before `socklen_t' /usr/src/lib/libutil/../../sys/sys/socket.h:435: syntax error before `socklen_t' /usr/src/lib/libutil/../../sys/sys/socket.h:436: syntax error before `socklen_t' /usr/src/lib/libutil/../../sys/sys/socket.h:437: syntax error before `socklen_t' /usr/src/lib/libutil/../../sys/sys/socket.h:438: syntax error before `socklen_t' /usr/src/lib/libutil/../../sys/sys/socket.h:441: syntax error before `socklen_t' /usr/src/lib/libutil/../../sys/sys/socket.h:445: syntax error before `socklen_t' /usr/src/lib/libutil/../../sys/sys/socket.h:448: syntax error before `socklen_t' *** Error code 1 Stop in /usr/src/lib/libutil. *** Error code 1 Stop in /usr/src/lib. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 3: 0: 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 77E3337B4EC for ; Wed, 21 Feb 2001 03:00:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LB05f25858; Wed, 21 Feb 2001 03:00:05 -0800 (PST) (envelope-from gnats) Date: Wed, 21 Feb 2001 03:00:05 -0800 (PST) Message-Id: <200102211100.f1LB05f25858@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Nick Hilliard" Subject: Re: bin/24798: pac dumps core if "af" is not specified in /etc/printcap Reply-To: "Nick Hilliard" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/24798; it has been noted by GNATS. From: "Nick Hilliard" To: Peter Pentchev Cc: nick@netability.ie, FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/24798: pac dumps core if "af" is not specified in /etc/printcap Date: Wed, 21 Feb 2001 10:57:37 +0000 > This printf + exit could be rewritten in a more BSD-ish style as: > > err(3, "accounting not enabled for %s", s); yeah, probably. Actually, I was just imitating the printf() & exit() a few lines before for consistency's sake. For convenience, here's the same thing using err: --- pac.c.orig Wed Feb 21 10:53:33 2001 +++ pac.c Wed Feb 21 10:55:50 2001 @@ -450,7 +450,8 @@ case PCAPERR_TCLOOP: fatal(pp, "%s", pcaperr(stat)); } - acctfile = pp->acct_file; + if ((acctfile = pp->acct_file) == NULL) + err(3, "accounting not enabled for %s", s); if (!pflag && pp->price100) price = pp->price100/10000.0; sumfile = (char *) calloc(sizeof(char), strlen(acctfile)+5); Anyway, now that there's a definite schedule for 4.3-release, can someone organise to get one or other of these patchlets committed before the code freeze? Nick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 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 1973237B401 for ; Wed, 21 Feb 2001 04:40:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LCeCB44545; Wed, 21 Feb 2001 04:40:12 -0800 (PST) (envelope-from gnats) Date: Wed, 21 Feb 2001 04:40:12 -0800 (PST) Message-Id: <200102211240.f1LCeCB44545@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Tony Finch Subject: Re: kern/25240: incomplete CDIOCREADSUBCHANNEL support in atapi-cd Reply-To: Tony Finch Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/25240; it has been noted by GNATS. From: Tony Finch To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: kern/25240: incomplete CDIOCREADSUBCHANNEL support in atapi-cd Date: Wed, 21 Feb 2001 12:31:39 +0000 Following a conversation with sos about this I have tried the following patch which has the same end result (at least on my hardware) but takes a slightly different route. This patch needs some finishing to deal with the way the data is prepared for copyout(); I note that the CAM SCSI CD driver just copies the response data from the device straight into the user's args->data block. Tony. -- f.a.n.finch fanf@covalent.net dot@dotat.at CROMARTY: NORTHWESTERLY 5 TO 7, OCCASIONALLY GALE 8 IN NORTHEAST. SHOWERS. GOOD. Index: atapi-cd.c =================================================================== RCS file: /home/ncvs/src/sys/dev/ata/atapi-cd.c,v retrieving revision 1.48.2.9 diff -u -r1.48.2.9 atapi-cd.c --- atapi-cd.c 2001/01/29 18:07:18 1.48.2.9 +++ atapi-cd.c 2001/02/21 11:08:56 @@ -726,7 +726,8 @@ struct cd_sub_channel_info data; int len = args->data_len; int32_t abslba, rellba; - int8_t ccb[16] = { ATAPI_READ_SUBCHANNEL, 0, 0x40, 1, 0, 0, 0, + int8_t ccb[16] = { ATAPI_READ_SUBCHANNEL, 0, 0x40, + args->data_format, 0, 0, 0, sizeof(cdp->subchan)>>8, sizeof(cdp->subchan), 0, 0, 0, 0, 0, 0, 0 }; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 4:40: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 288A237B6A6 for ; Wed, 21 Feb 2001 04:40:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LCeGJ44557; Wed, 21 Feb 2001 04:40:16 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4170B37B401 for ; Wed, 21 Feb 2001 04:36:39 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LCad244208; Wed, 21 Feb 2001 04:36:39 -0800 (PST) (envelope-from nobody) Message-Id: <200102211236.f1LCad244208@freefall.freebsd.org> Date: Wed, 21 Feb 2001 04:36:39 -0800 (PST) From: william@babeltech.dk To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/25250: segfault on tar Ixvf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25250 >Category: bin >Synopsis: segfault on tar Ixvf >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 21 04:40:13 PST 2001 >Closed-Date: >Last-Modified: >Originator: William Brady >Release: 4.2-STABLE >Organization: Babeltech.dk >Environment: FreeBSD xef4.babeltech.dk 4.2-STABLE FreeBSD 4.2-STABLE #21: Wed Feb 14 15:39:10 CET 2001 root@xef4.babeltech.dk:/usr/src/sys/compile/NKNL i386 >Description: tar Ixvf does not perform proper argument checking and segfaults if not given an additional argument. Giving the proper arguments exits with "tar: too many args with -T option" >How-To-Repeat: tar Ixvf quux >Fix: Change line 327 of /usr/src/gnu/usr.bin/tar/tar.c from "-01234567Ab:BcC:df:F:g:GhiIjkK:lL:mMnN:oOpPrRsStT:[AuUvV:wWxX:yzZ", to "-01234567Ab:BcC:df:F:g:GhiI:jkK:lL:mMnN:oOpPrRsStT:[AuUvV:wWxX:yzZ", >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 7:29:32 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from sydney.worldwide.lemis.com (user-uinjtfm.biz.mindspring.com [165.121.245.246]) by hub.freebsd.org (Postfix) with ESMTP id D344937B699 for ; Wed, 21 Feb 2001 07:29:28 -0800 (PST) (envelope-from grog@sydney.worldwide.lemis.com) Received: (from grog@localhost) by sydney.worldwide.lemis.com (8.11.1/8.9.3) id f1L1opR22214; Tue, 20 Feb 2001 20:50:51 -0500 (EST) (envelope-from grog) Date: Tue, 20 Feb 2001 20:50:51 -0500 From: Greg Lehey To: Porter Cc: freebsd-bugs@FreeBSD.ORG Subject: Mail configuration problems (was: UNABLE TO MAIL TO FREEBSD.ORG) Message-ID: <20010220205051.I22007@sydney.worldwide.lemis.com> References: <3A92AA59.1678FE66@ecenet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <3A92AA59.1678FE66@ecenet.com>; from ocean@ecenet.com on Tue, Feb 20, 2001 at 11:33:14AM -0600 Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [Format recovered--see http://www.lemis.com/email/email-format.html] Your mailer wraps long lines. On Tuesday, 20 February 2001 at 11:33:14 -0600, Porter wrote: > Ok, I've been trying to send mail to questions-freebsd.org for four days > now. I've tried various links and addresses, all get returned with the > following message. > > > The original message was received at Mon, 19 Feb 2001 13:51:29 -0600 (CST) > from pr-5300-1-fa194.ecenet.com [209.240.250.194] > > ----- The following addresses had transient non-fatal errors ----- > > > ----- Transcript of session follows ----- > ... while talking to hub.freebsd.org.: >>>> RCPT To: > <<< 450 Client host rejected: cannot find your hostname, [204.220.140.4] > > ... Deferred: 450 Client host rejected: > cannot find your hostname, [204.220.140.4] > Warning: message still undelivered after 4 hours > Will keep trying until message is 5 days old This sounds reasonable. Have you fixed your reverse mapping? Greg -- When replying to this message, please take care not to mutilate the original text. For more information, see http://www.lemis.com/email.html Finger grog@lemis.com for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 7:50: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 C268537B6A1 for ; Wed, 21 Feb 2001 07:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LFo1359050; Wed, 21 Feb 2001 07:50:01 -0800 (PST) (envelope-from gnats) Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id A05A837B65D for ; Wed, 21 Feb 2001 07:44:04 -0800 (PST) (envelope-from naddy@mips.inka.de) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 14VbQx-0002qb-01; Wed, 21 Feb 2001 16:44:03 +0100 Received: (from naddy@localhost) by kemoauc.mips.inka.de (8.11.2/8.11.1) id f1LFg1N02718; Wed, 21 Feb 2001 16:42:01 +0100 (CET) (envelope-from naddy) Message-Id: <200102211542.f1LFg1N02718@kemoauc.mips.inka.de> Date: Wed, 21 Feb 2001 16:42:01 +0100 (CET) From: Christian Weisgerber Reply-To: naddy@mips.inka.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/25254: devfs uses obsolete sa(4) device names Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25254 >Category: kern >Synopsis: devfs uses obsolete sa(4) device names >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 Feb 21 07:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 5.0-CURRENT alpha >Organization: >Environment: System: FreeBSD kemoauc.mips.inka.de 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Wed Feb 21 15:14:11 CET 2001 naddy@kemoauc.mips.inka.de:/usr/src/sys/compile/KEMOAUC alpha >Description: devfs uses an obsolete set of SCSI tape device names: rsaN.ctl, rsaN*, nrsaN*, ersaN* Some time ago the tape device names were brought in line with the other devices and the 'r' (for "raw device") was stripped: saN.ctl, saN*, nsaN*, esaN* devfs should follow this convention as well. Also see the sa(4) man page. >How-To-Repeat: >Fix: --- sys/cam/scsi/scsi_sa.c.orig Wed Feb 21 14:52:38 2001 +++ sys/cam/scsi/scsi_sa.c Wed Feb 21 14:53:46 2001 @@ -1467,24 +1467,24 @@ softc->devs.ctl_dev = make_dev(&sa_cdevsw, SAMINOR(SA_CTLDEV, periph->unit_number, 0, SA_ATYPE_R), UID_ROOT, GID_OPERATOR, - 0660, "r%s%d.ctl", periph->periph_name, periph->unit_number); + 0660, "%s%d.ctl", periph->periph_name, periph->unit_number); for (i = 0; i < SA_NUM_MODES; i++) { softc->devs.mode_devs[i].r_dev = make_dev(&sa_cdevsw, SAMINOR(SA_NOT_CTLDEV, periph->unit_number, i, SA_ATYPE_R), - UID_ROOT, GID_OPERATOR, 0660, "r%s%d.%d", + UID_ROOT, GID_OPERATOR, 0660, "%s%d.%d", periph->periph_name, periph->unit_number, i); softc->devs.mode_devs[i].nr_dev = make_dev(&sa_cdevsw, SAMINOR(SA_NOT_CTLDEV, periph->unit_number, i, SA_ATYPE_NR), - UID_ROOT, GID_OPERATOR, 0660, "nr%s%d.%d", + UID_ROOT, GID_OPERATOR, 0660, "n%s%d.%d", periph->periph_name, periph->unit_number, i); softc->devs.mode_devs[i].er_dev = make_dev(&sa_cdevsw, SAMINOR(SA_NOT_CTLDEV, periph->unit_number, i, SA_ATYPE_ER), - UID_ROOT, GID_OPERATOR, 0660, "er%s%d.%d", + UID_ROOT, GID_OPERATOR, 0660, "e%s%d.%d", periph->periph_name, periph->unit_number, i); /* @@ -1492,11 +1492,11 @@ */ if (i == 0) { make_dev_alias(softc->devs.mode_devs[i].r_dev, - "r%s%d", periph->periph_name, periph->unit_number); + "%s%d", periph->periph_name, periph->unit_number); make_dev_alias(softc->devs.mode_devs[i].nr_dev, - "nr%s%d", periph->periph_name, periph->unit_number); + "n%s%d", periph->periph_name, periph->unit_number); make_dev_alias(softc->devs.mode_devs[i].er_dev, - "er%s%d", periph->periph_name, periph->unit_number); + "e%s%d", periph->periph_name, periph->unit_number); } } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 8: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 73BFF37B491 for ; Wed, 21 Feb 2001 08:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LGA1S63752; Wed, 21 Feb 2001 08:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F62C37B491 for ; Wed, 21 Feb 2001 08:04:17 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LG4HI60742; Wed, 21 Feb 2001 08:04:17 -0800 (PST) (envelope-from nobody) Message-Id: <200102211604.f1LG4HI60742@freefall.freebsd.org> Date: Wed, 21 Feb 2001 08:04:17 -0800 (PST) From: hburch@lumeta.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25255: keyboard response very slow with PCMCIA Ethernet card in Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25255 >Category: kern >Synopsis: keyboard response very slow with PCMCIA Ethernet card in >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 21 08:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Hal Burch >Release: FreeBSD 4.2-STABLE i386 >Organization: Lumeta Corporation >Environment: FreeBSD halport.pc.cs.cmu.edu 4.2-STABLE FreeBSD 4.2-STABLE #1: Tue Jan 30 14:34:30 EST 2001 hburch@hal-port.research.bell-labs.com:/usr/src/sys/compile/LOCAL i386 >Description: On a IBM 600X laptop, the keyboard response becomes very long (1/2-1 sec) when I have an Ethernet card installed (and powered). The problem is not when the card is initially installed, but minutes to hours later. The time delay depend on the network it is on, and varies fairly widely. The delay only occurs when I type quickly (my typing speed is 5-8 presses per second) Case #1: 30-40 packet per second on network, minimal network usage Time delay: 8 minutes - 1 hour Case #2: <.8 packets per second, more extensive network usage Time delay: 4+ hours Case #3: <.8 packets per second background, LARGE network usage With my computer sending ~200 packets per second (using both BPF to receive & raw sockets to send), the machine becomes practically unusable within a minute. The problem is intermittant, with no pattern I can recognize on whether, but it seems to generally last 5-10 minutes. I use both BPF and raw sockets, which is probably a little unusual, but whether or not I'm using them at the time does not seem to matter. My uptime is pegged at 0.00. The keyboard also losses key presses if I continue to type quickly, but as they do not appear to be lost if I type slowly, this is probably due to the keyboard buffer becoming full, not a direct problem. Bucky key releases appear to be lost as well. Mouse is still responsive. >How-To-Repeat: I have not tested this on similar laptops, but generically, plug in an PCMCIA Ethernet card and send packets quickly. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 8: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 2A35637B401 for ; Wed, 21 Feb 2001 08:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LGK2I64781; Wed, 21 Feb 2001 08:20:02 -0800 (PST) (envelope-from gnats) Date: Wed, 21 Feb 2001 08:20:02 -0800 (PST) Message-Id: <200102211620.f1LGK2I64781@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Poul-Henning Kamp Subject: Re: kern/25254: devfs uses obsolete sa(4) device names Reply-To: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/25254; it has been noted by GNATS. From: Poul-Henning Kamp To: naddy@mips.inka.de Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/25254: devfs uses obsolete sa(4) device names Date: Wed, 21 Feb 2001 17:13:04 +0100 In message <200102211542.f1LFg1N02718@kemoauc.mips.inka.de>, Christian Weisgerber writes: >>Description: > >devfs uses an obsolete set of SCSI tape device names: > rsaN.ctl, rsaN*, nrsaN*, ersaN* > >--- sys/cam/scsi/scsi_sa.c.orig Wed Feb 21 14:52:38 2001 >+++ sys/cam/scsi/scsi_sa.c Wed Feb 21 14:53:46 2001 >@@ -1467,24 +1467,24 @@ This is not picking on you or anybody else, I just want to note that devfs doesn't decide naming. Drivers do. -- 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 Wed Feb 21 9:11: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 A35A137B401; Wed, 21 Feb 2001 09:11:44 -0800 (PST) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LHBim73218; Wed, 21 Feb 2001 09:11:44 -0800 (PST) (envelope-from mjacob) Date: Wed, 21 Feb 2001 09:11:44 -0800 (PST) From: Message-Id: <200102211711.f1LHBim73218@freefall.freebsd.org> To: mjacob@FreeBSD.org, freebsd-bugs@FreeBSD.org, mjacob@FreeBSD.org Subject: Re: kern/25254: devfs uses obsolete sa(4) device names Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: devfs uses obsolete sa(4) device names Responsible-Changed-From-To: freebsd-bugs->mjacob Responsible-Changed-By: mjacob Responsible-Changed-When: Wed Feb 21 09:11:25 PST 2001 Responsible-Changed-Why: My bug. . http://www.freebsd.org/cgi/query-pr.cgi?pr=25254 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 9:12: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 467F837B401; Wed, 21 Feb 2001 09:12:27 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LHCRA73344; Wed, 21 Feb 2001 09:12:27 -0800 (PST) (envelope-from ru) Date: Wed, 21 Feb 2001 09:12:27 -0800 (PST) From: Message-Id: <200102211712.f1LHCRA73344@freefall.freebsd.org> To: jesper@skriver.dk, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, jesper@FreeBSD.org Subject: Re: kern/24512: Sent ICMP unreach when packet not for us is received, and forwarding is disabled Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Sent ICMP unreach when packet not for us is received, and forwarding is disabled State-Changed-From-To: closed->open State-Changed-By: ru State-Changed-When: Wed Feb 21 09:09:50 PST 2001 State-Changed-Why: The change was backed out since it violates Host Requirements. Responsible-Changed-From-To: freebsd-bugs->jesper Responsible-Changed-By: ru Responsible-Changed-When: Wed Feb 21 09:09:50 PST 2001 Responsible-Changed-Why: Jesper is going to find a better solution. http://www.freebsd.org/cgi/query-pr.cgi?pr=24512 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 9:13: 9 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 365DE37B401 for ; Wed, 21 Feb 2001 09:13:06 -0800 (PST) (envelope-from mjacob@feral.com) Received: from beppo (beppo [192.67.166.79]) by feral.com (8.9.3/8.9.3) with ESMTP id JAA15864; Wed, 21 Feb 2001 09:12:13 -0800 Date: Wed, 21 Feb 2001 09:12:12 -0800 (PST) From: Matthew Jacob Reply-To: mjacob@feral.com To: Poul-Henning Kamp Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/25254: devfs uses obsolete sa(4) device names In-Reply-To: <200102211620.f1LGK2I64781@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 21 Feb 2001, Poul-Henning Kamp wrote: > The following reply was made to PR kern/25254; it has been noted by GNATS. > > From: Poul-Henning Kamp > To: naddy@mips.inka.de > Cc: FreeBSD-gnats-submit@FreeBSD.ORG > Subject: Re: kern/25254: devfs uses obsolete sa(4) device names > Date: Wed, 21 Feb 2001 17:13:04 +0100 > > In message <200102211542.f1LFg1N02718@kemoauc.mips.inka.de>, Christian Weisgerber writes: > > >>Description: > > > >devfs uses an obsolete set of SCSI tape device names: > > rsaN.ctl, rsaN*, nrsaN*, ersaN* > > > >--- sys/cam/scsi/scsi_sa.c.orig Wed Feb 21 14:52:38 2001 > >+++ sys/cam/scsi/scsi_sa.c Wed Feb 21 14:53:46 2001 > >@@ -1467,24 +1467,24 @@ > > This is not picking on you or anybody else, I just want to note that > devfs doesn't decide naming. Drivers do. Yes. And mine needs updating. > > -- > 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 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 11: 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 2A59437B69E for ; Wed, 21 Feb 2001 11:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LJ00u89068; Wed, 21 Feb 2001 11:00:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E4FA37B65D for ; Wed, 21 Feb 2001 10:58:52 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LIwqN88898; Wed, 21 Feb 2001 10:58:52 -0800 (PST) (envelope-from nobody) Message-Id: <200102211858.f1LIwqN88898@freefall.freebsd.org> Date: Wed, 21 Feb 2001 10:58:52 -0800 (PST) From: oysteik@online.no To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/25259: Problem with floppies Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25259 >Category: misc >Synopsis: Problem with floppies >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 21 11:00:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Oystein Kaldhol >Release: 4.2 >Organization: Neurotox INC >Environment: New install. >Description: There is a problem with the kern.flp and/or mfsroot.flp images on the site. When you try to boot from these discs, once you get past the kernel-config, the machine gets an error. "Panic: I'm not going anywhere without my init." >How-To-Repeat: Download the floppys from ftp.freebsd.org. Use fdimage.exe and create them. Then try to boot. >Fix: Use the floppy images from the CD-rom-iso, and use rawrite instead of fdimage. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 12:46: 9 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from system9.euronet.nl (system9.euronet.nl [194.134.32.125]) by hub.freebsd.org (Postfix) with ESMTP id 08B8D37B401; Wed, 21 Feb 2001 12:46:05 -0800 (PST) (envelope-from jfdeboer@system9.euronet.nl) Received: by system9.euronet.nl (Postfix, from userid 1001) id 785F83B0C; Wed, 21 Feb 2001 21:46:00 +0100 (CET) Date: Wed, 21 Feb 2001 21:46:00 +0100 From: Jurriaan de Boer To: freebsd-bugs@freebsd.org Cc: freebsd-questions@freebsd.org Subject: Being worked on ? Message-ID: <20010221214600.A85555@system9.euronet.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-OS: FreeBSD 4.2-STABLE i386 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, How come this still is possible in FreeBSD 4.2-STABLE...: http://security-archive.merton.ox.ac.uk/archive-200006/0083.html [On my box network is down for ~4 minutes but luckily comes up after that again] What a crap that this hasn't been resolved yet... --Jur To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 13:10: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 5C47F37B4EC for ; Wed, 21 Feb 2001 13:10:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LLA9h12978; Wed, 21 Feb 2001 13:10:09 -0800 (PST) (envelope-from gnats) Received: from neptune.firstindustrial.com (neptune.firstindustrial.com [63.141.111.218]) by hub.freebsd.org (Postfix) with ESMTP id 556C437B491 for ; Wed, 21 Feb 2001 13:04:22 -0800 (PST) (envelope-from nickc@CORP.FirstIndustrial.com) Received: from havala.firstindustrial.com (host63-141-111-217.firstindustrial.com [63.141.111.217]) by neptune.firstindustrial.com (Postfix) with ESMTP id 85713588F for ; Wed, 21 Feb 2001 21:04:19 +0000 (GMT) Received: from filter.corp.firstindustrial.com (filter.corp.firstindustrial.com [172.16.0.16]) by havala.firstindustrial.com (Postfix) with SMTP id 54E0E5D19 for ; Wed, 21 Feb 2001 15:04:19 -0600 (CST) Received: FROM first-corp.corp.firstindustrial.com BY filter.corp.firstindustrial.com ; Wed Feb 21 15:02:03 2001 -0600 Received: by first-corp.corp.firstindustrial.com with Internet Mail Service (5.5.2650.21) id ; Wed, 21 Feb 2001 15:02:03 -0600 Message-Id: Date: Wed, 21 Feb 2001 15:02:02 -0600 From: Nick Colakovic To: "'FreeBSD-gnats-submit@freebsd.org'" Subject: kern/25261: IFT-3102 problems related to recent ahc changes. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25261 >Category: kern >Synopsis: ahc0 no active SCB errors when booting off of IFT-3102 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 21 13:10:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Nick Colakovic >Release: FreeBSD 4.2-STABLE i386 >Organization: First Industrial Realty Trust >Environment: FreeBSD 4.2-STABLE #0: Mon Feb 19 17:59:58 CST 2001 nickc@pariah.firstindustrial.com:/usr/obj/usr/src/sys/SCLEAN.ift Host system: Intel CA810E system board PIII 550E 128MB RAM Adaptec 2940U2W Controller (Bios 2.20.0) w/ Translate Disk >1GB Turned off Infortrend IFT-3102U2G Controller Firmware 2.23k 32MB Cache Host Attached to Channel #3 (of 6) Host LUN ID 0, Unit 0 setup to attach to 4096MB Partition of RAID 1 Logical Drive (da0) which has been setup in the following way: # size offset fstype [fsize bsize bps/cpg] a: 286720 0 4.2BSD 1024 8192 16 # (Cyl. 0 - 139) / b: 819200 286720 swap # (Cyl. 140 - 539) c: 8388576 0 unused 0 0 # (Cyl. 0 - 4095*) e: 1048576 1105920 4.2BSD 1024 8192 16 # (Cyl. 540 - 1051) /var f: 4194304 2154496 4.2BSD 1024 8192 16 # (Cyl. 1052 - 3099) /usr g: 2039776 6348800 4.2BSD 1024 8192 16 # (Cyl. 3100 - 4095*) /tmp Host LUN ID 0, Unit 0 setup to attach to 4096MB Partition of Raid 1 Logical Drive (da1) which has been setup in the following way: # size offset fstype [fsize bsize bps/cpg] c: 8388576 0 unused 0 0 # (Cyl. 0 - 4095*) e: 4194304 0 4.2BSD 1024 8192 16 # (Cyl. 0 - 2047) /a f: 4194272 4194304 4.2BSD 1024 8192 16 # (Cyl. 2048 - 4095*) /b >Description: As a result of what are assumed to be the recent changes to the ahc driver code, when a FreeBSD 4.2-STABLE system is booted off of Adaptec 2940U2W controller attached to a Infortrend IFT-3102 External Raid Controller kernel errors are seen at system boot when the OS starts to mount filesystems. One error will appear at startup for each host LUN as filesystems are mounted So for two host LUNs two sets of errors will be seen on the console at bootup. The exact output received is: Hit [Enter] to boot immediately, or any other key for command prompt. Booting [kernel]... 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.2-STABLE #0: Mon Feb 19 17:59:58 CST 2001 nickc@pariah.firstindustrial.com:/usr/obj/usr/src/sys/SCLEAN.ift Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 548336371 Hz CPU: Pentium III/Pentium III Xeon/Celeron (548.34-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x681 Stepping = 1 Features=0x387f9ff real memory = 132907008 (129792K bytes) avail memory = 126377984 (123416K bytes) pnpbios: Bad PnP BIOS data checksum Preloaded elf kernel "kernel" at 0xc02f7000. Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: at 1.0 irq 11 pcib1: at device 30.0 on pci0 pci1: on pcib1 fxp0: port 0xdf00-0xdf3f mem 0xff700000-0xff7fffff,0xff8fe000-0xff8fefff irq 15 at device 1.0 on pci1 fxp0: Ethernet address 00:03:47:06:d6:84 ahc0: port 0xd800-0xd8ff mem 0xff8ff000-0xff8fffff irq 14 at device 9.0 on pci1 aic7890/91: Wide Channel A, SCSI Id=7, 32/255 SCBs isab0: at device 31.0 on pci0 isa0: on isab0 pci0: at 31.1 pci0: at 31.2 irq 15 pci0: (vendor=0x8086, dev=0x2413) at 31.3 irq 14 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model IntelliMouse, device ID 3 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x100> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A, console sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode lpt0: on ppbus0 lpt0: Interrupt-driven port Waiting 15 seconds for SCSI devices to settle da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 80.000MB/s transfers (40.000MHz, offset 31, 16bit), Tagged Queueing Enabled da0: 4096MB (8388608 512 byte sectors: 64H 32S/T 4096C) da1 at ahc0 bus 0 target 0 lun 1 da1: Fixed Direct Access SCSI-2 device da1: 80.000MB/s transfers (40.000MHz, offset 31, 16bit), Tagged Queueing Enabled da1: 4096MB (8388608 512 byte sectors: 64H 32S/T 4096C) Mounting root from ufs:/dev/da0s1a swapon: adding /dev/da0s1b as swap device Automatic boot in progress... /dev/da0s1a: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/da0s1a: clean, 105616 free (376 frags, 13155 blocks, 0.3% fragmentation) ahc0:A:0: no active SCB for reconnecting target - issuing BUS DEVICE RESET SAVED_SCSIID == 0x7, SAVED_LUN == 0x0, ARG_1 == 0xe ACCUM = 0x1 SEQ_FLAGS == 0x0, SCBPTR == 0x0, BTT == 0xe, SINDEX == 0x31 SCSIID == 0x0, SCB_SCSIID == 0x7, SCB_LUN == 0x1, SCB_TAG == 0xff, SCB_CONTROL == 0x44 SCSIBUSL == 0x80, SCSISIGI == 0xe6 SXFRCTL0 == 0x88 SEQCTL == 0x10 ahc0: Dumping Card State at SEQADDR 0x1a8 SCB count = 20 Kernel NEXTQSCB = 9 Card NEXTQSCB = 9 QINFIFO entries: Waiting Queue entries: Disconnected Queue entries: 1:15 QOUTFIFO entries: Sequencer Free SCB List: 0 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Pending list: 14 15 Kernel Free SCB list: 16 17 18 19 0 1 2 3 4 5 6 7 8 13 12 11 10 Untagged Q(0): 14 ahc0: Bus Device Reset on A:0. 2 SCBs aborted ahc0:A:0: no active SCB for reconnecting target - issuing BUS DEVICE RESET SAVED_SCSIID == 0x7, SAVED_LUN == 0x0, ARG_1 == 0x9 ACCUM = 0x1 SEQ_FLAGS == 0x0, SCBPTR == 0x0, BTT == 0x9, SINDEX == 0x31 SCSIID == 0x0, SCB_SCSIID == 0x7, SCB_LUN == 0x1, SCB_TAG == 0xff, SCB_CONTROL == 0x44 SCSIBUSL == 0x80, SCSISIGI == 0xe6 SXFRCTL0 == 0x88 SEQCTL == 0x10 ahc0: Dumping Card State at SEQADDR 0x1a8 SCB count = 20 Kernel NEXTQSCB = 15 Card NEXTQSCB = 15 QINFIFO entries: Waiting Queue entries: Disconnected Queue entries: 1:14 QOUTFIFO entries: Sequencer Free SCB List: 0 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Pending list: 9 14 Kernel Free SCB list: 16 17 18 19 0 1 2 3 4 5 6 7 8 13 12 11 10 Untagged Q(0): 9 ahc0: Bus Device Reset on A:0. 2 SCBs aborted /dev/da1s1e: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/da1s1e: clean, 1961556 free (1052 frags, 245063 blocks, 0.1% fragmentation) /dev/da1s1f: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/da1s1f: clean, 2032606 free (14 frags, 254074 blocks, 0.0% fragmentation) /dev/da0s1g: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/da0s1g: clean, 966967 free (71 frags, 120862 blocks, 0.0% fragmentation) /dev/da0s1f: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/da0s1f: clean, 1120887 free (38823 frags, 135258 blocks, 1.9% fragmentation) /dev/da0s1e: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/da0s1e: clean, 501330 free (82 frags, 62656 blocks, 0.0% fragmentation) [remainder deleted] These errors were repeated when the kernel was rebuilt using the GENERIC config. 4.2-STABLE as of 1-08-2001 did not show these errors at startup. Only after the system was updated to 4.2-STABLE as of 2-18-2001 to fix the security vunerability in FreeBSD-SA-01:24 did this problem manifest itself. >How-To-Repeat: Install/run 4.2-STABLE (>11-18-2001) on a IFT-3102 RAID controller. At the start of filesystem mount kernel errors related to ahc SCB's. >Fix: Apply the following patch to /usr/src/sys/cam/cam_xpt.c which adds a quirk entry for the IFT-3102 to limit the number of tags to use to the controller default of 32 per host LUN: 84a385,396 > /* > * Infortrend IFT-3102 has a global host scsi channel > * configuration paramater that determines the maximum > * number of tags that each host lun (logical drive presented > * by the raid controller to the host controller) > * can handle. By default this is 32 tags per lun. > */ > { > { T_DIRECT, SIP_MEDIA_FIXED, "IFT", "3102", "*" }, > /*quirks*/0, /*mintags*/2, /*maxtags*/32 > }, > Another possible workaround is to try to increase the number of tags per host LUN to 255, but this might have other adverse affects on controller performance. I didn't test this as this controller handles 4 production systems with two different OSes (FreeBSD and NT) and I cannot risk stability problems on these other systems. >Release-Note: >Audit-Trail: >Unformatted: controller To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 13: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 BEF1537B65D for ; Wed, 21 Feb 2001 13:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LLU1I19177; Wed, 21 Feb 2001 13:30:01 -0800 (PST) (envelope-from gnats) Received: from news.IAEhv.nl (news.IAE.nl [194.151.64.4]) by hub.freebsd.org (Postfix) with ESMTP id 88A3C37B401 for ; Wed, 21 Feb 2001 13:22:14 -0800 (PST) (envelope-from Arjan.deVet@adv.iae.nl) Received: (from uucp@localhost) by news.IAEhv.nl (8.9.1/8.9.1) with IAEhv.nl id WAA12474 for FreeBSD-gnats-submit@freebsd.org; Wed, 21 Feb 2001 22:22:12 +0100 (MET) Received: by adv.devet.org (Postfix, from userid 100) id 935143E15; Wed, 21 Feb 2001 22:21:48 +0100 (CET) Message-Id: <20010221212148.935143E15@adv.devet.org> Date: Wed, 21 Feb 2001 22:21:48 +0100 (CET) From: Arjan de Vet Reply-To: Arjan de Vet To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/25263: OpenSSH and /etc/login.access do not work with IP addresses Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25263 >Category: bin >Synopsis: openssh and /etc/login.access does not work with IP addr >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 21 13:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Arjan de Vet >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: FreeBSD adv.devet.org 4.2-STABLE FreeBSD 4.2-STABLE #2: Sun Feb 18 21:54:27 CET 2001 root@adv.devet.org:/home/obj/usr/src/sys/ADV i386 >Description: OpenSSH does not always work correctly with the /etc/login.access file when IP addresses and networks are used in that file. Host/domain names work OK. See also conf/5062. >How-To-Repeat: Add something like this to /etc/login.access +:wheel:192.168.1. and try to login from a 192.168.1.* host with a usercode present in the wheel group. >Fix: Check the IP address too with login_access(3): Index: auth1.c =================================================================== RCS file: /home/freebsd/CVS/src/crypto/openssh/auth1.c,v retrieving revision 1.3.2.4 diff -u -r1.3.2.4 auth1.c --- auth1.c 2001/01/12 04:25:55 1.3.2.4 +++ auth1.c 2001/02/21 20:59:04 @@ -458,7 +458,8 @@ } #endif /* HAVE_LOGIN_CAP */ #ifdef LOGIN_ACCESS - if (pw != NULL && !login_access(pw->pw_name, from_host)) { + if (pw != NULL && !login_access(pw->pw_name, from_host) + && !login_access(pw->pw_name, from_ip)) { log("Denied connection for %.200s from %.200s [%.200s].", pw->pw_name, from_host, from_ip); packet_disconnect("Sorry, you are not allowed to connect."); Index: auth2.c =================================================================== RCS file: /home/freebsd/CVS/src/crypto/openssh/auth2.c,v retrieving revision 1.2.2.4 diff -u -r1.2.2.4 auth2.c --- auth2.c 2001/01/12 04:25:55 1.2.2.4 +++ auth2.c 2001/02/21 20:59:35 @@ -248,7 +248,8 @@ #endif /* HAVE_LOGIN_CAP */ #ifdef LOGIN_ACCESS if (authctxt->pw != NULL && - !login_access(authctxt->pw->pw_name, from_host)) { + !login_access(authctxt->pw->pw_name, from_host) && + !login_access(authctxt->pw->pw_name, from_ip)) { log("Denied connection for %.200s from %.200s [%.200s].", authctxt->pw->pw_name, from_host, from_ip); packet_disconnect("Sorry, you are not allowed to connect."); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 13: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 9A3CB37B401; Wed, 21 Feb 2001 13:30:30 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: (from darrenr@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LLUUT19248; Wed, 21 Feb 2001 13:30:30 -0800 (PST) (envelope-from darrenr) Date: Wed, 21 Feb 2001 13:30:30 -0800 (PST) From: Message-Id: <200102212130.f1LLUUT19248@freefall.freebsd.org> To: darrenr@FreeBSD.org, freebsd-bugs@FreeBSD.org, darrenr@FreeBSD.org Subject: Re: gnu/24445: ipnat does not parse its file properly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ipnat does not parse its file properly Responsible-Changed-From-To: freebsd-bugs->darrenr Responsible-Changed-By: darrenr Responsible-Changed-When: Wed Feb 21 13:29:17 PST 2001 Responsible-Changed-Why: darrenr is responsible for ipnat http://www.freebsd.org/cgi/query-pr.cgi?pr=24445 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 13:32: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 5B2B337B491; Wed, 21 Feb 2001 13:32:12 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: (from darrenr@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LLWCw19687; Wed, 21 Feb 2001 13:32:12 -0800 (PST) (envelope-from darrenr) Date: Wed, 21 Feb 2001 13:32:12 -0800 (PST) From: Message-Id: <200102212132.f1LLWCw19687@freefall.freebsd.org> To: darrenr@FreeBSD.org, freebsd-bugs@FreeBSD.org, darrenr@FreeBSD.org Subject: Re: kern/22012: Secure level 2 in kernel prevents read access to ipnat information Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Secure level 2 in kernel prevents read access to ipnat information Responsible-Changed-From-To: freebsd-bugs->darrenr Responsible-Changed-By: darrenr Responsible-Changed-When: Wed Feb 21 13:31:43 PST 2001 Responsible-Changed-Why: darrenr is responsible for ipfilter http://www.freebsd.org/cgi/query-pr.cgi?pr=22012 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 13:33: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 1F55437B4EC; Wed, 21 Feb 2001 13:33:33 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: (from darrenr@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LLXXo19961; Wed, 21 Feb 2001 13:33:33 -0800 (PST) (envelope-from darrenr) Date: Wed, 21 Feb 2001 13:33:33 -0800 (PST) From: Message-Id: <200102212133.f1LLXXo19961@freefall.freebsd.org> To: darrenr@FreeBSD.org, freebsd-bugs@FreeBSD.org, darrenr@FreeBSD.org Subject: Re: conf/22859: rc.network should start ipf/ipnat AFTER ppp (like ipfw/natd) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: rc.network should start ipf/ipnat AFTER ppp (like ipfw/natd) Responsible-Changed-From-To: freebsd-bugs->darrenr Responsible-Changed-By: darrenr Responsible-Changed-When: Wed Feb 21 13:32:27 PST 2001 Responsible-Changed-Why: darrenr is responsible for ipf/ipnat http://www.freebsd.org/cgi/query-pr.cgi?pr=22859 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 13:33: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 C766337B4EC; Wed, 21 Feb 2001 13:33:52 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: (from darrenr@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LLXqt20082; Wed, 21 Feb 2001 13:33:52 -0800 (PST) (envelope-from darrenr) Date: Wed, 21 Feb 2001 13:33:52 -0800 (PST) From: Message-Id: <200102212133.f1LLXqt20082@freefall.freebsd.org> To: darrenr@FreeBSD.org, freebsd-bugs@FreeBSD.org, darrenr@FreeBSD.org Subject: Re: conf/25223: PATCH for rc.network to enable ipnat seperately from ipfilter Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: PATCH for rc.network to enable ipnat seperately from ipfilter Responsible-Changed-From-To: freebsd-bugs->darrenr Responsible-Changed-By: darrenr Responsible-Changed-When: Wed Feb 21 13:33:40 PST 2001 Responsible-Changed-Why: darrenr is responsible for ipnat http://www.freebsd.org/cgi/query-pr.cgi?pr=25223 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 13: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 8374737B4EC; Wed, 21 Feb 2001 13:38:16 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: (from darrenr@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LLcGg20832; Wed, 21 Feb 2001 13:38:16 -0800 (PST) (envelope-from darrenr) Date: Wed, 21 Feb 2001 13:38:16 -0800 (PST) From: Message-Id: <200102212138.f1LLcGg20832@freefall.freebsd.org> To: Matt@MPCM.com, darrenr@FreeBSD.org, freebsd-bugs@FreeBSD.org, darrenr@FreeBSD.org Subject: Re: kern/24252: IPFILTER Kernel Module cannot find osreldate.h Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: IPFILTER Kernel Module cannot find osreldate.h State-Changed-From-To: open->closed State-Changed-By: darrenr State-Changed-When: Wed Feb 21 13:37:23 PST 2001 State-Changed-Why: recent import fixes this problem. Responsible-Changed-From-To: freebsd-bugs->darrenr Responsible-Changed-By: darrenr Responsible-Changed-When: Wed Feb 21 13:37:23 PST 2001 Responsible-Changed-Why: darrenr is responsible for ipfilter http://www.freebsd.org/cgi/query-pr.cgi?pr=24252 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 13:39: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 A572F37B4EC; Wed, 21 Feb 2001 13:39:37 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: (from darrenr@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LLdXF21118; Wed, 21 Feb 2001 13:39:33 -0800 (PST) (envelope-from darrenr) Date: Wed, 21 Feb 2001 13:39:33 -0800 (PST) From: Message-Id: <200102212139.f1LLdXF21118@freefall.freebsd.org> To: drama@slakin.net, darrenr@FreeBSD.org, freebsd-bugs@FreeBSD.org, darrenr@FreeBSD.org Subject: Re: i386/24598: with IPFilter options in the kernel, it errors on compile Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: with IPFilter options in the kernel, it errors on compile State-Changed-From-To: open->closed State-Changed-By: darrenr State-Changed-When: Wed Feb 21 13:38:30 PST 2001 State-Changed-Why: this has been fixed with recent imports Responsible-Changed-From-To: freebsd-bugs->darrenr Responsible-Changed-By: darrenr Responsible-Changed-When: Wed Feb 21 13:38:30 PST 2001 Responsible-Changed-Why: darrenr is responsible for ipfilter http://www.freebsd.org/cgi/query-pr.cgi?pr=24598 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 14:40: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 333D637B4EC for ; Wed, 21 Feb 2001 14:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LMe1t40352; Wed, 21 Feb 2001 14:40:01 -0800 (PST) (envelope-from gnats) Received: from hunches.go2net.com (natbox.go2net.com [209.191.181.146]) by hub.freebsd.org (Postfix) with ESMTP id AFD0937B4EC for ; Wed, 21 Feb 2001 14:38:44 -0800 (PST) (envelope-from eugenea@go2net.com) Received: from eugenea by hunches.go2net.com with local-smtp (Exim 3.12 #1 (Debian)) id 14VhuG-0004XJ-00; Wed, 21 Feb 2001 14:38:44 -0800 Message-Id: Date: Wed, 21 Feb 2001 14:38:44 -0800 (PST) From: Yevgeniy Aleynikov To: FreeBSD-gnats-submit@freebsd.org Subject: kern/25264: Kernel trap 12 in camisr Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25264 >Category: kern >Synopsis: Kernel trap 12 in camisr >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 21 14:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Eugene Aleynikov >Release: FreeBSD 4.2-RELEASE i386 >Organization: Go2net >Environment: Standard BSDi X-treme server - Intel L440GX+ m/b dmesg.boot: Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.2-RELEASE #5: Tue Feb 20 12:37:46 PST 2001 user@domain.com:/usr/src/sys/compile/HMV Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (796.54-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x387fbff real memory = 536805376 (524224K bytes) avail memory = 519602176 (507424K bytes) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 1, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xc02ab000. Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib2: at device 1.0 on pci0 pci1: on pcib2 pcib3: at device 15.0 on pci1 pci2: on pcib3 fxp0: port 0x3000-0x303f mem 0xf4200000-0xf42f ffff,0xf4300000-0xf4300fff irq 20 at device 4.0 on pci2 fxp0: Ethernet address 00:02:b3:08:76:45 ahc0: port 0x2000-0x20ff mem 0xf4100000 -0xf4100fff irq 19 at device 12.0 on pci0 aic7896/97: Wide Channel A, SCSI Id=7, 32/255 SCBs ahc1: port 0x2400-0x24ff mem 0xf4101000 -0xf4101fff irq 19 at device 12.1 on pci0 aic7896/97: Wide Channel B, SCSI Id=7, 32/255 SCBs fxp1: port 0x2800-0x283f mem 0xf4000000-0xf40f ffff,0xf4102000-0xf4102fff irq 21 at device 14.0 on pci0 fxp1: Ethernet address 00:d0:b7:a9:c4:c6 isab0: at device 18.0 on pci0 isa0: on isab0 atapci0: port 0x2860-0x286f at device 18.1 on pci 0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 18.2 irq 21 Timecounter "PIIX" frequency 3579545 Hz chip1: port 0x1040-0x104f at device 18.3 on pci0 pci0: at 20.0 pcib1: on motherboard pci3: on pcib1 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: irq 1 on atkbdc0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x0> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A, console sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold APIC_IO: Testing 8254 interrupt delivery APIC_IO: routing 8254 via IOAPIC #0 intpin 2 IP packet filtering initialized, divert disabled, rule-based forwarding enabled, default to accept, logging limited to 100 packets/entry by default DUMMYNET initialized (000608) Waiting 15 seconds for SCSI devices to settle SMP: AP CPU #1 Launched! sa0 at ahc1 bus 0 target 3 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 10.000MB/s transfers (10.000MHz, offset 32) da1 at ahc0 bus 0 target 2 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 80.000MB/s transfers (40.000MHz, offset 31, 16bit), Tagged Queueing Enabled da1: 35003MB (71686272 512 byte sectors: 255H 63S/T 4462C) da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-3 device da0: 80.000MB/s transfers (40.000MHz, offset 63, 16bit), Tagged Queueing Enabled da0: 8750MB (17921835 512 byte sectors: 255H 63S/T 1115C) Mounting root from ufs:/dev/da0s1a WARNING: / was not properly dismounted ------------ Kernel config: makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols machine i386 #cpu I586_CPU cpu I686_CPU ident "HMV" # This may be set way to high. It might we worth trying it lower if we # are allocating too much of our resources for the kernel. maxusers 256 options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] # following available as modules #options MFS #Memory Filesystem #options UNION #Union filesystem #options MFS_ROOT #MFS usable as root device, "MFS" req'ed #options NFS #Network Filesystem #options NFS_ROOT #NFS usable as root device, "NFS" req'ed #options MSDOSFS #MSDOS Filesystem #options "CD9660" #ISO 9660 Filesystem options PROCFS #Process filesystem options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Be pessimistic about Joe SCSI device options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) syscall trace support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING #options ICMP_BANDLIM #Rate limit bad replies options PERFMON # To make an SMP kernel, the next two are needed options SMP # Symmetric MultiProcessor Kernel options APIC_IO # Symmetric (APIC) I/O device isa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 device fd1 at fdc0 drive 1 # ATA and ATAPI devices device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata #device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives options ATA_STATIC_ID #Static device numbering #options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # SCSI Controllers # A single entry for any of these devices (ncr, ahb, ahc) is # sufficient for any number of installed devices. device ahc # AHA2940 and onboard AIC7xxx devices device bt0 at isa? # SCSI peripherals # Only one of each of these is needed, they are dynamically allocated. device scbus # SCSI bus (required) device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI) # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 # flags 0x1 device psm0 at atkbdc? irq 12 device vga0 at isa? # splash screen/screen saver #pseudo-device splash # syscons is the default console driver, resembling an SCO console #device sc0 at isa? flags 0x100 device sc0 at isa? options SC_DISABLE_DDBKEY # disable `debug' key options SC_DISABLE_REBOOT # disable reboot key sequence #options SC_MOUSE_CHAR=0x3 # char code for text mode mouse cursor options SC_NO_CUTPASTE options SC_NO_FONT_LOADING options SC_NO_SYSMOUSE # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 #device sio2 at isa? disable port IO_COM3 tty irq 5 #device sio3 at isa? disable port IO_COM4 tty irq 9 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) #device lpt # Printer #device plip # TCP/IP over parallel #device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs. device fxp # Intel EtherExpress PRO/100B (82557, 82558) # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support # Jack this up just in case we have lots of automated stuff doing work. pseudo-device pty # Pseudo-ttys (telnet etc) pseudo-device gzip # Exec gzipped a.out's # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! # The number of devices determines the maximum number of # simultaneous BPF clients programs runnable. pseudo-device bpf #Berkeley packet filter # We need to service many network requests. This should probably be tuned # better to more closely fit our needs. options NMBCLUSTERS=12288 # Set the number of PV entries per process. Increasing this can # stop panics related to heavy use of shared memory. However, that can # (combined with large amounts of physical memory) cause panics at # boot time due the kernel running out of VM space. # # If you're tweaking this, you might also want to increase the sysctls # "vm.v_free_min", "vm.v_free_reserved", and "vm.v_free_target". # # The value below is the one more than the default. # #options PMAP_SHPGPERPROC=201 options PMAP_SHPGPERPROC=401 options QUOTA options IPFIREWALL #firewall options IPFIREWALL_VERBOSE #print information about options IPFIREWALL_FORWARD #enable transparent proxy support options IPFIREWALL_VERBOSE_LIMIT=100 #limit verbosity options IPFIREWALL_DEFAULT_TO_ACCEPT #allow everything by default options DUMMYNET #kldstat Id Refs Address Size Name 1 2 0xc0100000 1a9ac0 kernel 2 1 0xc35b5000 4000 null.ko (there's one nullfs mount) >Description: Several times a day kernel crashes with following diag. Cant find coredump because SCSI system is not functioning during crash. login: panic: lockmgr: pid 64908, not exclusive lock holder 380 unlocking mp_lock = 00000001; cpuid = 0; lapic.id = 01000000 boot() called on cpu#0 syncing disks... 203 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 giving up on 202 buffers Uptime: 15h47m27s (da1:ahc0:0:2:0): SYNCHRONIZE CACHE. CDB: 35 0 0 0 0 0 0 0 0 0 (da1:ahc0:0:2:0): ILLEGAL REQUEST asc:20,0 (da1:ahc0:0:2:0): Invalid command operation code dumping to dev #da/0x20001, offset 1048704 dump Fatal trap 12: page fault while in kernel mode mp_lock = 00000002; cpuid = 0; lapic.id = 01000000 fault virtual address = 0x0 fault code = supervisor write, page not present instruction pointer = 0x8:0xc0121968 stack pointer = 0x10:0xdbc0095c frame pointer = 0x10:0xdbc0096c 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 = 64908 (httpd) interrupt mask = net tty bio cam <- SMP: XXX trap number = 12 panic: page fault mp_lock = 00000002; cpuid = 0; lapic.id = 01000000 boot() called on cpu#0 Uptime: 15h47m28s Fatal trap 12: page fault while in kernel mode mp_lock = 00000003; cpuid = 0; lapic.id = 01000000 fault virtual address = 0x10 fault code = supervisor read, page not present instruction pointer = 0x8:0xc0121a84 stack pointer = 0x10:0xdbc00578 frame pointer = 0x10:0xdbc0058c 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 = 64908 (httpd) interrupt mask = net tty bio cam <- SMP: XXX trap number = 12 panic: page fault mp_lock = 00000003; cpuid = 0; lapic.id = 01000000 boot() called on cpu#0 Uptime: 15h47m28s Fatal trap 12: page fault while in kernel mode mp_lock = 00000004; cpuid = 0; lapic.id = 01000000 fault virtual address = 0x10 fault code = supervisor read, page not present instruction pointer = 0x8:0xc0121a84 stack pointer = 0x10:0xdbc00194 frame pointer = 0x10:0xdbc001a8 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 = 64908 (httpd) interrupt mask = net tty bio cam <- SMP: XXX trap number = 12 panic: page fault mp_lock = 00000004; cpuid = 0; lapic.id = 01000000 boot() called on cpu#0 Uptime: 15h47m28s --------skipped several traps with the same instruction pointer----- (kgdb) x/i 0xc0121968 0xc0121968 : mov %eax,(%edx) (kgdb) list *0xc0121968 0xc0121968 is in camisr (../../cam/cam_queue.h:224). 219 220 static __inline void 221 cam_ccbq_ccb_done(struct cam_ccbq *ccbq, union ccb *done_ccb) 222 { 223 TAILQ_REMOVE(&ccbq->active_ccbs, &done_ccb->ccb_h, 224 xpt_links.tqe); 225 ccbq->dev_active--; 226 ccbq->dev_openings++; 227 ccbq->held++; 228 } (kgdb) x/i 0xc0121a84 0xc0121a84 : pushl (%eax) (kgdb) list *0xc0121a84 0xc0121a84 is in camisr (../../cam/cam_xpt.c:6332). 6327 } else if (runq) { 6328 xpt_run_dev_sendq(ccb_h->path->bus); 6329 } 6330 6331 /* Call the peripheral driver's callback */ 6332 (*ccb_h->cbfcnp)(ccb_h->path->periph, (union ccb *)ccb_h); 6333 6334 /* Raise IPL for while test */ 6335 s = splcam(); 6336 } ---------- There's another server also that crashes similar way. SCSI is terminated propertly. SCSI tape (SE device) is on the second SCSI bus alone. >How-To-Repeat: Just keep it running under heavy user load (web+cgi). >Fix: None >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 15: 3: 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 2EBF537B491; Wed, 21 Feb 2001 15:02:59 -0800 (PST) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LN2xG46912; Wed, 21 Feb 2001 15:02:59 -0800 (PST) (envelope-from jkh) Date: Wed, 21 Feb 2001 15:02:59 -0800 (PST) From: Message-Id: <200102212302.f1LN2xG46912@freefall.freebsd.org> To: wolman@cs.washington.edu, jkh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/24264: [PATCH] crypto/CHECKSUM.MD5 is incorrect for releases and snapshots Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] crypto/CHECKSUM.MD5 is incorrect for releases and snapshots State-Changed-From-To: open->closed State-Changed-By: jkh State-Changed-When: Wed Feb 21 15:01:09 PST 2001 State-Changed-Why: Patch committed with one small tweak, thanks. I simply chose to remove the old and empty krb? directories at one step. http://www.freebsd.org/cgi/query-pr.cgi?pr=24264 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 15: 9:40 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 194C937B491; Wed, 21 Feb 2001 15:09:35 -0800 (PST) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 21 Feb 2001 23:09:34 +0000 (GMT) Date: Wed, 21 Feb 2001 23:09:33 +0000 From: David Malone To: Jurriaan de Boer Cc: freebsd-bugs@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Being worked on ? Message-ID: <20010221230933.A67969@walton.maths.tcd.ie> References: <20010221214600.A85555@system9.euronet.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010221214600.A85555@system9.euronet.nl>; from jfdeboer@euronet.nl on Wed, Feb 21, 2001 at 09:46:00PM +0100 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Feb 21, 2001 at 09:46:00PM +0100, Jurriaan de Boer wrote: > Hi, > > How come this still is possible in FreeBSD 4.2-STABLE...: > > http://security-archive.merton.ox.ac.uk/archive-200006/0083.html Does setting per-user sockbuf limits help? By default sbsize seems to be set to unlimited in /etc/login.conf. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 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 0ED1637B503 for ; Wed, 21 Feb 2001 15:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LNK1252748; Wed, 21 Feb 2001 15:20:01 -0800 (PST) (envelope-from gnats) Received: from guru.mired.org (okc-65-26-235-186.mmcable.com [65.26.235.186]) by hub.freebsd.org (Postfix) with SMTP id E462E37B65D for ; Wed, 21 Feb 2001 15:15:26 -0800 (PST) (envelope-from mwm@mired.org) Received: (qmail 16435 invoked by uid 100); 21 Feb 2001 23:15:26 -0000 Message-Id: <20010221231526.16434.qmail@guru.mired.org> Date: 21 Feb 2001 23:15:26 -0000 From: mwm@mired.org Reply-To: mwm@mired.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/25266: fdesc file system in -STABLE locks up during nightly builds Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25266 >Category: kern >Synopsis: fdesc file system in -STABLE locks up during nightly builds >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 21 15:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Mike Meyer >Release: FreeBSD 4.2-STABLE i386 >Organization: Meyer Consulting >Environment: fdesc in use on a 4.2-STABLE system, and daily_clean_disks_enable set to yes in /etc/periodic.conf This lockup only happens if periodic is run from cron; running it from the command line will not cause a problem. >Description: The system locks up every night a few seconds into the daily periodic run. The stack trace from ddb starts in the debugger, back through sc & atkbd, thence through the interrupt (presumably from my invoking DDB at the console). From there, it's: fdesc_readdir+0xe6(
,
, 0,
, 4, 0) getdirentries+0xf4(5 ) Xint0x80_syscall+0x2b According to gdb on the core dump, the fdesc_readdir is: 0xc019223e is in fdesc_readdir (../../miscfs/fdesc/fdesc_vnops.c:614). 609 while (i < sizeof(rootent) / sizeof(rootent[0]) && 610 uio->uio_resid >= UIO_MX) { 611 dt = &rootent[i]; 612 switch (dt->d_fileno) { 613 case FD_CTTY: 614 if (cttyvp(uio->uio_procp) == NULL) 615 continue; 616 break; 617 618 case FD_STDIN: On the face of it, the while loop in fdesc_readdir is simply broken. If you hit one of the continues in the loop (there are others further down), you have missed anything in the loop that might change either i or uip, meaning the loop doesn't terminate. It may be waiting on other events to change it, but somehow I doubt it for the fdesc code. Further, note that the code that is finding the continue in this case is checking for a controlling terminal, which would explain the difference in behavior between running periodic from cron vs from the command line. >How-To-Repeat: set daily_clean_disks_enable to YES in /etc/make.conf on a 4.2 box, mount fdesc, and watch it lock up. >Fix: It's not clear how to fix the code. I note that the last MFC of this code is over a year old, and the very next commit simply removed this code. Possibly MFC'ing a more recent version would solve the problem. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 15: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 D715837B67D for ; Wed, 21 Feb 2001 15:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LNU1r54070; Wed, 21 Feb 2001 15:30:01 -0800 (PST) (envelope-from gnats) Received: from jack.go2net.com (jack.go2net.com [64.50.65.20]) by hub.freebsd.org (Postfix) with SMTP id 169E037B401 for ; Wed, 21 Feb 2001 15:21:51 -0800 (PST) (envelope-from eugenea@infospace.com) Received: (qmail 37715 invoked from network); 21 Feb 2001 23:25:49 -0000 Received: from ketel.go2net.com (10.200.10.75) by jack.go2net.com with SMTP; 21 Feb 2001 23:25:49 -0000 Received: (qmail 5723 invoked from network); 21 Feb 2001 23:21:50 -0000 Received: from hunches.go2net.com (HELO infospace.com) (@[10.225.33.32]) (envelope-sender ) by ketel.go2net.com (qmail-ldap-1.03) with SMTP for ; 21 Feb 2001 23:21:50 -0000 Message-Id: <3A944D8E.866BB02C@infospace.com> Date: Wed, 21 Feb 2001 15:21:50 -0800 From: Eugene Aleynikov Reply-To: eugene@infospace.com To: FreeBSD-gnats-submit@FreeBSD.ORG Subject: bin/25267: vmstat bug Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25267 >Category: bin >Synopsis: vmstat displays some parameters incorrectly >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 21 15:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Eugene Aleynikov >Release: FreeBSD 4.2-RELEASE i386 >Organization: Go2net >Environment: 4.2-RELEASE >Description: vmstat displays avm and fre alltogether: # vmstat procs memory page disks faults cpu r b w avm fre flt re pi po fr sr da0 da1 in sy cs us sy id 0 0 0 5404197860 1 0 0 0 1 0 0 0 152 10 3 0 0 100 this makes some monitoring programs go crazy >How-To-Repeat: type vmstat in a command prompt, look at the output >Fix: possible fix is: *** vmstat.c.orig Thu Feb 15 14:58:46 2001 --- vmstat.c Thu Feb 15 15:00:42 2001 *************** *** 482,488 **** total.t_rq - 1, total.t_dw + total.t_pw, total.t_sw); #define pgtok(a) ((a) * sum.v_page_size >> 10) #define rate(x) (((x) + halfuptime) / uptime) /* round */ ! (void)printf("%8ld%6ld ", (long)pgtok(total.t_avm), (long)pgtok(total.t_free)); (void)printf("%4lu ", (u_long)rate(sum.v_vm_faults - osum.v_vm_faults)); --- 482,488 ---- total.t_rq - 1, total.t_dw + total.t_pw, total.t_sw); #define pgtok(a) ((a) * sum.v_page_size >> 10) #define rate(x) (((x) + halfuptime) / uptime) /* round */ ! (void)printf("%8ld %6ld ", (long)pgtok(total.t_avm), (long)pgtok(total.t_free)); (void)printf("%4lu ", (u_long)rate(sum.v_vm_faults - osum.v_vm_faults)); *************** *** 534,540 **** else if (num_shown == 1) (void)printf("disk"); (void)printf(" faults cpu\n"); ! (void)printf(" r b w avm fre flt re pi po fr sr "); for (i = 0; i < num_devices; i++) if ((dev_select[i].selected) && (dev_select[i].selected <= maxshowdevs)) --- 534,540 ---- else if (num_shown == 1) (void)printf("disk"); (void)printf(" faults cpu\n"); ! (void)printf(" r b w avm fre flt re pi po fr sr "); for (i = 0; i < num_devices; i++) if ((dev_select[i].selected) && (dev_select[i].selected <= maxshowdevs)) >Release-Note: >Audit-Trail: >Unformatted: X-send-pr-version: 3.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 15: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 2C56237B65D for ; Wed, 21 Feb 2001 15:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1LNU2Z54079; Wed, 21 Feb 2001 15:30:02 -0800 (PST) (envelope-from gnats) Received: from hunches.go2net.com (natbox.go2net.com [209.191.181.146]) by hub.freebsd.org (Postfix) with ESMTP id 5113037B491 for ; Wed, 21 Feb 2001 15:26:59 -0800 (PST) (envelope-from eugenea@go2net.com) Received: from eugenea by hunches.go2net.com with local-smtp (Exim 3.12 #1 (Debian)) id 14Viex-0004b9-00; Wed, 21 Feb 2001 15:26:59 -0800 Message-Id: Date: Wed, 21 Feb 2001 15:26:59 -0800 (PST) From: Yevgeniy Aleynikov To: FreeBSD-gnats-submit@freebsd.org Subject: bin/25268: vmstat bug Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25268 >Category: bin >Synopsis: vmstat displays some parameters incorrectly >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 21 15:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Eugene Aleynikov >Release: FreeBSD 4.2-RELEASE i386 >Organization: Go2net >Environment: 4.2-RELEASE >Description: vmstat displays avm and fre alltogether: # vmstat procs memory page disks faults cpu r b w avm fre flt re pi po fr sr da0 da1 in sy cs us sy id 0 0 0 5404197860 1 0 0 0 1 0 0 0 152 10 3 0 0 100 this makes some monitoring programs go crazy >How-To-Repeat: type vmstat in a command prompt, look at the output >Fix: possible fix is: *** vmstat.c.orig Thu Feb 15 14:58:46 2001 --- vmstat.c Thu Feb 15 15:00:42 2001 *************** *** 482,488 **** total.t_rq - 1, total.t_dw + total.t_pw, total.t_sw); #define pgtok(a) ((a) * sum.v_page_size >> 10) #define rate(x) (((x) + halfuptime) / uptime) /* round */ ! (void)printf("%8ld%6ld ", (long)pgtok(total.t_avm), (long)pgtok(total.t_free)); (void)printf("%4lu ", (u_long)rate(sum.v_vm_faults - osum.v_vm_faults)); --- 482,488 ---- total.t_rq - 1, total.t_dw + total.t_pw, total.t_sw); #define pgtok(a) ((a) * sum.v_page_size >> 10) #define rate(x) (((x) + halfuptime) / uptime) /* round */ ! (void)printf("%8ld %6ld ", (long)pgtok(total.t_avm), (long)pgtok(total.t_free)); (void)printf("%4lu ", (u_long)rate(sum.v_vm_faults - osum.v_vm_faults)); *************** *** 534,540 **** else if (num_shown == 1) (void)printf("disk"); (void)printf(" faults cpu\n"); ! (void)printf(" r b w avm fre flt re pi po fr sr "); for (i = 0; i < num_devices; i++) if ((dev_select[i].selected) && (dev_select[i].selected <= maxshowdevs)) --- 534,540 ---- else if (num_shown == 1) (void)printf("disk"); (void)printf(" faults cpu\n"); ! (void)printf(" r b w avm fre flt re pi po fr sr "); for (i = 0; i < num_devices; i++) if ((dev_select[i].selected) && (dev_select[i].selected <= maxshowdevs)) >Release-Note: >Audit-Trail: >Unformatted: X-send-pr-version: 3.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 16: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 3029C37B4EC for ; Wed, 21 Feb 2001 16:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1M0K1i65372; Wed, 21 Feb 2001 16:20:01 -0800 (PST) (envelope-from gnats) Received: from mail.disney.com (mail.disney.com [204.128.192.15]) by hub.freebsd.org (Postfix) with ESMTP id 3577037B491 for ; Wed, 21 Feb 2001 16:14:50 -0800 (PST) (envelope-from Jim.Pirzyk@disney.com) Received: from pain10.corp.disney.com (root@pain10.corp.disney.com [153.7.110.100]) by mail.disney.com (Switch-2.0.1/Switch-2.0.1) with SMTP id f1M0EHc16930 for ; Wed, 21 Feb 2001 16:14:17 -0800 (PST) Received: from louie.fa.disney.com by pain.corp.disney.com with ESMTP for FreeBSD-gnats-submit@freebsd.org; Wed, 21 Feb 2001 16:15:23 -0800 Received: from plio.fan.fa.disney.com (plio.fan.fa.disney.com [153.7.118.2]) by louie.fa.disney.com (8.9.2/8.9.2) with ESMTP id QAA27942 for ; Wed, 21 Feb 2001 16:14:45 -0800 (PST) (envelope-from Jim.Pirzyk@fa.disney.com) Received: from snoopy.fan.fa.disney.com (snoopy.fan.fa.disney.com [153.7.117.170]) by plio.fan.fa.disney.com (8.9.2/8.9.2) with ESMTP id QAA10394 for ; Wed, 21 Feb 2001 16:14:44 -0800 (PST) (envelope-from Jim.Pirzyk@fa.disney.com) Received: (from Jim.Pirzyk@localhost) by snoopy.fan.fa.disney.com (8.11.1/8.9.3) id f1M0EiO40669; Wed, 21 Feb 2001 16:14:44 -0800 (PST) (envelope-from Jim.Pirzyk@fa.disney.com) Message-Id: <200102220014.f1M0EiO40669@snoopy.fan.fa.disney.com> Date: Wed, 21 Feb 2001 16:14:44 -0800 (PST) From: Jim.Pirzyk@disney.com Reply-To: Jim.Pirzyk@disney.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/25271: brandelf does not add string for file(1) to find Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25271 >Category: bin >Synopsis: brandelf use to add the string for file(1) to use >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 21 16:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jim Pirzyk >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: Standard FreeBSD 4.2-RELEASE system.. >Description: brandelf in the 3.x days would write a string into the elf binary, now it only writes the byte code. >How-To-Repeat: Run brandelf from 3.x on a elf binary and then run it from 4.x on another copy of the binary and run the file command over it. >Fix: *** ./src/usr.bin/brandelf/brandelf.c.orig Fri Jul 7 01:32:13 2000 --- ./src/usr.bin/brandelf/brandelf.c Wed Feb 21 16:11:21 2001 *************** *** 142,147 **** --- 142,153 ---- } else { buffer[EI_OSABI] = type; + + /* Also add the assocated string so file(1) finds it */ + strncpy(buffer+EI_ABIVERSION, + iselftype(buffer[EI_OSABI]), + EI_NIDENT-EI_ABIVERSION); + lseek(fd, 0, SEEK_SET); if (write(fd, buffer, EI_NIDENT) != EI_NIDENT) { warn("error writing %s %d", argv[0], fd); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 20: 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 1591737B6A0 for ; Wed, 21 Feb 2001 20:00:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1M408L95872; Wed, 21 Feb 2001 20:00:08 -0800 (PST) (envelope-from gnats) Received: from racine.cybercable.fr (racine.cybercable.fr [212.198.0.201]) by hub.freebsd.org (Postfix) with SMTP id 49D2637B4EC for ; Wed, 21 Feb 2001 19:56:23 -0800 (PST) (envelope-from root@gits.dyndns.org) Received: (qmail 8106045 invoked from network); 22 Feb 2001 03:56:20 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by racine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 22 Feb 2001 03:56:20 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.2/8.11.2) id f1M3uFh62808; Thu, 22 Feb 2001 04:56:15 +0100 (CET) (envelope-from root) Message-Id: <200102220356.f1M3uFh62808@gits.dyndns.org> Date: Thu, 22 Feb 2001 04:56:15 +0100 (CET) From: Cyrille Lefevre Reply-To: clefevre@poboxes.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/25273: add fs type feature to vnconfig(8) to allow direct mount of iso images and co. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25273 >Category: bin >Synopsis: add fs type feature to vnconfig(8) to allow direct mount of iso images and co. >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 Feb 21 20:00:07 PST 2001 >Closed-Date: >Last-Modified: >Originator: Cyrille Lefevre >Release: FreeBSD 4.2-STABLE i386 >Organization: ACME >Environment: FreeBSD gits 4.2-STABLE FreeBSD 4.2-STABLE #7: Tue Jan 23 07:33:34 CET 2001 root@gits:/disk2/4.x-stable/src/sys/compile/CUSTOM i386 >Description: currently, it is not possible to mount an iso image in one pass using vnconfig such as : vnconfig -v -e vn0 /tmp/image.iso mountro=/mnt effectively, the -e option mount such image using the hard coded fs type which is ufs. so, to mount an iso image, you have to do the following statement : vnconfig -c vn0 /tmp/image.iso mount -t cd9660 vn0 /iso while it could be possible to do something like : vnconfig -v -e vn0 /tmp/image.iso mountro=/mnt type=cd9660 or vnconfig -v -e vn0 /tmp/image.iso mountro=/mnt,cd9660 using the first syntax, the ignore feature has precedence over the swap feature which has precedence over the mount* features. also, these patches correct two bugs in what_opt (-s none was a do nothing statement !) and config (the fclose is done too late and prevent the fs to be mounted). >How-To-Repeat: already desbribed above. >Fix: I provide two patches, the first one provides the first proposed syntax and the second one provides the second proposed syntax (the one I prefer). ----------==========---------- first patch ----------==========---------- Index: vnconfig.8 =================================================================== RCS file: /home/ncvs/src/usr.sbin/vnconfig/vnconfig.8,v retrieving revision 1.14.2.4 diff -u -r1.14.2.4 vnconfig.8 --- vnconfig.8 2000/12/27 16:23:31 1.14.2.4 +++ vnconfig.8 2001/02/22 03:52:12 @@ -188,6 +188,12 @@ .Xr mount 2 . .It Dv Pf mount= Pa mount_point Same as ``mountrw=''. +.It Dv Pf type= Pa fstype +Mounts the file system as type +.Ar fstype . +The type +.Ar ufs +is the default. .El .Pp A configuration file contains one line per device/file pair in the form: @@ -217,6 +223,12 @@ Configures .Pa vn0c and enables swapping on it. +.Pp +.Dl vnconfig -e vn0c myisoimage mountro=/iso type=cd9660 +.Pp +Configures +.Pa vn0c +and read-only mounts an ISO-9660 image file. .Pp .Dl vnconfig -d vn0c myfilesystem mount=/mnt .Pp Index: vnconfig.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/vnconfig/vnconfig.c,v retrieving revision 1.13.2.4 diff -u -r1.13.2.4 vnconfig.c --- vnconfig.c 2001/02/02 21:16:34 1.13.2.4 +++ vnconfig.c 2001/02/22 03:45:13 @@ -75,6 +75,7 @@ int flags; int size; char *oarg; + char *otype; } vndisks[MAXVNDISK]; #define VN_CONFIG 0x01 @@ -222,8 +223,10 @@ vndisks[0].flags = flags; vndisks[0].size = size; vndisks[0].autolabel = autolabel; - if (optind < argc) - getoptions(&vndisks[0], argv[optind]); + vndisks[0].oarg = NULL; + vndisks[0].otype = "ufs"; + while (optind < argc) + getoptions(&vndisks[0], argv[optind++]); nvndisks = 1; } rv = 0; @@ -242,8 +245,8 @@ if (!strcmp(str,"follow")) { *p |= VN_FOLLOW; return 0; } if (!strcmp(str,"debug")) { *p |= VN_DEBUG; return 0; } if (!strcmp(str,"io")) { *p |= VN_IO; return 0; } - if (!strcmp(str,"all")) { *p |= ~0; return 0; } - if (!strcmp(str,"none")) { *p |= 0; return 0; } + if (!strcmp(str,"all")) { *p = ~0; return 0; } + if (!strcmp(str,"none")) { *p = 0; return 0; } return 1; } @@ -251,7 +254,7 @@ config(vnp) struct vndisk *vnp; { - char *dev, *file, *oarg; + char *dev, *file, *oarg, *otype; int flags; struct vn_ioctl vnio; register int rv; @@ -272,6 +275,7 @@ file = vnp->file; flags = vnp->flags; oarg = vnp->oarg; + otype = vnp->otype; if (flags & VN_IGNORE) return(0); @@ -436,6 +440,8 @@ printf("%s: flags now=%08lx\n",dev,l); } + fclose(f); + /* * Enable special functions on the device */ @@ -446,22 +452,21 @@ warn("swapon"); else if (verbose) printf("%s: swapping enabled\n", dev); - } + } else if (flags & (VN_MOUNTRO|VN_MOUNTRW)) { struct ufs_args args; int mflags; args.fspec = dev; mflags = (flags & VN_MOUNTRO) ? MNT_RDONLY : 0; - rv = mount("ufs", oarg, mflags, &args); + rv = mount(otype, oarg, mflags, &args); if (rv) warn("mount"); else if (verbose) - printf("%s: mounted on %s\n", dev, oarg); + printf("%s: mounted on %s (%s)\n", dev, oarg, otype); } } /* done: */ - fclose(f); fflush(stdout); return(rv < 0); } @@ -509,15 +514,19 @@ if (*sp == '%' && strtol(sp + 1, NULL, 0) > 0) { vndisks[ix].size = getsize(sp + 1); + vndisks[ix].file = NULL; } else { + vndisks[ix].size = 0; vndisks[ix].file = malloc(cp - sp); strcpy(vndisks[ix].file, sp); } - + vndisks[ix].autolabel = NULL; while (!EOL(*cp) && WHITE(*cp)) cp++; vndisks[ix].flags = flags; - if (!EOL(*cp)) { + vndisks[ix].oarg = NULL; + vndisks[ix].otype = "ufs"; + while (!EOL(*cp)) { sp = cp; while (!EOL(*cp) && !WHITE(*cp)) cp++; @@ -536,6 +545,7 @@ { int flags = 0; char *oarg = NULL; + char *otype = NULL; if (strcmp(fstr, "swap") == 0) flags |= VN_SWAP; @@ -548,14 +558,18 @@ } else if (strncmp(fstr, "mountro=", 8) == 0) { flags |= VN_MOUNTRO; oarg = &fstr[8]; + } else if (strncmp(fstr, "type=", 5) == 0) { + otype = &fstr[5]; } else if (strcmp(fstr, "ignore") == 0) flags |= VN_IGNORE; vnp->flags |= flags; if (oarg) { vnp->oarg = malloc(strlen(oarg) + 1); strcpy(vnp->oarg, oarg); - } else - vnp->oarg = NULL; + } else if (otype) { + vnp->otype = malloc(strlen(otype) + 1); + strcpy(vnp->otype, otype); + } } char * @@ -585,7 +599,7 @@ { fprintf(stderr, "%s\n%s\n%s\n", "usage: vnconfig [-cdeguv] [-s option] [-r option] [-S value] special_file", - " [regular_file] [feature]", + " [regular_file] [features]", " vnconfig -a [-cdeguv] [-s option] [-r option] [-f config_file]"); exit(1); } ----------==========---------- second patch ----------==========---------- Index: vnconfig.8 =================================================================== RCS file: /home/ncvs/src/usr.sbin/vnconfig/vnconfig.8,v retrieving revision 1.14.2.4 diff -u -r1.14.2.4 vnconfig.8 --- vnconfig.8 2000/12/27 16:23:31 1.14.2.4 +++ vnconfig.8 2001/02/22 03:42:17 @@ -176,14 +176,24 @@ Swapping is enabled on the special file. See .Xr swapon 2 . -.It Dv Pf mountro= Pa mount_point +.It Dv Pf mountro= Pa mount_point[,fstype] The special file is mounted read-only on -.Ar mount_point . +.Ar mount_point +using the file system type +.Ar fstype +if provided. The type +.Ar ufs +is the default. See .Xr mount 2 . -.It Dv Pf mountrw= Pa mount_point +.It Dv Pf mountrw= Pa mount_point[,fstype] The special file is mounted read-write on -.Ar mount_point . +.Ar mount_point +using the file system type +.Ar fstype +if provided. The type +.Ar ufs +is the default. See .Xr mount 2 . .It Dv Pf mount= Pa mount_point @@ -217,6 +227,12 @@ Configures .Pa vn0c and enables swapping on it. +.Pp +.Dl vnconfig -e vn0c myisoimage mountro=/iso,cd9660 +.Pp +Configures +.Pa vn0c +and read-only mounts an ISO-9660 image file. .Pp .Dl vnconfig -d vn0c myfilesystem mount=/mnt .Pp Index: vnconfig.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/vnconfig/vnconfig.c,v retrieving revision 1.13.2.4 diff -u -r1.13.2.4 vnconfig.c --- vnconfig.c 2001/02/02 21:16:34 1.13.2.4 +++ vnconfig.c 2001/02/22 03:44:11 @@ -75,6 +75,7 @@ int flags; int size; char *oarg; + char *otype; } vndisks[MAXVNDISK]; #define VN_CONFIG 0x01 @@ -222,6 +223,8 @@ vndisks[0].flags = flags; vndisks[0].size = size; vndisks[0].autolabel = autolabel; + vndisks[0].oarg = NULL; + vndisks[0].otype = "ufs"; if (optind < argc) getoptions(&vndisks[0], argv[optind]); nvndisks = 1; @@ -242,8 +245,8 @@ if (!strcmp(str,"follow")) { *p |= VN_FOLLOW; return 0; } if (!strcmp(str,"debug")) { *p |= VN_DEBUG; return 0; } if (!strcmp(str,"io")) { *p |= VN_IO; return 0; } - if (!strcmp(str,"all")) { *p |= ~0; return 0; } - if (!strcmp(str,"none")) { *p |= 0; return 0; } + if (!strcmp(str,"all")) { *p = ~0; return 0; } + if (!strcmp(str,"none")) { *p = 0; return 0; } return 1; } @@ -251,7 +254,7 @@ config(vnp) struct vndisk *vnp; { - char *dev, *file, *oarg; + char *dev, *file, *oarg, *otype; int flags; struct vn_ioctl vnio; register int rv; @@ -272,6 +275,7 @@ file = vnp->file; flags = vnp->flags; oarg = vnp->oarg; + otype = vnp->otype; if (flags & VN_IGNORE) return(0); @@ -436,6 +440,8 @@ printf("%s: flags now=%08lx\n",dev,l); } + fclose(f); + /* * Enable special functions on the device */ @@ -453,15 +459,14 @@ args.fspec = dev; mflags = (flags & VN_MOUNTRO) ? MNT_RDONLY : 0; - rv = mount("ufs", oarg, mflags, &args); + rv = mount(otype, oarg, mflags, &args); if (rv) warn("mount"); else if (verbose) - printf("%s: mounted on %s\n", dev, oarg); + printf("%s: mounted on %s (%s)\n", dev, oarg, otype); } } /* done: */ - fclose(f); fflush(stdout); return(rv < 0); } @@ -509,14 +514,18 @@ if (*sp == '%' && strtol(sp + 1, NULL, 0) > 0) { vndisks[ix].size = getsize(sp + 1); + vndisks[ix].file = NULL; } else { + vndisks[ix].size = 0; vndisks[ix].file = malloc(cp - sp); strcpy(vndisks[ix].file, sp); } - + vndisks[ix].autolabel = NULL; while (!EOL(*cp) && WHITE(*cp)) cp++; vndisks[ix].flags = flags; + vndisks[ix].oarg = NULL; + vndisks[ix].otype = "ufs"; if (!EOL(*cp)) { sp = cp; while (!EOL(*cp) && !WHITE(*cp)) @@ -536,6 +545,7 @@ { int flags = 0; char *oarg = NULL; + char *otype = NULL; if (strcmp(fstr, "swap") == 0) flags |= VN_SWAP; @@ -550,12 +560,18 @@ oarg = &fstr[8]; } else if (strcmp(fstr, "ignore") == 0) flags |= VN_IGNORE; + if (flags & (VN_MOUNTRW|VN_MOUNTRO)) + if (strtok(oarg, ",")) + otype = strtok(NULL, ","); vnp->flags |= flags; if (oarg) { vnp->oarg = malloc(strlen(oarg) + 1); strcpy(vnp->oarg, oarg); - } else - vnp->oarg = NULL; + } + if (otype) { + vnp->otype = malloc(strlen(otype) + 1); + strcpy(vnp->otype, otype); + } } char * >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Feb 21 22:30: 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 832E937B491 for ; Wed, 21 Feb 2001 22:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1M6U3s22710; Wed, 21 Feb 2001 22:30:03 -0800 (PST) (envelope-from gnats) Date: Wed, 21 Feb 2001 22:30:03 -0800 (PST) Message-Id: <200102220630.f1M6U3s22710@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Poul-Henning Kamp Subject: Re: bin/25273: add fs type feature to vnconfig(8) to allow direct mount of iso images and co. Reply-To: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25273; it has been noted by GNATS. From: Poul-Henning Kamp To: clefevre@poboxes.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/25273: add fs type feature to vnconfig(8) to allow direct mount of iso images and co. Date: Thu, 22 Feb 2001 07:26:23 +0100 vnconfig(8) is being phased out. Please consider if this can be integrated in mdconfig(8) in current. -- 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 Wed Feb 21 23:40: 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 106DF37B65D for ; Wed, 21 Feb 2001 23:40:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1M7e0232766; Wed, 21 Feb 2001 23:40:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0425337B4EC for ; Wed, 21 Feb 2001 23:37:59 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1M7bwY32555; Wed, 21 Feb 2001 23:37:58 -0800 (PST) (envelope-from nobody) Message-Id: <200102220737.f1M7bwY32555@freefall.freebsd.org> Date: Wed, 21 Feb 2001 23:37:58 -0800 (PST) From: seanw@wavewizard.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25275: X server freezes system randomly on pentuim II 266 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25275 >Category: kern >Synopsis: X server freezes system randomly on pentuim II 266 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 21 23:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sean Glazier >Release: 4.2 november 2000 >Organization: >Environment: FreeBSD passion.xtdl.com 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Mon Nov 20 13:02:55 GMT 2000 jkh@bento.FreeBSD.org:/usr/src/sys/compile/GENERIC i386 >Description: installed the x server and have kde as the window manager. while running this I will get random freezes of my system. there are no panics in the messages file. It simply freezes up completley. no mouse movement no daemons are running. >How-To-Repeat: it will fail everytime if i run kvt a screen shows up and the it freezes. it can freeze randomly while interacting with oither programs such as the file manager even vi out of and xterm window. I never had freebsd just lock a system up. >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 Feb 22 0: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 1AD6437B4EC for ; Thu, 22 Feb 2001 00:10:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1M8A3738397; Thu, 22 Feb 2001 00:10:03 -0800 (PST) (envelope-from gnats) Date: Thu, 22 Feb 2001 00:10:03 -0800 (PST) Message-Id: <200102220810.f1M8A3738397@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dima Dorfman Subject: Re: bin/25273: add fs type feature to vnconfig(8) to allow direct mount of iso images and co. Reply-To: Dima Dorfman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25273; it has been noted by GNATS. From: Dima Dorfman To: Poul-Henning Kamp Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/25273: add fs type feature to vnconfig(8) to allow direct mount of iso images and co. Date: Thu, 22 Feb 2001 00:06:53 -0800 > vnconfig(8) is being phased out. Please consider if this can be > integrated in mdconfig(8) in current. mdconfig(8) can't automatically mount the filesystem it configures. I offered to implement this some time ago, but noone seemed interested. 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 Thu Feb 22 0: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 C822137B491 for ; Thu, 22 Feb 2001 00:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1M8K2F39505; Thu, 22 Feb 2001 00:20:02 -0800 (PST) (envelope-from gnats) Date: Thu, 22 Feb 2001 00:20:02 -0800 (PST) Message-Id: <200102220820.f1M8K2F39505@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Poul-Henning Kamp Subject: Re: bin/25273: add fs type feature to vnconfig(8) to allow direct mount of iso images and co. Reply-To: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25273; it has been noted by GNATS. From: Poul-Henning Kamp To: Dima Dorfman Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/25273: add fs type feature to vnconfig(8) to allow direct mount of iso images and co. Date: Thu, 22 Feb 2001 09:17:08 +0100 In message <20010222080653.5C9363E09@bazooka.unixfreak.org>, Dima Dorfman writes: >> vnconfig(8) is being phased out. Please consider if this can be >> integrated in mdconfig(8) in current. > >mdconfig(8) can't automatically mount the filesystem it configures. I >offered to implement this some time ago, but noone seemed interested. "send patches" doesn't count as interested in your book ? :-) -- 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 Thu Feb 22 1:41: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 DA3E537B491; Thu, 22 Feb 2001 01:41:37 -0800 (PST) (envelope-from dcs@FreeBSD.org) Received: (from dcs@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1M9fbm50374; Thu, 22 Feb 2001 01:41:37 -0800 (PST) (envelope-from dcs) Date: Thu, 22 Feb 2001 01:41:37 -0800 (PST) From: Message-Id: <200102220941.f1M9fbm50374@freefall.freebsd.org> To: dcs@FreeBSD.org, freebsd-bugs@FreeBSD.org, dcs@FreeBSD.org Subject: Re: kern/25130: kernel crash with kldload/kldunload md.ko Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: kernel crash with kldload/kldunload md.ko Responsible-Changed-From-To: freebsd-bugs->dcs Responsible-Changed-By: dcs Responsible-Changed-When: Thu Feb 22 01:41:01 PST 2001 Responsible-Changed-Why: I'm working on it right now. http://www.freebsd.org/cgi/query-pr.cgi?pr=25130 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 22 2:11: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 7BFB937B401; Thu, 22 Feb 2001 02:11:54 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1MABsX55755; Thu, 22 Feb 2001 02:11:54 -0800 (PST) (envelope-from dwmalone) Date: Thu, 22 Feb 2001 02:11:54 -0800 (PST) From: Message-Id: <200102221011.f1MABsX55755@freefall.freebsd.org> To: eugenea@go2net.com, dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/25268: vmstat displays some parameters incorrectly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: vmstat displays some parameters incorrectly State-Changed-From-To: open->closed State-Changed-By: dwmalone State-Changed-When: Thu Feb 22 02:11:33 PST 2001 State-Changed-Why: Duplicate of 25267. http://www.freebsd.org/cgi/query-pr.cgi?pr=25268 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 22 2:17: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 F050137B491; Thu, 22 Feb 2001 02:17:41 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1MAHf856416; Thu, 22 Feb 2001 02:17:41 -0800 (PST) (envelope-from dwmalone) Date: Thu, 22 Feb 2001 02:17:41 -0800 (PST) From: Message-Id: <200102221017.f1MAHf856416@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, obrien@FreeBSD.org Subject: Re: bin/25271: brandelf use to add the string for file(1) to use Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: brandelf use to add the string for file(1) to use Responsible-Changed-From-To: freebsd-bugs->obrien Responsible-Changed-By: dwmalone Responsible-Changed-When: Thu Feb 22 02:16:53 PST 2001 Responsible-Changed-Why: David O'Brien updated the way we do elf branding, so he should be able to say it this is the correct course of action or not. http://www.freebsd.org/cgi/query-pr.cgi?pr=25271 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 22 4: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 6EA3337B684 for ; Thu, 22 Feb 2001 04:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1MCe2487445; Thu, 22 Feb 2001 04:40:02 -0800 (PST) (envelope-from gnats) Received: from starbug.ugh.net.au (starbug.ugh.net.au [203.31.238.37]) by hub.freebsd.org (Postfix) with ESMTP id 1982A37B65D for ; Thu, 22 Feb 2001 04:34:45 -0800 (PST) (envelope-from andrew@ugh.net.au) Received: by starbug.ugh.net.au (Postfix, from userid 1000) id 91DF5A86C; Thu, 22 Feb 2001 23:34:44 +1100 (EST) Message-Id: <20010222123444.91DF5A86C@starbug.ugh.net.au> Date: Thu, 22 Feb 2001 23:34:44 +1100 (EST) From: andrew@ugh.net.au Reply-To: andrew@ugh.net.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/25278: bs accepts -s -c but not -sc Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25278 >Category: bin >Synopsis: bs accepts -s -c but not -sc >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 22 04:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Andrew >Release: FreeBSD 4.2-STABLE i386 >Organization: UgH! >Environment: 4.2-STABLE as of a week ago. >Description: The bs program accepts -s and -c as arguments but not -sc. bs was using its own argument passing routines so I changed it over to getopt. While I was at it I added a usage function, changed the program name in the usage message from battle to bs (as that is what it is installed as nowdays), changed the exit value from 1 to EX_USAGE when exiting because of invalid arguments, sorted the included header files as per style(9) and added -Wall to the makefile. I've tried to keep the same programming style as the existing code. >How-To-Repeat: bs -sc (it runs but the c is ignored) >Fix: --- /usr/src/games/bs/Makefile Sat Aug 28 09:28:57 1999 +++ Makefile Thu Feb 22 22:17:20 2001 @@ -2,6 +2,7 @@ PROG= bs MAN6= bs.6 +CFLAGS+=-Wall DPADD= ${LIBNCURSES} ${LIBMYTINFO} LDADD= -lncurses -lmytinfo HIDEGAME=hidegame --- /usr/src/games/bs/bs.c Mon Feb 21 13:07:31 2000 +++ bs.c Thu Feb 22 22:25:08 2001 @@ -9,14 +9,15 @@ * $FreeBSD: src/games/bs/bs.c,v 1.9 2000/02/21 03:07:31 billf Exp $ */ +#include +#include #include #include -#include -#include #include -#include -#include #include +#include +#include +#include #ifndef A_UNDERLINE /* BSD curses */ #define beep() write(1,"\007",1); @@ -1110,58 +1111,50 @@ return(sgetc("YN") == 'Y'); } -static void do_options(c,op) -int c; -char *op[]; +static void usage() { - int i; - if (c > 1) - { - for (i=1; iRelease-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 22 7:19:14 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from critter.freebsd.dk (fxp0.halvsten.ip.cybercity.dk [212.242.40.114]) by hub.freebsd.org (Postfix) with ESMTP id 218AB37B401; Thu, 22 Feb 2001 07:19:09 -0800 (PST) (envelope-from phk@critter.freebsd.dk) Received: from critter (localhost [127.0.0.1]) by critter.freebsd.dk (8.11.1/8.11.1) with ESMTP id f1MFJL503598; Thu, 22 Feb 2001 16:19:21 +0100 (CET) (envelope-from phk@critter.freebsd.dk) To: stable@freebsd.org, bugs@freebsd.org Subject: fxp and HP Procurve incompatibility... From: Poul-Henning Kamp Date: Thu, 22 Feb 2001 16:19:20 +0100 Message-ID: <3596.982855160@critter> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org With 4.x stable a few days old I see an _odd_ thing. If I plug an fxp card into a HP ProCurve 2224 switch (J4095A) I see a flurry of packets which I can monitor with tcpdump: 15:39:50.834150 0:0:0:0:0:10 1:80:c2:0:0:1 8808 60: 0001 0000 0000 8808 0001 0000 0000 8808 0001 0000 0000 8808 0001 0000 0000 8808 0001 0000 0000 8808 0001 0000 0000 15:39:50.876092 0:0:0:0:0:10 1:80:c2:0:0:1 8808 60: 0001 0000 0000 8808 0001 0000 0000 8808 0001 0000 0000 8808 0001 0000 0000 8808 0001 0000 0000 8808 0001 0000 0000 15:39:50.918035 0:0:0:0:0:10 1:80:c2:0:0:1 8808 60: 0001 0000 0000 8808 0001 0000 0000 8808 0001 0000 0000 8808 0001 0000 0000 8808 0001 0000 0000 8808 0001 0000 0000 This does not happen if I use a D-Link card (if_dc driver). Any clues ? -- 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 Thu Feb 22 11:30: 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 36BC237B65D for ; Thu, 22 Feb 2001 11:30:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1MJU7286636; Thu, 22 Feb 2001 11:30:07 -0800 (PST) (envelope-from gnats) Date: Thu, 22 Feb 2001 11:30:07 -0800 (PST) Message-Id: <200102221930.f1MJU7286636@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "james pye" Subject: Re: kern/24913: Random panics related to ppp and high CPU activity. Reply-To: "james pye" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/24913; it has been noted by GNATS. From: "james pye" To: freebsd-gnats-submit@FreeBSD.org, diomed@mac.com Cc: Subject: Re: kern/24913: Random panics related to ppp and high CPU activity. Date: Thu, 22 Feb 2001 12:33:29 -0700 welp, it seems to be fixed now. someone made some changes to ppp a short while ago(on 2/21/01), and that fixed it. running ppp+dnetc and other stuff without trouble.. ran ppp and dnetc all night while I was sleeping, no trouble at all. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 22 11:43:56 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from balzac.cybercable.fr (balzac.cybercable.fr [212.198.0.198]) by hub.freebsd.org (Postfix) with SMTP id A27B937B401 for ; Thu, 22 Feb 2001 11:43:51 -0800 (PST) (envelope-from joel.carnat@noos.fr) Received: (qmail 22502119 invoked from network); 22 Feb 2001 19:43:45 -0000 Received: from r203m52.cybercable.tm.fr (HELO atheria.cybercable.fr) ([195.132.203.52]) (envelope-sender ) by balzac.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 22 Feb 2001 19:43:45 -0000 Date: Thu, 22 Feb 2001 20:43:44 +0100 From: Joel CARNAT To: freebsd-bugs@FreeBSD.org Subject: Fatal trap 12 : page fault while in kernel mode X-Mailer: Sylpheed version 0.4.4 (GTK+ 1.2.8; FreeBSD 4.2-RELEASE; i386) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: <20010222194351.A27B937B401@hub.freebsd.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hello ! sorry to anoy you but I can't find what's going one with my BSD box :( [ptijo@atheria /usr/home/ptijo] uname -a FreeBSD atheria.cybercable.fr 4.2-RELEASE FreeBSD 4.2-RELEASE #1: Sun Feb 18 18:41:58 CET 2001 root@atheria.cybercable.fr:/usr/src/sys/compile/ATHERIA i386 I get "fatal trap 12" as soon as I try to write on my FAT32 partition... How could it be fixed ? ThX a lot -- Joel CARNAT =========== FreeBSD : The Power To Serve. NetBSD : Of course it runs NetBSD... OpenBSD : The proactively secure UNIX-like operating system. slackware : The Choice of a GNU Generation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 22 12: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 4500F37B401 for ; Thu, 22 Feb 2001 12:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1MKK1n99496; Thu, 22 Feb 2001 12:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 21CB537B401 for ; Thu, 22 Feb 2001 12:17:26 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1MKHQE99341; Thu, 22 Feb 2001 12:17:26 -0800 (PST) (envelope-from nobody) Message-Id: <200102222017.f1MKHQE99341@freefall.freebsd.org> Date: Thu, 22 Feb 2001 12:17:26 -0800 (PST) From: beliak@mail.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/25290: IDECD-ROM doesn't DETECT Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25290 >Category: misc >Synopsis: IDECD-ROM doesn't DETECT >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 Feb 22 12:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Andrew Beliak >Release: 4.2 >Organization: none >Environment: AMDDX4-100 16MB RAM NEC 273 IDE CD-ROM >Description: When I install FreeBSD in the list of devices I cannot see my CDROM. - My BIOS (Phoenix IDE/PCI) can't detect and boot IDE CDROMs >How-To-Repeat: Install IDE CD-ROM with BIOS without CD autodetect >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 Feb 22 14:10: 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 9190037B401 for ; Thu, 22 Feb 2001 14:10:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1MMA6822040; Thu, 22 Feb 2001 14:10:06 -0800 (PST) (envelope-from gnats) Date: Thu, 22 Feb 2001 14:10:06 -0800 (PST) Message-Id: <200102222210.f1MMA6822040@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Eugene Aleynikov Subject: Re: kern/25264: Kernel trap 12 in camisr Reply-To: Eugene Aleynikov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/25264; it has been noted by GNATS. From: Eugene Aleynikov To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/25264: Kernel trap 12 in camisr Date: Thu, 22 Feb 2001 14:01:02 -0800 Another trap: panic: lockmgr: pid 44687, not exclusive lock holder 374 unlocking mp_lock = 01000001; cpuid = 1; lapic.id = 00000000 boot() called on cpu#1 syncing disks... panic: rslock: cpu: 1, addr: 0xc3d25e00, lock: 0x01000001 mp_lock = 01000001; cpuid = 1; lapic.id = 00000000 boot() called on cpu#1 Uptime: 3h57m11s (da1:ahc0:0:2:0): SYNCHRONIZE CACHE. CDB: 35 0 0 0 0 0 0 0 0 0 (da1:ahc0:0:2:0): ILLEGAL REQUEST asc:20,0 (da1:ahc0:0:2:0): Invalid command operation code dumping to dev #da/0x20001, offset 1048704 dump Fatal trap 12: page fault while in kernel mode mp_lock = 01000002; cpuid = 1; lapic.id = 00000000 fault virtual address = 0x0 fault code = supervisor write, page not present instruction pointer = 0x8:0xc0121968 stack pointer = 0x10:0xdbbc6800 frame pointer = 0x10:0xdbbc6810 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 = 44687 (proftpd) interrupt mask = net tty bio cam <- SMP: XXX trap number = 12 panic: page fault mp_lock = 01000002; cpuid = 1; lapic.id = 00000000 boot() called on cpu#1 Uptime: 3h57m11s Fatal trap 12: page fault while in kernel mode mp_lock = 01000003; cpuid = 1; lapic.id = 00000000 fault virtual address = 0x10 fault code = supervisor read, page not present instruction pointer = 0x8:0xc0121a84 stack pointer = 0x10:0xdbbc641c frame pointer = 0x10:0xdbbc6430 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 = 44687 (proftpd) interrupt mask = net tty bio cam <- SMP: XXX trap number = 12 panic: page fault mp_lock = 01000003; cpuid = 1; lapic.id = 00000000 boot() called on cpu#1 Uptime: 3h57m11s 0xc0121968 is in probedone (../../cam/cam_xpt.c:5619). 5614 path->device->serial_num_len = 5615 serial_buf->length; 5616 path->device->serial_num[serial_buf->length] 5617 = '\0'; 5618 } 5619 } else if (cam_periph_error(done_ccb, 0, 5620 SF_RETRY_UA|SF_NO_PRINT, 5621 &softc->saved_ccb) == ERESTART) { 5622 return; 5623 } else if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { (kgdb) list *0xc0121a84 0xc0121a84 is in probedone (../../cam/cam_xpt.c:5693). 5688 /* Don't wedge the queue */ 5689 xpt_release_devq(done_ccb->ccb_h.path, /*count*/1, 5690 /*run_queue*/TRUE); 5691 } 5692 5693 path->device->flags &= ~CAM_DEV_UNCONFIGURED; 5694 5695 if ((softc->flags & PROBE_NO_ANNOUNCE) == 0) { 5696 /* Inform the XPT that a new device has been found */ 5697 done_ccb->ccb_h.func_code = XPT_GDEV_TYPE; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 22 15: 8: 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 62E6437B503; Thu, 22 Feb 2001 15:07:59 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1MN7xR31077; Thu, 22 Feb 2001 15:07:59 -0800 (PST) (envelope-from brian) Date: Thu, 22 Feb 2001 15:07:59 -0800 (PST) From: Message-Id: <200102222307.f1MN7xR31077@freefall.freebsd.org> To: diomed@mac.com, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/24913: Random panics related to ppp and high CPU activity. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Random panics related to ppp and high CPU activity. State-Changed-From-To: open->closed State-Changed-By: brian State-Changed-When: Thu Feb 22 15:06:42 PST 2001 State-Changed-Why: Closed at the request of the submitter http://www.freebsd.org/cgi/query-pr.cgi?pr=24913 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 22 15:19:22 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.wolves.k12.mo.us (mail.wolves.k12.mo.us [207.160.214.1]) by hub.freebsd.org (Postfix) with ESMTP id 72F2B37B503; Thu, 22 Feb 2001 15:19:18 -0800 (PST) (envelope-from cdillon@wolves.k12.mo.us) Received: from mail.wolves.k12.mo.us (cdillon@mail.wolves.k12.mo.us [207.160.214.1]) by mail.wolves.k12.mo.us (8.9.3/8.9.3) with ESMTP id RAA02536; Thu, 22 Feb 2001 17:19:16 -0600 (CST) (envelope-from cdillon@wolves.k12.mo.us) Date: Thu, 22 Feb 2001 17:19:16 -0600 (CST) From: Chris Dillon To: Poul-Henning Kamp Cc: , Subject: Re: fxp and HP Procurve incompatibility... In-Reply-To: <3596.982855160@critter> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 22 Feb 2001, Poul-Henning Kamp wrote: > With 4.x stable a few days old I see an _odd_ thing. [...snip...] > Any clues ? Does it only occur with a recent -STABLE? I've got a ProCurve 4000M (which is esentially the same as a 2424M as far as internals are concerned, same firmware image, too) with a bunch of fxp's connected to it and haven't noticed anything like that. I can try updating to a recent -STABLE and see what happens. You could also try updating to the most recent firmware image on the switch (C.08.03) and see if that changes the situation. -- Chris Dillon - cdillon@wolves.k12.mo.us - cdillon@inter-linc.net FreeBSD: The fastest and most stable server OS on the planet. For IA32 and Alpha architectures. IA64, PPC, and ARM under development. http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 22 15:22:46 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.wolves.k12.mo.us (mail.wolves.k12.mo.us [207.160.214.1]) by hub.freebsd.org (Postfix) with ESMTP id F330C37B65D; Thu, 22 Feb 2001 15:22:40 -0800 (PST) (envelope-from cdillon@wolves.k12.mo.us) Received: from mail.wolves.k12.mo.us (cdillon@mail.wolves.k12.mo.us [207.160.214.1]) by mail.wolves.k12.mo.us (8.9.3/8.9.3) with ESMTP id RAA02575; Thu, 22 Feb 2001 17:22:40 -0600 (CST) (envelope-from cdillon@wolves.k12.mo.us) Date: Thu, 22 Feb 2001 17:22:39 -0600 (CST) From: Chris Dillon To: Poul-Henning Kamp Cc: , Subject: Re: fxp and HP Procurve incompatibility... In-Reply-To: <3596.982855160@critter> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 22 Feb 2001, Poul-Henning Kamp wrote: > With 4.x stable a few days old I see an _odd_ thing. > > If I plug an fxp card into a HP ProCurve 2224 switch (J4095A) > I see a flurry of packets which I can monitor with tcpdump: Nevermind... I should have looked closer before I posted that last message. I was thinking of the 2424M, which is probably quite a different beast from the 2224. -- Chris Dillon - cdillon@wolves.k12.mo.us - cdillon@inter-linc.net FreeBSD: The fastest and most stable server OS on the planet. For IA32 and Alpha architectures. IA64, PPC, and ARM under development. http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 22 15:30:17 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.enteract.com (mail.enteract.com [207.229.143.33]) by hub.freebsd.org (Postfix) with ESMTP id 3028F37B503 for ; Thu, 22 Feb 2001 15:30:15 -0800 (PST) (envelope-from presence@churchofinformationwarfare.org) Received: from shell-2.enteract.com (presence@shell-2.enteract.com [207.229.143.41]) by mail.enteract.com (8.9.3/8.9.3) with ESMTP id RAA13066 for ; Thu, 22 Feb 2001 17:30:14 -0600 (CST) (envelope-from presence@churchofinformationwarfare.org) Date: Thu, 22 Feb 2001 17:30:14 -0600 (CST) From: Reverend K Kanno X-Sender: presence@shell-2.enteract.com To: bugs@FreeBSD.ORG Subject: sysinstall broken In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have three 4.2-STABLE machines I keep cvsuped every few weeks. sysinstall can no longer see see any hard drives on any of my machines. Because of this I cannot add new hard disks. I searched the groups and for a few people doing a make clean;make;make install from /usr/src/release/sysinstall/ or wherever you keep source works. Not for me. It compile and and install and still does not work. Is there an actual fix for this or a fine doc on how to man-handle fdisk and disklable so anybody can partition and label disks without sysinstall? Thank You, KEN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 22 15:50: 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 C2CB137B503 for ; Thu, 22 Feb 2001 15:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1MNo1U34635; Thu, 22 Feb 2001 15:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C57FA37B491 for ; Thu, 22 Feb 2001 15:40:08 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1MNe8D33868; Thu, 22 Feb 2001 15:40:08 -0800 (PST) (envelope-from nobody) Message-Id: <200102222340.f1MNe8D33868@freefall.freebsd.org> Date: Thu, 22 Feb 2001 15:40:08 -0800 (PST) From: sferrari@yahoo.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/25291: Think I found a typo in scsiall.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25291 >Category: misc >Synopsis: Think I found a typo in scsiall.c >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 22 15:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Stephen Ferrari >Release: 3.4 >Organization: >Environment: >Description: I don't follow FreeBSD, but looking at scsi_all.c I think I noticed a typo: The last "asc" in the below should probably be "ascq": #if !defined(SCSI_NO_SENSE_STRINGS) #define SST(asc, ascq, action, desc) \ asc, ascq, action, desc #else #define SST(asc, ascq, action, desc) \ asc, asc, action #endif >How-To-Repeat: >Fix: Insert a "q" before the comma. :-) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 22 17: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 C626B37B4EC for ; Thu, 22 Feb 2001 17:20:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1N1K4x46857; Thu, 22 Feb 2001 17:20:04 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3AE6C37B401 for ; Thu, 22 Feb 2001 17:12:45 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1N1Cji45966; Thu, 22 Feb 2001 17:12:45 -0800 (PST) (envelope-from nobody) Message-Id: <200102230112.f1N1Cji45966@freefall.freebsd.org> Date: Thu, 22 Feb 2001 17:12:45 -0800 (PST) From: guolin@alexa.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25292: UDMA66 Disk controller resetting hangs on Promise Ultra 66/100 card Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25292 >Category: kern >Synopsis: UDMA66 Disk controller resetting hangs on Promise Ultra 66/100 card >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 Feb 22 17:20:04 PST 2001 >Closed-Date: >Last-Modified: >Originator: Guolin Cheng >Release: FreeBSD 4.1 >Organization: Alexa.com >Environment: FreeBSD arc18.alexa.com 4.1-RELEASE FreeBSD 4.1-RELEASE #1: Tue Feb 6 09:52:18 PST 2001 root@arc18.alexa.com:/usr/src/sys/compile/ALEXA i386 CPU: CPU: Pentium II/Pentium II Xeon/Celeron (350.80-MHz 686-class CPU) Motherboard: Asus P3B-F (6 PCI/5 PCI, 4 DIMM, Jumperless BIOS, STR, ATX) Motherboard BIOS: P3B-F BIOS Ver. 1006. 06/30/2000 Promise Ultra66 BIOS Version: Ultra66 BIOS Support v2.0 b18 Device Attached to IDE: atapci0: port 0xb800-0xb80f at device 4.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 atapci1: port 0x9400-0x943f,0x9800-0x9803,0xa000-0xa007,0xa400-0xa403,0xa800-0xa807 mem 0xe0800000-0xe081ffff irq 10 at device 11.0 on pci0 ata2: at 0xa800 on atapci1 ata3: at 0xa000 on atapci1 atapci2: port 0x7800-0x783f,0x8000-0x8003,0x8400-0x8407,0x8800-0x8803,0x9000-0x9007 mem 0xe0000000-0xe001ffff irq 11 at device 12.0 on pci0 ata4: at 0x9000 on atapci2 ata5: at 0x8400 on atapci2 ad0: 16124MB [32760/16/63] at ata0-master using UDMA33 ad1: 35772MB [72680/16/63] at ata0-slave using UDMA33 ad2: 35772MB [72680/16/63] at ata1-master using UDMA33 ad3: 35772MB [72680/16/63] at ata1-slave using UDMA33 ad4: 35772MB [72680/16/63] at ata2-master using UDMA66 ad5: 35772MB [72680/16/63] at ata2-slave using UDMA66 ad6: 35772MB [72680/16/63] at ata3-master using UDMA66 ad7: 35772MB [72680/16/63] at ata3-slave using UDMA66 ad8: 39266MB [79780/16/63] at ata4-master using UDMA66 ad9: 39266MB [79780/16/63] at ata4-slave using UDMA66 ad10: 35772MB [72680/16/63] at ata5-master using UDMA66 ad11: 35772MB [72680/16/63] at ata5-slave using UDMA66 >Description: I get this messages when I see that machine hangs there: Feb 19 02:02:39 arc18 /kernel: ad2: READ command timeout - resetting Feb 19 02:02:39 arc18 /kernel: ata1: resetting devices >How-To-Repeat: 100% repeatable, and happens on around 20 out of 200 FreeBSD boxed with Version 4.1 and 4.1.1. >Fix: Don't know how to fix it. When the system hangs, no keyboard reponses. The only solution left is to recycle the power. Does 4.2 or the future 4.3 version fix this problem? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 22 21: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 4F54537B4EC for ; Thu, 22 Feb 2001 21:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1N5U2c04134; Thu, 22 Feb 2001 21:30:02 -0800 (PST) (envelope-from gnats) Date: Thu, 22 Feb 2001 21:30:02 -0800 (PST) Message-Id: <200102230530.f1N5U2c04134@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dima Dorfman Subject: Re: bin/25273: add fs type feature to vnconfig(8) to allow direct mount of iso images and co. Reply-To: Dima Dorfman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25273; it has been noted by GNATS. From: Dima Dorfman To: Poul-Henning Kamp Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/25273: add fs type feature to vnconfig(8) to allow direct mount of iso images and co. Date: Thu, 22 Feb 2001 21:29:33 -0800 > In message <20010222080653.5C9363E09@bazooka.unixfreak.org>, Dima Dorfman wri > tes: > >> vnconfig(8) is being phased out. Please consider if this can be > >> integrated in mdconfig(8) in current. > > > >mdconfig(8) can't automatically mount the filesystem it configures. I > >offered to implement this some time ago, but noone seemed interested. > > "send patches" doesn't count as interested in your book ? :-) Fair enough. See attached. It implements the 'feature' feature (yes, it's called 'feature') of vnconfig in mdconfig. I couldn't think of a better name, so I also called it 'feature'. Basically, right now, this allows one to configure and mount a memory disk all in one shot (assuming that what you configured is a real filesystem, though; in other words, it only makes sense for vnode). Theoretically, it can be expanded to do things like automatically label and create a filesystem. This also includes the functionality the originator asked for in this PR (although I don't think his patch works; see below). The only real hack in this is the way it deals with different filesystems having different argument structures (last argument to mount(2)). This is also why I don't think the patches provided in this PR work; vnconfig always uses a ufs_args structure as the last argument to mount(2); if you're trying to mount a cd9660 filesystem, it will fail because iso_args is longer than ufs_args, so when the kernel (or something before it) tries to access one of the iso_args members, it will be accessing junk. My patch solves the problem by defining a union of all the argument structures (okay, not all of them, just the ones I thought would make sense in this context). Since all the structures have fspec as the first member, this seems to work, but is quite ugly. Comments? Suggestions? Dima Dorfman dima@unixfreak.org Index: mdconfig.8 =================================================================== RCS file: /st/src/FreeBSD/src/sbin/mdconfig/mdconfig.8,v retrieving revision 1.5 diff -u -r1.5 mdconfig.8 --- mdconfig.8 2001/01/28 20:17:46 1.5 +++ mdconfig.8 2001/02/23 04:37:23 @@ -58,6 +58,7 @@ .Op Fl s Ar size .Op Fl f Ar file .Op Fl u Ar unit +.Op feature ... .Nm .Fl d .Fl u Ar unit @@ -133,6 +134,25 @@ .Xr md 4 device to use a specific unit number. .El +.Pp +A +.Ar feature +argument describes an action to be taken after the device is +successfully configured. The valid features follow. +.Bl -tag +.It Cm mount=rw|ro,fs_type,mount_point +Mount the configured memory disk on +.Pa mount_point . +Since the device must be a valid filesystem of type +.Va fs_type +at the time it is configured, this is only useful for disks of type +.Li vnode . +If +.Va fs_type +is ommited, the type +.Li ufs +is assumed. +.El .Sh EXAMPLES To create a 4 megabyte .Xr malloc 9 @@ -165,6 +185,20 @@ mount /dev/md10c /tmp chmod 1777 /tmp .Ed +.Pp +To mount a UFS filesystem contained in the file +.Pa boot.flp +on +.Pa /mnt : +.Pp +.Dl mdconfig -a -t vnode -f boot.flp mount=ro,,/mnt +.Pp +To mount a CD image contained in the file +.Pa 4.2-install.iso +on +.Pa /mnt : +.Pp +.Dl mdconfig -a -t vnode -f 4.2-install.iso mount=ro,cd9600,/mnt .Sh SEE ALSO .Xr md 4 , .Xr disklabel 8 , Index: mdconfig.c =================================================================== RCS file: /st/src/FreeBSD/src/sbin/mdconfig/mdconfig.c,v retrieving revision 1.6 diff -u -r1.6 mdconfig.c --- mdconfig.c 2001/01/31 08:41:18 1.6 +++ mdconfig.c 2001/02/23 04:37:23 @@ -10,16 +10,24 @@ * */ +#include +#include +#include +#include +#include + #include #include #include #include #include #include +#include #include -#include #include +int f_mount(const char *); + struct md_ioctl mdio; enum {UNSET, ATTACH, DETACH} action = UNSET; @@ -28,7 +36,8 @@ usage() { fprintf(stderr, "Usage:\n"); - fprintf(stderr, "\tmdconfig -a -t type [-o [no]option]... [ -f file] [-s size] [-u unit]\n"); + fprintf(stderr, "\tmdconfig -a -t type [-o [no]option]... [ -f file] " + "[-s size] [-u unit]\n\t\t[feature ...]\n"); fprintf(stderr, "\tmdconfig -d -u unit\n"); fprintf(stderr, "\t\ttype = {malloc, preload, vnode, swap}\n"); fprintf(stderr, "\t\toption = {cluster, compress, reserve, autounit}\n"); @@ -138,6 +147,8 @@ usage(); } } + argc -= optind; + argv += optind; fd = open("/dev/mdctl", O_RDWR, 0); if (fd < 0) @@ -153,6 +164,64 @@ err(1, "ioctl(/dev/mdctl)"); if (mdio.md_options & MD_AUTOUNIT) printf("md%d\n", mdio.md_unit); + + /* Process 'features'. */ + for (; argc > 0; argc++) + { + if (strncmp(argv[0], "mount=", 6) == 0) + if (!f_mount(argv[0] + 6)) + return (1); + } return (0); } +/* + * Process the 'mount' feature. + * + * Pre-condition: mdio describes a valid and configured device + */ +int +f_mount(const char *params) +{ + char *p, *wparams; + char *av[3], **avp; + char *mttype, *mtpoint, mtdev[MAXPATHLEN]; + int mtflags = 0; + union { + struct ufs_args u; + struct iso_args i; + struct msdosfs_args m; + } args; + + memset(&args, '\0', sizeof(args)); + if ( (wparams = malloc(strlen(params) + 1)) == NULL) + err(1, "malloc"); + strlcpy(wparams, params, strlen(params) + 1); + + for (p = wparams, avp = av;;) { + *avp = strsep(&p, ","); + if (++avp >= &av[sizeof(av) / sizeof(*av)]) + break; + } + + if (strncmp(av[0], "rw", 2) == 0) + ; + else if (strncmp(av[0], "ro", 2) == 0) + mtflags |= MNT_RDONLY; + else + errx(1, "bad option to mount feature: %s", av[0]); + if (*av[1] == '\0') + mttype = "ufs"; + else + mttype = av[1]; + if (*av[2] == '\0') + errx(1, "bad mountpoint"); + mtpoint = av[2]; + + snprintf(mtdev, sizeof(mtdev), "%smd%dc", _PATH_DEV, mdio.md_unit); + args.u.fspec = mtdev; + + if (mount(mttype, mtpoint, mtflags, &args) == -1) + err(1, "mount"); + return (0); +} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 22 23:52:45 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mserv1d.vianw.co.uk (mserv1d.vianw.co.uk [195.102.240.96]) by hub.freebsd.org (Postfix) with ESMTP id A00CB37B65D for ; Thu, 22 Feb 2001 23:52:42 -0800 (PST) (envelope-from adrian@savant.u-net.com) Received: from p108.nas1.is5.u-net.net ([195.102.200.108] helo=blizzard.savant.u-net.com) by mserv1d.vianw.co.uk with esmtp (Exim 3.22 #5) id 14WD1s-0001iW-00 for freebsd-bugs@FreeBSD.ORG; Fri, 23 Feb 2001 07:52:40 +0000 Message-Id: <4.3.0.20010223031436.00aea3e0@mail.u-net.com> X-Sender: adrian-savant@mail.u-net.com X-Mailer: QUALCOMM Windows Eudora Version 4.3 Date: Fri, 23 Feb 2001 03:16:44 +0000 To: freebsd-bugs@FreeBSD.ORG From: Adrian Clarke Subject: Hassle with PDF versions of handbook Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello FreeBSD, Hope this is not out of context and I'm sending to the correct place (Newbies excuse for laziness) - though able to download perfectly the split- HTML handbook, all the bzip2, zip, and gzipped versions of the PDF seemed to be in the vernacular - knackered. All compare under Cygwin as identical but ACrobat Reader version 4.05b reports an error on opening the file which it was unable to repair. All downloaded from the UK 1 mirror site. It's just a matter of preference for myself to use PDF as its easier to print the whole caboodle for reference whilst away from the machine. Thanks in advance - I'll keep tabs on the docs to see if there is an update in the near future. Kind regards, Adrian Clarke. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 1: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 BCF9D37B67D for ; Fri, 23 Feb 2001 01:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1N9K1k46878; Fri, 23 Feb 2001 01:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 417FA37B401 for ; Fri, 23 Feb 2001 01:12:46 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1N9Ckh46200; Fri, 23 Feb 2001 01:12:46 -0800 (PST) (envelope-from nobody) Message-Id: <200102230912.f1N9Ckh46200@freefall.freebsd.org> Date: Fri, 23 Feb 2001 01:12:46 -0800 (PST) From: pavel@alum.mit.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/25300: libc_r threads library ill-behaved with large HZ kernel setting Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25300 >Category: misc >Synopsis: libc_r threads library ill-behaved with large HZ kernel setting >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 23 01:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Tom Pavel >Release: 4.2-RELEASE >Organization: Network Physics >Environment: FreeBSD caravan.fractal.networkphysics.com 4.2-RELEASE FreeBSD NP-20010110 i386 >Description: Due to some specialized kernel driver requirements, we are running with very high values of HZ (10000 or 30000). This works OK for us in the kernel, but causes problem with threaded applications linked against libc_r. The problem comes from the garbage collector thread, which runs at whatever rate sysctl(kern.clockrate) reports. In our case, with the very high HZ, this means libc_r tries to schedule an itimer with a 30 us period. As a result, 50% or more of the available user CPU is consumed by the gc thread, and any threaded program runs some x2 slower. As far as I can tell, there is no need for the gc thread to run so frequently. The TIMESLICE_USEC constant indicates that 10-20 ms is the most resolution required in the libc_r threading kernel. My proposed fix is to cap off _clock_res_usec at a max of CLOCK_RES_USEC. This change seems to work fine for us, with mysqld for example. >How-To-Repeat: Set HZ to 10000 in the kernel, and compare run times for any program or benchmark that is linked against libc_r (and uses threads). >Fix: --- lib/libc_r/uthread/uthread_init.c.ORIG Wed Feb 21 21:31:31 2001 +++ lib/libc_r/uthread/uthread_init.c Wed Feb 21 21:36:59 2001 @@ -336,7 +336,11 @@ mib[1] = KERN_CLOCKRATE; len = sizeof (struct clockinfo); if (sysctl(mib, 2, &clockinfo, &len, NULL, 0) == 0) - _clock_res_usec = clockinfo.tick; + /* NPMOD - use larger of clockinfo.tick or + CLOCK_RES_USEC (=10ms) for the uthreads + base tick (pavel - 21-Feb-2001):*/ + _clock_res_usec = (clockinfo.tick > CLOCK_RES_USEC) ? + clockinfo.tick : CLOCK_RES_USEC; /* Get the table size: */ if ((_thread_dtablesize = getdtablesize()) < 0) { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 1:40: 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 2FCA237B4EC for ; Fri, 23 Feb 2001 01:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1N9e2u48796; Fri, 23 Feb 2001 01:40:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9034F37B401 for ; Fri, 23 Feb 2001 01:31:12 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1N9VCF47928; Fri, 23 Feb 2001 01:31:12 -0800 (PST) (envelope-from nobody) Message-Id: <200102230931.f1N9VCF47928@freefall.freebsd.org> Date: Fri, 23 Feb 2001 01:31:12 -0800 (PST) From: davidx@viasoft.com.cn To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/25301: default install allows other user visit directory /root Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25301 >Category: misc >Synopsis: default install allows other user visit directory /root >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 23 01:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: David Xu >Release: FreeBSD-4.2 STABLE >Organization: viasoft >Environment: FreeBSD davidbsd.viasoft.com.cn 4.2-STABLE FreeBSD 4.2-STABLE #5: Thu Feb 22 11: 39:34 CST 2001 root@davidbsd.viasoft.com.cn:/usr/src/sys/compile/xu i386 >Description: FreeBSD 4.2 default install can let other users visit directory /root. I see it as a security risk. when I install smbfs from posts and put smbfs passwd config file in /root, I found other users can steal my samba mount password, then I found /root can be visited by other users. a sad day. the thing never happens in Redhat Linux I ever used, Redhat Linux default does not allow other user visit /root. I think FreeBSD should do it too. root is not a user, but a God, he has something must not let people know. >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 Feb 23 1: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 857CD37B503 for ; Fri, 23 Feb 2001 01:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1N9o3M49956; Fri, 23 Feb 2001 01:50:03 -0800 (PST) (envelope-from gnats) Received: from relay2.agava.net.ru (2.oivt.mipt.ru [193.125.142.2]) by hub.freebsd.org (Postfix) with ESMTP id 5795637B401 for ; Fri, 23 Feb 2001 01:40:56 -0800 (PST) (envelope-from m_ilya@agava.com) Received: from gw.office.agava.ru (2.oivt.mipt.ru [193.125.142.2]) by relay2.agava.net.ru (Postfix) with ESMTP id 5318C4379B for ; Fri, 23 Feb 2001 12:40:52 +0300 (MSK) Received: from juil.domain (juil.domain [192.168.1.50]) by gw.office.agava.ru (Postfix) with ESMTP id 14ABA5EA2 for ; Fri, 23 Feb 2001 12:40:52 +0300 (MSK) Received: by juil.domain (Postfix, from userid 1001) id 3397357; Fri, 23 Feb 2001 12:40:52 +0300 (MSK) Message-Id: <86pug9spnh.fsf@juil.domain> Date: 23 Feb 2001 12:40:50 +0300 From: Ilya Martynov Reply-To: ilya@martynov.org To: FreeBSD-gnats-submit@freebsd.org Subject: bin/25302: /usr/sbin/pkg_update doesn't work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25302 >Category: bin >Synopsis: /usr/sbin/pkg_update doesn't work >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 23 01:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Ilya Martynov >Release: FreeBSD 4.2-STABLE i386 >Organization: AGAVA Software >Environment: Recently updated with cvsup FreeBSD STABLE-4 >Description: Perl script pkg_upgrade (tool for upgrading installed packages) relies on Perl language features which was introduced in Perl 5.6. Since STABLE-4 has previous version of Perl this script simply doesn't work. >How-To-Repeat: $ perl -c /usr/sbin/pkg_update Can't locate warnings.pm in @INC (@INC contains: /usr/home/ilya/perl-lib /usr/libdata/perl/5.00503/mach /usr/libdata/perl/5.00503 /usr/local/lib/perl5/site_perl/5.005/i386-freebsd /usr/local/lib/perl5/site_perl/5.005 .) at /usr/sbin/pkg_update line 32. BEGIN failed--compilation aborted at /usr/sbin/pkg_update line 32. >Fix: Here tirvial patch: *** /usr/sbin/pkg_update Fri Feb 23 02:05:15 2001 --- pkg_update Fri Feb 23 12:10:49 2001 *************** *** 1,4 **** ! #!/usr/bin/perl # Copyright (c) 2000 # Paul Richards. All rights reserved. --- 1,4 ---- ! #!/usr/bin/perl -w # Copyright (c) 2000 # Paul Richards. All rights reserved. *************** *** 29,35 **** # $FreeBSD: src/usr.sbin/pkg_install/update/pkg_update.pl,v 1.4 2001/01/14 02:05:02 paul Exp $ #/ - use warnings; use strict; use File::Basename; --- 29,34 ---- *************** *** 117,123 **** my $pkg = ""; my $update_pkg = ""; ! our($opt_a, $opt_c, $opt_v, $opt_r, $opt_n); getopts('acnvr:'); if ($opt_a && $opt_c) { --- 116,122 ---- my $pkg = ""; my $update_pkg = ""; ! use vars qw($opt_a $opt_c $opt_v $opt_r $opt_n); getopts('acnvr:'); if ($opt_a && $opt_c) { -- Ilya Martynov AGAVA Software Company, http://www.agava.com >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 2: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 79B6937B67D for ; Fri, 23 Feb 2001 02:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1NAA1o54068; Fri, 23 Feb 2001 02:10:01 -0800 (PST) (envelope-from gnats) Received: from cs666838-239.austin.rr.com (cs666838-239.austin.rr.com [66.68.38.239]) by hub.freebsd.org (Postfix) with ESMTP id 3D7B737B401 for ; Fri, 23 Feb 2001 02:07:00 -0800 (PST) (envelope-from jehamby@anobject.com) Received: from jehamby by cs666838-239.austin.rr.com with local (Exim 3.20 #1) id 14WF7q-0000oN-00 for FreeBSD-gnats-submit@freebsd.org; Fri, 23 Feb 2001 04:06:58 -0600 Message-Id: Date: Fri, 23 Feb 2001 04:06:58 -0600 From: jehamby@anobject.com Reply-To: jehamby@anobject.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/25303: softupdate kernel panics Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25303 >Category: kern >Synopsis: reproducible panics w/ SOFTUPDATES and SCSI >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 Feb 23 02:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jake Hamby >Release: FreeBSD 4.2-STABLE i386 >Organization: anObject >Environment: Pentium III 600EB on ASUS P3V4X w/ 128MB, 13GB IDE and 18GB SCSI (2940U2W). Relevant lines from dmesg: FreeBSD 4.2-STABLE #7: Thu Feb 22 09:02:04 CST 2001 root@firewall.jehamby.com:/usr/src/sys/compile/MYKERNEL CPU: Pentium III/Pentium III Xeon/Celeron (602.19-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383f9ff atapci0: port 0xb800-0xb80f at device 4.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 ahc0: port 0x9800-0x98ff mem 0xe0000000-0xe00 00fff irq 11 at device 12.0 on pci0 aic7890/91: Wide Channel A, SCSI Id=7, 32/255 SCBs ad0: 13067MB [26550/16/63] at ata0-master UDMA66 acd0: CDROM at ata1-master using PIO3 Waiting 5 seconds for SCSI devices to settle Mounting root from ufs:/dev/ad0s1a da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 40.000MB/s transfers (20.000MHz, offset 31, 16bit), Tagged Queueing Enabled da0: 17366MB (35566499 512 byte sectors: 255H 63S/T 2213C) >Description: I recently added a SCSI controller and drive to my IDE system, and after discovering and remapping some bad sectors on the old SCSI drive, I wanted to stress-test it, so I started by running a "tar cf - /usr | tar xf -" to the new drive, running several Bonnie benchmarks w/ a 1-2GB file size, rm -r'ing the files I'd copied, and running 'df'. I discovered that after 5-10 minutes of this, I could reproducibly panic the kernel (I'd enabled softupdates w/ tunefs on both /usr (on IDE) and the /scsi partition): IdlePTD 3284992 initial pcb at 297bc0 panicstr: ffs_blkfree: freeing free block --- #0 dumpsys () at ../../kern/kern_shutdown.c:469 469 if (dumping++) { (kgdb) where #0 dumpsys () at ../../kern/kern_shutdown.c:469 #1 0xc01587a3 in boot (howto=256) at ../../kern/kern_shutdown.c:309 #2 0xc0158b39 in panic (fmt=0xc0259900 "ffs_blkfree: freeing free block") at ../../kern/kern_shutdown.c:556 #3 0xc01cc082 in ffs_blkfree (ip=0xc7e11e0c, bno=4344, size=8192) at ../../ufs/ffs/ffs_alloc.c:1349 #4 0xc01d0617 in indir_trunc (ip=0xc7e11e0c, dbn=1572880, level=0, lbn=49164, countp=0xc7e11dfc) at ../../ufs/ffs/ffs_softdep.c:2151 #5 0xc01d0600 in indir_trunc (ip=0xc7e11e0c, dbn=65552, level=1, lbn=2060, countp=0xc7e11dfc) at ../../ufs/ffs/ffs_softdep.c:2147 #6 0xc01d03e9 in handle_workitem_freeblocks (freeblks=0xc0e71400) at ../../ufs/ffs/ffs_softdep.c:2055 #7 0xc01ce963 in process_worklist_item (matchmnt=0x0, flags=0) at ../../ufs/ffs/ffs_softdep.c:661 #8 0xc01ce802 in softdep_process_worklist (matchmnt=0x0) at ../../ufs/ffs/ffs_softdep.c:562 #9 0xc018417 Cannot access memory at address 0x8000. I wanted to make sure I could reproduce the problem with a GENERIC 4.2-STABLE kernel, and sure enough: IdlePTD 4571136 initial pcb at 3ac500 panicstr: ffs_blkfree: bad size #0 dumpsys () at ../../kern/kern_shutdown.c:469 469 if (dumping++) { (kgdb) where #0 dumpsys () at ../../kern/kern_shutdown.c:469 #1 0xc01aac6b in boot (howto=256) at ../../kern/kern_shutdown.c:309 #2 0xc01aafe8 in poweroff_wait (junk=0xc035d755, howto=-1070213344) at ../../kern/kern_shutdown.c:556 #3 0xc029d9d3 in ffs_blkfree (ip=0xc8152e0c, bno=1038292562, size=7168) at ../../ufs/ffs/ffs_alloc.c:1320 #4 0xc02a1f0a in handle_workitem_freeblocks (freeblks=0xc17bd100) at ../../ufs/ffs/ffs_softdep.c:2068 #5 0xc02a03fb in process_worklist_item (matchmnt=0x0, flags=0) at ../../ufs/ffs/ffs_softdep.c:661 #6 0xc02a029a in softdep_process_worklist (matchmnt=0x0) at ../../ufs/ffs/ffs_softdep.c:562 #7 0xc01d645f in sched_sync () at ../../kern/vfs_subr.c:1035 #8 0xc02fef6c in fork_trampoline () Cannot access memory at address 0x8000. I also captured one other panic w/ softupdates disabled on /scsi (but enabled on /usr) but I didn't newfs the test drive after the first panic (I did before the GENERIC kernel crash). Anyway, here's that trace: IdlePTD 3284992 initial pcb at 297bc0 panicstr: from debugger panic messages: --- panic: ffs_valloc: dup alloc --- #0 dumpsys () at ../../kern/kern_shutdown.c:469 469 if (dumping++) { (kgdb) where #0 dumpsys () at ../../kern/kern_shutdown.c:469 #1 0xc01587a3 in boot (howto=260) at ../../kern/kern_shutdown.c:309 #2 0xc0158b39 in panic (fmt=0xc02443f4 "from debugger") at ../../kern/kern_shutdown.c:556 #3 0xc0131c31 in db_panic (addr=-1071507552, have_addr=0, count=-1, modif=0xc881aaf0 "") at ../../ddb/db_command.c:433 #4 0xc0131bd1 in db_command (last_cmdp=0xc027693c, cmd_table=0xc027679c, aux_cmd_tablep=0xc02930c4) at ../../ddb/db_command.c:333 #5 0xc0131c96 in db_command_loop () at ../../ddb/db_command.c:455 #6 0xc0133da3 in db_trap (type=3, code=0) at ../../ddb/db_trap.c:71 #7 0xc0221542 in kdb_trap (type=3, code=0, regs=0xc881abf8) at ../../i386/i386/db_interface.c:158 #8 0xc022d524 in trap (frame={tf_fs = -931069936, tf_es = -1071841264, tf_ds = -931069936, tf_edi = 3, tf_esi = 256, tf_ebp = -931025856, tf_isp = -931025884, tf_ebx = -1071278591, tf_edx = 0, tf_ecx = 0 tf_eax = 18, tf_trapno = 3, tf_err = 0, tf_eip = -1071507552, tf_cs = 8, tf_eflags = 582, tf_esp = -1071206337, tf_ss = -1071338653}) at ../../i386/i386/trap.c:569 #9 0xc02217a0 in Debugger (msg=0xc024ab63 "panic") at machine/cpufunc.h:64 #10 0xc0158b30 in panic (fmt=0xc0259601 "ffs_valloc: dup alloc") at ../../kern/kern_shutdown.c:554 #11 0xc01cac90 in ffs_valloc (pvp=0xc87c9880, mode=33261, cred=0xc0dce780, vpp=0xc881aca4) at ../../ufs/ffs/ffs_alloc.c:609 #12 0xc01dd1a7 in ufs_makeinode (mode=33261, dvp=0xc87c9880, vpp=0xc881aee0, cnp=0xc881aef4) at ../../ufs/ufs/ufs_vnops.c:2082 #13 0xc01dab5c in ufs_create (ap=0xc881ae00) at ../../ufs/ufs/ufs_vnops.c:184 #14 0xc01dd361 in ufs_vnoperate (ap=0xc881ae00) at ../../ufs/ufs/ufs_vnops.c:2287 #15 0xc018ace0 in vn_open (ndp=0xc881aecc, fmode=2563, cmode=493) at vnode_if.h:106 #16 0xc0186f0c in open (p=0xc7e01080, uap=0xc881af80) at ../../kern/vfs_syscalls.c:995 #17 0xc022de51 in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = 134553607, tf_esi = -1077954604, tf_ebp = -1077958780, tf_isp = -931024940, tf_ebx = -1077958644, tf_edx = -1, tf_ecx = 2, tf_eax = 5, tf_trapno = 12, tf_err = 2, tf_eip = 134522512, tf_cs = 31, tf_eflags = 659, tf_esp = -1077958824, tf_ss = 47}) at ../../i386/i386/trap.c:1150 #18 0xc0221e85 in Xint0x80_syscall () #19 0x804839d in ?? () #20 0x8048135 in ?? () >How-To-Repeat: Sadly, I don't have an exact script to reproduce the crash.. it seems to be extremely timing-dependent. However, I have saved both kernel.debug files and the three vmcore files, which I can upload if you need them. >Fix: Disable SOFTUPDATES as a 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 Feb 23 2:14:43 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from gatekeeper.hilti.com (gatekeeper.hilti.com [193.202.255.1]) by hub.freebsd.org (Postfix) with SMTP id 50C0637B503 for ; Fri, 23 Feb 2001 02:14:39 -0800 (PST) (envelope-from Gliebe@hilti.com) Received: by gatekeeper.hilti.com; (5.65v4.0/1.3/10May95) id AA02043; Fri, 23 Feb 2001 11:14:38 +0100 Received: from somewhere by smtpxd Received: from somewhere by smtpxd Message-Id: From: "Gliebe Richard (gr)" To: "'freebsd-bugs@FreeBSD.org'" Subject: freeBSD4.1 on ALPHA Date: Fri, 23 Feb 2001 11:13:57 +0100 Mime-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="ISO-8859-1" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi there, I want to install freeBSD4.1 on a Compaq ALPHA-Station 200 4/166 (196MB). At the console I booted from CDROM (dka500): >>> b dka500 It will boot successfully. Yippie But when it will ask me, about the predefined terminal type 1 .... Standard ANSI terminal 2 .... VT100 [...] [...] 5 .... xterm terminal emulator. my keyboard is dead :( but my keyboard was found (some lines above): atkbdc0: Keyboard controller (i8042) at port 0x60,0x64 on isa0 atkbd0: AT Keyboard irq 1 on atkbdc0 atkbd0: interrupting at ISA irq 1 and this is my console variable for the keyboard: kbd_hardware_type: PCXAL any hints ? HILTI AG Richard Gliebe FL-9494 SCHAAN tel. 00423 236 3447 mailto:gliebe@hilti.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 6: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 C453D37B65D for ; Fri, 23 Feb 2001 06:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1NEU1a96343; Fri, 23 Feb 2001 06:30:01 -0800 (PST) (envelope-from gnats) Received: from mailhub.fokus.gmd.de (mailhub.fokus.gmd.de [193.174.154.14]) by hub.freebsd.org (Postfix) with ESMTP id 6BFB937B401 for ; Fri, 23 Feb 2001 06:24:08 -0800 (PST) (envelope-from brandt@fokus.gmd.de) Received: from fokus.gmd.de (beagle [193.175.132.100]) by mailhub.fokus.gmd.de (8.8.8/8.8.8) with ESMTP id PAA23211 for ; Fri, 23 Feb 2001 15:24:07 +0100 (MET) Received: (from hbb@localhost) by fokus.gmd.de (8.11.2/8.11.0) id f1NEO7S43322; Fri, 23 Feb 2001 15:24:07 +0100 (CET) (envelope-from hbb) Message-Id: <200102231424.f1NEO7S43322@fokus.gmd.de> Date: Fri, 23 Feb 2001 15:24:07 +0100 (CET) From: Hartmut Brandt Reply-To: brandt@fokus.gmd.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/25308: namespace pollution in lmessages.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25308 >Category: bin >Synopsis: libc/locale/lmessages.c declares a global variable 'empty' >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 23 06:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: brandt@fokus.gmd.de >Release: FreeBSD 5.0-CURRENT i386 >Organization: GMD Fokus >Environment: System: FreeBSD beagle.fokus.gmd.de 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Thu Feb 22 14:07:18 CET 2001 hbb@beagle.fokus.gmd.de:/opt/obj/usr/src/sys/BEAGLE i386 >Description: libc/locale/lmessages.c contains the following definition: char empty[] = ""; This is a serious namespace pollution. Probably a 'static' is missing. >How-To-Repeat: Link a program which contains a symbol 'empty' and watch the linker to complain. >Fix: --- lmessages.c.orig Fri Feb 23 15:06:44 2001 +++ lmessages.c Fri Feb 23 15:06:54 2001 @@ -35,7 +35,7 @@ #define LCMESSAGES_SIZE_MIN \ (offsetof(struct lc_messages_T, yesstr) / sizeof(char *)) -char empty[] = ""; +static char empty[] = ""; static const struct lc_messages_T _C_messages_locale = { "^[yY]" , /* yesexpr */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 7: 0: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 B9DD937B67D for ; Fri, 23 Feb 2001 07:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1NF03986582; Fri, 23 Feb 2001 07:00:03 -0800 (PST) (envelope-from gnats) Received: from guardian.hermes.si (guardian.hermes.si [193.77.5.150]) by hub.freebsd.org (Postfix) with ESMTP id EE5AF37B503 for ; Fri, 23 Feb 2001 06:54:45 -0800 (PST) (envelope-from mitja@lamu.hermes.si) Received: from hermes.si (primus.hermes.si [193.77.5.98]) by guardian.hermes.si (8.9.3/8.9.3) with ESMTP id PAA03859 for ; Fri, 23 Feb 2001 15:54:32 +0100 (MET) Received: (from uucp@localhost) by hermes.si (8.9.3/8.9.3) id PAA22625 for ; Fri, 23 Feb 2001 15:54:30 +0100 Received: from lamu.hermes.si(10.17.1.230) by primus.hermes.si via smap (V2.1) id xma021435; Fri, 23 Feb 01 15:53:21 +0100 Received: (from mitja@localhost) by lamu.hermes.si (8.11.1/8.9.3) id f1NExwD15609; Fri, 23 Feb 2001 15:59:59 +0100 (CET) Message-Id: <200102231459.f1NExwD15609@lamu.hermes.si> Date: Fri, 23 Feb 2001 15:59:59 +0100 (CET) From: mitja.horvat@hermes.si Reply-To: mitja.horvat@hermes.si To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/25309: kernel panic related to umount -f & kevents Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25309 >Category: kern >Synopsis: Bug with kevent & umount -f >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 23 07:00:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Mitja Horvat >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: FreeBSD 4.2-STABLE i386, cvsupped on Feb 11th 2001. PIII/800Mhz, 256MB of RAM, 15GB ATA/66 hard drive. >Description: Kernel panic occurs when waiting for a kevent on a UFS file and the filesystem is forcibly unmounted. >How-To-Repeat: Since tail (in conjunction with -f) uses kevent to achieve it's job, it can be used to reproduce the problem. Mount a filesystem, and tail -f a file. Unmount the filesystem using the -f flag(force). Note, that the bug may not manifestate immediately. #!/bin/sh while true do mount /dev/DEVICE /MOUNT_POINT tail -f /MOUNT_POINT/RANDOM_FILE & umount -f /MOUNT_POINT kill %% done Replace /dev/DEVICE with a device(eg. CDROM), /MOUNT_POINT with the mount point of the device, and RANDOM_FILE with a random file on the filesystem. >Fix: The following patch fixes the problem for me. Please note that I'm far away from being a kernel hacker, so I'm not 100% sure if it breaks something else or not (although it's a very simple fix). --- vfs_vnops.c.orig Mon Feb 12 14:17:19 2001 +++ vfs_vnops.c Fri Feb 23 15:55:18 2001 @@ -722,6 +722,15 @@ struct vnode *vp = (struct vnode *)kn->kn_fp->f_data; struct inode *ip = VTOI(vp); + /* + * If the underlying inode was freed(this can happen + * if the filesystem is forcibly unmounted with + * umount -f), return as there was activity on the file, + * so the process will be woken up and later it will + * receive an error during read XXX + */ + if (ip == NULL) return 1; + kn->kn_data = ip->i_size - kn->kn_fp->f_offset; return (kn->kn_data != 0); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 7: 1: 2 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 9CE2437B503; Fri, 23 Feb 2001 07:00:59 -0800 (PST) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1NF0wB86716; Fri, 23 Feb 2001 07:00:58 -0800 (PST) (envelope-from will) Date: Fri, 23 Feb 2001 07:00:58 -0800 (PST) From: Message-Id: <200102231500.f1NF0wB86716@freefall.freebsd.org> To: davidx@viasoft.com.cn, will@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/25301: default install allows other user visit directory /root Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: default install allows other user visit directory /root State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Fri Feb 23 06:59:58 PST 2001 State-Changed-Why: If you have something particularly important in your root, try ``chmod 700 /root''. Next time post a message like this to -questions. http://www.freebsd.org/cgi/query-pr.cgi?pr=25301 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 7:10: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 C47C737B65D for ; Fri, 23 Feb 2001 07:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1NFA2789948; Fri, 23 Feb 2001 07:10:02 -0800 (PST) (envelope-from gnats) Date: Fri, 23 Feb 2001 07:10:02 -0800 (PST) Message-Id: <200102231510.f1NFA2789948@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Michael C . Wu" Subject: Re: misc/25301: default install allows other user visit directory /root Reply-To: "Michael C . Wu" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/25301; it has been noted by GNATS. From: "Michael C . Wu" To: davidx@viasoft.com.cn Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/25301: default install allows other user visit directory /root Date: Fri, 23 Feb 2001 08:58:10 -0600 On Fri, Feb 23, 2001 at 01:31:12AM -0800, davidx@viasoft.com.cn scribbled: | | >Number: 25301 | >Category: misc | >Synopsis: default install allows other user visit directory /root | >Confidential: no | >Severity: non-critical | >Priority: low | >Responsible: freebsd-bugs | >State: open | >Quarter: | >Keywords: | >Date-Required: | >Class: sw-bug | >Submitter-Id: current-users | >Arrival-Date: Fri Feb 23 01:40:01 PST 2001 | >Closed-Date: | >Last-Modified: | >Originator: David Xu | >Release: FreeBSD-4.2 STABLE | >Organization: | viasoft | >Environment: | FreeBSD davidbsd.viasoft.com.cn 4.2-STABLE FreeBSD 4.2-STABLE #5: Thu Feb 22 11: | 39:34 CST 2001 root@davidbsd.viasoft.com.cn:/usr/src/sys/compile/xu i386 | >Description: | FreeBSD 4.2 default install can let other users visit directory /root. | I see it as a security risk. when I install smbfs from posts and put | smbfs passwd config file in /root, I found other users can steal my samba mount password, then I found /root can be visited by other users. a sad day. | | the thing never happens in Redhat Linux I ever used, Redhat Linux default does not allow other user visit /root. I think FreeBSD should do it too. | | root is not a user, but a God, he has something must not let people know. | This is a problem that you as a user needs to solve and setup correctly. You misconfigured your samba anyways. Had you been more experienced, you would never be doing what you are trying to do. man chmod. Redhat has the same behavior as FreeBSD for directory permissions. This is not a security risk. -- +------------------------------------------------------------------+ | keichii@peorth.iteration.net | keichii@bsdconspiracy.net | | http://peorth.iteration.net/~keichii | Yes, BSD is a conspiracy. | +------------------------------------------------------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 7:40: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 CD8EC37B503; Fri, 23 Feb 2001 07:40:18 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1NFeIH93792; Fri, 23 Feb 2001 07:40:18 -0800 (PST) (envelope-from dwmalone) Date: Fri, 23 Feb 2001 07:40:18 -0800 (PST) From: Message-Id: <200102231540.f1NFeIH93792@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, dwmalone@FreeBSD.org Subject: Re: kern/25309: Bug with kevent & umount -f Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Bug with kevent & umount -f Responsible-Changed-From-To: freebsd-bugs->dwmalone Responsible-Changed-By: dwmalone Responsible-Changed-When: Fri Feb 23 07:39:38 PST 2001 Responsible-Changed-Why: I'll try to get someone to review this. http://www.freebsd.org/cgi/query-pr.cgi?pr=25309 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 7:42: 1 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 407A337B491; Fri, 23 Feb 2001 07:42:00 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1NFg0n94222; Fri, 23 Feb 2001 07:42:00 -0800 (PST) (envelope-from dwmalone) Date: Fri, 23 Feb 2001 07:42:00 -0800 (PST) From: Message-Id: <200102231542.f1NFg0n94222@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, dwmalone@FreeBSD.org Subject: Re: kern/25206: Kernel Panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Kernel Panic Responsible-Changed-From-To: freebsd-bugs->dwmalone Responsible-Changed-By: dwmalone Responsible-Changed-When: Fri Feb 23 07:40:43 PST 2001 Responsible-Changed-Why: This is the same bug as in 25309 - I'll try to get a fix reviewed for both. . http://www.freebsd.org/cgi/query-pr.cgi?pr=25206 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 7:50:42 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id 7958037B684; Fri, 23 Feb 2001 07:50:19 -0800 (PST) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p10-dn03kiryunisiki.gunma.ocn.ne.jp [210.232.224.139]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id AAA20912; Sat, 24 Feb 2001 00:49:43 +0900 (JST) Message-ID: <3A9685EE.CCF85BAE@newsguy.com> Date: Sat, 24 Feb 2001 00:46:54 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR MIME-Version: 1.0 To: dcs@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org, David Xu Subject: Re: kern/25130: kernel crash with kldload/kldunload md.ko References: <200102220941.f1M9fbm50374@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------6F6CA58BE66EC1938BC65A35" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------6F6CA58BE66EC1938BC65A35 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit dcs@FreeBSD.org wrote: > > Synopsis: kernel crash with kldload/kldunload md.ko > > Responsible-Changed-From-To: freebsd-bugs->dcs > Responsible-Changed-By: dcs > Responsible-Changed-When: Thu Feb 22 01:41:01 PST 2001 > Responsible-Changed-Why: > I'm working on it right now. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=25130 See attached md.diff. While you are at it, attached mdconfig.diff automatically loads the md.ko if the module is not present. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@kzinti.bsdconspiracy.net Acabou o hipismo-arte. Mas a desculpa brasileira mais ouvida em Sydney e' que nao tem mais cavalo bobo por ai'. --------------6F6CA58BE66EC1938BC65A35 Content-Type: text/plain; charset=us-ascii; name="md.diff" Content-Disposition: inline; filename="md.diff" Content-Transfer-Encoding: 7bit Index: md.c =================================================================== RCS file: /home/ncvs/src/sys/dev/md/md.c,v retrieving revision 1.23 diff -u -p -r1.23 md.c --- md.c 2001/01/28 20:55:55 1.23 +++ md.c 2001/02/22 10:27:35 @@ -85,6 +85,8 @@ #include #include +#define MD_MODVER 1 + #ifndef MD_NSECT #define MD_NSECT (10000 * 2) #endif @@ -110,9 +112,11 @@ SYSCTL_INT(_debug, OID_AUTO, mddebug, CT static u_char mfs_root[MD_ROOT_SIZE*1024] = "MFS Filesystem goes here"; static u_char end_mfs_root[] __unused = "MFS Filesystem had better STOP here"; #endif + +static int mdrootready; +static int mdunits; +static dev_t status_dev = 0; -static int mdrootready; -static int mdunits; #define CDEV_MAJOR 95 @@ -883,10 +887,37 @@ md_drvinit(void *unused) mdunits, name, len, ptr); md_preloaded(ptr, len); } - make_dev(&mdctl_cdevsw, 0xffff00ff, UID_ROOT, GID_WHEEL, 0600, "mdctl"); + status_dev = make_dev(&mdctl_cdevsw, 0xffff00ff, UID_ROOT, GID_WHEEL, 0600, "mdctl"); } + +static int +md_modevent(module_t mod, int type, void *data) +{ + switch (type) { + case MOD_LOAD: + md_drvinit(NULL); + break; + case MOD_UNLOAD: + if (!LIST_EMPTY(&md_softc_list)) + return EBUSY; + if (status_dev) + destroy_dev(status_dev); + status_dev = 0; + break; + default: + break; + } + return 0; +} + +static moduledata_t md_mod = { + "md", + md_modevent, + NULL +}; +DECLARE_MODULE(md, md_mod, SI_SUB_DRIVERS, SI_ORDER_MIDDLE+CDEV_MAJOR); +MODULE_VERSION(md, MD_MODVER); -SYSINIT(mddev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR, md_drvinit,NULL) #ifdef MD_ROOT static void --------------6F6CA58BE66EC1938BC65A35 Content-Type: text/plain; charset=us-ascii; name="mdconfig.diff" Content-Disposition: inline; filename="mdconfig.diff" Content-Transfer-Encoding: 7bit Index: mdconfig.c =================================================================== RCS file: /home/ncvs/src/sbin/mdconfig/mdconfig.c,v retrieving revision 1.6 diff -u -p -r1.6 mdconfig.c --- mdconfig.c 2001/01/31 08:41:18 1.6 +++ mdconfig.c 2001/02/22 07:53:19 @@ -18,12 +18,16 @@ #include #include #include +#include +#include #include struct md_ioctl mdio; enum {UNSET, ATTACH, DETACH} action = UNSET; +void mdmaybeload(void); + void usage() { @@ -139,6 +143,7 @@ main(int argc, char **argv) } } + mdmaybeload(); fd = open("/dev/mdctl", O_RDWR, 0); if (fd < 0) err(1, "open(/dev/mdctl)"); @@ -154,5 +159,36 @@ main(int argc, char **argv) if (mdio.md_options & MD_AUTOUNIT) printf("md%d\n", mdio.md_unit); return (0); +} + +void +mdmaybeload(void) +{ + struct module_stat mstat; + int fileid, modid; + char *name = "md"; + char *cp; + + /* scan files in kernel */ + mstat.version = sizeof(struct module_stat); + for (fileid = kldnext(0); fileid > 0; fileid = kldnext(fileid)) { + /* scan modules in file */ + for (modid = kldfirstmod(fileid); modid > 0; + modid = modfnext(modid)) { + if (modstat(modid, &mstat) < 0) + continue; + /* strip bus name if present */ + if ((cp = strchr(mstat.name, '/')) != NULL) { + cp++; + } else { + cp = mstat.name; + } + /* already loaded? */ + if (!strcmp(name, cp)) + return; + } + } + /* not present, we should try to load it */ + kldload(name); } --------------6F6CA58BE66EC1938BC65A35-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 15: 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 9DE4037B65D for ; Fri, 23 Feb 2001 15:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1NN01Z79974; Fri, 23 Feb 2001 15:00:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A45037B401 for ; Fri, 23 Feb 2001 14:51:53 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1NMpqP79170; Fri, 23 Feb 2001 14:51:53 -0800 (PST) (envelope-from nobody) Message-Id: <200102232251.f1NMpqP79170@freefall.freebsd.org> Date: Fri, 23 Feb 2001 14:51:53 -0800 (PST) From: satz@iranger.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/25328: 4.x stable kernel crash: page fault Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25328 >Category: i386 >Synopsis: 4.x stable kernel crash: page fault >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 Feb 23 15:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Greg Satz >Release: 4.x stable >Organization: >Environment: FreeBSD pooh.cisco.com 4.2-STABLE FreeBSD 4.2-STABLE #4: Mon Feb 19 11:45:01 MST 2001 root@pooh.cisco.com:/usr/src/sys/compile/POOH i386 >Description: IdlePTD 3469312 initial pcb at 2c2fe0 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0x468 fault code = supervisor read, page not present instruction pointer = 0x8:0xc0154c57 stack pointer = 0x10:0xd5163ce8 frame pointer = 0x10:0xd5163d04 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 3 current process = 562 (vmware) interrupt mask = net tty bio cam trap number = 12 panic: page fault (kgdb) bt #0 0xc015928e in dumpsys () #1 0xc01590af in boot () #2 0xc015942c in poweroff_wait () #3 0xc025ed1d in trap_fatal () #4 0xc025e9f5 in trap_pfault () #5 0xc025e5db in trap () #6 0xc0154c57 in malloc () #7 0xc138aa06 in ?? () #8 0xc025efc9 in syscall2 () #9 0xc0251735 in Xint0x80_syscall () #10 0x284403cc in ?? () #11 0x80570f6 in ?? () #12 0x80565b0 in ?? () #13 0x8057347 in ?? () #14 0x80526e9 in ?? () #15 0x80520dc in ?? () #16 0x805205d in ?? () #17 0x8051fe8 in ?? () >How-To-Repeat: unknown. But I do have the kernel and vmcore if necessary. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 15: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 6065E37B4EC for ; Fri, 23 Feb 2001 15:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1NNK1T84347; Fri, 23 Feb 2001 15:20:01 -0800 (PST) (envelope-from gnats) Received: from mgate08.so-net.ne.jp (mgate08.so-net.ne.jp [210.139.254.155]) by hub.freebsd.org (Postfix) with ESMTP id 2E8F937B401 for ; Fri, 23 Feb 2001 15:19:24 -0800 (PST) (envelope-from ipfw@ya3.so-net.ne.jp) Received: from mail.ya3.so-net.ne.jp (mspool11.so-net.ne.jp [210.139.248.11]) by mgate08.so-net.ne.jp (8.8.8+3.0Wbeta9/3.6W01022316) with ESMTP id IAA03855 for ; Sat, 24 Feb 2001 08:19:22 +0900 (JST) Received: from localhost (p78a3bd.kngwnt01.ap.so-net.ne.jp [61.120.163.189]) by mail.ya3.so-net.ne.jp (8.9.3/3.7W01022316) with ESMTP id IAA20348 for ; Sat, 24 Feb 2001 08:19:21 +0900 (JST) Message-Id: <20010224082444P.ipfw@ya3.so-net.ne.jp> Date: Sat, 24 Feb 2001 08:24:44 +0900 From: Yoshihiro Koya To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/25329: Deprecated permission of /var/log/console.log Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25329 >Category: bin >Synopsis: The current default permission of /var/log/console.log is depricated >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Feb 23 15:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Yoshihiro Koya >Release: FreeBSD 5.0-CURRENT i386 >Organization: Yokohama City Univ. Dept. of Math. Sci. >Environment: System: FreeBSD current.my.domain 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Sun Feb 18 22:47:43 JST 2001 root@current.my.domain:/usr/obj/usr/src/sys/current i386 Also on 4-stable as of Feb 23 >Description: The default permission assumed in /etc/newsyslog.conf of /var/log/console.log is 640. But mode 600 is more secure than current default permisson. Actually, those of /var/log/mount.{today,yesterday} or /var/log/setuid.{today,yesterday} is also 600. The reason whay this permisson is deperecate is as follows: # su -l (become root) # shutdown now (go into the single usermode) # /bin/cat /etc/master.passwd (the contents of /etc/master.passwd is here) # exit (go into the multi user mode again) (after loggin in as a usual user belonging to wheel) % cat /var/log/console.log (you may find the contents of /etc/master.passwd) Everything done by root during the single user mode can be viewed via /var/log/console.log. >How-To-Repeat: >Fix: At least, the following modification seems to be required. --- newsyslog.conf.orig Sat Feb 24 08:16:58 2001 +++ newsyslog.conf Sat Feb 24 08:18:53 2001 @@ -17,4 +17,4 @@ /var/log/daily.log 640 7 * @T00 Z /var/log/weekly.log 640 5 1 $W6D0 Z /var/log/monthly.log 640 12 * $M1D0 Z -/var/log/console.log 640 5 100 * Z +/var/log/console.log 600 5 100 * Z >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 23:30: 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 5DA3F37B684 for ; Fri, 23 Feb 2001 23:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1O7U1N60034; Fri, 23 Feb 2001 23:30:01 -0800 (PST) (envelope-from gnats) Received: from zebu.riken.go.jp (zebu.riken.go.jp [134.160.20.73]) by hub.freebsd.org (Postfix) with SMTP id 30B4B37B4EC for ; Fri, 23 Feb 2001 23:25:40 -0800 (PST) (envelope-from mitsuru@zebu.riken.go.jp) Received: (qmail 75002 invoked by uid 123); 24 Feb 2001 07:25:56 -0000 Message-Id: <20010224072556.75001.qmail@zebu.riken.go.jp> Date: 24 Feb 2001 07:25:56 -0000 From: mitsuru@riken.go.jp Reply-To: mitsuru@riken.go.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/25337: dmesg -a Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25337 >Category: bin >Synopsis: dmesg -a should be restricted >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Feb 23 23:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Mitsuru Yoshida >Release: FreeBSD 4.2-STABLE i386 >Organization: RIKEN >Environment: FreeBSD 4.2-STABLE i386 >Description: Using dmesg -a, any user can get all data in the message buffer, and it may cause security problem. Especially all messages written to the console are stored in the message buffer during single user mode, and any user can get them later. The use of -a option should be restricted to root user. >How-To-Repeat: dmesg -a >Fix: --- dmesg.c.dist Wed Feb 21 10:00:26 2001 +++ dmesg.c Wed Feb 21 10:02:11 2001 @@ -56,6 +56,7 @@ #include #include #include +#include struct nlist nl[] = { #define X_MSGBUF 0 @@ -87,6 +88,10 @@ while ((ch = getopt(argc, argv, "aM:N:")) != -1) switch(ch) { case 'a': + if (getuid() != (uid_t)0) { + fprintf(stderr,"dmesg: must be root to get all data in the message buffer\n"); + exit(1); + } all++; break; case 'M': >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 23:47: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 E785137B491; Fri, 23 Feb 2001 23:47:15 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1O7lFn60970; Fri, 23 Feb 2001 23:47:15 -0800 (PST) (envelope-from kris) Date: Fri, 23 Feb 2001 23:47:15 -0800 (PST) From: Message-Id: <200102240747.f1O7lFn60970@freefall.freebsd.org> To: kris@FreeBSD.org, freebsd-bugs@FreeBSD.org, green@FreeBSD.org Subject: Re: bin/25263: openssh and /etc/login.access does not work with IP addr Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: openssh and /etc/login.access does not work with IP addr Responsible-Changed-From-To: freebsd-bugs->green Responsible-Changed-By: kris Responsible-Changed-When: Fri Feb 23 23:46:52 PST 2001 Responsible-Changed-Why: green is the openssh maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=25263 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 23:48: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 7E18D37B491; Fri, 23 Feb 2001 23:48:09 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1O7m9i61062; Fri, 23 Feb 2001 23:48:09 -0800 (PST) (envelope-from kris) Date: Fri, 23 Feb 2001 23:48:09 -0800 (PST) From: Message-Id: <200102240748.f1O7m9i61062@freefall.freebsd.org> To: kris@FreeBSD.org, freebsd-bugs@FreeBSD.org, chris@FreeBSD.org Subject: Re: kern/25266: fdesc file system in -STABLE locks up during nightly builds Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fdesc file system in -STABLE locks up during nightly builds Responsible-Changed-From-To: freebsd-bugs->chris Responsible-Changed-By: kris Responsible-Changed-When: Fri Feb 23 23:47:47 PST 2001 Responsible-Changed-Why: chris is the fdescfs maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=25266 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 23:50: 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 3B66937B491 for ; Fri, 23 Feb 2001 23:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1O7o1p61132; Fri, 23 Feb 2001 23:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B49F37B401 for ; Fri, 23 Feb 2001 23:42:25 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1O7gPq60562; Fri, 23 Feb 2001 23:42:25 -0800 (PST) (envelope-from nobody) Message-Id: <200102240742.f1O7gPq60562@freefall.freebsd.org> Date: Fri, 23 Feb 2001 23:42:25 -0800 (PST) From: chenggl@yahoo.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25338: HARD READ ERROR on IBM Hard Disks connected through Promise Ultra 66 Card Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25338 >Category: kern >Synopsis: HARD READ ERROR on IBM Hard Disks connected through Promise Ultra 66 Card >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 23 23:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Guolin Cheng >Release: FreeBSD 4.1 (Intel ix86 platform) >Organization: amazon Company >Environment: FreeBSD sr20.alexa.com 4.1-RELEASE FreeBSD 4.1-RELEASE #5: Fri Feb 2 11:17:36 PST 2001 root@sr20.alexa.com:/usr/src/sys/compile/ALEXA i386 CPU: Intel Pentium III 700M Processor Motherboard: Asus P3B-F Motherboard BIOS: Award Medallion BIOS 6.0 ASUS P3B-F ACPI BIOS Revision 1.006 Award Plug and Play BIOS BIOS Extension V1.0A Promise Card: Promise Ultra 66 (a PDC 20262 control? chip is on it) Promise Card BIOS: Promise Ultra(Tm) BIOS Version 2.00 (Build 18) Memory: 512M SDRAM Hard Disks: 12 IBM Hard disks, 4 connected through on-board IDE connectors, other 8 are connected through 2 Promise Ultra 66 card. Video Card: ATI AGP card Ethernet Card: Intel Pro 10/100B/100+ Ethernet card 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 atapci1: port 0x9400-0x943f,0x9800-0x9803,0xa000-0xa007,0xa400-0xa403,0xa800-0xa807 mem 0xe0800000-0xe081ffff irq 10 at device 11.0 on pci0 ata2: at 0xa800 on atapci1 ata3: at 0xa000 on atapci1 atapci2: port 0x7800-0x783f,0x8000-0x8003,0x8400-0x8407,0x8800-0x8803,0x9000-0x9007 mem 0xe0000000-0xe001ffff irq 11 at device 12.0 on pci0 ata4: at 0x9000 on atapci2 ata5: at 0x8400 on atapci2 ad0: 73308MB [148945/16/63] at ata0-master using UDMA33 ad1: 73308MB [148945/16/63] at ata0-slave using UDMA33 ad2: 73308MB [148945/16/63] at ata1-master using UDMA33 ad3: 73308MB [148945/16/63] at ata1-slave using UDMA33 ad4: 73308MB [148945/16/63] at ata2-master using UDMA66 ad5: 73308MB [148945/16/63] at ata2-slave using UDMA66 ad6: 73308MB [148945/16/63] at ata3-master using UDMA66 ad7: 73308MB [148945/16/63] at ata3-slave using UDMA66 ad8: 73308MB [148945/16/63] at ata4-master using UDMA66 ad9: 73308MB [148945/16/63] at ata4-slave using UDMA66 ad10: 73308MB [148945/16/63] at ata5-master using UDMA66 ad11: 73308MB [148945/16/63] at ata5-slave using UDMA66 >Description: Every time when I try to read a file on my ccd stripped disk, it prompts: Feb 1 19:19:59 sr20 /kernel: ad6: HARD READ ERROR blk# 63793760ata3-master: WARNING: WAIT_READY active=ATA_ACT IVE_ATA Feb 1 19:19:59 sr20 /kernel: ad6: DMA problem fallback to PIO mode Feb 1 19:19:59 sr20 last message repeated 5 times Feb 1 19:20:05 sr20 /kernel: ad6: HARD READ ERROR blk# 63793856 status=59 error=40 Feb 1 19:20:05 sr20 /kernel: ad6: DMA problem fallback to PIO mode Feb 1 19:20:05 sr20 /kernel: ccd0: error 5 on component 6 block 63793744 (ccd block 701731392) Feb 1 19:20:10 sr20 /kernel: ad6: HARD READ ERROR blk# 63793856 status=59 error=40 Feb 1 19:20:10 sr20 /kernel: ccd0: error 5 on component 6 block 63793760 (ccd block 701731408) Feb 1 19:20:15 sr20 /kernel: ad6: HARD READ ERROR blk# 63793856 status=59 error=40 Feb 1 19:20:15 sr20 /kernel: ccd0: error 5 on component 6 block 63793776 (ccd block 701731424) Feb 1 19:20:21 sr20 /kernel: ad6: HARD READ ERROR blk# 63793856 status=59 error=40 Feb 1 19:20:21 sr20 /kernel: ccd0: error 5 on component 6 block 63793792 (ccd block 701731440) Feb 1 19:20:26 sr20 /kernel: ad6: HARD READ ERROR blk# 63793856 status=59 error=40 Feb 1 19:20:26 sr20 /kernel: ccd0: error 5 on component 6 block 63793808 (ccd block 701731456) Feb 1 19:20:32 sr20 /kernel: ad6: HARD READ ERROR blk# 63793856 status=59 error=40 Feb 1 19:20:32 sr20 /kernel: ccd0: error 5 on component 6 block 63793824 (ccd block 701731472) Feb 1 19:20:37 sr20 /kernel: ad6: HARD READ ERROR blk# 63793856 status=59 error=40 Feb 1 19:20:37 sr20 /kernel: ccd0: error 5 on component 6 block 63793840 (ccd block 701731488) Feb 1 19:20:42 sr20 /kernel: ad6: HARD READ ERROR blk# 63793856 status=59 error=40 Feb 1 19:20:42 sr20 /kernel: ccd0: error 5 on component 6 block 63793840 (ccd block 701731488) >How-To-Repeat: 100% repeatable, every time I access a normal file on the ccd, the ad6 disk fails, DMA falls back to PIO, which leads to ccd fail. >Fix: Don't know how to fix it. But I afraid that problem may be related with timing setting of Promise Ultra66 cards? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 23:50: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 05ABB37B401; Fri, 23 Feb 2001 23:50:35 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1O7oYi61327; Fri, 23 Feb 2001 23:50:34 -0800 (PST) (envelope-from kris) Date: Fri, 23 Feb 2001 23:50:34 -0800 (PST) From: Message-Id: <200102240750.f1O7oYi61327@freefall.freebsd.org> To: kris@FreeBSD.org, freebsd-bugs@FreeBSD.org, gibbs@FreeBSD.org Subject: Re: misc/25291: Think I found a typo in scsiall.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Think I found a typo in scsiall.c Responsible-Changed-From-To: freebsd-bugs->gibbs Responsible-Changed-By: kris Responsible-Changed-When: Fri Feb 23 23:50:19 PST 2001 Responsible-Changed-Why: gibbs imported this code http://www.freebsd.org/cgi/query-pr.cgi?pr=25291 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 23:51: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 1CDF337B401; Fri, 23 Feb 2001 23:51:34 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1O7pYX61426; Fri, 23 Feb 2001 23:51:34 -0800 (PST) (envelope-from kris) Date: Fri, 23 Feb 2001 23:51:34 -0800 (PST) From: Message-Id: <200102240751.f1O7pYX61426@freefall.freebsd.org> To: kris@FreeBSD.org, freebsd-bugs@FreeBSD.org, paul@FreeBSD.org Subject: Re: bin/25302: /usr/sbin/pkg_update doesn't work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /usr/sbin/pkg_update doesn't work Responsible-Changed-From-To: freebsd-bugs->paul Responsible-Changed-By: kris Responsible-Changed-When: Fri Feb 23 23:51:17 PST 2001 Responsible-Changed-Why: paul wrote pkg_update http://www.freebsd.org/cgi/query-pr.cgi?pr=25302 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 23:54: 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 AEA6837B491; Fri, 23 Feb 2001 23:53:58 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1O7rwM61619; Fri, 23 Feb 2001 23:53:58 -0800 (PST) (envelope-from kris) Date: Fri, 23 Feb 2001 23:53:58 -0800 (PST) From: Message-Id: <200102240753.f1O7rwM61619@freefall.freebsd.org> To: kris@FreeBSD.org, freebsd-bugs@FreeBSD.org, phantom@FreeBSD.org Subject: Re: bin/25308: libc/locale/lmessages.c declares a global variable 'empty' Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: libc/locale/lmessages.c declares a global variable 'empty' Responsible-Changed-From-To: freebsd-bugs->phantom Responsible-Changed-By: kris Responsible-Changed-When: Fri Feb 23 23:53:42 PST 2001 Responsible-Changed-Why: phantom is responsible for this code http://www.freebsd.org/cgi/query-pr.cgi?pr=25308 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 23:55: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 B49B737B401; Fri, 23 Feb 2001 23:55:33 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1O7tX661780; Fri, 23 Feb 2001 23:55:33 -0800 (PST) (envelope-from kris) Date: Fri, 23 Feb 2001 23:55:33 -0800 (PST) From: Message-Id: <200102240755.f1O7tX661780@freefall.freebsd.org> To: kris@FreeBSD.org, freebsd-bugs@FreeBSD.org, deischen@FreeBSD.org Subject: Re: misc/25300: libc_r threads library ill-behaved with large HZ kernel setting Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: libc_r threads library ill-behaved with large HZ kernel setting Responsible-Changed-From-To: freebsd-bugs->deischen Responsible-Changed-By: kris Responsible-Changed-When: Fri Feb 23 23:55:14 PST 2001 Responsible-Changed-Why: deischen is Mr Threads http://www.freebsd.org/cgi/query-pr.cgi?pr=25300 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 23 23:57: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 3E6E237B401; Fri, 23 Feb 2001 23:57:32 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1O7vW361918; Fri, 23 Feb 2001 23:57:32 -0800 (PST) (envelope-from kris) Date: Fri, 23 Feb 2001 23:57:32 -0800 (PST) From: Message-Id: <200102240757.f1O7vW361918@freefall.freebsd.org> To: kris@FreeBSD.org, freebsd-bugs@FreeBSD.org, peter@FreeBSD.org Subject: Re: misc/25218: mailwrapper invokes sendmail when resources are tight Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mailwrapper invokes sendmail when resources are tight Responsible-Changed-From-To: freebsd-bugs->peter Responsible-Changed-By: kris Responsible-Changed-When: Fri Feb 23 23:57:07 PST 2001 Responsible-Changed-Why: peter imported mailwrapper http://www.freebsd.org/cgi/query-pr.cgi?pr=25218 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 24 1:40: 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 F326237B4EC for ; Sat, 24 Feb 2001 01:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1O9e2375065; Sat, 24 Feb 2001 01:40:02 -0800 (PST) (envelope-from gnats) Date: Sat, 24 Feb 2001 01:40:02 -0800 (PST) Message-Id: <200102240940.f1O9e2375065@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Soren Schmidt Subject: Re: kern/25338: HARD READ ERROR on IBM Hard Disks connected through Promise Ultra 66 Card Reply-To: Soren Schmidt Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/25338; it has been noted by GNATS. From: Soren Schmidt To: chenggl@yahoo.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/25338: HARD READ ERROR on IBM Hard Disks connected through Promise Ultra 66 Card Date: Sat, 24 Feb 2001 10:33:09 +0100 (CET) It seems chenggl@yahoo.com wrote: > Feb 1 19:19:59 sr20 /kernel: ad6: HARD READ ERROR blk# 63793760ata3-master: WARNING: WAIT_READY active=ATA_ACT > IVE_ATA > Feb 1 19:19:59 sr20 /kernel: ad6: DMA problem fallback to PIO mode > Feb 1 19:19:59 sr20 last message repeated 5 times > Feb 1 19:20:05 sr20 /kernel: ad6: HARD READ ERROR blk# 63793856 status=59 error=40 > Feb 1 19:20:05 sr20 /kernel: ad6: DMA problem fallback to PIO mode > Feb 1 19:20:05 sr20 /kernel: ccd0: error 5 on component 6 block 63793744 (ccd block 701731392) > > >How-To-Repeat: > 100% repeatable, every time I access a normal file on the ccd, the ad6 disk fails, DMA falls back to PIO, which leads to ccd fail. Have you tried swapping disks and controllers ? ie have you outruled that ad6 isn't broken, or that the controller is for that matter. Also some motherboards doesn't allow for busmastering in all pci slots etc etc ... > >Fix: > Don't know how to fix it. > > But I afraid that problem may be related with timing setting of Promise Ultra66 cards? Nope, I know from several semilar configs that it actually works. -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 24 2:18: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 9620437B4EC; Sat, 24 Feb 2001 02:18:17 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1OAIGO79898; Sat, 24 Feb 2001 02:18:16 -0800 (PST) (envelope-from ru) Date: Sat, 24 Feb 2001 02:18:16 -0800 (PST) From: Message-Id: <200102241018.f1OAIGO79898@freefall.freebsd.org> To: mitsuru@riken.go.jp, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, ru@FreeBSD.org Subject: Re: bin/25337: dmesg -a should be restricted Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: dmesg -a should be restricted State-Changed-From-To: open->feedback State-Changed-By: ru State-Changed-When: Sat Feb 24 02:17:11 PST 2001 State-Changed-Why: Fixed in 5.0-CURRENT, sbin/dmesg/dmesg.c,v 1.13. Responsible-Changed-From-To: freebsd-bugs->ru Responsible-Changed-By: ru Responsible-Changed-When: Sat Feb 24 02:17:11 PST 2001 Responsible-Changed-Why: MFC reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=25337 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 24 8:41:16 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from critter.freebsd.dk (flutter.freebsd.dk [212.242.40.147]) by hub.freebsd.org (Postfix) with ESMTP id B480B37B6A3 for ; Sat, 24 Feb 2001 08:41:12 -0800 (PST) (envelope-from phk@critter.freebsd.dk) Received: from critter (localhost [127.0.0.1]) by critter.freebsd.dk (8.11.1/8.11.1) with ESMTP id f1OGfOM08222; Sat, 24 Feb 2001 17:41:24 +0100 (CET) (envelope-from phk@critter.freebsd.dk) To: Dima Dorfman Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/25273: add fs type feature to vnconfig(8) to allow direct mount of iso images and co. In-Reply-To: Your message of "Thu, 22 Feb 2001 21:30:02 PST." <200102230530.f1N5U2c04134@freefall.freebsd.org> Date: Sat, 24 Feb 2001 17:41:24 +0100 Message-ID: <8220.983032884@critter> From: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > "send patches" doesn't count as interested in your book ? :-) > > Fair enough. See attached. It implements the 'feature' feature (yes, > it's called 'feature') of vnconfig in mdconfig. I couldn't think of a > better name, so I also called it 'feature'. The real issue here is of course that I cannot mount a filesystem which happens to live in a file, I can only mount disk devices. If there are valid reasons for this, we should not hide the extra gymnastics needed to circumvent this. If there are no (longer ?) valid reasons for this we should fix (ie: remove) the restriction rather than patch around it. Regarding your patch: I don't like it that much because in essence it amounts to: mdconfig bla bla -feature "execute this command afterwards" Ie: mdconfig -c -f mycd.iso -feature cd9660,/cdimg In my book that is not the UNIX way. The UNIX way is: mount -t cd9660 /dev/`mdconfig -c -f mycd.iso` /cdimg And you can do that without changing mdconfig... Comments ? -- 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 Sat Feb 24 10: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 53A8837B65D for ; Sat, 24 Feb 2001 10:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1OIe3Q63021; Sat, 24 Feb 2001 10:40:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DEE3637B491 for ; Sat, 24 Feb 2001 10:33:13 -0800 (PST) (envelope-from nobody@FreeBSD.org) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1OIXDu56528; Sat, 24 Feb 2001 10:33:13 -0800 (PST) (envelope-from nobody) Message-Id: <200102241833.f1OIXDu56528@freefall.freebsd.org> Date: Sat, 24 Feb 2001 10:33:13 -0800 (PST) From: mvh@ix.netcom.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/25344: ipfilter and ppp insecure in 4.2-Stable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25344 >Category: kern >Synopsis: ipfilter and ppp insecure in 4.2-Stable >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 24 10:40:03 PST 2001 >Closed-Date: >Last-Modified: >Originator: Mike Harding >Release: 4.2-Stable >Organization: Namesafe >Environment: FreeBSD netcom1.netcom.com 4.2-STABLE FreeBSD 4.2-STABLE #1: Sat Feb 24 08:49:08 PST 2001 mvh@netcom1.netcom.com:/usr/obj/usr/src/sys/MIKEIPF i386 >Description: Current /etc/rc.network file sets up ipfilter rules very early. This is good for static interfaces, but 'tun0' (ppp interface) does not exist yet. The rules apparently do not apply until you do a 'ipf -y'. This means that PPP users with the current script may be running completely open without a firewall if they are using the January 14 or later /etc/rc.network in current, or the current version that it was merged from. >How-To-Repeat: Use ipfilter on a system with a ppp interface. Reboot. Do some network stuff, notice that 'ipfstat -ioh' reports no rules matched. Do a 'ipf -y' and do some more network stuff. Note that the packets are now being matched. >Fix: Do a 'ipf -y' at the end of /etc/rc.network, after all of the interfaces are added, if ipfilter is enabled. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 24 15: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 A864F37B503 for ; Sat, 24 Feb 2001 15:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1ONe1o14032; Sat, 24 Feb 2001 15:40:01 -0800 (PST) (envelope-from gnats) Received: from mail.toppoint.de (bender.toppoint.de [195.244.243.2]) by hub.freebsd.org (Postfix) with ESMTP id 0858337B503 for ; Sat, 24 Feb 2001 15:31:27 -0800 (PST) (envelope-from hscholz@mail.toppoint.de) Received: (from uucp@localhost) by mail.toppoint.de (8.9.3/8.9.3) id AAA27773 for FreeBSD-gnats-submit@freebsd.org; Sun, 25 Feb 2001 00:31:23 +0100 (MET) Message-Id: <200102242322.f1ONMJd01816@perikles.lan.raisdorf.net> Date: Sun, 25 Feb 2001 00:22:19 +0100 (CET) From: Hendrik Scholz Reply-To: hscholz@perikles.toppoint.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/25347: ipfilter does not build Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25347 >Category: bin >Synopsis: ipfilter does not build >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 24 15:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Hendrik Scholz >Release: FreeBSD 4.2-STABLE i386 >Organization: private >Environment: I'm running 4.2-STABLE with a brand new kernel and a "world" that is about 4 weeks old. >Description: I had ipfilter 3.4.8 running and compiled a new kernel without make world. Now ipfilter does not recognize the "count in" pakets and I tried to do make freebsd4 in /usr/src/contrib/ipfilter. It stops, because there is no directory netinet. Creating that directory fixes the problem >How-To-Repeat: Use cvsup to get the latest source and compile a kernel. Do not compile the new src/contrib/ipfilter files. My ipfilter itself was very old (3.4.8). The one in the kernel seems to be newer. >Fix: Simply create the /usr/src/contrib/ipfilter/netinet directory >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 25 0: 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 BD52137B491 for ; Sun, 25 Feb 2001 00:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1P803j96308; Sun, 25 Feb 2001 00:00:03 -0800 (PST) (envelope-from gnats) Date: Sun, 25 Feb 2001 00:00:03 -0800 (PST) Message-Id: <200102250800.f1P803j96308@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: bin/25347: ipfilter does not build Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25347; it has been noted by GNATS. From: Johan Karlsson To: hscholz@perikles.toppoint.de Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/25347: ipfilter does not build Date: Sun, 25 Feb 2001 08:50:36 +0100 > I had ipfilter 3.4.8 running and compiled a new kernel > without make world. This is not supported, do not do that. > Now ipfilter does not recognize the "count in" pakets > and I tried to do make freebsd4 in /usr/src/contrib/ipfilter. You should not build in contrib, go to sbin/ip* and build the programs there. However, use buildworld/installworld in /usr/src and always keep your kernel and userland in sync. /Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message