From owner-freebsd-bugs Sun Oct 15 3: 0: 5 2000 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 F3F9837B673 for ; Sun, 15 Oct 2000 03:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA62211; Sun, 15 Oct 2000 03:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 650AD37B503; Sun, 15 Oct 2000 02:54:37 -0700 (PDT) Message-Id: <20001015095437.650AD37B503@hub.freebsd.org> Date: Sun, 15 Oct 2000 02:54:37 -0700 (PDT) From: tanbin@yourtender.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/21997: after pkg_add 40upgrade-2000.08.25 telnetd, ftpd and wget all fail with coredump Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21997 >Category: misc >Synopsis: after pkg_add 40upgrade-2000.08.25 telnetd, ftpd and wget all fail with coredump >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 15 03:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: tan bin >Release: 4.0-RELEASE #0 >Organization: empworld.com >Environment: FreeBSD wwwftp.empworld.com 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Mon Mar 20 22:50:22 GMT 2000 root@monster.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: in order to install a webalizer upgrade, i first downloaded 40upgrade.tgz and run pkg_add 40upgrade.tgz *a few times*. After that, wget will fail with a core dump, and i can no longer ftp or telnet from other machines to this host. i have killall -HUP inetd a few times. from /var/log/messages: ---snip-- Oct 15 16:24:09 wwwftp /kernel: pid 68960 (wget), uid 0: exited on signal 12 (core dumped) Oct 15 16:54:12 wwwftp /kernel: pid 69192 (fetch), uid 0: exited on signal 12 (core dumped) Oct 15 17:07:24 wwwftp /kernel: pid 69239 (telnetd), uid 0: exited on signal 12 (core dumped) >How-To-Repeat: >Fix: reboot?? >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 Oct 15 3:20:12 2000 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 D29D637B503 for ; Sun, 15 Oct 2000 03:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA69705; Sun, 15 Oct 2000 03:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from segfault.kiev.ua (segfault.kiev.ua [193.193.193.4]) by hub.freebsd.org (Postfix) with ESMTP id 6F33537B503 for ; Sun, 15 Oct 2000 03:17:08 -0700 (PDT) Received: from nn.kiev.ua (nn.kiev.ua [193.193.193.203]) by segfault.kiev.ua (8) with ESMTP id NGO82119 for ; Sun, 15 Oct 2000 13:17:00 +0300 (EEST) (envelope-from netch@nn.kiev.ua) Received: (from netch@localhost) by nn.kiev.ua id e9FAGun01111; Sun, 15 Oct 2000 13:16:56 +0300 (EEST) (envelope-from netch) Message-Id: <200010151016.e9FAGun01111@nn.kiev.ua> Date: Sun, 15 Oct 2000 13:16:56 +0300 (EEST) From: netch@segfault.kiev.ua (Valentin Nechayev) Reply-To: netch@segfault.kiev.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/21998: ident only for outgoing connections Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21998 >Category: misc >Synopsis: ident only for outgoing connections >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 15 03:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: netch@netch.kiev.ua (Valentin Nechayev) >Release: FreeBSD 5.0(13)-CURRENT-20001014 i386 >Organization: private >Environment: >Description: The bugfeature of identd is known (since 1996): anyone can connect to production service on host running identd and query owner of remote side socket. This can be used by bad guy to find objects to attack; i.e. nmap scanner uses it. >How-To-Repeat: >Fix: diff -rNu src.orig/sys/kern/uipc_socket2.c src/sys/kern/uipc_socket2.c --- src.orig/sys/kern/uipc_socket2.c Fri Sep 8 22:21:49 2000 +++ src/sys/kern/uipc_socket2.c Sun Oct 15 12:50:55 2000 @@ -235,7 +235,7 @@ so->so_type = head->so_type; so->so_options = head->so_options &~ SO_ACCEPTCONN; so->so_linger = head->so_linger; - so->so_state = head->so_state | SS_NOFDREF; + so->so_state = head->so_state | SS_NOFDREF | SS_ISACCEPTED; so->so_proto = head->so_proto; so->so_timeo = head->so_timeo; so->so_cred = p ? p->p_ucred : head->so_cred; diff -rNu src.orig/sys/netinet/tcp_subr.c src/sys/netinet/tcp_subr.c --- src.orig/sys/netinet/tcp_subr.c Sat Sep 30 21:44:07 2000 +++ src/sys/netinet/tcp_subr.c Sun Oct 15 12:49:48 2000 @@ -872,7 +872,9 @@ tcp_pcblist, "S,xtcpcb", "List of active TCP connections"); static int -tcp_getcred(SYSCTL_HANDLER_ARGS) +tcp_getcred_common(req, all) + struct sysctl_req *req; + int all; { struct sockaddr_in addrs[2]; struct inpcb *inp; @@ -891,18 +893,41 @@ error = ENOENT; goto out; } + if (!all && (inp->inp_socket->so_state & SS_ISACCEPTED)) { + error = EPERM; + goto out; + } error = SYSCTL_OUT(req, inp->inp_socket->so_cred, sizeof(struct ucred)); out: splx(s); return (error); } +static int +tcp_getcred_outgoing(SYSCTL_HANDLER_ARGS) +{ + return tcp_getcred_common(req, 0); +} + +SYSCTL_PROC(_net_inet_tcp, OID_AUTO, getcred_outgoing, + CTLTYPE_OPAQUE|CTLFLAG_RW, + 0, 0, tcp_getcred_outgoing, "S,ucred", + "Get the ucred of a TCP connection (outgoing connections only)"); + +static int +tcp_getcred_any(SYSCTL_HANDLER_ARGS) +{ + return tcp_getcred_common(req, 1); +} + SYSCTL_PROC(_net_inet_tcp, OID_AUTO, getcred, CTLTYPE_OPAQUE|CTLFLAG_RW, - 0, 0, tcp_getcred, "S,ucred", "Get the ucred of a TCP connection"); + 0, 0, tcp_getcred_any, "S,ucred", "Get the ucred of a TCP connection"); #ifdef INET6 static int -tcp6_getcred(SYSCTL_HANDLER_ARGS) +tcp6_getcred_common(req, all) + struct sysctl_req *req; + int all; { struct sockaddr_in6 addrs[2]; struct inpcb *inp; @@ -937,6 +962,10 @@ error = ENOENT; goto out; } + if (!all && (inp->inp_socket->so_state & SS_ISACCEPTED)) { + error = EPERM; + goto out; + } error = SYSCTL_OUT(req, inp->inp_socket->so_cred, sizeof(struct ucred)); out: @@ -944,9 +973,27 @@ return (error); } +static int +tcp6_getcred_outgoing(SYSCTL_HANDLER_ARGS) +{ + return tcp6_getcred_common(req, 0); +} + +SYSCTL_PROC(_net_inet6_tcp6, OID_AUTO, getcred_outgoing, + CTLTYPE_OPAQUE|CTLFLAG_RW, + 0, 0, + tcp6_getcred_outgoing, "S,ucred", + "Get the ucred of a TCP6 connection (outgoing only)"); + +static int +tcp6_getcred_any(SYSCTL_HANDLER_ARGS) +{ + return tcp6_getcred_common(req, 1); +} + SYSCTL_PROC(_net_inet6_tcp6, OID_AUTO, getcred, CTLTYPE_OPAQUE|CTLFLAG_RW, 0, 0, - tcp6_getcred, "S,ucred", "Get the ucred of a TCP6 connection"); + tcp6_getcred_any, "S,ucred", "Get the ucred of a TCP6 connection"); #endif diff -rNu src.orig/sys/sys/socketvar.h src/sys/sys/socketvar.h --- src.orig/sys/sys/socketvar.h Fri Sep 8 22:22:38 2000 +++ src/sys/sys/socketvar.h Sun Oct 15 12:49:17 2000 @@ -131,6 +131,7 @@ #define SS_CANTSENDMORE 0x0010 /* can't send more data to peer */ #define SS_CANTRCVMORE 0x0020 /* can't receive more data from peer */ #define SS_RCVATMARK 0x0040 /* at mark on input */ +#define SS_ISACCEPTED 0x0080 /* obtained from accept() */ #define SS_NBIO 0x0100 /* non-blocking ops */ #define SS_ASYNC 0x0200 /* async i/o notify */ diff -rNu src.orig/usr.sbin/inetd/builtins.c src/usr.sbin/inetd/builtins.c --- src.orig/usr.sbin/inetd/builtins.c Sun Oct 15 00:44:36 2000 +++ src/usr.sbin/inetd/builtins.c Sun Oct 15 12:59:11 2000 @@ -352,6 +352,7 @@ ssize_t ssize; size_t size, bufsiz; int c, fflag = 0, nflag = 0, rflag = 0, argc = 0, usedfallback = 0; + int getcred_all = 0; int gflag = 0, getcredfail = 0, onreadlen; u_short lport, fport; @@ -374,8 +375,11 @@ size_t i; u_int32_t random; - while ((c = getopt(argc, sep->se_argv, "d:fgno:rt:")) != -1) + while ((c = getopt(argc, sep->se_argv, "ad:fgno:rt:")) != -1) switch (c) { + case 'a': + getcred_all = 1; + break; case 'd': fallback = optarg; break; @@ -526,7 +530,9 @@ sin[0].sin_port = htons(lport); sin[1] = *(struct sockaddr_in *)&ss[1]; sin[1].sin_port = htons(fport); - if (sysctlbyname("net.inet.tcp.getcred", &uc, &size, sin, + if (sysctlbyname(getcred_all ? "net.inet.tcp.getcred" : + "net.inet.tcp.getcred_outgoing", + &uc, &size, sin, sizeof(sin)) == -1) getcredfail = 1; break; @@ -536,7 +542,9 @@ sin6[0].sin6_port = htons(lport); sin6[1] = *(struct sockaddr_in6 *)&ss[1]; sin6[1].sin6_port = htons(fport); - if (sysctlbyname("net.inet6.tcp6.getcred", &uc, &size, sin6, + if (sysctlbyname(getcred_all ? "net.inet6.tcp6.getcred" : + "net.inet6.tcp6.getcred_outgoing", + &uc, &size, sin6, sizeof(sin6)) == -1) getcredfail = 1; break; diff -rNu src.orig/usr.sbin/inetd/inetd.8 src/usr.sbin/inetd/inetd.8 --- src.orig/usr.sbin/inetd/inetd.8 Sun Aug 13 00:46:18 2000 +++ src/usr.sbin/inetd/inetd.8 Sun Oct 15 13:09:15 2000 @@ -438,6 +438,9 @@ .Dq ERROR\ : HIDDEN-USER . The available arguments to this service that alter its behavior are: .Bl -tag -width indent +.It Fl a +Provide owner information for any connection, not only outgoing. By default, +ident does not provide information for incoming connections. .It Fl d Ar fallback Provide a .Ar fallback >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 Oct 15 5:10: 4 2000 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 B848C37B66C for ; Sun, 15 Oct 2000 05:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA08614; Sun, 15 Oct 2000 05:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 15 Oct 2000 05:10:02 -0700 (PDT) Message-Id: <200010151210.FAA08614@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: kern/21929: lpd cause system crash Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21929; it has been noted by GNATS. From: Johan Karlsson To: Wei-Kai Wu Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/21929: lpd cause system crash Date: Sun, 15 Oct 2000 14:01:51 +0200 At Sun, 15 Oct 2000 09:39:47 +0800, Wei-Kai Wu wrote: > c01dd6f0 T inthand_add > c01dda1c T inthand_remove Hello again. The address of the panic is from the inthand_add function which is located in src/sys/i386/isa/intr_machdep.c. Which version of src/sys/i386/isa/intr_machdep.c are you using? And if possible can you please compile a debug kernel and trie to get a crash dump and analyze it as described in the FAQ. I think that will help us track this panic alot easier. Thanks Johan K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 5:21:29 2000 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 6764E37B66F; Sun, 15 Oct 2000 05:21:27 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA11970; Sun, 15 Oct 2000 05:21:27 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sun, 15 Oct 2000 05:21:27 -0700 (PDT) From: Message-Id: <200010151221.FAA11970@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, murray@FreeBSD.org Subject: Re: conf/21856: The FTP installer sends useless "CWD ." - creates problems with some ftp servers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The FTP installer sends useless "CWD ." - creates problems with some ftp servers Responsible-Changed-From-To: freebsd-bugs->murray Responsible-Changed-By: johan Responsible-Changed-When: Sun Oct 15 05:20:50 PDT 2000 Responsible-Changed-Why: Over to sysinstall maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21856 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 5:56: 5 2000 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 A25B937B503; Sun, 15 Oct 2000 05:56:03 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA22542; Sun, 15 Oct 2000 05:56:03 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sun, 15 Oct 2000 05:56:03 -0700 (PDT) From: Message-Id: <200010151256.FAA22542@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, gibbs@FreeBSD.org Subject: Re: kern/21831: kernel trap 12 crash in 4.1.1-STABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: kernel trap 12 crash in 4.1.1-STABLE Responsible-Changed-From-To: freebsd-bugs->gibbs Responsible-Changed-By: johan Responsible-Changed-When: Sun Oct 15 05:55:21 PDT 2000 Responsible-Changed-Why: In the latest follow-up this seems to be ahc related. http://www.freebsd.org/cgi/query-pr.cgi?pr=21831 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 7: 0: 6 2000 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 C8C5137B66E for ; Sun, 15 Oct 2000 07:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA44182; Sun, 15 Oct 2000 07:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3A1A737B66C; Sun, 15 Oct 2000 06:53:54 -0700 (PDT) Message-Id: <20001015135354.3A1A737B66C@hub.freebsd.org> Date: Sun, 15 Oct 2000 06:53:54 -0700 (PDT) From: jay.krell@cornell.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/22000: ports/lang/modula-3 and ports/lang/modula-3-lib need PLIST->pkg-plist in Makefile Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22000 >Category: misc >Synopsis: ports/lang/modula-3 and ports/lang/modula-3-lib need PLIST->pkg-plist in Makefile >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 Oct 15 07:00:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jay Krell >Release: 4.1 >Organization: >Environment: FreeBSD jayk2.jaykhome 4.1-RELEASE FreeBSD 4.1-RELEASE #0: Sun Oct 15 02:27:26 G MT 2000 jayk@jayk2.jaykhome:/usr/src/sys/compile/JAYK1 i386 >Description: ports/lang/modula-3 and ports/lang/modula-3-lib need PLIST->pkg-plist in Makefile >How-To-Repeat: ..mumble something about WITH_X11 or WITHOUT_X11.. cd /usr/ports/lang/modula-3-lib make cd /usr/ports/lang/modula-3 make >Fix: Z:\>diff -u \\jayk2\usr\ports\lang\modula-3\Makefile.1 \\jayk2\usr\ports\lang\modula-3\Makefile --- \\jayk2\usr\ports\lang\modula-3\Makefile.1 Sat Oct 14 23:31:31 2000 +++ \\jayk2\usr\ports\lang\modula-3\Makefile Sat Oct 14 23:31:45 2000 @@ -39,7 +39,7 @@ pre-fetch: @${ECHO_MSG} "To build this port without X11, define \"WITHOUT_X11\"." -PLIST= ${WRKDIR}/PLIST +PLIST= ${WRKDIR}/pkg-plist MAN1+= formsedit.1 replayheap.1 showheap.1 shownew.1 showthread.1 .endif Z:\>diff -u \\jayk2\usr\ports\lang\modula-3-lib\Makefile.1 \\jayk2\usr\ports\lang\modula-3-lib\Makefile --- \\jayk2\usr\ports\lang\modula-3-lib\Makefile.1 Sat Oct 14 23:33:08 2000 +++ \\jayk2\usr\ports\lang\modula-3-lib\Makefile Sat Oct 14 23:34:54 2000 @@ -81,7 +81,7 @@ @${ECHO_MSG} "To build this port without X11, define \"WITHOUT_X11\"." USE_XLIB= yes -PLIST= ${WRKDIR}/PLIST +PLIST= ${WRKDIR}/pkg-plist .endif post-extract: >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 Oct 15 7: 5:32 2000 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 E4A9137B66C; Sun, 15 Oct 2000 07:05:29 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA47023; Sun, 15 Oct 2000 07:05:29 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sun, 15 Oct 2000 07:05:29 -0700 (PDT) From: Message-Id: <200010151405.HAA47023@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/22000: ports/lang/modula-3 and ports/lang/modula-3-lib need PLIST->pkg-plist in Makefile Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/lang/modula-3 and ports/lang/modula-3-lib need PLIST->pkg-plist in Makefile Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: johan Responsible-Changed-When: Sun Oct 15 07:04:47 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=22000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 8:40: 5 2000 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 0DE7237B66F for ; Sun, 15 Oct 2000 08:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA81986; Sun, 15 Oct 2000 08:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ccstock.csie.nctu.edu.tw (ccstock.csie.nctu.edu.tw [140.113.209.9]) by hub.freebsd.org (Postfix) with ESMTP id C108237B66E for ; Sun, 15 Oct 2000 08:35:49 -0700 (PDT) Received: (from wkwu@localhost) by ccstock.csie.nctu.edu.tw (8.11.1/8.9.3) id e9FFXIt01001; Sun, 15 Oct 2000 23:33:18 +0800 (CST) (envelope-from wkwu) Message-Id: <200010151533.e9FFXIt01001@ccstock.csie.nctu.edu.tw> Date: Sun, 15 Oct 2000 23:33:18 +0800 (CST) From: wkwu@csie.nctu.edu.tw Reply-To: wkwu@csie.nctu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/22006: quotacheck halt Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22006 >Category: i386 >Synopsis: quotacheck halt >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 15 08:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Wei-Kai Wu >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Kavalan >Environment: FreeBSD 4.1.1-STABLE #0: Sun Oct 15 21:42:05 CST 2000 CPU: Pentium III/Pentium III Xeon/Celeron (551.25-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x681 Stepping = 1 real memory = 134201344 (131056K bytes) avail memory = 127422464 (124436K bytes) Preloaded elf kernel "kernel" at 0xc02d7000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc02d70a8. fxp0: ahc0: aic7892: Wide Channel A, SCSI Id=7, 32/255 SCBs IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to accept, unlimited logging ad0: 19574MB [39770/16/63] at ata0-master using UDMA33 Waiting 5 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: 105712MB (216498176 512 byte sectors: 255H 63S/T 13476C) 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: 105712MB (216498176 512 byte sectors: 255H 63S/T 13476C) >Description: /etc/fstab: /dev/da0s1e /raid1 ufs rw,async,userquota,nosuid 2 2 /dev/da0s1f /raid2 ufs rw,async,userquota,nosuid 2 2 We enable quota on da0s1e da0s1f. when booting: quotacheck halt. so I ctrl+c, the quotacheck skips /raid2. after booting, I quotacheck /dev/da0s1f, it halt again. And I see that the quotacheck process's load is high. (CPU 99%) I 'truss quotacheck /dev/da0s1f' : [deleted]... read(0x6,0x80ad000,0xe000) = 57344 (0xe000) lseek(6,0xce60e8000,0) = -435257344 (0xe60e8000) read(0x6,0x80ad000,0xe000) = 57344 (0xe000) lseek(6,0xce60f6000,0) = -435200000 (0xe60f6000) read(0x6,0x80ad000,0xa000) = 40960 (0xa000) open("/raid2/quota.user",2,0666) = 7 (0x7) open("/raid2/quota.user",0,0666) = 8 (0x8) quotactl(0x807058c,0x60000,0x0,0x0) = 0 (0x0) fstat(8,0xbfbff4d0) = 0 (0x0) read(0x8,0x8096000,0x2000) = 8192 (0x2000) fstat(7,0xbfbff480) = 0 (0x0) lseek(7,0x0,0) = 0 (0x0) quotactl(0x807058c,0x50000,0x0,0xbfbff620) ERR#22 'Invalid argument' read(0x8,0x8096000,0x2000) = 8192 (0x2000) read(0x8,0x8096000,0x2000) = 5568 (0x15c0) read(0x8,0x8096000,0x2000) = 0 (0x0) write(7,0x8098000,32) = 32 (0x20) lseek(7,0x6c860,0) = 444512 (0x6c860) quotactl(0x807058c,0x50000,0x3643,0xbfbff620) ERR#22 'Invalid argument' SIGNAL 19 SIGNAL 2 SIGNAL 2 process exit, rval = 2 >How-To-Repeat: >Fix: no idea. >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 Oct 15 9:50: 5 2000 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 4FBAC37B66E for ; Sun, 15 Oct 2000 09:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA05945; Sun, 15 Oct 2000 09:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A388A37B502 for ; Sun, 15 Oct 2000 09:41:04 -0700 (PDT) Received: from ccstock.csie.nctu.edu.tw (ccstock.csie.nctu.edu.tw [140.113.209.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0E856E29D3 for ; Sun, 15 Oct 2000 09:40:11 -0700 (PDT) Received: (from wkwu@localhost) by ccstock.csie.nctu.edu.tw (8.11.1/8.9.3) id e9FFXIt01001; Sun, 15 Oct 2000 23:33:18 +0800 (CST) (envelope-from wkwu) Message-Id: <200010151533.e9FFXIt01001@ccstock.csie.nctu.edu.tw> Date: Sun, 15 Oct 2000 23:33:18 +0800 (CST) From: wkwu@csie.nctu.edu.tw Reply-To: wkwu@csie.nctu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/22007: quotacheck halt Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22007 >Category: i386 >Synopsis: quotacheck halt >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 15 09:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Wei-Kai Wu >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Kavalan >Environment: FreeBSD 4.1.1-STABLE #0: Sun Oct 15 21:42:05 CST 2000 CPU: Pentium III/Pentium III Xeon/Celeron (551.25-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x681 Stepping = 1 real memory = 134201344 (131056K bytes) avail memory = 127422464 (124436K bytes) Preloaded elf kernel "kernel" at 0xc02d7000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc02d70a8. fxp0: ahc0: aic7892: Wide Channel A, SCSI Id=7, 32/255 SCBs IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to accept, unlimited logging ad0: 19574MB [39770/16/63] at ata0-master using UDMA33 Waiting 5 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: 105712MB (216498176 512 byte sectors: 255H 63S/T 13476C) 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: 105712MB (216498176 512 byte sectors: 255H 63S/T 13476C) >Description: /etc/fstab: /dev/da0s1e /raid1 ufs rw,async,userquota,nosuid 2 2 /dev/da0s1f /raid2 ufs rw,async,userquota,nosuid 2 2 We enable quota on da0s1e da0s1f. when booting: quotacheck halt. so I ctrl+c, the quotacheck skips /raid2. after booting, I quotacheck /dev/da0s1f, it halt again. And I see that the quotacheck process's load is high. (CPU 99%) I 'truss quotacheck /dev/da0s1f' : [deleted]... read(0x6,0x80ad000,0xe000) = 57344 (0xe000) lseek(6,0xce60e8000,0) = -435257344 (0xe60e8000) read(0x6,0x80ad000,0xe000) = 57344 (0xe000) lseek(6,0xce60f6000,0) = -435200000 (0xe60f6000) read(0x6,0x80ad000,0xa000) = 40960 (0xa000) open("/raid2/quota.user",2,0666) = 7 (0x7) open("/raid2/quota.user",0,0666) = 8 (0x8) quotactl(0x807058c,0x60000,0x0,0x0) = 0 (0x0) fstat(8,0xbfbff4d0) = 0 (0x0) read(0x8,0x8096000,0x2000) = 8192 (0x2000) fstat(7,0xbfbff480) = 0 (0x0) lseek(7,0x0,0) = 0 (0x0) quotactl(0x807058c,0x50000,0x0,0xbfbff620) ERR#22 'Invalid argument' read(0x8,0x8096000,0x2000) = 8192 (0x2000) read(0x8,0x8096000,0x2000) = 5568 (0x15c0) read(0x8,0x8096000,0x2000) = 0 (0x0) write(7,0x8098000,32) = 32 (0x20) lseek(7,0x6c860,0) = 444512 (0x6c860) quotactl(0x807058c,0x50000,0x3643,0xbfbff620) ERR#22 'Invalid argument' SIGNAL 19 SIGNAL 2 SIGNAL 2 process exit, rval = 2 >How-To-Repeat: >Fix: no idea. >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 Oct 15 10:10: 6 2000 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 8079637B670 for ; Sun, 15 Oct 2000 10:10:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA13785; Sun, 15 Oct 2000 10:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 24D9537B66E; Sun, 15 Oct 2000 10:07:42 -0700 (PDT) Message-Id: <20001015170742.24D9537B66E@hub.freebsd.org> Date: Sun, 15 Oct 2000 10:07:42 -0700 (PDT) From: guenther.schmidt@bigfoot.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/22008: kernel compilation with latest sources fails - Don't know how to make agp_if.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22008 >Category: kern >Synopsis: kernel compilation with latest sources fails - Don't know how to make agp_if.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: Sun Oct 15 10:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Guenther Schmidt >Release: 4.1 >Organization: >Environment: FreeBSD dougie.private.domain 4.0-RELEASE FreeBSD 4.0-RELEASE #3: Thu Jun 29 04:40:35 CEST 2000 guenni@dougie.private.domain:/usr/src/sys/compile/MYKERNEL i386 >Description: Kernel compilation with latest system sources fails. rm -f .newdep mkdep -a -f .newdep -O -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 device_if.c bus_if.c ../../cam/cam.c ../../cam/cam_xpt.c ../../cam/cam_extend.c ../../cam/cam_queue.c ../../cam/cam_periph.c ../../cam/cam_sim.c ../../cam/scsi/scsi_all.c ../../cam/scsi/scsi_da.c ../../cam/scsi/scsi_sa.c ../../cam/scsi/scsi_cd.c ../../cam/scsi/scsi_pass.c ../../dev/advansys/adv_eisa.c ../../dev/advansys/adv_pci.c ../../dev/advansys/advansys.c ../../dev/advansys/advlib.c ../../dev/advansys/advmcode.c ../../dev/advansys/adw_pci.c ../../dev/advansys/adwcam.c ../../dev/advansys/adwlib.c ../../dev/advansys/adwmcode.c ../../dev/an/if_an.c ../../dev/an/if_an_isa.c ../../dev/an/if_an_pci.c ../../dev/an/if_an_pccard.c ../../dev/asr/asr.c ../../dev/amr/amr_disk.c ../../dev/amr/amr_pci.c ../../dev/amr/amr.c ../../dev/aha/aha.c ../../dev/aha/aha_isa.c ../../dev/ahb/ahb.c ../../dev/aic/aic.c ../../dev/aic/aic_pccard.c ../../dev/aic7xxx/aic7770.c ../../dev/aic7xxx/ahc_eisa.c ../../dev/aic7xxx/ahc_pci.c ../../dev/aic7xxx/aic7xxx.c ../../dev/aic7xxx/aic7xxx_93cx6.c ../../dev/aic7xxx/aic7xxx_freebsd.c ../../dev/aic7xxx/aic7xxx_pci.c ../../dev/buslogic/bt.c ../../dev/buslogic/bt_isa.c ../../dev/buslogic/bt_eisa.c ../../dev/buslogic/bt_pci.c ../../dev/dpt/dpt_scsi.c ../../dev/dpt/dpt_eisa.c ../../dev/dpt/dpt_pci.c ../../dev/ed/if_ed_pci.c ../../dev/ep/if_ep.c ../../dev/ep/if_ep_isa.c ../../dev/ep/if_ep_eisa.c ../../dev/ep/if_ep_pccard.c ../../dev/ex/if_ex.c ../../dev/fe/if_fe.c ../../dev/fe/if_fe_pccard.c ../../dev/ie/if_ie.c ../../dev/ida/ida.c ../../dev/ida/ida_disk.c ../../dev/ida/ida_eisa.c ../../dev/ida/ida_pci.c ../../dev/isp/isp_freebsd.c ../../dev/isp/isp.c ../../dev/isp/isp_target.c ../../dev/md/md.c ../../dev/mii/mii.c ../../dev/mii/mii_physubr.c ../../dev/mii/ukphy.c ../../dev/mii/ukphy_subr.c ../../dev/mii/amphy.c ../../dev/mii/brgphy.c ../../dev/mii/dcphy.c ../../dev/mii/exphy.c ../../dev/mii/mlphy.c ../../dev/mii/nsphy.c ../../dev/mii/pnphy.c ../../dev/mii/pnaphy.c ../../dev/mii/tlphy.c ../../dev/mii/rlphy.c ../../dev/mii/xmphy.c miibus_if.c ../../dev/mlx/mlx_disk.c ../../dev/mlx/mlx_pci.c ../../dev/mlx/mlx.c power_if.c card_if.c ppbus_if.c ../../dev/ppbus/if_plip.c ../../dev/ppbus/lpt.c ../../dev/ppbus/ppb_base.c ../../dev/ppbus/ppb_1284.c ../../dev/ppbus/ppb_msq.c ../../dev/ppbus/ppbconf.c ../../dev/ppbus/ppi.c ../../dev/sn/if_sn.c ../../dev/sn/if_sn_isa.c ../../dev/sn/if_sn_pccard.c ../../dev/twe/twe.c ../../dev/twe/twe_disk.c ../../dev/vx/if_vx.c ../../dev/vx/if_vx_eisa.c ../../dev/vx/if_vx_pci.c ../../dev/xe/if_xe.c ../../gnu/ext2fs/ext2_alloc.c ../../gnu/ext2fs/ext2_balloc.c ../../gnu/ext2fs/ext2_inode.c ../../gnu/ext2fs/ext2_inode_cnv.c ../../gnu/ext2fs/ext2_linux_balloc.c ../../gnu/ext2fs/ext2_linux_ialloc.c ../../gnu/ext2fs/ext2_lookup.c ../../gnu/ext2fs/ext2_subr.c ../../gnu/ext2fs/ext2_vfsops.c ../../gnu/ext2fs/ext2_vnops.c ../../i4b/driver/i4b_trace.c ../../i4b/driver/i4b_rbch.c ../../i4b/driver/i4b_tel.c ../../i4b/driver/i4b_ipr.c ../../i4b/driver/i4b_ctl.c ../../i4b/driver/i4b_isppp.c ../../net/slcompress.c ../../i4b/layer2/i4b_mbuf.c ../../i4b/layer2/i4b_l2.c ../../i4b/layer2/i4b_l2fsm.c ../../i4b/layer2/i4b_uframe.c ../../i4b/layer2/i4b_tei.c ../../i4b/layer2/i4b_sframe.c ../../i4b/layer2/i4b_iframe.c ../../i4b/layer2/i4b_l2timer.c ../../i4b/layer2/i4b_util.c ../../i4b/layer2/i4b_lme.c ../../i4b/layer3/i4b_q931.c ../../i4b/layer3/i4b_l3fsm.c ../../i4b/layer3/i4b_l3timer.c ../../i4b/layer3/i4b_l2if.c ../../i4b/layer3/i4b_l4if.c ../../i4b/layer3/i4b_q932fac.c ../../i4b/layer4/i4b_i4bdrv.c ../../i4b/layer4/i4b_l4.c ../../i4b/layer4/i4b_l4mgmt.c ../../i4b/layer4/i4b_l4timer.c ../../isofs/cd9660/cd9660_bmap.c ../../isofs/cd9660/cd9660_lookup.c ../../isofs/cd9660/cd9660_node.c ../../isofs/cd9660/cd9660_rrip.c ../../isofs/cd9660/cd9660_util.c ../../isofs/cd9660/cd9660_vfsops.c ../../isofs/cd9660/cd9660_vnops.c ../../kern/imgact_aout.c ../../kern/imgact_elf.c ../../kern/imgact_shell.c ../../kern/init_main.c ../../kern/init_sysent.c ../../kern/kern_intr.c ../../kern/kern_module.c ../../kern/kern_linker.c ../../kern/link_aout.c ../../kern/link_elf.c ../../kern/kern_acct.c ../../kern/kern_acl.c ../../kern/kern_clock.c ../../kern/kern_conf.c ../../kern/kern_descrip.c ../../kern/kern_environment.c ../../kern/kern_event.c ../../kern/kern_exec.c ../../kern/kern_exit.c ../../kern/kern_fork.c ../../kern/kern_jail.c ../../kern/kern_kthread.c ../../kern/kern_ktrace.c ../../kern/kern_lock.c ../../kern/kern_lockf.c ../../kern/kern_malloc.c ../../kern/kern_mib.c ../../kern/kern_ntptime.c ../../kern/kern_physio.c ../../kern/kern_proc.c ../../kern/kern_prot.c ../../kern/kern_random.c ../../kern/kern_resource.c ../../kern/kern_shutdown.c ../../kern/kern_sig.c ../../kern/kern_subr.c ../../kern/kern_switch.c ../../kern/kern_synch.c ../../kern/kern_syscalls.c ../../kern/kern_sysctl.c ../../kern/kern_time.c ../../kern/kern_timeout.c ../../kern/kern_xxx.c ../../kern/md5c.c ../../kern/subr_autoconf.c ../../kern/subr_bus.c ../../kern/subr_devstat.c ../../kern/subr_disk.c ../../kern/subr_diskslice.c ../../kern/subr_eventhandler.c ../../kern/subr_log.c ../../kern/subr_module.c ../../kern/subr_prf.c ../../kern/subr_prof.c ../../kern/subr_blist.c ../../kern/subr_scanf.c ../../kern/subr_taskqueue.c ../../kern/subr_xxx.c ../../kern/sys_generic.c ../../kern/sys_pipe.c ../../kern/sys_process.c ../../kern/subr_rman.c ../../kern/sys_socket.c ../../kern/sysv_ipc.c ../../kern/sysv_msg.c ../../kern/sysv_sem.c ../../kern/sysv_shm.c ../../kern/tty.c ../../kern/tty_compat.c ../../kern/tty_conf.c ../../kern/tty_cons.c ../../kern/tty_pty.c ../../kern/tty_subr.c ../../kern/tty_tty.c ../../kern/uipc_accf.c ../../kern/uipc_domain.c ../../kern/uipc_mbuf.c ../../kern/uipc_mbuf2.c ../../kern/uipc_proto.c ../../kern/uipc_socket.c ../../kern/uipc_socket2.c ../../kern/uipc_syscalls.c ../../kern/uipc_usrreq.c ../../kern/vfs_bio.c ../../kern/vfs_cache.c ../../kern/vfs_cluster.c ../../kern/vfs_conf.c ../../kern/vfs_default.c ../../kern/vfs_init.c ../../kern/vfs_lookup.c ../../kern/vfs_subr.c ../../kern/vfs_syscalls.c ../../kern/vfs_vnops.c ../../kern/kern_threads.c ../../kern/vfs_aio.c ../../miscfs/deadfs/dead_vnops.c ../../miscfs/fifofs/fifo_vnops.c ../../miscfs/procfs/procfs_ctl.c ../../miscfs/procfs/procfs_dbregs.c ../../miscfs/procfs/procfs_fpregs.c ../../miscfs/procfs/procfs_map.c ../../miscfs/procfs/procfs_mem.c ../../miscfs/procfs/procfs_note.c ../../miscfs/procfs/procfs_regs.c ../../miscfs/procfs/procfs_status.c ../../miscfs/procfs/procfs_subr.c ../../miscfs/procfs/procfs_type.c ../../miscfs/procfs/procfs_vfsops.c ../../miscfs/procfs/procfs_vnops.c ../../miscfs/procfs/procfs_rlimit.c ../../miscfs/specfs/spec_vnops.c ../../msdosfs/msdosfs_conv.c ../../msdosfs/msdosfs_denode.c ../../msdosfs/msdosfs_fat.c ../../msdosfs/msdosfs_lookup.c ../../msdosfs/msdosfs_vfsops.c ../../msdosfs/msdosfs_vnops.c ../../net/bpf.c ../../net/bpf_filter.c ../../net/if.c ../../net/if_ethersubr.c ../../net/if_faith.c ../../net/if_gif.c ../../net/if_loop.c ../../net/if_media.c ../../net/if_mib.c ../../net/if_ppp.c ../../net/if_sl.c ../../net/if_tun.c ../../net/net_osdep.c ../../net/ppp_tty.c ../../net/intrq.c ../../net/radix.c ../../net/raw_cb.c ../../net/raw_usrreq.c ../../net/route.c ../../net/rtsock.c ../../netgraph/ng_base.c ../../netgraph/ng_parse.c ../../netgraph/ng_pppoe.c ../../netgraph/ng_socket.c ../../netinet/if_ether.c ../../netinet/in_gif.c ../../netinet/igmp.c ../../netinet/in.c ../../netinet/in_pcb.c ../../netinet/in_proto.c ../../netinet/in_rmx.c ../../netinet/ip_ecn.c ../../netinet/ip_encap.c ../../netinet/ip_flow.c ../../netinet/ip_icmp.c ../../netinet/ip_input.c ../../netinet/ip_mroute.c ../../netinet/ip_output.c ../../netinet/raw_ip.c ../../netinet/tcp_input.c ../../netinet/tcp_output.c ../../netinet/tcp_subr.c ../../netinet/tcp_timer.c ../../netinet/tcp_usrreq.c ../../netinet/udp_usrreq.c ../../netinet6/dest6.c ../../netinet6/frag6.c ../../netinet6/icmp6.c ../../netinet6/in6.c ../../netinet6/in6_cksum.c ../../netinet6/in6_gif.c ../../netinet6/ip6_forward.c ../../netinet6/in6_ifattach.c ../../netinet6/ip6_input.c ../../netinet6/ip6_mroute.c ../../netinet6/ip6_output.c ../../netinet6/in6_src.c ../../netinet6/in6_pcb.c ../../netinet6/in6_prefix.c ../../netinet6/in6_proto.c ../../netinet6/in6_rmx.c ../../netinet6/mld6.c ../../netinet6/nd6.c ../../netinet6/nd6_nbr.c ../../netinet6/nd6_rtr.c ../../netinet6/raw_ip6.c ../../netinet6/route6.c ../../netinet6/scope6.c ../../netinet6/udp6_output.c ../../netinet6/udp6_usrreq.c ../../nfs/nfs_bio.c ../../nfs/nfs_node.c ../../nfs/nfs_nqlease.c ../../nfs/nfs_serv.c ../../nfs/nfs_socket.c ../../nfs/nfs_srvcache.c ../../nfs/nfs_subs.c ../../nfs/nfs_syscalls.c ../../nfs/nfs_vfsops.c ../../nfs/nfs_vnops.c ../../pccard/pccard.c ../../pccard/pccard_beep.c ../../pccard/pccard_nbk.c ../../pccard/pcic.c ../../pci/amd.c ../../pci/pcic_p.c ../../pci/if_dc.c ../../pci/if_de.c ../../pci/if_fxp.c ../../pci/if_lnc_p.c ../../pci/if_pcn.c ../../pci/if_rl.c ../../pci/if_sf.c ../../pci/if_sis.c ../../pci/if_ste.c ../../pci/if_tl.c ../../pci/if_tx.c ../../pci/if_vr.c ../../pci/if_wb.c ../../pci/if_wx.c ../../pci/if_xl.c ../../pci/isp_pci.c ../../pci/ncr.c ../../dev/sym/sym_hipd.c ../../pci/pci.c ../../pci/pci_compat.c ../../pci/pcisupport.c pci_if.c ../../posix4/posix4_mib.c ../../posix4/p1003_1b.c ../../posix4/ksched.c ../../ufs/ffs/ffs_alloc.c ../../ufs/ffs/ffs_balloc.c ../../ufs/ffs/ffs_inode.c ../../ufs/ffs/ffs_softdep_stub.c ../../ufs/ffs/ffs_softdep.c ../../ufs/ffs/ffs_subr.c ../../ufs/ffs/ffs_tables.c ../../ufs/ffs/ffs_vfsops.c ../../ufs/ffs/ffs_vnops.c ../../ufs/mfs/mfs_vfsops.c ../../ufs/mfs/mfs_vnops.c ../../ufs/ufs/ufs_bmap.c ../../ufs/ufs/ufs_disksubr.c ../../ufs/ufs/ufs_ihash.c ../../ufs/ufs/ufs_inode.c ../../ufs/ufs/ufs_lookup.c ../../ufs/ufs/ufs_quota.c ../../ufs/ufs/ufs_vfsops.c ../../ufs/ufs/ufs_vnops.c ../../vm/default_pager.c ../../vm/device_pager.c ../../vm/phys_pager.c ../../vm/swap_pager.c ../../vm/vm_fault.c ../../vm/vm_glue.c ../../vm/vm_init.c ../../vm/vm_kern.c ../../vm/vm_map.c ../../vm/vm_meter.c ../../vm/vm_mmap.c ../../vm/vm_object.c ../../vm/vm_page.c ../../vm/vm_pageout.c ../../vm/vm_pager.c ../../vm/vm_swap.c ../../vm/vm_unix.c ../../vm/vnode_pager.c ../../vm/vm_zone.c ../../pci/uhci_pci.c ../../pci/ohci_pci.c usb_if.c ../../dev/usb/uhci.c ../../dev/usb/ohci.c ../../dev/usb/usb.c ../../dev/usb/usbdi.c ../../dev/usb/usbdi_util.c ../../dev/usb/usb_ethersubr.c ../../dev/usb/usb_subr.c ../../dev/usb/usb_quirks.c ../../dev/usb/hid.c ../../dev/usb/ugen.c ../../dev/usb/uhid.c ../../dev/usb/ums.c ../../dev/usb/ulpt.c ../../dev/usb/ukbd.c ../../dev/usb/umass.c ../../dev/usb/uhub.c ../../dev/usb/if_aue.c ../../dev/usb/if_cue.c ../../dev/usb/if_kue.c isa_if.c ../../isa/isa_common.c ../../isa/isahint.c ../../isa/pnp.c ../../isa/pnpparse.c ../../dev/sound/isa/ad1816.c ../../dev/sound/isa/es1888.c ../../dev/sound/isa/ess.c ../../dev/sound/isa/gusc.c ../../dev/sound/isa/mss.c ../../dev/sound/isa/sb.c ../../dev/sound/isa/sbc.c ../../dev/sound/pci/csa.c ../../dev/sound/pci/csapcm.c ../../dev/sound/pci/ds1.c ../../dev/sound/pci/emu10k1.c ../../dev/sound/pci/es137x.c ../../dev/sound/pci/fm801.c ../../dev/sound/pci/maestro.c ../../dev/sound/pci/neomagic.c ../../dev/sound/pci/solo.c ../../dev/sound/pci/t4dwave.c ../../dev/sound/pci/via82c686.c ../../dev/sound/pcm/ac97.c ../../dev/sound/pcm/channel.c ../../dev/sound/pcm/dsp.c ../../dev/sound/pcm/fake.c ../../dev/sound/pcm/feeder.c ../../dev/sound/pcm/feeder_fmt.c ../../dev/sound/pcm/mixer.c ../../dev/sound/pcm/sound.c ../../libkern/arc4random.c ../../libkern/bcd.c ../../libkern/index.c ../../libkern/inet_ntoa.c ../../libkern/qsort.c ../../libkern/random.c ../../libkern/rindex.c ../../libkern/scanc.c ../../libkern/skpc.c ../../libkern/strcat.c ../../libkern/strcmp.c ../../libkern/strcpy.c ../../libkern/strlen.c ../../libkern/strncmp.c ../../libkern/strncpy.c ../../libkern/strtol.c ../../libkern/strtoq.c ../../libkern/strtoul.c ../../libkern/strtouq.c ../../dev/advansys/adv_isa.c ../../dev/aic/aic_isa.c ../../dev/ata/ata-all.c ../../dev/ata/ata-dma.c ../../dev/ata/ata-disk.c ../../dev/ata/atapi-all.c ../../dev/ata/atapi-cd.c ../../dev/ata/atapi-fd.c ../../dev/ata/atapi-tape.c ../../dev/ed/if_ed.c ../../dev/ed/if_ed_isa.c ../../dev/ed/if_ed_pccard.c ../../dev/eisa/eisaconf.c ../../dev/fb/fb.c ../../dev/fb/splash.c ../../dev/fb/vga.c ../../dev/fe/if_fe_isa.c ../../dev/kbd/atkbd.c ../../dev/kbd/atkbdc.c ../../dev/kbd/kbd.c ../../dev/syscons/schistory.c ../../dev/syscons/scmouse.c ../../dev/syscons/scterm.c ../../dev/syscons/scterm-dumb.c ../../dev/syscons/scterm-sc.c ../../dev/syscons/scvgarndr.c ../../dev/syscons/scvidctl.c ../../dev/syscons/scvtb.c ../../dev/syscons/syscons.c ../../dev/syscons/sysmouse.c ../../i386/apm/apm.c ../../i386/i386/atomic.c ../../i386/i386/autoconf.c ../../i386/i386/bios.c ../../i386/i386/busdma_machdep.c ../../i386/i386/elf_machdep.c ../../i386/i386/i686_mem.c ../../i386/i386/identcpu.c ../../i386/i386/in_cksum.c ../../i386/i386/initcpu.c ../../i386/i386/k6_mem.c ../../i386/i386/machdep.c ../../i386/i386/math_emulate.c ../../i386/i386/mem.c ../../i386/i386/nexus.c ../../i386/i386/pmap.c ../../i386/i386/procfs_machdep.c ../../i386/i386/sys_machdep.c ../../i386/i386/trap.c ../../i386/i386/userconfig.c ../../i386/i386/vm86.c ../../i386/i386/vm_machdep.c ../../i386/isa/clock.c ../../i386/isa/elink.c ../../isa/fd.c ../../i386/isa/if_cs.c ../../i386/isa/if_le.c ../../i386/isa/if_lnc.c ../../i386/isa/if_wi.c ../../i386/isa/intr_machdep.c ../../i386/isa/ipl_funcs.c ../../i386/isa/isa.c ../../i386/isa/isa_compat.c ../../i386/isa/isa_dma.c ../../i386/isa/npx.c ../../i386/isa/pcibus.c ../../i4b/layer1/i4b_asuscom_ipac.c ../../i4b/layer1/i4b_avm_a1.c ../../i4b/layer1/i4b_avm_fritz_pci.c ../../i4b/layer1/i4b_bchan.c ../../i4b/layer1/i4b_ctx_s0P.c ../../i4b/layer1/i4b_drn_ngo.c ../../i4b/layer1/i4b_elsa_qs1i.c ../../i4b/layer1/i4b_elsa_qs1p.c ../../i4b/layer1/i4b_elsa_pcc16.c ../../i4b/layer1/i4b_hscx.c ../../i4b/layer1/i4b_isac.c ../../i4b/layer1/i4b_isic.c ../../i4b/layer1/i4b_isic_isa.c ../../i4b/layer1/i4b_isic_pnp.c ../../i4b/layer1/i4b_l1.c ../../i4b/layer1/i4b_l1fsm.c ../../i4b/layer1/i4b_siemens_isurf.c ../../i4b/layer1/i4b_sws.c ../../i4b/layer1/i4b_tel_s016.c ../../i4b/layer1/i4b_tel_s0163.c ../../i4b/layer1/i4b_tel_s08.c ../../i4b/layer1/i4b_usr_sti.c ../../isa/atkbd_isa.c ../../isa/atkbdc_isa.c ../../isa/ppc.c ../../isa/psm.c ../../isa/sio.c ../../isa/syscons_isa.c ../../isa/vga_isa.c ../../kern/subr_diskmbr.c ../../libkern/divdi3.c ../../libkern/moddi3.c ../../libkern/qdivrem.c ../../libkern/udivdi3.c ../../libkern/umoddi3.c ioconf.c param.c vnode_if.c config.c ../../i386/i386/genassym.c env MKDEP_CPP="cc -E" mkdep -a -f .newdep -x assembler-with-cpp -DLOCORE -O -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 ../../i386/i386/bioscall.s ../../i386/i386/exception.s ../../i386/i386/globals.s ../../i386/i386/support.s ../../i386/i386/swtch.s ../../i386/i386/locore.s rm -f .depend mv -f .newdep .depend cd ../../modules && env MAKEOBJDIRPREFIX=/usr/src/sys/compile/MYKERNEL/modules make obj depend ===> accf_data ===> accf_http ===> agp ===> aha ===> amr ===> an ===> aue ===> ccd ===> cd9660 ===> coda ===> cue ===> dc ===> fdesc ===> fxp ===> if_disc ===> if_ef ===> if_ppp ===> if_sl ===> if_tap ===> if_tun ===> ipfilter ===> ipfw ===> ispfw ===> joy ===> kernfs ===> kue ===> md ===> mfs ===> mii ===> mlx ===> msdos ===> ncp ===> pcn ===> netgraph ===> netgraph/async ===> netgraph/bpf ===> netgraph/bridge ===> netgraph/cisco ===> netgraph/echo ===> netgraph/ether ===> netgraph/frame_relay ===> netgraph/hole ===> netgraph/iface ===> netgraph/ksocket ===> netgraph/lmi ===> netgraph/netgraph ===> netgraph/ppp ===> netgraph/pppoe ===> netgraph/pptpgre ===> netgraph/rfc1490 ===> netgraph/socket ===> netgraph/tee ===> netgraph/tty ===> netgraph/UI ===> netgraph/vjc ===> netgraph/mppc ===> nfs ===> ntfs ===> nullfs ===> nwfs ===> portal ===> procfs ===> rl ===> sf ===> sis ===> sk ===> ste ===> syscons ===> syscons/blank ===> syscons/daemon ===> syscons/fade ===> syscons/fire ===> syscons/green ===> syscons/logo ===> syscons/rain ===> syscons/snake ===> syscons/star ===> syscons/warp ===> syscons/apm ===> ti ===> tl ===> twe ===> ugen ===> uhid ===> ukbd ===> ulpt ===> umapfs ===> umass ===> umodem ===> ums ===> union ===> usb ===> vinum ===> vn ===> vpo ===> vr ===> wb ===> wx ===> xl ===> asr ===> bktr ===> bktr/bktr ===> bktr/bktr_mem ===> coff ===> fpu ===> gnufpu ===> ibcs2 ===> linprocfs ===> linux ===> splash ===> splash/bmp ===> splash/pcx ===> streams ===> svr4 ===> vesa ===> wi ===> accf_data ===> accf_http ===> agp *** Error code 2 Stop in /usr/src/sys/modules. *** Error code 1 Stop in /usr/src/sys/compile/MYKERNEL. >How-To-Repeat: try to compile Generic kernel >Fix: Wish I'd know >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 11:40: 5 2000 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 F2D1437B66D for ; Sun, 15 Oct 2000 11:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA43477; Sun, 15 Oct 2000 11:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 15 Oct 2000 11:40:02 -0700 (PDT) Message-Id: <200010151840.LAA43477@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Christopher Shumway Subject: Re: kern/22008: kernel compilation with latest sources fails - Don't know how to make agp_if.c Reply-To: Christopher Shumway Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/22008; it has been noted by GNATS. From: Christopher Shumway To: guenther.schmidt@bigfoot.de Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/22008: kernel compilation with latest sources fails - Don't know how to make agp_if.c Date: Sun, 15 Oct 2000 11:35:36 -0700 (PDT) On Sun, 15 Oct 2000 guenther.schmidt@bigfoot.de wrote: > > >Number: 22008 > >Category: kern > >Synopsis: kernel compilation with latest sources fails - Don't know how to make agp_if.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: Sun Oct 15 10:10:00 PDT 2000 > >Closed-Date: > >Last-Modified: > >Originator: Guenther Schmidt > >Release: 4.1 > >Organization: > >Environment: > FreeBSD dougie.private.domain 4.0-RELEASE FreeBSD 4.0-RELEASE #3: Thu Jun 29 04:40:35 CEST 2000 guenni@dougie.private.domain:/usr/src/sys/compile/MYKERNEL i386 > > >Description: > Kernel compilation with latest system sources fails. [``make depend'' output snipped] > ===> agp > *** Error code 2 > > Stop in /usr/src/sys/modules. > *** Error code 1 > > Stop in /usr/src/sys/compile/MYKERNEL. > > >How-To-Repeat: > try to compile Generic kernel > >Fix: > Wish I'd know Did you happen to do a ``make world'' in /usr/src before you built a new kernel? I've seen this one happen and its always because they are trying to build a kernel from a userland that doesn't match the sources of the kernel. Do a ``make world'' and it should be able to compile a kernel after the make world is done. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 13:12:29 2000 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 EA2BB37B503; Sun, 15 Oct 2000 13:12:27 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA76432; Sun, 15 Oct 2000 13:12:27 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sun, 15 Oct 2000 13:12:27 -0700 (PDT) From: Message-Id: <200010152012.NAA76432@freefall.freebsd.org> To: wkwu@csie.nctu.edu.tw, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/22007: quotacheck halt Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: quotacheck halt State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Sun Oct 15 13:11:42 PDT 2000 State-Changed-Why: Duplicate of PR 22006. http://www.freebsd.org/cgi/query-pr.cgi?pr=22007 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 13:17:27 2000 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 248F137B502; Sun, 15 Oct 2000 13:17:25 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA78138; Sun, 15 Oct 2000 13:17:25 -0700 (PDT) (envelope-from brian@FreeBSD.org) Date: Sun, 15 Oct 2000 13:17:25 -0700 (PDT) From: Message-Id: <200010152017.NAA78138@freefall.freebsd.org> To: kaz@kobe1995.net, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/21935: Can't serial line login via cross-cable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Can't serial line login via cross-cable State-Changed-From-To: open->closed State-Changed-By: brian State-Changed-When: Sun Oct 15 13:15:19 PDT 2000 State-Changed-Why: I believe the cross cable is miswired - unless you have a CD <-> CTS/DTR wiring, you must use cuaa*. http://www.freebsd.org/cgi/query-pr.cgi?pr=21935 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 13:23:20 2000 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 237E637B503; Sun, 15 Oct 2000 13:23:19 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA80138; Sun, 15 Oct 2000 13:23:19 -0700 (PDT) (envelope-from brian@FreeBSD.org) Date: Sun, 15 Oct 2000 13:23:19 -0700 (PDT) From: Message-Id: <200010152023.NAA80138@freefall.freebsd.org> To: ue@nathan.ruhr.de, brian@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/19377: tcpdump -i tun0 not port/host x shows incoming traffic for that host/port Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tcpdump -i tun0 not port/host x shows incoming traffic for that host/port State-Changed-From-To: open->closed State-Changed-By: brian State-Changed-When: Sun Oct 15 13:22:44 PDT 2000 State-Changed-Why: Fixed in -current http://www.freebsd.org/cgi/query-pr.cgi?pr=19377 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 14: 0:14 2000 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 90A1737B503; Sun, 15 Oct 2000 14:00:13 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA92152; Sun, 15 Oct 2000 14:00:13 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sun, 15 Oct 2000 14:00:13 -0700 (PDT) From: Message-Id: <200010152100.OAA92152@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, yokota@FreeBSD.org Subject: Re: kern/21625: kernel hangs if SC_NO_FONT_LOADING defined Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: kernel hangs if SC_NO_FONT_LOADING defined Responsible-Changed-From-To: freebsd-bugs->yokota Responsible-Changed-By: johan Responsible-Changed-When: Sun Oct 15 13:59:25 PDT 2000 Responsible-Changed-Why: Over to sc(4) maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21625 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 14: 4:42 2000 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 C498B37B66C; Sun, 15 Oct 2000 14:04:40 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA93736; Sun, 15 Oct 2000 14:04:40 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sun, 15 Oct 2000 14:04:40 -0700 (PDT) From: Message-Id: <200010152104.OAA93736@freefall.freebsd.org> To: sindri@gmx.net, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/21578: sindri@gmx.net Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sindri@gmx.net State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Sun Oct 15 14:04:23 PDT 2000 State-Changed-Why: Bogus PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=21578 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 14:27:29 2000 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 0F98837B671; Sun, 15 Oct 2000 14:27:28 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA02780; Sun, 15 Oct 2000 14:27:28 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sun, 15 Oct 2000 14:27:28 -0700 (PDT) From: Message-Id: <200010152127.OAA02780@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, alex@FreeBSD.org Subject: Re: misc/21634: worms(6) ignores -d option Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: worms(6) ignores -d option Responsible-Changed-From-To: freebsd-bugs->alex Responsible-Changed-By: johan Responsible-Changed-When: Sun Oct 15 14:24:06 PDT 2000 Responsible-Changed-Why: Commit-cadidate which survived a buildworld and works beautiful. http://www.freebsd.org/cgi/query-pr.cgi?pr=21634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 17:30: 5 2000 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 8021D37B66F for ; Sun, 15 Oct 2000 17:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA66595; Sun, 15 Oct 2000 17:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from kendra.ne.mediaone.net (kendra.ne.mediaone.net [24.218.227.234]) by hub.freebsd.org (Postfix) with ESMTP id 85AE037B66D for ; Sun, 15 Oct 2000 17:24:32 -0700 (PDT) Received: by kendra.ne.mediaone.net (Postfix, from userid 0) id C0D298C47; Sun, 15 Oct 2000 20:24:25 -0400 (EDT) Message-Id: <20001016002425.C0D298C47@kendra.ne.mediaone.net> Date: Sun, 15 Oct 2000 20:24:25 -0400 (EDT) From: ahd@kew.com Reply-To: ahd@kew.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22011: Secure level 2 results in mpd failing to attach NETGRAPH nodes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22011 >Category: kern >Synopsis: Secure level 2 results in mpd failing to attach NETGRAPH nodes >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: Sun Oct 15 17:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Drew Derbyshire >Release: FreeBSD 4.1-RELEASE i386 >Organization: Kendra Electronic Wonderworks, Stoneham, MA 02180 (http://www.kew.com) >Environment: mpd port installed on FBSD 4.1; Netgraph not loaded in kernel. >Description: Running with Kernel Secure level at 2 results in the following message from MPD: mpd: [pptp] can't attach pptpgre node: Operation not permitted Since the man page for init(8) makes no mention of such a restriction (and the restriction seems foolish for a running firewall), the error should not occur. >How-To-Repeat: Run mpd at secure level 2. >Fix: Workaround: Run with raising kernel secure level disabled. >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 Oct 15 17:40: 5 2000 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 DE6B837B670 for ; Sun, 15 Oct 2000 17:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA69986; Sun, 15 Oct 2000 17:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from kendra.ne.mediaone.net (kendra.ne.mediaone.net [24.218.227.234]) by hub.freebsd.org (Postfix) with ESMTP id 46F5837B66C for ; Sun, 15 Oct 2000 17:30:20 -0700 (PDT) Received: by kendra.ne.mediaone.net (Postfix, from userid 0) id 9ED048C47; Sun, 15 Oct 2000 20:30:19 -0400 (EDT) Message-Id: <20001016003019.9ED048C47@kendra.ne.mediaone.net> Date: Sun, 15 Oct 2000 20:30:19 -0400 (EDT) From: ahd@kew.com Reply-To: ahd@kew.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: 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 >Number: 22012 >Category: kern >Synopsis: Secure level 2 in kernel prevents read access to ipnat information >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 Oct 15 17:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Drew Derbyshire >Release: FreeBSD 4.1-RELEASE i386 >Organization: Kendra Electronic Wonderworks, Stoneham, MA 02180 (http://www.kew.com) >Environment: FreeBSD 4.1 running ipnat on firewall. >Description: Raising secure level of the kernel to 2 prevents even read only access to the IPNAT maps. >How-To-Repeat: sonata,134# sysctl -a | grep secure kern.securelevel: -1 sonata,136# ipnat -l List of active MAP/Redirect filters: map ep0 192.168.200.0/22 -> 0.0.0.0/32 proxy port ftp ftp/tcp map ep0 192.168.200.0/22 -> 0.0.0.0/32 proxy port 7070 raudio/tcp map ep0 192.168.200.0/22 -> 0.0.0.0/32 portmap tcp/udp 20000:21999 List of active sessions: sonata,137# sysctl -w kern.securelevel=2 kern.securelevel: -1 -> 2 sonata,138# ipnat -l ioctl(SIOCGNATS): Operation not permitted >Fix: Workaround: Disable raising kernel security level. >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 Oct 15 18:40: 6 2000 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 9C71237B502 for ; Sun, 15 Oct 2000 18:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA91328; Sun, 15 Oct 2000 18:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id DBA0237B66C for ; Sun, 15 Oct 2000 18:30:33 -0700 (PDT) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 13kz6m-0003CC-00; Mon, 16 Oct 2000 03:30:32 +0200 Received: (from naddy@localhost) by kemoauc.mips.inka.de (8.11.0/8.11.0) id e9G0n9Q98703; Mon, 16 Oct 2000 02:49:09 +0200 (CEST) (envelope-from naddy) Message-Id: <200010160049.e9G0n9Q98703@kemoauc.mips.inka.de> Date: Mon, 16 Oct 2000 02:49:09 +0200 (CEST) From: Christian Weisgerber Reply-To: naddy@mips.inka.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/22013: arp.4 claims ARP only over 10Mb/s Ethernet Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22013 >Category: bin >Synopsis: arp.4 claims ARP only over 10Mb/s Ethernet >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 15 18:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 5.0-CURRENT alpha >Organization: >Environment: >Description: The arp(4) man page erroneously claims that ARP is only used over 10Mb/s Ethernet. Pointed out by Hans-Guenter Weigand and Juergen Unger . >How-To-Repeat: >Fix: Index: arp.4 =================================================================== RCS file: /freebsd/src/usr.sbin/arp/arp.4,v retrieving revision 1.4 diff -u -r1.4 arp.4 --- arp.4 1999/08/28 01:15:26 1.4 +++ arp.4 2000/10/16 00:49:17 @@ -42,9 +42,9 @@ .Cd "pseudo-device ether" .Sh DESCRIPTION The Address Resolution Protocol (ARP) is a protocol used to dynamically -map between Internet host addresses and 10Mb/s Ethernet addresses. -It is used by all the 10Mb/s Ethernet interface drivers. -It is not specific to Internet protocols or to 10Mb/s Ethernet, +map between Internet host addresses and Ethernet addresses. +It is used by all the Ethernet interface drivers. +It is not specific to Internet protocols or to Ethernet, but this implementation currently supports only that combination. .Pp ARP caches Internet-Ethernet address mappings. >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 Oct 15 19:13:29 2000 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 2110737B503; Sun, 15 Oct 2000 19:13:28 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA04059; Sun, 15 Oct 2000 19:13:28 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 15 Oct 2000 19:13:28 -0700 (PDT) From: Message-Id: <200010160213.TAA04059@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-bugs@FreeBSD.org, asami@FreeBSD.org Subject: Re: misc/21997: after pkg_add 40upgrade-2000.08.25 telnetd, ftpd and wget all fail with coredump Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: after pkg_add 40upgrade-2000.08.25 telnetd, ftpd and wget all fail with coredump Responsible-Changed-From-To: freebsd-bugs->asami Responsible-Changed-By: will Responsible-Changed-When: Sun Oct 15 19:12:16 PDT 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=21997 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 19:30: 4 2000 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 D660E37B66D for ; Sun, 15 Oct 2000 19:30:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA09820; Sun, 15 Oct 2000 19:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 15 Oct 2000 19:30:02 -0700 (PDT) Message-Id: <200010160230.TAA09820@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Wei-Kai-Wu Subject: Re: kern/21929: lpd cause system crash Reply-To: Wei-Kai-Wu Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21929; it has been noted by GNATS. From: Wei-Kai-Wu To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/21929: lpd cause system crash Date: Mon, 16 Oct 2000 10:12:48 +0800 I add 'options DDB' in the kernel. When panic, it shows: ... instruction pointer: 0xc01e8637 ... db> panic stop at: inthand_add+0x107 movw %ax,0x172(%edx) Hope the info is helpful. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 20:20: 4 2000 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 91C3F37B66E for ; Sun, 15 Oct 2000 20:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA28137; Sun, 15 Oct 2000 20:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 15 Oct 2000 20:20:02 -0700 (PDT) Message-Id: <200010160320.UAA28137@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brooks Davis Subject: Re: bin/22013: arp.4 claims ARP only over 10Mb/s Ethernet Reply-To: Brooks Davis Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/22013; it has been noted by GNATS. From: Brooks Davis To: Christian Weisgerber Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/22013: arp.4 claims ARP only over 10Mb/s Ethernet Date: Sun, 15 Oct 2000 20:18:20 -0700 On Mon, Oct 16, 2000 at 02:49:09AM +0200, Christian Weisgerber wrote: > The arp(4) man page erroneously claims that ARP is only used over > 10Mb/s Ethernet. I'll agree that the manpage is somewhat confusing and even agree with the change, but I will point out that this is technicaly correct. If you look at the arp hardware type list maintained by iana at ftp://ftp.isi.edu/in-notes/iana/assignments/arp-parameters you will notice that the hardware number for ethernet is specificaly assigned to 10Mbps ethernet. This is a strange by product of the shear ancientness of the ARP protocol. ARP continues to work at 100 and 1000 Mbps because Ethernet is backwards compatable. -- Brooks -- Any statement of the form "X is the one, true Y" is FALSE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 15 23:28:45 2000 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 43E8637B66C; Sun, 15 Oct 2000 23:28:43 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA98930; Sun, 15 Oct 2000 23:28:43 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sun, 15 Oct 2000 23:28:43 -0700 (PDT) From: Message-Id: <200010160628.XAA98930@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, dwmalone@FreeBSD.org Subject: Re: bin/21537: killall -HUP inetd ignores changes to /etc/auth.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: killall -HUP inetd ignores changes to /etc/auth.conf Responsible-Changed-From-To: freebsd-bugs->dwmalone Responsible-Changed-By: johan Responsible-Changed-When: Sun Oct 15 23:27:25 PDT 2000 Responsible-Changed-Why: David said he wants to look into inetd PRs. This one has a patch. http://www.freebsd.org/cgi/query-pr.cgi?pr=21537 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 0:44: 1 2000 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 95C0837B503; Mon, 16 Oct 2000 00:44:00 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA25275; Mon, 16 Oct 2000 00:44:00 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Mon, 16 Oct 2000 00:44:00 -0700 (PDT) From: Message-Id: <200010160744.AAA25275@freefall.freebsd.org> To: ofir@itcon-ltd.com, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/21992: FreeBSD 4.x Bug with ICMP Error Messages Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FreeBSD 4.x Bug with ICMP Error Messages State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Mon Oct 16 00:40:55 PDT 2000 State-Changed-Why: Duplicate of PR#16240, which has been fixed a month ago. http://www.freebsd.org/cgi/query-pr.cgi?pr=21992 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 1: 5:17 2000 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 1FEB437B670; Mon, 16 Oct 2000 01:05:16 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA34148; Mon, 16 Oct 2000 01:05:16 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Mon, 16 Oct 2000 01:05:16 -0700 (PDT) From: Message-Id: <200010160805.BAA34148@freefall.freebsd.org> To: guenther.schmidt@bigfoot.de, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/22008: kernel compilation with latest sources fails - Don't know how to make agp_if.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: kernel compilation with latest sources fails - Don't know how to make agp_if.c State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Mon Oct 16 01:01:53 PDT 2000 State-Changed-Why: When facing with problems like this, please follow the instructions for kernel building given in src/UPDATING. After you will have the consistent sources, binaries and environment, you may return to the old way of building. http://www.freebsd.org/cgi/query-pr.cgi?pr=22008 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 1:40: 5 2000 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 5FA6537B66E for ; Mon, 16 Oct 2000 01:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA46658; Mon, 16 Oct 2000 01:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 16 Oct 2000 01:40:02 -0700 (PDT) Message-Id: <200010160840.BAA46658@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: i386/22006: quotacheck halt Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/22006; it has been noted by GNATS. From: Andre Albsmeier To: wkwu@csie.nctu.edu.tw Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/22006: quotacheck halt Date: Mon, 16 Oct 2000 10:35:39 +0200 > > ... > >Description: > > /etc/fstab: > /dev/da0s1e /raid1 ufs rw,async,userquota,nosuid 2 2 > /dev/da0s1f /raid2 ufs rw,async,userquota,nosuid 2 2 > > We enable quota on da0s1e da0s1f. when booting: quotacheck halt. > so I ctrl+c, the quotacheck skips /raid2. What is the highest uid you have on /raid1 and /raid2 ? You might want to look into PR #2325... If this applies to your problem, I might have a patch for you. -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 1:47:27 2000 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 4604437B503; Mon, 16 Oct 2000 01:47:26 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA49167; Mon, 16 Oct 2000 01:47:26 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Date: Mon, 16 Oct 2000 01:47:26 -0700 (PDT) From: Message-Id: <200010160847.BAA49167@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, green@FreeBSD.org Subject: Re: misc/21998: ident only for outgoing connections Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ident only for outgoing connections Responsible-Changed-From-To: freebsd-bugs->green Responsible-Changed-By: dwmalone Responsible-Changed-When: Mon Oct 16 01:46:42 PDT 2000 Responsible-Changed-Why: Brian wrote the getcred stuff - if it looks good to him I can review/commit this. http://www.freebsd.org/cgi/query-pr.cgi?pr=21998 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 3:10:23 2000 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 F0DC337B677 for ; Mon, 16 Oct 2000 03:10:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA84640; Mon, 16 Oct 2000 03:10:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shark.harmonic.co.il (jupiter.harmonic.co.il [192.116.140.62]) by hub.freebsd.org (Postfix) with ESMTP id 453C037B503 for ; Mon, 16 Oct 2000 03:06:03 -0700 (PDT) Received: from localhost (roman@localhost) by shark.harmonic.co.il (8.9.3/8.9.3) with ESMTP id MAA12124 for ; Mon, 16 Oct 2000 12:06:00 +0200 Message-Id: Date: Mon, 16 Oct 2000 12:06:00 +0200 (IST) From: Roman Shterenzon To: FreeBSD-gnats-submit@freebsd.org Subject: kern/22021: Subject: 4.1 with adaptec and vinum crashes when runs periodic daily Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22021 >Category: kern >Synopsis: 4.1 with adaptec and vinum crashed when runs periodic dail= >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 Oct 16 03:10:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: =20 config: machine=09=09i386 cpu=09=09I686_CPU ident=09=09MATRIX maxusers=09128 #makeoptions=09DEBUG=3D-g=09=09#Build kernel with gdb(1) debug symbols options =09INET=09=09=09#InterNETworking options =09FFS=09=09=09#Berkeley Fast Filesystem options =09FFS_ROOT=09=09#FFS usable as root device [keep this!] options =09SOFTUPDATES=09=09#Enable FFS soft updates support options =09NFS=09=09=09#Network Filesystem options =09CD9660=09=09=09#ISO 9660 Filesystem options =09PROCFS=09=09=09#Process filesystem options =09COMPAT_43=09=09#Compatible with BSD 4.3 [KEEP THIS!] options =09SCSI_DELAY=3D5000=09=09#Delay (in ms) before probing SCSI options =09UCONSOLE=09=09#Allow users to grab the console options =09USERCONFIG=09=09#boot -c editor options =09VISUAL_USERCONFIG=09#visual boot -c editor options =09KTRACE=09=09=09#ktrace(1) support options =09SYSVSHM=09=09=09#SYSV-style shared memory options =09SYSVMSG=09=09=09#SYSV-style message queues options =09SYSVSEM=09=09=09#SYSV-style semaphores options =09P1003_1B=09=09#Posix P1003_1B real-time extensions options =09_KPOSIX_PRIORITY_SCHEDULING options=09=09ICMP_BANDLIM=09=09#Rate limit bad replies options =09KBD_INSTALL_CDEV=09# install a CDEV entry in /dev options=09=09NMBCLUSTERS=3D1024 # To make an SMP kernel, the next two are needed #options =09SMP=09=09=09# Symmetric MultiProcessor Kernel #options =09APIC_IO=09=09=09# Symmetric (APIC) I/O # Optionally these may need tweaked, (defaults shown): #options =09NCPU=3D2=09=09=09# number of CPUs #options =09NBUS=3D4=09=09=09# number of busses #options =09NAPIC=3D1=09=09=09# number of IO APICs #options =09NINTR=3D24=09=09# number of INTs device=09=09isa device=09=09eisa device=09=09pci # Floppy drives device=09=09fdc0=09at isa? port IO_FD1 irq 6 drq 2 device=09=09fd0=09at fdc0 drive 0 # ATA and ATAPI devices device=09=09ata device=09=09atadisk=09=09=09# ATA disk drives device=09=09atapicd=09=09=09# ATAPI CDROM drives options =09ATA_STATIC_ID=09=09#Static device numbering options =09ATA_ENABLE_ATAPI_DMA=09#Enable DMA on ATAPI devices # SCSI Controllers device=09=09ahc=09=09# AHA2940 and onboard AIC7xxx devices # SCSI peripherals device=09=09scbus=09=09# SCSI bus (required) device=09=09da=09=09# Direct Access (disks) device=09=09sa=09=09# Sequential Access (tape etc) device=09=09cd=09=09# CD device=09=09pass=09=09# Passthrough device (direct SCSI access) # atkbdc0 controls both the keyboard and the PS/2 mouse device=09=09atkbdc0=09at isa? port IO_KBD device=09=09atkbd0=09at atkbdc? irq 1 flags 0x1 device=09=09psm0=09at atkbdc? irq 12 device=09=09vga0=09at isa? # splash screen/screen saver pseudo-device=09splash # syscons is the default console driver, resembling an SCO console device=09=09sc0=09at isa? flags 0x100 # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device=09=09vt0=09at isa? #options =09XSERVER=09=09=09# support for X server on a vt console #options =09FAT_CURSOR=09=09# start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT li= nes #options =09PCVT_SCANSET=3D2=09=09# IBM keyboards are non-std # Floating point support - do not disable. device=09=09npx0=09at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) #device=09=09apm0 at nexus? # Serial (COM) ports device=09=09sio0=09at isa? port IO_COM1 flags 0x10 irq 4 device=09=09sio1=09at isa? port IO_COM2 irq 3 device=09=09sio2=09at isa? disable port IO_COM3 irq 5 device=09=09sio3=09at isa? disable port IO_COM4 irq 9 # Parallel port device=09=09ppc0=09at isa? irq 7 device=09=09ppbus=09=09# Parallel port bus (required) device=09=09lpt=09=09# Printer # PCI Ethernet NICs. device=09=09fxp=09=09# Intel EtherExpress PRO/100B (82557, 82558) # Pseudo devices - the number indicates how many units to allocated. pseudo-device=09loop=09=09# Network loopback pseudo-device=09ether=09=09# Ethernet support pseudo-device=09tun=09=09# Packet tunnel. pseudo-device=09pty=09=09# Pseudo-ttys (telnet etc) pseudo-device=09md=09=09# Memory "disks" pseudo-device=09vn=09=09# Vnode driver pseudo-device=09snp=09=09# TTY snoop driver # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device=09bpf=09=09#Berkeley packet filter # USB support device=09=09uhci=09=09# UHCI PCI->USB interface device=09=09usb=09=09# USB Bus (required) device=09=09ugen=09=09# Generic device=09=09uhid=09=09# "Human Interface Devices" device=09=09ukbd=09=09# Keyboard device=09=09umass=09=09# Disks/Mass storage - Requires scbus and da device=09=09ums=09=09# Mouse # Intel Power Management devices device=09=09intpm device=09=09smbus device=09=09smb #device=09=09iicbus #device=09=09iicbb #device=09=09iic #device=09=09iicsmb dmesg: Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 =09The Regents of the University of California. All rights reserved. FreeBSD 4.1-RELEASE #0: Mon Oct 16 12:16:14 IST 2000 root@matrix.harmonic.co.il:/usr/src/sys/compile/MATRIX Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 646666418 Hz CPU: Pentium III/Pentium III Xeon/Celeron (646.67-MHz 686-class CPU) Origin =3D "GenuineIntel" Id =3D 0x683 Stepping =3D 3 Features=3D0x387fbff real memory =3D 536805376 (524224K bytes) avail memory =3D 518987776 (506824K bytes) Preloaded elf kernel "kernel" at 0xc0300000. Pentium Pro MTRR support enabled md0: Malloc disk 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 pcib4: at device 4.0 on p= ci2 pci3: on pcib4 ahc0: port 0x2000-0x20ff mem 0xf41= 00000-0xf4100fff irq 11 at device 12.0 on pci0 ahc0: aic7896/97 Wide Channel A, SCSI Id=3D7, 16/255 SCBs ahc1: port 0x2400-0x24ff mem 0xf41= 01000-0xf4101fff irq 11 at device 12.1 on pci0 ahc1: aic7896/97 Wide Channel B, SCSI Id=3D7, 16/255 SCBs fxp0: port 0x2800-0x283f mem 0xf4000000-0= xf40fffff,0xf4102000-0xf4102fff irq 10 at device 14.0 on pci0 fxp0: Ethernet address 00:d0:b7:89:e7:9b isab0: at device 18.0 on pci0 isa0: on isab0 atapci0: port 0x2860-0x286f at device 18.1 o= n pci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0x2840-0x285f irq 10 = at device 18.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhub0: port 1 power on failed, IOERROR uhub0: port 2 power on failed, IOERROR intpm0: port 0x1040-0x104f irq = 9 at device 18.3 on pci0 intpm0: I/O mapped 1040 intpm0: intr IRQ 9 enabled revision 0 smbus0: on intsmb0 smb0: on smbus0 intpm0: PM I/O mapped c00=20 pci0: at 20.0 pcib1: on motherboard pci4: 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: 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=3D0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold lpt0: on ppbus0 lpt0: Interrupt-driven port acd0: CDROM at ata1-master using PIO4 Waiting 5 seconds for SCSI devices to settle pass3 at ahc0 bus 0 target 6 lun 0 pass3: Fixed Processor SCSI-2 device=20 pass3: 3.300MB/s transfers da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-3 device=20 da0: 80.000MB/s transfers (40.000MHz, offset 63, 16bit), Tagged Queueing En= abled da0: 35003MB (71687340 512 byte sectors: 255H 63S/T 4462C) da1 at ahc0 bus 0 target 2 lun 0 da1: Fixed Direct Access SCSI-3 device=20 da1: 80.000MB/s transfers (40.000MHz, offset 63, 16bit), Tagged Queueing En= abled da1: 35003MB (71687340 512 byte sectors: 255H 63S/T 4462C) da2 at ahc0 bus 0 target 3 lun 0 da2: Fixed Direct Access SCSI-3 device=20 da2: 80.000MB/s transfers (40.000MHz, offset 63, 16bit), Tagged Queueing En= abled da2: 35003MB (71687340 512 byte sectors: 255H 63S/T 4462C) Mounting root from ufs:/dev/da0s1a WARNING: / was not properly dismounted vinum: loaded vinum: reading configuration from /dev/da1s2e vinum: updating configuration from /dev/da2s2e vinum: updating configuration from /dev/da0s2e vinum-config: drive d1 device /dev/da0s2e drive d2 device /dev/da1s2e drive d3 device /dev/da2s2e volume raid5 plex org raid5 512k sd length 0 drive d1 sd length 0 drive d2 sd length 0 drive d3 df: Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/da0s1a 1523439 784377 617187 56% / /dev/vinum/raid5 67192072 9930576 56589576 15% /raid procfs 4 4 0 100% /proc This is Intel server ISP2150. It's quite new. >Description: =20 Panic when run periodic daily. This machine worked falwlessly for one month 10/Sep-10/Oct then, it began crashing every night. Fans are working properly and it's well cooled. I suspect that the vinum fs got filled and then it began. Here's a corresponding crash dump: Script started on Mon Oct 16 12:45:51 2000 matrix#=09cd /usr/src/sys/compile/MATRIX matrix#=09gdb -k kernel.debug /var/crash/vmcore.0 GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you ar= e welcome to change it and/or distribute copies of it under certain condition= s. 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 3219456 initial pcb at 29a720 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address=09=3D 0x54 fault code=09=09=3D supervisor write, page not present instruction pointer=09=3D 0x8:0xc150fc67 stack pointer=09 =3D 0x10:0xc0277394 frame pointer=09 =3D 0x10:0xc02773b0 code segment=09=09=3D base 0x0, limit 0xfffff, type 0x1b =09=09=09=3D DPL 0, pres 1, def32 1, gran 1 processor eflags=09=3D interrupt enabled, resume, IOPL =3D 0 current process=09=09=3D Idle interrupt mask=09=09=3D bio=20 trap number=09=09=3D 12 panic: page fault syncing disks...=20 Fatal trap 12: page fault while in kernel mode fault virtual address=09=3D 0x30 fault code=09=09=3D supervisor read, page not present instruction pointer=09=3D 0x8:0xc01e2e50 stack pointer=09 =3D 0x10:0xc02771cc frame pointer=09 =3D 0x10:0xc02771d0 code segment=09=09=3D base 0x0, limit 0xfffff, type 0x1b =09=09=09=3D DPL 0, pres 1, def32 1, gran 1 processor eflags=09=3D interrupt enabled, resume, IOPL =3D 0 current process=09=09=3D Idle interrupt mask=09=09=3D bio=20 trap number=09=09=3D 12 panic: page fault Uptime: 6m22s Fatal trap 12: page fault while in kernel mode fault virtual address=09=3D 0x54 fault code=09=09=3D supervisor write, page not present instruction pointer=09=3D 0x8:0xc150fc67 stack pointer=09 =3D 0x10:0xc0276ab0 frame pointer=09 =3D 0x10:0xc0276acc code segment=09=09=3D base 0x0, limit 0xfffff, type 0x1b =09=09=09=3D DPL 0, pres 1, def32 1, gran 1 processor eflags=09=3D interrupt enabled, resume, IOPL =3D 0 current process=09=09=3D Idle interrupt mask=09=09=3D bio cam=20 trap number=09=09=3D 12 panic: page fault Uptime: 6m22s Fatal trap 12: page fault while in kernel mode fault virtual address=09=3D 0x54 fault code=09=09=3D supervisor write, page not present instruction pointer=09=3D 0x8:0xc150fc67 stack pointer=09 =3D 0x10:0xc0276394 frame pointer=09 =3D 0x10:0xc02763b0 code segment=09=09=3D base 0x0, limit 0xfffff, type 0x1b =09=09=09=3D DPL 0, pres 1, def32 1, gran 1 processor eflags=09=3D interrupt enabled, resume, IOPL =3D 0 current process=09=09=3D Idle interrupt mask=09=09=3D bio cam=20 trap number=09=09=3D 12 panic: page fault Uptime: 6m22s Fatal trap 12: page fault while in kernel mode fault virtual address=09=3D 0x54 fault code=09=09=3D supervisor write, page not present instruction pointer=09=3D 0x8:0xc150fc67 stack pointer=09 =3D 0x10:0xc0275c78 frame pointer=09 =3D 0x10:0xc0275c94 code segment=09=09=3D base 0x0, limit 0xfffff, type 0x1b =09=09=09=3D DPL 0, pres 1, def32 1, gran 1 processor eflags=09=3D interrupt enabled, resume, IOPL =3D 0 current process=09=09=3D Idle interrupt mask=09=09=3D bio cam=20 trap number=09=09=3D 12 panic: page fault Uptime: 6m22s Fatal trap 12: page fault while in kernel mode fault virtual address=09=3D 0x54 fault code=09=09=3D supervisor write, page not present instruction pointer=09=3D 0x8:0xc150fc67 stack pointer=09 =3D 0x10:0xc027555c frame pointer=09 =3D 0x10:0xc0275578 code segment=09=09=3D base 0x0, limit 0xfffff, type 0x1b =09=09=09=3D DPL 0, pres 1, def32 1, gran 1 processor eflags=09=3D interrupt enabled, resume, IOPL =3D 0 current process=09=09=3D Idle interrupt mask=09=09=3D bio cam=20 trap number=09=09=3D 12 panic: page fault Uptime: 6m22s dumping to dev #da/0x20001, offset 774 dump 511 510 509 508 507 506 505 504 503 502 501 500 499 498 497 496 495 49= 4 493 492 491 490 489 488 487 486 485 484 483 482 481 480 479 478 477 476 4= 75 474 473 472 471 470 469 468 467 466 465 464 463 462 461 460 459 458 457 = 456 455 454 453 452 451 450 449 448 447 446 445 444 443 442 441 440 439 438= 437 436 435 434 433 432 431 430 429 428 427 426 425 424 423 422 421 420 41= 9 418 417 416 415 414 413 412 411 410 409 408 407 406 405 404 403 402 401 4= 00 399 398 397 396 395 394 393 392 391 390 389 388 387 386 385 384 383 382 = 381 380 379 378 377 376 375 374 373 372 371 370 369 368 367 366 365 364 363= 362 361 360 359 358 357 356 355 354 353 352 351 350 349 348 347 346 345 34= 4 343 342 341 340 339 338 337 336 335 334 333 332 331 330 329 328 327 326 3= 25 324 323 322 321 320 319 318 317 316 315 314 313 312 311 310 309 308 307 = 306 305 304 303 302 301 300 299 298 297 296 295 294 293 292 291 290 289 288= 287 286 285 284 283 282 281 280 279 278 277 276 275 274 273 272 271 270 26= 9 268 267 266 265 264 263 262 261 260 259 258 257 256 255 254 253 252 251 2= 50 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 = 231 230 229 228 227 226 225 224 223 222 221 220 219 218 217 216 215 214 213= 212 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 19= 4 193 192 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 1= 75 174 173 172 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 = 156 155 154 153 152 151 150 149 148 147 146 145 144 143 142 141 140 139 138= 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 11= 9 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 1= 00 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=20 --- #0 boot (howto=3D260) at ../../kern/kern_shutdown.c:302 302=09=09=09dumppcb.pcb_cr3 =3D rcr3(); (kgdb) bt #0 boot (howto=3D260) at ../../kern/kern_shutdown.c:302 #1 0xc0153d38 in poweroff_wait (junk=3D0xc026f22f, howto=3D0) at ../../kern/kern_shutdown.c:552 #2 0xc0236d35 in trap_fatal (frame=3D0xc027551c, eva=3D84) at ../../i386/i386/trap.c:927 #3 0xc0236a0d in trap_pfault (frame=3D0xc027551c, usermode=3D0, eva=3D84) at ../../i386/i386/trap.c:820 #4 0xc023660b in trap (frame=3D{tf_fs =3D -1071185904, tf_es =3D -10723655= 52,=20 tf_ds =3D 7077904, tf_edi =3D -1049730016, tf_esi =3D -1049730048,=20 tf_ebp =3D -1071164040, tf_isp =3D -1071164088, tf_ebx =3D -103960569= 6,=20 tf_edx =3D 0, tf_ecx =3D 91095041, tf_eax =3D -7113793, tf_trapno =3D= 12,=20 tf_err =3D 2, tf_eip =3D -1051657113, tf_cs =3D 8, tf_eflags =3D 6611= 8,=20 tf_esp =3D -1049730016, tf_ss =3D -1051996160}) at ../../i386/i386/tr= ap.c:426 #5 0xc150fc67 in ?? () #6 0xc0178d6b in biodone (bp=3D0xc16e6420) at ../../kern/vfs_bio.c:2637 #7 0xc0126bb9 in dadone (periph=3D0xc14ca700, done_ccb=3D0xc183ac00) at ../../cam/scsi/scsi_da.c:1246 #8 0xc0122aff in camisr (queue=3D0xc0298690) at ../../cam/cam_xpt.c:6319 #9 0xc0122911 in swi_cambio () at ../../cam/cam_xpt.c:6222 #10 0xc011fd10 in xpt_polled_action (start_ccb=3D0xc027590c) at ../../cam/cam_xpt.c:3389 #11 0xc0127081 in dashutdown (arg=3D0x0, howto=3D260) at ../../cam/scsi/scsi_da.c:1538 ---Type to continue, or q to quit--- #12 0xc0153984 in boot (howto=3D260) at ../../kern/kern_shutdown.c:297 #13 0xc0153d38 in poweroff_wait (junk=3D0xc026f22f, howto=3D0) at ../../kern/kern_shutdown.c:552 #14 0xc0236d35 in trap_fatal (frame=3D0xc0275c38, eva=3D84) at ../../i386/i386/trap.c:927 #15 0xc0236a0d in trap_pfault (frame=3D0xc0275c38, usermode=3D0, eva=3D84) at ../../i386/i386/trap.c:820 #16 0xc023660b in trap (frame=3D{tf_fs =3D 16, tf_es =3D -1072365552,=20 tf_ds =3D 7077904, tf_edi =3D -1049724896, tf_esi =3D -1049724928,=20 tf_ebp =3D -1071162220, tf_isp =3D -1071162268, tf_ebx =3D -103960550= 4,=20 tf_edx =3D 0, tf_ecx =3D 90898433, tf_eax =3D -7113793, tf_trapno =3D= 12,=20 tf_err =3D 2, tf_eip =3D -1051657113, tf_cs =3D 8, tf_eflags =3D 6611= 8,=20 tf_esp =3D -1049724896, tf_ss =3D -1051996160}) at ../../i386/i386/tr= ap.c:426 #17 0xc150fc67 in ?? () #18 0xc0178d6b in biodone (bp=3D0xc16e7820) at ../../kern/vfs_bio.c:2637 #19 0xc0126bb9 in dadone (periph=3D0xc14ca700, done_ccb=3D0xc14dc000) at ../../cam/scsi/scsi_da.c:1246 #20 0xc0122aff in camisr (queue=3D0xc0298690) at ../../cam/cam_xpt.c:6319 #21 0xc0122911 in swi_cambio () at ../../cam/cam_xpt.c:6222 #22 0xc011fd10 in xpt_polled_action (start_ccb=3D0xc0276028) at ../../cam/cam_xpt.c:3389 #23 0xc0127081 in dashutdown (arg=3D0x0, howto=3D260) at ../../cam/scsi/scsi_da.c:1538 ---Type to continue, or q to quit--- #24 0xc0153984 in boot (howto=3D260) at ../../kern/kern_shutdown.c:297 #25 0xc0153d38 in poweroff_wait (junk=3D0xc026f22f, howto=3D0) at ../../kern/kern_shutdown.c:552 #26 0xc0236d35 in trap_fatal (frame=3D0xc0276354, eva=3D84) at ../../i386/i386/trap.c:927 #27 0xc0236a0d in trap_pfault (frame=3D0xc0276354, usermode=3D0, eva=3D84) at ../../i386/i386/trap.c:820 #28 0xc023660b in trap (frame=3D{tf_fs =3D -1071185904, tf_es =3D -10723655= 52,=20 tf_ds =3D 7077904, tf_edi =3D -1049719776, tf_esi =3D -1049719808,=20 tf_ebp =3D -1071160400, tf_isp =3D -1071160448, tf_ebx =3D -103960531= 2,=20 tf_edx =3D 0, tf_ecx =3D 90701825, tf_eax =3D -7113793, tf_trapno =3D= 12,=20 tf_err =3D 2, tf_eip =3D -1051657113, tf_cs =3D 8, tf_eflags =3D 6611= 8,=20 tf_esp =3D -1049719776, tf_ss =3D -1051996160}) at ../../i386/i386/tr= ap.c:426 #29 0xc150fc67 in ?? () #30 0xc0178d6b in biodone (bp=3D0xc16e8c20) at ../../kern/vfs_bio.c:2637 #31 0xc0126bb9 in dadone (periph=3D0xc14ca700, done_ccb=3D0xc1835800) at ../../cam/scsi/scsi_da.c:1246 #32 0xc0122aff in camisr (queue=3D0xc0298690) at ../../cam/cam_xpt.c:6319 #33 0xc0122911 in swi_cambio () at ../../cam/cam_xpt.c:6222 #34 0xc011fd10 in xpt_polled_action (start_ccb=3D0xc0276744) at ../../cam/cam_xpt.c:3389 #35 0xc0127081 in dashutdown (arg=3D0x0, howto=3D260) at ../../cam/scsi/scsi_da.c:1538 ---Type to continue, or q to quit--- #36 0xc0153984 in boot (howto=3D260) at ../../kern/kern_shutdown.c:297 #37 0xc0153d38 in poweroff_wait (junk=3D0xc026f22f, howto=3D0) at ../../kern/kern_shutdown.c:552 #38 0xc0236d35 in trap_fatal (frame=3D0xc0276a70, eva=3D84) at ../../i386/i386/trap.c:927 #39 0xc0236a0d in trap_pfault (frame=3D0xc0276a70, usermode=3D0, eva=3D84) at ../../i386/i386/trap.c:820 #40 0xc023660b in trap (frame=3D{tf_fs =3D -1071185904, tf_es =3D -10723655= 52,=20 tf_ds =3D 7077904, tf_edi =3D -1049722848, tf_esi =3D -1049722880,=20 tf_ebp =3D -1071158580, tf_isp =3D -1071158628, tf_ebx =3D -103960512= 0,=20 tf_edx =3D 0, tf_ecx =3D 90505217, tf_eax =3D -7113793, tf_trapno =3D= 12,=20 tf_err =3D 2, tf_eip =3D -1051657113, tf_cs =3D 8, tf_eflags =3D 6611= 8,=20 tf_esp =3D -1049722848, tf_ss =3D -1051996160}) at ../../i386/i386/tr= ap.c:426 #41 0xc150fc67 in ?? () #42 0xc0178d6b in biodone (bp=3D0xc16e8020) at ../../kern/vfs_bio.c:2637 #43 0xc0126bb9 in dadone (periph=3D0xc14ca700, done_ccb=3D0xc1658c00) at ../../cam/scsi/scsi_da.c:1246 #44 0xc0122aff in camisr (queue=3D0xc0298690) at ../../cam/cam_xpt.c:6319 #45 0xc0122911 in swi_cambio () at ../../cam/cam_xpt.c:6222 #46 0xc011fd10 in xpt_polled_action (start_ccb=3D0xc0276e60) at ../../cam/cam_xpt.c:3389 #47 0xc0127081 in dashutdown (arg=3D0x0, howto=3D260) at ../../cam/scsi/scsi_da.c:1538 ---Type to continue, or q to quit--- #48 0xc0153984 in boot (howto=3D260) at ../../kern/kern_shutdown.c:297 #49 0xc0153d38 in poweroff_wait (junk=3D0xc026f22f, howto=3D0) at ../../kern/kern_shutdown.c:552 #50 0xc0236d35 in trap_fatal (frame=3D0xc027718c, eva=3D48) at ../../i386/i386/trap.c:927 #51 0xc0236a0d in trap_pfault (frame=3D0xc027718c, usermode=3D0, eva=3D48) at ../../i386/i386/trap.c:820 #52 0xc023660b in trap (frame=3D{tf_fs =3D 6815760, tf_es =3D 6815760,=20 tf_ds =3D -1072431088, tf_edi =3D 0, tf_esi =3D -1070925856,=20 tf_ebp =3D -1071156784, tf_isp =3D -1071156808, tf_ebx =3D -107108208= 4,=20 tf_edx =3D 6849600, tf_ecx =3D 3, tf_eax =3D 0, tf_trapno =3D 12, tf_= err =3D 0,=20 tf_eip =3D -1071763888, tf_cs =3D 8, tf_eflags =3D 66050, tf_esp =3D = 0,=20 tf_ss =3D -1071156756}) at ../../i386/i386/trap.c:426 #53 0xc01e2e50 in acquire_lock (lk=3D0xc028959c) at ../../ufs/ffs/ffs_softdep.c:265 #54 0xc01e7012 in softdep_fsync_mountdev (vp=3D0xd41c0000) at ../../ufs/ffs/ffs_softdep.c:3788 #55 0xc01eb04a in ffs_fsync (ap=3D0xc0277244) at ../../ufs/ffs/ffs_vnops.c:= 134 #56 0xc01e9d72 in ffs_sync (mp=3D0xc14cc000, waitfor=3D2, cred=3D0xc10c0680= ,=20 p=3D0xc02af7e0) at vnode_if.h:537 #57 0xc018092f in sync (p=3D0xc02af7e0, uap=3D0x0) at ../../kern/vfs_syscal= ls.c:544 #58 0xc0153787 in boot (howto=3D256) at ../../kern/kern_shutdown.c:224 #59 0xc0153d38 in poweroff_wait (junk=3D0xc026f22f, howto=3D0) ---Type to continue, or q to quit--- at ../../kern/kern_shutdown.c:552 #60 0xc0236d35 in trap_fatal (frame=3D0xc0277354, eva=3D84) at ../../i386/i386/trap.c:927 #61 0xc0236a0d in trap_pfault (frame=3D0xc0277354, usermode=3D0, eva=3D84) at ../../i386/i386/trap.c:820 #62 0xc023660b in trap (frame=3D{tf_fs =3D -1071185904, tf_es =3D -10723655= 52,=20 tf_ds =3D 6815760, tf_edi =3D -1049717368, tf_esi =3D -1049717760,=20 tf_ebp =3D -1071156304, tf_isp =3D -1071156352, tf_ebx =3D -103960492= 8,=20 tf_edx =3D 0, tf_ecx =3D 90243073, tf_eax =3D -6851649, tf_trapno =3D= 12,=20 tf_err =3D 2, tf_eip =3D -1051657113, tf_cs =3D 8, tf_eflags =3D 6611= 8,=20 tf_esp =3D -1049717368, tf_ss =3D -1051996160}) at ../../i386/i386/tr= ap.c:426 #63 0xc150fc67 in ?? () #64 0xc0178d6b in biodone (bp=3D0xc16e9588) at ../../kern/vfs_bio.c:2637 #65 0xc0126bb9 in dadone (periph=3D0xc14ca700, done_ccb=3D0xc1808400) at ../../cam/scsi/scsi_da.c:1246 #66 0xc0122aff in camisr (queue=3D0xc0298690) at ../../cam/cam_xpt.c:6319 #67 0xc0122911 in swi_cambio () at ../../cam/cam_xpt.c:6222 #68 0xc022d0e0 in splz_swi () (kgdb) up 64 #64 0xc0178d6b in biodone (bp=3D0xc16e9588) at ../../kern/vfs_bio.c:2637 2637=09=09=09(*bp->b_iodone) (bp); (kgdb) list 2632=09=09} 2633=09 2634=09=09/* call optional completion function if requested */ 2635=09=09if (bp->b_flags & B_CALL) { 2636=09=09=09bp->b_flags &=3D ~B_CALL; 2637=09=09=09(*bp->b_iodone) (bp); 2638=09=09=09splx(s); 2639=09=09=09return; 2640=09=09} 2641=09=09if (LIST_FIRST(&bp->b_dep) !=3D NULL && bioops.io_complete) (kgdb) print bp $1 =3D (struct buf *) 0xc16e9588 (kgdb) print bp->b_iodone $2 =3D (void (*)()) 0xc150f6ac (kgdb) down #63 0xc150fc67 in ?? () (kgdb) list 2642=09=09=09(*bioops.io_complete)(bp); 2643=09 2644=09=09if (bp->b_flags & B_VMIO) { 2645=09=09=09int i, resid; 2646=09=09=09vm_ooffset_t foff; 2647=09=09=09vm_page_t m; 2648=09=09=09vm_object_t obj; 2649=09=09=09int iosize; 2650=09=09=09struct vnode *vp =3D bp->b_vp; 2651=09 (kgdb) down #62 0xc023660b in trap (frame=3D{tf_fs =3D -1071185904, tf_es =3D -10723655= 52,=20 tf_ds =3D 6815760, tf_edi =3D -1049717368, tf_esi =3D -1049717760,=20 tf_ebp =3D -1071156304, tf_isp =3D -1071156352, tf_ebx =3D -103960492= 8,=20 tf_edx =3D 0, tf_ecx =3D 90243073, tf_eax =3D -6851649, tf_trapno =3D= 12,=20 tf_err =3D 2, tf_eip =3D -1051657113, tf_cs =3D 8, tf_eflags =3D 6611= 8,=20 tf_esp =3D -1049717368, tf_ss =3D -1051996160}) at ../../i386/i386/tr= ap.c:426 426=09=09=09=09(void) trap_pfault(&frame, FALSE, eva); (kgdb) up #63 0xc150fc67 in ?? () (kgdb) up #64 0xc0178d6b in biodone (bp=3D0xc16e9588) at ../../kern/vfs_bio.c:2637 2637=09=09=09(*bp->b_iodone) (bp); (kgdb) up #65 0xc0126bb9 in dadone (periph=3D0xc14ca700, done_ccb=3D0xc1808400) at ../../cam/scsi/scsi_da.c:1246 1246=09=09=09biodone(bp); (kgdb) list 1241=09 1242=09=09=09if (softc->device_stats.busy_count =3D=3D 0) 1243=09=09=09=09softc->flags |=3D DA_FLAG_WENT_IDLE; 1244=09 1245=09=09=09devstat_end_transaction_buf(&softc->device_stats, bp); 1246=09=09=09biodone(bp); 1247=09=09=09break; 1248=09=09} 1249=09=09case DA_CCB_PROBE: 1250=09=09{ (kgdb) print bp $3 =3D (struct buf *) 0xc16e9588 (kgdb) print *bp $4 =3D {b_hash =3D {le_next =3D 0x0, le_prev =3D 0x0}, b_vnbufs =3D {tqe_ne= xt =3D 0x0,=20 tqe_prev =3D 0x0}, b_freelist =3D {tqe_next =3D 0x0, tqe_prev =3D 0x0},= b_act =3D { tqe_next =3D 0xc16e9820, tqe_prev =3D 0xc14bd000}, b_flags =3D 516,=20 b_qindex =3D 0, b_xflags =3D 0 '\000', b_lock =3D {lk_interlock =3D {lock= _data =3D 0},=20 lk_flags =3D 1024, lk_sharecount =3D 0, lk_waitcount =3D 0,=20 lk_exclusivecount =3D 1, lk_prio =3D 20, lk_wmesg =3D 0xc0257a24 "bufwa= it",=20 lk_timo =3D 0, lk_lockholder =3D 5}, b_error =3D 0, b_bufsize =3D 8192,= =20 b_bcount =3D 8192, b_resid =3D 0, b_dev =3D 0xc15cd880,=20 b_data =3D 0xcbdcc000 "=C0A\002", b_kvabase =3D 0x0, b_kvasize =3D 0, b_l= blkno =3D 0,=20 b_blkno =3D 45121865, b_offset =3D 0, b_iodone =3D 0xc150f6ac,=20 b_iodone_chain =3D 0x0, b_vp =3D 0x0, b_dirtyoff =3D 0, b_dirtyend =3D 0,= =20 b_rcred =3D 0xffffffff, b_wcred =3D 0xffffffff, b_pblkno =3D 49314830,=20 b_saveaddr =3D 0x0, b_driver1 =3D 0x0, b_driver2 =3D 0x0, b_caller1 =3D 0= x0,=20 b_caller2 =3D 0x0, b_pager =3D {pg_spc =3D 0x0, pg_reqpage =3D 0}, b_clus= ter =3D { cluster_head =3D {tqh_first =3D 0x0, tqh_last =3D 0x0}, cluster_entry = =3D { tqe_next =3D 0x0, tqe_prev =3D 0x0}}, b_pages =3D {0x0 },=20 b_npages =3D 0, b_dep =3D {lh_first =3D 0x0}, b_chain =3D {parent =3D 0x0= , count =3D 0}} (kgdb) down #64 0xc0178d6b in biodone (bp=3D0xc16e9588) at ../../kern/vfs_bio.c:2637 2637=09=09=09(*bp->b_iodone) (bp); (kgdb) print *bp $5 =3D {b_hash =3D {le_next =3D 0x0, le_prev =3D 0x0}, b_vnbufs =3D {tqe_ne= xt =3D 0x0,=20 tqe_prev =3D 0x0}, b_freelist =3D {tqe_next =3D 0x0, tqe_prev =3D 0x0},= b_act =3D { tqe_next =3D 0xc16e9820, tqe_prev =3D 0xc14bd000}, b_flags =3D 516,=20 b_qindex =3D 0, b_xflags =3D 0 '\000', b_lock =3D {lk_interlock =3D {lock= _data =3D 0},=20 lk_flags =3D 1024, lk_sharecount =3D 0, lk_waitcount =3D 0,=20 lk_exclusivecount =3D 1, lk_prio =3D 20, lk_wmesg =3D 0xc0257a24 "bufwa= it",=20 lk_timo =3D 0, lk_lockholder =3D 5}, b_error =3D 0, b_bufsize =3D 8192,= =20 b_bcount =3D 8192, b_resid =3D 0, b_dev =3D 0xc15cd880,=20 b_data =3D 0xcbdcc000 "=C0A\002", b_kvabase =3D 0x0, b_kvasize =3D 0, b_l= blkno =3D 0,=20 b_blkno =3D 45121865, b_offset =3D 0, b_iodone =3D 0xc150f6ac,=20 b_iodone_chain =3D 0x0, b_vp =3D 0x0, b_dirtyoff =3D 0, b_dirtyend =3D 0,= =20 b_rcred =3D 0xffffffff, b_wcred =3D 0xffffffff, b_pblkno =3D 49314830,=20 b_saveaddr =3D 0x0, b_driver1 =3D 0x0, b_driver2 =3D 0x0, b_caller1 =3D 0= x0,=20 b_caller2 =3D 0x0, b_pager =3D {pg_spc =3D 0x0, pg_reqpage =3D 0}, b_clus= ter =3D { cluster_head =3D {tqh_first =3D 0x0, tqh_last =3D 0x0}, cluster_entry = =3D { tqe_next =3D 0x0, tqe_prev =3D 0x0}}, b_pages =3D {0x0 },=20 b_npages =3D 0, b_dep =3D {lh_first =3D 0x0}, b_chain =3D {parent =3D 0x0= , count =3D 0}} (kgdb) print *bp->b_iodone $6 =3D {void ()} 0xc150f6ac (kgdb) quit matrix#=09^D=08=08exit Script done on Mon Oct 16 12:50:59 2000 >How-To-Repeat: =20 periodic daily >Fix: =20 I Wish I knew :( >Release-Note: >Audit-Trail: >Unformatted: y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 3:30:23 2000 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 102EE37B66F for ; Mon, 16 Oct 2000 03:30:09 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA91031; Mon, 16 Oct 2000 03:30:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 16 Oct 2000 03:30:08 -0700 (PDT) Message-Id: <200010161030.DAA91031@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Roman Shterenzon Subject: Re: kern/22021: 4.1 with adaptec and vinum crashed when runs periodic dail= Reply-To: Roman Shterenzon Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/22021; it has been noted by GNATS. From: Roman Shterenzon To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/22021: 4.1 with adaptec and vinum crashed when runs periodic dail= Date: Mon, 16 Oct 2000 12:26:28 +0200 (IST) Sorry for mangled text, don't know what happened to it. I resend the information: dmesg: Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 =09The Regents of the University of California. All rights reserved. FreeBSD 4.1-RELEASE #0: Mon Oct 16 12:16:14 IST 2000 root@matrix.harmonic.co.il:/usr/src/sys/compile/MATRIX Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 646666418 Hz CPU: Pentium III/Pentium III Xeon/Celeron (646.67-MHz 686-class CPU) Origin =3D "GenuineIntel" Id =3D 0x683 Stepping =3D 3 Features=3D0x387fbff real memory =3D 536805376 (524224K bytes) avail memory =3D 518987776 (506824K bytes) Preloaded elf kernel "kernel" at 0xc0300000. Pentium Pro MTRR support enabled md0: Malloc disk 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 pcib4: at device 4.0 on p= ci2 pci3: on pcib4 ahc0: port 0x2000-0x20ff mem 0xf41= 00000-0xf4100fff irq 11 at device 12.0 on pci0 ahc0: aic7896/97 Wide Channel A, SCSI Id=3D7, 16/255 SCBs ahc1: port 0x2400-0x24ff mem 0xf41= 01000-0xf4101fff irq 11 at device 12.1 on pci0 ahc1: aic7896/97 Wide Channel B, SCSI Id=3D7, 16/255 SCBs fxp0: port 0x2800-0x283f mem 0xf4000000-0= xf40fffff,0xf4102000-0xf4102fff irq 10 at device 14.0 on pci0 fxp0: Ethernet address 00:d0:b7:89:e7:9b isab0: at device 18.0 on pci0 isa0: on isab0 atapci0: port 0x2860-0x286f at device 18.1 o= n pci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0x2840-0x285f irq 10 = at device 18.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhub0: port 1 power on failed, IOERROR uhub0: port 2 power on failed, IOERROR intpm0: port 0x1040-0x104f irq = 9 at device 18.3 on pci0 intpm0: I/O mapped 1040 intpm0: intr IRQ 9 enabled revision 0 smbus0: on intsmb0 smb0: on smbus0 intpm0: PM I/O mapped c00=20 pci0: at 20.0 pcib1: on motherboard pci4: 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: 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=3D0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold lpt0: on ppbus0 lpt0: Interrupt-driven port acd0: CDROM at ata1-master using PIO4 Waiting 5 seconds for SCSI devices to settle pass3 at ahc0 bus 0 target 6 lun 0 pass3: Fixed Processor SCSI-2 device=20 pass3: 3.300MB/s transfers da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-3 device=20 da0: 80.000MB/s transfers (40.000MHz, offset 63, 16bit), Tagged Queueing En= abled da0: 35003MB (71687340 512 byte sectors: 255H 63S/T 4462C) da1 at ahc0 bus 0 target 2 lun 0 da1: Fixed Direct Access SCSI-3 device=20 da1: 80.000MB/s transfers (40.000MHz, offset 63, 16bit), Tagged Queueing En= abled da1: 35003MB (71687340 512 byte sectors: 255H 63S/T 4462C) da2 at ahc0 bus 0 target 3 lun 0 da2: Fixed Direct Access SCSI-3 device=20 da2: 80.000MB/s transfers (40.000MHz, offset 63, 16bit), Tagged Queueing En= abled da2: 35003MB (71687340 512 byte sectors: 255H 63S/T 4462C) Mounting root from ufs:/dev/da0s1a WARNING: / was not properly dismounted vinum: loaded vinum: reading configuration from /dev/da1s2e vinum: updating configuration from /dev/da2s2e vinum: updating configuration from /dev/da0s2e kernel config: # # GENERIC -- Generic kernel configuration file for FreeBSD/i386 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.8 2000/07/20 02:51:02 msmit= h Exp $ machine=09=09i386 cpu=09=09I686_CPU ident=09=09MATRIX maxusers=09128 #makeoptions=09DEBUG=3D-g=09=09#Build kernel with gdb(1) debug symbols options =09INET=09=09=09#InterNETworking options =09FFS=09=09=09#Berkeley Fast Filesystem options =09FFS_ROOT=09=09#FFS usable as root device [keep this!] options =09SOFTUPDATES=09=09#Enable FFS soft updates support options =09NFS=09=09=09#Network Filesystem options =09CD9660=09=09=09#ISO 9660 Filesystem options =09PROCFS=09=09=09#Process filesystem options =09COMPAT_43=09=09#Compatible with BSD 4.3 [KEEP THIS!] options =09SCSI_DELAY=3D5000=09=09#Delay (in ms) before probing SCSI options =09UCONSOLE=09=09#Allow users to grab the console options =09USERCONFIG=09=09#boot -c editor options =09VISUAL_USERCONFIG=09#visual boot -c editor options =09KTRACE=09=09=09#ktrace(1) support options =09SYSVSHM=09=09=09#SYSV-style shared memory options =09SYSVMSG=09=09=09#SYSV-style message queues options =09SYSVSEM=09=09=09#SYSV-style semaphores options =09P1003_1B=09=09#Posix P1003_1B real-time extensions options =09_KPOSIX_PRIORITY_SCHEDULING options=09=09ICMP_BANDLIM=09=09#Rate limit bad replies options =09KBD_INSTALL_CDEV=09# install a CDEV entry in /dev options=09=09NMBCLUSTERS=3D1024 # To make an SMP kernel, the next two are needed #options =09SMP=09=09=09# Symmetric MultiProcessor Kernel #options =09APIC_IO=09=09=09# Symmetric (APIC) I/O # Optionally these may need tweaked, (defaults shown): #options =09NCPU=3D2=09=09=09# number of CPUs #options =09NBUS=3D4=09=09=09# number of busses #options =09NAPIC=3D1=09=09=09# number of IO APICs #options =09NINTR=3D24=09=09# number of INTs device=09=09isa device=09=09eisa device=09=09pci # Floppy drives device=09=09fdc0=09at isa? port IO_FD1 irq 6 drq 2 device=09=09fd0=09at fdc0 drive 0 # ATA and ATAPI devices device=09=09ata device=09=09atadisk=09=09=09# ATA disk drives device=09=09atapicd=09=09=09# ATAPI CDROM drives options =09ATA_STATIC_ID=09=09#Static device numbering options =09ATA_ENABLE_ATAPI_DMA=09#Enable DMA on ATAPI devices # SCSI Controllers device=09=09ahc=09=09# AHA2940 and onboard AIC7xxx devices # SCSI peripherals device=09=09scbus=09=09# SCSI bus (required) device=09=09da=09=09# Direct Access (disks) device=09=09sa=09=09# Sequential Access (tape etc) device=09=09cd=09=09# CD device=09=09pass=09=09# Passthrough device (direct SCSI access) # atkbdc0 controls both the keyboard and the PS/2 mouse device=09=09atkbdc0=09at isa? port IO_KBD device=09=09atkbd0=09at atkbdc? irq 1 flags 0x1 device=09=09psm0=09at atkbdc? irq 12 device=09=09vga0=09at isa? # splash screen/screen saver pseudo-device=09splash # syscons is the default console driver, resembling an SCO console device=09=09sc0=09at isa? flags 0x100 # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device=09=09vt0=09at isa? #options =09XSERVER=09=09=09# support for X server on a vt console #options =09FAT_CURSOR=09=09# start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT li= nes #options =09PCVT_SCANSET=3D2=09=09# IBM keyboards are non-std # Floating point support - do not disable. device=09=09npx0=09at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) #device=09=09apm0 at nexus? # Serial (COM) ports device=09=09sio0=09at isa? port IO_COM1 flags 0x10 irq 4 device=09=09sio1=09at isa? port IO_COM2 irq 3 device=09=09sio2=09at isa? disable port IO_COM3 irq 5 device=09=09sio3=09at isa? disable port IO_COM4 irq 9 # Parallel port device=09=09ppc0=09at isa? irq 7 device=09=09ppbus=09=09# Parallel port bus (required) device=09=09lpt=09=09# Printer # PCI Ethernet NICs. device=09=09fxp=09=09# Intel EtherExpress PRO/100B (82557, 82558) # Pseudo devices - the number indicates how many units to allocated. pseudo-device=09loop=09=09# Network loopback pseudo-device=09ether=09=09# Ethernet support pseudo-device=09tun=09=09# Packet tunnel. pseudo-device=09pty=09=09# Pseudo-ttys (telnet etc) pseudo-device=09md=09=09# Memory "disks" pseudo-device=09vn=09=09# Vnode driver pseudo-device=09snp=09=09# TTY snoop driver # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device=09bpf=09=09#Berkeley packet filter # USB support device=09=09uhci=09=09# UHCI PCI->USB interface device=09=09usb=09=09# USB Bus (required) device=09=09ugen=09=09# Generic device=09=09uhid=09=09# "Human Interface Devices" device=09=09ukbd=09=09# Keyboard device=09=09umass=09=09# Disks/Mass storage - Requires scbus and da device=09=09ums=09=09# Mouse # Intel Power Management devices device=09=09intpm device=09=09smbus device=09=09smb #device=09=09iicbus #device=09=09iicbb #device=09=09iic #device=09=09iicsmb typescript of gdb session: Script started on Mon Oct 16 12:45:51 2000 matrix#=09cd /usr/src/sys/compile/MATRIX matrix#=09gdb -k kernel.debug /var/crash/vmcore.0 GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you ar= e welcome to change it and/or distribute copies of it under certain condition= s. 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 3219456 initial pcb at 29a720 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address=09=3D 0x54 fault code=09=09=3D supervisor write, page not present instruction pointer=09=3D 0x8:0xc150fc67 stack pointer=09 =3D 0x10:0xc0277394 frame pointer=09 =3D 0x10:0xc02773b0 code segment=09=09=3D base 0x0, limit 0xfffff, type 0x1b =09=09=09=3D DPL 0, pres 1, def32 1, gran 1 processor eflags=09=3D interrupt enabled, resume, IOPL =3D 0 current process=09=09=3D Idle interrupt mask=09=09=3D bio=20 trap number=09=09=3D 12 panic: page fault syncing disks...=20 Fatal trap 12: page fault while in kernel mode fault virtual address=09=3D 0x30 fault code=09=09=3D supervisor read, page not present instruction pointer=09=3D 0x8:0xc01e2e50 stack pointer=09 =3D 0x10:0xc02771cc frame pointer=09 =3D 0x10:0xc02771d0 code segment=09=09=3D base 0x0, limit 0xfffff, type 0x1b =09=09=09=3D DPL 0, pres 1, def32 1, gran 1 processor eflags=09=3D interrupt enabled, resume, IOPL =3D 0 current process=09=09=3D Idle interrupt mask=09=09=3D bio=20 trap number=09=09=3D 12 panic: page fault Uptime: 6m22s Fatal trap 12: page fault while in kernel mode fault virtual address=09=3D 0x54 fault code=09=09=3D supervisor write, page not present instruction pointer=09=3D 0x8:0xc150fc67 stack pointer=09 =3D 0x10:0xc0276ab0 frame pointer=09 =3D 0x10:0xc0276acc code segment=09=09=3D base 0x0, limit 0xfffff, type 0x1b =09=09=09=3D DPL 0, pres 1, def32 1, gran 1 processor eflags=09=3D interrupt enabled, resume, IOPL =3D 0 current process=09=09=3D Idle interrupt mask=09=09=3D bio cam=20 trap number=09=09=3D 12 panic: page fault Uptime: 6m22s Fatal trap 12: page fault while in kernel mode fault virtual address=09=3D 0x54 fault code=09=09=3D supervisor write, page not present instruction pointer=09=3D 0x8:0xc150fc67 stack pointer=09 =3D 0x10:0xc0276394 frame pointer=09 =3D 0x10:0xc02763b0 code segment=09=09=3D base 0x0, limit 0xfffff, type 0x1b =09=09=09=3D DPL 0, pres 1, def32 1, gran 1 processor eflags=09=3D interrupt enabled, resume, IOPL =3D 0 current process=09=09=3D Idle interrupt mask=09=09=3D bio cam=20 trap number=09=09=3D 12 panic: page fault Uptime: 6m22s Fatal trap 12: page fault while in kernel mode fault virtual address=09=3D 0x54 fault code=09=09=3D supervisor write, page not present instruction pointer=09=3D 0x8:0xc150fc67 stack pointer=09 =3D 0x10:0xc0275c78 frame pointer=09 =3D 0x10:0xc0275c94 code segment=09=09=3D base 0x0, limit 0xfffff, type 0x1b =09=09=09=3D DPL 0, pres 1, def32 1, gran 1 processor eflags=09=3D interrupt enabled, resume, IOPL =3D 0 current process=09=09=3D Idle interrupt mask=09=09=3D bio cam=20 trap number=09=09=3D 12 panic: page fault Uptime: 6m22s Fatal trap 12: page fault while in kernel mode fault virtual address=09=3D 0x54 fault code=09=09=3D supervisor write, page not present instruction pointer=09=3D 0x8:0xc150fc67 stack pointer=09 =3D 0x10:0xc027555c frame pointer=09 =3D 0x10:0xc0275578 code segment=09=09=3D base 0x0, limit 0xfffff, type 0x1b =09=09=09=3D DPL 0, pres 1, def32 1, gran 1 processor eflags=09=3D interrupt enabled, resume, IOPL =3D 0 current process=09=09=3D Idle interrupt mask=09=09=3D bio cam=20 trap number=09=09=3D 12 panic: page fault Uptime: 6m22s dumping to dev #da/0x20001, offset 774 dump 511 510 509 508 507 506 505 504 503 502 501 500 499 498 497 496 495 49= 4 493 492 491 490 489 488 487 486 485 484 483 482 481 480 479 478 477 476 4= 75 474 473 472 471 470 469 468 467 466 465 464 463 462 461 460 459 458 457 = 456 455 454 453 452 451 450 449 448 447 446 445 444 443 442 441 440 439 438= 437 436 435 434 433 432 431 430 429 428 427 426 425 424 423 422 421 420 41= 9 418 417 416 415 414 413 412 411 410 409 408 407 406 405 404 403 402 401 4= 00 399 398 397 396 395 394 393 392 391 390 389 388 387 386 385 384 383 382 = 381 380 379 378 377 376 375 374 373 372 371 370 369 368 367 366 365 364 363= 362 361 360 359 358 357 356 355 354 353 352 351 350 349 348 347 346 345 34= 4 343 342 341 340 339 338 337 336 335 334 333 332 331 330 329 328 327 326 3= 25 324 323 322 321 320 319 318 317 316 315 314 313 312 311 310 309 308 307 = 306 305 304 303 302 301 300 299 298 297 296 295 294 293 292 291 290 289 288= 287 286 285 284 283 282 281 280 279 278 277 276 275 274 273 272 271 270 26= 9 268 267 266 265 264 263 262 261 260 259 258 257 256 255 254 253 252 251 2= 50 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 = 231 230 229 228 227 226 225 224 223 222 221 220 219 218 217 216 215 214 213= 212 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 19= 4 193 192 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 1= 75 174 173 172 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 = 156 155 154 153 152 151 150 149 148 147 146 145 144 143 142 141 140 139 138= 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 11= 9 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 1= 00 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=20 --- #0 boot (howto=3D260) at ../../kern/kern_shutdown.c:302 302=09=09=09dumppcb.pcb_cr3 =3D rcr3(); (kgdb) bt #0 boot (howto=3D260) at ../../kern/kern_shutdown.c:302 #1 0xc0153d38 in poweroff_wait (junk=3D0xc026f22f, howto=3D0) at ../../kern/kern_shutdown.c:552 #2 0xc0236d35 in trap_fatal (frame=3D0xc027551c, eva=3D84) at ../../i386/i386/trap.c:927 #3 0xc0236a0d in trap_pfault (frame=3D0xc027551c, usermode=3D0, eva=3D84) at ../../i386/i386/trap.c:820 #4 0xc023660b in trap (frame=3D{tf_fs =3D -1071185904, tf_es =3D -10723655= 52,=20 tf_ds =3D 7077904, tf_edi =3D -1049730016, tf_esi =3D -1049730048,=20 tf_ebp =3D -1071164040, tf_isp =3D -1071164088, tf_ebx =3D -103960569= 6,=20 tf_edx =3D 0, tf_ecx =3D 91095041, tf_eax =3D -7113793, tf_trapno =3D= 12,=20 tf_err =3D 2, tf_eip =3D -1051657113, tf_cs =3D 8, tf_eflags =3D 6611= 8,=20 tf_esp =3D -1049730016, tf_ss =3D -1051996160}) at ../../i386/i386/tr= ap.c:426 #5 0xc150fc67 in ?? () #6 0xc0178d6b in biodone (bp=3D0xc16e6420) at ../../kern/vfs_bio.c:2637 #7 0xc0126bb9 in dadone (periph=3D0xc14ca700, done_ccb=3D0xc183ac00) at ../../cam/scsi/scsi_da.c:1246 #8 0xc0122aff in camisr (queue=3D0xc0298690) at ../../cam/cam_xpt.c:6319 #9 0xc0122911 in swi_cambio () at ../../cam/cam_xpt.c:6222 #10 0xc011fd10 in xpt_polled_action (start_ccb=3D0xc027590c) at ../../cam/cam_xpt.c:3389 #11 0xc0127081 in dashutdown (arg=3D0x0, howto=3D260) at ../../cam/scsi/scsi_da.c:1538 ---Type to continue, or q to quit--- #12 0xc0153984 in boot (howto=3D260) at ../../kern/kern_shutdown.c:297 #13 0xc0153d38 in poweroff_wait (junk=3D0xc026f22f, howto=3D0) at ../../kern/kern_shutdown.c:552 #14 0xc0236d35 in trap_fatal (frame=3D0xc0275c38, eva=3D84) at ../../i386/i386/trap.c:927 #15 0xc0236a0d in trap_pfault (frame=3D0xc0275c38, usermode=3D0, eva=3D84) at ../../i386/i386/trap.c:820 #16 0xc023660b in trap (frame=3D{tf_fs =3D 16, tf_es =3D -1072365552,=20 tf_ds =3D 7077904, tf_edi =3D -1049724896, tf_esi =3D -1049724928,=20 tf_ebp =3D -1071162220, tf_isp =3D -1071162268, tf_ebx =3D -103960550= 4,=20 tf_edx =3D 0, tf_ecx =3D 90898433, tf_eax =3D -7113793, tf_trapno =3D= 12,=20 tf_err =3D 2, tf_eip =3D -1051657113, tf_cs =3D 8, tf_eflags =3D 6611= 8,=20 tf_esp =3D -1049724896, tf_ss =3D -1051996160}) at ../../i386/i386/tr= ap.c:426 #17 0xc150fc67 in ?? () #18 0xc0178d6b in biodone (bp=3D0xc16e7820) at ../../kern/vfs_bio.c:2637 #19 0xc0126bb9 in dadone (periph=3D0xc14ca700, done_ccb=3D0xc14dc000) at ../../cam/scsi/scsi_da.c:1246 #20 0xc0122aff in camisr (queue=3D0xc0298690) at ../../cam/cam_xpt.c:6319 #21 0xc0122911 in swi_cambio () at ../../cam/cam_xpt.c:6222 #22 0xc011fd10 in xpt_polled_action (start_ccb=3D0xc0276028) at ../../cam/cam_xpt.c:3389 #23 0xc0127081 in dashutdown (arg=3D0x0, howto=3D260) at ../../cam/scsi/scsi_da.c:1538 ---Type to continue, or q to quit--- #24 0xc0153984 in boot (howto=3D260) at ../../kern/kern_shutdown.c:297 #25 0xc0153d38 in poweroff_wait (junk=3D0xc026f22f, howto=3D0) at ../../kern/kern_shutdown.c:552 #26 0xc0236d35 in trap_fatal (frame=3D0xc0276354, eva=3D84) at ../../i386/i386/trap.c:927 #27 0xc0236a0d in trap_pfault (frame=3D0xc0276354, usermode=3D0, eva=3D84) at ../../i386/i386/trap.c:820 #28 0xc023660b in trap (frame=3D{tf_fs =3D -1071185904, tf_es =3D -10723655= 52,=20 tf_ds =3D 7077904, tf_edi =3D -1049719776, tf_esi =3D -1049719808,=20 tf_ebp =3D -1071160400, tf_isp =3D -1071160448, tf_ebx =3D -103960531= 2,=20 tf_edx =3D 0, tf_ecx =3D 90701825, tf_eax =3D -7113793, tf_trapno =3D= 12,=20 tf_err =3D 2, tf_eip =3D -1051657113, tf_cs =3D 8, tf_eflags =3D 6611= 8,=20 tf_esp =3D -1049719776, tf_ss =3D -1051996160}) at ../../i386/i386/tr= ap.c:426 #29 0xc150fc67 in ?? () #30 0xc0178d6b in biodone (bp=3D0xc16e8c20) at ../../kern/vfs_bio.c:2637 #31 0xc0126bb9 in dadone (periph=3D0xc14ca700, done_ccb=3D0xc1835800) at ../../cam/scsi/scsi_da.c:1246 #32 0xc0122aff in camisr (queue=3D0xc0298690) at ../../cam/cam_xpt.c:6319 #33 0xc0122911 in swi_cambio () at ../../cam/cam_xpt.c:6222 #34 0xc011fd10 in xpt_polled_action (start_ccb=3D0xc0276744) at ../../cam/cam_xpt.c:3389 #35 0xc0127081 in dashutdown (arg=3D0x0, howto=3D260) at ../../cam/scsi/scsi_da.c:1538 ---Type to continue, or q to quit--- #36 0xc0153984 in boot (howto=3D260) at ../../kern/kern_shutdown.c:297 #37 0xc0153d38 in poweroff_wait (junk=3D0xc026f22f, howto=3D0) at ../../kern/kern_shutdown.c:552 #38 0xc0236d35 in trap_fatal (frame=3D0xc0276a70, eva=3D84) at ../../i386/i386/trap.c:927 #39 0xc0236a0d in trap_pfault (frame=3D0xc0276a70, usermode=3D0, eva=3D84) at ../../i386/i386/trap.c:820 #40 0xc023660b in trap (frame=3D{tf_fs =3D -1071185904, tf_es =3D -10723655= 52,=20 tf_ds =3D 7077904, tf_edi =3D -1049722848, tf_esi =3D -1049722880,=20 tf_ebp =3D -1071158580, tf_isp =3D -1071158628, tf_ebx =3D -103960512= 0,=20 tf_edx =3D 0, tf_ecx =3D 90505217, tf_eax =3D -7113793, tf_trapno =3D= 12,=20 tf_err =3D 2, tf_eip =3D -1051657113, tf_cs =3D 8, tf_eflags =3D 6611= 8,=20 tf_esp =3D -1049722848, tf_ss =3D -1051996160}) at ../../i386/i386/tr= ap.c:426 #41 0xc150fc67 in ?? () #42 0xc0178d6b in biodone (bp=3D0xc16e8020) at ../../kern/vfs_bio.c:2637 #43 0xc0126bb9 in dadone (periph=3D0xc14ca700, done_ccb=3D0xc1658c00) at ../../cam/scsi/scsi_da.c:1246 #44 0xc0122aff in camisr (queue=3D0xc0298690) at ../../cam/cam_xpt.c:6319 #45 0xc0122911 in swi_cambio () at ../../cam/cam_xpt.c:6222 #46 0xc011fd10 in xpt_polled_action (start_ccb=3D0xc0276e60) at ../../cam/cam_xpt.c:3389 #47 0xc0127081 in dashutdown (arg=3D0x0, howto=3D260) at ../../cam/scsi/scsi_da.c:1538 ---Type to continue, or q to quit--- #48 0xc0153984 in boot (howto=3D260) at ../../kern/kern_shutdown.c:297 #49 0xc0153d38 in poweroff_wait (junk=3D0xc026f22f, howto=3D0) at ../../kern/kern_shutdown.c:552 #50 0xc0236d35 in trap_fatal (frame=3D0xc027718c, eva=3D48) at ../../i386/i386/trap.c:927 #51 0xc0236a0d in trap_pfault (frame=3D0xc027718c, usermode=3D0, eva=3D48) at ../../i386/i386/trap.c:820 #52 0xc023660b in trap (frame=3D{tf_fs =3D 6815760, tf_es =3D 6815760,=20 tf_ds =3D -1072431088, tf_edi =3D 0, tf_esi =3D -1070925856,=20 tf_ebp =3D -1071156784, tf_isp =3D -1071156808, tf_ebx =3D -107108208= 4,=20 tf_edx =3D 6849600, tf_ecx =3D 3, tf_eax =3D 0, tf_trapno =3D 12, tf_= err =3D 0,=20 tf_eip =3D -1071763888, tf_cs =3D 8, tf_eflags =3D 66050, tf_esp =3D = 0,=20 tf_ss =3D -1071156756}) at ../../i386/i386/trap.c:426 #53 0xc01e2e50 in acquire_lock (lk=3D0xc028959c) at ../../ufs/ffs/ffs_softdep.c:265 #54 0xc01e7012 in softdep_fsync_mountdev (vp=3D0xd41c0000) at ../../ufs/ffs/ffs_softdep.c:3788 #55 0xc01eb04a in ffs_fsync (ap=3D0xc0277244) at ../../ufs/ffs/ffs_vnops.c:= 134 #56 0xc01e9d72 in ffs_sync (mp=3D0xc14cc000, waitfor=3D2, cred=3D0xc10c0680= ,=20 p=3D0xc02af7e0) at vnode_if.h:537 #57 0xc018092f in sync (p=3D0xc02af7e0, uap=3D0x0) at ../../kern/vfs_syscal= ls.c:544 #58 0xc0153787 in boot (howto=3D256) at ../../kern/kern_shutdown.c:224 #59 0xc0153d38 in poweroff_wait (junk=3D0xc026f22f, howto=3D0) ---Type to continue, or q to quit--- at ../../kern/kern_shutdown.c:552 #60 0xc0236d35 in trap_fatal (frame=3D0xc0277354, eva=3D84) at ../../i386/i386/trap.c:927 #61 0xc0236a0d in trap_pfault (frame=3D0xc0277354, usermode=3D0, eva=3D84) at ../../i386/i386/trap.c:820 #62 0xc023660b in trap (frame=3D{tf_fs =3D -1071185904, tf_es =3D -10723655= 52,=20 tf_ds =3D 6815760, tf_edi =3D -1049717368, tf_esi =3D -1049717760,=20 tf_ebp =3D -1071156304, tf_isp =3D -1071156352, tf_ebx =3D -103960492= 8,=20 tf_edx =3D 0, tf_ecx =3D 90243073, tf_eax =3D -6851649, tf_trapno =3D= 12,=20 tf_err =3D 2, tf_eip =3D -1051657113, tf_cs =3D 8, tf_eflags =3D 6611= 8,=20 tf_esp =3D -1049717368, tf_ss =3D -1051996160}) at ../../i386/i386/tr= ap.c:426 #63 0xc150fc67 in ?? () #64 0xc0178d6b in biodone (bp=3D0xc16e9588) at ../../kern/vfs_bio.c:2637 #65 0xc0126bb9 in dadone (periph=3D0xc14ca700, done_ccb=3D0xc1808400) at ../../cam/scsi/scsi_da.c:1246 #66 0xc0122aff in camisr (queue=3D0xc0298690) at ../../cam/cam_xpt.c:6319 #67 0xc0122911 in swi_cambio () at ../../cam/cam_xpt.c:6222 #68 0xc022d0e0 in splz_swi () (kgdb) up 64 #64 0xc0178d6b in biodone (bp=3D0xc16e9588) at ../../kern/vfs_bio.c:2637 2637=09=09=09(*bp->b_iodone) (bp); (kgdb) list 2632=09=09} 2633=09 2634=09=09/* call optional completion function if requested */ 2635=09=09if (bp->b_flags & B_CALL) { 2636=09=09=09bp->b_flags &=3D ~B_CALL; 2637=09=09=09(*bp->b_iodone) (bp); 2638=09=09=09splx(s); 2639=09=09=09return; 2640=09=09} 2641=09=09if (LIST_FIRST(&bp->b_dep) !=3D NULL && bioops.io_complete) (kgdb) print bp $1 =3D (struct buf *) 0xc16e9588 (kgdb) print bp->b_iodone $2 =3D (void (*)()) 0xc150f6ac (kgdb) down #63 0xc150fc67 in ?? () (kgdb) list 2642=09=09=09(*bioops.io_complete)(bp); 2643=09 2644=09=09if (bp->b_flags & B_VMIO) { 2645=09=09=09int i, resid; 2646=09=09=09vm_ooffset_t foff; 2647=09=09=09vm_page_t m; 2648=09=09=09vm_object_t obj; 2649=09=09=09int iosize; 2650=09=09=09struct vnode *vp =3D bp->b_vp; 2651=09 (kgdb) down #62 0xc023660b in trap (frame=3D{tf_fs =3D -1071185904, tf_es =3D -10723655= 52,=20 tf_ds =3D 6815760, tf_edi =3D -1049717368, tf_esi =3D -1049717760,=20 tf_ebp =3D -1071156304, tf_isp =3D -1071156352, tf_ebx =3D -103960492= 8,=20 tf_edx =3D 0, tf_ecx =3D 90243073, tf_eax =3D -6851649, tf_trapno =3D= 12,=20 tf_err =3D 2, tf_eip =3D -1051657113, tf_cs =3D 8, tf_eflags =3D 6611= 8,=20 tf_esp =3D -1049717368, tf_ss =3D -1051996160}) at ../../i386/i386/tr= ap.c:426 426=09=09=09=09(void) trap_pfault(&frame, FALSE, eva); (kgdb) up #63 0xc150fc67 in ?? () (kgdb) up #64 0xc0178d6b in biodone (bp=3D0xc16e9588) at ../../kern/vfs_bio.c:2637 2637=09=09=09(*bp->b_iodone) (bp); (kgdb) up #65 0xc0126bb9 in dadone (periph=3D0xc14ca700, done_ccb=3D0xc1808400) at ../../cam/scsi/scsi_da.c:1246 1246=09=09=09biodone(bp); (kgdb) list 1241=09 1242=09=09=09if (softc->device_stats.busy_count =3D=3D 0) 1243=09=09=09=09softc->flags |=3D DA_FLAG_WENT_IDLE; 1244=09 1245=09=09=09devstat_end_transaction_buf(&softc->device_stats, bp); 1246=09=09=09biodone(bp); 1247=09=09=09break; 1248=09=09} 1249=09=09case DA_CCB_PROBE: 1250=09=09{ (kgdb) print bp $3 =3D (struct buf *) 0xc16e9588 (kgdb) print *bp $4 =3D {b_hash =3D {le_next =3D 0x0, le_prev =3D 0x0}, b_vnbufs =3D {tqe_ne= xt =3D 0x0,=20 tqe_prev =3D 0x0}, b_freelist =3D {tqe_next =3D 0x0, tqe_prev =3D 0x0},= b_act =3D { tqe_next =3D 0xc16e9820, tqe_prev =3D 0xc14bd000}, b_flags =3D 516,=20 b_qindex =3D 0, b_xflags =3D 0 '\000', b_lock =3D {lk_interlock =3D {lock= _data =3D 0},=20 lk_flags =3D 1024, lk_sharecount =3D 0, lk_waitcount =3D 0,=20 lk_exclusivecount =3D 1, lk_prio =3D 20, lk_wmesg =3D 0xc0257a24 "bufwa= it",=20 lk_timo =3D 0, lk_lockholder =3D 5}, b_error =3D 0, b_bufsize =3D 8192,= =20 b_bcount =3D 8192, b_resid =3D 0, b_dev =3D 0xc15cd880,=20 b_data =3D 0xcbdcc000 "=C0A\002", b_kvabase =3D 0x0, b_kvasize =3D 0, b_l= blkno =3D 0,=20 b_blkno =3D 45121865, b_offset =3D 0, b_iodone =3D 0xc150f6ac,=20 b_iodone_chain =3D 0x0, b_vp =3D 0x0, b_dirtyoff =3D 0, b_dirtyend =3D 0,= =20 b_rcred =3D 0xffffffff, b_wcred =3D 0xffffffff, b_pblkno =3D 49314830,=20 b_saveaddr =3D 0x0, b_driver1 =3D 0x0, b_driver2 =3D 0x0, b_caller1 =3D 0= x0,=20 b_caller2 =3D 0x0, b_pager =3D {pg_spc =3D 0x0, pg_reqpage =3D 0}, b_clus= ter =3D { cluster_head =3D {tqh_first =3D 0x0, tqh_last =3D 0x0}, cluster_entry = =3D { tqe_next =3D 0x0, tqe_prev =3D 0x0}}, b_pages =3D {0x0 },=20 b_npages =3D 0, b_dep =3D {lh_first =3D 0x0}, b_chain =3D {parent =3D 0x0= , count =3D 0}} (kgdb) down #64 0xc0178d6b in biodone (bp=3D0xc16e9588) at ../../kern/vfs_bio.c:2637 2637=09=09=09(*bp->b_iodone) (bp); (kgdb) print *bp $5 =3D {b_hash =3D {le_next =3D 0x0, le_prev =3D 0x0}, b_vnbufs =3D {tqe_ne= xt =3D 0x0,=20 tqe_prev =3D 0x0}, b_freelist =3D {tqe_next =3D 0x0, tqe_prev =3D 0x0},= b_act =3D { tqe_next =3D 0xc16e9820, tqe_prev =3D 0xc14bd000}, b_flags =3D 516,=20 b_qindex =3D 0, b_xflags =3D 0 '\000', b_lock =3D {lk_interlock =3D {lock= _data =3D 0},=20 lk_flags =3D 1024, lk_sharecount =3D 0, lk_waitcount =3D 0,=20 lk_exclusivecount =3D 1, lk_prio =3D 20, lk_wmesg =3D 0xc0257a24 "bufwa= it",=20 lk_timo =3D 0, lk_lockholder =3D 5}, b_error =3D 0, b_bufsize =3D 8192,= =20 b_bcount =3D 8192, b_resid =3D 0, b_dev =3D 0xc15cd880,=20 b_data =3D 0xcbdcc000 "=C0A\002", b_kvabase =3D 0x0, b_kvasize =3D 0, b_l= blkno =3D 0,=20 b_blkno =3D 45121865, b_offset =3D 0, b_iodone =3D 0xc150f6ac,=20 b_iodone_chain =3D 0x0, b_vp =3D 0x0, b_dirtyoff =3D 0, b_dirtyend =3D 0,= =20 b_rcred =3D 0xffffffff, b_wcred =3D 0xffffffff, b_pblkno =3D 49314830,=20 b_saveaddr =3D 0x0, b_driver1 =3D 0x0, b_driver2 =3D 0x0, b_caller1 =3D 0= x0,=20 b_caller2 =3D 0x0, b_pager =3D {pg_spc =3D 0x0, pg_reqpage =3D 0}, b_clus= ter =3D { cluster_head =3D {tqh_first =3D 0x0, tqh_last =3D 0x0}, cluster_entry = =3D { tqe_next =3D 0x0, tqe_prev =3D 0x0}}, b_pages =3D {0x0 },=20 b_npages =3D 0, b_dep =3D {lh_first =3D 0x0}, b_chain =3D {parent =3D 0x0= , count =3D 0}} (kgdb) print *bp->b_iodone $6 =3D {void ()} 0xc150f6ac (kgdb) quit matrix#=09^D=08=08exit Script done on Mon Oct 16 12:50:59 2000 --Roman Shterenzon, UNIX System Administrator and Consultant [ Xpert UNIX Systems Ltd., Herzlia, Israel. Tel: +972-9-9522361 ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 6:20: 7 2000 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 E309E37B670 for ; Mon, 16 Oct 2000 06:20:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA56327; Mon, 16 Oct 2000 06:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 50B0437B672; Mon, 16 Oct 2000 06:14:43 -0700 (PDT) Message-Id: <20001016131443.50B0437B672@hub.freebsd.org> Date: Mon, 16 Oct 2000 06:14:43 -0700 (PDT) From: gabriel_ambuehl@buz.ch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/22024: Merge IPFilter 3.4.11 into 4-STABLE as 3.4.8 FTP proxy is broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22024 >Category: kern >Synopsis: Merge IPFilter 3.4.11 into 4-STABLE as 3.4.8 FTP proxy is broken >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 Oct 16 06:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gabriel Ambuehl >Release: 4.1.1-STABLE >Organization: BUZ Internet Services >Environment: Bug gets reported on IPF ml every now and then, not FreeBSD specific AFAIK, so I'd guess it's related to IPFilter. >Description: The FTP proxy which is used to enable FTP for people behind NAT gateways seems to be partly broken as it won't work with browsers and other clients that use passive connections. >How-To-Repeat: Try to connect to an FTP server through ipnat using a browser/passive client. >Fix: The bug was fixed in IPFilter 3.4.9 or .10 (but since 3.4.11 is available, I'd prefer the merge of that one ;-). >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 Oct 16 7:20: 9 2000 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 E07A937B66F for ; Mon, 16 Oct 2000 07:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA78719; Mon, 16 Oct 2000 07:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from be-well.ilk.org (lowellg.ne.mediaone.net [24.147.184.128]) by hub.freebsd.org (Postfix) with ESMTP id D889337B503 for ; Mon, 16 Oct 2000 07:19:55 -0700 (PDT) Received: (from lowell@localhost) by be-well.ilk.org (8.11.1/8.11.1) id e9GEJsl08797; Mon, 16 Oct 2000 10:19:54 -0400 (EDT) (envelope-from lowell) Message-Id: <200010161419.e9GEJsl08797@be-well.ilk.org> Date: Mon, 16 Oct 2000 10:19:54 -0400 (EDT) From: lowell@world.std.com Reply-To: lowell@world.std.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: gnu/22025: perl build Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22025 >Category: gnu >Synopsis: perl does chmod in installworld >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 Oct 16 07:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Lowell Gilbert >Release: FreeBSD 4.1.1-STABLE i386 >Organization: n/a >Environment: 4-STABLE (for the last few weeks, apparently) My environment is vanilla in every respect I can imagine to be relevant. The only entries in my make.conf are: CFLAGS= -O -pipe COPY=-C USA_RESIDENT=YES MAKE_IDEA=YES CD_MOUNTPT=/mnt/cdrom FETCH_BEFORE_ARGS=-p FTP_PASSIVE_MODE=YES TOP_TABLE_SIZE= 101 >Description: The perl install tries to do a chmod, which isn't in the installworld limited environment. I'm not sure why there are so few of us getting bitten by this, but it's an interaction between perl's own build system and FreeBSD's. This keeps a normal installworld from working... >How-To-Repeat: "make installworld" eventually leads to: ===> gnu/usr.bin/perl/library/SDBM_File cd /usr/obj/usr/src/gnu/usr.bin/perl/library/SDBM_File/ext/SDBM_File ; make -B install INSTALLPRIVLIB=/usr/libdata/perl/5.00503 INSTALLARCHLIB=/usr/libdata/perl/5.00503/mach cd sdbm && make all rm -rf libsdbm.a ar cr libsdbm.a sdbm.o pair.o hash.o && : libsdbm.a chmod 755 libsdbm.a chmod:No such file or directory *** Error code 1 Stop in /usr/obj/usr/src/gnu/usr.bin/perl/library/SDBM_File/ext/SDBM_File/sdbm. *** Error code 1 etc. >Fix: The obvious workaround is: ================================================================ *** Makefile.inc1~ Mon Oct 16 10:05:12 2000 --- Makefile.inc1 Mon Oct 16 10:05:30 2000 *************** *** 298,304 **** # installworld: mkdir -p ${INSTALLTMP} ! for prog in [ awk cat chflags chown date echo egrep find grep \ install ln make makewhatis mtree mv perl rm sed sh sysctl \ test true uname wc zic; do \ cp `which $$prog` ${INSTALLTMP}; \ --- 298,304 ---- # installworld: mkdir -p ${INSTALLTMP} ! for prog in [ awk cat chflags chmod chown date echo egrep find grep \ install ln make makewhatis mtree mv perl rm sed sh sysctl \ test true uname wc zic; do \ cp `which $$prog` ${INSTALLTMP}; \ ================================================================ However, I don't think perl should *need* the chmod, so there's probably a better answer. [I can think of some other workarounds, such as using '-k' on the make command, but this one is less ugly.] >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 Oct 16 10:30: 6 2000 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 45FED37B670 for ; Mon, 16 Oct 2000 10:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA54038; Mon, 16 Oct 2000 10:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id E2B6137B66E; Mon, 16 Oct 2000 10:26:28 -0700 (PDT) Message-Id: <20001016172628.E2B6137B66E@hub.freebsd.org> Date: Mon, 16 Oct 2000 10:26:28 -0700 (PDT) From: weiss@uni-mainz.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/22029: use of softdependencies leads to major filesystem inconsistencies Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22029 >Category: kern >Synopsis: use of softdependencies leads to major filesystem inconsistencies >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 Oct 16 10:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Juergen Weiss >Release: FreeBSD 4.1.1-RELEASE >Organization: Uni Mainz >Environment: FreeBSD netmon05.zdv.uni-mainz.de 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: After I enabled soft dependencies on a filesystem a stress test leads repeatedly to major filesystem inconsistencies, which result in kernel panics: `ffs_valloc: dup alloc' An fsck run afterwards reveals `allocated frag marked free' messages (about 20 or so). Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.1.1-RELEASE #0: Tue Sep 26 00:46:59 GMT 2000 jkh@narf.osd.bsdi.com:/usr/src/sys/compile/GENERIC Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (701.59-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383fbff real memory = 536858624 (524276K bytes) avail memory = 518610944 (506456K bytes) Preloaded elf kernel "kernel" at 0xc0416000. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 11 isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0xb800-0xb80f at device 4.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xb400-0xb41f at device 4.2 on pci0 uhci0: Invalid irq 255 uhci0: Please switch on USB support and switch PNP-OS to 'No' in BIOS device_probe_and_attach: uhci0 attach returned 6 chip1: port 0xe800-0xe80f at device 4.3 on pci0 pci0: (vendor=0x1385, dev=0x620a) at 9.0 irq 12 de0: port 0xb000-0xb07f mem 0xe1000000-0xe100007f irq 10 at device 11.0 on pci0 de0: 21140A [10-100Mb/s] pass 2.2 de0: address 00:80:c8:f6:43:ea 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 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/9 bytes threshold plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 ad0: 29314MB [59560/16/63] at ata0-master using UDMA33 acd0: CDROM at ata1-master using PIO4 Mounting root from ufs:/dev/ad0s1a >How-To-Repeat: Enable soft dependencies on a file system, disable fsck in /etc/fstab and enable the force mount option for that file system. File system is named <> in the following: mkdir <>/newsrc <>/newsrc/xxx cp -R /usr/src <>/newsrc & cp -R /usr/src <>/newsrc/xxx & sleep 20; rm -rf <>/newsrc/src wait 10 seconds and press the reset button. Doing this at most twice gives you an inconsistent file system and a kernel panic during the third run. >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 Oct 16 11: 1:38 2000 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 BBF6F37B502 for ; Mon, 16 Oct 2000 11:00:14 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA65047 for freebsd-bugs@freebsd.org; Mon, 16 Oct 2000 11:00:04 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 16 Oct 2000 11:00:04 -0700 (PDT) Message-Id: <200010161800.LAA65047@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 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/08] i386/7859 luigi fatal trap 12 in midi_synth_input o [1998/09/28] kern/8074 se CAM rescan operation fatal o [1998/10/03] gnu/8138 obrien gcc -pipe xxx.s hangs 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 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/12] misc/10566 obrien patch dhcpc problem on /etc/pccard_ether o [1999/03/17] kern/10636 ipfw problems o [1999/03/20] i386/10690 Installation freezes after device selecti f [1999/03/20] kern/10701 ppbus printing problems o [1999/03/22] ports/10725 stb Wrong Cyrus IMAP deliver group 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 o [1999/04/05] ports/10965 obrien lcc-3.6 unable to compile anything o [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/23] i386/11298 sos Enabling IDE DMA on Opti Viper-M crashes o [1999/04/27] kern/11351 system reboot for error with popper and d o [1999/05/10] kern/11629 File descriptor table sharing is broken 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 o [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/06] bin/12998 des still inetd junk pointer too low to make 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/23] alpha/13338 alpha panic: pmap_remove_all: pv_table for 162b o [1999/08/24] kern/13352 No support for Promise Ultra/66 o [1999/08/30] misc/13474 Maximum Number of IPs Permitted in the .. o [1999/09/09] alpha/13653 alpha panic: pmap_remove_all: pv_table for 90b6 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 f [1999/09/20] i386/13849 grog dump on vinum r5 freezes system 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/12] kern/17339 3.4-R on a K6-2: panic: pmap_release: fre 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/15] kern/17400 sos panic: resource_list_alloc when booting 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/03/28] kern/17643 sos 3.4 to 4.0 upgrade: ATAPI drivers damage o [2000/03/29] i386/17661 sos 4.0-REL hangs after detecting ata1 o [2000/04/03] kern/17776 RAID5 with crashed disk corrupts filesyst o [2000/04/03] i386/17778 sos 4.0-RELEASE will not recognize IDE Contro 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/01] kern/18335 sos FreeBSD 4.0 has a "WRITE command timeout f [2000/05/04] kern/18387 grog when performing certain vinum operations, 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/16] ports/18606 billf cannot install the latest ucd-snmp port 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 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/16] i386/19338 ProLiant DL360 dual proc. locks when boot o [2000/06/17] kern/19353 Cannot install 4.0 o [2000/06/22] misc/19441 4.0-STABLE (06/21/00) Panics On bootup o [2000/06/23] kern/19480 System hang when use current (GENERIC) ke o [2000/06/26] bin/19529 Burning cdrom with burncd fails o [2000/06/27] kern/19551 bmilekic panic when enabling bridge_ipfw o [2000/06/28] kern/19572 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/13] ports/19888 ports qpopper3 dumps core for APOP authetificat f [2000/07/20] i386/20069 sos hard crash, errors with freebsd 4.0 (waln 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 a [2000/07/31] kern/20312 tegge IO APIC problems 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 f [2000/08/03] i386/20379 unable to install, monitor goes black dur o [2000/08/04] kern/20394 sos kernel fails to recognize the second IDE 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/11] kern/20534 sos ata panic: resource_list_alloc: resource a [2000/08/13] kern/20573 sos ATA MFC Breaks -STABL 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/08/31] gnu/20966 obrien binutils break C++ in GCC 2.95.x and GCC- 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 o [2000/09/04] kern/21046 sos ATAPI interface hangs during install of 4 f [2000/09/05] i386/21071 gibbs SCSI Controller Not Detected When Attempt o [2000/09/05] i386/21072 sos Unable to install. Can't write disklabel 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 f [2000/09/09] kern/21148 grog multiple crashes while using vinum 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/17] ports/21332 will kde2 fails on dependency build 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/21] ports/21466 jseger port xpaint-2.5.7 won't make install f [2000/09/22] misc/21480 Harddrive death after FreeBSD Install 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 f [2000/10/05] kern/21773 sos panic w/nexus + ata (ivar problem) 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 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 o [2000/10/12] ports/21927 dirk Error installing openssl 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/13] kern/21970 Kernel panic when trying to access a UDMA o [2000/10/14] gnu/21983 obrien gcc fails to link shared libraries agains o [2000/10/14] ports/21993 ports Port graphics/sane build fails with the n o [2000/10/15] ports/22016 ports View of pkg-descr file was impossible to o [2000/10/16] ports/22020 ports apache13-modssl dies on alloc.c o [2000/10/16] kern/22021 4.1 with adaptec and vinum crashed when r 269 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/09] kern/2698 After rewind I cannot read a tape; blocks 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/19] bin/2769 fsck needs several runs to clean up bad/d o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable o [1997/02/22] kern/2800 DDS large data writing probrem o [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/15] bin/3305 Can't do encrypted rlogin into self 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 o [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 s [1997/07/06] gnu/4042 obrien gdb stackframe in static library shows no 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 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/26] misc/5574 bootpd gets timezone incorrectly 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/01] kern/5624 dumping to tape causes scsi bus reset 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 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 f [1998/04/08] kern/6252 sos ide cdrom hangs system when on same bus a o [1998/04/10] kern/6267 dg panic: pmap_dispose_proc: upage already m 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 shimon 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] misc/8070 can't get a system with an NCR 810 contro 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 a [1998/10/19] conf/8379 gshapiro check_rcpt returns OK for nonexistent add 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 obrien 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 f [1999/01/17] kern/9550 sos The latest -current as of 17 January has o [1999/01/21] kern/9599 SMP hang after reseting CPU 1 s [1999/01/22] docs/9618 asmodai many typos in groff_mm(7) f [1999/01/25] kern/9673 ISO CD-ROM Problem o [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 f [1999/02/14] i386/10089 sos ATAPI tape driver (wst) doesn't handle En 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/29] i386/10862 sos wd.c STILL cannot recognize correct disk o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/03/30] misc/10879 Cannot build aout binaries under 3.1-RELE 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/20] bin/11247 des fetch doesn't notice FTP error after RETR 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/03] bin/11464 obrien union copies likely broken for alpha egcs 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/11523 3.1-STABLE BRIDGE option does not work 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 dg 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 o [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/28] kern/12434 signal 11 (core dumped) on mysqld when ma 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/07] docs/12557 nik There are no man pages for the widely use o [1999/07/09] misc/12577 Can't link code using catopen 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] alpha/12832 alpha config -g creates broken Makefile in 3.2- 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/12] ports/13714 stb netatalk-1.4b2+asun2.1.3 fails chmod g+s 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/16] conf/13785 jkh boot block/manager problem at installatio o [1999/09/17] i386/13787 lnc driver isn't really the lnc driver f [1999/09/18] i386/13811 ide cdrom stops recognizing audio cdroms o [1999/09/19] ports/13839 will kdegraphics11 'make PREFIX' fix, one comp f [1999/09/20] i386/13857 Problem with switching between processes o [1999/09/22] alpha/13912 alpha unaligned access Problem seems to be aff 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/07] misc/14178 FreeBSD 3.2 - Calls from CGI scripts, cro o [1999/10/07] kern/14183 grog bridge forwarding corrupted broadcast IP o [1999/10/10] bin/14250 dwmalone restore(8) can loop if tty goes away or w 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] misc/14431 Network Interface Problem 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 a [1999/10/31] bin/14626 gshapiro sendmail 8.9.3 bug with aliases in -CURRE 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] misc/14811 getpwent is not enumerating all entries i o [1999/11/10] kern/14812 de0 driver malfunctions in full-duplex o [1999/11/11] ports/14826 obrien security/fwtk smapd calls sendmail with w o [1999/11/12] bin/14844 rwhod is remotely crashable 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/18] bin/14978 lprm(1) does not kill active daemon if ho o [1999/11/19] kern/14997 NFSv3 open O_EXCL fails to set proper "at o [1999/11/19] i386/15003 mdodd 3C574 (ep0) reads bogus ethernet address o [1999/11/21] i386/15018 Printingproblem o [1999/11/22] bin/15046 obrien /sbin/dhclient-script ignores resolv.conf 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] misc/15228 C++ exceptions+threads SIGABRTs. 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] bin/15471 kris Fix several buffer overflows 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] i386/15553 marcel Linux Emulation don't emulate accept(2) e 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] kern/15870 small PicoBSD Kernel link fails 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] bin/16186 [PATCH] Insecure use of strncpy() and str 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] ports/16341 obrien Fix for minicom detecting modem status li 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/09] ports/16621 marcel emulators/linux_base needs to be installe 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/21] ports/16882 obrien Memory leak with g++ 2.8.1 and STL 2.8.1. 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 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 kris [PATCH] Cleanup bug in pam_ssh o [2000/03/14] i386/17374 Archive QIC02 tape-unit device randomly h o [2000/03/14] kern/17375 yokota kldload/unload cycles with syscons screen 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 f [2000/03/16] misc/17409 4.0-RELEASE install fails on Compaq 1850R o [2000/03/16] alpha/17410 alpha Bad tag on Alpha boot floppies 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/17] misc/17435 There's no DES crypto distribution in 4.0 o [2000/03/17] kern/17439 sos 4.0-STABLE: mount of non-fixated CD-R -> 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] ports/17503 obrien lsof port doesn't build on FreeBSD 5.0 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/24] kern/17592 sos ata READ/WRITE command timeouts 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 stb 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/01] kern/17746 sos afd0 is accessed for no reason a couple o o [2000/04/02] i386/17755 FTP install of 4.0 allocates too few inod o [2000/04/02] kern/17757 deischen select returns 0 if pthread_kill'd w/ sig o [2000/04/02] i386/17761 disk label editor in 4.0 deleted 3.4 part o [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/06] misc/17832 Enlightenment gives Segmentation fault a [2000/04/06] kern/17839 sos ad driver and SMP kernel panic (vinum may 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/09] i386/17890 sos Still having trouble identifying disk geo 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/17920 sos ata/ad driver HARD ERROR failure with int 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] ports/18003 cwt amanda2.4's SCSI changer script (chg-chio 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. o [2000/04/25] bin/18221 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) o [2000/04/28] kern/18270 [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] misc/18927 jwd Missing tools in release/scripts/src-inst o [2000/05/31] gnu/18930 obrien Fix mktemp() problem with libg2c 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/12] ports/19232 ports port name changed and being updated 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/20] kern/19407 Panic running linux binary on ext2fs 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/24] kern/19488 Bug in 4.0-STABLE (acting as a Bridging f 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/26] ports/19518 jkoshy xli-1.17.0 fillscreen option paints white o [2000/06/27] conf/19542 Problem with Proxy o [2000/06/27] misc/19548 DES in 3.5-RELEASE allows trailing charac o [2000/06/27] misc/19557 Denying more than 10 ports with an 'open' a [2000/06/28] ports/19561 andreas Ghostscript 6 in ports refuses to build 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] bin/19606 Telnet & Telnetd coredump when disabling 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 obrien dhclient-script will not always set the h o [2000/07/04] misc/19703 sos HTP366 ATA66 lockup with Fast ATA66 Drive 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 o [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/14] bin/19935 obrien tcsh doesn't seem to pass control charcte o [2000/07/14] kern/19938 sos IDE tape drive (ast0) timeout too quick 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/16] ports/19967 obrien Update port: sysutils/lsof o [2000/07/17] misc/19994 sscanf() fails on 64-bit operations o [2000/07/17] kern/20001 small PicoBSD kernels fail to compile o [2000/07/18] kern/20016 pthreads: Cannot set scheduling timer/Can o [2000/07/18] docs/20028 doc ASCII docs should reflect tags f [2000/07/19] kern/20035 sos Kernal Panik when try to install FreeBSD o [2000/07/19] kern/20040 msmith Toshiba 2775 hangs after pcib0 driver is o [2000/07/21] kern/20086 imp The procedure in UPDATING misses install o [2000/07/22] kern/20115 cg pcm0 doesnot work on Panasonic Let's note o [2000/07/23] docs/20117 doc *printf manpage doesn't document %n o [2000/07/24] ports/20156 dirk 1.6.2.2 has some nasty bugs 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] alpha/20248 alpha DEFPA FDDI on alpha panics system 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/03] kern/20382 sos Panic when trying to mount non-fixated CD o [2000/08/03] ports/20392 ports Fixed new port: Perl5 data debugging tool o [2000/08/04] ports/20401 ports lang/erlang skips the build of crypto.app 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 f [2000/08/09] i386/20513 obrien Installation (over internet) does not wor o [2000/08/10] kern/20523 Support for PCI multiport cards for sio d o [2000/08/10] misc/20530 asmodai CMSG_DATA requires additional header file o [2000/08/11] ports/20554 ports java/perltools: New port o [2000/08/12] ports/20564 ports [PATCH] nethack-gtk md5 correction, typo o [2000/08/13] kern/20572 marcel cannot safely remove COMPAT_43 from the k o [2000/08/13] ports/20581 ports 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/16] ports/20656 dec Update port: net/gated (fix ports/19988) o [2000/08/16] ports/20663 andreas MD5 checksum mismatches for ports/databas o [2000/08/17] ports/20679 ports Port of Tcpview-1.0 o [2000/08/17] ports/20680 ports ports that don't have man pages with NO_I 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 ports xwave port fails to build o [2000/08/18] gnu/20707 obrien /usr/libexec/cpp doesn't support -undef f o [2000/08/18] kern/20708 imp Adaptec 1542 ISA SCSI Controller not dete o [2000/08/18] ports/20711 cwt amanda doesn't like the output from its c 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/21] kern/20765 imp Crash in bdgtakeifaces when performing kl 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/23] misc/20796 After "Waiting 15 seconds for SCSI device o [2000/08/24] ports/20819 ports XFMail 1.4.0 dumps core w/signal 6 when c o [2000/08/24] ports/20822 jmz [PATCH] PAM support broken in XDM 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/25] kern/20842 dillon NFS client ignores read-only file setting 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] ports/20905 ports new port: www/oops o [2000/08/28] gnu/20912 obrien gdb does not recognise old executables. o [2000/08/28] ports/20913 ports ports not linking against -ljpeg o [2000/08/29] kern/20924 sos ata0-slave doesn't show up 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 o [2000/09/02] ports/21002 stb setiathome port has problems under clean o [2000/09/03] ports/21014 will [PATCH] Fix for kdelibs2 PLIST o [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/04] ports/21055 ports popper3 dumps core o [2000/09/06] kern/21073 cg PCM sound driver silently accepts imprope o [2000/09/06] bin/21078 wpaul rtsol does not work on USB interface aue0 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/07] ports/21095 ports MASTER_SITES_GNU are semi-broken [PATCH] o [2000/09/08] ports/21116 ports vmware2 does not compile on -current 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 o [2000/09/08] kern/21139 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 o [2000/09/13] alpha/21247 alpha edquota fails with alignment error 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/21263 jseger Cannot use ImageMagick 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] ports/21289 ports qpopauth doesn't work(qpopper ports) o [2000/09/15] bin/21292 ifconfig warn but does duplicate IP addre f [2000/09/15] kern/21294 des linprocfs:/proc/stat & /proc//stat d 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] ports/21355 ports evg port fails to run - syntax error in a o [2000/09/18] ports/21360 ports kaffe port's PLIST file is inaccurate o [2000/09/18] kern/21363 cg Panic in pcm/channel.c when running RealP o [2000/09/18] bin/21375 obrien [PATCH] dhclient runs away on interface r o [2000/09/18] misc/21384 pcm driver has static in recorded audio o [2000/09/18] ports/21386 ports compile fails on -current 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/21416 ports Patch-ab for port emulators/xmame refer t 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 g++ optimiser produces bad code on right f [2000/09/20] ports/21437 bmah port update to correct mail/exmh2 support o [2000/09/21] ports/21448 ports msql2d.sh doesn't start the daemon 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 o [2000/09/23] ports/21508 ports Re: FIX: devel/pcre to install a working o [2000/09/25] conf/21540 installworld panics for diskless clients o [2000/09/25] ports/21548 ports libcoro.a (ports) should use MAP_STACK wh o [2000/09/25] docs/21550 doc Some documents on Softupdates are not yet o [2000/09/25] ports/21554 marcel linux_base-6.1 incorrectly enables NIS by o [2000/09/26] i386/21559 rnordier BTX loader sometime show registers o [2000/09/26] kern/21582 rndcontrol -s 21 returns invalid argument 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 s [2000/09/27] bin/21605 will make(1) lacks :C/// variable modifier (pa 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/21647 unable to boot 4.1-STABLE- with 4GB of RA 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/29] ports/21656 ports PGP6 port based on pgp-6.5.8 a [2000/09/29] bin/21658 obrien The combination of dhclient & WinNT serve 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/21686 msmith 3ware twe driver not working properly wit o [2000/10/01] kern/21688 Kernel crash with Adaptec AAA-133 and ahc o [2000/10/02] kern/21693 hwptr went backwards 2112 -> 1312 a [2000/10/02] conf/21694 ume Multi network interface will not be work o [2000/10/02] misc/21701 murray Keymap selection menu broken on initial i o [2000/10/02] kern/21702 imp pccard fixes o [2000/10/02] docs/21708 doc kqueue/kevent man pages isn't specific ab o [2000/10/02] misc/21713 Getting an error message in Free BSD whil o [2000/10/02] ports/21714 ports audio problem with nil o [2000/10/02] misc/21716 The site search results *suck*. o [2000/10/03] kern/21736 Source-tree broken, can't compile Kernel o [2000/10/04] i386/21743 ps pxeboot ignores NFS server IP address in 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] ports/21774 ports upgrading Boehm's Garbage Collector port o [2000/10/05] gnu/21779 patch(1)'s bug of new file creation o [2000/10/06] ports/21780 ports audio/vorbis should not depend on xmms! o [2000/10/06] ports/21784 andreas further improving the PostgreSQL port o [2000/10/06] kern/21791 Hang on FIN_WAIT_2 o [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/08] ports/21838 ports Updated port devel/sip o [2000/10/08] ports/21839 ports Updated port x11-toolkits/py-qt o [2000/10/08] bin/21840 small more(1) is less(1) and that should be on f [2000/10/09] ports/21858 ports www ports interface bug o [2000/10/09] kern/21860 The fix to TCP_ISSINCR after the bugtraq o [2000/10/09] kern/21864 Update Aironet stuff for WEP and fix "tcp o [2000/10/09] kern/21869 Compiling a a.out kernel on FreeBSD 4.0 o [2000/10/09] bin/21877 kris [PATCH] DSA support for pam_ssh o [2000/10/10] kern/21893 sos SiS 5591 (early revision) has broken UDMA o [2000/10/10] kern/21898 If options NFS is not in the kernel, moun o [2000/10/10] misc/21904 Fix for diskless startup bug in /etc/rc o [2000/10/11] bin/21918 Revision 1.5 provides incomplete fix for o [2000/10/12] bin/21934 jkh CVSupit install from /stand/sysinstall st o [2000/10/12] misc/21940 Modem Power-Off kills system o [2000/10/12] bin/21943 pthreads: longjmp from signal handler jum o [2000/10/12] kern/21946 vm_fault when (accidentally) attempted to o [2000/10/13] ports/21951 ports ports/databases/db3: cannot configure o [2000/10/13] misc/21955 sos FreeBSD 4.1.1 does not recognize the slav o [2000/10/13] ports/21958 ports NEW PORT www/neon -- an HTTP and WebDAV c o [2000/10/13] kern/21965 Running ldconfig (linux binary) from ld-1 o [2000/10/14] docs/21990 doc exec(3) manpage vs source inconsistency o [2000/10/15] misc/21997 asami after pkg_add 40upgrade-2000.08.25 telnet o [2000/10/15] misc/21998 green ident only for outgoing connections o [2000/10/15] i386/22006 quotacheck halt o [2000/10/15] ports/22010 ports Automatic build of windowmaker is broken o [2000/10/16] gnu/22025 perl does chmod in installworld o [2000/10/16] kern/22029 use of softdependencies leads to major fi 997 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1995/01/11] i386/105 bde 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 o [1996/10/24] bin/1881 obrien file(1) misidentifies Sun3/m68k executabl 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/14] bin/2737 yppasswd fails to change password on a su 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 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/08] misc/3237 marcel SCRIPTS addition to bsd.prog.mk o [1997/04/09] bin/3242 incorrect prototype for initgroups o [1997/04/14] kern/3281 errors when "rm -r"-ing in a mounted ext2 o [1997/04/14] kern/3282 ext2fs causes fs-unmount at shutdown/rebo 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/14] kern/3287 [PATCH] missing symbols in /usr/src/sys/i o [1997/04/15] kern/3299 /dev/console hangs o [1997/04/17] bin/3314 [PATCH] /etc/daily did not run on April 6 o [1997/04/29] bin/3416 ibcs emulation problems a [1997/05/08] gnu/3552 the -L option of tar does not work proper o [1997/05/12] kern/3584 luigi cleanup TCP_REASS macro in tcp_input.c 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/12] kern/3853 luigi netboot/ns8390.c breaks NS datasheet o [1997/06/15] kern/3879 peter Can't export mounted ext2fs via NFS o [1997/06/18] kern/3901 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 if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 nonworking t/tcp server side o [1997/06/26] i386/3962 sos print disk internal cache size during pro 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 o [1997/07/23] kern/4153 New tcp initial send sequence number code 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 o [1997/09/14] bin/4545 f77 will only call `cc', no com-line opti s [1997/09/15] i386/4547 luigi asc.c and pcaudio.c should use selrecord 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/11] kern/5011 rndcontrol -s 8 causes kernel panic o [1997/11/13] bin/5031 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/15] kern/5060 Kernel doesn't compile with mss 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 o [1998/01/18] kern/5517 Recursive NULLFS mount causes ufs_ihashge 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/19] kern/5795 Panic: "bremfree: removing a buffer when o [1998/02/20] misc/5803 "tab" function from "ee" not compatible w s [1998/02/25] misc/5855 /etc/services is out of date with IANA 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/01] bin/5880 df -t does not support devfs 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 hoek 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/02] i386/7816 dfr [Patch] NE2000 PnP card IDs to sys/i386/i 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 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 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/19] misc/8378 Is termcap not maintained enough ? 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 stb 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/13] gnu/8679 tar man page should be updated 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 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] conf/9388 obrien magic(5) correction for wordperfect 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/16] bin/9529 ftp filname completion can't handle space 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/27] i386/9721 Patch for FreeBSD netboot (booting via DO o [1999/01/28] kern/9748 error in queue handling of at_shutdown() o [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/30] ports/9792 msmith pib coredumps in port maker mode 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/08] bin/9972 groff always built for US (letter) sized 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/16] kern/10116 sos acd driver patch to support PD/CD drive. 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 o [1999/02/20] kern/10175 Bridging support incomplete for some netc 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] kern/10440 Discard device does not set ifq_maxlen o [1999/03/06] bin/10444 avoiding lost mail when mail filesystem i o [1999/03/06] ports/10454 obrien Update: emulators/spim 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 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/26] kern/10812 LINT configuration MAXDSIZ/DFLDSIZ mislea o [1999/03/27] bin/10825 daily script not executed or executed twi 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/01] gnu/10910 obrien Integration of Objective C patches into g o [1999/04/02] bin/10924 Extensions to biff(1) o [1999/04/03] bin/10931 biff b 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 obrien variable not initialized in fwtk-lib lead o [1999/04/09] misc/11052 [PATCH] performance bug fix to fgets() ro 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/11] bin/11094 lastlogin.8 from NetBSD 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] conf/11243 mountd startup can lose flags 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/01] kern/11981 brian access to tunN devices not allowed to non 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/15] misc/12228 phantom /etc/security don't search in all the fil 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/20] bin/12308 LPD can't be told not to bind to a TCP po 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 a [1999/07/05] ports/12518 will new port: mail/ifmail-os 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] kern/12764 luigi Patch for using x11amp with voxware (stol 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 `' a [1999/08/03] kern/12943 dg fxp driver not completely compatible with 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 f [1999/08/04] bin/12962 des basename(3) and dirname(3) part 2 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/11] kern/13082 dfr Improved support for NE2000 PnP cards o [1999/08/12] bin/13108 authunix_create_default includes egid twi o [1999/08/13] docs/13116 phantom typo in ms(7) 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 kthread_exit stops, but doesn't release p o [1999/08/16] misc/13185 "tengo problemas con el pop3" o [1999/08/18] docs/13218 mpp 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/22] ports/13898 obrien New port: misc/dictd 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/04] docs/14129 phantom gated(8) and htable(8) as referenced in r 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 [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] docs/14530 phantom Printed manual pages have extraneous blan 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 o [1999/11/16] conf/14931 rc logging facility 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/17] kern/14968 wollman Convert resource_head and resource.r_link o [1999/11/17] ports/14970 peter conserver-7.4 port submission 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/14993 Freebsd Locks up when trying to set the h 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/23] kern/15065 fsck can't fix "huge" zero length files 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/01] misc/15215 Outputting in Fortune under certain circu 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/03] ports/15239 asami fix MASTER_SITE_GNOME in bsd.port.mk: mi 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 billf proposed modifications to pkg_version o [1999/12/07] ports/15329 cwt amanda24 modification o [1999/12/07] misc/15339 fdformat should exit non-zero when user c o [1999/12/09] ports/15387 billf ethereal's packet-smb.c calls str*() func o [1999/12/09] bin/15390 obrien Upgrade rdist to 6.1.5 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/12] kern/15455 dg Intel EtherExpress Pro does not properly 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 o [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 a [1999/12/25] ports/15691 steve Ssh ports fail to check inetd.conf before 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] bin/15861 dan ftpd did not use sendfile(2) when sending 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/15875 small Incorrect permissions on PicoBSD /tmp dir 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 brian add new option to date(1) o [2000/01/09] bin/16007 joe cdcontrol(1) defaulting do /dev/cdrom ins o [2000/01/09] misc/16009 Invoking /stand/sysinstall from kde termi o [2000/01/09] kern/16016 cam/scsi/scsi_da.c: Fujitsu M2952 doesn't 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] ports/16072 obrien vim5 port update o [2000/01/11] conf/16076 markm [PATCH] pam_ssh examples for /etc/pam.con o [2000/01/13] ports/16109 max Update port: japanese/mimekit to 1.8 o [2000/01/14] bin/16119 ctm_rmail does not honor umask o [2000/01/14] bin/16124 imp [PATCH] Enhancement for 'lpr -r' 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] kern/16170 compiling machine/setjmp.h with g++ f [2000/01/18] bin/16179 ru ipfw(8) poor design of command line parsi 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 f [2000/01/28] misc/16434 Odd rlogin problem. 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 f [2000/02/11] ports/16654 mharo Some master sites have discontinued hosti 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] docs/16843 doc 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/22] bin/16929 [PATCH] prevent possible race condition i 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/25] ports/16987 obrien pkg_delete vim-5.X incorrect 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] ports/17127 obrien Ports fix: editors/vim5 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/17178 -d option of lpd didnt work 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] ports/17199 jmz emulators/mtools configure fix 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 o [2000/03/06] misc/17232 obrien chown(1) and chgrp(1) do not honor -v fla 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/07] ports/17259 reg Update port www/mozilla 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 f [2000/03/08] ports/17279 obrien USA/Canada Netscape Navigator 4.72 FreeBS 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 f [2000/03/10] ports/17309 ports ports/audio/cdd doesn't support .wav outp o [2000/03/12] ports/17342 will ports/devel/qtez build failure 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 f [2000/03/16] ports/17414 mharo upgrade and fix for the postilion port o [2000/03/16] kern/17425 nsouch [PATCH] fix two small printing errors in o [2000/03/16] ports/17427 cwt a big enhancement to the flexability of t 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/17] kern/17441 4.0-STABLE: Intel 82801AA SMBus Controlle o [2000/03/18] ports/17465 jmacd Update port: lang/STk to 4.0.1 o [2000/03/18] docs/17470 doc Missing man page: pthread_yield 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] kern/17487 sos ide/atapi/cdrom bugs 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/19] bin/17498 killall(1) is a slow perl script that's d 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/21] kern/17539 kernel panic when asking help in visual u o [2000/03/22] bin/17546 murray Sysinstall does not let you configure NIS f [2000/03/22] bin/17555 green fstat(1) doesn't show memory-mapped files o [2000/03/24] kern/17581 devices failing probing do so silently o [2000/03/24] ports/17585 obrien Outputs small message for user of lang/gc o [2000/03/24] kern/17589 sos ata crashes when trying to extract cd-da 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 o [2000/04/02] bin/17756 kris sshd ignores .hushlogin 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/03] ports/17777 torstenb [PATCH] Postfix port to consistently use o [2000/04/04] kern/17796 cg pcm drivers failes to load for Neomagic o o [2000/04/04] ports/17799 alex new port: lang/jgnat 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 o [2000/04/06] ports/17822 obrien www/netscape47-navigator.us port missing 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/06] kern/17831 FreeBSD 4.0 doesn't detect EpoX 7KXA prop 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] ports/17903 billf Allow CVS_UPDATE to be used with SUP_UPDA 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 o [2000/04/10] bin/17922 steve send-pr should be upgraded 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/15] bin/18030 billf [PATCH] pkg_version thinks 4.04 > 4.1 o [2000/04/17] ports/18057 jmz make install for XFree86-4 fails on alpha o [2000/04/17] gnu/18061 obrien /usr/bin/ld (GNU ld 2.9.1) ignores rpath o [2000/04/18] ports/18073 obrien wget fails to build correctly 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] ports/18093 obrien lang/gcc-devel install error 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 a [2000/04/22] kern/18155 sos [Patch] OPTi FireStar(82C700) 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 a [2000/04/26] docs/18233 asmodai man and nroff -mdoc produce extra blank l 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] ports/18310 obrien ports/devel/cdk install error 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 f [2000/06/01] misc/18934 X11 forwarding not requested with DISPLAY 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 kris 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/02] ports/18977 obrien rsync report end job 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] kern/18994 imp PCMCIA sio will happily attach to a used 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] bin/19019 billf pkg_version -c doesn't honor -l (limit st o [2000/06/05] misc/19037 Keyboard not detected on new install o [2000/06/05] misc/19038 The qpopper port accepts empty X-UIDL: he 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] ports/19064 obrien Xosview broken on AXP Alpha o [2000/06/06] i386/19070 rnordier boot0 displays NTFS partitions as "??" o [2000/06/06] bin/19071 fmt not folding very long lines a [2000/06/06] ports/19082 ports Can't build editors/aXe-6.1.2 o [2000/06/07] misc/19086 pseudo-device vn doesn't work properly wi a [2000/06/07] misc/19087 deischen selects always restart when using threads 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/10] ports/19185 torstenb mail/postfix: manual pages contains !!PRE o [2000/06/10] ports/19193 jfieber Update textproc/jade to C{XX,}FLAGS safe 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 s [2000/06/12] conf/19217 billf Add an IGNORE_LIST to mergemaster. o [2000/06/12] ports/19224 andreas Problem installing p5-Net-SSLeay port 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] docs/19260 asmodai There's no documentation for the files kb o [2000/06/14] ports/19270 asami Ports build mechanism doesn't check wheth o [2000/06/14] kern/19273 dwmalone Syscons has no key for halting the machin o [2000/06/15] ports/19325 tom ports/mail/ezmlm-idx: mysql & pgsql suppo o [2000/06/15] gnu/19326 obrien Fix GCC Target Macro 'i386/freebsd.h'. o [2000/06/15] gnu/19327 obrien Fix to build 'a.out' binary. o [2000/06/16] ports/19333 cwt patch to make amanda24 more userfriendly 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] ports/19434 obrien ports/mail/mutt dumps core 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 kris OpenSSH (as an rsync tunnel) blocks forev o [2000/06/23] docs/19481 doc Serial Communications chapter in Handbook o [2000/06/24] ports/19486 stb net/netatalk fix PLIST 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/25] kern/19511 luigi a typo in ip_fw.c 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/26] ports/19539 obrien ports/editors/vim-lite cannot deinstall p 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] i386/19574 Let badsect recognize character device. o [2000/06/29] misc/19576 obrien [patch] add magic to file(1) to recognise o [2000/06/29] ports/19585 obrien bounce port misconfiguration o [2000/06/29] ports/19591 ports 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] ports/19641 jfitz Newer version of swatch available 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 f [2000/07/02] ports/19659 ports erlang port: proposal for updating the mn o [2000/07/03] ports/19665 max Update port: net/delegate 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] ports/19713 max Update port lang/swi-pl to CFLAGS safeten 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] ports/19757 obrien Update port: http://home.sol.no/~sverrehu o [2000/07/07] bin/19772 df output wrong for union-mounts o [2000/07/07] ports/19780 stb SETI@home port startup script fails o [2000/07/08] kern/19782 dirk mkisofs 1.12.1 (i386-unknown-freebsd4.0) o [2000/07/08] ports/19784 obrien comms/minicom v. 1.83.1 has the wrong che 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 swallace error message w/xcdplayer: ioctl (cdromr f [2000/07/09] kern/19807 incorrect dates o [2000/07/09] ports/19812 mharo [PATCH] LDAP support for proftpd o [2000/07/10] docs/19818 doc /usr/share/man/man8/sysinstall.8 missing o [2000/07/10] ports/19823 obrien 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 f [2000/07/11] ports/19854 ports [PATCH] inclusion of full mozart-oz docum o [2000/07/11] kern/19863 markm Non-blocking IO not supported on /dev/ran o [2000/07/12] kern/19865 sos atapi-cd.c does not check CDIOCREADSUBCHA 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/14] ports/19914 max Update port: net/delegate s [2000/07/15] bin/19959 will new variable modifiers for make(1) o [2000/07/15] kern/19966 new syscons screensaver o [2000/07/16] misc/19971 asmodai bug in /usr/include/sys/socket.h 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/17] docs/19995 doc keymap(5) missing from manual in 3.4-RELE o [2000/07/18] gnu/20004 obrien FBSD4 gcc __attribute__(constructor) not f [2000/07/18] misc/20007 mharo du -hcs * gives different wrong results d o [2000/07/18] misc/20024 jake [PATCH] queue(3) concatenation macros o [2000/07/18] kern/20029 des linprocfs does not accurately emulate Lin o [2000/07/19] bin/20042 "rsh -t" doesn't timeout if rcmd(3) never o [2000/07/19] alpha/20047 alpha FreeBSD does not yet support system type o [2000/07/20] bin/20054 ftpd: rotating _PATH_FTPDSTATFILE losts x o [2000/07/20] ports/20061 ports New Port: Entity - a RAD that work. Its f o [2000/07/20] docs/20067 doc src/sbin/nologin/nologin.5 is bad place o [2000/07/20] bin/20074 darrenr enable STATETOP for ipfstat (ipfilter) o [2000/07/20] bin/20078 obrien No problem o [2000/07/23] docs/20121 jim Better user ppp documentation in man page o [2000/07/23] ports/20122 obrien update pgcc to 2.95.3 o [2000/07/23] misc/20131 obrien Suggested additions to `magic' file 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] bin/20154 quiting more/less on the console early le 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 f [2000/07/25] ports/20170 ports [PATCH] fvwm2-beta update o [2000/07/25] ports/20171 andreas postgresql7 user message contains $PREFIX o [2000/07/25] gnu/20173 steve send-pr(1) cannot override From: address o [2000/07/25] ports/20179 nbm Follow up on ports/20168 o [2000/07/25] ports/20186 nbm New port: fdp-tools o [2000/07/25] bin/20188 brian tcpdump -d enables promisc mode on tun0 a o [2000/07/26] ports/20196 jfitz update: x11-toolkits/p5-Tk to nonbeta f [2000/07/26] kern/20198 luigi log setup of dynamic rules for ipfw o [2000/07/26] conf/20202 darrenr ipfilter hooks in rc.network 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/27] kern/20231 non existing kernel files found in conf/f o [2000/07/28] ports/20240 obrien Update port: net/netcat has bogus master- 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/20267 chuckr Update port: print/transfig to 3.2.3c o [2000/07/28] ports/20270 reg libtool needlessly runs ldconfig after in o [2000/07/28] ports/20275 jmacd Update port: lang/mit-scheme to 7.5.9 (fi 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] docs/20298 doc man 5 keymap missing in 4.1 (Stable) o [2000/07/30] ports/20301 billf New port: irc/ircd-hybrid6 o [2000/07/30] ports/20307 obrien [PATCH] editors/vim5 PLIST needs fix 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] ports/20344 ports [PATCH] Port for QDraw-0.7.tar.gz o [2000/08/01] bin/20345 brian screensaver wont come on if pppctl is run o [2000/08/01] kern/20352 yokota Configuring a synaptics touchpad o [2000/08/01] misc/20354 sos interrupting burncd with ^C o [2000/08/02] ports/20356 mharo Update port: ftp/proftpd o [2000/08/02] ports/20359 ports New port: Apache-mod_perl_guide o [2000/08/02] ports/20364 dburr audio/ripit-atapi can use 'dagrab' instea o [2000/08/02] docs/20369 doc [patch] mountd.8 missing cross-references o [2000/08/02] bin/20371 obrien 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] ports/20435 ports New port: Free EcmaScript Interpreter o [2000/08/05] conf/20436 asmodai Can't make only cd0 under 4.1-STABLE o [2000/08/05] kern/20437 sos IDE on Intel 815E looks like Intel ICH (y o [2000/08/06] docs/20447 doc forcing NFS exports to be updated o [2000/08/06] kern/20448 luigi expired dynamic rules shown in "ipfw get" o [2000/08/06] kern/20451 luigi net.inet.ip.fw.dyn_short_lifetime bound t f [2000/08/07] docs/20453 phantom wrong character set for chinese FAQ o [2000/08/07] misc/20457 davidn pw command doesn't generate random passwo o [2000/08/07] ports/20464 ports Port update of grace to 5.1.1 (included u 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/07] docs/20477 doc Document syslogd's special treatment of k 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/11] ports/20542 ports New Port: Fugu-0.9.9d (http://gale.org/fu o [2000/08/12] ports/20561 dburr [PATCH] x11-fonts/sharefonts typo fix o [2000/08/12] ports/20565 torstenb [PATCH] More docs for postfix o [2000/08/12] bin/20569 sos libvgl tries to free global array o [2000/08/13] ports/20577 thepish update x11-toolkits/xmhtml, please close f [2000/08/13] ports/20582 will New port: tuxracer (3d penguin racing gam o [2000/08/13] ports/20587 ports Update port: upsd-2.0.1.6 o [2000/08/13] ports/20588 ports 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/20602 ports New Ports: Manipulate / fetch info from M 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] docs/20626 des fetch(3) omits some of the env. vars unde o [2000/08/15] ports/20627 jseger tcl83 build is broken o [2000/08/16] bin/20643 dwmalone /usr/bin/kzip is obsolete; remove it? o [2000/08/16] ports/20644 ports Installation of port DAP requires compat3 o [2000/08/16] ports/20658 chuckr Update port: graphics/xpdf to 0.91 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 f [2000/08/16] ports/20665 ports [PATCH] Update PORTVERSION for JadeTeX po 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 f [2000/08/17] ports/20693 ports Two patches for fxtv 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/19] ports/20722 ports New port: x11-fonts/jmk-x11-fonts o [2000/08/19] ports/20723 murray [PATCH] Update port: eterm 0.9 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 f [2000/08/20] ports/20737 ports audio/cdrdao test for pccts has a LOCALBA o [2000/08/20] docs/20738 doc correction and modification to clocks(7) f [2000/08/21] ports/20741 will new port submission o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE o [2000/08/21] ports/20749 stb [PATCH] ports/mail/cyrus update f [2000/08/21] ports/20760 ports unfetchable mail for a resource which is f [2000/08/21] misc/20773 Can NOT run PS after upgrade using CTM o [2000/08/22] conf/20774 sheldonh 'NFS access cache time=2' is not a daemon f [2000/08/22] misc/20778 aio_write function cannot be used. 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/23] misc/20812 obrien Magic file missing EPS binary document su f [2000/08/23] misc/20813 use "|more" will lost one line of datas o [2000/08/24] ports/20821 jmz [PATCH] XDM PAM support should not requir 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] kern/20834 sos Patches and remarks ASUS A7V onboard Prom o [2000/08/25] i386/20845 Cyclades cy driver incompatible with Cycl o [2000/08/25] ports/20849 dec fix port: net/gated o [2000/08/25] ports/20851 torstenb Update port: audio/mpegaudio o [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] ports/20880 ports new fvwm2-beta port o [2000/08/26] bin/20881 kris There's no reason not to build DNSsec-DSA o [2000/08/27] ports/20884 sobomax py-MySQLdb checksums are broken o [2000/08/27] ports/20885 ports new port request o [2000/08/27] ports/20888 stb [PATCH] Miscellaneous fixes for the cyrus 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 s [2000/08/28] misc/20906 darrenr [PATCH] typo in ipmon.8 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] misc/20948 billf /etc/aliases and other changes not known o [2000/08/30] bin/20949 marcel openssl build references non-buildtool, w 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 o [2000/08/31] ports/20968 ports Remove port: graphics/pnmtopng o [2000/08/31] ports/20970 andreas Remove port: print/ghostscript5 o [2000/08/31] ports/20975 ports update math/grace f [2000/09/01] kern/20992 kern/tty_subr.c, b_to_q to a clist with n o [2000/09/02] bin/20993 many ftpd commands not limited to logins f [2000/09/02] ports/20995 sheldonh freeciv-civ gtk make problem. o [2000/09/02] bin/20996 kris permissions on /usr/bin/opiepasswd f [2000/09/02] ports/20997 ports [PATCH] Man page, install enhancements fo f [2000/09/02] ports/20998 ports [PATCH] Enhancements for Xfstt port o [2000/09/02] ports/20999 jmz [PATCH] fix messages in mtools port a [2000/09/02] kern/21000 sheldonh 4.1-STABLE doesn't have card ID o [2000/09/02] ports/21003 ports New Port, modification of tcopy f [2000/09/02] bin/21007 wollman Improve/fix error messages in lpr's recvj o [2000/09/02] bin/21008 sheldonh Fix for lpr's handling of lots of jobs in o [2000/09/03] ports/21013 will [PATCH] Small fix for kdesupport2 PLIST a [2000/09/03] bin/21017 sheldonh mtree "no such file" message at job's end a [2000/09/04] ports/21021 ports graphics/quickpics bogus colorspace error o [2000/09/04] bin/21024 pow() ERANGE bug f [2000/09/04] gnu/21026 obrien gcc bug with -mno-ieee-fp and -march=pent o [2000/09/04] ports/21038 jseger CFengine doesn't install info files o [2000/09/04] ports/21045 se Port Broken: xblast o [2000/09/04] kern/21051 Updating 4.1-RELEASE to -current fails be o [2000/09/04] ports/21052 jseger Update: x11/xscreensaver 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] ports/21081 andreas Update port: devel/SpecTcl o [2000/09/06] bin/21086 joe Annoying little bug using ls -G with f [2000/09/07] ports/21094 will New port: PHP 3.0.16 - standalone interpr o [2000/09/07] ports/21097 ports new port: net/xtradius o [2000/09/08] ports/21113 ports New port; voicetronix unified telephony A o [2000/09/08] ports/21120 grog Update port: x11-servers/x2x o [2000/09/08] ports/21124 markm Updete port: x11-wm/gwm to 1.8d 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 o [2000/09/10] ports/21160 jseger A patch for editors/emacs20 XIM support o [2000/09/10] ports/21168 ports New port: www/apache-contrib s [2000/09/10] bin/21178 ken voltag selector, and unload support for c f [2000/09/10] ports/21179 will New port: math/gul-vdog-qt o [2000/09/11] misc/21204 dwmalone bit_ffc and bit_ffs macros in bitstring.h o [2000/09/11] ports/21211 rse the startup file installed by apache-mods o [2000/09/12] ports/21218 cwt amanda24 should config with --with-buffer 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 o [2000/09/12] misc/21239 murray sysinstall doesn't know that block device f [2000/09/12] kern/21240 mbufs allocated to data is huge number in o [2000/09/12] misc/21241 MAKEDEV on fixit floppy should not reset o [2000/09/12] kern/21242 Koutech PCI dual port serial card patch o [2000/09/12] ports/21243 obrien lsof port fails if $(CC) has a space in i o [2000/09/12] ports/21244 will Update port: emulators/xmame 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 f [2000/09/14] ports/21262 ports Fix port: mail/postfix-current o [2000/09/14] misc/21265 Not a bug, say: feature? o [2000/09/14] misc/21273 PLIP Configuration in sysinstall is broke f [2000/09/14] ports/21286 sobomax [PATCH] ports/graphics/tiff fix o [2000/09/15] misc/21287 "make all" for a jail build fails at lib/ o [2000/09/15] ports/21288 jseger Modify net/trafshow to not destron ${PREF o [2000/09/15] ports/21291 ports New port: Free EcmaScript Interpreter (fe o [2000/09/15] ports/21293 ports An emacs major mode for editing SGML and o [2000/09/15] ports/21296 torstenb [PATCH] INN port is outdated o [2000/09/15] misc/21298 tftpd problem "Socket operation on non-so o [2000/09/16] ports/21307 ports New ports: dsssl-docbook-cygnus-1.44(text 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/16] kern/21317 [PATCH] LINT and NOTES give false default o [2000/09/16] bin/21321 [PATCHES] Finish the job of conditionaliz o [2000/09/17] ports/21324 dirk mysql port out of date o [2000/09/17] ports/21327 ports Initial ports entry for Bayonne IVR serve o [2000/09/17] conf/21339 kris ssh-keygen: not found o [2000/09/18] ports/21341 ports New port: devel/elib-emacs + devel/elib-e o [2000/09/18] ports/21344 fenner ports/benchmark/netperf missing checksum f [2000/09/18] ports/21346 ports ports/biology/platon o [2000/09/18] ports/21348 obrien ports/devel/pccts has a checksum error o [2000/09/18] ports/21350 nakai ports/editors/dedit 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] kern/21362 bmilekic Adds M_RDONLY to external storage mbufs o [2000/09/18] ports/21365 obrien Update port: comms/conserver o [2000/09/18] ports/21366 sobomax Update port: comms/mserver o [2000/09/18] ports/21367 se Update port: comms/yaps o [2000/09/18] ports/21368 flathill Update port: games/xosmulti s [2000/09/18] ports/21371 bp Update port: net/mars_nwe to 0.99.20 o [2000/09/18] ports/21372 nectar Update port: sysutils/doconfig o [2000/09/18] misc/21385 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/18] ports/21392 ports New port: converters/tnef - Unpack data f o [2000/09/19] bin/21394 [PATCH] MAKEDEV creates rocketport specia o [2000/09/19] ports/21396 ports New port: net/ghtool - cmdline interface o [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/19] kern/21410 sos ATA driver problems when UDMA66 is used w o [2000/09/19] ports/21411 ports Cyrus-SASL autodetected DB3, but fails to o [2000/09/20] ports/21412 ports New port: net/yaz o [2000/09/20] ports/21413 ports New port: net/zebra-server o [2000/09/20] ports/21414 ports New port: www/mod_zap o [2000/09/20] ports/21422 ports msql install fails looking for startup sc o [2000/09/20] ports/21435 ports New port Jakarta Ant (A Java based build o [2000/09/20] bin/21436 pkg_install will not compile without erro o [2000/09/20] ports/21439 ports FIX: mail/postfix-current o [2000/09/20] ports/21441 ports FIX: devel/pcre to install a working pgre o [2000/09/21] i386/21452 cg Add speaker volume adjusting support for f [2000/09/21] ports/21455 ports update graphics/giram to 0.1.7 o [2000/09/21] ports/21458 ports MASTER_SITES port update games/crossfire o [2000/09/21] ports/21460 jseger Patch net/trafshow: Allow showing ipv6 p o [2000/09/22] ports/21473 dburr update devel/SN to 4.5.2, not from mainta o [2000/09/22] ports/21475 ports Port broken: xlockmore 4.17.2 o [2000/09/22] bin/21476 ftp in 4.1-STABLE fails on http:// URLs o [2000/09/22] ports/21477 ports New port: xmms-crossfade o [2000/09/22] ports/21482 ports New port: games/gnurobots o [2000/09/22] ports/21488 ports New port: bmsync, a bookmark converter o [2000/09/22] conf/21489 /etc/pccard_ether feature request o [2000/09/22] ports/21491 billf Too old ethreal version, please update to o [2000/09/22] ports/21493 obrien Updated port emulators/spim 5.9 -> 6.2 o [2000/09/22] misc/21494 ftpd doesn't count o [2000/09/23] ports/21497 ports New addition to ports/ 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] ports/21517 ports start|stop script for upsd (/usr/local/et o [2000/09/24] misc/21518 phantom missed some parametrs 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] ports/21526 billf update graphics/qiv to 1.5, non-maintaine o [2000/09/24] misc/21528 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/24] misc/21534 ipfw + bridging + 4.x release = crash 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 o [2000/09/25] docs/21542 doc sigaction(2) man page is misleading o [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] ports/21549 gj Update ports: XEmacs21-21.1.12 o [2000/09/25] conf/21551 /etc/services needs a kpop entry o [2000/09/25] ports/21555 ports [PATCH] citrix_ica upgrade to version 6.0 o [2000/09/26] ports/21557 ports New port: MagicCube4D - four-dimensional o [2000/09/26] ports/21558 ports Skill fails to ID os and fails build o [2000/09/26] bin/21567 bmah [PATCH] pkg_version -v confuzzled by mult o [2000/09/26] bin/21570 [PATCH] Add -r option to /usr/bin/mail, q o [2000/09/26] ports/21575 jseger Update port: graphics/ImageMagick to 5.2. 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/21594 ports New port: command line SMTP agent o [2000/09/27] ports/21598 ports port of wm x10 controller o [2000/09/27] ports/21602 ports misc/sls port lost distfile (by maintaine o [2000/09/27] ports/21604 ports new port: java/jad o [2000/09/28] ports/21621 reg Update port: devel/libtool to 1.3.5 o [2000/09/28] kern/21623 wpaul Chipset SiS630E / NIC SiS 900 o [2000/09/28] kern/21627 sos Chipset SiS630E / ATA SiS 5591 o [2000/09/28] misc/21629 jkh Duplicate fortune in fortune datafile o [2000/09/28] ports/21630 ports Update of games/KnightCap to recognize CC o [2000/09/28] misc/21634 alex worms(6) ignores -d option s [2000/09/28] ports/21636 ade gnomelibs PLIST bug o [2000/09/28] misc/21639 It's to easy to accidently tag a pr as Co o [2000/09/28] ports/21641 ports Port update: fetchmail 5.5.3 o [2000/09/29] misc/21644 /usr/include/sys/mman.h uses a type defin o [2000/09/29] ports/21648 ports new port: gnometoaster f [2000/09/29] conf/21649 brian [Patch] rc.conf knob for unaligned access o [2000/09/29] bin/21650 dwmalone inetd doesn't take notice of new auth wit o [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/09/30] bin/21661 kris 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/01] ports/21681 ports the startup elisp file of PSGML port has o [2000/10/01] kern/21683 Unable to compile kernel after CVSUP. CVS o [2000/10/01] gnu/21685 remote gdb: ptrace(PT_GETDBREGS) failed: o [2000/10/02] ports/21691 ports New port: chinese/linux_base o [2000/10/02] conf/21695 ifconfig_XXX_aliasY in rc.conf; Y must be o [2000/10/02] misc/21699 sos ad4: READ command timeout - resetting\n a 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] ports/21711 ports New port: unadf - unzip-like tool for .ad 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/02] ports/21720 ports Update port to use ADNS. o [2000/10/03] conf/21722 The mixer settings are lost on sysetm reb o [2000/10/03] docs/21724 doc man page is wrong in src/share/man/man4/m 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/03] kern/21741 roger Unable to use the BROOKTREE_ALLOC_PAGES k o [2000/10/04] ports/21749 will Update port: audio/cd2mp3 Update to cd2m 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/21755 ports update editors/nano to 0.9.19 o [2000/10/04] ports/21759 ports New port: py-BisonGen-0.5.0 o [2000/10/04] ports/21760 ports New port: py-4Suite-0.9.0 o [2000/10/04] docs/21762 doc mailing list archiving or retrieval broke o [2000/10/04] ports/21763 ports new port o [2000/10/05] ports/21765 ports I cat't make ports using Message-Id: <200010162120.OAA41899@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, markm@FreeBSD.org Subject: Re: gnu/22025: perl does chmod in installworld Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: perl does chmod in installworld Responsible-Changed-From-To: freebsd-bugs->markm Responsible-Changed-By: johan Responsible-Changed-When: Mon Oct 16 14:19:35 PDT 2000 Responsible-Changed-Why: Over to perl maintainer who might know if pern install should use chmod. http://www.freebsd.org/cgi/query-pr.cgi?pr=22025 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 14:22:56 2000 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 6AB6437B502; Mon, 16 Oct 2000 14:22:55 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA42941; Mon, 16 Oct 2000 14:22:55 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Mon, 16 Oct 2000 14:22:55 -0700 (PDT) From: Message-Id: <200010162122.OAA42941@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, darrenr@FreeBSD.org Subject: Re: kern/22024: Merge IPFilter 3.4.11 into 4-STABLE as 3.4.8 FTP proxy is broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Merge IPFilter 3.4.11 into 4-STABLE as 3.4.8 FTP proxy is broken Responsible-Changed-From-To: freebsd-bugs->darrenr Responsible-Changed-By: johan Responsible-Changed-When: Mon Oct 16 14:22:30 PDT 2000 Responsible-Changed-Why: Over to ipfilter maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=22024 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 16: 0: 6 2000 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 65A7237B66C for ; Mon, 16 Oct 2000 16:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA77753; Mon, 16 Oct 2000 16:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.educ.utas.edu.au (mail.educ.utas.edu.au [144.6.57.106]) by hub.freebsd.org (Postfix) with ESMTP id B000037B66E for ; Mon, 16 Oct 2000 15:58:08 -0700 (PDT) Received: (from root@localhost) by mail.educ.utas.edu.au (8.11.1/8.11.1) id e9GN0wL24904; Tue, 17 Oct 2000 10:00:58 +1100 (EST) (envelope-from brook) Message-Id: <200010162300.e9GN0wL24904@mail.educ.utas.edu.au> Date: Tue, 17 Oct 2000 10:00:58 +1100 (EST) From: Brook.Schofield@bigfoot.com Reply-To: Brook.Schofield@bigfoot.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/22033: pw [PATCH] to allow encrypted password to be entered via fd Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22033 >Category: bin >Synopsis: [PATCH] to pw(8) to allow encrypted password to be entered via fd >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 Oct 16 16:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Brook Schofield >Release: FreeBSD 4.1.1-STABLE i386 >Organization: University of Tasmania >Environment: FreeBSD 4.1.1-STABLE i386 >Description: pw(8) doesn't allow an already encrypted password to be added to the password file. This patch allows such by modifying the activity of '-w method' to allow 'crypt' option which causes '-h' to read the password literally and include in the password file, with the exception of an input containing a ':'. >How-To-Repeat: Apply the following patch to pw >Fix: diff -ur pw_dir/pw.8 pw_dir2/pw.8 --- pw_dir/pw.8 Fri Mar 3 01:53:37 2000 +++ pw_dir2/pw.8 Tue Oct 17 00:09:23 2000 @@ -604,6 +604,9 @@ force a blank password .It random generate a random password +.It crypt +the supplied password is encrypted. Suitable only with +.Ql Fl h .El .Pp The diff -ur pw_dir/pw_conf.c pw_dir2/pw_conf.c --- pw_dir/pw_conf.c Sun Jul 16 11:48:12 2000 +++ pw_dir2/pw_conf.c Tue Oct 17 00:14:48 2000 @@ -187,6 +187,11 @@ return -1; if (strcmp(str, "none") == 0) return -2; + /* + * Special case for encrypted password + */ + if (strcmp(str, "crypt") == 0) + return -3; } return dflt; } diff -ur pw_dir/pw_group.c pw_dir2/pw_group.c --- pw_dir/pw_group.c Thu Jun 29 05:19:04 2000 +++ pw_dir2/pw_group.c Tue Oct 17 09:52:20 2000 @@ -196,7 +196,16 @@ *p = '\0'; if (!*line) errx(EX_DATAERR, "empty password read on file descriptor %d", fd); - grp->gr_passwd = pw_pwcrypt(line); + if (((arg = getarg(args, 'w')) != NULL) && + (boolean_val(arg->val, cnf->default_password) == -3)) { + int i; + for (i = 0; i < strlen(line); i++) { + if (line[i] == ':') + return EX_DATAERR; + } + grp->gr_passwd = line; + } else + grp->gr_passwd = pw_pwcrypt(line); } } diff -ur pw_dir/pw_user.c pw_dir2/pw_user.c --- pw_dir/pw_user.c Wed Oct 11 14:57:59 2000 +++ pw_dir2/pw_user.c Tue Oct 17 09:50:53 2000 @@ -643,12 +643,24 @@ *p = '\0'; if (!*line) errx(EX_DATAERR, "empty password read on file descriptor %d", fd); - lc = login_getpwclass(pwd); - if (lc == NULL || - login_setcryptfmt(lc, "md5", NULL) == NULL) - warn("setting crypt(3) format"); - login_close(lc); - pwd->pw_passwd = pw_pwcrypt(line); + /* check for encrypted/literal password in file descriptor */ + if (((arg = getarg(args, 'w')) != NULL) && + (boolean_val(arg->val, cnf->default_password) == -3)) { + int i; + /* password is encrypted - check for ':' in password */ + for (i = 0; i < strlen(line); i++) { + if (line[i] == ':') + return EX_DATAERR; + } + pwd->pw_passwd = line; + } else { + lc = login_getpwclass(pwd); + if (lc == NULL || + login_setcryptfmt(lc, "md5", NULL) == NULL) + warn("setting crypt(3) format"); + login_close(lc); + pwd->pw_passwd = pw_pwcrypt(line); + } edited = 1; } } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 17:30: 7 2000 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 58B3C37B66F for ; Mon, 16 Oct 2000 17:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA11137; Mon, 16 Oct 2000 17:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 51B1C37B66D; Mon, 16 Oct 2000 17:20:25 -0700 (PDT) Message-Id: <20001017002025.51B1C37B66D@hub.freebsd.org> Date: Mon, 16 Oct 2000 17:20:25 -0700 (PDT) From: stevedav@pacbell.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/22034: nfsstat lacks useful features found in Solaris7 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22034 >Category: bin >Synopsis: nfsstat lacks useful features found in Solaris7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: wish >Submitter-Id: current-users >Arrival-Date: Mon Oct 16 17:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Steve Davidson >Release: FreeBSD 4.1.1-RELEASE >Organization: >Environment: FreeBSD 4.1.1-RELEASE >Description: nfsstat on FreeBSD lacks the following useful options/features, taken directly from the Solaris 7 man page: -m Display statistics for each NFS mounted file sys- tem. This includes the server name and address, mount flags, current read and write sizes, the retransmission count, and the timers used for dynamic retransmission. The srtt value contains the smoothed round trip time, the dev value con- tains the estimated deviation, and the cur value is the current backed-off retransmission value. Here are what the stats look like (this is sweet): /m/t from ro:/ Flags: vers=2,proto=udp,sec=sys,hard,intr,dynamic,rsize=1024,wsize=1024,retrans=5 Lookups: srtt=1 (2ms), dev=1 (5ms), cur=0 (0ms) Reads: srtt=7 (17ms), dev=3 (15ms), cur=2 (40ms) /m/k from kahuna:/ Flags: vers=3,proto=tcp,sec=sys,hard,intr,link,symlink,acl,rsize=32768,wsize=32768,retrans=5 And: -z Zero (reinitialize) statistics. This option is for use by the super user only, and can be combined with any of the above options to zero particular sets of statistics after printing them. The -z option helps diagnose NSF performance problems. The only way to zero the nfs stats right now is to reboot. It gets even better: -r Display RPC information. This is a minor improvement; it reduces the total info to RPC data only. >How-To-Repeat: 1. Compare the FreeBSD and Solaris man pages for nfsstat. 2. Try to debug an NFS performance problem with FreeBSD, then use Solaris. >Fix: Add options/feature(s) to the code. >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 Oct 16 20:10: 7 2000 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 3942A37B4F9 for ; Mon, 16 Oct 2000 20:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA68554; Mon, 16 Oct 2000 20:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 16 Oct 2000 20:10:02 -0700 (PDT) Message-Id: <200010170310.UAA68554@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ryan Younce Subject: Re: kern/21791 Reply-To: Ryan Younce Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21791; it has been noted by GNATS. From: Ryan Younce To: freebsd-gnats-submit@FreeBSD.org, "jd @ dynw . com?subject=Re":%20kern/21791:%20Hang%20on%20FIN%5FWAIT%5F%32@cheshire.manunkind.org Cc: Subject: Re: kern/21791 Date: Mon, 16 Oct 2000 23:08:54 -0400 From what I can tell, this is not a fault with FreeBSD but a fault with the remote server. The remote server fails to send a final FIN to the client, and the state of the connection remains in FIN_WAIT_2 indefinitely. The same situation was reproduced with www.freebsd.org, and it succeeded in proceeding to the TIME_WAIT state. Thus, from what I can tell, faulty TCP implementations on remote machines will cause FreeBSD to hold connections in a FIN_WAIT_2 state for an indefinite period of time (I believe the OP said something on the order of several days). I have written a patch that pseudo-corrects this by not only testing whether or not the state is not TIME_WAIT (in sys/netinet/tcp_timer.c) but also if it is less than FIN_WAIT_2 (thus ruling out FIN_WAIT_2 or TIME_WAIT). I tested this with FreeBSD 4.1.1-RELEASE and the FIN_WAIT_2's dropped out of netstat's output after 10 minutes (which the TCP code states it should do), even with the faulty remote server's implementation. Please review this code. It has not been tested for current but it has been diffed with current sources. The affected line has been tested with 4.1.1 RELEASE and has at least indicated correct behavior. If somebody out there with greater knowledge of TCP/IP networking sees a flaw, please bring this up. This marks my first attempt at debugging BSD networking kernel code so any suggestions would be appreciated. Thank you. Ryan Younce --- tcp_timer.c.orig Mon Oct 2 18:28:49 2000 +++ tcp_timer.c Mon Oct 16 22:31:55 2000 @@ -201,10 +201,10 @@ /* * 2 MSL timeout in shutdown went off. If we're closed but * still waiting for peer to close and connection has been idle - * too long, or if 2MSL time is up from TIME_WAIT, delete connection - * control block. Otherwise, check again in a bit. + * too long, or if 2MSL time is up from TIME_WAIT or FIN_WAIT_2, + * delete connection control block. Otherwise, check again in a bit. */ - if (tp->t_state != TCPS_TIME_WAIT && + if (tp->t_state < TCPS_FIN_WAIT_2 && (ticks - tp->t_rcvtime) <= tcp_maxidle) callout_reset(tp->tt_2msl, tcp_keepintvl, tcp_timer_2msl, tp); -- Ryan "Cheshire" Younce | ryan@manunkind.org | http://www.manunkind.org/~ryan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 20:20: 7 2000 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 2CB9637B4FE for ; Mon, 16 Oct 2000 20:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA71827; Mon, 16 Oct 2000 20:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 16 Oct 2000 20:20:02 -0700 (PDT) Message-Id: <200010170320.UAA71827@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ryan Younce Subject: Re: kern/21791 Reply-To: Ryan Younce Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21791; it has been noted by GNATS. From: Ryan Younce To: freebsd-gnats-submit@FreeBSD.org, "jd @ dynw . com?subject=Re":%20kern/21791:%20Hang%20on%20FIN%5FWAIT%5F%32@cheshire.manunkind.org Cc: Subject: Re: kern/21791 Date: Mon, 16 Oct 2000 23:11:44 -0400 From what I can tell, this is not a fault with FreeBSD but a fault with the remote server. The remote server fails to send a final FIN to the client, and the state of the connection remains in FIN_WAIT_2 indefinitely. The same situation was reproduced with www.freebsd.org, and it succeeded in proceeding to the TIME_WAIT state. Thus, from what I can tell, faulty TCP implementations on remote machines will cause FreeBSD to hold connections in a FIN_WAIT_2 state for an indefinite period of time (I believe the OP said something on the order of several days). I have written a patch that pseudo-corrects this by not only testing whether or not the state is not TIME_WAIT (in sys/netinet/tcp_timer.c) but also if it is less than FIN_WAIT_2 (thus ruling out FIN_WAIT_2 or TIME_WAIT). I tested this with FreeBSD 4.1.1-RELEASE and the FIN_WAIT_2's dropped out of netstat's output after 10 minutes (which the TCP code states it should do), even with the faulty remote server's implementation. Please review this code. It has not been tested for current but it has been diffed with current sources. The affected line has been tested with 4.1.1 RELEASE and has at least indicated correct behavior. If somebody out there with greater knowledge of TCP/IP networking sees a flaw, please bring this up. This marks my first attempt at debugging BSD networking kernel code so any suggestions would be appreciated. Thank you. Ryan Younce --- tcp_timer.c.orig Mon Oct 2 18:28:49 2000 +++ tcp_timer.c Mon Oct 16 22:31:55 2000 @@ -201,10 +201,10 @@ /* * 2 MSL timeout in shutdown went off. If we're closed but * still waiting for peer to close and connection has been idle - * too long, or if 2MSL time is up from TIME_WAIT, delete connection - * control block. Otherwise, check again in a bit. + * too long, or if 2MSL time is up from TIME_WAIT or FIN_WAIT_2, + * delete connection control block. Otherwise, check again in a bit. */ - if (tp->t_state != TCPS_TIME_WAIT && + if (tp->t_state < TCPS_FIN_WAIT_2 && (ticks - tp->t_rcvtime) <= tcp_maxidle) callout_reset(tp->tt_2msl, tcp_keepintvl, tcp_timer_2msl, tp); -- Ryan Younce / Registered Libertarian Voter | The notion of a 'record' is ryan@manunkind.org www.manunkind.org/~ryan/ | an obsolete remnant of the ICQ H:4433228 W:74390437 AIM:CheshireCoolCat | days of the 80-column card. Blitherings: http://cheshire.livejournal.com/ | -- Dennis M. Ritchie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 20:20: 9 2000 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 2EB3737B657 for ; Mon, 16 Oct 2000 20:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA71836; Mon, 16 Oct 2000 20:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 16 Oct 2000 20:20:03 -0700 (PDT) Message-Id: <200010170320.UAA71836@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ryan Younce Subject: Re: kern/21791 Reply-To: Ryan Younce Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21791; it has been noted by GNATS. From: Ryan Younce To: freebsd-gnats-submit@FreeBSD.org, "jd@dynw.com?subject=Re":%20kern/21791:%20Hang%20on%20FIN%5FWAIT%5F@32.FreeBSD.ORG Cc: Subject: Re: kern/21791 Date: Mon, 16 Oct 2000 23:13:33 -0400 (EDT) From what I can tell, this is not a fault with FreeBSD but a fault with the remote server. The remote server fails to send a final FIN to the client, and the state of the connection remains in FIN_WAIT_2 indefinitely. The same situation was reproduced with www.freebsd.org, and it succeeded in proceeding to the TIME_WAIT state. Thus, from what I can tell, faulty TCP implementations on remote machines will cause FreeBSD to hold connections in a FIN_WAIT_2 state for an indefinite period of time (I believe the OP said something on the order of several days). I have written a patch that pseudo-corrects this by not only testing whether or not the state is not TIME_WAIT (in sys/netinet/tcp_timer.c) but also if it is less than FIN_WAIT_2 (thus ruling out FIN_WAIT_2 or TIME_WAIT). I tested this with FreeBSD 4.1.1-RELEASE and the FIN_WAIT_2's dropped out of netstat's output after 10 minutes (which the TCP code states it should do), even with the faulty remote server's implementation. Please review this code. It has not been tested for current but it has been diffed with current sources. The affected line has been tested with 4.1.1 RELEASE and has at least indicated correct behavior. If somebody out there with greater knowledge of TCP/IP networking sees a flaw, please bring this up. This marks my first attempt at debugging BSD networking kernel code so any suggestions would be appreciated. Thank you. Ryan Younce --- tcp_timer.c.orig Mon Oct 2 18:28:49 2000 +++ tcp_timer.c Mon Oct 16 22:31:55 2000 @@ -201,10 +201,10 @@ /* * 2 MSL timeout in shutdown went off. If we're closed but * still waiting for peer to close and connection has been idle - * too long, or if 2MSL time is up from TIME_WAIT, delete connection - * control block. Otherwise, check again in a bit. + * too long, or if 2MSL time is up from TIME_WAIT or FIN_WAIT_2, + * delete connection control block. Otherwise, check again in a bit. */ - if (tp->t_state != TCPS_TIME_WAIT && + if (tp->t_state < TCPS_FIN_WAIT_2 && (ticks - tp->t_rcvtime) <= tcp_maxidle) callout_reset(tp->tt_2msl, tcp_keepintvl, tcp_timer_2msl, tp); -- Ryan Younce / Registered Libertarian Voter | The notion of a 'record' is ryan@manunkind.org www.manunkind.org/~ryan/ | an obsolete remnant of the ICQ H:4433228 W:74390437 AIM:CheshireCoolCat | days of the 80-column card. Blitherings: http://cheshire.livejournal.com/ | -- Dennis M. Ritchie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 20:20:13 2000 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 5214F37B4F9 for ; Mon, 16 Oct 2000 20:20:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA71847; Mon, 16 Oct 2000 20:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 16 Oct 2000 20:20:04 -0700 (PDT) Message-Id: <200010170320.UAA71847@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ryan Younce Subject: Re: kern/21791: Hang on FIN_WAIT_2 Reply-To: Ryan Younce Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21791; it has been noted by GNATS. From: Ryan Younce To: freebsd-gnats-submit@FreeBSD.org, jd@dynw.com Cc: Subject: Re: kern/21791: Hang on FIN_WAIT_2 Date: Mon, 16 Oct 2000 23:19:04 -0400 From what I can tell, this is not a fault with FreeBSD but a fault with the remote server. The remote server fails to send a final FIN to the client, and the state of the connection remains in FIN_WAIT_2 indefinitely. The same situation was reproduced with www.freebsd.org, and it succeeded in proceeding to the TIME_WAIT state. Thus, from what I can tell, faulty TCP implementations on remote machines will cause FreeBSD to hold connections in a FIN_WAIT_2 state for an indefinite period of time (I believe the OP said something on the order of several days). I have written a patch that pseudo-corrects this by not only testing whether or not the state is not TIME_WAIT (in sys/netinet/tcp_timer.c) but also if it is less than FIN_WAIT_2 (thus ruling out FIN_WAIT_2 or TIME_WAIT). I tested this with FreeBSD 4.1.1-RELEASE and the FIN_WAIT_2's dropped out of netstat's output after 10 minutes (which the TCP code states it should do), even with the faulty remote server's implementation. Please review this code. It has not been tested for current but it has been diffed with current sources. The affected line has been tested with 4.1.1 RELEASE and has at least indicated correct behavior. If somebody out therewith greater knowledge of TCP/IP networking sees a flaw, please bring this up. This marks my first attempt at debugging BSD networking kernel code so any suggestions would be appreciated. Thank you. Ryan Younce *** tcp_timer.c.orig Mon Oct 2 18:28:49 2000 --- tcp_timer.c Mon Oct 16 22:31:55 2000 *************** *** 201,210 **** /* * 2 MSL timeout in shutdown went off. If we're closed but * still waiting for peer to close and connection has been idle ! * too long, or if 2MSL time is up from TIME_WAIT, delete connection ! * control block. Otherwise, check again in a bit. */ ! if (tp->t_state != TCPS_TIME_WAIT && (ticks - tp->t_rcvtime) <= tcp_maxidle) callout_reset(tp->tt_2msl, tcp_keepintvl, tcp_timer_2msl, tp); --- 201,210 ---- /* * 2 MSL timeout in shutdown went off. If we're closed but * still waiting for peer to close and connection has been idle ! * too long, or if 2MSL time is up from TIME_WAIT or FIN_WAIT_2, ! * delete connection control block. Otherwise, check again in a bit. */ ! if (tp->t_state < TCPS_FIN_WAIT_2 && (ticks - tp->t_rcvtime) <= tcp_maxidle) callout_reset(tp->tt_2msl, tcp_keepintvl, tcp_timer_2msl, tp); -- Ryan Younce ryan@manunkind.org http://www.manunkind.org/~ryan "B can be thought of as C without types; more accurately, it is BCPL squeezed into 8K bytes of memory and filtered through Thompson's brain." --Dennis Ritchie, "The Development of the C Language", 1993 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 20:30: 6 2000 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 9749137B4D7 for ; Mon, 16 Oct 2000 20:30:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA75044; Mon, 16 Oct 2000 20:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 16 Oct 2000 20:30:03 -0700 (PDT) Message-Id: <200010170330.UAA75044@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ryan Younce Subject: Re: kern/21791: Hang on FIN_WAIT_2 Reply-To: Ryan Younce Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21791; it has been noted by GNATS. From: Ryan Younce To: freebsd-gnats-submit@FreeBSD.org, jd@dynw.com Cc: Subject: Re: kern/21791: Hang on FIN_WAIT_2 Date: Mon, 16 Oct 2000 23:24:22 -0400 I don't know for certain if that patch will work. Here's a context one generated via diff -r -c. Sorry about that. Ryan *** tcp_timer.c.orig Mon Oct 2 18:28:49 2000 --- tcp_timer.c Mon Oct 16 22:31:55 2000 *************** *** 201,210 **** /* * 2 MSL timeout in shutdown went off. If we're closed but * still waiting for peer to close and connection has been idle ! * too long, or if 2MSL time is up from TIME_WAIT, delete connection ! * control block. Otherwise, check again in a bit. */ ! if (tp->t_state != TCPS_TIME_WAIT && (ticks - tp->t_rcvtime) <= tcp_maxidle) callout_reset(tp->tt_2msl, tcp_keepintvl, tcp_timer_2msl, tp); --- 201,210 ---- /* * 2 MSL timeout in shutdown went off. If we're closed but * still waiting for peer to close and connection has been idle ! * too long, or if 2MSL time is up from TIME_WAIT or FIN_WAIT_2, ! * delete connection control block. Otherwise, check again in a bit. */ ! if (tp->t_state < TCPS_FIN_WAIT_2 && (ticks - tp->t_rcvtime) <= tcp_maxidle) callout_reset(tp->tt_2msl, tcp_keepintvl, tcp_timer_2msl, tp); -- Ryan Younce ryan@manunkind.org http://www.manunkind.org/~ryan "B can be thought of as C without types; more accurately, it is BCPL squeezed into 8K bytes of memory and filtered through Thompson's brain." --Dennis Ritchie, "The Development of the C Language", 1993 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 16 21:20: 6 2000 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 CD23137B4FE for ; Mon, 16 Oct 2000 21:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA92884; Mon, 16 Oct 2000 21:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 9FC9F37B4F9; Mon, 16 Oct 2000 21:17:12 -0700 (PDT) Message-Id: <20001017041712.9FC9F37B4F9@hub.freebsd.org> Date: Mon, 16 Oct 2000 21:17:12 -0700 (PDT) From: david@mu.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/22038: Default location of named.pid file assumes named is running as root Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22038 >Category: conf >Synopsis: Default location of named.pid file assumes named is running as root >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 Oct 16 21:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: David Drum >Release: 4.1-STABLE >Organization: The Paul Saab Fan Club >Environment: FreeBSD gladden.mouseplanet.com 4.1-STABLE FreeBSD 4.1-STABLE #2: Tue Sep 5 05:11:37 CDT 2000 root@gladden.mouseplanet.com:/usr/src/sys/compile/GLADDEN i386 >Description: Default location for named's pid file is /var/run, which is owned by root. This conflicts with named when it is launched with -u bind. Named is able to create /var/run/named.pid at startup, but generates an error upon "ndc reload": named[113]: couldn't create pid file '/var/run/named.pid' >How-To-Repeat: Set up named to run "-u bind". Run named. Run "ndc reload". tail /var/log/messages >Fix: Move the pid file into a subdirectory that can be chowned to bind: *** Makefile.inc.orig Mon Oct 16 23:09:11 2000 --- Makefile.inc Mon Oct 16 23:09:27 2000 *************** *** 9,15 **** VER!= cat ${BIND_DIR}/Version PS= ps ! PIDDIR= /var/run DESTETC= /etc/namedb DESTEXEC= /usr/libexec DESTRUN= /var/run --- 9,15 ---- VER!= cat ${BIND_DIR}/Version PS= ps ! PIDDIR= /var/run/named DESTETC= /etc/namedb DESTEXEC= /usr/libexec DESTRUN= /var/run >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 Oct 16 22:50: 6 2000 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 1DAAA37B4F9 for ; Mon, 16 Oct 2000 22:50:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA27761; Mon, 16 Oct 2000 22:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 16 Oct 2000 22:50:04 -0700 (PDT) Message-Id: <200010170550.WAA27761@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andy Farkas Subject: Re: conf/22038: Default location of named.pid file assumes named is running as root Reply-To: Andy Farkas Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/22038; it has been noted by GNATS. From: Andy Farkas To: david@mu.org Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: conf/22038: Default location of named.pid file assumes named is running as root Date: Tue, 17 Oct 2000 16:42:06 +1100 (EST) > Move the pid file into a subdirectory that can be chowned to bind: I like this idea. -- :{ andyf@speednet.com.au Andy Farkas System Administrator Speednet Communications http://www.speednet.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 0:10: 6 2000 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 9B87237B4F9 for ; Tue, 17 Oct 2000 00:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA58013; Tue, 17 Oct 2000 00:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nejimaki2m.pfu.co.jp (nejimaki2m.pfu.co.jp [202.248.171.151]) by hub.freebsd.org (Postfix) with ESMTP id 8148537B4C5 for ; Tue, 17 Oct 2000 00:05:27 -0700 (PDT) Received: from scansend.pfu.co.jp ([10.232.16.32]) by nejimaki2m.pfu.co.jp (8.9.3/3.7W-99121211) with ESMTP id QAA21326 for ; Tue, 17 Oct 2000 16:05:23 +0900 (JST) Received: from capella2.pfu.co.jp (interscan2.pfu.co.jp [10.232.16.31]) by scansend.pfu.co.jp (8.9.3/3.7W-99120918) with ESMTP id QAA21752 for ; Tue, 17 Oct 2000 16:05:23 +0900 (JST) Received: from mat2.tokyo.pfu.co.jp (mat2.tokyo.pfu.co.jp [10.232.139.103]) by capella2.pfu.co.jp (8.9.3/3.7W-00092514) with ESMTP id QAA04853 for ; Tue, 17 Oct 2000 16:05:22 +0900 (JST) Received: (from root@localhost) by mat2.tokyo.pfu.co.jp (8.9.3/8.9.3) id QAA33349; Tue, 17 Oct 2000 16:05:48 +0900 (JST) (envelope-from mat) Message-Id: <200010170705.QAA33349@mat2.tokyo.pfu.co.jp> Date: Tue, 17 Oct 2000 16:05:48 +0900 (JST) From: Matsumura Naoki To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/22040: Make sysinstall refer to environment variable `releaseName' Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22040 >Category: misc >Synopsis: Make sysinstall refer to environment variable `releaseName' >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 Oct 17 00:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Matsumura Naoki >Release: FreeBSD 4.1-RELEASE i386 >Organization: PFU Limited. >Environment: FreeBSD 4.1-RELEASE i386 >Description: I use FreeBSD 4.1-RELEASE. But, there is only 4.1.1-RELEASE on anonymous ftp server in our intranet. So, I want to force /stand/sysinstall to get packages of 4.1.1-RELEASE. But, current sysinstall doesn't refer environment variable to determine release name. >How-To-Repeat: >Fix: I made patchs to refer sysinstall environment variable `releaseName'. % diff -u install.c.org install.c --- install.c.org Tue Oct 17 15:41:00 2000 +++ install.c Tue Oct 17 15:41:10 2000 @@ -1021,7 +1021,12 @@ char *cp; /* Set default startup options */ - variable_set2(VAR_RELNAME, getRelname(), 0); + cp = getenv(VAR_RELNAME); + if (cp) + variable_set2(VAR_RELNAME, cp, 0); + else + variable_set2(VAR_RELNAME, getRelname(), 0); + variable_set2(VAR_CPIO_VERBOSITY, "high", 0); variable_set2(VAR_KGET, "YES", 0); variable_set2(VAR_TAPE_BLOCKSIZE, DEFAULT_TAPE_BLOCKSIZE, 0); % diff -u sysinstall.8.org sysinstall.8 --- sysinstall.8.org Tue Oct 17 14:39:48 2000 +++ sysinstall.8 Tue Oct 17 15:33:11 2000 @@ -136,6 +136,8 @@ .nf /stand/sysinstall _ftpPath=ftp://ziggy/pub/ mediaSetFTP configPackages +/stand/sysinstall _ftpPath=ftp://ziggy/pub/ mediaSetFTP \\ + releaseName=4.1-RELEASE configPackages .fi Would initialize @@ -839,6 +841,10 @@ full system installation has just been done. .El .El +.It releaseName +Configure release name, e.g. `4.1.1-RELEASE'. +.Pp +\fBVariables:\fR None .Sh FILES This utility may edit the contents of .Pa /etc/rc.conf , >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 Oct 17 1:40: 4 2000 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 B1D7D37B4D7 for ; Tue, 17 Oct 2000 01:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA89963; Tue, 17 Oct 2000 01:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 17 Oct 2000 01:40:02 -0700 (PDT) Message-Id: <200010170840.BAA89963@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: conf/22038: Default location of named.pid file assumes named is running as root Reply-To: Dag-Erling Smorgrav Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/22038; it has been noted by GNATS. From: Dag-Erling Smorgrav To: david@mu.org Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: conf/22038: Default location of named.pid file assumes named is running as root Date: 17 Oct 2000 10:33:15 +0200 david@mu.org writes: > Move the pid file into a subdirectory that can be chowned to bind: This does not help if named runs chrooted, which it should. (I have patches to make it run in a jail, BTW) DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 2: 0: 6 2000 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 D264F37B4F9 for ; Tue, 17 Oct 2000 02:00:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA96493; Tue, 17 Oct 2000 02:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 17 Oct 2000 02:00:03 -0700 (PDT) Message-Id: <200010170900.CAA96493@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Malone Subject: Re: conf/22038: Default location of named.pid file assumes named is running as root Reply-To: David Malone Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/22038; it has been noted by GNATS. From: David Malone To: david@mu.org Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: conf/22038: Default location of named.pid file assumes named is running as root Date: Tue, 17 Oct 2000 09:59:51 +0100 On Mon, Oct 16, 2000 at 09:17:12PM -0700, david@mu.org wrote: [Your message containted some very long lines, so I wrapped them] > Default location for named's pid file is /var/run, which is owned > by root. This conflicts with named when it is launched with -u > bind. Named is able to create /var/run/named.pid at startup, but > generates an error upon "ndc reload": According to the docs you can tell named where to put it's pid file by adding: pid-file "/var/run/named/named.pid"; to the "options" section of the config file. Changig the default location of the PID file is a bad idea as it will break lots of local scripts people have written. Is this option OK for what you want? (Bind docs are in /usr/src/contrib/bind/doc/) David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 3:40: 8 2000 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 07E3A37B4D7 for ; Tue, 17 Oct 2000 03:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA33670; Tue, 17 Oct 2000 03:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id B985337B4E5; Tue, 17 Oct 2000 03:31:45 -0700 (PDT) Message-Id: <20001017103145.B985337B4E5@hub.freebsd.org> Date: Tue, 17 Oct 2000 03:31:45 -0700 (PDT) From: opentrax@email.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/22041: File access failes and confused with multiple CDROM drive (DMR-600) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22041 >Category: misc >Synopsis: File access failes and confused with multiple CDROM drive (DMR-600) >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 Oct 17 03:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jesse Monroy >Release: 3.4 >Organization: Digital Marshalls >Environment: FreeBSD biggie.mozie.org 3.4-RELEASE FreeBSD 3.4-RELEASE #0: Mon Aug 28 08:29:03 PDT 2000 jessem@biggie.mozie.org:/usr/src/sys/compile/JEN2 i386 >Description: When a multiple cdrom drive like the DRM-600 is used and all the drives are mounted, /stand/sysinstall uses the first CD it finds in the drive. Regardless if it is the correct CD or not. Basically, /stand/sysinstall does not consider the CDROM drive to have a changer. Additionally, if one cat(1)s a file on one CD and then requests a cat(1) from a file on a different CD, and that file has the same name on both CDs, then one gets the same file as on the first CD. Note: similar problems listed as bin/12564 >How-To-Repeat: repeats steps in "Full Description" >Fix: workaround to bug #1: umount(1) all CDROM drives workaround to bug #2: none at this time. >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 Oct 17 3:40:11 2000 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 3B7B037B4E5 for ; Tue, 17 Oct 2000 03:40:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA33715; Tue, 17 Oct 2000 03:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 17 Oct 2000 03:40:03 -0700 (PDT) Message-Id: <200010171040.DAA33715@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: jau@iki.fi Subject: kern/21860 should have better priority Reply-To: jau@iki.fi Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/21860; it has been noted by GNATS. From: jau@iki.fi To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: kern/21860 should have better priority Date: Tue, 17 Oct 2000 03:39:22 -0700 (PDT) >Submitter-Id: net >Originator: Jukka A. Ukkonen >Organization: Private Person >Confidential: no >Synopsis: kern/21860 should have better priority >Severity: critical >Priority: high >Category: kern >Class: sw-bug >Release: 3.5.1 >Environment: >Description: I made a typo while reporting kern/21860. I should have given it better priority, because the fix is so simple and obvious, and the effect on system's ability to tolerate sequence number guessing is greatly improved making FreeBSD even better paltform for network server applications. My classifying this as a sw-bug instead of simply change-request is a bit provocative, but I guess the change is so obvious that it is almost a bug (or better maybe a minor design flaw) that ISSINCR has not been done the way I propose already by now. >How-To-Repeat: See the details in kern/21860. >Fix: See the details in kern/21860. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 4: 0: 9 2000 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 5A4C637B4D7 for ; Tue, 17 Oct 2000 04:00:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA40296; Tue, 17 Oct 2000 04:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 17 Oct 2000 04:00:05 -0700 (PDT) Message-Id: <200010171100.EAA40296@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Wei-Kai-Wu Subject: Re: i386/22006: quotacheck halt Reply-To: Wei-Kai-Wu Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/22006; it has been noted by GNATS. From: Wei-Kai-Wu To: Andre Albsmeier Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/22006: quotacheck halt Date: Tue, 17 Oct 2000 15:16:56 +0800 On Mon, Oct 16, 2000 at 10:35:39AM +0200, Andre Albsmeier wrote: > What is the highest uid you have on /raid1 and /raid2 ? > You might want to look into PR #2325... > If this applies to your problem, I might have a patch for you. I have found that there are some files uid = -2. It cause quotacheck halt... By the way, shall we take it as a bug? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 5:10: 6 2000 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 D8D9137B4CF for ; Tue, 17 Oct 2000 05:10:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA67629; Tue, 17 Oct 2000 05:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from t-mta3.odn.ne.jp (mfep3.odn.ne.jp [143.90.131.181]) by hub.freebsd.org (Postfix) with ESMTP id CA2E737B4E5 for ; Tue, 17 Oct 2000 05:01:43 -0700 (PDT) Received: from choota.signet.or.jp ([211.121.222.196]) by t-mta3.odn.ne.jp (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001017120141438.NKTY.940.t-mta3.odn.ne.jp@mta3.odn.ne.jp>; Tue, 17 Oct 2000 21:01:41 +0900 Received: (from shigio@localhost) by choota.signet.or.jp (8.9.3/) id UAA02073; Tue, 17 Oct 2000 20:50:28 +0900 (JST) Message-Id: <200010171150.UAA02073@tamacom.com> Date: Tue, 17 Oct 2000 20:50:28 +0900 (JST) From: shigio@tamacom.com Reply-To: shigio@tamacom.com To: FreeBSD-gnats-submit@freebsd.org Cc: shigio@tamacom.com X-Send-Pr-Version: 3.2 Subject: bin/22045: leaved files for GLOBAL Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22045 >Category: bin >Synopsis: Some files should be modified since global was moved into ports. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 17 05:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Shigio Yamaguchi >Release: FreeBSD current >Organization: Tama Communications Corporation >Environment: N/A >Description: Since global was moved into ports, some files in core FreeBSD should be modified. >How-To-Repeat: N/A >Fix: I don't know what to do but can point out the locations. ------------------------------------------------------------------- [src/usr.bin/vi/Makefile] ------------------------------------------------------------------- o This line enables global support for nvi. I don't know whether or not we should remove this line but removing this line generate original nvi without global support. CFLAGS+= -DGTAGS ------------------------------------------------------------------- [src/share/mk/bsd.prog.mk] ------------------------------------------------------------------- o The following lines should be modified to fit ctags(1): It seems that NOTAGS macro is not used currently. .if defined(NOTAGS) tags: .endif .if !target(tags) tags: ${SRCS} _SUBDIR .if defined(PROG) @cd ${.CURDIR} && gtags ${GTAGSFLAGS} ${.OBJDIR} .if defined(HTML) @cd ${.CURDIR} && htags ${HTAGSFLAGS} -d ${.OBJDIR} ${.OBJDIR} .endif .endif .endif ------------------------------------------------------------------- [src/share/mk/bsd.dep.mk] ------------------------------------------------------------------- o This comment should be modified. # tags: # Create a (GLOBAL) gtags file for the source files. # If HTML is defined, htags is also run after gtags. o The following lines should be modified to fit ctags(1): It seems that NOTAGS macro is not used currently. .if defined(NOTAGS) tags: .endif .if !target(tags) tags: ${SRCS} _SUBDIR @cd ${.CURDIR} && gtags ${GTAGSFLAGS} ${.OBJDIR} .if defined(HTML) @cd ${.CURDIR} && htags ${HTAGSFLAGS} -d ${.OBJDIR} ${.OBJDIR} .endif .endif o '${.OBJDIR}/GPATH ${.OBJDIR}/GRTAGS ${.OBJDIR}/GSYMS ${.OBJDIR}/GTAGS should be removed. The code about HTML should be removed. Gtags(1) generates GPATH, GTAGS, GRTAGS and GSYMS. Htags(1) generates HTML directory. .if !target(cleandepend) cleandepend: _SUBDIR .if defined(SRCS) rm -f ${DEPENDFILE} ${.OBJDIR}/GPATH ${.OBJDIR}/GRTAGS \ ${.OBJDIR}/GSYMS ${.OBJDIR}/GTAGS .if defined(HTML) rm -rf ${.OBJDIR}/HTML .endif .endif .endif ------------------------------------------------------------------- [src/share/mk/sys.mk] ------------------------------------------------------------------- o The following lines should be removed. These definitions means parameter for gtags(1) and htags(1). # For tags rule. GTAGSFLAGS= -o HTAGSFLAGS= ------------------------------------------------------------------- [src/usr.bin/more/] ------------------------------------------------------------------- Since the more(1) which includes global support was replaced with less(1), thers is nothing to do about more. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 5:40: 8 2000 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 85A4737B4F9 for ; Tue, 17 Oct 2000 05:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA77134; Tue, 17 Oct 2000 05:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 17 Oct 2000 05:40:02 -0700 (PDT) Message-Id: <200010171240.FAA77134@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: i386/22006: quotacheck halt Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/22006; it has been noted by GNATS. From: Andre Albsmeier To: Wei-Kai-Wu Cc: Andre Albsmeier , FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: i386/22006: quotacheck halt Date: Tue, 17 Oct 2000 14:28:13 +0200 On Tue, 17-Oct-2000 at 15:16:56 +0800, Wei-Kai-Wu wrote: > On Mon, Oct 16, 2000 at 10:35:39AM +0200, Andre Albsmeier wrote: > > What is the highest uid you have on /raid1 and /raid2 ? > > You might want to look into PR #2325... > > If this applies to your problem, I might have a patch for you. > > I have found that there are some files uid = -2. > It cause quotacheck halt... It doesn't halt. It just scans the quotacheck file from 0 to 2^32-1 and this takes a while. Do you use PC-NFS? That is how I got these uid -2 files into my filesystems. If you are interested, this my (real ugly) patch to solve this: It maps all uids > 65535 to user nobody. I use it for many years now and it works great... Don't know about security concerns. --- sbin/quotacheck/quotacheck.c.ORI Mon Jul 31 09:20:54 2000 +++ sbin/quotacheck/quotacheck.c Mon Jul 31 09:21:15 2000 @@ -506,6 +506,8 @@ struct fileusage *fup, **fhp; int len; + if( id > 65535 ) + id = 65534; if ((fup = lookup(id, type)) != NULL) return (fup); if (name) --- sys/ufs/ufs/ufs_quota.c.ORI Mon Jul 31 09:36:03 2000 +++ sys/ufs/ufs/ufs_quota.c Mon Jul 31 09:36:44 2000 @@ -750,6 +750,8 @@ /* * Check the cache first. */ + if( id > 65535 ) + id = 65534; dqh = DQHASH(dqvp, id); for (dq = dqh->lh_first; dq; dq = dq->dq_hash.le_next) { if (dq->dq_id != id || > > By the way, shall we take it as a bug? It is a bug. It is covered by my PR. -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 5:45:59 2000 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 8752D37B4F9; Tue, 17 Oct 2000 05:45:58 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA79201; Tue, 17 Oct 2000 05:45:58 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Tue, 17 Oct 2000 05:45:58 -0700 (PDT) From: Message-Id: <200010171245.FAA79201@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, obrien@FreeBSD.org Subject: Re: bin/22045: Some files should be modified since global was moved into ports. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Some files should be modified since global was moved into ports. Responsible-Changed-From-To: freebsd-bugs->obrien Responsible-Changed-By: ru Responsible-Changed-When: Tue Oct 17 05:40:43 PDT 2000 Responsible-Changed-Why: David has removed the global(1) and friends from the src tree. http://www.freebsd.org/cgi/query-pr.cgi?pr=22045 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 5:52:40 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from elvis.mu.org (elvis.mu.org [207.154.226.10]) by hub.freebsd.org (Postfix) with ESMTP id D4E3C37B4D7 for ; Tue, 17 Oct 2000 05:52:38 -0700 (PDT) Received: by elvis.mu.org (Postfix, from userid 1061) id 671692B232; Tue, 17 Oct 2000 07:52:33 -0500 (CDT) Date: Tue, 17 Oct 2000 07:52:33 -0500 From: David Drum To: freebsd-bugs@FreeBSD.org Subject: Re: conf/22038: Default location of named.pid file assumes named is running as root Message-ID: <20001017075233.B46425@elvis.mu.org> Mail-Followup-To: David Drum , freebsd-bugs@FreeBSD.org References: <200010170840.BAA89963@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200010170840.BAA89963@freefall.freebsd.org>; from des@ofug.org on Tue, Oct 17, 2000 at 01:40:02AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Quoth Dag-Erling Smorgrav: > david@mu.org writes: > > > Move the pid file into a subdirectory that can be chowned to bind: > > This does not help if named runs chrooted, which it should. > > (I have patches to make it run in a jail, BTW) I believe this comment is outside the scope of the current request. Chrooting bind is one step further down the road to security. Please see my next email for more comments. Regards, David Drum david@mu.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 6:19: 1 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from elvis.mu.org (elvis.mu.org [207.154.226.10]) by hub.freebsd.org (Postfix) with ESMTP id A97EC37B4C5 for ; Tue, 17 Oct 2000 06:18:58 -0700 (PDT) Received: by elvis.mu.org (Postfix, from userid 1061) id 305112B238; Tue, 17 Oct 2000 08:18:58 -0500 (CDT) Date: Tue, 17 Oct 2000 08:18:58 -0500 From: David Drum To: freebsd-bugs@FreeBSD.org Subject: Re: conf/22038: Default location of named.pid file assumes named is running as root Message-ID: <20001017081857.C46425@elvis.mu.org> Mail-Followup-To: David Drum , freebsd-bugs@FreeBSD.org References: <200010170900.CAA96493@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200010170900.CAA96493@freefall.freebsd.org>; from dwmalone@maths.tcd.ie on Tue, Oct 17, 2000 at 02:00:03AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Quoth David Malone: > On Mon, Oct 16, 2000 at 09:17:12PM -0700, david@mu.org wrote: > > [Your message containted some very long lines, so I wrapped them] I apologize. I made the minimum number of assumptions about what the web form would do with my submission. > According to the docs you can tell named where to put it's pid file > by adding: > > pid-file "/var/run/named/named.pid"; > > to the "options" section of the config file. Absolutely. In fact I have done that. > Changig the default location of the PID file is a bad idea as it will > break lots of local scripts people have written. Is this option OK > for what you want? I am trying to look at this from the perspective of someone who is completely new to FreeBSD and wants to run named as a non-privileged user. The "-u bind -g bind" options are given in /etc/defaults/rc.conf. This makes it easy for someone without a lot of BIND knowledge to implement, but the location of the pid file results in the aforementioned "ndc reload" error. This in turn requires a greater degree of knowledge about named's defaults and UNIX ownerships to determine the root cause. The default configuration should either change to take this into consideration, or this "feature" should be documented along with the named_flags option. I guess one further change that is implicit in my suggestion is that /var/run/named would be owned by bind out of the box. I apologize if my two responses to the list did not get noted by GNATS. I am a little unclear about how to accomplish that. Regards, David Drum david@mu.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 9:10: 5 2000 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 6870637B4F9 for ; Tue, 17 Oct 2000 09:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA55413; Tue, 17 Oct 2000 09:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from fermion.noc.titech.ac.jp (fermion.noc.titech.ac.jp [131.112.181.15]) by hub.freebsd.org (Postfix) with SMTP id 1B75237B4CF for ; Tue, 17 Oct 2000 09:04:11 -0700 (PDT) Received: (qmail 3023 invoked by uid 1000); 17 Oct 2000 16:04:06 -0000 Message-Id: <20001017160406.3022.qmail@fermion.noc.titech.ac.jp> Date: 17 Oct 2000 16:04:06 -0000 From: tkatayam@noc.titech.ac.jp Reply-To: tkatayam@noc.titech.ac.jp To: FreeBSD-gnats-submit@freebsd.org Cc: tkatayam@noc.titech.ac.jp X-Send-Pr-Version: 3.2 Subject: conf/22051: Error of option name of rtadvd in rc.network6 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22051 >Category: conf >Synopsis: Error of option name of rtadvd in rc.network6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 17 09:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATAYAMA, Takeo >Release: FreeBSD 5.0-CURRENT i386 >Organization: Network Operation Center, Tokyo Inst. of Tech. >Environment: FreeBSD fermion.noc.titech.ac.jp 5.0-CURRENT FreeBSD 5.0-CURRENT #12: Fri Oct 6 17:10:19 JST 2000 tkatayam@fermion.noc.titech.ac.jp:/usr/src/sys/compile/TKFERMION i386 >Description: In the section of rtadvd in /etc/rc.network6, -P option is specified for the Router Renumbering. However, according to the record of CVS repository, the identifier has been changed to -R. >How-To-Repeat: >Fix: --- /etc/rc.network6 Fri Sep 29 03:09:12 2000 +++ /etc/rc.network6 Wed Oct 18 00:52:07 2000 @@ -144 +144 @@ - # security policy by -P option. + # security policy by -R option. @@ -169 +169 @@ - # rtadvd -P "in ipsec ah/transport/fec0:0:0:1::1-fec0:0:0:10::1/require" \ + # rtadvd -R "in ipsec ah/transport/fec0:0:0:1::1-fec0:0:0:10::1/require" \ @@ -173 +173 @@ - # rtadvd -P "in ipsec ah/transport/ff05::2-fec0:0:0:10::1/require" \ + # rtadvd -R "in ipsec ah/transport/ff05::2-fec0:0:0:10::1/require" \ >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 Oct 17 9:11: 1 2000 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 EE00737B4F9; Tue, 17 Oct 2000 09:10:59 -0700 (PDT) Received: (from grog@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA55786; Tue, 17 Oct 2000 09:10:59 -0700 (PDT) (envelope-from grog@FreeBSD.org) Date: Tue, 17 Oct 2000 09:10:59 -0700 (PDT) From: Message-Id: <200010171610.JAA55786@freefall.freebsd.org> To: roman@harmonic.co.il, grog@FreeBSD.org, freebsd-bugs@FreeBSD.org, grog@FreeBSD.org Subject: Re: kern/22021: 4.1 with adaptec and vinum crashed when runs periodic dail= Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 4.1 with adaptec and vinum crashed when runs periodic dail= State-Changed-From-To: open->closed State-Changed-By: grog State-Changed-When: Tue Oct 17 09:05:52 PDT 2000 State-Changed-Why: PR text mutilated beyond recovery. Responsible-Changed-From-To: freebsd-bugs->grog Responsible-Changed-By: grog Responsible-Changed-When: Tue Oct 17 09:05:52 PDT 2000 Responsible-Changed-Why: grog handles Vinum PRs. http://www.freebsd.org/cgi/query-pr.cgi?pr=22021 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 9:34:53 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from genius.systems.pavilion.net (termroom.bsdcon.org [206.55.247.2]) by hub.freebsd.org (Postfix) with ESMTP id D9D2537B479; Tue, 17 Oct 2000 09:34:51 -0700 (PDT) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id 1DEE49B25; Tue, 17 Oct 2000 09:37:17 -0700 (PDT) Date: Tue, 17 Oct 2000 09:37:17 -0700 From: Josef Karthauser To: grog@FreeBSD.ORG Cc: roman@harmonic.co.il, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/22021: 4.1 with adaptec and vinum crashed when runs periodic dail= Message-ID: <20001017093717.D4241@pavilion.net> References: <200010171610.JAA55786@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010171610.JAA55786@freefall.freebsd.org>; from grog@FreeBSD.ORG on Tue, Oct 17, 2000 at 09:10:59AM -0700 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 17, 2000 at 09:10:59AM -0700, grog@FreeBSD.ORG wrote: > Synopsis: 4.1 with adaptec and vinum crashed when runs periodic dail= I'll bet that this is the same as kern/21915. I forgot to mention that we bomb out during periodic runs also. Joe -- Josef Karthauser FreeBSD: How many times have you booted today? Technical Manager Viagra for your server (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@uk.freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 9:50: 8 2000 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 94D5E37B4F9 for ; Tue, 17 Oct 2000 09:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA68938; Tue, 17 Oct 2000 09:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from area51.v-wave.com (area51.v-wave.com [24.108.52.213]) by hub.freebsd.org (Postfix) with SMTP id BB48137B4CF for ; Tue, 17 Oct 2000 09:40:40 -0700 (PDT) Received: (qmail 14621 invoked by uid 1001); 17 Oct 2000 16:39:58 -0000 Message-Id: <20001017163958.14620.qmail@area51.v-wave.com> Date: 17 Oct 2000 16:39:58 -0000 From: cwasser@v-wave.com Reply-To: cwasser@v-wave.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22052: VIA Tech KX133 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22052 >Category: kern >Synopsis: KX133 device detection support >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 Oct 17 09:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Chris Wasser >Release: FreeBSD 4.1.1-STABLE i386 >Organization: n/a >Environment: FreeBSD area51.v-wave.com 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Sat Sep 30 13:57:55 MDT 2000 root@area51.v-wave.com:/usr/src/sys/compile/AREA51 i386 >Description: As per PR17831, FreeBSD 4.X+ does not have a device listing for VIA Technologies KX133 AGP bridge components. More and more KX133 AMD boards are hitting the market and vendor IDs need to be updated. >How-To-Repeat: Install FreeBSD 4.x+ with Apollo KX133 chipset. >Fix: These two IDs are used by Epox/Asus and DFI. --- pcisupport.c Sat Sep 30 00:06:44 2000 +++ pcisupport-new.c Tue Oct 17 10:17:11 2000 @@ -698,6 +698,10 @@ /* VIA Technologies -- vendor 0x1106 */ case 0x85981106: return ("VIA 82C598MVP (Apollo MVP3) PCI-PCI (AGP) bridge"); + case 0x83911106: + return ("VIA 82C686 (Apollo KX133) PCI-PCI (AGP) bridge"); + case 0x83051106: + return ("VIA 82C686 (Apollo KX133) PCI-PCI (AGP) bridge"); /* AcerLabs -- vendor 0x10b9 */ /* Funny : The datasheet told me vendor id is "10b8",sub-vendor */ >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 Oct 17 12:34:46 2000 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 B35BA37B4CF; Tue, 17 Oct 2000 12:34:44 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA30932; Tue, 17 Oct 2000 12:34:44 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Tue, 17 Oct 2000 12:34:44 -0700 (PDT) From: Message-Id: <200010171934.MAA30932@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, dg@FreeBSD.org Subject: Re: kern/3901: Multicast for Intel 10/100 Ethernet Card Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Multicast for Intel 10/100 Ethernet Card Responsible-Changed-From-To: freebsd-bugs->dg Responsible-Changed-By: johan Responsible-Changed-When: Tue Oct 17 12:33:20 PDT 2000 Responsible-Changed-Why: Let our fxp(4) maintainer descide what to do with this old PR. I does include a patch. http://www.freebsd.org/cgi/query-pr.cgi?pr=3901 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 12:42: 1 2000 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 91DF737B479; Tue, 17 Oct 2000 12:42:00 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA33237; Tue, 17 Oct 2000 12:42:00 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Tue, 17 Oct 2000 12:42:00 -0700 (PDT) From: Message-Id: <200010171942.MAA33237@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, paul@FreeBSD.org Subject: Re: kern/4284: le0 goes OACTIVE after some time Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: le0 goes OACTIVE after some time Responsible-Changed-From-To: freebsd-bugs->paul Responsible-Changed-By: johan Responsible-Changed-When: Tue Oct 17 12:41:07 PDT 2000 Responsible-Changed-Why: Over to le(4) maintainer who can descide what to do with this old PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=4284 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 12:43:10 2000 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 1F8C937B479; Tue, 17 Oct 2000 12:43:09 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA33669; Tue, 17 Oct 2000 12:43:09 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Tue, 17 Oct 2000 12:43:09 -0700 (PDT) From: Message-Id: <200010171943.MAA33669@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, paul@FreeBSD.org Subject: Re: kern/3944: if_le doesnt receive ether multicast packet correctly. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: if_le doesnt receive ether multicast packet correctly. Responsible-Changed-From-To: freebsd-bugs->paul Responsible-Changed-By: johan Responsible-Changed-When: Tue Oct 17 12:42:48 PDT 2000 Responsible-Changed-Why: Over to le(4) maintainer who can descide what to do with this old PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=3944 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 12:53: 3 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id D23F337B4E5 for ; Tue, 17 Oct 2000 12:52:56 -0700 (PDT) Received: from slave (Studded@slave [10.0.0.1]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id MAA16640; Tue, 17 Oct 2000 12:52:29 -0700 (PDT) (envelope-from DougB@gorean.org) Date: Tue, 17 Oct 2000 12:52:29 -0700 (PDT) From: Doug Barton X-Sender: doug@dt051n37.san.rr.com To: David Drum Cc: freebsd-bugs@FreeBSD.org Subject: Re: conf/22038: Default location of named.pid file assumes named is running as root In-Reply-To: <20001017081857.C46425@elvis.mu.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 Tue, 17 Oct 2000, David Drum wrote: > I am trying to look at this from the perspective of someone who is > completely new to FreeBSD and wants to run named as a non-privileged user. This isn't a freebsd issue, it's a BIND issue. People who don't have a sufficient amount of knowledge about how BIND works to run it successfully as an unpriviliged user won't be helped by your suggestion. It will just be some other aspect of BIND configuration that trips them up. I appreciate your suggestion in terms of trying to lower the common denominator, but seriously, BIND isn't an LCD type of operation. I see way too many screwed up BIND configurations as it is, I would hate to see us contributing to that problem. There are plenty of options in rc.conf already that aren't suitable for novice users, this one falls squarely into that category. Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 13:12:55 2000 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 D9F1F37B4E5; Tue, 17 Oct 2000 13:12:53 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA46032; Tue, 17 Oct 2000 13:12:53 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Tue, 17 Oct 2000 13:12:53 -0700 (PDT) From: Message-Id: <200010172012.NAA46032@freefall.freebsd.org> To: jt@nanoteq.com, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/5011: rndcontrol -s 8 causes kernel panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: rndcontrol -s 8 causes kernel panic State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Tue Oct 17 13:09:35 PDT 2000 State-Changed-Why: This does not happen on a 4.1-STABLE system. I guess it has been fixed. If you experiense this problem in more recent releases of FreeBSd please open a new PR. However, Please see the FAQ (http://www.FreeBSD.org/FAQ/FAQ.html) section 'For serious FreeBSD hackers only' question 'Making the most of a kernel panic' before doing so. http://www.freebsd.org/cgi/query-pr.cgi?pr=5011 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 13:30:53 2000 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 9807837B4C5; Tue, 17 Oct 2000 13:30:51 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA52002; Tue, 17 Oct 2000 13:30:51 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Tue, 17 Oct 2000 13:30:51 -0700 (PDT) From: Message-Id: <200010172030.NAA52002@freefall.freebsd.org> To: denis@satty.npi.msu.su, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/5060: Kernel doesn't compile with mss Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Kernel doesn't compile with mss State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Tue Oct 17 13:29:11 PDT 2000 State-Changed-Why: i386/isa/sound/sound_timer.c optional mss device-driver was added in rev 1.217 of files.i386, which was while HEAD was still 3-Current. http://www.freebsd.org/cgi/query-pr.cgi?pr=5060 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 13:40:11 2000 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 A553537B4E5 for ; Tue, 17 Oct 2000 13:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA55313; Tue, 17 Oct 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 8A88337B4F9; Tue, 17 Oct 2000 13:37:47 -0700 (PDT) Message-Id: <20001017203747.8A88337B4F9@hub.freebsd.org> Date: Tue, 17 Oct 2000 13:37:47 -0700 (PDT) From: jeff+freebsd@spotlife.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/22061: 4.x-STABLE kernel build fails in xe looking for "card_if.h" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22061 >Category: misc >Synopsis: 4.x-STABLE kernel build fails in xe looking for "card_if.h" >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 Oct 17 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jeff Kletsky >Release: 4.x-STABLE cvsup of 2000-10-17 >Organization: SpotLife Inc. >Environment: FreeBSD wildside.wagsky.com 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Mon Oct 16 21:54:14 PDT 2000 jeff@wildside.wagsky.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: After following Ralf's upgrade process from 3.x-STABLE to 4.x-STABLE, edited GENERIC config file to reflect similar configuration to "old" kernel configuration. After config, make depend fails looking for "card_if.h" for xe Looking at kernel configuration file, device xe was present, but device card and device pcic0 were not. Removing device xe resolved problem >How-To-Repeat: jeff@wildside:/usr/src/sys/i386/conf$ cat LARRY.20001017~ # # GENERIC -- Generic kernel configuration file for FreeBSD/i386 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.15 2000/10/12 01:47:16 msmith Exp $ machine i386 #cpu I386_CPU #cpu I486_CPU cpu I586_CPU #cpu I686_CPU ident LARRY4x maxusers 32 #makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols #options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options INET6 #IPv6 communications protocols options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options MFS #Memory Filesystem options MD_ROOT #MD is a potential root device options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device, NFS required options MSDOSFS #MSDOS Filesystem options CD9660 #ISO 9660 Filesystem options CD9660_ROOT #CD-ROM usable as root, CD9660 required options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) 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 KBD_INSTALL_CDEV # install a CDEV entry in /dev # 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 eisa 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 #device ahb # EISA AHA1742 family device ahc # AHA2940 and onboard AIC7xxx devices #device amd # AMD 53C974 (Teckram DC-390(T)) #device isp # Qlogic family device ncr # NCR/Symbios Logic device sym # NCR/Symbios Logic (newer chipsets) options SYM_SETUP_LP_PROBE_MAP=0x40 # Allow ncr to attach legacy NCR devices when # both sym and ncr are configured #device adv0 at isa? #device adw #device bt0 at isa? #device aha0 at isa? #device aic0 at isa? # SCSI peripherals 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 access) # RAID controllers interfaced to the SCSI subsystem #device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID #device dpt # DPT Smartcache - See LINT for options! # RAID controllers #device ida # Compaq Smart RAID #device amr # AMI MegaRAID #device mlx # Mylex DAC960 family #device twe # 3ware Escalade # 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 # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines #options PCVT_SCANSET=2 # IBM keyboards are non-std # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) device apm0 at nexus? disable flags 0x20 # Advanced Power Management # PCCARD (PCMCIA) support device card #device pcic0 at isa? irq 0 port 0x3e0 iomem 0xd0000 #device pcic1 at isa? irq 0 port 0x3e2 iomem 0xd4000 disable # 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 irq 5 device sio3 at isa? disable port IO_COM4 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 de # DEC/Intel DC21x4x (``Tulip'') device fxp # Intel EtherExpress PRO/100B (82557, 82558) #device tx # SMC 9432TX (83c170 ``EPIC'') #device vx # 3Com 3c590, 3c595 (``Vortex'') #device wx # Intel Gigabit Ethernet Card (``Wiseman'') # PCI Ethernet NICs that use the common MII bus controller code. device miibus # MII bus support #device dc # DEC/Intel 21143 and various workalikes #device pcn # AMD Am79C79x PCI 10/100 NICs #device rl # RealTek 8129/8139 #device sf # Adaptec AIC-6915 (``Starfire'') #device sis # Silicon Integrated Systems SiS 900/SiS 7016 #device ste # Sundance ST201 (D-Link DFE-550TX) #device tl # Texas Instruments ThunderLAN #device vr # VIA Rhine, Rhine II #device wb # Winbond W89C840F #device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. #device ed0 at isa? port 0x280 irq 10 iomem 0xd8000 #device ex #device ep #device fe0 at isa? port 0x300 # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really # exists only as a PCMCIA device, so there is no ISA attatement needed # and resources will always be dynamically assigned by the pccard code. #device wi # Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below will # work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP # mode (the factory default). If you set the switches on your ISA # card for a manually chosen I/O address and IRQ, you must specify # those paremeters here. #device an # Xircom Ethernet device xe # The probe order of these is presently determined by i386/isa/isa_compat.c. #device ie0 at isa? port 0x300 irq 10 iomem 0xd0000 #device le0 at isa? port 0x300 irq 5 iomem 0xd0000 #device lnc0 at isa? port 0x280 irq 10 drq 0 #device cs0 at isa? port 0x300 #device sn0 at isa? port 0x300 irq 10 # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device sl 1 # Kernel SLIP pseudo-device ppp 1 # Kernel PPP pseudo-device tun # Packet tunnel. pseudo-device pty # Pseudo-ttys (telnet etc) pseudo-device md # Memory "disks" pseudo-device gif 4 # IPv6 and IPv4 tunneling pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device usb # USB Bus (required) device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse # USB Ethernet, requires mii device aue # ADMtek USB ethernet device cue # CATC USB ethernet device kue # Kawasaki LSI USB ethernet # JMK Additions #options TCP_COMPAT_42 #emulate 4.2BSD TCP bugs #options MROUTING # Multicast routing options IPFIREWALL #firewall options IPFIREWALL_VERBOSE #print information about # dropped packets #options IPFIREWALL_FORWARD #enable transparent proxy support #options IPFIREWALL_VERBOSE_LIMIT=100 #limit verbosity #options IPFIREWALL_DEFAULT_TO_ACCEPT #allow everything by default options IPV6FIREWALL #firewall for IPv6 options IPV6FIREWALL_VERBOSE #options IPV6FIREWALL_VERBOSE_LIMIT=100 #options IPV6FIREWALL_DEFAULT_TO_ACCEPT options IPDIVERT #divert sockets #options IPFILTER #ipfilter support #options IPFILTER_LOG #ipfilter logging #options IPSTEALTH #support for stealth forwarding #options TCPDEBUG # Statically Link in accept filters #options ACCEPT_FILTER_DATA #options ACCEPT_FILTER_HTTP # The following options add sysctl variables for controlling how certain # TCP packets are handled. # # TCP_DROP_SYNFIN adds support for ignoring TCP packets with SYN+FIN. This # prevents nmap et al. from identifying the TCP/IP stack, but breaks support # for RFC1644 extensions and is not recommended for web servers. # # TCP_RESTRICT_RST adds support for blocking the emission of TCP RST packets. # This is useful on systems which are exposed to SYN floods (e.g. IRC servers) # or any system which one does not want to be easily portscannable. # options TCP_DROP_SYNFIN #drop TCP packets with SYN+FIN options TCP_RESTRICT_RST #restrict emission of TCP RST # ICMP_BANDLIM enables icmp error response bandwidth limiting. You # typically want this option as it will help protect the machine from # D.O.S. packet attacks. # options ICMP_BANDLIM # DUMMYNET enables the "dummynet" bandwidth limiter. You need # IPFIREWALL as well. See the dummynet(4) manpage for more info. # BRIDGE enables bridging between ethernet cards -- see bridge(4). # You can use IPFIREWALL and dummynet together with bridging. options DUMMYNET #options BRIDGE # The aic7xxx driver will attempt to use memory mapped I/O for all PCI # controllers that have it configured only if this option is set. Unfortunately, # this doesn't work on some motherboards, which prevents it from being the # default. options AHC_ALLOW_MEMIO # RealProxy caused a crash with not enough mbufs available #options NMBCLUSTERS=1024 options NMBCLUSTERS=2048 >Fix: Removing device xe resolves problem. jeff@wildside:/usr/src/sys/i386/conf$ diff LARRY.20001017* 143c143 < #device card --- > device card 198c198 < #device xe --- > device xe ========== Should xe be permissible when card and pcic are not present? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 14: 3:13 2000 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 F2E7337B4FE; Tue, 17 Oct 2000 14:03:11 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA63863; Tue, 17 Oct 2000 14:03:11 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Tue, 17 Oct 2000 14:03:11 -0700 (PDT) From: Message-Id: <200010172103.OAA63863@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, paul@FreeBSD.org Subject: Re: kern/6066: lnc driver does not work correctly with AT-2450T card Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lnc driver does not work correctly with AT-2450T card Responsible-Changed-From-To: freebsd-bugs->paul Responsible-Changed-By: johan Responsible-Changed-When: Tue Oct 17 14:02:27 PDT 2000 Responsible-Changed-Why: Over to lnc(4) author/maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=6066 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 14:40: 7 2000 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 B3D3E37B4F9 for ; Tue, 17 Oct 2000 14:40:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA77322; Tue, 17 Oct 2000 14:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 265D137B4CF; Tue, 17 Oct 2000 14:39:00 -0700 (PDT) Message-Id: <20001017213900.265D137B4CF@hub.freebsd.org> Date: Tue, 17 Oct 2000 14:39:00 -0700 (PDT) From: vanepp@sfu.ca To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/22063: bpf when used with the select system call with timeout doesn't forward packets on timeout Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22063 >Category: kern >Synopsis: bpf when used with the select system call with timeout doesn't forward packets on timeout >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 Oct 17 14:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Peter Van Epp >Release: 4.1-RELEASE >Organization: Simon Fraser University >Environment: FreeBSD demob.ucs.sfu.ca 4.1-RELEASE FreeBSD 4.1-RELEASE #19: Tue Oct 17 12:37:56 PDT 2000 vanepp@demob.ucs.sfu.ca:/usr/src/sys/compile/GENERIC i386 >Description: When bpf is accessed via libpcap with the select system call with a timeout set if a less than full buffer of packets received on the interface (and passed to bpf.c) they will never be returned to libpcap even on a timeout. OpenBSD has a partial fix for this (it gets the first packet of 9 up and leaves the other 8) which I have corrected, reported to OpenBSD and ported to FreeBSD. As a side note one of the OpenBSD people is working on a better bpf implementation and would be interested in help by someone knowledgable in the FreeBSD VM system to assist porting his code when finished to FreeBSD. >How-To-Repeat: To reproduce: 1) Install argus-1.8.1.tar.gz and argus-1.8.1.patches from ftp.andrew.cmu.edu/pub/argus 2) Install the test.dif patch below to report Total packets received from libpcap to show the problem. 3) start argus_bpf as below and supply it a less than buffer full of packets (I used tcpreplay from www.anzen.com/research/nidsbench on another machine playing back a tcpdump file: tcpreplay -ixl0 -r1 ip.small.tcpdump). 4) Examine output as below (unpatched then patched). Unpatched bpf.c (all 9 packets still in bpf.c buffer, none get to libpcap): demob# bin/argus_bpf -i xl0 -P0 -w argus.log ^C 9 packets recv'd by filter 0 packets dropped by kernel demob# bin/ra -r argus.log -n Tue 10/17 12:34:19 man 1.168.192.0 255.255.255.0 INT Tue 10/17 12:34:33 man pkts 9 drops 0 flows 0 CLO bpf.c and bpfdesc.h patched as below and kernel recompiled and installed: demob# bin/argus_bpf -ixl0 -P0 -w argus.log Total packets: 1 Total packets: 2 Total packets: 3 Total packets: 4 Total packets: 5 Total packets: 6 Total packets: 7 Total packets: 8 Total packets: 9 ^C 9 packets recv'd by filter 0 packets dropped by kernel demob# bin/ra -r argus.log -n Tue 10/17 09:50:50 man 1.168.192.0 255.255.255.0 INT Tue 10/17 09:51:16 M tcp 130.71.240.184.2197 |> 142.58.12.12.80 RST Tue 10/17 09:51:23 man pkts 9 drops 0 flows 1 CLO demob# Apply in argus-1.8.1/ directory. *** server/cons_ether.c.orig Tue Oct 17 01:45:10 2000 --- server/cons_ether.c Tue Oct 17 01:45:59 2000 *************** *** 95,100 **** --- 95,101 ---- if (p && caplen) { totalPktsRcv++; + printf("Total packets: %d\n", totalPktsRcv); globaltvp.tv_sec = h->ts.tv_sec; globaltvp.tv_usec = h->ts.tv_usec; >Fix: begin 600 patch.dif M*BHJ("]S>7,O;F5T+V)P9BYC+F]R:6<)4V%T($]C=" Q-" Q.3HP,#HU.2 R M,# P"BTM+2 O"AS*3L*(" )PHA( D)"0EI9B H*&0M/F)D7W)T;W5T("$]("TQ*2 F)B * M(2 )"0D)(" @("AD+3YB9%]R9'-T87)T("L@9"T^8F1?"AS*3L*(" )7,O M;F5T+V)P9F1ERelease-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 Oct 17 14:46:33 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mrout1.yahoo.com (mrout1.yahoo.com [208.48.125.95]) by hub.freebsd.org (Postfix) with ESMTP id B7A8137B4D7; Tue, 17 Oct 2000 14:46:31 -0700 (PDT) Received: from daintree.yahoo.com (daintree.yahoo.com [205.216.162.172]) by mrout1.yahoo.com (8.10.0/8.10.0/y.out) with ESMTP id e9HLkM273025; Tue, 17 Oct 2000 14:46:22 -0700 (PDT) Received: (from peter@localhost) by daintree.yahoo.com (8.11.0/8.11.0) id e9HLkMr17330; Tue, 17 Oct 2000 14:46:22 -0700 (PDT) (envelope-from peter) Date: Tue, 17 Oct 2000 14:46:22 -0700 (PDT) From: Peter Wemm Message-Id: <200010172146.e9HLkMr17330@daintree.yahoo.com> To: freebsd-gnats-submit@freebsd.org Subject: Re: gnu/20966: binutils break C++ in GCC 2.95.x and GCC-current Cc: freebsd-bugs@freebsd.org Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The problem is that our crt foo is incompatable with g++'s constructor and thread mechanism. In order to get g++ working at yahoo, we had to back out to the old crt{i,n}.o and use gcc's crt{begin,end}.o so that the frame hooks etc were called in the right places. See glibc's own crtbegin/end etc for how to do an elf-specific set of crt files that remain gcc/g++ compatable. According to my recollection of the original AT&T/USL manuals that I have (in Australia) that cover ELF, toolchain, linking, abi's, etc, I still believe our crt{i,n}.o are broken. We have replaced the extensible "linker set"-like mechanism that was part of the ELF linking defintion with a static _init() and _fini() function. Other systems, notably g++, depend on the original system working. Anyway, I will be checking out the details in about 2 weeks when I get back to .au and look it up. -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 14:50:38 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 881F737B4FE for ; Tue, 17 Oct 2000 14:50:35 -0700 (PDT) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 17 Oct 2000 22:50:28 +0100 (BST) Date: Tue, 17 Oct 2000 22:50:27 +0100 From: David Malone To: David Drum Cc: freebsd-bugs@FreeBSD.org Subject: Re: conf/22038: Default location of named.pid file assumes named is running as root Message-ID: <20001017225027.A88362@walton.maths.tcd.ie> References: <200010170900.CAA96493@freefall.freebsd.org> <20001017081857.C46425@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001017081857.C46425@elvis.mu.org>; from david@mu.org on Tue, Oct 17, 2000 at 08:18:58AM -0500 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 17, 2000 at 08:18:58AM -0500, David Drum wrote: > I am trying to look at this from the perspective of someone who is > completely new to FreeBSD and wants to run named as a non-privileged user. > The "-u bind -g bind" options are given in /etc/defaults/rc.conf. I guess it would be nice to make these work in a simpler manner, but I think the trouble for exsting users would probably outweigh the number of novice users trying these options. Maybe the best thing to do is to expand on the comment in rc.conf and add a commented out example line in out default named.conf? David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 15:33:53 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id A758B37B479; Tue, 17 Oct 2000 15:33:46 -0700 (PDT) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 17 Oct 2000 23:33:45 +0100 (BST) Date: Tue, 17 Oct 2000 23:33:44 +0100 From: David Malone To: Bruce Evans Cc: freebsd-bugs@FreeBSD.org, jlemon@FreeBSD.org, bp@FreeBSD.org, marcel@FreeBSD.org Subject: Re: kern/18909: select(2) timeout limited to 100000000 seconds Message-ID: <20001017233344.A88671@walton.maths.tcd.ie> References: <200006080840.BAA25083@freefall.freebsd.org> <20000612221136.A18521@walton.maths.tcd.ie> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000612221136.A18521@walton.maths.tcd.ie>; from dwmalone@maths.tcd.ie on Mon, Jun 12, 2000 at 10:11:37PM +0100 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'd like to commit something along the lines of the following patch. It removes calls to "itimerfix" for select, poll and other code which has been copied from them. Itimerfix limits the duration you can wait to 100000000 seconds, which isn't needed in the cases I've looked at 'cos they know how to sleep for a shorter amount of time and then go back to sleep again if they have to wait for longer. The crux of the change is a function timevaladdcheck which adds two timevals but checks the sum won't overflow or underflow. I think it avoids doing any calculations which might cause problems. David. Index: compat/linux/linux_misc.c =================================================================== RCS file: /cvs/FreeBSD-CVS/src/sys/compat/linux/linux_misc.c,v retrieving revision 1.85 diff -u -r1.85 linux_misc.c --- compat/linux/linux_misc.c 2000/08/26 05:08:10 1.85 +++ compat/linux/linux_misc.c 2000/10/17 14:41:04 @@ -457,7 +457,7 @@ printf("Linux-emul(%ld): incoming timeout (%ld/%ld)\n", (long)p->p_pid, utv.tv_sec, utv.tv_usec); #endif - if (itimerfix(&utv)) { + if (utv.tv_sec < 0 || utv.tv_usec < 0 || utv.tv_sec >= 1000000) { /* * The timeval was invalid. Convert it to something * valid that will act as it does under Linux. Index: kern/kern_event.c =================================================================== RCS file: /cvs/FreeBSD-CVS/src/sys/kern/kern_event.c,v retrieving revision 1.16 diff -u -r1.16 kern_event.c --- kern/kern_event.c 2000/08/30 04:49:07 1.16 +++ kern/kern_event.c 2000/10/17 14:51:34 @@ -525,17 +525,15 @@ if (tsp != NULL) { TIMESPEC_TO_TIMEVAL(&atv, tsp); - if (itimerfix(&atv)) { - error = EINVAL; - goto done; - } if (tsp->tv_sec == 0 && tsp->tv_nsec == 0) timeout = -1; else timeout = atv.tv_sec > 24 * 60 * 60 ? 24 * 60 * 60 * hz : tvtohz(&atv); getmicrouptime(&rtv); - timevaladd(&atv, &rtv); + error = timevaladdcheck(&atv, &rtv); + if (error) + goto done; } else { atv.tv_sec = 0; atv.tv_usec = 0; Index: kern/kern_time.c =================================================================== RCS file: /cvs/FreeBSD-CVS/src/sys/kern/kern_time.c,v retrieving revision 1.70 diff -u -r1.70 kern_time.c --- kern/kern_time.c 2000/04/18 15:15:20 1.70 +++ kern/kern_time.c 2000/10/17 14:03:32 @@ -49,6 +49,8 @@ #include #include +#include + struct timezone tz; /* @@ -656,6 +658,35 @@ t1->tv_sec -= t2->tv_sec; t1->tv_usec -= t2->tv_usec; timevalfix(t1); +} + +int +timevaladdcheck(t1, t2) + struct timeval *t1, *t2; +{ + struct timeval xtv; + + if (t1->tv_usec < 0 || t1->tv_usec >= 1000000 || + t2->tv_usec < 0 || t2->tv_usec >= 1000000) + return EINVAL; + + /* Check for underflow or overflow if result is not between t1 & t2 */ + if (t1->tv_sec >= 0 && t2->tv_sec >= 0) { + xtv.tv_sec = LONG_MAX; + xtv.tv_usec = 999999; + timevalsub(&xtv, t1); + if (timevalcmp(t2, &xtv, >)) + return EINVAL; + } else if (t1->tv_sec < 0 && t2->tv_sec < 0) { + xtv.tv_sec = LONG_MIN; + xtv.tv_usec = 0; + timevalsub(&xtv, t1); + if (timevalcmp(t2, &xtv, <)) + return EINVAL; + } + + timevaladd(t1, t2); + return 0; } static void Index: kern/sys_generic.c =================================================================== RCS file: /cvs/FreeBSD-CVS/src/sys/kern/sys_generic.c,v retrieving revision 1.63 diff -u -r1.63 sys_generic.c --- kern/sys_generic.c 2000/07/28 22:17:42 1.63 +++ kern/sys_generic.c 2000/10/17 14:18:09 @@ -692,12 +692,14 @@ sizeof (atv)); if (error) goto done; - if (itimerfix(&atv)) { + getmicrouptime(&rtv); + error = timevaladdcheck(&atv, &rtv); + if (error) + goto done; + if (timevalcmp(&atv, &rtv, <)) { error = EINVAL; goto done; } - getmicrouptime(&rtv); - timevaladd(&atv, &rtv); } else { atv.tv_sec = 0; atv.tv_usec = 0; @@ -827,12 +829,14 @@ if (SCARG(uap, timeout) != INFTIM) { atv.tv_sec = SCARG(uap, timeout) / 1000; atv.tv_usec = (SCARG(uap, timeout) % 1000) * 1000; - if (itimerfix(&atv)) { + getmicrouptime(&rtv); + error = timevaladdcheck(&atv, &rtv); + if (error) + goto done; + if (timevalcmp(&atv, &rtv, <)) { error = EINVAL; goto done; } - getmicrouptime(&rtv); - timevaladd(&atv, &rtv); } else { atv.tv_sec = 0; atv.tv_usec = 0; Index: netncp/ncp_sock.c =================================================================== RCS file: /cvs/FreeBSD-CVS/src/sys/netncp/ncp_sock.c,v retrieving revision 1.2 diff -u -r1.2 ncp_sock.c --- netncp/ncp_sock.c 1999/10/12 10:36:59 1.2 +++ netncp/ncp_sock.c 2000/10/17 14:30:34 @@ -203,12 +203,10 @@ if (tv) { atv=*tv; - if (itimerfix(&atv)) { - error = EINVAL; - goto done; - } getmicrouptime(&rtv); - timevaladd(&atv, &rtv); + error = timevaladdcheck(&atv, &rtv); + if (error) + goto done; } timo = 0; retry: @@ -224,7 +222,8 @@ goto done; ttv=atv; timevalsub(&ttv, &rtv); - timo = tvtohz(&ttv); + timo = ttv.tv_sec > 24 * 60 * 60 ? + 24 * 60 * 60 * hz : tvtohz(&ttv); } s = splhigh(); if ((p->p_flag & P_SELECT) == 0) { Index: sys/time.h =================================================================== RCS file: /cvs/FreeBSD-CVS/src/sys/sys/time.h,v retrieving revision 1.43 diff -u -r1.43 time.h --- sys/time.h 2000/03/20 14:09:05 1.43 +++ sys/time.h 2000/10/17 13:47:49 @@ -199,6 +199,7 @@ void nanouptime __P((struct timespec *ts)); void nanotime __P((struct timespec *ts)); void timevaladd __P((struct timeval *, struct timeval *)); +int timevaladdcheck __P((struct timeval *, struct timeval *)); void timevalsub __P((struct timeval *, struct timeval *)); int tvtohz __P((struct timeval *)); #else /* !_KERNEL */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 15:40:10 2000 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 89E5137B4FE for ; Tue, 17 Oct 2000 15:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA98361; Tue, 17 Oct 2000 15:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id 9033E37B4CF for ; Tue, 17 Oct 2000 15:31:25 -0700 (PDT) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 13lfGV-0007AB-00; Wed, 18 Oct 2000 00:31:23 +0200 Received: (from naddy@localhost) by kemoauc.mips.inka.de (8.11.0/8.11.0) id e9HM3bO98577; Wed, 18 Oct 2000 00:03:37 +0200 (CEST) (envelope-from naddy) Message-Id: <200010172203.e9HM3bO98577@kemoauc.mips.inka.de> Date: Wed, 18 Oct 2000 00:03:37 +0200 (CEST) From: Christian Weisgerber Reply-To: naddy@mips.inka.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/22064: ifconfig.8 claims ARP only on 10Mb/s Ethernet Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22064 >Category: bin >Synopsis: ifconfig.8 claims ARP only on 10Mb/s Ethernet >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 17 15:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 5.0-CURRENT alpha >Organization: >Environment: >Description: The ifconfig(8) man page erroneously claims that ARP is used only over 10Mb/s Ethernet. From OpenBSD. >How-To-Repeat: >Fix: Index: ifconfig.8 =================================================================== RCS file: /freebsd/src/sbin/ifconfig/ifconfig.8,v retrieving revision 1.31 diff -u -r1.31 ifconfig.8 --- ifconfig.8 2000/07/19 17:24:53 1.31 +++ ifconfig.8 2000/10/17 22:06:57 @@ -98,7 +98,7 @@ .\" through .\" .Ar f , .\" are specified in hexadecimal. -.\" The host number may be omitted on 10Mb/s Ethernet interfaces, +.\" The host number may be omitted on Ethernet interfaces, .\" which use the hardware physical address, .\" and on interfaces other than the first. .\" For the @@ -167,7 +167,7 @@ This is currently implemented for mapping between .Tn DARPA Internet -addresses and 10Mb/s Ethernet addresses. +addresses and Ethernet addresses. .It Fl arp Disable the use of the Address Resolution Protocol. .It Cm broadcast >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 15:40:14 2000 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 A536437B65E for ; Tue, 17 Oct 2000 15:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA98370; Tue, 17 Oct 2000 15:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D8B0E37B4F9; Tue, 17 Oct 2000 15:39:06 -0700 (PDT) Message-Id: <20001017223906.D8B0E37B4F9@hub.freebsd.org> Date: Tue, 17 Oct 2000 15:39:06 -0700 (PDT) From: agifford@infowest.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/22065: Patch to add support to ipfw for per rule overriding of dynamic keep-state rule expiration lifetimes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22065 >Category: kern >Synopsis: Patch to add support to ipfw for per rule overriding of dynamic keep-state rule expiration lifetimes >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 Oct 17 15:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Aaron D. Gifford >Release: FreeBSD 4.1.1-STABLE >Organization: >Environment: FreeBSD my.freebsd.box 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Thu Oct 12 11:58:29 MDT 2000 root@my.freebsd.box:/usr/src/sys/compile/LOCAL i386 >Description: Hello, When using ipfw's dynamic stateful rules, while users CAN use the sysctl variables to control expiration times globally, it cannot yet be done on a rule-by-rule basis. The patch below fixes this, adding the ability to append "lifetime X" (where X is a number) to any keep-state rule. For keep-state rules that do NOT append this new option, the old behavior guided by the sysctl variables remains. For those rules that add this option, on a rule-by-rule basis the expiration time may be customized. While writing these patches, I came across what LOOKS like a bug but may not. In ip_fw.c, I noticed that both TCP and non-TCP keep-state rules are updated using the net.inet.ip.fw_syn_lifetime where I would think that non-TCP keep-state rules should instead be using the net.inet.ip.fw.dyn_short_lifetime variable instead. This patch also fixes this issue. If this is NOT a bug but is deliberate, I would encourage that it be documented as such. I believe it is around line 798 of ip_fw.c (at least on FreeBSD-4.1.1-STABLE as of 17 Oct. 2000). This patch also adds documentation for the "lifetime X" option to the ipfw man page. I have been using these patches on several moderate-traffic Internet hosts and on several firewall boxes, all running various versions of FreeBSD 4.0 and 4.1 for several months now with absolutely no problems at all. I belive these changes to be VERY stable. This change would be extremely useful. I use it right now like this: (This is a small subset of my rules, edited for this example) ipfw add check-state ### UDP filters: # Keep state on UDP sent to ICQ servers for up to 5 minutes # so ICQ clients won't keep getting disconnected: ipfw add pass udp from ${MYIP} to ${ICQ_NETWORK} out keep-state lifetime 300 # All other UDP will use the default net.inet.ip.fw.dyn_short_lifetime # expiration: ipfw add pass udp from ${MYIP} to any out keep-state ### TCP filters: # Drop bogus "established" traffic: ipfw add deny tcp from any to any established # Keep my SSH sessions around for up to a whole day: ipfw add pass tcp from ${MYIP} to any out setup keep-state lifetime 86400 # All other outgoing TCP gets the default expiration as set in the # system variable net.inet.ip.fw_syn_lifetime: ipfw add pass tcp from ${MYIP} to any out setup keep-state I really hope that this new feature will be adopted. It has been very useful. And that would also let me be more lazy -- I wouldn't have to patch my system after each cvsup. :) If the patch submitted below (in the "Fix to the problem if known:" part) doesn't come through clearly, email me and I'll email the patch to you. Sincerely, Aaron Gifford >How-To-Repeat: This is a feature request >Fix: --- sys/netinet/ip_fw.h.orig Mon Aug 21 18:33:18 2000 +++ sys/netinet/ip_fw.h Tue Oct 17 16:08:36 2000 @@ -73,6 +73,7 @@ u_short fu_skipto_rule; /* SKIPTO command rule number */ u_short fu_reject_code; /* REJECT response code */ struct sockaddr_in fu_fwd_ip; + u_int32_t fu_dyn_lifetime; /* Explicit dynamic rule lifetime */ } fw_un; u_char fw_prot; /* IP protocol */ /* @@ -121,6 +122,7 @@ #define fw_reject_code fw_un.fu_reject_code #define fw_pipe_nr fw_un.fu_pipe_nr #define fw_fwd_ip fw_un.fu_fwd_ip +#define fw_dyn_lifetime fw_un.fu_dyn_lifetime struct ip_fw_chain { LIST_ENTRY(ip_fw_chain) chain; @@ -147,6 +149,7 @@ struct ipfw_flow_id mask ; struct ip_fw_chain *chain ; /* pointer to parent rule */ u_int32_t type ; /* rule type */ + u_int32_t lifetime ; /* per-rule specified lifetime */ u_int32_t expire ; /* expire time */ u_int64_t pcnt, bcnt; /* match counters */ u_int32_t bucket ; /* which bucket in hash table */ --- sys/netinet/ip_fw.c.orig Tue Oct 17 07:44:57 2000 +++ sys/netinet/ip_fw.c Tue Oct 17 16:08:36 2000 @@ -722,7 +722,7 @@ break ; case TH_SYN | (TH_SYN << 8) : /* move to established */ - q->expire = time_second + dyn_ack_lifetime ; + q->expire = time_second + (q->lifetime ? q->lifetime : dyn_ack_lifetime) ; break ; case TH_SYN | (TH_SYN << 8) | TH_FIN : case TH_SYN | (TH_SYN << 8) | (TH_FIN << 8) : @@ -747,7 +747,7 @@ } } else { /* should do something for UDP and others... */ - q->expire = time_second + dyn_short_lifetime ; + q->expire = time_second + (q->lifetime ? q->lifetime : dyn_short_lifetime) ; } if (match_direction) *match_direction = dir ; @@ -795,7 +795,13 @@ if (mask) r->mask = *mask ; r->id = *id ; - r->expire = time_second + dyn_syn_lifetime ; + r->lifetime = chain->rule->fw_dyn_lifetime ; + if (r->lifetime) + r->expire = time_second + r->lifetime ; + else if (r->id.proto == IPPROTO_TCP) + r->expire = time_second + dyn_syn_lifetime ; + else + r->expire = time_second + dyn_short_lifetime ; r->chain = chain ; r->type = ((struct ip_fw_ext *)chain->rule)->dyn_type ; --- sbin/ipfw/ipfw.c.orig Tue Oct 17 07:44:55 2000 +++ sbin/ipfw/ipfw.c Tue Oct 17 16:08:36 2000 @@ -383,6 +383,8 @@ printf(" keep-state %d", (int)chain->next_rule_ptr); else printf(" keep-state"); + if (chain->fw_dyn_lifetime) + printf(" lifetime %d", (int)chain->fw_dyn_lifetime); } /* Direction */ if (chain->fw_flg & IP_FW_BRIDGED) @@ -837,6 +839,7 @@ " ipoptions [!]{ssrr|lsrr|rr|ts},...\n" " tcpoptions [!]{mss|window|sack|ts|cc},...\n" " icmptypes {type[,type]}...\n" +" keep-state [lifetime ]\n" " pipeconfig:\n" " {bw|bandwidth} {bit/s|Kbit/s|Mbit/s|Bytes/s|KBytes/s|MBytes/s}\n" " {bw|bandwidth} interface_name\n" @@ -1821,6 +1824,15 @@ (int)rule.next_rule_ptr = type ; av++; ac--; } + if (ac > 0 && !strncmp(*av,"lifetime",strlen(*av))) { + u_long lifetime ; + + av++; ac--; + if (ac > 0 && (lifetime = atoi(*av)) != 0) { + rule.fw_dyn_lifetime = lifetime; + av++; ac--; + } + } continue; } if (!strncmp(*av,"bridged",strlen(*av))) { --- sbin/ipfw/ipfw.8.orig Tue Oct 17 07:09:53 2000 +++ sbin/ipfw/ipfw.8 Tue Oct 17 16:08:36 2000 @@ -605,18 +605,38 @@ interface. .It Ar options : .Bl -tag -width indent -.It Cm keep-state Op Ar method +.It Xo Cm keep-state Op Ar method +.Op Cm lifetime Ar number +.Xc Upon a match, the firewall will create a dynamic rule, whose -default behaviour is to matching bidirectional traffic between +default behaviour is to match bidirectional traffic between source and destination IP/port using the same protocol. -The rule has a limited lifetime (controlled by a set of +The rule has a limited lifetime controlled by a set of .Xr sysctl 8 -variables), and the lifetime is refreshed every time a matching -packet is found. +variables that may be overridden on a per-rule basis. +The lifetime is refreshed every time a matching packet is +found. .Pp The actual behaviour can be modified by specifying a different .Ar method , although at the moment only the default one is specified. +.Pp +The default rule lifetime may be overridden for a specific +rule by appending +.Cm lifetime Ar number +to explicitly set the number of seconds for the dynamic rule +lifetime. +.Pp +For TCP rules, explicitly setting a rule lifetime overrides the +default setting stored in the +.Xr sysctl 8 +variable +.Em net.inet.ip.fw.dyn_ack_lifetime . +For non-TCP rules, it overrides the +.Xr sysctl 8 +variable +.Em net.inet.ip.fw.dyn_short_lifetime +instead. .It Cm bridged Matches only bridged packets. This can be useful for multicast or broadcast traffic, which >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 Oct 17 16: 0:12 2000 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 2689437B4F9 for ; Tue, 17 Oct 2000 16:00:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA04667; Tue, 17 Oct 2000 16:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 519C737B4C5; Tue, 17 Oct 2000 15:59:18 -0700 (PDT) Message-Id: <20001017225918.519C737B4C5@hub.freebsd.org> Date: Tue, 17 Oct 2000 15:59:18 -0700 (PDT) From: agifford@infowest.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/22066: Patch to add feature to FreeBSD's ftpd when used with chroot Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22066 >Category: bin >Synopsis: Patch to add feature to FreeBSD's ftpd when used with chroot >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 Oct 17 16:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Aaron D. Gifford >Release: FreeBSD-4.1.1-STABLE >Organization: >Environment: FreeBSD my.freebsd.box 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Thu Oct 12 11:58:29 MDT 2000 root@my.freebsd.box:/usr/src/sys/compile/LOCAL i386 >Description: Hello, When using the ftpd daemon with users who are chrooted (see the ftpd man page, authentication rule #5), if a user's home directory is /users/joe, ftpd behaves exactly as I expect and changes to that directory. However, in certain cases, the following feature would be preferable: If I use a set-up like this: /users/joe - directory in which I want user joe to be chrooted /users/joe/bin - where chroot-accessable binaries are kept /users/joe/etc - chroot-accesable system stuff (like group) so that ls and other tools behave normally in the chrooted environment /users/joe/web - this is the ONLY subdirectory that user joe owns (all others are root.wheel) and has write privileges to - it is where joe can upload web pages to With the above setup, it would be nice to be able to automatically AFTER the chroot to /users/joe do a cwd() to /web so that joe will begin his FTP session within his writable subdirectory. The wu-ftpd daemon has this ability by setting a user's home directory to: /users/joe/./web By adding a "/./" to the home directory, the wu-ftpd daemon knows where the chroot portion of the home directory ends and where the cwd() portion begins. Unfortunatly, wu-ftpd is not an option. FreeBSD's ftpd is far superior. The patch below adds this feature to FreeBSD's ftpd daemon. I hope that you seriously consider adding this to to FreeBSD. It is quite handy and I expect that there are many others who would enjoy this added ability. The only drawback that I can see to adding this feature (and I must mention it to be honest) is in cases where existing installations use a "/./" in home directories for some other purpose where changing the existing chroot behavior of the FTP daemon would require them to restructure. Installations where this would be a problem are very likely extremely rare or nonexistent. So while I mention it, I don't think it would really be a problem. I've been using these very same modifications to support this new chroot feature on a web server where users are chrooted to their own subdirectories for security purposes. It has been running without problems for months on a system with about 12,000 users. Sincerely, Aaron Gifford P.S. If the patch included doesn't quite come out right (I'm pasting it using a web browser), email me and I'll email a copy to you. >How-To-Repeat: This is a feature request. >Fix: Patch to ftpd follows: +++ libexec/ftpd/ftpd.c Tue Oct 3 10:18:24 2000 @@ -250,6 +250,63 @@ static void reapchild __P((int)); static void logxfer __P((char *, long, long)); +/* + * Two new subroutines to let ftpd chroot to a home directory in the + * format /home/dir/./here/or/there where the chroot will be done + * on chroot("/home/dir/") followed by a chdir ("/here/or/there") + * (Much like wu-ftpd's similar feature) and do it safely. + */ +static char * +chrootdir(dir) + char *dir; +{ + static char cdir[MAXPATHLEN+1]; + int len = 0; + + if (!dir) { + cdir[0] = '/'; + cdir[1] = '\0'; + return cdir; + } + while(*dir && len < MAXPATHLEN) { + if (*dir == '/' && *(dir+1) == '.' && *(dir+2) == '/') { + cdir[len++] = *dir; + cdir[len] = '\0'; + return cdir; + } + cdir[len++] = *dir++; + } + cdir[len] = '\0'; + return cdir; +} + +static char * +homedir(dir) + char *dir; +{ + static char hdir[MAXPATHLEN+1]; + int len = 0; + + if (!dir) { + hdir[0] = '/'; + hdir[1] = '\0'; + return hdir; + } + while (*dir && !(*dir == '/' && *(dir+1) == '.' && *(dir+2) == '/')) + dir++; + if (!*dir) { + hdir[0] = '/'; + hdir[1] = '\0'; + return hdir; + } + dir += 2; + while (*dir && len < MAXPATHLEN) + hdir[len++] = *dir++; + hdir[len] = '\0'; + return hdir; +} +/* End of chroot feature subroutine additions */ + static char * curdir() { @@ -260,7 +317,7 @@ if (path[1] != '\0') /* special case for root dir. */ strcat(path, "/"); /* For guest account, skip / since it's chrooted */ - return (guest ? path+1 : path); + return ((dochroot || guest) ? path+1 : path); } int @@ -1285,12 +1342,12 @@ * the old current directory will be accessible as "." * outside the new root! */ - if (chroot(pw->pw_dir) < 0 || chdir("/") < 0) { + if (chroot(chrootdir(pw->pw_dir)) < 0 || chdir(homedir(pw->pw_dir)) < 0) { reply(550, "Can't set guest privileges."); goto bad; } } else if (dochroot) { - if (chroot(pw->pw_dir) < 0 || chdir("/") < 0) { + if (chroot(chrootdir(pw->pw_dir)) < 0 || chdir(homedir(pw->pw_dir)) < 0) { reply(550, "Can't change root."); goto bad; } >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 Oct 17 17:20: 7 2000 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 36B4937B4CF for ; Tue, 17 Oct 2000 17:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA32805; Tue, 17 Oct 2000 17:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 37E0037B4CF; Tue, 17 Oct 2000 17:12:02 -0700 (PDT) Message-Id: <20001018001202.37E0037B4CF@hub.freebsd.org> Date: Tue, 17 Oct 2000 17:12:02 -0700 (PDT) From: Stanley.Hopcroft@IPAustralia.Gov.AU To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/22068: 4.1.1-RELEASE does not recognise (no probe in demsg) IDE CD-ROM when CD-ROM configured as Primary slave Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22068 >Category: kern >Synopsis: 4.1.1-RELEASE does not recognise (no probe in demsg) IDE CD-ROM when CD-ROM configured as Primary slave >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 Oct 17 17:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Stanley Hopcroft >Release: 4.1-RELEASE because of the problem with 4.1.1-RELEASE >Organization: IP Australia >Environment: >Description: The same hardware can load FreeBSD 4.1-RELEASE from a Walnut Creek CD-ROM but not 4.1.1-RELEASE from CD. Neither the ATAPI CD-ROM IRQ and IO address nor the CD-ROM banner message appear in the messages from the device driver probes after the kernel loads (before the sysinstall screen). >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 19:10: 5 2000 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 3444137B4E5 for ; Tue, 17 Oct 2000 19:10:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA73018; Tue, 17 Oct 2000 19:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 17 Oct 2000 19:10:03 -0700 (PDT) Message-Id: <200010180210.TAA73018@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Wei-Kai-Wu Subject: Re: i386/22006: quotacheck halt Reply-To: Wei-Kai-Wu Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/22006; it has been noted by GNATS. From: Wei-Kai-Wu To: Andre Albsmeier Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: i386/22006: quotacheck halt Date: Wed, 18 Oct 2000 09:58:58 +0800 On Tue, Oct 17, 2000 at 02:28:13PM +0200, Andre Albsmeier wrote: > > By the way, shall we take it as a bug? > It is a bug. It is covered by my PR. I mean that should the FreeBSD-source patch quotacheck? Not ourself. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 21:35:47 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp6.port.ru (mx6.port.ru [194.67.23.42]) by hub.freebsd.org (Postfix) with ESMTP id D4EE537B4D7; Tue, 17 Oct 2000 21:35:43 -0700 (PDT) Received: from adsl-141-154-116-32.bostma.adsl.bellatlantic.net ([141.154.116.32] helo=kan.dnsalias.net) by smtp6.port.ru with esmtp (Exim 3.14 #30) id 13lkwt-000FSK-00; Wed, 18 Oct 2000 08:35:42 +0400 Received: (from kan@localhost) by kan.dnsalias.net (8.11.0/8.11.0) id e9I4YNv11923; Wed, 18 Oct 2000 00:34:23 -0400 (EDT) (envelope-from kan) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Wed, 18 Oct 2000 00:33:56 -0400 (EDT) From: "Alexander N. Kabaev" To: freebsd-gnats-submit@freebsd.org Subject: Re: gnu/20966: binutils break C++ in GCC 2.95.x and GCC-current Cc: freebsd-bugs@freebsd.org, Peter Wemm Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > The problem is that our crt foo is incompatable with g++'s constructor > and thread mechanism. In order to get g++ working at yahoo, we had > to back out to the old crt{i,n}.o and use gcc's crt{begin,end}.o > so that the frame hooks etc were called in the right places. I disagree. Our custom crtbegin.c was and is indeed incompatible with DWARF2 exception unwinding method GCC is using by default, but our crt1.c, crti.S and crtn.S were working just fine until FreeBSD started to use architecture independent crtbegin.c implementation. Since non-system GCC versions do not use FreeBSD crtbegin.c at all, this incompatibility does not prevent them from working correctly. > According to my recollection of the original AT&T/USL manuals that I > have (in Australia) that cover ELF, toolchain, linking, abi's, etc, I > still believe our crt{i,n}.o are broken. We have replaced the extensible > "linker set"-like mechanism that was part of the ELF linking defintion > with a static _init() and _fini() function. All that previous versions of crti.S and crtn.S files were doing is they were providing function prologue (function name label) and epilogue (ret instruction) for compiler generated .init and .fini sections. The way compiler generates .init and .fini sections is indeed similar to linker sets. Our startup files were working OK with any version of GCC as long as GCC .init|.fini section with all initialization calls it needs. The new platform independent implementation does not use these sections anymore and implements it's own _init and _fini functions instead. That is IMHO wrong not only because it breaks GCC but also because crtbegin.o will require modification each time GCC developers add feature which requires non-trivial initialization at startup time. Presenting .init and .fini sections as functions allows us to call them from crt1.c right before and after _main. Alternatively, ld.so dynamic loader could be changed to run contents of these sections at the module load time but that way we will lose the possibility to run some other code (such as profiling related initialization) before constructors are run. Changing dynamic loader is not feasible at this point anyway because it will introduce severe backwards binary compatibility problems without providing any significant advantage. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 22:20: 7 2000 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 B6D9D37B4C5 for ; Tue, 17 Oct 2000 22:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA41198; Tue, 17 Oct 2000 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from the.whole.net (the.whole.net [206.26.15.65]) by hub.freebsd.org (Postfix) with ESMTP id 841DF37B4E5 for ; Tue, 17 Oct 2000 22:15:41 -0700 (PDT) Received: (from lumpy@localhost) by the.whole.net (8.11.0/8.11.0) id e9I5Eul58435; Wed, 18 Oct 2000 01:14:56 -0400 (EDT) Message-Id: <200010180514.e9I5Eul58435@the.whole.net> Date: Wed, 18 Oct 2000 01:14:56 -0400 (EDT) From: The Lumpy One Reply-To: lumpy@the.whole.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/22071: mtree hangs on fifos Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22071 >Category: bin >Synopsis: mtree hangs on fifos >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 Oct 17 22:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: The Lumpy One >Release: FreeBSD 4.1-RELEASE i386 >Organization: is.no.bs >Environment: n/a >Description: mtree appears to attempt to get the crc of a fifo when it encounters one of the same name that used to be a file with a checksum in the mtree map file. >How-To-Repeat: 1. create an mtree with checksums of a directory of some test files 2. remove one of the test files and mkfifo in its place 3. run mtree to check the directory against the map created in #1 >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 22:30: 4 2000 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 E3B8E37B4CF for ; Tue, 17 Oct 2000 22:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA44429; Tue, 17 Oct 2000 22:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 17 Oct 2000 22:30:01 -0700 (PDT) Message-Id: <200010180530.WAA44429@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: i386/22006: quotacheck halt Reply-To: Andre Albsmeier Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/22006; it has been noted by GNATS. From: Andre Albsmeier To: Wei-Kai-Wu Cc: Andre Albsmeier , FreeBSD-gnats-submit@freebsd.org Subject: Re: i386/22006: quotacheck halt Date: Wed, 18 Oct 2000 06:55:32 +0200 On Wed, 18-Oct-2000 at 09:58:58 +0800, Wei-Kai-Wu wrote: > On Tue, Oct 17, 2000 at 02:28:13PM +0200, Andre Albsmeier wrote: > > > By the way, shall we take it as a bug? > > It is a bug. It is covered by my PR. > > I mean that should the FreeBSD-source patch quotacheck? > Not ourself. ?!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 17 23:50: 5 2000 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 DB16A37B4FE for ; Tue, 17 Oct 2000 23:50:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA74497; Tue, 17 Oct 2000 23:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from Omega.csie.NCTU.edu.tw (omega.csie.nctu.edu.tw [140.113.214.167]) by hub.freebsd.org (Postfix) with ESMTP id C9A1D37B4D7 for ; Tue, 17 Oct 2000 23:47:16 -0700 (PDT) Received: (from wkwu@localhost) by Omega.csie.NCTU.edu.tw (8.11.1/8.11.0) id e9I6ihp34675; Wed, 18 Oct 2000 14:44:43 +0800 (CST) (envelope-from wkwu) Message-Id: <200010180644.e9I6ihp34675@Omega.csie.NCTU.edu.tw> Date: Wed, 18 Oct 2000 14:44:43 +0800 (CST) From: Wei-Kai Wu Reply-To: wkwu@Omega.csie.NCTU.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22072: make kernel failed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22072 >Category: kern >Synopsis: make kernel failed >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 Oct 17 23:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Wei-Kai Wu >Release: FreeBSD 5.0-CURRENT i386 >Organization: Kavalan >Environment: >Description: src-cur.4567; make world ok. but make kernel failed: gcc -c -O2 -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 ../../i386/pci/pci_cfgreg.c ../../i386/pci/pci_cfgreg.c: In function `pci_cfgregopen': ../../i386/pci/pci_cfgreg.c:95: dereferencing pointer to incomplete type ../../i386/pci/pci_cfgreg.c:99: dereferencing pointer to incomplete type ../../i386/pci/pci_cfgreg.c:100: dereferencing pointer to incomplete type ../../i386/pci/pci_cfgreg.c:100: sizeof applied to an incomplete type ../../i386/pci/pci_cfgreg.c:100: sizeof applied to an incomplete type ../../i386/pci/pci_cfgreg.c: At top level: ../../i386/pci/pci_cfgreg.c:139: warning: no previous prototype for `pci_cfgintr' ../../i386/pci/pci_cfgreg.c: In function `pci_cfgintr': ../../i386/pci/pci_cfgreg.c:150: increment of pointer to unknown structure ../../i386/pci/pci_cfgreg.c:150: arithmetic on pointer to an incomplete type ../../i386/pci/pci_cfgreg.c:151: dereferencing pointer to incomplete type ../../i386/pci/pci_cfgreg.c:151: dereferencing pointer to incomplete type ../../i386/pci/pci_cfgreg.c:153: dereferencing pointer to incomplete type ../../i386/pci/pci_cfgreg.c:153: dereferencing pointer to incomplete type ../../i386/pci/pci_cfgreg.c:157: dereferencing pointer to incomplete type machine/cpufunc.h:112: warning: inlining failed in call to `ffs' ../../i386/pci/pci_cfgreg.c:157: warning: called from here ../../i386/pci/pci_cfgreg.c:158: dereferencing pointer to incomplete type *** Error code 1 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 18 0: 0: 8 2000 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 2D93237B4D7 for ; Wed, 18 Oct 2000 00:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA78147; Wed, 18 Oct 2000 00:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from Omega.csie.NCTU.edu.tw (omega.csie.nctu.edu.tw [140.113.214.167]) by hub.freebsd.org (Postfix) with ESMTP id 77BD637B4E5 for ; Tue, 17 Oct 2000 23:55:07 -0700 (PDT) Received: (from wkwu@localhost) by Omega.csie.NCTU.edu.tw (8.11.1/8.11.0) id e9I6pYY34788; Wed, 18 Oct 2000 14:51:34 +0800 (CST) (envelope-from wkwu) Message-Id: <200010180651.e9I6pYY34788@Omega.csie.NCTU.edu.tw> Date: Wed, 18 Oct 2000 14:51:34 +0800 (CST) From: wkwu@csie.nctu.edu.tw Reply-To: wkwu@csie.nctu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/22073: couldn't open console Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22073 >Category: misc >Synopsis: xonsole: couldn't open console >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 Oct 18 00:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Wei-Kai Wu >Release: FreeBSD 5.0-CURRENT i386 >Organization: Kavalan >Environment: src-cur.4567 make world ok. XFree86 Version 4.0.1 / X Window System (protocol Version 11, revision 0, vendor release 6400) >Description: When I execute xconsole, it shows:"Couldn't open console" at xconsole. I have added 2 line /etc/fbtab: /dev/ttyv0 0600 /dev/console:/dev/pcaudio:/dev/pcaudioctl /dev/ttyv1 0600 /dev/console:/dev/pcaudio:/dev/pcaudioctl at the X-window: ls -l /dev/console crw------- 1 wkwu users 0, 0 Oct 16 13:08 /dev/console >How-To-Repeat: >Fix: no idea. >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 Oct 18 1:20: 6 2000 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 B63D537B4F9 for ; Wed, 18 Oct 2000 01:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA07092; Wed, 18 Oct 2000 01:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sanpietro.red-bean.com (sanpietro.red-bean.com [206.69.89.65]) by hub.freebsd.org (Postfix) with ESMTP id 7FF6C37B4C5 for ; Wed, 18 Oct 2000 01:13:11 -0700 (PDT) Received: from limekiller.braithwaite.net (sanpietro.red-bean.com [206.69.89.65]) by sanpietro.red-bean.com (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id DAA19135 for ; Wed, 18 Oct 2000 03:13:08 -0500 Received: by limekiller.braithwaite.net (Postfix, from userid 1001) id E4CE45C76; Wed, 18 Oct 2000 01:13:04 -0700 (PDT) Message-Id: <20001018081304.E4CE45C76@limekiller.braithwaite.net> Date: Wed, 18 Oct 2000 01:13:04 -0700 (PDT) From: mab@red-bean.com (Matthew Braithwaite) To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22074: Setting net.inet.ip.fw.dyn_short_lifetime really sets dyn_rst_lifetime Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22074 >Category: kern >Synopsis: Typo in sys/netinet/ip_fw.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: Wed Oct 18 01:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Matthew Braithwaite >Release: FreeBSD 4.1-STABLE i386 >Organization: Red-Bean Software >Environment: Present up to at least 4.1.1-RELEASE >Description: --- ip_fw.c~ Fri Aug 25 00:43:43 2000 +++ ip_fw.c Wed Oct 18 01:12:19 2000 @@ -173,7 +173,7 @@ SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_rst_lifetime, CTLFLAG_RW, &dyn_rst_lifetime, 0, "Lifetime of dyn. rules for rst"); SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_short_lifetime, CTLFLAG_RW, - &dyn_rst_lifetime, 0, "Lifetime of dyn. rules for other situations"); + &dyn_short_lifetime, 0, "Lifetime of dyn. rules for other situations"); #endif /* STATEFUL */ #endif >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 18 2:50: 5 2000 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 B12FE37B65E for ; Wed, 18 Oct 2000 02:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA37883; Wed, 18 Oct 2000 02:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id AC1E737B4E5; Wed, 18 Oct 2000 02:46:43 -0700 (PDT) Message-Id: <20001018094643.AC1E737B4E5@hub.freebsd.org> Date: Wed, 18 Oct 2000 02:46:43 -0700 (PDT) From: certhas@ausworld.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/22077: X-Windows broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22077 >Category: bin >Synopsis: X-Windows broken >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 18 02:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew Johnson >Release: 4.1.1 >Organization: >Environment: >Description: When trying the 4.1.1 Release I've installed & configured X-Windows. Started X with an user account and it's fine. Then I reboot & attempt to use startx again. This has been repeated with Trident and ATI video cards. X-Windows gets as far as setting the FontPath after which it then reports: Fatal server error: xf86OpenConsole: KDENABIO failed (Operation not permitted) >How-To-Repeat: Do an install and try to run X-Windows/KDE a second time. >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 Oct 18 4:10: 7 2000 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 6DF4A37B4E5 for ; Wed, 18 Oct 2000 04:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA69381; Wed, 18 Oct 2000 04:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from Draculina.otdel-1.org (Draculina.Otdel-1.ORG [195.230.65.30]) by hub.freebsd.org (Postfix) with ESMTP id EA96037B4D7 for ; Wed, 18 Oct 2000 04:07:11 -0700 (PDT) Received: by Draculina.otdel-1.org (Postfix, from userid 1002) id 23694F3; Wed, 18 Oct 2000 15:07:04 +0400 (MSD) Message-Id: <20001018110704.23694F3@Draculina.otdel-1.org> Date: Wed, 18 Oct 2000 15:07:04 +0400 (MSD) From: nms@otdel-1.org Reply-To: nms@otdel-1.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22078: Option ROM(s) must be excluded from ISA IO memory space allocation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22078 >Category: kern >Synopsis: Option ROM(s) must be excluded from ISA IO memory space allocation >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 Oct 18 04:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Nikolai Saoukh >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: Any device on ISA bus with io memory window request with current resource manager. >Description: Option ROM(s) are not excluded from ISA io memory, thus any request for io memory window can land upon video/... BIOS. See also kern/17715. >How-To-Repeat: >Fix: Attached patch introduce new device wich take care of any option ROM(s) present on ISA address space. --- src/sys/isa/isa_common.c.orig Tue Oct 10 13:49:04 2000 +++ src/sys/isa/isa_common.c Thu Oct 12 18:24:16 2000 @@ -1047,3 +1047,95 @@ DRIVER_MODULE(isa, nexus, isa_driver, isa_devclass, 0, 0); #endif +/* + * Pseudo driver to take care of holes in ISA iomem occupied + * by option rom(s) + */ + +#define ORM_ID 0x00004d3e + +static struct isa_pnp_id orm_ids[] = { + { ORM_ID, NULL }, /* ORM0000 */ + { 0, NULL }, +}; + +static int +orm_probe(device_t dev) { + return ISA_PNP_PROBE(device_get_parent(dev), dev, orm_ids); +} + +static int +orm_attach(device_t dev) { + return 0; +} + +#define IOMEM_START 0x0a0000 +#define IOMEM_STEP 0x000800 +#define IOMEM_END 0x100000 + +static void +orm_identify(driver_t* driver, device_t parent) { + device_t child; + u_int32_t chunk; + int rnum = 0; + + child = BUS_ADD_CHILD(parent, ISA_ORDER_SPECULATIVE, "orm", -1); + device_set_driver(child, driver); + device_set_desc(child, "Option ROM(s)"); + isa_set_logicalid(child, ORM_ID); + isa_set_vendorid(child, ORM_ID); + for (chunk = IOMEM_START; chunk < IOMEM_END; chunk += IOMEM_STEP) { + struct resource* res; + int rid; + bus_space_tag_t bt; + bus_space_handle_t bh; + u_int32_t rom_size; + u_int8_t buf[3]; + + bus_set_resource(child, SYS_RES_MEMORY, rnum, chunk, IOMEM_STEP); + rid = rnum; + res = bus_alloc_resource(child, SYS_RES_MEMORY, &rid, 0ul, ~0ul, IOMEM_STEP, RF_ACTIVE); + if (res == NULL) { + bus_delete_resource(child, SYS_RES_MEMORY, rnum); + continue; + } + bt = rman_get_bustag(res); + bh = rman_get_bushandle(res); + bus_space_read_region_1(bt, bh, 0, buf, sizeof(buf)); + bus_release_resource(child, SYS_RES_MEMORY, rid, res); + bus_delete_resource(child, SYS_RES_MEMORY, rnum); + if (buf[0] != 0x55 || buf[1] != 0xAA || (buf[2] & 0x03) != 0) { + continue; + } + rom_size = buf[2] << 9; + bus_set_resource(child, SYS_RES_MEMORY, rnum, chunk, rom_size); + rid = rnum; + res = bus_alloc_resource(child, SYS_RES_MEMORY, &rid, 0ul, ~0ul, rom_size, 0); + if (res == NULL) { + bus_delete_resource(child, SYS_RES_MEMORY, rnum); + continue; + } + chunk += rom_size - IOMEM_STEP; + rnum++; + } + if(rnum == 0) + device_delete_child(parent, child); +} + +static device_method_t orm_methods[] = { + /* Device interface */ + DEVMETHOD(device_identify, orm_identify), + DEVMETHOD(device_probe, orm_probe), + DEVMETHOD(device_attach, orm_attach), + { 0, 0 } +}; + +static driver_t orm_driver = { + "orm", + orm_methods, + 0 +}; + +static devclass_t orm_devclass; + +DRIVER_MODULE(orm, isa, orm_driver, orm_devclass, 0, 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 Wed Oct 18 7:27:20 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from web1703.mail.yahoo.com (web1703.mail.yahoo.com [128.11.23.214]) by hub.freebsd.org (Postfix) with SMTP id 375BC37B4FE for ; Wed, 18 Oct 2000 07:27:16 -0700 (PDT) Received: (qmail 18386 invoked by uid 60001); 18 Oct 2000 14:27:15 -0000 Message-ID: <20001018142715.18385.qmail@web1703.mail.yahoo.com> Received: from [202.101.165.61] by web1703.mail.yahoo.com; Wed, 18 Oct 2000 07:27:15 PDT Date: Wed, 18 Oct 2000 07:27:15 -0700 (PDT) From: Yifeng Xu Subject: Re: gnu/20966: binutils break C++ in GCC 2.95.x and GCC-current To: freebsd-bugs@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I also report the problem a few months ago, On FreeBSD 4.x, some C++ programs can work under Linux but not FreeBSD, example code: tst.cpp or tst.c ------------------ #include void f() __attribute((__constructor__)); int i; void f() { i = 1; } int main(int argc, char *argv[]) { printf("%d\n", i); return 0; } $ cc -o tst tst.c $ ./tst 1 $ c++ -o tst tst.cpp 0 $ why have different result? Alexander, please give me an answer. Regards, XuYifeng ----- Original Message ----- From: Alexander N. Kabaev To: Cc: ; Peter Wemm Sent: Wednesday, October 18, 2000 12:33 PM Subject: Re: gnu/20966: binutils break C++ in GCC 2.95.x and GCC-current > > > The problem is that our crt foo is incompatable with g++'s constructor > > and thread mechanism. In order to get g++ working at yahoo, we had > > to back out to the old crt{i,n}.o and use gcc's crt{begin,end}.o > > so that the frame hooks etc were called in the right places. > > I disagree. Our custom crtbegin.c was and is indeed incompatible with DWARF2 > exception unwinding method GCC is using by default, but our crt1.c, crti.S and > crtn.S were working just fine until FreeBSD started to use architecture > independent crtbegin.c implementation. Since non-system GCC versions do not use > FreeBSD crtbegin.c at all, this incompatibility does not prevent them from > working correctly. > > > According to my recollection of the original AT&T/USL manuals that I > > have (in Australia) that cover ELF, toolchain, linking, abi's, etc, I > > still believe our crt{i,n}.o are broken. We have replaced the extensible > > "linker set"-like mechanism that was part of the ELF linking defintion > > with a static _init() and _fini() function. > > All that previous versions of crti.S and crtn.S files were doing is they were > providing function prologue (function name label) and epilogue (ret > instruction) for compiler generated .init and .fini sections. The way > compiler generates .init and .fini sections is indeed similar to linker > sets. Our startup files were working OK with any version of GCC as long as > GCC .init|.fini section with all initialization calls it needs. The new platform > independent implementation does not use these sections anymore and implements > it's own _init and _fini functions instead. That is IMHO wrong not only because > it breaks GCC but also because crtbegin.o will require modification each time > GCC developers add feature which requires non-trivial initialization at startup > time. > > Presenting .init and .fini sections as functions allows us > to call them from crt1.c right before and after _main. Alternatively, ld.so > dynamic loader could be changed to run contents of these sections at the module > load time but that way we will lose the possibility to run some other code (such > as profiling related initialization) before constructors are run. Changing > dynamic loader is not feasible at this point anyway because it will introduce > severe backwards binary compatibility problems without providing any significant > advantage. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message __________________________________________________ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 18 8: 5:58 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from sydney.worldwide.lemis.com (termroom.bsdcon.org [206.55.247.2]) by hub.freebsd.org (Postfix) with ESMTP id D5B8C37B661 for ; Wed, 18 Oct 2000 08:05:53 -0700 (PDT) Received: (from grog@localhost) by sydney.worldwide.lemis.com (8.11.0/8.9.3) id e9HGFkC05951; Tue, 17 Oct 2000 12:15:46 -0400 (EDT) (envelope-from grog) Date: Tue, 17 Oct 2000 12:14:43 -0400 From: Greg Lehey To: Roman Shterenzon Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/22021: 4.1 with adaptec and vinum crashed when runs periodic dail= Message-ID: <20001017121443.J5097@sydney.worldwide.lemis.com> References: <200010161030.DAA91031@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200010161030.DAA91031@freefall.freebsd.org>; from roman@harmonic.co.il on Mon, Oct 16, 2000 at 03:30:08AM -0700 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 On Monday, 16 October 2000 at 3:30:08 -0700, Roman Shterenzon wrote: > The following reply was made to PR kern/22021; it has been noted by GNATS. > > From: Roman Shterenzon > To: freebsd-gnats-submit@FreeBSD.org > Cc: > Subject: Re: kern/22021: 4.1 with adaptec and vinum crashed when runs periodic > dail= > Date: Mon, 16 Oct 2000 12:26:28 +0200 (IST) > > Sorry for mangled text, don't know what happened to it. > I resend the information: It's still mangled: > # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.8 2000/07/20 02:51:02 msmit= > h Exp $ > > machine=09=09i386 > cpu=09=09I686_CPU > ident=09=09MATRIX It's also not what I asked for. Greg -- 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 Oct 18 8:10:11 2000 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 DA71A37B4F9 for ; Wed, 18 Oct 2000 08:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA54769; Wed, 18 Oct 2000 08:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 5946F37B4E5; Wed, 18 Oct 2000 08:05:56 -0700 (PDT) Message-Id: <20001018150556.5946F37B4E5@hub.freebsd.org> Date: Wed, 18 Oct 2000 08:05:56 -0700 (PDT) From: rasmith@aristotle.tamu.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/22086: DMA errors during intensive disk activity on vinum volume Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22086 >Category: kern >Synopsis: DMA errors during intensive disk activity on vinum volume >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 18 08:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Robin Smith >Release: 4.1.1-RELEASE #1 >Organization: Dept. of Philosophy, Texas A&M University >Environment: FreeBSD test-drive.tamu.edu 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #1: Tue Oct 10 18:09:51 CDT 2000 root@test-drive.tamu.edu:/usr/src/sys/compile/TEST-DRIVE i386 >Description: System is a dual-PIII, 512MB, 4 AT disks (see below); a raid5 vinum volume is mounted as /usr (striped across all four disks). Heavy access to a vinum raid5 device causes DMA errors; if the system does not recover (i.e. a sync fails after multiple attempts), a reboot is triggered. The initial error message is of the following form: Oct 18 08:36:19 test-drive /kernel: ata0-slave: zero length DMA transfer attempted This message may mention either controller. If there is no recovery, then either the terminal hangs indefinitely or the system restarts. From a hang caused by 'du /usr' (which worked its way to /usr/src/games before giving up: Oct 18 08:36:19 test-drive /kernel: ata0-slave: zero length DMA transfer attempted Oct 18 08:36:29 test-drive /kernel: ad1: WRITE command timeout - resetting Oct 18 08:36:29 test-drive /kernel: ata0: resetting devices .. done Oct 18 08:36:29 test-drive /kernel: ata0-slave: zero length DMA transfer attempted The error message "zero length DMA transfer attempted" is found in / >How-To-Repeat: any intensive disk activity on the vinum raid5 volume triggers it. A good choice is 'du /usr'. Here is some tracking information on the error message "zero length DMA transfer" 512: grep -C10 "zero length DMA transfer" /usr/src/sys/dev/ata/ata-dma.c ata_dmasetup(struct ata_softc *scp, int32_t device, int8_t *data, int32_t count, int32_t flags) ### ^^^^ ARGUMENT 4 { struct ata_dmaentry *dmatab; u_int32_t dma_count, dma_base; int i = 0; if (((uintptr_t)data & 1) || (count & 1)) return -1; ##### FOR COUNT=0 if (!count) { ata_printf(scp, device, "zero length DMA transfer attempted\n"); return -1; } dmatab = scp->dmatab[ATA_DEV(device)]; dma_base = vtophys(data); dma_count = min(count, (PAGE_SIZE - ((uintptr_t)data & PAGE_MASK))); data += dma_count; count -= dma_count; while (count) { Called by: 516: grep dmasetup /usr/src/sys/dev/ata/* |less /usr/src/sys/dev/ata/ata-all.h:int32_t ata_dmasetup(struct ata_softc *, int32_t, int8_t *, int32_t, int32_t); /usr/src/sys/dev/ata/ata-disk.c: !ata_dmasetup(adp->controller, adp-> unit, /usr/src/sys/dev/ata/ata-dma.c:ata_dmasetup(struct ata_softc *scp, int32_t devic e, /usr/src/sys/dev/ata/ata-dma.c:ata_dmasetup(struct ata_softc *scp, int32_t devic e, /usr/src/sys/dev/ata/atapi-all.c: !ata_dmasetup(atp->controller, atp->unit , In ad_transfer(struct ad_request *request): 524: grep -C6 -n dmasetup /usr/src/sys/dev/ata/ata-disk.c 394- 395- devstat_start_transaction(&adp->stats); 396- 397- /* does this drive & transfer work with DMA ? */ 398- request->flags &= ~ADR_F_DMA_USED; 399- if ((adp->controller->mode[ATA_DEV(adp->unit)] >= ATA_DMA) && 400: !ata_dmasetup(adp->controller, adp->unit, 401- (void *)request->data, request->bytecount, ####### ^^^^^^^^^ = count #### 402- (request->flags & ADR_F_READ))) { 403- request->flags |= ADR_F_DMA_USED; 404- cmd = request->flags&ADR_F_READ ? ATA_C_READ_DMA : ATA_C_WRITE_DMA; 405- request->currentsize = request->bytecount; 406- } The only call to ata_dmasetup in ata-disk is from ad_transfer. There are two calls to ad_transfer: At line 570: else { request->bytecount -= request->currentsize; request->donecount += request->currentsize; if (request->bytecount > 0) { ad_transfer(request); return ATA_OP_CONTINUES; } At line 290: while (request.bytecount > 0) { ad_transfer(&request); Both are protected by comparisons; bytecount==0 should never happen. root@test-drive [/usr/home/rasmith] 525: grep -C6 -n dmasetup /usr/src/sys/dev/ata/atapi-all.c 254- if ((atp->controller->mode[ATA_DEV(atp->unit)] >= ATA_DMA) && 255- (request->ccb[0] == ATAPI_READ || 256- request->ccb[0] == ATAPI_READ_BIG || 257- ((request->ccb[0] == ATAPI_WRITE || 258- request->ccb[0] == ATAPI_WRITE_BIG) && 259- !(atp->controller->flags & ATA_ATAPI_DMA_RO))) && 260: !ata_dmasetup(atp->controller, atp->unit, 261- (void *)request->data, request->bytecount, ########### ^^^^^^^^^^^^^ = count #### 262- request->flags & ATPR_F_READ)) { 263- request->flags |= ATPR_F_DMA_USED; 264- } 265- 266- /* start ATAPI operation */ 518: cat /var/log/mount.today /dev/ad0s1a / ufs rw 1 1 /dev/ad0s1e /mnt/tmp ufs rw 2 2 /dev/ad0s1f /var ufs rw 2 2 /dev/vinum/raid5 /usr ufs rw 2 2 procfs /proc procfs rw 0 0 520: cat /var/log/dmesg.today Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.1.1-RELEASE #1: Tue Oct 10 18:09:51 CDT 2000 root@test-drive.tamu.edu:/usr/src/sys/compile/TEST-DRIVE Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (501.14-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383fbff real memory = 536870912 (524288K bytes) avail memory = 518524928 (506372K bytes) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 IOAPIC #0 intpin 16 -> irq 5 IOAPIC #0 intpin 17 -> irq 11 IOAPIC #0 intpin 18 -> irq 10 IOAPIC #0 intpin 19 -> irq 9 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 0, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 1, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xc041d000. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib2: at device 1.0 on pci0 pci1: on pcib2 pci1: at 0.0 irq 11 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xef80-0xef9f irq 9 at devic e 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered Timecounter "PIIX" frequency 3579545 Hz chip1: port 0x440-0x44f at device 7.3 on pci0 xl0: <3Com 3c905B-TX Fast Etherlink XL> port 0xec00-0xec7f mem 0xfebfef80-0xfebfef ff irq 5 at device 15.0 on pci0 xl0: Ethernet address: 00:01:02:be:6d:85 miibus0: on xl0 xlphy0: <3Com internal media interface> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto xl1: <3Com 3c905B-TX Fast Etherlink XL> port 0xe480-0xe4ff mem 0xfebfef00-0xfebfef 7f irq 11 at device 16.0 on pci0 xl1: Ethernet address: 00:01:02:be:6d:41 miibus1: on xl1 xlphy1: <3Com internal media interface> on miibus1 xlphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto ahc0: port 0xe800-0xe8ff mem 0xfebff000-0xfe bfffff irq 10 at device 18.0 on pci0 aic7892: Wide Channel A, SCSI Id=7, 32/255 SCBs pcib1: on motherboard pci2: on pcib1 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model MouseMan+, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 lip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 APIC_IO: Testing 8254 interrupt delivery APIC_IO: routing 8254 via IOAPIC #0 intpin 2 SMP: AP CPU #1 Launched! ad0: 29314MB [59560/16/63] at ata0-master using UDMA33 ad1: 29314MB [59560/16/63] at ata0-slave using UDMA33 ad2: 29314MB [59560/16/63] at ata1-master using UDMA33 ad3: 29314MB [59560/16/63] at ata1-slave using UDMA33 Waiting 15 seconds for SCSI devices to settle Mounting root from ufs:/dev/ad0s1a WARNING: / was not properly dismounted vinum: loaded vinum: reading configuration from /dev/ad3s1e vinum: updating configuration from /dev/ad2s1e vinum: updating configuration from /dev/ad1s1e vinum: updating configuration from /dev/ad0s1h cd0 at ahc0 bus 0 target 4 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 20.000MB/s transfers (20.000MHz, offset 16) cd0: cd present [328499 x 2048 byte records] >Fix: None known >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 18 15:50:23 2000 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 940A637B4D7 for ; Wed, 18 Oct 2000 15:50:19 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA21560; Wed, 18 Oct 2000 15:50:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id F2C7837B4CF; Wed, 18 Oct 2000 15:44:24 -0700 (PDT) Message-Id: <20001018224424.F2C7837B4CF@hub.freebsd.org> Date: Wed, 18 Oct 2000 15:44:24 -0700 (PDT) From: kienow@infinet.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/22099: Xircom CreditCard CM-56T Modem keeps giving interrupt-level buffer overflows. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22099 >Category: kern >Synopsis: Xircom CreditCard CM-56T Modem keeps giving interrupt-level buffer overflows. >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 Oct 18 15:50:18 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Matt >Release: 4.1-STABLE >Organization: >Environment: FreeBSD notebook 4.1-STABLE FreeBSD 4.1-STABLE #0: Mon Sep 25 22:20:40 EDT 2000 root@notebook:/usr/obj/usr/src/sys/notebook i386 >Description: Whenever I place a heavy network load on my modem I get the following messages over and over. Why does this happen? and how can it be fixed? Also, what are the results of these messages? Am I not getting the best speed on my connection as I should? sio3: 88 more interrupt-level buffer overflows (total 88) sio3: 50 more interrupt-level buffer overflows (total 138) sio3: 58 more interrupt-level buffer overflows (total 196) sio3: 8 more interrupt-level buffer overflows (total 204) sio3: 179 more interrupt-level buffer overflows (total 383) sio3: 81 more interrupt-level buffer overflows (total 464) sio3: 35 more interrupt-level buffer overflows (total 499) >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 18 17:40: 5 2000 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 BF65937B4F9 for ; Wed, 18 Oct 2000 17:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA97305; Wed, 18 Oct 2000 17:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 18 Oct 2000 17:40:01 -0700 (PDT) Message-Id: <200010190040.RAA97305@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: P Kern Subject: Re: bin/22077: X-Windows broken (KDENABIO error) Reply-To: P Kern Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/22077; it has been noted by GNATS. From: P Kern To: freebsd-gnats-submit@FreeBSD.org, certhas@ausworld.net Cc: pak@utcs.utoronto.ca Subject: Re: bin/22077: X-Windows broken (KDENABIO error) Date: Wed, 18 Oct 2000 20:38:01 -0400 Hi. I got the same error (KDENABIO). I was able to get the Xserver working again by adding ... kern_securelevel_enable="NO" in my /etc/rc.conf file. (the KDENABIO error seems to come from within /sys/dev/syscons/syscons.c -- ie. if (securelevel > 0) .... etc. etc). Hope this helps. pak. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 18 19: 0: 8 2000 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 3BC1437B4D7 for ; Wed, 18 Oct 2000 19:00:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA25842; Wed, 18 Oct 2000 19:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 18 Oct 2000 19:00:03 -0700 (PDT) Message-Id: <200010190200.TAA25842@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Neil Blakey-Milner Subject: Fwd: Re: i386/13811: ide cdrom stops recognizing audio cdroms Reply-To: Neil Blakey-Milner Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/13811; it has been noted by GNATS. From: Neil Blakey-Milner To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Fwd: Re: i386/13811: ide cdrom stops recognizing audio cdroms Date: Thu, 19 Oct 2000 03:52:07 +0200 ----- Forwarded message from pstern ----- Date: Mon, 7 Aug 2000 06:41:55 -0800 (AKDT) From: pstern To: nbm@FreeBSD.org Subject: Re: i386/13811: ide cdrom stops recognizing audio cdroms No. The same problem persists. When it starts happening the only way to clear it is a reboot. peter On Sat, 5 Aug 2000 nbm@FreeBSD.org wrote: > Synopsis: ide cdrom stops recognizing audio cdroms > > State-Changed-From-To: open->feedback > State-Changed-By: nbm > State-Changed-When: Sat Aug 5 15:41:31 PDT 2000 > State-Changed-Why: > Has the new ATAPI CDROM code in 3.3 and 4.0 onwards made a difference? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=13811 > ----- End forwarded message ----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 18 19: 4:58 2000 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 B6D0737B4FE; Wed, 18 Oct 2000 19:04:56 -0700 (PDT) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA27313; Wed, 18 Oct 2000 19:04:56 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Wed, 18 Oct 2000 19:04:56 -0700 (PDT) From: Message-Id: <200010190204.TAA27313@freefall.freebsd.org> To: pstern@ptialaska.net, nbm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/13811: ide cdrom stops recognizing audio cdroms Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ide cdrom stops recognizing audio cdroms State-Changed-From-To: feedback->open State-Changed-By: nbm State-Changed-When: Wed Oct 18 19:04:30 PDT 2000 State-Changed-Why: Got feedback, problem still exists. http://www.freebsd.org/cgi/query-pr.cgi?pr=13811 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 18 19:10: 6 2000 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 7C40D37B4E5 for ; Wed, 18 Oct 2000 19:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA30392; Wed, 18 Oct 2000 19:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 1609137B4C5; Wed, 18 Oct 2000 19:01:31 -0700 (PDT) Message-Id: <20001019020131.1609137B4C5@hub.freebsd.org> Date: Wed, 18 Oct 2000 19:01:31 -0700 (PDT) From: ryanm@mhpcc.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/22102: Local scripts get run before securelevel is elevated Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22102 >Category: conf >Synopsis: Local scripts get run before securelevel is elevated >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 Oct 18 19:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ryan Mooney >Release: 4.1.1-RELEASE >Organization: MHPCC >Environment: FreeBSD xxxx.xxx.edu 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #1: Wed Oct 18 10:47:43 HST 2000 ryanm@mhpcc.edu:/usr/src/sys/compile/mykernel i386 >Description: While hardening some systems I was examining the flow of control through /etc/rc in regards to how that might potentially compromise my useage of chflags schg on various system binaries/config files. I have made /etc/rc* and /etc/*conf immutable as well as various system binaries (/bin, /sbin, etc.). The problem arose in that the scripts in ${local_startup} are run before the securelevel is increased. Unless all of those directories (and files therein) are also immutable this opens a window of opportunity in that a clever hacker could use those initialization scripts to undo the immutable flags on my other files, modify them and I would be no wiser. I started examining the potential of making all the ${local_startup} directories/files immutable, but it quickly became evident that that would be somewhat of a slippery slope to travel down. Moving the ${network_pass3_done} and ${kern_securelevel_enable} code above the ${local_startup} doesn't seem to have (?any?) side affects and solves this problem quite nicely. There may be a better solution and if so I'd love to hear it :-) >How-To-Repeat: >Fix: Obviously this diff won't apply after I've cut/pasted, but the result should be obvious enough... *** rc.orig Wed Oct 18 15:45:06 2000 --- rc Wed Oct 18 15:45:17 2000 *************** *** 564,569 **** --- 564,585 ---- echo '.' fi + if [ -n "${network_pass3_done}" ]; then + network_pass4 + fi + + # Raise kernel security level. This should be done only after `fsck' has + # repaired local file systems if you want the securelevel to be greater than 1 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 18 20:21:18 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp2.port.ru (mx2.port.ru [194.67.23.33]) by hub.freebsd.org (Postfix) with ESMTP id E0A9C37B4C5 for ; Wed, 18 Oct 2000 20:21:11 -0700 (PDT) Received: from adsl-141-154-116-32.bostma.adsl.bellatlantic.net ([141.154.116.32] helo=kan.dnsalias.net) by smtp2.port.ru with esmtp (Exim 3.14 #30) id 13m6GJ-000MdI-00; Thu, 19 Oct 2000 07:21:10 +0400 Received: (from kan@localhost) by kan.dnsalias.net (8.11.0/8.11.0) id e9J3K7d46626; Wed, 18 Oct 2000 23:20:07 -0400 (EDT) (envelope-from kan) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Wed, 18 Oct 2000 23:19:41 -0400 (EDT) From: "Alexander N. Kabaev" To: (Yifeng Xu) Subject: Re: gnu/20966: binutils break C++ in GCC 2.95.x and GCC-current Cc: freebsd-bugs@freebsd.org Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >I also report the problem a few months ago, >On FreeBSD 4.x, some C++ programs can work under Linux >but not FreeBSD, example code: Pardon me, but what gives you idea that this problem is even related to the problem I was writing about? Your test case works just fine when compiled as C and fails only when compiled by the C++ frontend. I wouldn't blame FreeBSD for what seems to be genuine CCC bug. The bug was introduced somewhen in between last EGCS and FSF GCC 2.95 releases. That explains why your code always works on Linux, because your Linux distribution is most likely running older EGCS version, while FreeBSD has imported GCC 2.95.2 into the base system quite some time ago. Anyway, I tried to figure out what is wrong with latest stable and development GCC versions and the bug was pretty easy to find. I've already submitted appropriate fixes to the gcc-patches mailing list, you can find them there if you really need. It remains to be seen if GCC guys will approve these patches. PS. Using attribute((constructor)) functions in C++ code seems strange for me. Why can't you just use static object with constructor? This approach is working everywhere and is way more portable. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 18 20:33:32 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from elvis.mu.org (elvis.mu.org [207.154.226.10]) by hub.freebsd.org (Postfix) with ESMTP id 33B8837B479 for ; Wed, 18 Oct 2000 20:33:31 -0700 (PDT) Received: by elvis.mu.org (Postfix, from userid 1061) id B8B4C2B2BD; Wed, 18 Oct 2000 22:33:25 -0500 (CDT) Date: Wed, 18 Oct 2000 22:33:25 -0500 From: David Drum To: freebsd-bugs@FreeBSD.org Subject: Re: conf/22038: Default location of named.pid file assumes named is running as root Message-ID: <20001018223325.A83999@elvis.mu.org> Mail-Followup-To: David Drum , freebsd-bugs@FreeBSD.org References: <20001017081857.C46425@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from DougB@gorean.org on Tue, Oct 17, 2000 at 12:52:29PM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Quoth Doug Barton: > This isn't a freebsd issue, it's a BIND issue. People who > don't have a sufficient amount of knowledge about how BIND works to > run it successfully as an unpriviliged user won't be helped by your > suggestion. It will just be some other aspect of BIND configuration > that trips them up. I suppose it can be argued that someone who is essentially ignorant about BIND, at least enough not to know about the side effects on the PID file of running "-u bind", will not be running "ndc reload" either. Perhaps I should suggest to the BIND maintainers that it spit out a message at startup if the parent directory of the PID file is not writable by the user specified by the "-u". It is probably appropriate to close this PR. Regards, David Drum david@mu.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 18 21: 0: 6 2000 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 5AECA37B4CF for ; Wed, 18 Oct 2000 21:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA68454; Wed, 18 Oct 2000 21:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail4.nycap.rr.com (mail4-1.nyroc.rr.com [24.92.33.20]) by hub.freebsd.org (Postfix) with ESMTP id 330DC37B4D7 for ; Wed, 18 Oct 2000 20:52:07 -0700 (PDT) Received: from [24.161.45.173] ([24.169.217.142]) by mail4.nycap.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-59787U250000L250000S0V35) with SMTP id com for ; Wed, 18 Oct 2000 23:56:13 -0400 Received: (qmail 64270 invoked by uid 1001); 19 Oct 2000 03:48:35 -0000 Message-Id: <20001019034835.64269.qmail@24.161.45.173> Date: 19 Oct 2000 03:48:35 -0000 From: hdiwan@pobox.com Reply-To: hdiwan@pobox.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/22105: /usr/src/bin/sh - Permission denied Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22105 >Category: bin >Synopsis: /usr/src/bin/sh - Permission denied when installing using installworld >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 Oct 18 21:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Hasan Diwan >Release: FreeBSD 5.0-CURRENT >Organization: >Environment: >Description: 'make installworld' dies with a 'Permission denied' at /usr/src/bin/sh if run in single user mode and /usr/src/bin/csh if run in multiuser mode. This behavior leads me to believe it cannot replace a program in use. >How-To-Repeat: cd /usr/src/ make installworld >Fix: Editing out the offending line in bin/Makefile (ie the 'sh \' or 'csh \' lines) and then manually running 'make install' in the relavent directories. >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 Oct 18 21:45:16 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mppsystems.com (mppsystems.com [208.210.148.205]) by hub.freebsd.org (Postfix) with ESMTP id 44D9137B4C5 for ; Wed, 18 Oct 2000 21:45:14 -0700 (PDT) Received: (from mpp@localhost) by mppsystems.com (8.9.3/8.9.3) id XAA35402; Wed, 18 Oct 2000 23:42:28 -0500 (CDT) (envelope-from mpp) Date: Wed, 18 Oct 2000 23:42:28 -0500 From: Mike Pritchard To: Wei-Kai-Wu Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: i386/22006: quotacheck halt Message-ID: <20001018234228.A35372@mppsystems.com> References: <200010171100.EAA40296@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010171100.EAA40296@freefall.freebsd.org>; from wkwu@csie.nctu.edu.tw on Tue, Oct 17, 2000 at 04:00:05AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 17, 2000 at 04:00:05AM -0700, Wei-Kai-Wu wrote: > The following reply was made to PR i386/22006; it has been noted by GNATS. > > From: Wei-Kai-Wu > To: Andre Albsmeier > Cc: FreeBSD-gnats-submit@FreeBSD.ORG > Subject: Re: i386/22006: quotacheck halt > Date: Tue, 17 Oct 2000 15:16:56 +0800 > > On Mon, Oct 16, 2000 at 10:35:39AM +0200, Andre Albsmeier wrote: > > What is the highest uid you have on /raid1 and /raid2 ? > > You might want to look into PR #2325... > > If this applies to your problem, I might have a patch for you. > > I have found that there are some files uid = -2. > It cause quotacheck halt... > > By the way, shall we take it as a bug? It probably doesn't halt. It just runs for a *very, very* long time. Uid -2 translates to a very large # as an unsigned int. quotacheck then has to examine the entire quota file, even if there are only quota entries at the very start (say, uids 0 - 10,000), and then finally get the what maps to uid == -2. I've done some thought on how to speed this up in the past, and if anyone is actually interested in working on the code to fix it, let me know and I'll share my wisdom. It isn't trivial, and does require a quota file version change, but it should work well on systems with large gaps between UIDs. -Mike -- Mike Pritchard mpp@FreeBSD.org or mpp@mppsystems.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 18 21:50: 5 2000 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 8BA1D37B4C5 for ; Wed, 18 Oct 2000 21:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA86935; Wed, 18 Oct 2000 21:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 18 Oct 2000 21:50:03 -0700 (PDT) Message-Id: <200010190450.VAA86935@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andy Newman Subject: Re: i386/21427: g++ barfs on anonymous i386 sigjmp_buf structure Reply-To: Andy Newman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/21427; it has been noted by GNATS. From: Andy Newman To: freebsd-gnats-submit@FreeBSD.org, earl_chew@agilent.com Cc: Subject: Re: i386/21427: g++ barfs on anonymous i386 sigjmp_buf structure Date: Thu, 19 Oct 2000 15:41:07 +1100 I hit this today with 4.1-STABLE. The last update to the PR was Oct.06 (almost two weeks). Any ETA's on MFCs BDE? (TLA-itis!) -- Andy Newman, Principal Software Engineer, Silverbrook Research To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 19 4:45:51 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from MCSMTP.MC.VANDERBILT.EDU (mcsmtp.mc.Vanderbilt.Edu [160.129.93.202]) by hub.freebsd.org (Postfix) with ESMTP id E9E0D37B4C5 for ; Thu, 19 Oct 2000 04:45:49 -0700 (PDT) Subject: df problem To: freebsd-bugs@freebsd.org X-Mailer: Lotus Notes Release 5.0.3 March 21, 2000 Message-ID: From: George.Giles@mcmail.vanderbilt.edu Date: Thu, 19 Oct 2000 06:47:12 -0500 X-MIMETrack: Serialize by Router on MCSMTP/VUMC/Vanderbilt(Release 5.0.3 |March 21, 2000) at 10/19/2000 06:43:24 AM MIME-Version: 1.0 Content-type: text/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org FreeBSD 4.1.1 P200 w/64MB RAM I think the drive in quesiton is 8 GB. The output of the df command, note ad0s1f (/usr) has a novel availability. Is this a feature? bash-2.04$ df Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s1a 49583 34300 11317 75% / /dev/ad0s1f 7800084 7440147 -264069 104% /usr /dev/ad1s1e 6430169 1827652 4088104 31% /usr1 /dev/ad0s1e 19815 4237 13993 23% /var procfs 4 4 0 100% /proc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 19 4:50: 8 2000 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 C380B37B4E5 for ; Thu, 19 Oct 2000 04:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA42139; Thu, 19 Oct 2000 04:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CA91237B4E5; Thu, 19 Oct 2000 04:49:09 -0700 (PDT) Message-Id: <20001019114909.CA91237B4E5@hub.freebsd.org> Date: Thu, 19 Oct 2000 04:49:09 -0700 (PDT) From: arsaidac@ra.rockwell.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/22111: Install 4.1.1 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22111 >Category: misc >Synopsis: Install 4.1.1 >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 Oct 19 04:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Adrian Saidac >Release: 4.1.1 >Organization: >Environment: N/A >Description: Hardware available: ASUS K7M mother board 256M PC100 SDRAM 50x CD-ROM (BIOS reports PIO4 / UDMA2) SCSI disc controller Tekram fast/wide (80MB/s) Seagate SCSI HD fast/wide Floppy drive AGP Milenium G220 video The CD-ROM is plugged into the mail HD controller as a master; the second HD controller is desibled I am able to boot from the CD-ROM and do the HD slicing and labeling. After the this point when the data transfer suppose to start I am getting (from the Install GUI) the following message: "It appears that you have a audio cd. Please insert the data CD and retry." At this point everything is bad. Even reinitializing the hardware will not revive the CD-ROM >How-To-Repeat: Starting the install process of 4.1.1 >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 19 4:53:38 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from sentinel.office1.bg (sentinel.office1.bg [195.24.48.182]) by hub.freebsd.org (Postfix) with SMTP id 5FC1737B479 for ; Thu, 19 Oct 2000 04:53:34 -0700 (PDT) Received: (qmail 6619 invoked by uid 1001); 19 Oct 2000 11:53:22 -0000 Date: Thu, 19 Oct 2000 14:53:22 +0300 From: Peter Pentchev To: George.Giles@mcmail.vanderbilt.edu Cc: freebsd-bugs@freebsd.org Subject: Re: df problem Message-ID: <20001019145322.A265@ringwraith.office1.bg> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from George.Giles@mcmail.vanderbilt.edu on Thu, Oct 19, 2000 at 06:47:12AM -0500 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 19, 2000 at 06:47:12AM -0500, George.Giles@mcmail.vanderbilt.edu wrote: > FreeBSD 4.1.1 > > P200 w/64MB RAM > > I think the drive in quesiton is 8 GB. > > The output of the df command, note ad0s1f (/usr) has a novel availability. > > Is this a feature? > > > bash-2.04$ df > Filesystem 1K-blocks Used Avail Capacity Mounted on > /dev/ad0s1a 49583 34300 11317 75% / > /dev/ad0s1f 7800084 7440147 -264069 104% /usr > /dev/ad1s1e 6430169 1827652 4088104 31% /usr1 > /dev/ad0s1e 19815 4237 13993 23% /var > procfs 4 4 0 100% /proc This means that your /usr filesystem has exceeded its free space for normal users. There's usually a certain amount set aside for the superuser - to keep critical system processes running. It is usually 8%, but may be modified at newfs(8) time or later by using tunefs(8). See the respective manual pages for more info. Once the filesystem gets this full, any non-superuser write request returns an 'out of disk space' error, while superuser processes may still continue working, until the actual disk space is exhausted. Hope that helps. G'luck, Peter -- The rest of this sentence is written in Thailand, on To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 19 4:55:32 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from myhakas.matti.ee (myhakas.matti.ee [194.126.114.87]) by hub.freebsd.org (Postfix) with ESMTP id CB32B37B4FE for ; Thu, 19 Oct 2000 04:55:29 -0700 (PDT) Received: (from vallo@localhost) by myhakas.matti.ee (8.11.1/8.11.1) id e9JBspJ21044; Thu, 19 Oct 2000 13:54:51 +0200 (EET) (envelope-from vallo) Date: Thu, 19 Oct 2000 13:54:51 +0200 From: Vallo Kallaste To: George.Giles@mcmail.vanderbilt.edu Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: df problem Message-ID: <20001019135451.A20958@myhakas.matti.ee> Reply-To: vallo@matti.ee References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from George.Giles@mcmail.vanderbilt.edu on Thu, Oct 19, 2000 at 06:47:12AM -0500 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 19, 2000 at 06:47:12AM -0500, George.Giles@mcmail.vanderbilt.edu wrote: > I think the drive in quesiton is 8 GB. > > The output of the df command, note ad0s1f (/usr) has a novel availability. > > Is this a feature? > > bash-2.04$ df > Filesystem 1K-blocks Used Avail Capacity Mounted on > /dev/ad0s1a 49583 34300 11317 75% / > /dev/ad0s1f 7800084 7440147 -264069 104% /usr > /dev/ad1s1e 6430169 1827652 4088104 31% /usr1 > /dev/ad0s1e 19815 4237 13993 23% /var > procfs 4 4 0 100% /proc It's feature, read newfs(8) and look for -m switch. You filled the partition to such amount because of root privileges. -- Vallo Kallaste vallo@matti.ee To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 19 7: 7:37 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from hub.all.yans.ru (out.gutatelecom.ru [195.7.161.66]) by hub.freebsd.org (Postfix) with ESMTP id B33BB37B479 for ; Thu, 19 Oct 2000 07:07:33 -0700 (PDT) Received: by hub.all.yans.ru (Postfix, from userid 300) id 2AB007F8BE; Thu, 19 Oct 2000 18:07:04 +0400 (MSD) Date: Thu, 19 Oct 2000 18:07:04 +0400 From: Ekaterina Ivannikova To: freebsd-bugs@freebsd.org Subject: possible problem with threads lib in FreeBSD 4.1 Message-ID: <20001019180703.A3176@hub.all.yans.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi All, I was pursuing a strange bug which causes mysqld to hang (that is not to accept any new connections) on FreeBSD 4.1 after working for some time properly and MySQL folks suggested that there may be some pecularity in FreeBSD threads library. Here is the relevant information. >Release: mysql-3.23.25-beta (Source distribution) >Environment: System: FreeBSD hub.all.yans.ru 4.1-RELEASE FreeBSD 4.1-RELEASE #2: Mon Oct 9 14:22:57 MSD 2000 root@hub.all.yans.ru:/usr/src/sys/compile/HUB i386 Some paths: /usr/bin/perl /usr/bin/make /usr/local/bin/gmake /usr/bin/gcc /usr/bin/cc GCC: Using builtin specs. gcc version 2.95.2 19991024 (release) Compilation info: CC='cc' CFLAGS='-Wall -pipe' CXX='cc' CXXFLAGS='-Wall -pipe -fno-rtti -fno-exceptions -felide-constructors' LDFLAGS='' LIBC: -r--r--r-- 1 root wheel 1156960 Jul 28 17:05 /usr/lib/libc.a lrwxrwxrwx 1 root wheel 9 Aug 30 21:17 /usr/lib/libc.so -> libc.so.4 -r--r--r-- 1 root wheel 553460 Jul 28 17:05 /usr/lib/libc.so.4 Configure command: ./configure --prefix=/usr/local/mysql --with-debug=full --without-readline --enable-assembler --localstatedir=/var/db/mysql --enable-thread-safe-client Perl: This is perl, version 5.005_03 built for i386-freebsd Attaching with gdb to mysqld process produced the following output: bash-2.04# gdb mysqld 47659 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"... /root/mysql-3.23.25-beta/sql/47659: No such file or directory. Attaching to program: /root/mysql-3.23.25-beta/sql/mysqld, process 47659 Reading symbols from /usr/lib/libc_r.so.4...done. Reading symbols from /usr/lib/libm.so.2...done. Reading symbols from /usr/lib/libz.so.2...done. Reading symbols from /usr/lib/libcrypt.so.2...done. Reading symbols from /usr/libexec/ld-elf.so.1...done. 0x2821ff64 in _thread_sys_poll () from /usr/lib/libc_r.so.4 (gdb) info threads 4 process 47659, thread 4 0x2821780e in _thread_kern_sched () from /usr/lib/libc_r.so.4 3 process 47659, thread 3 0x2821780e in _thread_kern_sched () from /usr/lib/libc_r.so.4 2 process 47659, thread 2 0x2821780e in _thread_kern_sched () from /usr/lib/libc_r.so.4 * 1 process 47659, thread 1 0x2821ff64 in _thread_sys_poll () from /usr/lib/libc_r.so.4 (gdb) thread 1 [Switching to thread 1 (process 47659, thread 1)] #0 0x2821ff64 in _thread_sys_poll () from /usr/lib/libc_r.so.4 (gdb) bt #0 0x2821ff64 in _thread_sys_poll () from /usr/lib/libc_r.so.4 #1 0x28218913 in _thread_kern_sched_state_unlock () from /usr/lib/libc_r.so.4 #2 0x28217ffe in _thread_kern_sched () from /usr/lib/libc_r.so.4 #3 0x28218493 in _thread_kern_sched_state_unlock () from /usr/lib/libc_r.so.4 #4 0x2821643a in pthread_mutex_lock () from /usr/lib/libc_r.so.4 #5 0x2821d329 in pthread_exit () from /usr/lib/libc_r.so.4 #6 0x8079ca1 in end_thread (thd=0x8a3d000, put_in_cache=true) at mysqld.cc:928 #7 0x807ef15 in handle_one_connection (arg=0x8a3d000) at sql_parse.cc:421 #8 0x281df65b in _thread_start () from /usr/lib/libc_r.so.4 #9 0x0 in ?? () (gdb) thread 2 [Switching to thread 2 (process 47659, thread 2)] #0 0x2821780e in _thread_kern_sched () from /usr/lib/libc_r.so.4 (gdb) bt #0 0x2821780e in _thread_kern_sched () from /usr/lib/libc_r.so.4 #1 0x28218493 in _thread_kern_sched_state_unlock () from /usr/lib/libc_r.so.4 #2 0x2821643a in pthread_mutex_lock () from /usr/lib/libc_r.so.4 #3 0x2821d329 in pthread_exit () from /usr/lib/libc_r.so.4 #4 0x8079ca1 in end_thread (thd=0x8a3d000, put_in_cache=true) at mysqld.cc:928 #5 0x807ef15 in handle_one_connection (arg=0x8a3d000) at sql_parse.cc:421 #6 0x281df65b in _thread_start () from /usr/lib/libc_r.so.4 #7 0x0 in ?? () (gdb) thread 3 [Switching to thread 3 (process 47659, thread 3)] #0 0x2821780e in _thread_kern_sched () from /usr/lib/libc_r.so.4 (gdb) bt #0 0x2821780e in _thread_kern_sched () from /usr/lib/libc_r.so.4 #1 0x28218493 in _thread_kern_sched_state_unlock () from /usr/lib/libc_r.so.4 #2 0x2821643a in pthread_mutex_lock () from /usr/lib/libc_r.so.4 #3 0x28216744 in _mutex_cv_lock () from /usr/lib/libc_r.so.4 #4 0x2821da14 in pthread_cond_timedwait () from /usr/lib/libc_r.so.4 #5 0x28205389 in _thread_gc () from /usr/lib/libc_r.so.4 #6 0x281df65b in _thread_start () from /usr/lib/libc_r.so.4 #7 0x0 in ?? () (gdb) thread 4 [Switching to thread 4 (process 47659, thread 4)] #0 0x2821780e in _thread_kern_sched () from /usr/lib/libc_r.so.4 (gdb) bt #0 0x2821780e in _thread_kern_sched () from /usr/lib/libc_r.so.4 #1 0x28218422 in _thread_kern_sched_state () from /usr/lib/libc_r.so.4 #2 0x281dd39b in sigwait () from /usr/lib/libc_r.so.4 #3 0x807a244 in signal_hand (arg=0x0) at mysqld.cc:1153 #4 0x281df65b in _thread_start () from /usr/lib/libc_r.so.4 #5 0x0 in ?? () (gdb) Clients left connected were still able to communicate thru the existing connections. mysqld process is shown by ps as idle. FreeBSD is a vanilla 4.1-RELEASE with only tcp-iss patch installed, though mysqld hung without the patch as well. I looked in the stable branch on ftp, it seems that sources for libc_r were last changed in April, so no reason for upgrade ? Any advice is very much appreciated. Ekaterina Ivannikova To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 19 7:10:10 2000 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 4C3D637B4CF for ; Thu, 19 Oct 2000 07:10:08 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA95776; Thu, 19 Oct 2000 07:10:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 19 Oct 2000 07:10:08 -0700 (PDT) Message-Id: <200010191410.HAA95776@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Matt Loschert Subject: Re: misc/21528: installworld fails in secure/usr.bin/openssl Reply-To: Matt Loschert Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/21528; it has been noted by GNATS. From: Matt Loschert To: freebsd-gnats-submit@FreeBSD.org, richards+bsd@CS.Princeton.EDU Cc: Subject: Re: misc/21528: installworld fails in secure/usr.bin/openssl Date: Thu, 19 Oct 2000 10:02:10 -0400 (EDT) I have been encountering this problem also. I spoke with Chris and between the two of us, we were able to narrow the problem down to the inclusion of NOMANCOMPRESS in our /etc/make.conf files. Once removed, installworld worked fine again. I have not had a chance to research the cause of this problem though. - Matt -- Matt Loschert loschert@servint.com Software Engineer voice (703) 847-1381 ServInt Internet Services fax (703) 847-1383 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 19 8:30:27 2000 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 28E3537B4CF for ; Thu, 19 Oct 2000 08:30:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA93551; Thu, 19 Oct 2000 08:30:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from bbnrel4.net.external.hp.com (bbnrel4.net.external.hp.com [155.208.254.68]) by hub.freebsd.org (Postfix) with ESMTP id 64CDF37B4CF for ; Thu, 19 Oct 2000 08:26:55 -0700 (PDT) Received: from hpcpbla.bri.hp.com (hpcpbla.bri.hp.com [15.144.112.65]) by bbnrel4.net.external.hp.com (Postfix) with ESMTP id 0DAEC1CD81 for ; Thu, 19 Oct 2000 17:24:49 +0200 (METDST) Received: from sse0691.bri.hp.com (sse0691.bri.hp.com [15.144.0.53]) by hpcpbla.bri.hp.com (8.9.3 (PHNE_18979)/8.9.3 SMKit7.0) with ESMTP id QAA07511 for ; Thu, 19 Oct 2000 16:24:44 +0100 (BST) Received: (from steve@localhost) by sse0691.bri.hp.com (8.9.3/8.9.3) id QAA34743; Thu, 19 Oct 2000 16:28:37 +0100 (BST) (envelope-from steve) Message-Id: <200010191528.QAA34743@sse0691.bri.hp.com> Date: Thu, 19 Oct 2000 16:28:37 +0100 (BST) From: Steve.Roome@sse0691.bri.hp.com Reply-To: steve@sse0691.bri.hp.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/22124: patch to update pciconf to give a -v option Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22124 >Category: bin >Synopsis: patch to update pciconf to give a -v option >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 19 08:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Steve Roome >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: 4.1-stable pciconf >Description: This patch gives a -v option to pciconf, it's documented in the changed manpage, it shows device types in english to save hassle for ppl who don't have a device using a particular pci resource but want to know what it is without searching through include files to find out what type of type the class is saying it is. >How-To-Repeat: use pciconf -l and guess what the classes mean! >Fix: *** /usr/src/usr.sbin/pciconf/pciconf.8.orig Wed Mar 1 14:08:12 2000 --- /usr/src/usr.sbin/pciconf/pciconf.8 Thu Oct 19 16:23:45 2000 *************** *** 32,37 **** --- 32,38 ---- .Nd diagnostic utility for the PCI bus .Sh SYNOPSIS .Nm pciconf Fl l + .Op Fl v .Nm pciconf Fl a Ar selector .Nm pciconf Fl r Ar selector .Op Fl b | Fl h *************** *** 50,58 **** .Fl l option, it lists all devices found by the boot probe in the following format: .Bd -literal ! foo0@pci0:4:0: class=0x010000 card=0x00000000 chip=0x000f1000 rev=0x01 hdr=0x00 ! bar0@pci0:5:0: class=0x000100 card=0x00000000 chip=0x88c15333 rev=0x00 hdr=0x00 ! none0@pci0:6:0: class=0x020000 card=0x00000000 chip=0x802910ec rev=0x00 hdr=0x00 .Ed .Pp The first column gives the --- 51,73 ---- .Fl l option, it lists all devices found by the boot probe in the following format: .Bd -literal ! atapci0@pci0:1:0: class=0x01018a card=0x00000000 chip=0x06461095 rev=0x01 hdr=0x00 ! ahc0@pci0:2:0: class=0x010000 card=0x00000000 chip=0x80789004 rev=0x00 hdr=0x00 ! .Ed ! .Pp ! With both the ! .Fl v ! and ! .Fl l ! options a more verbose listing is shown with the device type: ! .Bd -literal ! atapci0@pci0:1:0 ! class=0x01018a card=0x00000000 chip=0x06461095 rev=0x01 hdr=0x00 ! IDE storage controller ! ! ahc0@pci0:2:0 ! class=0x010000 card=0x00000000 chip=0x80789004 rev=0x00 hdr=0x00 ! SCSI storage controller .Ed .Pp The first column gives the *************** *** 171,180 **** .Sh AUTHORS The .Nm ! facility was written by .An Stefan Esser and ! .An Garrett Wollman . .Sh BUGS The .Fl b --- 186,197 ---- .Sh AUTHORS The .Nm ! facility was originally written by .An Stefan Esser and ! .An Garrett Wollman. ! .An Steve Roome ! added the verbose option. .Sh BUGS The .Fl b *** /usr/src/usr.sbin/pciconf/pciconf.c.orig Wed Dec 8 17:43:20 1999 --- /usr/src/usr.sbin/pciconf/pciconf.c Thu Oct 19 15:44:42 2000 *************** *** 29,35 **** #ifndef lint static const char rcsid[] = ! "$FreeBSD: src/usr.sbin/pciconf/pciconf.c,v 1.11 1999/12/08 17:43:20 ken Exp $"; #endif /* not lint */ #include --- 29,35 ---- #ifndef lint static const char rcsid[] = ! "$FreeBSD: /c/ncvs/src/usr.sbin/pciconf/pciconf.c,v 1.11 1999/12/08 17:43:20 ken Exp $"; #endif /* not lint */ #include *************** *** 44,50 **** #include "pathnames.h" ! static void list_devs(void); static void readit(const char *, const char *, int); static void writeit(const char *, const char *, const char *, int); static void chkattached(const char *, int); --- 44,50 ---- #include "pathnames.h" ! static void list_devs(int); static void readit(const char *, const char *, int); static void writeit(const char *, const char *, const char *, int); static void chkattached(const char *, int); *************** *** 55,61 **** usage() { fprintf(stderr, "%s\n%s\n%s\n%s\n", ! "usage: pciconf -l", " pciconf -a sel", " pciconf -r [-b | -h] sel addr", " pciconf -w [-b | -h] sel addr [value]"); --- 55,61 ---- usage() { fprintf(stderr, "%s\n%s\n%s\n%s\n", ! "usage: pciconf -l [-v]", " pciconf -a sel", " pciconf -r [-b | -h] sel addr", " pciconf -w [-b | -h] sel addr [value]"); *************** *** 66,77 **** main(int argc, char **argv) { int c; ! int listmode, readmode, writemode, attachedmode; int byte, isshort; ! listmode = readmode = writemode = attachedmode = byte = isshort = 0; ! while ((c = getopt(argc, argv, "alrwbh")) != -1) { switch(c) { case 'a': attachedmode = 1; --- 66,77 ---- main(int argc, char **argv) { int c; ! int listmode, readmode, writemode, attachedmode, verbose; int byte, isshort; ! verbose = listmode = readmode = writemode = attachedmode = byte = isshort = 0; ! while ((c = getopt(argc, argv, "alvrwbh")) != -1) { switch(c) { case 'a': attachedmode = 1; *************** *** 97,102 **** --- 97,106 ---- isshort = 1; break; + case 'v': + verbose = 1; + break; + default: usage(); } *************** *** 109,115 **** usage(); if (listmode) { ! list_devs(); } else if(attachedmode) { chkattached(argv[optind], byte ? 1 : isshort ? 2 : 4); --- 113,119 ---- usage(); if (listmode) { ! list_devs(verbose); } else if(attachedmode) { chkattached(argv[optind], byte ? 1 : isshort ? 2 : 4); *************** *** 127,133 **** } static void ! list_devs(void) { int fd; struct pci_conf_io pc; --- 131,137 ---- } static void ! list_devs(int verbose) { int fd; struct pci_conf_io pc; *************** *** 166,187 **** return; } for (p = conf; p < &conf[pc.num_matches]; p++) { ! ! printf("%s%d@pci%d:%d:%d:\tclass=0x%06x card=0x%08x " "chip=0x%08x rev=0x%02x hdr=0x%02x\n", (p->pd_name && *p->pd_name) ? p->pd_name : "none", (p->pd_name && *p->pd_name) ? (int)p->pd_unit : none_count++, p->pc_sel.pc_bus, p->pc_sel.pc_dev, ! p->pc_sel.pc_func, (p->pc_class << 16) | (p->pc_subclass << 8) | p->pc_progif, (p->pc_subdevice << 16) | p->pc_subvendor, (p->pc_device << 16) | p->pc_vendor, p->pc_revid, p->pc_hdr); } } while (pc.status == PCI_GETCONF_MORE_DEVS); - close(fd); } --- 170,357 ---- return; } for (p = conf; p < &conf[pc.num_matches]; p++) { ! if (!verbose) { ! int char_count; ! char_count=printf("%s%d@pci%d:%d:%d:", ! (p->pd_name && *p->pd_name) ? p->pd_name : ! "none", ! (p->pd_name && *p->pd_name) ? (int)p->pd_unit : ! none_count++, ! p->pc_sel.pc_bus, p->pc_sel.pc_dev, ! p->pc_sel.pc_func); ! if (char_count<20) while (char_count++<20) printf(" "); ! printf("class=0x%06x card=0x%08x " "chip=0x%08x rev=0x%02x hdr=0x%02x\n", + (p->pc_class << 16) | + (p->pc_subclass << 8) | p->pc_progif, + (p->pc_subdevice << 16) | p->pc_subvendor, + (p->pc_device << 16) | p->pc_vendor, + p->pc_revid, p->pc_hdr); + } else { + int char_count; + printf("%s%d@pci%d:%d:%d\n\t", (p->pd_name && *p->pd_name) ? p->pd_name : "none", (p->pd_name && *p->pd_name) ? (int)p->pd_unit : none_count++, p->pc_sel.pc_bus, p->pc_sel.pc_dev, ! p->pc_sel.pc_func); ! printf("class=0x%06x card=0x%08x " ! "chip=0x%08x rev=0x%02x hdr=0x%02x\n", ! (p->pc_class << 16) | (p->pc_subclass << 8) | p->pc_progif, (p->pc_subdevice << 16) | p->pc_subvendor, (p->pc_device << 16) | p->pc_vendor, p->pc_revid, p->pc_hdr); + + printf("\t"); + switch (p->pc_class) + { + case (0) : printf("Device not classified.\n"); break; + case (1) : + switch(p->pc_subclass) + { + case(0x00): printf("SCSI"); break; + case(0x01): printf("IDE"); break; + case(0x02): printf("FLOPPY"); break; + case(0x03): printf("IPI"); break; + case(0x04): printf("RAID"); break; + case(0x80): printf("OTHER"); break; + default : printf("Unknown"); break; + } + printf(" storage controller\n"); + break; + case (2) : + switch(p->pc_subclass) + { + case (0x00) : printf("Ethernet"); break; + case (0x01) : printf("Tokenring"); break; + case (0x02) : printf("FDDI"); break; + case (0x03) : printf("ATM"); break; + case (0x80) : printf("Other"); break; + default : printf("Unknown"); break; + } + printf(" network device\n"); + break; + case (3) : + switch (p->pc_subclass) + { + case (0x00) : printf ("VGA"); break; + case (0x01) : printf ("XGA"); break; + case (0x80) : printf ("Other"); break; + default : printf ("Unknown"); break; + } + printf(" display device\n"); + break; + case (4) : printf("Multimedia device - "); + switch (p->pc_subclass) + { + case (0x00) : printf("video\n"); break; + case (0x01) : printf("audio\n"); break; + case (0x80) : printf("other\n"); break; + default : printf("unkown type\n"); break; + } + break; + case (5) : + switch (p->pc_subclass) + { + case (0x00) : printf("RAM "); break; + case (0x01) : printf("Flash "); break; + case (0x80) : printf("'Other' "); break; + default : printf("Unknown type\n"); break; + } + printf("Memory\n"); + break; + case (6) : + switch (p->pc_subclass) + { + case (0x00) : printf("Host"); break; + case (0x01) : printf("ISA"); break; + case (0x02) : printf("EISA"); break; + case (0x03) : printf("MCA"); break; + case (0x04) : printf("PCI"); break; + case (0x05) : printf("PCMCIA"); break; + case (0x06) : printf("NUBUS"); break; + case (0x07) : printf("Cardbus"); break; + case (0x80) : printf("Other"); break; + default : printf("Unknown"); break; + } + printf(" bridge device\n"); + break; + case (7) : + switch (p->pc_subclass) + { + case (0x00) : printf("UART"); break; + case (0x01) : printf("PAR"); break; + case (0x80) : printf("Other"); break; + default : printf ("Unknown"); break; + } + printf(" simple communications device\n"); + break; + case (8) : + switch (p->pc_subclass) + { + case (0x00) : printf("PIC"); break; + case (0x01) : printf("DMA"); break; + case (0x02) : printf("Timer"); break; + case (0x03) : printf("RTC"); break; + case (0x80) : printf("other"); break; + default : printf("unknown"); break; + } + printf(" base peripheral device\n"); + break; + case (9) : + switch (p->pc_subclass) + { + case (0x00) : printf("keyboard"); break; + case (0x01) : printf("digitizer"); break; + case (0x02) : printf("mouse"); break; + case (0x80) : printf("other"); break; + default : printf("unknown"); break; + } + printf(" input device\n"); + break; + case (10) : + switch (p->pc_subclass) + { + case (0x00) : printf("generic"); break; + case (0x80) : printf("other"); break; + default : printf("unkown"); break; + } + printf(" docking device\n"); + break; + case (11) : + switch (p->pc_subclass) + { + case (0x00) : printf ("386"); break; + case (0x01) : printf ("486"); break; + case (0x02) : printf ("Pentium"); break; + case (0x10) : printf ("Alpha"); break; + case (0x20) : printf ("PowerPC"); break; + case (0x40) : printf ("Coprocessor"); break; + default : printf ("unkown"); + } + printf(" processor device\n"); + break; + case (12) : + switch (p->pc_subclass) + { + case (0x00) : printf ("Firewire"); break; + case (0x01) : printf ("Access"); break; + case (0x02) : printf ("SSA"); break; + case (0x03) : printf ("USB"); break; + case (0x04) : printf ("Fibrechannel"); break; + default : printf ("unkown"); + } + printf("Serial Bus device\n"); + break; + case (15) : printf ("'Other' device type\n"); break; + default : printf("Unknown device type\n"); break; + } + printf("\n"); + } } } while (pc.status == PCI_GETCONF_MORE_DEVS); close(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 Thu Oct 19 10:20: 5 2000 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 0DEF237B4D7 for ; Thu, 19 Oct 2000 10:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA34168; Thu, 19 Oct 2000 10:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id DE57F37B4D7; Thu, 19 Oct 2000 10:18:49 -0700 (PDT) Message-Id: <20001019171849.DE57F37B4D7@hub.freebsd.org> Date: Thu, 19 Oct 2000 10:18:49 -0700 (PDT) From: habeeb@cfl.rr.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/22129: problem with FreeBSD calculating checksum on UDP packets Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22129 >Category: misc >Synopsis: problem with FreeBSD calculating checksum on UDP packets >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 19 10:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: David S. >Release: 4.0 release >Organization: >Environment: FreeBSD ubr-27.210.121.melbourne.cfl.rr.com 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Mon Mar 20 22:50:22 GMT 2000 root@monster.cdrom.com: /usr/src/sys/compile/GENERIC i386 >Description: It appears when I have been trying to create a raw UDP socket when I run tcpdump -vvv it tells me my checksum is wrong. I would assume this is possibly a problem in FreeBSD or maybe something changed where tcpdump isn't working properly? I have tested multiple raw socket builders, and nmap. Which all have bad checksums so is said. I would upgrade, but 'make' 'cc' crash, and my video card seems to crash also. I guess it is problems with my 486? It is not a big problem, but if you want to get into that it would help. >How-To-Repeat: Try any program that uses raw UDP sockets they all seem to fail. >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 Oct 19 12:30:59 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id 9812B37B4C5 for ; Thu, 19 Oct 2000 12:30:56 -0700 (PDT) Received: from slave (Studded@slave [10.0.0.1]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id MAA35974; Thu, 19 Oct 2000 12:30:35 -0700 (PDT) (envelope-from DougB@gorean.org) Date: Thu, 19 Oct 2000 12:30:35 -0700 (PDT) From: Doug Barton X-Sender: doug@dt051n37.san.rr.com To: David Drum Cc: freebsd-bugs@FreeBSD.org Subject: Re: conf/22038: Default location of named.pid file assumes named is running as root In-Reply-To: <20001018223325.A83999@elvis.mu.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, 18 Oct 2000, David Drum wrote: > Quoth Doug Barton: > > > This isn't a freebsd issue, it's a BIND issue. People who > > don't have a sufficient amount of knowledge about how BIND works to > > run it successfully as an unpriviliged user won't be helped by your > > suggestion. It will just be some other aspect of BIND configuration > > that trips them up. > > I suppose it can be argued that someone who is essentially ignorant about > BIND, at least enough not to know about the side effects on the PID file > of running "-u bind", will not be running "ndc reload" either. Years of experience on the bind-users list tells me that this assumption is invalid. Doug -- "The dead cannot be seduced." - Kai, "Lexx" Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 19 13:40: 5 2000 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 5EC0B37B4CF for ; Thu, 19 Oct 2000 13:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA05335; Thu, 19 Oct 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 518C637B4FE; Thu, 19 Oct 2000 13:37:15 -0700 (PDT) Message-Id: <20001019203715.518C637B4FE@hub.freebsd.org> Date: Thu, 19 Oct 2000 13:37:15 -0700 (PDT) From: sf@aracnet.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/22132: /usr/include/vgl.h doesn't have and #ifndef/#define/#endif wrapper Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22132 >Category: misc >Synopsis: /usr/include/vgl.h doesn't have and #ifndef/#define/#endif wrapper >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 Oct 19 13:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Scott Flatman >Release: 5.0-current >Organization: >Environment: >Description: /usr/include/vgl.h doesn't have an #ifndef/#define/#endif wrapper so it can be included multiple times. >How-To-Repeat: >Fix: --- vgl.h.orig Mon Oct 16 11:22:16 2000 +++ vgl.h Mon Oct 16 11:22:38 2000 @@ -28,6 +28,9 @@ * $FreeBSD: src/lib/libvgl/vgl.h,v 1.5 1999/11/09 12:11:24 yokota Exp $ */ +#ifndef _VGL_H_ +#define _VGL_H_ + #include #include #include @@ -140,3 +143,5 @@ int VGLTextSetFontFile(char *filename); void VGLBitmapPutChar(VGLBitmap *Object, int x, int y, byte ch, byte fgcol, byte bgcol, int fill, int dir); void VGLBitmapString(VGLBitmap *Object, int x, int y, char *str, byte fgcol, byte bgcol, int fill, int dir); + +#endif /* !_VGL_H_ */ >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 Oct 19 15:30: 5 2000 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 DA85D37B4E5 for ; Thu, 19 Oct 2000 15:30:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA46072; Thu, 19 Oct 2000 15:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 8688037B4E5; Thu, 19 Oct 2000 15:27:04 -0700 (PDT) Message-Id: <20001019222704.8688037B4E5@hub.freebsd.org> Date: Thu, 19 Oct 2000 15:27:04 -0700 (PDT) From: pachera@uxg.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/22135: Mounting Linux ext2fs on FreeBSD Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22135 >Category: kern >Synopsis: Mounting Linux ext2fs on FreeBSD >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 19 15:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Sergey Pak >Release: 3.5.1-RELEASE >Organization: ABNAMRO >Environment: >Description: >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 19 21:20: 6 2000 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 27DEF37B661 for ; Thu, 19 Oct 2000 21:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA66145; Thu, 19 Oct 2000 21:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 19 Oct 2000 21:20:03 -0700 (PDT) Message-Id: <200010200420.VAA66145@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andy Newman Subject: Re: kern/22103: 4.1-R with Adaptec and Vinum crashes on periodic daily Reply-To: Andy Newman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/22103; it has been noted by GNATS. From: Andy Newman To: freebsd-gnats-submit@FreeBSD.org, roman@xpert.com Cc: Subject: Re: kern/22103: 4.1-R with Adaptec and Vinum crashes on periodic daily Date: Fri, 20 Oct 2000 15:11:04 +1100 You don't say how vinum if configured. RAID 5 by any chance? It looks exactly like something I ran into a while back with a 29160 based system. In my casual glancing at the various "control blocks" being used it looked like outstanding requests complete after the parent data structure is freed (at least the pointers are NULL). This was all a little while ago and the details are a little sketchy. Only RAID 5 exhibited the problem. I'm running the array as RAID 0 with no problems. -- Andy Newman, Principal Software Engineer, Silverbrook Research To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 19 21:50: 7 2000 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 507FE37B4D7 for ; Thu, 19 Oct 2000 21:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA76220; Thu, 19 Oct 2000 21:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mcerha-dsl2.cisco.com (sj-isp-nat-pool-34.cisco.com [204.69.198.34]) by hub.freebsd.org (Postfix) with ESMTP id 9BDF237B4D7 for ; Thu, 19 Oct 2000 21:43:42 -0700 (PDT) Received: (from mcerha@localhost) by mcerha-dsl2.cisco.com (8.11.0/8.11.0) id e9K4hXk58824; Thu, 19 Oct 2000 23:43:33 -0500 (CDT) (envelope-from mcerha) Message-Id: <200010200443.e9K4hXk58824@mcerha-dsl2.cisco.com> Date: Thu, 19 Oct 2000 23:43:33 -0500 (CDT) From: Matthew Cerha Reply-To: mcerha@mcerha-dsl2.cisco.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/22138: tcpdump not handling Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22138 >Category: bin >Synopsis: tcpdump not handling -v option correctly >Confidential: yes >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 19 21:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Matthew Cerha >Release: FreeBSD 4.1-STABLE i386 >Organization: CharlieFox Consulting >Environment: FreeBSD mcerha-dsl2.cisco.com 4.1-STABLE FreeBSD 4.1-STABLE #0: Thu Sep 21 22:24:06 CDT 2000 mcerha@super.freak.net:/usr/obj/cvs/FreeBSD/4.x/src/sys/SMP i386 >Description: It appears that tcpdump does not properly interpret the -v (verbose) option for TCP packet decodes. There appears to be a flaw in the flow control. In src/contrib/tcpdump/print-tcp.c: 497 if (!qflag && vflag && length > 0 498 && (sport == TELNET_PORT || dport == TELNET_PORT)) 499 telnet_print(bp, length); 500 else if (sport == BGP_PORT || dport == BGP_PORT) 501 bgp_print(bp, length); 502 else if (sport == NETBIOS_SSN_PORT || dport == NETBIOS_SSN_PORT) 503 nbt_tcp_print(bp, length); 504 return; The first section doesn't make sense. The sport and dport clauses should be grouped together and not with the flag clause. PS Jerry found this bug. I'm just trying to report it :) >How-To-Repeat: Just run tcpdump -v. >Fix: Apply the diff to src/contrib/tcpdump/print-tcp.c. 497,498c497,498 A < if (!qflag && vflag && length > 0) { < if (sport == TELNET_PORT || dport == TELNET_PORT) --- > if (!qflag && vflag && length > 0 > && (sport == TELNET_PORT || dport == TELNET_PORT)) 504d503 < } >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 Oct 19 22:50: 6 2000 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 3F27E37B4CF for ; Thu, 19 Oct 2000 22:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA00948; Thu, 19 Oct 2000 22:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from odie.hrz.uni-bielefeld.de (odie.hrz.uni-bielefeld.de [129.70.5.87]) by hub.freebsd.org (Postfix) with ESMTP id 3FAA037B479 for ; Thu, 19 Oct 2000 22:45:03 -0700 (PDT) Received: (from root@localhost) by odie.hrz.uni-bielefeld.de (8.9.3/8.9.3) id HAA52543; Fri, 20 Oct 2000 07:45:01 +0200 (CEST) (envelope-from root) Message-Id: <200010200545.HAA52543@odie.hrz.uni-bielefeld.de> Date: Fri, 20 Oct 2000 07:45:01 +0200 (CEST) From: lars.koeller@uni-bielefeld.de Reply-To: lars.koeller@uni-bielefeld.de To: FreeBSD-gnats-submit@freebsd.org Cc: lars.koeller@uni-bielefeld.de X-Send-Pr-Version: 3.2 Subject: kern/22141: Missing include file in if_tx.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22141 >Category: kern >Synopsis: Missing include file in if_tx.c >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 19 22:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Charlie & >Release: FreeBSD 4.1-RELEASE i386 >Organization: Computing Center, University of Bielefeld, Germany >Environment: FreeBSD 4.1-RELEASE with an upgraded (cvsup 19.10.00) source tree >Description: When doing an "make depend" for an customized kernel with the tx network card driver, one gets an ../../pci/if_tx.c:80: miibus_if.h: No such file or directory If I comment the following line in if_tx.c #include "miibus_if.h" I get a compile error: cc -c -O -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 ../../pci/if_tx.c ../../pci/if_tx.c:346: `miibus_readreg_desc' undeclared here (not in a function) ../../pci/if_tx.c:346: initializer element is not constant ../../pci/if_tx.c:346: (near initialization for `epic_methods[6].desc') ../../pci/if_tx.c:347: `miibus_writereg_desc' undeclared here (not in a function) ../../pci/if_tx.c:347: initializer element is not constant ../../pci/if_tx.c:347: (near initialization for `epic_methods[7].desc') ../../pci/if_tx.c:348: `miibus_statchg_desc' undeclared here (not in a function) ../../pci/if_tx.c:348: initializer element is not constant ../../pci/if_tx.c:348: (near initialization for `epic_methods[8].desc') ../../pci/if_tx.c:349: `miibus_mediainit_desc' undeclared here (not in a function) ../../pci/if_tx.c:349: initializer element is not constant ../../pci/if_tx.c:349: (near initialization for `epic_methods[9].desc') *** Error code 1 >How-To-Repeat: Compile an kernel with the tx network device and 4.1-STABLE >Fix: Reinstall the miibus_if.h out of cvs! >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 Oct 19 23:20: 7 2000 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 8A36B37B4D7 for ; Thu, 19 Oct 2000 23:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA12381; Thu, 19 Oct 2000 23:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 7299D37B4E5; Thu, 19 Oct 2000 23:16:11 -0700 (PDT) Message-Id: <20001020061611.7299D37B4E5@hub.freebsd.org> Date: Thu, 19 Oct 2000 23:16:11 -0700 (PDT) From: patrick@atamaniuk.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/22142: securelevel does not affect mount Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22142 >Category: kern >Synopsis: securelevel does not affect mount >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 19 23:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Patrick Atamaniuk >Release: 4.1/4.1.1/5.0 >Organization: Nacamar/World Online >Environment: FreeBSD schweinebilder.dangerzone.nacamar.de 4.1.1-STABLE FreeBSD 4.1.1-STABLE #2: Tue Oct 3 18:17:00 CEST 2000 root@schweinebilder.dangerzone.nacamar.de:/usr/src/sys/compile/S i386 >Description: Securelevel should be able to restrict mounting/remounting of filesystems if raised above a certain level in order to secure ro-mounted filesystems >How-To-Repeat: increase securelevel to any value, remount any fs ro->rw works >Fix: #in function mount and unmount in vfs_syscalls: # --- kern/vfs_syscalls.c.orig Thu Sep 28 23:22:42 2000 +++ kern/vfs_syscalls.c Thu Sep 28 23:28:54 2000 @@ -120,6 +120,9 @@ struct nameidata nd; char fstypename[MFSNAMELEN]; + if (securelevel > 1) + return EPERM; + if (usermount == 0 && (error = suser(p))) return (error); /* @@ -410,6 +413,9 @@ struct mount *mp; int error; struct nameidata nd; + + if (securelevel > 1) + return EPERM; NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE, SCARG(uap, path), p); >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 Oct 20 0:20: 5 2000 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 D4A9837B4C5 for ; Fri, 20 Oct 2000 00:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA37936; Fri, 20 Oct 2000 00:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 20 Oct 2000 00:20:02 -0700 (PDT) Message-Id: <200010200720.AAA37936@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Gregory Bond Subject: Re: kern/22141: Missing include file in if_tx.c Reply-To: Gregory Bond Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/22141; it has been noted by GNATS. From: Gregory Bond To: lars.koeller@uni-bielefeld.de Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/22141: Missing include file in if_tx.c Date: Fri, 20 Oct 2000 18:14:54 +1100 If you use "device tx", you also need "device miibus" as is documented in LINT. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 20 0:40: 6 2000 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 5EDA437B4D7 for ; Fri, 20 Oct 2000 00:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA45970; Fri, 20 Oct 2000 00:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D9ED737B4D7; Fri, 20 Oct 2000 00:36:20 -0700 (PDT) Message-Id: <20001020073620.D9ED737B4D7@hub.freebsd.org> Date: Fri, 20 Oct 2000 00:36:20 -0700 (PDT) From: sethk@osd.bsdi.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/22143: [PATCH] wicontrol(9) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22143 >Category: bin >Synopsis: [PATCH] wicontrol(9) >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 Oct 20 00:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Seth Kingsley >Release: 5.0-CURRENT >Organization: >Environment: FreeBSD veritech.osd.bsdi.com 5.0-CURRENT FreeBSD 5.0-CURRENT #4: Thu Oct 19 00:14:24 PDT 2000 root@veritech:/usr/src/sys/compile/VERITECH i386 >Description: The wicontrol utility fails to detect that no interface has been specified when using the -e option as it does for other options. Pretty self-explanitory. >How-To-Repeat: wicontrol -e 1 >Fix: =================================================================== RCS file: /ncvs/src/usr.sbin/wicontrol/wicontrol.c,v retrieving revision 1.13 diff -u -r1.13 wicontrol.c --- wicontrol.c 2000/09/21 00:25:07 1.13 +++ wicontrol.c 2000/10/20 06:58:14 @@ -208,6 +208,9 @@ { struct wi_req wreq; + if (iface == NULL) + errx(1, "must specify interface name"); + bzero((char *)&wreq, sizeof(wreq)); wreq.wi_type = code; >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 Oct 20 2: 0: 7 2000 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 2C6D637B4CF for ; Fri, 20 Oct 2000 02:00:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA78097; Fri, 20 Oct 2000 02:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 20 Oct 2000 02:00:04 -0700 (PDT) Message-Id: <200010200900.CAA78097@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Roman Shterenzon Subject: Re: kern/22103: 4.1-R with Adaptec and Vinum crashes on periodic daily Reply-To: Roman Shterenzon Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/22103; it has been noted by GNATS. From: Roman Shterenzon To: Andy Newman Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/22103: 4.1-R with Adaptec and Vinum crashes on periodic daily Date: Fri, 20 Oct 2000 10:56:42 +0200 (IST) On Fri, 20 Oct 2000, Andy Newman wrote: > You don't say how vinum if configured. RAID 5 by any chance? It looks > exactly like something I ran into a while back with a 29160 based > system. > In my casual glancing at the various "control blocks" being used it > looked > like outstanding requests complete after the parent data structure is > freed > (at least the pointers are NULL). This was all a little while ago and > the > details are a little sketchy. Only RAID 5 exhibited the problem. I'm > running the array as RAID 0 with no problems. Yes, it's running RAID-5. But, glance at kdb session advises that could be a SCSI related problem, rather than vinum one. --Roman Shterenzon, UNIX System Administrator and Consultant [ Xpert UNIX Systems Ltd., Herzlia, Israel. Tel: +972-9-9522361 ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 20 4:50: 6 2000 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 2222937B4D7 for ; Fri, 20 Oct 2000 04:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA55665; Fri, 20 Oct 2000 04:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 20 Oct 2000 04:50:03 -0700 (PDT) Message-Id: <200010201150.EAA55665@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Lars =?ISO-8859-1?Q?K=F6ller?= Subject: Re: kern/22141: Missing include file in if_tx.c Reply-To: Lars =?ISO-8859-1?Q?K=F6ller?= Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/22141; it has been noted by GNATS. From: Lars =?ISO-8859-1?Q?K=F6ller?= To: Gregory Bond Cc: lars.koeller@uni-bielefeld.de, FreeBSD-gnats-submit@FreeBSD.ORG, lars.koeller@uni-bielefeld.de Subject: Re: kern/22141: Missing include file in if_tx.c Date: Fri, 20 Oct 2000 13:45:15 +0200 ---------- Hi! In reply to Gregory Bond who wrote: = > If you use "device tx", you also need "device miibus" as is documented= in LI NT. Thanks, I found it, too, but the documentation didn't state = clearly for what cards I need it. Is it very complicate to check this during the config phase? Best regards Lars -- = E-Mail: \ Lars K=F6ller (Unix Sysadmin) Lars.Koeller@Uni-Bielefeld.DE \ Computing Center lkoeller@cc.FH-Lippe.DE \ University of Bielefeld PGP-key: \ Germany http://www.pgp.net/pgpnet/www-key.html \ Tel: +49 521 106 4964 ----------- FreeBSD, what else? ---- http://www.freebsd.org -------------= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 20 7:20: 6 2000 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 DB05937B4E5 for ; Fri, 20 Oct 2000 07:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA10555; Fri, 20 Oct 2000 07:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id A3F0237B686; Fri, 20 Oct 2000 07:10:47 -0700 (PDT) Message-Id: <20001020141047.A3F0237B686@hub.freebsd.org> Date: Fri, 20 Oct 2000 07:10:47 -0700 (PDT) From: pdp@nl.demon.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/22150: /etc/periodic/daily/450.status-security ignores mail recipient config Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22150 >Category: conf >Synopsis: /etc/periodic/daily/450.status-security ignores mail recipient config >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 Oct 20 07:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Phil Pennock >Release: 4.1.1-RELEASE >Organization: Thus PLC >Environment: GENERIC i386 Confirmed present via CVSWeb in current >Description: Setting $daily_output in /etc/periodic.conf changes daily output recipient. /etc/periodic/daily/450.status-security runs /etc/security and sends through "sendmail root", completely ignoring any administrative settings. >How-To-Repeat: Set something other than 'root' as the value of $daily_output in one of the periodic configuration files; witness the security mail go somewhere else. >Fix: Either use a new config variable, or apply: --- 450.status-security.dist Tue Sep 26 02:04:27 2000 +++ 450.status-security Fri Oct 20 16:10:12 2000 @@ -36,7 +36,7 @@ *) echo " (output mailed separately)" sh /etc/security $args 2>&1 | - sendmail root && rc=0 || rc=3;; + sendmail ${daily_output:-root} && rc=0 || rc=3;; esac;; *) rc=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 Oct 20 8: 0: 7 2000 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 3C00737B4CF for ; Fri, 20 Oct 2000 08:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA24129; Fri, 20 Oct 2000 08:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from odie.hrz.uni-bielefeld.de (odie.hrz.uni-bielefeld.de [129.70.5.87]) by hub.freebsd.org (Postfix) with ESMTP id B8D3837B479 for ; Fri, 20 Oct 2000 07:55:35 -0700 (PDT) Received: (from root@localhost) by odie.hrz.uni-bielefeld.de (8.9.3/8.9.3) id JAA00717; Fri, 20 Oct 2000 09:18:20 +0200 (CEST) (envelope-from root) Message-Id: <200010200718.JAA00717@odie.hrz.uni-bielefeld.de> Date: Fri, 20 Oct 2000 09:18:20 +0200 (CEST) From: lars.koeller@uni-bielefeld.de Reply-To: lars.koeller@uni-bielefeld.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/22151: source mechanism of /etc/rc.conf* files Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22151 >Category: conf >Synopsis: source mechanism of /etc/rc.conf* files >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 Oct 20 08:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Charlie & >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Computing Center, University of Bielefeld, Germany >Environment: FreeBSD 4.1.1-STABLE i386 >Description: Change of source of /etc/rc.conf /etc/rc.conf.local. The new mechnism breaks a lot of scripts, which based on the very usefull and good assumption, that sourcing of /etc/defaults/rc.conf also sources all the files specified in rc_conf_files! After the change that a call of source_rc_confs is necessary one has to do a lot of changing in many startup scripts. However it is an unnecessary dependency which could produce many trouble. Is there a goot reason to change this nice behaviour from 3.X to 4.X ? >How-To-Repeat: - >Fix: call source_rc_files in /etc/defaults/rc.conf >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 Oct 20 8: 1:37 2000 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 4520937B4E5; Fri, 20 Oct 2000 08:01:36 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA24796; Fri, 20 Oct 2000 08:01:35 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Date: Fri, 20 Oct 2000 08:01:35 -0700 (PDT) From: Message-Id: <200010201501.IAA24796@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, wpaul@FreeBSD.org Subject: Re: bin/22143: [PATCH] wicontrol(9) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] wicontrol(9) Responsible-Changed-From-To: freebsd-bugs->wpaul Responsible-Changed-By: dwmalone Responsible-Changed-When: Fri Oct 20 08:00:44 PDT 2000 Responsible-Changed-Why: Bill Paul wrote wicontrol - this looks like a simple patch though. http://www.freebsd.org/cgi/query-pr.cgi?pr=22143 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 20 8:30:10 2000 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 C8F0B37B4D7 for ; Fri, 20 Oct 2000 08:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA36358; Fri, 20 Oct 2000 08:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from qwerty.eunet.ch (qwerty.eunet.ch [146.228.11.110]) by hub.freebsd.org (Postfix) with ESMTP id 16B5437B4E5 for ; Fri, 20 Oct 2000 08:23:31 -0700 (PDT) Received: (from bs@localhost) by qwerty.eunet.ch (8.9.3/8.9.3) id RAA53304; Fri, 20 Oct 2000 17:23:26 +0200 (CEST) (envelope-from bs) Message-Id: <200010201523.RAA53304@qwerty.eunet.ch> Date: Fri, 20 Oct 2000 17:23:26 +0200 (CEST) From: Bernard Steiner Reply-To: bs@qwerty.eunet.ch To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22152: typo in ip_fw.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22152 >Category: kern >Synopsis: typo in ip_fw.c >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 Oct 20 08:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Bernard Steiner >Release: FreeBSD 4.1-RELEASE i386 >Organization: KPNQwest Switzerland Ltd >Environment: >Description: /sys/netinet/ip_fw.c about line 175 in 4.1R, 4.1.1R (and possibly 5.0 current ?) contain the line SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_short_lifetime, CTLFLAG_RW, /* --------------------------------------^^^^^ */ &dyn_rst_lifetime, 0, "Lifetime of dyn. rules for other situations"); /* -----^^^ */ which I believe makes the dynamic ruleset time out pre-maturely. >How-To-Repeat: >Fix: Looks like a cut-and-paste typo to me. I suggest: SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_short_lifetime, CTLFLAG_RW, &dyn_short_lifetime, 0, "Lifetime of dyn. rules for other situations"); /* -----^^^^^ */ but please do check that I am not mistaken :-) >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 Oct 20 9:40:26 2000 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 214E937B4D7 for ; Fri, 20 Oct 2000 09:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA65159; Fri, 20 Oct 2000 09:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 5A0FC37B4C5; Fri, 20 Oct 2000 09:30:30 -0700 (PDT) Message-Id: <20001020163030.5A0FC37B4C5@hub.freebsd.org> Date: Fri, 20 Oct 2000 09:30:30 -0700 (PDT) From: lazaro@online.no, salem@statoil.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: 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 >Number: 22153 >Category: i386 >Synopsis: make installworld error when upgrading from 3.1-RELEASE to 3.5.1-RELEASE >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 Oct 20 09:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Lazaro D. Salem >Release: 3.5.1R >Organization: none >Environment: FreeBSD gateway.mydomain 3.5.1-RELEASE FreeBSD 3.5.1-RELEASE #0: Mon Oct 16 21:26:24 GMT 2000 root@gateway.mydomain:/usr/src/sys/compile/GENERIC i386 >Description: From a fresh installed 3.1-RELEASE box (w/uncommented NOPROFILE=true and CFLAGS="-O -pipe" in /etc/make.conf), I downloaded and installed the 3.5.1-RELEASE source tree. Then I proceeded to make install & build-world as follows: cd /usr/obj && chflags -R noschg * && rm -rf * cd /usr/src && make buildworld && shutdown now Then From single user mode: fsck -p && mount -u / && mount -a -t ufs && swapon -a #Install the source: cd /usr/src && / make installworld && / cp -Rp /etc /etc.pre-mergemaster /usr/sbin/mergemaster -v When finished, # Update /dev: # if updating using mergemaster, MAKEDEV has been taken care of: cd /dev ./MAKEDEV all ./MAKEDEV wd0s3a ./MAKEDEV wd0s3b ./MAKEDEV wd0s3c ./MAKEDEV wd0s3d ./MAKEDEV wd0s3e ./MAKEDEV wd0s3f ./MAKEDEV wd0s3g ./MAKEDEV wd0s3h ./MAKEDEV acd0a ./MAKEDEV acd0c ./MAKEDEV acd1a ./MAKEDEV acd1c #Update /stand: cd /usr/src/release/sysinstall make all install Then I compiled and install a new kernel (GENERIC): cd /usr/src/sys/i386/conf PIKERNEL="3.3R-GENERIC" MYKERNEL="GENERIC" cp -p /kernel /kernel.${PIKERNEL}.`date + %Y%m%d_%H%M` cd /usr/src/sys/i386/conf && \ /usr/sbin/config ${MYKERNEL} && \ cd ../../compile/${MYKERNEL} && \ make clean && \ make depend && \ make && \ make install && \ And rebooted the machine. The machine restarted running the 3.5.1R GENERIC kernel (see uname -a output), although some files when "find / -type f -ls" showed a 3.3R date). I tried "make installworld" and redowloaded the source several times but got always the same error at the make installworld stage. A complete "script" log of the make buildworld installworld is available upon request and is 285193 bytes in zipped form. What follows is an exerpt of the most relevant messages: ----------------------------------------------------------------------- Script started on Tue Oct 17 07:51:28 2000 # cd /usr/src ; date ; make buildworld ; date ; cd /usr/src ; make installworld ; uname -a Tue Oct 17 07:53:23 GMT 2000 -------------------------------------------------------------- >How-To-Repeat: 1) Start from a fresh 3.1-R box (no additional config except in /etc/make.conf) installed from the official CD. 2) Install (as root) The 3.5.1-R source tree (from ftp site) : ./install all ; shutdown now cd /usr/src make buildworld .... as described in the handbook for FreeBSD previous to 4.x make installworld >Fix: I do not know, but this might be aclue: I could detect something weird in the original src files (I checked also the files as of October 2000). I accidentally discovered this if one "cat" the ssys.?? > ssys.tgz gets a warning message from gzip (trailing garbage). Also, the file file ssys.bi has not the std size (240000 bytes?) although there here is a ssys.bj!! I never seen this before. I also tried to compile a GENERIC + ISDN kernel but got errors at the isdn link stage (sppattach) but this may be related to this PR so I wait. Also when cat >Release-Note: >Audit-Trail: >Unformatted: >>> Cleaning up the temporary elf build tree -------------------------------------------------------------- mkdir -p /usr/obj/usr/src/tmp chflags -R noschg /usr/obj/usr/src/tmp/ rm -rf /usr/obj/usr/src/tmp -------------------------------------------------------------- >>> Making make -------------------------------------------------------------- mkdir -p /usr/obj/usr/src/tmp/usr/bin /usr/obj/usr/src/tmp/make .... [lots of ouput] -------------------------------------------------------------- >>> Cleaning up the temporary elf build tree -------------------------------------------------------------- .... [lots of ouput] -------------------------------------------------------------- >>> Making make -------------------------------------------------------------- ... -------------------------------------------------------------- >>> Making mtree -------------------------------------------------------------- ... -------------------------------------------------------------- >>> Making hierarchy -------------------------------------------------------------- ... -------------------------------------------------------------- >>> Cleaning up the elf obj tree -------------------------------------------------------------- ... -------------------------------------------------------------- >>> Rebuilding the elf obj tree -------------------------------------------------------------- ... -------------------------------------------------------------- >>> Rebuilding elf bootstrap tools -------------------------------------------------------------- ... -------------------------------------------------------------- >>> Rebuilding tools necessary to build the include files -------------------------------------------------------------- ... -------------------------------------------------------------- >>> Rebuilding /usr/include -------------------------------------------------------------- ... -------------------------------------------------------------- >>> Rebuilding bootstrap libraries -------------------------------------------------------------- ... -------------------------------------------------------------- >>> Rebuilding tools needed to build libraries -------------------------------------------------------------- ... -------------------------------------------------------------- >>> Rebuilding all other tools needed to build the elf world -------------------------------------------------------------- ... -------------------------------------------------------------- >>> Building elf libraries -------------------------------------------------------------- ... -------------------------------------------------------------- >>> Building everything.. -------------------------------------------------------------- ... -------------------------------------------------------------- >>> Making hierarchy -------------------------------------------------------------- ... -------------------------------------------------------------- >>> Installing everything.. -------------------------------------------------------------- ... ... ... install -c -o root -g wheel -m 444 c2ph.1.gz /usr/share/man/man1 ===> gnu/usr.bin/perl/utils/h2ph install -c -o root -g wheel -m 555 h2ph /usr/bin install -c -o root -g wheel -m 444 h2ph.1.gz /usr/share/man/man1 cd /usr/include; miniperl /usr/obj/usr/src/gnu/usr.bin/perl/utils/h2ph/h2ph -d /usr/libdata/perl/5.00503/mach * */* a.out.h -> a.out.ph aio.h -> aio.ph alias.h -> alias.ph ar.h -> ar.ph Skipping directory `arpa' assert.h -> assert.ph bitstring.h -> bitstring.ph calendar.h -> calendar.ph Skipping directory `cam' camlib.h -> camlib.ph com_err.h -> com_err.ph com_right.h -> com_right.ph ctype.h -> ctype.ph curses.h -> curses.ph db.h -> db.ph Skipping directory `dev' devstat.h -> devstat.ph dialog.h -> dialog.ph dirent.h -> dirent.ph disktab.h -> disktab.ph dlfcn.h -> dlfcn.ph elf.h -> elf.ph err.h -> err.ph errno.h -> errno.ph f2c.h -> f2c.ph fcntl.h -> fcntl.ph fetch.h -> fetch.ph fetch_err.h -> fetch_err.ph float.h -> float.ph floatingpoint.h -> floatingpoint.ph fnmatch.h -> fnmatch.ph fstab.h -> fstab.ph ftpio.h -> ftpio.ph fts.h -> fts.ph Skipping directory `g++' glob.h -> glob.ph gmp.h -> gmp.ph gnuregex.h -> gnuregex.ph grp.h -> grp.ph histedit.h -> histedit.ph ieeefp.h -> ieeefp.ph inttypes.h -> inttypes.ph iso646.h -> iso646.ph Skipping directory `isofs' kvm.h -> kvm.ph libatm.h -> libatm.ph libdisk.h -> libdisk.ph libutil.h -> libutil.ph limits.h -> limits.ph link.h -> link.ph linker_set.h -> linker_set.ph locale.h -> locale.ph login_cap.h -> login_cap.ph Skipping directory `machine' malloc.h -> malloc.ph math.h -> math.ph md2.h -> md2.ph md4.h -> md4.ph md5.h -> md5.ph memory.h -> memory.ph mp.h -> mp.ph mpool.h -> mpool.ph mqueue.h -> mqueue.ph Skipping directory `msdosfs' ncurses.h -> ncurses.ph ndbm.h -> ndbm.ph Skipping directory `net' Skipping directory `netatalk' Skipping directory `netatm' netdb.h -> netdb.ph Skipping directory `netgraph' netgraph.h -> netgraph.ph Skipping directory `netinet' Skipping directory `netinet6' Skipping directory `netipx' Skipping directory `netkey' Skipping directory `netncp' Skipping directory `netns' Skipping directory `nfs' nl_types.h -> nl_types.ph nlist.h -> nlist.ph nterm.h -> nterm.ph Skipping directory `ntfs' Skipping directory `nwfs' Skipping directory `objc' objformat.h -> objformat.ph Skipping directory `openssl' opie.h -> opie.ph osreldate.h -> osreldate.ph paths.h -> paths.ph pcap-int.h -> pcap-int.ph pcap-namedb.h -> pcap-namedb.ph pcap.h -> pcap.ph Skipping directory `pccard' poll.h -> poll.ph Skipping directory `posix4' Skipping directory `protocols' pthread.h -> pthread.ph pthread_np.h -> pthread_np.ph pwd.h -> pwd.ph radlib.h -> radlib.ph ranlib.h -> ranlib.ph Skipping directory `readline' regex.h -> regex.ph regexp.h -> regexp.ph resolv.h -> resolv.ph Skipping directory `rpc' Skipping directory `rpcsvc' rune.h -> rune.ph runetype.h -> runetype.ph sched.h -> sched.ph Skipping directory `security' semaphore.h -> semaphore.ph setjmp.h -> setjmp.ph sgtty.h -> sgtty.ph signal.h -> signal.ph skey.h -> skey.ph Skipping directory `ss' stab.h -> stab.ph stand.h -> stand.ph stdarg.h -> stdarg.ph stddef.h -> stddef.ph stdio.h -> stdio.ph stdlib.h -> stdlib.ph strhash.h -> strhash.ph string.h -> string.ph stringlist.h -> stringlist.ph strings.h -> strings.ph struct.h -> struct.ph Skipping directory `sys' sysexits.h -> sysexits.ph syslog.h -> syslog.ph taclib.h -> taclib.ph tar.h -> tar.ph tcpd.h -> tcpd.ph term.h -> term.ph termcap.h -> termcap.ph termios.h -> termios.ph time.h -> time.ph timers.h -> timers.ph ttyent.h -> ttyent.ph ucontext.h -> ucontext.ph Can't open ucontext.h: No such file or directory Skipping directory `ufs' unctrl.h -> unctrl.ph unistd.h -> unistd.ph utime.h -> utime.ph utmp.h -> utmp.ph values.h -> values.ph varargs.h -> varargs.ph vgl.h -> vgl.ph vis.h -> vis.ph Skipping directory `vm' zconf.h -> zconf.ph zlib.h -> zlib.ph arpa/ftp.h -> arpa/ftp.ph arpa/inet.h -> arpa/inet.ph arpa/nameser.h -> arpa/nameser.ph arpa/nameser_compat.h -> arpa/nameser_compat.ph arpa/telnet.h -> arpa/telnet.ph arpa/tftp.h -> arpa/tftp.ph cam/cam.h -> cam/cam.ph cam/cam_ccb.h -> cam/cam_ccb.ph cam/cam_conf.h -> cam/cam_conf.ph cam/cam_debug.h -> cam/cam_debug.ph cam/cam_extend.h -> cam/cam_extend.ph cam/cam_periph.h -> cam/cam_periph.ph cam/cam_queue.h -> cam/cam_queue.ph cam/cam_sim.h -> cam/cam_sim.ph cam/cam_xpt.h -> cam/cam_xpt.ph cam/cam_xpt_periph.h -> cam/cam_xpt_periph.ph cam/cam_xpt_sim.h -> cam/cam_xpt_sim.ph Skipping directory `cam/scsi' Skipping directory `dev/ppbus' Skipping directory `dev/usb' g++/ACG.h -> g++/ACG.ph g++/AllocRing.h -> g++/AllocRing.ph g++/Binomial.h -> g++/Binomial.ph g++/BitSet.h -> g++/BitSet.ph g++/BitString.h -> g++/BitString.ph g++/Complex.h -> g++/Complex.ph g++/DLList.h -> g++/DLList.ph g++/DiscUnif.h -> g++/DiscUnif.ph g++/Erlang.h -> g++/Erlang.ph g++/Fix.h -> g++/Fix.ph g++/Fix16.h -> g++/Fix16.ph g++/Fix24.h -> g++/Fix24.ph g++/FlexLexer.h -> g++/FlexLexer.ph g++/Geom.h -> g++/Geom.ph g++/GetOpt.h -> g++/GetOpt.ph g++/HypGeom.h -> g++/HypGeom.ph g++/Incremental.h -> g++/Incremental.ph g++/Integer.h -> g++/Integer.ph g++/LogNorm.h -> g++/LogNorm.ph g++/MLCG.h -> g++/MLCG.ph g++/NegExp.h -> g++/NegExp.ph g++/Normal.h -> g++/Normal.ph g++/Obstack.h -> g++/Obstack.ph g++/Pix.h -> g++/Pix.ph g++/PlotFile.h -> g++/PlotFile.ph g++/Poisson.h -> g++/Poisson.ph g++/RNG.h -> g++/RNG.ph g++/Random.h -> g++/Random.ph g++/Rational.h -> g++/Rational.ph g++/Regex.h -> g++/Regex.ph g++/RndInt.h -> g++/RndInt.ph g++/SFile.h -> g++/SFile.ph g++/SLList.h -> g++/SLList.ph g++/SmplHist.h -> g++/SmplHist.ph g++/SmplStat.h -> g++/SmplStat.ph g++/String.h -> g++/String.ph g++/Uniform.h -> g++/Uniform.ph g++/Weibull.h -> g++/Weibull.ph g++/_G_config.h -> g++/_G_config.ph g++/algo.h -> g++/algo.ph g++/algobase.h -> g++/algobase.ph g++/bitdo1.h -> g++/bitdo1.ph g++/bitdo2.h -> g++/bitdo2.ph g++/bitprims.h -> g++/bitprims.ph g++/bool.h -> g++/bool.ph g++/builtin.h -> g++/builtin.ph g++/builtinbuf.h -> g++/builtinbuf.ph g++/bvector.h -> g++/bvector.ph g++/compare.h -> g++/compare.ph g++/complex.h -> g++/complex.ph g++/defalloc.h -> g++/defalloc.ph g++/deque.h -> g++/deque.ph g++/editbuf.h -> g++/editbuf.ph g++/faralloc.h -> g++/faralloc.ph g++/fdeque.h -> g++/fdeque.ph g++/flist.h -> g++/flist.ph g++/floatio.h -> g++/floatio.ph g++/fmap.h -> g++/fmap.ph g++/fmultmap.h -> g++/fmultmap.ph g++/fmultset.h -> g++/fmultset.ph g++/fset.h -> g++/fset.ph g++/fstream.h -> g++/fstream.ph g++/function.h -> g++/function.ph g++/generic.h -> g++/generic.ph g++/getpagesize.h -> g++/getpagesize.ph g++/hdeque.h -> g++/hdeque.ph g++/heap.h -> g++/heap.ph g++/hlist.h -> g++/hlist.ph g++/hmap.h -> g++/hmap.ph g++/hmultmap.h -> g++/hmultmap.ph g++/hmultset.h -> g++/hmultset.ph g++/hset.h -> g++/hset.ph g++/hugalloc.h -> g++/hugalloc.ph g++/hvector.h -> g++/hvector.ph g++/indstream.h -> g++/indstream.ph g++/iolibio.h -> g++/iolibio.ph g++/iomanip.h -> g++/iomanip.ph g++/iostdio.h -> g++/iostdio.ph g++/iostream.h -> g++/iostream.ph g++/iostreamP.h -> g++/iostreamP.ph g++/istream.h -> g++/istream.ph g++/iterator.h -> g++/iterator.ph g++/lbvector.h -> g++/lbvector.ph g++/ldeque.h -> g++/ldeque.ph g++/libc.h -> g++/libc.ph g++/libio.h -> g++/libio.ph g++/libioP.h -> g++/libioP.ph g++/list.h -> g++/list.ph g++/llist.h -> g++/llist.ph g++/lmap.h -> g++/lmap.ph g++/lmultmap.h -> g++/lmultmap.ph g++/lmultset.h -> g++/lmultset.ph g++/lngalloc.h -> g++/lngalloc.ph g++/lset.h -> g++/lset.ph g++/map.h -> g++/map.ph g++/minmax.h -> g++/minmax.ph g++/multimap.h -> g++/multimap.ph g++/multiset.h -> g++/multiset.ph g++/neralloc.h -> g++/neralloc.ph g++/new.h -> g++/new.ph g++/nmap.h -> g++/nmap.ph g++/nmultmap.h -> g++/nmultmap.ph g++/nmultset.h -> g++/nmultset.ph g++/nset.h -> g++/nset.ph g++/osfcn.h -> g++/osfcn.ph g++/ostream.h -> g++/ostream.ph g++/pair.h -> g++/pair.ph g++/parsestream.h -> g++/parsestream.ph g++/pfstream.h -> g++/pfstream.ph g++/procbuf.h -> g++/procbuf.ph g++/projectn.h -> g++/projectn.ph g++/rx.h -> g++/rx.ph g++/set.h -> g++/set.ph g++/stack.h -> g++/stack.ph Skipping directory `g++/std' g++/std.h -> g++/std.ph g++/stdiostream.h -> g++/stdiostream.ph g++/stl.h -> g++/stl.ph g++/strclass.h -> g++/strclass.ph g++/stream.h -> g++/stream.ph g++/streambuf.h -> g++/streambuf.ph g++/strfile.h -> g++/strfile.ph g++/strstream.h -> g++/strstream.ph g++/swap.h -> g++/swap.ph g++/sysent.h -> g++/sysent.ph g++/tempbuf.h -> g++/tempbuf.ph g++/tree.h -> g++/tree.ph g++/typemacros.h -> g++/typemacros.ph g++/vector.h -> g++/vector.ph Skipping directory `isofs/cd9660' machine/ansi.h -> machine/ansi.ph machine/apic.h -> machine/apic.ph machine/apm_bios.h -> machine/apm_bios.ph machine/apm_segments.h -> machine/apm_segments.ph machine/asc_ioctl.h -> machine/asc_ioctl.ph machine/asm.h -> machine/asm.ph machine/asmacros.h -> machine/asmacros.ph machine/asnames.h -> machine/asnames.ph machine/atomic.h -> machine/atomic.ph machine/bootinfo.h -> machine/bootinfo.ph machine/bus.h -> machine/bus.ph machine/bus_memio.h -> machine/bus_memio.ph machine/bus_pio.h -> machine/bus_pio.ph machine/cdk.h -> machine/cdk.ph machine/clock.h -> machine/clock.ph machine/comstats.h -> machine/comstats.ph machine/cons.h -> machine/cons.ph machine/console.h -> machine/console.ph machine/cpu.h -> machine/cpu.ph machine/cpufunc.h -> machine/cpufunc.ph machine/cputypes.h -> machine/cputypes.ph machine/cronyx.h -> machine/cronyx.ph machine/db_machdep.h -> machine/db_machdep.ph machine/dvcfg.h -> machine/dvcfg.ph machine/elf.h -> machine/elf.ph machine/endian.h -> machine/endian.ph machine/exec.h -> machine/exec.ph machine/float.h -> machine/float.ph machine/floatingpoint.h -> machine/floatingpoint.ph machine/frame.h -> machine/frame.ph machine/globaldata.h -> machine/globaldata.ph machine/gsc.h -> machine/gsc.ph machine/i4b_cause.h -> machine/i4b_cause.ph machine/i4b_debug.h -> machine/i4b_debug.ph machine/i4b_ioctl.h -> machine/i4b_ioctl.ph machine/i4b_rbch_ioctl.h -> machine/i4b_rbch_ioctl.ph machine/i4b_tel_ioctl.h -> machine/i4b_tel_ioctl.ph machine/i4b_trace.h -> machine/i4b_trace.ph machine/ieeefp.h -> machine/ieeefp.ph machine/if_wavelan_ieee.h -> machine/if_wavelan_ieee.ph machine/if_wl_wavelan.h -> machine/if_wl_wavelan.ph machine/iic.h -> machine/iic.ph machine/in_cksum.h -> machine/in_cksum.ph machine/ioctl_bt848.h -> machine/ioctl_bt848.ph machine/ioctl_ctx.h -> machine/ioctl_ctx.ph machine/ioctl_fd.h -> machine/ioctl_fd.ph machine/ioctl_meteor.h -> machine/ioctl_meteor.ph machine/ipl.h -> machine/ipl.ph machine/joystick.h -> machine/joystick.ph machine/limits.h -> machine/limits.ph machine/lock.h -> machine/lock.ph machine/lpt.h -> machine/lpt.ph machine/md_var.h -> machine/md_var.ph machine/mouse.h -> machine/mouse.ph machine/mpapic.h -> machine/mpapic.ph machine/mtpr.h -> machine/mtpr.ph machine/npx.h -> machine/npx.ph machine/param.h -> machine/param.ph machine/pcaudioio.h -> machine/pcaudioio.ph machine/pcb.h -> machine/pcb.ph machine/pcb_ext.h -> machine/pcb_ext.ph machine/pcvt_ioctl.h -> machine/pcvt_ioctl.ph machine/perfmon.h -> machine/perfmon.ph machine/pmap.h -> machine/pmap.ph machine/proc.h -> machine/proc.ph machine/profile.h -> machine/profile.ph machine/psl.h -> machine/psl.ph machine/ptrace.h -> machine/ptrace.ph machine/random.h -> machine/random.ph machine/reg.h -> machine/reg.ph machine/reloc.h -> machine/reloc.ph machine/resource.h -> machine/resource.ph machine/segments.h -> machine/segments.ph machine/setjmp.h -> machine/setjmp.ph machine/si.h -> machine/si.ph machine/signal.h -> machine/signal.ph machine/smb.h -> machine/smb.ph machine/smp.h -> machine/smp.ph machine/smptests.h -> machine/smptests.ph machine/soundcard.h -> machine/soundcard.ph machine/speaker.h -> machine/speaker.ph machine/specialreg.h -> machine/specialreg.ph machine/spigot.h -> machine/spigot.ph machine/stdarg.h -> machine/stdarg.ph machine/sysarch.h -> machine/sysarch.ph machine/trap.h -> machine/trap.ph machine/tss.h -> machine/tss.ph machine/types.h -> machine/types.ph machine/ultrasound.h -> machine/ultrasound.ph machine/varargs.h -> machine/varargs.ph machine/vm86.h -> machine/vm86.ph machine/vmparam.h -> machine/vmparam.ph machine/wtio.h -> machine/wtio.ph msdosfs/bootsect.h -> msdosfs/bootsect.ph msdosfs/bpb.h -> msdosfs/bpb.ph msdosfs/denode.h -> msdosfs/denode.ph msdosfs/direntry.h -> msdosfs/direntry.ph msdosfs/fat.h -> msdosfs/fat.ph msdosfs/msdosfsmount.h -> msdosfs/msdosfsmount.ph net/bpf.h -> net/bpf.ph net/bpf_compat.h -> net/bpf_compat.ph net/bpfdesc.h -> net/bpfdesc.ph net/bridge.h -> net/bridge.ph net/ethernet.h -> net/ethernet.ph net/hostcache.h -> net/hostcache.ph net/if.h -> net/if.ph net/if_arp.h -> net/if_arp.ph net/if_atm.h -> net/if_atm.ph net/if_dl.h -> net/if_dl.ph net/if_llc.h -> net/if_llc.ph net/if_media.h -> net/if_media.ph net/if_mib.h -> net/if_mib.ph net/if_ppp.h -> net/if_ppp.ph net/if_pppvar.h -> net/if_pppvar.ph net/if_slvar.h -> net/if_slvar.ph net/if_sppp.h -> net/if_sppp.ph net/if_tun.h -> net/if_tun.ph net/if_tunvar.h -> net/if_tunvar.ph net/if_types.h -> net/if_types.ph net/if_var.h -> net/if_var.ph net/if_vlan_var.h -> net/if_vlan_var.ph net/iso88025.h -> net/iso88025.ph net/netisr.h -> net/netisr.ph net/ppp_comp.h -> net/ppp_comp.ph net/ppp_defs.h -> net/ppp_defs.ph net/radix.h -> net/radix.ph net/raw_cb.h -> net/raw_cb.ph net/route.h -> net/route.ph net/slcompress.h -> net/slcompress.ph net/slip.h -> net/slip.ph net/zlib.h -> net/zlib.ph netatalk/aarp.h -> netatalk/aarp.ph netatalk/at.h -> netatalk/at.ph netatalk/at_extern.h -> netatalk/at_extern.ph netatalk/at_var.h -> netatalk/at_var.ph netatalk/ddp.h -> netatalk/ddp.ph netatalk/ddp_var.h -> netatalk/ddp_var.ph netatalk/endian.h -> netatalk/endian.ph netatalk/phase2.h -> netatalk/phase2.ph netatm/atm.h -> netatm/atm.ph netatm/atm_cm.h -> netatm/atm_cm.ph netatm/atm_if.h -> netatm/atm_if.ph netatm/atm_ioctl.h -> netatm/atm_ioctl.ph netatm/atm_pcb.h -> netatm/atm_pcb.ph netatm/atm_sap.h -> netatm/atm_sap.ph netatm/atm_sigmgr.h -> netatm/atm_sigmgr.ph netatm/atm_stack.h -> netatm/atm_stack.ph netatm/atm_sys.h -> netatm/atm_sys.ph netatm/atm_var.h -> netatm/atm_var.ph netatm/atm_vc.h -> netatm/atm_vc.ph netatm/kern_include.h -> netatm/kern_include.ph netatm/port.h -> netatm/port.ph netatm/queue.h -> netatm/queue.ph netgraph/netgraph.h -> netgraph/netgraph.ph netgraph/ng_UI.h -> netgraph/ng_UI.ph netgraph/ng_async.h -> netgraph/ng_async.ph netgraph/ng_bpf.h -> netgraph/ng_bpf.ph netgraph/ng_cisco.h -> netgraph/ng_cisco.ph netgraph/ng_echo.h -> netgraph/ng_echo.ph netgraph/ng_ether.h -> netgraph/ng_ether.ph netgraph/ng_frame_relay.h -> netgraph/ng_frame_relay.ph netgraph/ng_hole.h -> netgraph/ng_hole.ph netgraph/ng_iface.h -> netgraph/ng_iface.ph netgraph/ng_ksocket.h -> netgraph/ng_ksocket.ph netgraph/ng_lmi.h -> netgraph/ng_lmi.ph netgraph/ng_message.h -> netgraph/ng_message.ph netgraph/ng_parse.h -> netgraph/ng_parse.ph netgraph/ng_ppp.h -> netgraph/ng_ppp.ph netgraph/ng_pppoe.h -> netgraph/ng_pppoe.ph netgraph/ng_pptpgre.h -> netgraph/ng_pptpgre.ph netgraph/ng_rfc1490.h -> netgraph/ng_rfc1490.ph netgraph/ng_sample.h -> netgraph/ng_sample.ph netgraph/ng_socket.h -> netgraph/ng_socket.ph netgraph/ng_socketvar.h -> netgraph/ng_socketvar.ph netgraph/ng_tee.h -> netgraph/ng_tee.ph netgraph/ng_tty.h -> netgraph/ng_tty.ph netgraph/ng_vjc.h -> netgraph/ng_vjc.ph netinet/icmp_var.h -> netinet/icmp_var.ph netinet/if_atm.h -> netinet/if_atm.ph netinet/if_ether.h -> netinet/if_ether.ph netinet/if_fddi.h -> netinet/if_fddi.ph netinet/igmp.h -> netinet/igmp.ph netinet/igmp_var.h -> netinet/igmp_var.ph netinet/in.h -> netinet/in.ph netinet/in_hostcache.h -> netinet/in_hostcache.ph netinet/in_pcb.h -> netinet/in_pcb.ph netinet/in_systm.h -> netinet/in_systm.ph netinet/in_var.h -> netinet/in_var.ph netinet/ip.h -> netinet/ip.ph netinet/ip_auth.h -> netinet/ip_auth.ph netinet/ip_compat.h -> netinet/ip_compat.ph netinet/ip_dummynet.h -> netinet/ip_dummynet.ph netinet/ip_fil.h -> netinet/ip_fil.ph netinet/ip_flow.h -> netinet/ip_flow.ph netinet/ip_frag.h -> netinet/ip_frag.ph netinet/ip_fw.h -> netinet/ip_fw.ph netinet/ip_icmp.h -> netinet/ip_icmp.ph netinet/ip_mroute.h -> netinet/ip_mroute.ph netinet/ip_nat.h -> netinet/ip_nat.ph netinet/ip_proxy.h -> netinet/ip_proxy.ph netinet/ip_state.h -> netinet/ip_state.ph netinet/ip_var.h -> netinet/ip_var.ph netinet/ipl.h -> netinet/ipl.ph netinet/tcp.h -> netinet/tcp.ph netinet/tcp_debug.h -> netinet/tcp_debug.ph netinet/tcp_fsm.h -> netinet/tcp_fsm.ph netinet/tcp_seq.h -> netinet/tcp_seq.ph netinet/tcp_timer.h -> netinet/tcp_timer.ph netinet/tcp_var.h -> netinet/tcp_var.ph netinet/tcpip.h -> netinet/tcpip.ph netinet/udp.h -> netinet/udp.ph netinet/udp_var.h -> netinet/udp_var.ph netipx/ipx.h -> netipx/ipx.ph netipx/ipx_if.h -> netipx/ipx_if.ph netipx/ipx_ip.h -> netipx/ipx_ip.ph netipx/ipx_pcb.h -> netipx/ipx_pcb.ph netipx/ipx_var.h -> netipx/ipx_var.ph netipx/spx.h -> netipx/spx.ph netipx/spx_debug.h -> netipx/spx_debug.ph netipx/spx_timer.h -> netipx/spx_timer.ph netipx/spx_var.h -> netipx/spx_var.ph netkey/key.h -> netkey/key.ph netkey/key_debug.h -> netkey/key_debug.ph netns/idp.h -> netns/idp.ph netns/idp_var.h -> netns/idp_var.ph netns/ns.h -> netns/ns.ph netns/ns_error.h -> netns/ns_error.ph netns/ns_if.h -> netns/ns_if.ph netns/ns_pcb.h -> netns/ns_pcb.ph netns/sp.h -> netns/sp.ph netns/spidp.h -> netns/spidp.ph netns/spp_debug.h -> netns/spp_debug.ph netns/spp_timer.h -> netns/spp_timer.ph netns/spp_var.h -> netns/spp_var.ph nfs/krpc.h -> nfs/krpc.ph nfs/nfs.h -> nfs/nfs.ph nfs/nfsdiskless.h -> nfs/nfsdiskless.ph nfs/nfsm_subs.h -> nfs/nfsm_subs.ph nfs/nfsmount.h -> nfs/nfsmount.ph nfs/nfsnode.h -> nfs/nfsnode.ph nfs/nfsproto.h -> nfs/nfsproto.ph nfs/nfsrtt.h -> nfs/nfsrtt.ph nfs/nfsrvcache.h -> nfs/nfsrvcache.ph nfs/nfsv2.h -> nfs/nfsv2.ph nfs/nqnfs.h -> nfs/nqnfs.ph nfs/rpcv2.h -> nfs/rpcv2.ph nfs/xdr_subs.h -> nfs/xdr_subs.ph objc/NXConstStr.h -> objc/NXConstStr.ph objc/Object.h -> objc/Object.ph objc/Protocol.h -> objc/Protocol.ph objc/encoding.h -> objc/encoding.ph objc/hash.h -> objc/hash.ph objc/list.h -> objc/list.ph objc/objc-api.h -> objc/objc-api.ph objc/objc.h -> objc/objc.ph objc/sarray.h -> objc/sarray.ph objc/typedstream.h -> objc/typedstream.ph pccard/cardinfo.h -> pccard/cardinfo.ph pccard/cis.h -> pccard/cis.ph pccard/driver.h -> pccard/driver.ph pccard/i82365.h -> pccard/i82365.ph pccard/pcic98reg.h -> pccard/pcic98reg.ph pccard/slot.h -> pccard/slot.ph posix4/aio.h -> posix4/aio.ph posix4/mqueue.h -> posix4/mqueue.ph posix4/posix4.h -> posix4/posix4.ph posix4/sched.h -> posix4/sched.ph posix4/semaphore.h -> posix4/semaphore.ph protocols/dumprestore.h -> protocols/dumprestore.ph protocols/routed.h -> protocols/routed.ph protocols/rwhod.h -> protocols/rwhod.ph protocols/talkd.h -> protocols/talkd.ph protocols/timed.h -> protocols/timed.ph readline/chardefs.h -> readline/chardefs.ph readline/history.h -> readline/history.ph readline/keymaps.h -> readline/keymaps.ph readline/readline.h -> readline/readline.ph readline/rlconf.h -> readline/rlconf.ph readline/rlstdc.h -> readline/rlstdc.ph readline/tilde.h -> readline/tilde.ph rpc/auth.h -> rpc/auth.ph rpc/auth_des.h -> rpc/auth_des.ph rpc/auth_unix.h -> rpc/auth_unix.ph rpc/clnt.h -> rpc/clnt.ph rpc/des.h -> rpc/des.ph rpc/des_crypt.h -> rpc/des_crypt.ph rpc/key_prot.h -> rpc/key_prot.ph rpc/pmap_clnt.h -> rpc/pmap_clnt.ph rpc/pmap_prot.h -> rpc/pmap_prot.ph rpc/pmap_rmt.h -> rpc/pmap_rmt.ph rpc/rpc.h -> rpc/rpc.ph rpc/rpc_com.h -> rpc/rpc_com.ph rpc/rpc_msg.h -> rpc/rpc_msg.ph rpc/svc.h -> rpc/svc.ph rpc/svc_auth.h -> rpc/svc_auth.ph rpc/types.h -> rpc/types.ph rpc/xdr.h -> rpc/xdr.ph rpcsvc/bootparam_prot.h -> rpcsvc/bootparam_prot.ph rpcsvc/crypt.h -> rpcsvc/crypt.ph rpcsvc/key_prot.h -> rpcsvc/key_prot.ph rpcsvc/klm_prot.h -> rpcsvc/klm_prot.ph rpcsvc/mount.h -> rpcsvc/mount.ph rpcsvc/nfs_prot.h -> rpcsvc/nfs_prot.ph rpcsvc/nis.h -> rpcsvc/nis.ph rpcsvc/nis_cache.h -> rpcsvc/nis_cache.ph rpcsvc/nis_callback.h -> rpcsvc/nis_callback.ph rpcsvc/nis_db.h -> rpcsvc/nis_db.ph rpcsvc/nis_tags.h -> rpcsvc/nis_tags.ph rpcsvc/nislib.h -> rpcsvc/nislib.ph rpcsvc/nlm_prot.h -> rpcsvc/nlm_prot.ph rpcsvc/rex.h -> rpcsvc/rex.ph rpcsvc/rnusers.h -> rpcsvc/rnusers.ph rpcsvc/rquota.h -> rpcsvc/rquota.ph rpcsvc/rstat.h -> rpcsvc/rstat.ph rpcsvc/rwall.h -> rpcsvc/rwall.ph rpcsvc/sm_inter.h -> rpcsvc/sm_inter.ph rpcsvc/spray.h -> rpcsvc/spray.ph rpcsvc/yp.h -> rpcsvc/yp.ph rpcsvc/yp_prot.h -> rpcsvc/yp_prot.ph rpcsvc/ypclnt.h -> rpcsvc/ypclnt.ph rpcsvc/yppasswd.h -> rpcsvc/yppasswd.ph rpcsvc/ypupdate_prot.h -> rpcsvc/ypupdate_prot.ph rpcsvc/ypxfrd.h -> rpcsvc/ypxfrd.ph security/_pam_compat.h -> security/_pam_compat.ph security/_pam_macros.h -> security/_pam_macros.ph security/_pam_types.h -> security/_pam_types.ph security/pam_appl.h -> security/pam_appl.ph security/pam_malloc.h -> security/pam_malloc.ph security/pam_misc.h -> security/pam_misc.ph security/pam_mod_misc.h -> security/pam_mod_misc.ph security/pam_modules.h -> security/pam_modules.ph ss/mit-sipb-copyright.h -> ss/mit-sipb-copyright.ph ss/ss.h -> ss/ss.ph ss/ss_err.h -> ss/ss_err.ph sys/_posix.h -> sys/_posix.ph sys/acct.h -> sys/acct.ph sys/aio.h -> sys/aio.ph sys/buf.h -> sys/buf.ph sys/bus.h -> sys/bus.ph sys/bus_private.h -> sys/bus_private.ph sys/callout.h -> sys/callout.ph sys/ccdvar.h -> sys/ccdvar.ph sys/cdefs.h -> sys/cdefs.ph sys/cdio.h -> sys/cdio.ph sys/chio.h -> sys/chio.ph sys/clist.h -> sys/clist.ph sys/conf.h -> sys/conf.ph sys/copyright.h -> sys/copyright.ph sys/ctype.h -> sys/ctype.ph sys/dataacq.h -> sys/dataacq.ph sys/devfsext.h -> sys/devfsext.ph sys/device.h -> sys/device.ph sys/devicestat.h -> sys/devicestat.ph sys/dir.h -> sys/dir.ph sys/dirent.h -> sys/dirent.ph sys/disk.h -> sys/disk.ph sys/disklabel.h -> sys/disklabel.ph sys/diskslice.h -> sys/diskslice.ph sys/dkbad.h -> sys/dkbad.ph sys/dkstat.h -> sys/dkstat.ph sys/dmap.h -> sys/dmap.ph sys/domain.h -> sys/domain.ph sys/elf32.h -> sys/elf32.ph sys/elf64.h -> sys/elf64.ph sys/elf_common.h -> sys/elf_common.ph sys/elf_generic.h -> sys/elf_generic.ph sys/errno.h -> sys/errno.ph sys/exec.h -> sys/exec.ph sys/fbio.h -> sys/fbio.ph sys/fcntl.h -> sys/fcntl.ph sys/file.h -> sys/file.ph sys/filedesc.h -> sys/filedesc.ph sys/filio.h -> sys/filio.ph sys/ftape.h -> sys/ftape.ph sys/gmon.h -> sys/gmon.ph sys/imgact.h -> sys/imgact.ph sys/imgact_aout.h -> sys/imgact_aout.ph sys/imgact_elf.h -> sys/imgact_elf.ph sys/inflate.h -> sys/inflate.ph sys/interrupt.h -> sys/interrupt.ph sys/inttypes.h -> sys/inttypes.ph sys/ioccom.h -> sys/ioccom.ph sys/ioctl.h -> sys/ioctl.ph sys/ioctl_compat.h -> sys/ioctl_compat.ph sys/ipc.h -> sys/ipc.ph sys/kernel.h -> sys/kernel.ph sys/ktrace.h -> sys/ktrace.ph sys/libkern.h -> sys/libkern.ph sys/linker.h -> sys/linker.ph sys/linker_set.h -> sys/linker_set.ph sys/lkm.h -> sys/lkm.ph sys/lock.h -> sys/lock.ph sys/lockf.h -> sys/lockf.ph sys/malloc.h -> sys/malloc.ph sys/mbuf.h -> sys/mbuf.ph sys/md5.h -> sys/md5.ph sys/memrange.h -> sys/memrange.ph sys/mman.h -> sys/mman.ph sys/module.h -> sys/module.ph sys/mount.h -> sys/mount.ph sys/msg.h -> sys/msg.ph sys/msgbuf.h -> sys/msgbuf.ph sys/mtio.h -> sys/mtio.ph sys/namei.h -> sys/namei.ph sys/param.h -> sys/param.ph sys/pioctl.h -> sys/pioctl.ph sys/pipe.h -> sys/pipe.ph sys/poll.h -> sys/poll.ph sys/proc.h -> sys/proc.ph sys/procfs.h -> sys/procfs.ph sys/protosw.h -> sys/protosw.ph sys/ptio.h -> sys/ptio.ph sys/ptrace.h -> sys/ptrace.ph sys/queue.h -> sys/queue.ph sys/reboot.h -> sys/reboot.ph sys/resource.h -> sys/resource.ph sys/resourcevar.h -> sys/resourcevar.ph sys/rlist.h -> sys/rlist.ph sys/rman.h -> sys/rman.ph sys/rtprio.h -> sys/rtprio.ph sys/scsiio.h -> sys/scsiio.ph sys/select.h -> sys/select.ph sys/sem.h -> sys/sem.ph sys/shm.h -> sys/shm.ph sys/signal.h -> sys/signal.ph sys/signalvar.h -> sys/signalvar.ph sys/sliceio.h -> sys/sliceio.ph sys/snoop.h -> sys/snoop.ph sys/socket.h -> sys/socket.ph sys/socketvar.h -> sys/socketvar.ph sys/sockio.h -> sys/sockio.ph sys/stat.h -> sys/stat.ph sys/syscall-hide.h -> sys/syscall-hide.ph sys/syscall.h -> sys/syscall.ph sys/sysctl.h -> sys/sysctl.ph sys/sysent.h -> sys/sysent.ph sys/syslimits.h -> sys/syslimits.ph sys/syslog.h -> sys/syslog.ph sys/sysproto.h -> sys/sysproto.ph sys/systm.h -> sys/systm.ph sys/tablet.h -> sys/tablet.ph sys/termios.h -> sys/termios.ph sys/time.h -> sys/time.ph sys/timeb.h -> sys/timeb.ph sys/timepps.h -> sys/timepps.ph sys/timers.h -> sys/timers.ph sys/times.h -> sys/times.ph sys/timex.h -> sys/timex.ph sys/tprintf.h -> sys/tprintf.ph sys/tty.h -> sys/tty.ph sys/ttychars.h -> sys/ttychars.ph sys/ttycom.h -> sys/ttycom.ph sys/ttydefaults.h -> sys/ttydefaults.ph sys/ttydev.h -> sys/ttydev.ph sys/types.h -> sys/types.ph sys/ucred.h -> sys/ucred.ph sys/uio.h -> sys/uio.ph sys/un.h -> sys/un.ph sys/unistd.h -> sys/unistd.ph sys/unpcb.h -> sys/unpcb.ph sys/user.h -> sys/user.ph sys/utsname.h -> sys/utsname.ph sys/vadvise.h -> sys/vadvise.ph sys/vcmd.h -> sys/vcmd.ph sys/vlimit.h -> sys/vlimit.ph sys/vmmeter.h -> sys/vmmeter.ph sys/vnioctl.h -> sys/vnioctl.ph sys/vnode.h -> sys/vnode.ph sys/vsio.h -> sys/vsio.ph sys/wait.h -> sys/wait.ph sys/wormio.h -> sys/wormio.ph sys/xrpuio.h -> sys/xrpuio.ph Skipping directory `ufs/ffs' Skipping directory `ufs/mfs' Skipping directory `ufs/ufs' vm/default_pager.h -> vm/default_pager.ph vm/pmap.h -> vm/pmap.ph vm/swap_pager.h -> vm/swap_pager.ph vm/vm.h -> vm/vm.ph vm/vm_extern.h -> vm/vm_extern.ph vm/vm_inherit.h -> vm/vm_inherit.ph vm/vm_kern.h -> vm/vm_kern.ph vm/vm_map.h -> vm/vm_map.ph vm/vm_object.h -> vm/vm_object.ph vm/vm_page.h -> vm/vm_page.ph vm/vm_pageout.h -> vm/vm_pageout.ph vm/vm_pager.h -> vm/vm_pager.ph vm/vm_param.h -> vm/vm_param.ph vm/vm_prot.h -> vm/vm_prot.ph vm/vm_zone.h -> vm/vm_zone.ph vm/vnode_pager.h -> vm/vnode_pager.ph *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. FreeBSD gateway.mydomain 3.5.1-RELEASE FreeBSD 3.5.1-RELEASE #0: Mon Oct 16 21:26:24 GMT 2000 root@gateway.mydomain:/usr/src/sys/compile/GENERIC i386 # exit Script done on Tue Oct 17 16:20:45 2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 20 10: 0: 6 2000 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 920C737B4C5 for ; Fri, 20 Oct 2000 10:00:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA71735; Fri, 20 Oct 2000 10:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 20 Oct 2000 10:00:03 -0700 (PDT) Message-Id: <200010201700.KAA71735@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brian Somers Subject: Re: conf/22150: /etc/periodic/daily/450.status-security ignores mail recipient config Reply-To: Brian Somers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/22150; it has been noted by GNATS. From: Brian Somers To: pdp@nl.demon.net Cc: freebsd-gnats-submit@FreeBSD.ORG, brian@Awfulhak.org Subject: Re: conf/22150: /etc/periodic/daily/450.status-security ignores mail recipient config Date: Fri, 20 Oct 2000 08:37:51 -0700 > >Number: 22150 > >Category: conf > >Synopsis: /etc/periodic/daily/450.status-security ignores mail recipient config I don't think that $daily_output is the right variable to use here. How about introducing a $security_output variable and documenting it in rc.conf.5 ? Cheers. -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 20 10: 0: 9 2000 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 9159C37B683 for ; Fri, 20 Oct 2000 10:00:06 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA71780; Fri, 20 Oct 2000 10:00:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 20 Oct 2000 10:00:06 -0700 (PDT) Message-Id: <200010201700.KAA71780@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Phil Pennock Subject: Re: conf/22150: /etc/periodic/daily/450.status-security ignores mail recipient config Reply-To: Phil Pennock Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/22150; it has been noted by GNATS. From: Phil Pennock To: Brian Somers Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: conf/22150: /etc/periodic/daily/450.status-security ignores mail recipient config Date: Fri, 20 Oct 2000 18:57:12 +0200 On 2000-10-20 at 08:37 -0700, Brian Somers wrote: > > >Number: 22150 > > >Category: conf > > >Synopsis: /etc/periodic/daily/450.status-security ignores mail recipient config > > I don't think that $daily_output is the right variable to use here. > How about introducing a $security_output variable and documenting it > in rc.conf.5 ? Whatever. That's why I suggested in the first line of the Fix section: "Either use a new config variable, or apply:" -- Phil Pennock Demon Internet Nederland -- Network Operations Centre -- Systems Administrator Libertes philosophica. Sales: +31 20 422 20 00 Support: 0800 33 6666 8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 20 11: 5:43 2000 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 CD91337B4D7; Fri, 20 Oct 2000 11:05:42 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA97045; Fri, 20 Oct 2000 11:05:42 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Fri, 20 Oct 2000 11:05:42 -0700 (PDT) From: Message-Id: <200010201805.LAA97045@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, luigi@FreeBSD.org Subject: Re: kern/22152: typo in ip_fw.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: typo in ip_fw.c Responsible-Changed-From-To: freebsd-bugs->luigi Responsible-Changed-By: ru Responsible-Changed-When: Fri Oct 20 11:05:10 PDT 2000 Responsible-Changed-Why: Over to the inventor. http://www.freebsd.org/cgi/query-pr.cgi?pr=22152 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 20 15: 3:33 2000 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 4D4C937B479; Fri, 20 Oct 2000 15:03:32 -0700 (PDT) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA91903; Fri, 20 Oct 2000 15:03:32 -0700 (PDT) (envelope-from ps@FreeBSD.org) Date: Fri, 20 Oct 2000 15:03:32 -0700 (PDT) From: Message-Id: <200010202203.PAA91903@freefall.freebsd.org> To: ps@FreeBSD.org, freebsd-bugs@FreeBSD.org, mckusick@FreeBSD.org Subject: Re: kern/22029: use of softdependencies leads to major filesystem inconsistencies Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: use of softdependencies leads to major filesystem inconsistencies Responsible-Changed-From-To: freebsd-bugs->mckusick Responsible-Changed-By: ps Responsible-Changed-When: Fri Oct 20 15:02:27 PDT 2000 Responsible-Changed-Why: Kirk would like to look at this. http://www.freebsd.org/cgi/query-pr.cgi?pr=22029 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 20 16:20:14 2000 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 DE39237B4CF for ; Fri, 20 Oct 2000 16:20:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA24838; Fri, 20 Oct 2000 16:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.snickers.org (snickers.org [216.126.90.2]) by hub.freebsd.org (Postfix) with ESMTP id D88F037B479 for ; Fri, 20 Oct 2000 16:10:33 -0700 (PDT) Received: by mail.snickers.org (Postfix, from userid 1037) id 9136D3D1D; Fri, 20 Oct 2000 19:10:32 -0400 (EDT) Message-Id: <20001020231032.9136D3D1D@mail.snickers.org> Date: Fri, 20 Oct 2000 19:10:32 -0400 (EDT) From: josh@zipperup.org Reply-To: josh@zipperup.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22168: Patch to sys/kern to add M_ZERO to appropriate malloc calls Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22168 >Category: kern >Synopsis: Patch to sys/kern to add M_ZERO to appropriate malloc calls >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 20 16:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Josh Tiefenbach >Release: FreeBSD 5.0-CURRENT i386 >Organization: Connective Software >Environment: -current circa 20 Oct 2000, 1800 EST >Description: Patch to convert malloc/bzero calls to malloc(..., M_ZERO) calls, as per phk's email to freebsd-current. Changes were made with the goal of keeping the semantics of the code the same in mind. If there was any doubt, then the change was not made. The patch compiles cleanly, and appears to have had no ill effects. >How-To-Repeat: N/A >Fix: Patch follows. ----- Index: kern_descrip.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/kern_descrip.c,v retrieving revision 1.92 diff -u -r1.92 kern_descrip.c --- kern_descrip.c 2000/09/02 19:16:58 1.92 +++ kern_descrip.c 2000/10/20 21:51:27 @@ -770,8 +770,7 @@ * the list of open files. */ nfiles++; - MALLOC(fp, struct file *, sizeof(struct file), M_FILE, M_WAITOK); - bzero(fp, sizeof(struct file)); + MALLOC(fp, struct file *, sizeof(struct file), M_FILE, M_WAITOK | M_ZERO); fp->f_count = 1; fp->f_cred = p->p_ucred; fp->f_ops = &badfileops; @@ -817,8 +816,7 @@ register struct filedesc *fdp = p->p_fd; MALLOC(newfdp, struct filedesc0 *, sizeof(struct filedesc0), - M_FILEDESC, M_WAITOK); - bzero(newfdp, sizeof(struct filedesc0)); + M_FILEDESC, M_WAITOK | M_ZERO); newfdp->fd_fd.fd_cdir = fdp->fd_cdir; if (newfdp->fd_fd.fd_cdir) VREF(newfdp->fd_fd.fd_cdir); Index: kern_event.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/kern_event.c,v retrieving revision 1.16 diff -u -r1.16 kern_event.c --- kern_event.c 2000/08/30 04:49:07 1.16 +++ kern_event.c 2000/10/20 21:51:58 @@ -306,8 +306,7 @@ fp->f_flag = FREAD | FWRITE; fp->f_type = DTYPE_KQUEUE; fp->f_ops = &kqueueops; - kq = malloc(sizeof(struct kqueue), M_TEMP, M_WAITOK); - bzero(kq, sizeof(*kq)); + kq = malloc(sizeof(struct kqueue), M_TEMP, M_WAITOK | M_ZERO); TAILQ_INIT(&kq->kq_head); fp->f_data = (caddr_t)kq; p->p_retval[0] = fd; Index: kern_jail.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/kern_jail.c,v retrieving revision 1.7 diff -u -r1.7 kern_jail.c --- kern_jail.c 2000/06/04 04:28:31 1.7 +++ kern_jail.c 2000/10/20 21:53:52 @@ -59,8 +59,7 @@ return (error); if (j.version != 0) return (EINVAL); - MALLOC(pr, struct prison *, sizeof *pr , M_PRISON, M_WAITOK); - bzero((caddr_t)pr, sizeof *pr); + MALLOC(pr, struct prison *, sizeof *pr , M_PRISON, M_WAITOK | M_ZERO); error = copyinstr(j.hostname, &pr->pr_host, sizeof pr->pr_host, 0); if (error) goto bail; Index: kern_linker.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/kern_linker.c,v retrieving revision 1.52 diff -u -r1.52 kern_linker.c --- kern_linker.c 2000/10/04 17:40:24 1.52 +++ kern_linker.c 2000/10/20 21:55:23 @@ -515,10 +515,9 @@ linker_file_t* newdeps; newdeps = malloc((file->ndeps + 1) * sizeof(linker_file_t*), - M_LINKER, M_WAITOK); + M_LINKER, M_WAITOK | M_ZERO); if (newdeps == NULL) return ENOMEM; - bzero(newdeps, (file->ndeps + 1) * sizeof(linker_file_t*)); if (file->deps) { bcopy(file->deps, newdeps, file->ndeps * sizeof(linker_file_t*)); @@ -589,12 +588,11 @@ cp = malloc(sizeof(struct common_symbol) + common_size + strlen(name) + 1, - M_LINKER, M_WAITOK); + M_LINKER, M_WAITOK | M_ZERO); if (!cp) { KLD_DPF(SYM, ("linker_file_lookup_symbol: nomem\n")); return 0; } - bzero(cp, sizeof(struct common_symbol) + common_size + strlen(name)+ 1); cp->address = (caddr_t) (cp + 1); cp->name = cp->address + common_size; Index: kern_prot.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/kern_prot.c,v retrieving revision 1.63 diff -u -r1.63 kern_prot.c --- kern_prot.c 2000/09/05 22:10:22 1.63 +++ kern_prot.c 2000/10/20 21:56:34 @@ -1136,8 +1136,7 @@ { register struct ucred *cr; - MALLOC(cr, struct ucred *, sizeof(*cr), M_CRED, M_WAITOK); - bzero((caddr_t)cr, sizeof(*cr)); + MALLOC(cr, struct ucred *, sizeof(*cr), M_CRED, M_WAITOK | M_ZERO); cr->cr_ref = 1; return (cr); } Index: kern_sysctl.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/kern_sysctl.c,v retrieving revision 1.100 diff -u -r1.100 kern_sysctl.c --- kern_sysctl.c 2000/07/28 22:40:04 1.100 +++ kern_sysctl.c 2000/10/20 21:57:21 @@ -339,8 +339,7 @@ return (NULL); } } - oidp = malloc(sizeof(struct sysctl_oid), M_SYSCTLOID, M_WAITOK); - bzero(oidp, sizeof(struct sysctl_oid)); + oidp = malloc(sizeof(struct sysctl_oid), M_SYSCTLOID, M_WAITOK | M_ZERO); oidp->oid_parent = parent; SLIST_NEXT(oidp, oid_link) = NULL; oidp->oid_number = number; Index: link_elf.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/link_elf.c,v retrieving revision 1.32 diff -u -r1.32 link_elf.c --- link_elf.c 2000/10/06 05:20:02 1.32 +++ link_elf.c 2000/10/20 21:58:41 @@ -728,12 +728,11 @@ nbytes = hdr->e_shnum * hdr->e_shentsize; if (nbytes == 0 || hdr->e_shoff == 0) goto nosyms; - shdr = malloc(nbytes, M_LINKER, M_WAITOK); + shdr = malloc(nbytes, M_LINKER, M_WAITOK | M_ZERO); if (shdr == NULL) { error = ENOMEM; goto out; } - bzero(shdr, nbytes); error = vn_rdwr(UIO_READ, nd.ni_vp, (caddr_t)shdr, nbytes, hdr->e_shoff, UIO_SYSSPACE, IO_NODELOCKED, p->p_ucred, &resid, p); Index: subr_blist.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/subr_blist.c,v retrieving revision 1.6 diff -u -r1.6 subr_blist.c --- subr_blist.c 2000/03/16 08:51:51 1.6 +++ subr_blist.c 2000/10/20 21:59:07 @@ -152,9 +152,7 @@ skip = (skip + 1) << BLIST_META_RADIX_SHIFT; } - bl = malloc(sizeof(struct blist), M_SWAP, M_WAITOK); - - bzero(bl, sizeof(*bl)); + bl = malloc(sizeof(struct blist), M_SWAP, M_WAITOK | M_ZERO); bl->bl_blocks = blocks; bl->bl_radix = radix; Index: tty.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/tty.c,v retrieving revision 1.139 diff -u -r1.139 tty.c --- tty.c 2000/09/07 01:32:52 1.139 +++ tty.c 2000/10/20 22:03:54 @@ -2402,8 +2402,7 @@ if (tp) return(tp); - tp = malloc(sizeof *tp, M_TTYS, M_WAITOK); - bzero(tp, sizeof *tp); + tp = malloc(sizeof *tp, M_TTYS, M_WAITOK | M_ZERO); ttyregister(tp); return (tp); } Index: tty_pty.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/tty_pty.c,v retrieving revision 1.80 diff -u -r1.80 tty_pty.c --- tty_pty.c 2000/09/19 10:28:38 1.80 +++ tty_pty.c 2000/10/20 22:04:10 @@ -147,8 +147,7 @@ if (n & ~0xff) return (NODEV); - pt = malloc(sizeof(*pt), M_PTY, M_WAITOK); - bzero(pt, sizeof(*pt)); + pt = malloc(sizeof(*pt), M_PTY, M_WAITOK | M_ZERO); pt->devs = devs = make_dev(&pts_cdevsw, n, UID_ROOT, GID_WHEEL, 0666, "tty%c%r", names[n / 32], n % 32); pt->devc = devc = make_dev(&ptc_cdevsw, n, Index: tty_snoop.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/tty_snoop.c,v retrieving revision 1.47 diff -u -r1.47 tty_snoop.c --- tty_snoop.c 2000/04/02 07:02:41 1.47 +++ tty_snoop.c 2000/10/20 22:04:38 @@ -292,8 +292,7 @@ if (dev->si_drv1 == NULL) { int mynor = minor(dev); - dev->si_drv1 = snp = malloc(sizeof(*snp), M_SNP, M_WAITOK); - bzero(snp, sizeof(*snp)); + dev->si_drv1 = snp = malloc(sizeof(*snp), M_SNP, M_WAITOK | M_ZERO); make_dev(&snp_cdevsw, mynor, 0, 0, 0600, "snp%d", mynor); } else return (EBUSY); Index: uipc_socket.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/uipc_socket.c,v retrieving revision 1.83 diff -u -r1.83 uipc_socket.c --- uipc_socket.c 2000/09/28 04:41:22 1.83 +++ uipc_socket.c 2000/10/20 22:06:52 @@ -1038,8 +1038,7 @@ error = ENOENT; goto out; } - MALLOC(af, struct so_accf *, sizeof(*af), M_ACCF, M_WAITOK); - bzero(af, sizeof(*af)); + MALLOC(af, struct so_accf *, sizeof(*af), M_ACCF, M_WAITOK | M_ZERO); if (afp->accf_create != NULL) { if (afap->af_name[0] != '\0') { int len = strlen(afap->af_name) + 1; @@ -1298,8 +1297,7 @@ if ((so->so_options & SO_ACCEPTCONN) == 0) return (EINVAL); MALLOC(afap, struct accept_filter_arg *, sizeof(*afap), - M_TEMP, M_WAITOK); - bzero(afap, sizeof(*afap)); + M_TEMP, M_WAITOK | M_ZERO); if ((so->so_options & SO_ACCEPTFILTER) != 0) { strcpy(afap->af_name, so->so_accf->so_accept_filter->accf_name); if (so->so_accf->so_accept_filter_str != NULL) Index: vfs_cache.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/vfs_cache.c,v retrieving revision 1.49 diff -u -r1.49 vfs_cache.c --- vfs_cache.c 2000/09/17 07:26:41 1.49 +++ vfs_cache.c 2000/10/20 22:09:35 @@ -299,8 +299,7 @@ } ncp = (struct namecache *) - malloc(sizeof *ncp + cnp->cn_namelen, M_VFSCACHE, M_WAITOK); - bzero((char *)ncp, sizeof *ncp); + malloc(sizeof *ncp + cnp->cn_namelen, M_VFSCACHE, M_WAITOK | M_ZERO); numcache++; if (!vp) { numneg++; Index: vfs_init.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/vfs_init.c,v retrieving revision 1.50 diff -u -r1.50 vfs_init.c --- vfs_init.c 2000/09/06 17:51:54 1.50 +++ vfs_init.c 2000/10/20 22:11:23 @@ -125,10 +125,9 @@ if (*opv_desc_vector_p) FREE(*opv_desc_vector_p, M_VNODE); MALLOC(*opv_desc_vector_p, vop_t **, - vfs_opv_numops * sizeof(vop_t *), M_VNODE, M_WAITOK); + vfs_opv_numops * sizeof(vop_t *), M_VNODE, M_WAITOK | M_ZERO); if (*opv_desc_vector_p == NULL) panic("no memory for vop_t ** vector"); - bzero(*opv_desc_vector_p, vfs_opv_numops * sizeof(vop_t *)); /* Fill in, with slot 0 being to return EOPNOTSUPP */ opv_desc_vector = *opv_desc_vector_p; Index: vfs_subr.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/vfs_subr.c,v retrieving revision 1.288 diff -u -r1.288 vfs_subr.c --- vfs_subr.c 2000/10/20 07:58:05 1.288 +++ vfs_subr.c 2000/10/20 22:12:06 @@ -339,8 +339,7 @@ break; if (vfsp == NULL) return (ENODEV); - mp = malloc((u_long)sizeof(struct mount), M_MOUNT, M_WAITOK); - bzero((char *)mp, (u_long)sizeof(struct mount)); + mp = malloc((u_long)sizeof(struct mount), M_MOUNT, M_WAITOK | M_ZERO); lockinit(&mp->mnt_lock, PVFS, "vfslock", 0, LK_NOPAUSE); (void)vfs_busy(mp, LK_NOWAIT, 0, p); LIST_INIT(&mp->mnt_vnodelist); @@ -2320,8 +2319,7 @@ return (0); } i = sizeof(struct netcred) + argp->ex_addrlen + argp->ex_masklen; - np = (struct netcred *) malloc(i, M_NETADDR, M_WAITOK); - bzero((caddr_t) np, i); + np = (struct netcred *) malloc(i, M_NETADDR, M_WAITOK | M_ZERO); saddr = (struct sockaddr *) (np + 1); if ((error = copyin(argp->ex_addr, (caddr_t) saddr, argp->ex_addrlen))) goto out; Index: vfs_syscalls.c =================================================================== RCS file: /usr/home/ncvs/src/sys/kern/vfs_syscalls.c,v retrieving revision 1.169 diff -u -r1.169 vfs_syscalls.c --- vfs_syscalls.c 2000/10/04 01:29:09 1.169 +++ vfs_syscalls.c 2000/10/20 22:12:46 @@ -255,8 +255,7 @@ /* * Allocate and initialize the filesystem. */ - mp = malloc(sizeof(struct mount), M_MOUNT, M_WAITOK); - bzero((char *)mp, (u_long)sizeof(struct mount)); + mp = malloc(sizeof(struct mount), M_MOUNT, M_WAITOK | M_ZERO); lockinit(&mp->mnt_lock, PVFS, "vfslock", 0, LK_NOPAUSE); (void)vfs_busy(mp, LK_NOWAIT, 0, p); mp->mnt_op = vfsp->vfc_vfsops; >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 Oct 20 23: 0: 7 2000 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 DA20637B4CF for ; Fri, 20 Oct 2000 23:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA58828; Fri, 20 Oct 2000 23:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mfi00.iij.ad.jp (mfi00.iij.ad.jp [202.232.2.115]) by hub.freebsd.org (Postfix) with ESMTP id C9B4337B479 for ; Fri, 20 Oct 2000 22:53:54 -0700 (PDT) Received: from ppp-client.ff.iij4u.or.jp (h230.p028.iij4u.or.jp [210.130.28.230]) by mfi00.iij.ad.jp (8.8.8/MFI1.3) with ESMTP id OAA03653 for ; Sat, 21 Oct 2000 14:53:51 +0900 (JST) Received: (from h-nokubi@localhost) by ppp-client.ff.iij4u.or.jp (8.9.3/3.5Wpl7-ppp) id OAA13306; Sat, 21 Oct 2000 14:14:01 +0900 (JST) Message-Id: <200010210553.OAA03653@mfi00.iij.ad.jp> Date: Sat, 21 Oct 2000 14:14:01 +0900 (JST) From: nokubi@ff.iij4u.or.jp Reply-To: h-nokubi@ff.iij4u.or.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22175: kldstat(2) does not error return value, and kldstat(1) uses it. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22175 >Category: kern >Synopsis: kldstat(2) does not return error value, and kldstat(1) uses it. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: wish >Submitter-Id: current-users >Arrival-Date: Fri Oct 20 23:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: NOKUBI Hirotaka >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: FreeBSD sassaby.nokubi.or.jp 5.0-CURRENT FreeBSD 5.0-CURRENT #6: Fri Sep 15 18:57:36 JST 2000 root@:/usr/src/sys/compile/SASSABY i386 >Description: Kldstat(2) man page saids it seems always returns 0, and kldstat(1) expects negative return value when some error condition occurs. It seems that klkstat() in src/sys/kern/kern_linker.c returns 0 on successful case, or some garbage on failed case (or, p_retval[0]'s initial value?). >How-To-Repeat: >Fix: I think kldstat(2) should return -1 when some error condition occurs. Kldnext(2) has same 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 Fri Oct 20 23: 4: 1 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.gmx.net (pop.gmx.net [194.221.183.20]) by hub.freebsd.org (Postfix) with SMTP id 3F0FF37B4FE for ; Fri, 20 Oct 2000 23:03:41 -0700 (PDT) Received: (qmail 6338 invoked by uid 0); 21 Oct 2000 06:03:18 -0000 Received: from r2212.hbg.dial.surf-callino.de (HELO gmx.net) (213.21.27.180) by mail.gmx.net with SMTP; 21 Oct 2000 06:03:18 -0000 Message-ID: <39F131A2.727046F4@gmx.net> Date: Sat, 21 Oct 2000 08:03:14 +0200 From: Robert Drehmel Reply-To: robert@gizmo.quizbot.org X-Mailer: Mozilla 4.08 [en] (X11; I; FreeBSD 5.0-CURRENT i386) MIME-Version: 1.0 To: freebsd-bugs@freebsd.org Subject: kernel cleanup diffs (M_ZERO related) Content-Type: multipart/mixed; boundary="------------93441DA77EB992E674BFF9CA" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------93441DA77EB992E674BFF9CA Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit hello, here are the requested kernel cleanup (context) diffs supporting the new kernel malloc(9) option M_ZERO. -- Robert S. F. Drehmel "Do not ask me; I am the programmer." --------------93441DA77EB992E674BFF9CA Content-Type: application/x-gzip; name="diffs.tar.gz" Content-Transfer-Encoding: base64 Content-Disposition: inline; filename="diffs.tar.gz" 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 AA== --------------93441DA77EB992E674BFF9CA-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 21 2:30:10 2000 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 9B41937B4D7 for ; Sat, 21 Oct 2000 02:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA30523; Sat, 21 Oct 2000 02:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from yar.chem.msu.su (yar.chem.msu.ru [195.208.208.25]) by hub.freebsd.org (Postfix) with ESMTP id AE6A537B4C5 for ; Sat, 21 Oct 2000 02:21:28 -0700 (PDT) Received: (from yar@localhost) by yar.chem.msu.su (8.11.0/8.11.0) id e9L9LBw00464; Sat, 21 Oct 2000 13:21:11 +0400 (MSD) (envelope-from yar) Message-Id: <200010210921.e9L9LBw00464@yar.chem.msu.su> Date: Sat, 21 Oct 2000 13:21:11 +0400 (MSD) From: yar@comp.chem.msu.su Reply-To: yar@comp.chem.msu.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22176: if_delmulti() doesn't notify the interface Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22176 >Category: kern >Synopsis: if_delmulti() doesn't notify the interface >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 Oct 21 02:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Yar Tikhiy >Release: FreeBSD 4.1-STABLE i386 >Organization: Moscow State University >Environment: The bug shows up in all branches. >Description: The kernel if_delmulti() function is for removing multicast group addresses from an interface. After removing a link-layer address, an interface driver must be notified by calling its if_ioctl(), so it can rebuild hardware filters etc. However, if_delmulti() returns early and fails to notify a driver if an AF_LINK address has been removed. That happens because such an address usually doesn't have a helper ifma->ifma_addr->lladdr address (the pointer is null), unlike IP or other higher-level protocol multicasts. Noteably, ether_resolvemulti() sets "*llsa" to NULL when invoked on an AF_LINK address. >How-To-Repeat: Join an ethernet muticast group from within kernel and then leave it using the if_addmulti()/if_delmulti() pair of functions. See the interface still recieving the multicasts (e.g. with the "tcpdump -p" command) I noticed that myself when debugging an ISL VLAN driver. >Fix: --- net/if.c.orig Sat Oct 21 12:38:22 2000 +++ net/if.c Sat Oct 21 12:46:32 2000 @@ -1278,6 +1278,12 @@ sa = ifma->ifma_lladdr; s = splimp(); LIST_REMOVE(ifma, ifma_link); + /* + * Make sure the interface driver is notified + * if a link layer address has been removed. + */ + if (ifma->ifma_addr->sa_family == AF_LINK && sa == 0) + ifp->if_ioctl(ifp, SIOCDELMULTI, 0); splx(s); free(ifma->ifma_addr, M_IFMADDR); free(ifma, M_IFMADDR); >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 Oct 21 2:37:14 2000 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 E1B2C37B479; Sat, 21 Oct 2000 02:37:12 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA34164; Sat, 21 Oct 2000 02:37:12 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Date: Sat, 21 Oct 2000 02:37:12 -0700 (PDT) From: Message-Id: <200010210937.CAA34164@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, dwmalone@FreeBSD.org Subject: Re: kern/22168: Patch to sys/kern to add M_ZERO to appropriate malloc calls Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch to sys/kern to add M_ZERO to appropriate malloc calls Responsible-Changed-From-To: freebsd-bugs->dwmalone Responsible-Changed-By: dwmalone Responsible-Changed-When: Sat Oct 21 02:36:19 PDT 2000 Responsible-Changed-Why: I'll have a look at the patches from Robert and Josh - it shouldn't take too long to read and check they compile OK. http://www.freebsd.org/cgi/query-pr.cgi?pr=22168 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 21 2:50:11 2000 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 D1D2937B4D7 for ; Sat, 21 Oct 2000 02:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA41208; Sat, 21 Oct 2000 02:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from yar.chem.msu.su (yar.chem.msu.ru [195.208.208.25]) by hub.freebsd.org (Postfix) with ESMTP id 0C8D537B4CF for ; Sat, 21 Oct 2000 02:44:21 -0700 (PDT) Received: (from yar@localhost) by yar.chem.msu.su (8.11.0/8.11.0) id e9L9iJZ00639; Sat, 21 Oct 2000 13:44:19 +0400 (MSD) (envelope-from yar) Message-Id: <200010210944.e9L9iJZ00639@yar.chem.msu.su> Date: Sat, 21 Oct 2000 13:44:19 +0400 (MSD) From: yar@comp.chem.msu.su Reply-To: yar@comp.chem.msu.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22177: in_arpinput() doesn't call m_pullup() while it should Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22177 >Category: kern >Synopsis: in_arpinput() doesn't call m_pullup() while it should >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 Oct 21 02:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Yar Tikhiy >Release: FreeBSD 4.1-STABLE i386 >Organization: Moscow State University >Environment: The bug show up in all branches. >Description: The processing of incoming ARP packets is split into two parts, the lower one (arpintr()) being protocol-independent, and the uppper one (in_arpinput) being IP-specific. The lower one uses m_pullup() to ensure the arp header is contiguous in memory and can be accessed with mtod(). However, the length of data being pulled up is smaller than required for IP ARP (but still enough for the protocol-independent part of the ARP header). The upper part doesn't call m_pullup() at all and so can be made by a malicious cracker sending too short ARP packets to access memory beyond the actual data boundary. Of course, there is usually some spare space in a mbuf cluster there, but that's still a dangerous behaviour. Moreover, that may break some sophisticated encapsulation schemes, such as VLANs (and it does break in some cases) Thus, yet another m_pullup() won't hurt. >How-To-Repeat: Take a look at the code in file netinet/if_ether.c, functions arpintr() and in_arpinput() >Fix: --- netinet/if_ether.c.orig Tue Apr 11 11:08:35 2000 +++ netinet/if_ether.c Fri Oct 20 03:03:23 2000 @@ -506,6 +506,12 @@ struct in_addr isaddr, itaddr, myaddr; int op; + if (m->m_len < sizeof(struct ether_arp) && + (m = m_pullup(m, sizeof(struct ether_arp))) == NULL) { + log(LOG_ERR, "arp: runt packet -- m_pullup failed\n"); + return; + } + ea = mtod(m, struct ether_arp *); op = ntohs(ea->arp_op); (void)memcpy(&isaddr, ea->arp_spa, sizeof (isaddr)); >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 Oct 21 3:40:10 2000 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 0EA0937B4CF for ; Sat, 21 Oct 2000 03:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA67533; Sat, 21 Oct 2000 03:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from yar.chem.msu.su (yar.chem.msu.ru [195.208.208.25]) by hub.freebsd.org (Postfix) with ESMTP id 8A8C337B4C5 for ; Sat, 21 Oct 2000 03:36:29 -0700 (PDT) Received: (from yar@localhost) by yar.chem.msu.su (8.11.0/8.11.0) id e9LAaKB00424; Sat, 21 Oct 2000 14:36:20 +0400 (MSD) (envelope-from yar) Message-Id: <200010211036.e9LAaKB00424@yar.chem.msu.su> Date: Sat, 21 Oct 2000 14:36:20 +0400 (MSD) From: yar@comp.chem.msu.su Reply-To: yar@comp.chem.msu.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22178: Output byte counter on VLAN parent not advancing Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22178 >Category: kern >Synopsis: Output byte counter on VLAN parent not advancing >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 21 03:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Yar Tikhiy >Release: FreeBSD 4.1-STABLE i386 >Organization: Moscow State University >Environment: The bug shows up in all branches. >Description: While the output packet counter on an ethernet interface is incremented by its hardware driver, the output byte and output multicast counters are advanced by ether_output(). However, when an ethernet interface acts as a parent for a set of VLAN interfaces, ether_output() is bypassed for it. Therefore, it's a duty of vlan_start() to update the counters. Additionally, the output packet counter of the vlan interface itself is advanced at a wrong place: even if p->if_start() isn't called due to the IFF_OACTIVE flag, the packet has already been enqueued for transmission and will be sent out. >How-To-Repeat: Use the vlan driver and see zero output byte counter on its parent interface with "netstat -i" >Fix: --- if_vlan.c.orig Sat Oct 21 14:13:01 2000 +++ if_vlan.c Sat Oct 21 14:21:58 2000 @@ -269,10 +269,12 @@ continue; } IF_ENQUEUE(&p->if_snd, m); - if ((p->if_flags & IFF_OACTIVE) == 0) { + ifp->if_opackets++; + p->if_obytes += m->m_pkthdr.len; + if (m->m_flags & M_MCAST) + p->if_omcasts++; + if ((p->if_flags & IFF_OACTIVE) == 0) p->if_start(p); - ifp->if_opackets++; - } } ifp->if_flags &= ~IFF_OACTIVE; >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 Oct 21 5:10: 9 2000 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 BF61837B4CF for ; Sat, 21 Oct 2000 05:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA18915; Sat, 21 Oct 2000 05:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from yar.chem.msu.su (yar.chem.msu.ru [195.208.208.25]) by hub.freebsd.org (Postfix) with ESMTP id 7ED2C37B4F9 for ; Sat, 21 Oct 2000 05:06:13 -0700 (PDT) Received: (from yar@localhost) by yar.chem.msu.su (8.11.0/8.11.0) id e9LC4rv00676; Sat, 21 Oct 2000 16:04:53 +0400 (MSD) (envelope-from yar) Message-Id: <200010211204.e9LC4rv00676@yar.chem.msu.su> Date: Sat, 21 Oct 2000 16:04:53 +0400 (MSD) From: yar@comp.chem.msu.su Reply-To: yar@comp.chem.msu.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22179: VLAN driver fails to hanlde interface flags properly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22179 >Category: kern >Synopsis: VLAN driver fails to hanlde interface flags properly >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 Oct 21 05:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Yar Tikhiy >Release: FreeBSD 4.1-STABLE i386 >Organization: Moscow State University >Environment: The bugs show up in all branches. >Description: 1. Many network interface drivers' XX_start() routines don't check if an interface is up and running because they rely on upper layers doing that. The vlan_start() routine, which calls XX_start() routines of underlying "parent" drivers, fails to do that, causing system panic when a packet is being sent via a vlan interface while its parnet interface is down. 2. The VLAN driver copies flags from a parent interface to a vlan interface mindlessly. However, setting some flags implies certain additional actions. In particular, bringing an interface up involves setting up a link-layer route to it. The VLAN driver fails to do that because it just copies the bit. 3. The if_up() and if_down() routines must be called at splnet() or equivalent. They also shouldn't be called if an interface is already up or down, correspondingly, because they do no additional checks. The VLAN driver is not aware of the above. I'd also suggest adding a couple of words on the properties of if_up()/if_down() to the ifnet(9) man page. >How-To-Repeat: 1. Try to assign an IP address to a VLAN interface which parent is down and see the system panic due to sending a gratituous ARP through the parent. 2. Assign a parent and an IP address to a VLAN interface. Then remove the parent with "ifconfig vlanX -vlandev". Then add another (or the same) parent back. See that packets don't go out, because there is no proper link-layer route to the VLAN interface. >Fix: --- if_vlan.c.orig Sat Oct 21 14:13:01 2000 +++ if_vlan.c Sat Oct 21 15:53:10 2000 @@ -205,6 +205,17 @@ bpf_mtap(ifp, m); /* + * Do not run parent's if_start() if it's not up, + * or parent's driver will cause a system crash + */ + if ((p->if_flags & (IFF_UP | IFF_RUNNING)) != + (IFF_UP | IFF_RUNNING)) { + m_freem(m); + ifp->if_data.ifi_collisions++; + continue; + } + + /* * If the LINK0 flag is set, it means the underlying interface * can do VLAN tag insertion itself and doesn't require us to * create a special header for it. In this case, we just pass @@ -362,9 +373,10 @@ ifv->ifv_if.if_mtu = p->if_data.ifi_mtu - EVL_ENCAPLEN; /* - * Preserve the state of the LINK0 flag for ourselves. + * Copy only a selected subset of flags from the parent */ - ifv->ifv_if.if_flags = (p->if_flags & ~(IFF_LINK0)); + ifv->ifv_if.if_flags = (p->if_flags & + (IFF_BROADCAST | IFF_MULTICAST | IFF_SIMPLEX | IFF_POINTOPOINT)); /* * Set up our ``Ethernet address'' to reflect the underlying @@ -488,8 +500,12 @@ break; if (vlr.vlr_parent[0] == '\0') { vlan_unconfig(ifp); - if_down(ifp); - ifp->if_flags &= ~(IFF_UP|IFF_RUNNING); + if (ifp->if_flags & IFF_UP) { + int s = splimp(); + if_down(ifp); + splx(s); + } + ifp->if_flags &= ~IFF_RUNNING; break; } p = ifunit(vlr.vlr_parent); >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 Oct 21 6: 0:11 2000 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 4A2F137B4D7 for ; Sat, 21 Oct 2000 06:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA44399; Sat, 21 Oct 2000 06:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from yar.chem.msu.su (yar.chem.msu.ru [195.208.208.25]) by hub.freebsd.org (Postfix) with ESMTP id 87ABE37B4CF for ; Sat, 21 Oct 2000 05:52:52 -0700 (PDT) Received: (from yar@localhost) by yar.chem.msu.su (8.11.0/8.11.0) id e9LCqns00928; Sat, 21 Oct 2000 16:52:49 +0400 (MSD) (envelope-from yar) Message-Id: <200010211252.e9LCqns00928@yar.chem.msu.su> Date: Sat, 21 Oct 2000 16:52:49 +0400 (MSD) From: yar@comp.chem.msu.su Reply-To: yar@comp.chem.msu.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22181: Bugs in the VLAN driver multicast manipulation code Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22181 >Category: kern >Synopsis: Bugs in the VLAN driver multicast manipulation code >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 Oct 21 06:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Yar Tikhiy >Release: FreeBSD 4.1-STABLE i386 >Organization: Moscow State University >Environment: The bug shows up in all branches. >Description: First, the VLAN driver initialized the "sdl" structure in a wrong way in its function vlan_setmulti(). In particular, the sdl.sdl_nlen field is not explicitly set to zero, but it's then used inside the LLADDR() macro. Besides that, there are other "struct sockaddr_dl" fileds to set. Second, that function calls malloc() with the M_NOWAIT flag, but doesn't check its return value. The function won't run at the interrupt level, so it's safe to use M_WAITOK there. Both bugs may cause system panic. >How-To-Repeat: See the code. >Fix: --- if_vlan.c.orig Sat Oct 21 14:13:01 2000 +++ if_vlan.c Sat Oct 21 16:26:13 2000 @@ -118,8 +118,10 @@ sc = ifp->if_softc; ifp_p = sc->ifv_p; - sdl.sdl_len = ETHER_ADDR_LEN; + bzero((char *)&sdl, sizeof sdl); + sdl.sdl_len = sizeof sdl; sdl.sdl_family = AF_LINK; + sdl.sdl_alen = ETHER_ADDR_LEN; /* First, remove any existing filter entries. */ while(sc->vlan_mc_listhead.slh_first != NULL) { @@ -137,7 +139,7 @@ ifma != NULL;ifma = ifma->ifma_link.le_next) { if (ifma->ifma_addr->sa_family != AF_LINK) continue; - mc = malloc(sizeof(struct vlan_mc_entry), M_DEVBUF, M_NOWAIT); + mc = malloc(sizeof(struct vlan_mc_entry), M_DEVBUF, M_WAITOK); bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr), (char *)&mc->mc_addr, ETHER_ADDR_LEN); SLIST_INSERT_HEAD(&sc->vlan_mc_listhead, mc, mc_entries); >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 Oct 21 6:40:15 2000 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 A548437B4CF for ; Sat, 21 Oct 2000 06:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA63065; Sat, 21 Oct 2000 06:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id 3377337B4CF for ; Sat, 21 Oct 2000 06:30:23 -0700 (PDT) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 13myj7-0000w0-00; Sat, 21 Oct 2000 15:30:21 +0200 Received: (from naddy@localhost) by kemoauc.mips.inka.de (8.11.0/8.11.0) id e9LCtSn71210; Sat, 21 Oct 2000 14:55:28 +0200 (CEST) (envelope-from naddy) Message-Id: <200010211255.e9LCtSn71210@kemoauc.mips.inka.de> Date: Sat, 21 Oct 2000 14:55:28 +0200 (CEST) From: Christian Weisgerber Reply-To: naddy@mips.inka.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/22182: vi options noprint/print/octal broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22182 >Category: bin >Synopsis: vi options noprint/print/octal broken >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 21 06:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 5.0-CURRENT alpha >Organization: >Environment: >Description: There's a bug in our vi (nvi 1.79). The options "noprint", "print", and "octal" don't work properly. When these options are changed, the routine that evaluates them is called before the option has been set. >How-To-Repeat: For option "octal": * Insert a non-printable character >0x80. * :set octal => The character is still displayed in hex. * :set nooctal => The display switches to octal. Similarly for "print" and "noprint". >Fix: From NetBSD: diff -ur /usr/src/contrib/nvi/common/options.c nvi/common/options.c --- /usr/src/contrib/nvi/common/options.c Sat Apr 19 01:36:33 1997 +++ nvi/common/options.c Sat Oct 21 14:42:25 2000 @@ -128,11 +128,11 @@ /* O_MSGCAT 4.4BSD */ {"msgcat", f_msgcat, OPT_STR, 0}, /* O_NOPRINT 4.4BSD */ - {"noprint", f_print, OPT_STR, 0}, + {"noprint", f_print, OPT_STR, OPT_EARLYSET}, /* O_NUMBER 4BSD */ {"number", f_reformat, OPT_0BOOL, 0}, /* O_OCTAL 4.4BSD */ - {"octal", f_print, OPT_0BOOL, 0}, + {"octal", f_print, OPT_0BOOL, OPT_EARLYSET}, /* O_OPEN 4BSD */ {"open", NULL, OPT_1BOOL, 0}, /* O_OPTIMIZE 4BSD */ @@ -142,7 +142,7 @@ /* O_PATH 4.4BSD */ {"path", NULL, OPT_STR, 0}, /* O_PRINT 4.4BSD */ - {"print", f_print, OPT_STR, 0}, + {"print", f_print, OPT_STR, OPT_EARLYSET}, /* O_PROMPT 4BSD */ {"prompt", NULL, OPT_1BOOL, 0}, /* O_READONLY 4BSD (undocumented) */ @@ -568,6 +568,14 @@ break; } + if (F_ISSET(op, OPT_EARLYSET)) { + /* Set the value. */ + if (turnoff) + O_CLR(sp, offset); + else + O_SET(sp, offset); + } + /* Report to subsystems. */ if (op->func != NULL && op->func(sp, spo, NULL, &turnoff) || @@ -578,11 +586,13 @@ break; } - /* Set the value. */ - if (turnoff) + if (!F_ISSET(op, OPT_EARLYSET)) { + /* Set the value. */ + if (turnoff) O_CLR(sp, offset); - else + else O_SET(sp, offset); + } break; case OPT_NUM: if (turnoff) { @@ -653,6 +663,14 @@ O_VAL(sp, offset) == value) break; + if (F_ISSET(op, OPT_EARLYSET)) { + /* Set the value. */ + if (o_set(sp, offset, 0, NULL, value)) { + rval = 1; + break; + } + } + /* Report to subsystems. */ if (op->func != NULL && op->func(sp, spo, sep, &value) || @@ -663,9 +681,11 @@ break; } - /* Set the value. */ - if (o_set(sp, offset, 0, NULL, value)) + if (!F_ISSET(op, OPT_EARLYSET)) { + /* Set the value. */ + if (o_set(sp, offset, 0, NULL, value)) rval = 1; + } break; case OPT_STR: if (turnoff) { @@ -690,6 +710,14 @@ !strcmp(O_STR(sp, offset), sep)) break; + if (F_ISSET(op, OPT_EARLYSET)) { + /* Set the value. */ + if (o_set(sp, offset, OS_STRDUP, sep, 0)) { + rval = 1; + break; + } + } + /* Report to subsystems. */ if (op->func != NULL && op->func(sp, spo, sep, NULL) || @@ -700,9 +728,11 @@ break; } - /* Set the value. */ - if (o_set(sp, offset, OS_STRDUP, sep, 0)) + if (!F_ISSET(op, OPT_EARLYSET)) { + /* Set the value. */ + if (o_set(sp, offset, OS_STRDUP, sep, 0)) rval = 1; + } break; default: abort(); diff -ur /usr/src/contrib/nvi/common/options.h nvi/common/options.h --- /usr/src/contrib/nvi/common/options.h Fri Nov 1 07:45:38 1996 +++ nvi/common/options.h Sat Oct 21 14:41:48 2000 @@ -89,6 +89,7 @@ #define OPT_NOSET 0x010 /* Option may not be set. */ #define OPT_NOUNSET 0x020 /* Option may not be unset. */ #define OPT_NOZERO 0x040 /* Option may not be set to 0. */ +#define OPT_EARLYSET 0x080 /* Func called after value is set */ u_int8_t flags; }; >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 Oct 21 7: 0: 5 2000 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 979D437B4CF for ; Sat, 21 Oct 2000 07:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA68910; Sat, 21 Oct 2000 07:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cmailg7.svr.pol.co.uk (cmailg7.svr.pol.co.uk [195.92.195.177]) by hub.freebsd.org (Postfix) with ESMTP id 63D9A37B4C5 for ; Sat, 21 Oct 2000 06:57:28 -0700 (PDT) Received: from [195.92.67.23] (helo=mail18.svr.pol.co.uk) by cmailg7.svr.pol.co.uk with esmtp (Exim 3.13 #0) id 13mz9F-0002yK-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 21 Oct 2000 14:57:21 +0100 Received: from modem-102.half-black-angel.dialup.pol.co.uk ([62.137.24.102] helo=hand.dotat.at) by mail18.svr.pol.co.uk with esmtp (Exim 3.13 #0) id 13mz9E-0004Fs-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 21 Oct 2000 14:57:20 +0100 Received: from fanf by hand.dotat.at with local (Exim 3.15 #3) id 13mz94-0000IP-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 21 Oct 2000 13:57:10 +0000 Message-Id: Date: Sat, 21 Oct 2000 13:57:10 +0000 From: Tony Finch Reply-To: Tony Finch To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/22184: addition for pccard.conf: TDK Grey Cell 2000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22184 >Category: conf >Synopsis: addition for pccard.conf: TDK Grey Cell 2000 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 21 07:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Tony Finch >Release: FreeBSD 4.1.1-STABLE-20001015 i386 >Organization: dotat >Environment: >Description: >How-To-Repeat: >Fix: # TDK Grey Cell GCS2000 Ethernet Card card "Grey Cell" "GCS2000" config auto "ed" ? 0x10 insert /etc/pccard_ether $device remove /sbin/ifconfig $device delete >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 Oct 21 7:10:10 2000 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 9B6D937B4D7 for ; Sat, 21 Oct 2000 07:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA73349; Sat, 21 Oct 2000 07:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from yar.chem.msu.su (yar.chem.msu.ru [195.208.208.25]) by hub.freebsd.org (Postfix) with ESMTP id 3601837B479 for ; Sat, 21 Oct 2000 07:02:13 -0700 (PDT) Received: (from yar@localhost) by yar.chem.msu.su (8.11.0/8.11.0) id e9LDxqf00443; Sat, 21 Oct 2000 17:59:52 +0400 (MSD) (envelope-from yar) Message-Id: <200010211359.e9LDxqf00443@yar.chem.msu.su> Date: Sat, 21 Oct 2000 17:59:52 +0400 (MSD) From: yar@comp.chem.msu.su Reply-To: yar@comp.chem.msu.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22185: Identical IP addresses on two broadcast interfaces Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22185 >Category: kern >Synopsis: Identical IP addresses on two broadcast interfaces >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 21 07:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Yar Tikhiy >Release: FreeBSD 4.1-STABLE i386 >Organization: Moscow State University >Environment: The bug seems to exist in all branches. >Description: It's possible to add two absolutely identical IP addresses to two different broadcast interfaces. I guess it would be possible to add different addresses from the same network, too. The problem arises from in_control()/in_ifinit() leaving the address installed even if adding the link-layer route fails. >How-To-Repeat: yar# ifconfig fxp0 10.1.1.1 yar# ifconfig fxp1 10.1.1.1 ifconfig: ioctl (SIOCAIFADDR): File exists yar# ifconfig fxp0 fxp0: flags=8843 mtu 1500 inet 10.1.1.1 netmask 0xff000000 broadcast 10.255.255.255 ether 00:d0:b7:60:63:da media: autoselect (100baseTX) status: active supported media: autoselect 100baseTX 100baseTX 10baseT/UT P 10baseT/UTP yar# ifconfig fxp1 fxp1: flags=8843 mtu 1500 inet 10.1.1.1 netmask 0xff000000 broadcast 10.255.255.255 ether 00:a0:c9:66:67:4d media: autoselect (100baseTX) status: active supported media: autoselect 100baseTX 100baseTX 10baseT/UT P 10baseT/UTP >Fix: Maybe, the code should try to add the link layer route first, and assign the address to the interface only if adding the route succeeded? >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 Oct 21 7:10:14 2000 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 D314D37B4E5 for ; Sat, 21 Oct 2000 07:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA73358; Sat, 21 Oct 2000 07:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.snickers.org (snickers.org [216.126.90.2]) by hub.freebsd.org (Postfix) with ESMTP id D903D37B479; Sat, 21 Oct 2000 07:08:59 -0700 (PDT) Received: by mail.snickers.org (Postfix, from userid 1037) id DF9503D1D; Sat, 21 Oct 2000 10:08:58 -0400 (EDT) Message-Id: <20001021140858.DF9503D1D@mail.snickers.org> Date: Sat, 21 Oct 2000 10:08:58 -0400 (EDT) From: josh@zipperup.org Reply-To: josh@zipperup.org To: FreeBSD-gnats-submit@freebsd.org Cc: dwmalone@freebsd.org, gibbs@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22186: Patch to sys/cam to add M_ZERO to appropriate malloc calls Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22186 >Category: kern >Synopsis: Patch to sys/cam to add M_ZERO to appropriate malloc calls >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 21 07:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Josh Tiefenbach >Release: FreeBSD 5.0-CURRENT i386 >Organization: Connective Software >Environment: -current circa 20 Oct 2000 >Description: Patch to convert malloc/bzero calls to malloc(..., M_ZERO) calls, as per phk's email to freebsd-current. Changes were made with the goal of keeping the semantics of the code the same in mind. If there was any doubt, then the change was not made. The patch compiles cleanly, and appears to have had no ill effects. >How-To-Repeat: N/A >Fix: Patch follows. ----- Index: scsi/scsi_cd.c =================================================================== RCS file: /usr/home/ncvs/src/sys/cam/scsi/scsi_cd.c,v retrieving revision 1.39 diff -u -r1.39 scsi_cd.c --- scsi/scsi_cd.c 2000/05/26 02:01:48 1.39 +++ scsi/scsi_cd.c 2000/10/21 14:00:44 @@ -3026,8 +3026,7 @@ } if (length != 0) { - databuf = malloc(length, M_DEVBUF, M_WAITOK); - bzero(databuf, length); + databuf = malloc(length, M_DEVBUF, M_WAITOK | M_ZERO); } else databuf = NULL; @@ -3158,12 +3157,10 @@ length = sizeof(*challenge_data); - challenge_data = malloc(length, M_DEVBUF, M_WAITOK); + challenge_data = malloc(length, M_DEVBUF, M_WAITOK | M_ZERO); databuf = (u_int8_t *)challenge_data; - bzero(databuf, length); - scsi_ulto2b(length - sizeof(challenge_data->data_len), challenge_data->data_len); @@ -3177,12 +3174,10 @@ length = sizeof(*key2_data); - key2_data = malloc(length, M_DEVBUF, M_WAITOK); + key2_data = malloc(length, M_DEVBUF, M_WAITOK | M_ZERO); databuf = (u_int8_t *)key2_data; - bzero(databuf, length); - scsi_ulto2b(length - sizeof(key2_data->data_len), key2_data->data_len); @@ -3196,12 +3191,10 @@ length = sizeof(*rpc_data); - rpc_data = malloc(length, M_DEVBUF, M_WAITOK); + rpc_data = malloc(length, M_DEVBUF, M_WAITOK | M_ZERO); databuf = (u_int8_t *)rpc_data; - bzero(databuf, length); - scsi_ulto2b(length - sizeof(rpc_data->data_len), rpc_data->data_len); @@ -3343,8 +3336,7 @@ } if (length != 0) { - databuf = malloc(length, M_DEVBUF, M_WAITOK); - bzero(databuf, length); + databuf = malloc(length, M_DEVBUF, M_WAITOK | M_ZERO); } else databuf = NULL; Index: scsi/scsi_ch.c =================================================================== RCS file: /usr/home/ncvs/src/sys/cam/scsi/scsi_ch.c,v retrieving revision 1.22 diff -u -r1.22 scsi_ch.c --- scsi/scsi_ch.c 2000/04/18 15:14:52 1.22 +++ scsi/scsi_ch.c 2000/10/21 14:01:13 @@ -1192,8 +1192,7 @@ user_data = (struct changer_element_status *) malloc(avail * sizeof(struct changer_element_status), - M_DEVBUF, M_WAITOK); - bzero(user_data, avail * sizeof(struct changer_element_status)); + M_DEVBUF, M_WAITOK | M_ZERO); desc = (struct read_element_status_descriptor *)((uintptr_t)data + sizeof(struct read_element_status_header) + Index: scsi/scsi_sa.c =================================================================== RCS file: /usr/home/ncvs/src/sys/cam/scsi/scsi_sa.c,v retrieving revision 1.57 diff -u -r1.57 scsi_sa.c --- scsi/scsi_sa.c 2000/10/05 17:02:20 1.57 +++ scsi/scsi_sa.c 2000/10/21 14:01:56 @@ -2392,8 +2392,7 @@ mode_buffer_len += sizeof (sa_comp_t); } - mode_buffer = malloc(mode_buffer_len, M_TEMP, M_WAITOK); - bzero(mode_buffer, mode_buffer_len); + mode_buffer = malloc(mode_buffer_len, M_TEMP, M_WAITOK | M_ZERO); mode_hdr = (struct scsi_mode_header_6 *)mode_buffer; mode_blk = (struct scsi_mode_blk_desc *)&mode_hdr[1]; @@ -2595,8 +2594,7 @@ if (params_to_set & SA_PARAM_COMPRESSION) mode_buffer_len += sizeof (sa_comp_t); - mode_buffer = malloc(mode_buffer_len, M_TEMP, M_WAITOK); - bzero(mode_buffer, mode_buffer_len); + mode_buffer = malloc(mode_buffer_len, M_TEMP, M_WAITOK | M_ZERO); mode_hdr = (struct scsi_mode_header_6 *)mode_buffer; mode_blk = (struct scsi_mode_blk_desc *)&mode_hdr[1]; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 21 7:20: 9 2000 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 95E1137B4CF for ; Sat, 21 Oct 2000 07:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA76487; Sat, 21 Oct 2000 07:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from starbug.ugh.net.au (starbug.ugh.net.au [203.31.238.37]) by hub.freebsd.org (Postfix) with ESMTP id 6D49A37B4C5 for ; Sat, 21 Oct 2000 07:15:03 -0700 (PDT) Received: by starbug.ugh.net.au (Postfix, from userid 1000) id 17910A842; Sun, 22 Oct 2000 01:14:56 +1100 (EST) Message-Id: <20001021141456.17910A842@starbug.ugh.net.au> Date: Sun, 22 Oct 2000 01:14:56 +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/22187: silence a warning from gcc when compiling finger Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22187 >Category: bin >Synopsis: silence a warning from gcc when compiling finger >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 21 07:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew >Release: FreeBSD 4.1.1-STABLE i386 >Organization: UgH! >Environment: >Description: If you compile finger with -Wall a lot of warnings are produced. Most are about strftime and %c only returning 2 digits under some (non BSD) systems which I don't think really matters. One is a suggested parentheses around an && which this patch addresses. This patch also removes the test for ch being a space as that will already have been caught by isprint(ch). >How-To-Repeat: Compile /usr/bin/finger with -Wall. >Fix: --- lprint.c.orig Mon Oct 2 14:11:48 2000 +++ lprint.c Sun Oct 22 00:01:04 2000 @@ -353,7 +353,7 @@ meta = 1; } else meta = 0; - if (isprint(ch) || !meta && (ch == ' ' || ch == '\t' || ch == '\n')) + if (isprint(ch) || (!meta && (ch == '\t' || ch == '\n'))) (void)putchar(ch); else { (void)putchar('^'); >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 Oct 21 7:20:11 2000 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 BC97837B4C5 for ; Sat, 21 Oct 2000 07:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA76496; Sat, 21 Oct 2000 07:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.snickers.org (snickers.org [216.126.90.2]) by hub.freebsd.org (Postfix) with ESMTP id 0FDAE37B479; Sat, 21 Oct 2000 07:17:53 -0700 (PDT) Received: by mail.snickers.org (Postfix, from userid 1037) id 5923E3D1D; Sat, 21 Oct 2000 10:17:52 -0400 (EDT) Message-Id: <20001021141752.5923E3D1D@mail.snickers.org> Date: Sat, 21 Oct 2000 10:17:52 -0400 (EDT) From: josh@zipperup.org Reply-To: josh@zipperup.org To: FreeBSD-gnats-submit@freebsd.org Cc: dwmalone@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22188: Patch to sys/alpha to add M_ZERO to appropriate malloc calls Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22188 >Category: kern >Synopsis: Patch to sys/alpha to add M_ZERO to appropriate malloc calls >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 21 07:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Josh Tiefenbach >Release: FreeBSD 5.0-CURRENT i386 >Organization: Connective Software >Environment: -current circa 20 Oct 2000 >Description: Patch to convert malloc/bzero calls to malloc(..., M_ZERO) calls, as per phk's email to freebsd-current. Changes were made with the goal of keeping the semantics of the code the same in mind. If there was any doubt, then the change was not made. The patch compiles cleanly. Note, I dont have an alpha, so I'm not sure if everything is hunky-dory. >How-To-Repeat: N/A >Fix: Patch follows. ------- Index: alpha/interrupt.c =================================================================== RCS file: /usr/home/ncvs/src/sys/alpha/alpha/interrupt.c,v retrieving revision 1.24 diff -u -r1.24 interrupt.c --- alpha/interrupt.c 2000/10/05 23:09:42 1.24 +++ alpha/interrupt.c 2000/10/21 14:11:26 @@ -371,11 +371,10 @@ if (ithd == NULL || ithd->it_ih == NULL) { /* first handler for this vector */ if (ithd == NULL) { - ithd = malloc(sizeof(struct ithd), M_DEVBUF, M_WAITOK); + ithd = malloc(sizeof(struct ithd), M_DEVBUF, M_WAITOK | M_ZERO); if (ithd == NULL) return ENOMEM; - bzero(ithd, sizeof(struct ithd)); ithd->irq = vector; ithd->it_md = i; i->ithd = ithd; @@ -410,10 +409,9 @@ } /* Third, setup the interrupt descriptor for this handler. */ - idesc = malloc(sizeof (struct intrec), M_DEVBUF, M_WAITOK); + idesc = malloc(sizeof (struct intrec), M_DEVBUF, M_WAITOK | M_ZERO); if (idesc == NULL) return ENOMEM; - bzero(idesc, sizeof(struct intrec)); idesc->handler = handler; idesc->argument = arg; Index: osf1/imgact_osf1.c =================================================================== RCS file: /usr/home/ncvs/src/sys/alpha/osf1/imgact_osf1.c,v retrieving revision 1.1 diff -u -r1.1 imgact_osf1.c --- osf1/imgact_osf1.c 1999/12/14 22:35:32 1.1 +++ osf1/imgact_osf1.c 2000/10/21 14:12:02 @@ -109,8 +109,7 @@ printf("unknown ecoff magic %x\n", eap->magic); return ENOEXEC; } - osf_auxargs = malloc(sizeof(Osf_Auxargs), M_TEMP, M_WAITOK); - bzero(osf_auxargs, sizeof(Osf_Auxargs)); + osf_auxargs = malloc(sizeof(Osf_Auxargs), M_TEMP, M_WAITOK | M_ZERO); imgp->auxargs = osf_auxargs; osf_auxargs->executable = osf_auxargs->exec_path; path_not_saved = copyinstr(imgp->fname, osf_auxargs->executable, @@ -226,8 +225,7 @@ raw_dend = (eap->data_start + eap->dsize); if (dend > raw_dend) { caddr_t zeros; - zeros = malloc(dend-raw_dend,M_TEMP,M_WAITOK); - bzero(zeros,dend-raw_dend); + zeros = malloc(dend-raw_dend,M_TEMP,M_WAITOK|M_ZERO); if ((error = copyout(zeros, (caddr_t)raw_dend, dend-raw_dend))) { uprintf("Can't zero start of bss, error %d\n",error); >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 Oct 21 7:40: 7 2000 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 EFC1637B4CF for ; Sat, 21 Oct 2000 07:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA52613; Sat, 21 Oct 2000 07:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.snickers.org (snickers.org [216.126.90.2]) by hub.freebsd.org (Postfix) with ESMTP id 92C1037B4CF; Sat, 21 Oct 2000 07:31:52 -0700 (PDT) Received: by mail.snickers.org (Postfix, from userid 1037) id D09C23D1D; Sat, 21 Oct 2000 10:31:51 -0400 (EDT) Message-Id: <20001021143151.D09C23D1D@mail.snickers.org> Date: Sat, 21 Oct 2000 10:31:51 -0400 (EDT) From: josh@zipperup.org Reply-To: josh@zipperup.org To: FreeBSD-gnats-submit@freebsd.org Cc: dwmalone@freebsd.org, marcel@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22189: Patch to sys/compat/linux to add M_ZERO to appropriate malloc calls Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22189 >Category: kern >Synopsis: Patch to sys/compat/linux to add M_ZERO to appropriate malloc calls >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 21 07:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Josh Tiefenbach >Release: FreeBSD 5.0-CURRENT i386 >Organization: Connective Software >Environment: -current circa 20 Oct 2000 >Description: Patch to convert malloc/bzero calls to malloc(..., M_ZERO) calls, as per phk's email to freebsd-current. Changes were made with the goal of keeping the semantics of the code the same in mind. If there was any doubt, then the change was not made. The patch compiles cleanly, and appears to have had no ill effects. >How-To-Repeat: N/A >Fix: Patch follows. ----- Index: linux/linux_mib.c =================================================================== RCS file: /usr/home/ncvs/src/sys/compat/linux/linux_mib.c,v retrieving revision 1.7 diff -u -r1.7 linux_mib.c --- linux/linux_mib.c 2000/08/25 07:31:13 1.7 +++ linux/linux_mib.c 2000/10/21 14:27:45 @@ -123,8 +123,7 @@ if (pr->pr_linux == NULL) { MALLOC(lpr, struct linux_prison *, sizeof *lpr, - M_PRISON, M_WAITOK); - bzero((caddr_t)lpr, sizeof *lpr); + M_PRISON, M_WAITOK | M_ZERO); pr->pr_linux = lpr; } >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 Oct 21 8:10:28 2000 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 C1DEE37B4C5; Sat, 21 Oct 2000 08:10:26 -0700 (PDT) Received: (from sanpei@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA64052; Sat, 21 Oct 2000 08:10:26 -0700 (PDT) (envelope-from sanpei@FreeBSD.org) Date: Sat, 21 Oct 2000 08:10:26 -0700 (PDT) From: Message-Id: <200010211510.IAA64052@freefall.freebsd.org> To: dot@dotat.at, sanpei@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/22184: addition for pccard.conf: TDK Grey Cell 2000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: addition for pccard.conf: TDK Grey Cell 2000 State-Changed-From-To: open->closed State-Changed-By: sanpei State-Changed-When: Sat Oct 21 08:09:22 PDT 2000 State-Changed-Why: Committed in rev 1.144 http://www.freebsd.org/cgi/query-pr.cgi?pr=22184 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 21 9:10:10 2000 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 51DFB37B4CF for ; Sat, 21 Oct 2000 09:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA82828; Sat, 21 Oct 2000 09:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 9375F37B4C5; Sat, 21 Oct 2000 09:09:56 -0700 (PDT) Message-Id: <20001021160956.9375F37B4C5@hub.freebsd.org> Date: Sat, 21 Oct 2000 09:09:56 -0700 (PDT) From: grubba@roxen.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/22190: A threaded read(2) from a socketpair(2) fd can sometimes fail with errno 19 (ENODEV) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22190 >Category: misc >Synopsis: A threaded read(2) from a socketpair(2) fd can sometimes fail with errno 19 (ENODEV) >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 Oct 21 09:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Henrik Grubbström >Release: 4.0-RELEASE #0 >Organization: Roxen Internet Software >Environment: FreeBSD snok.idonex.se 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Wed Mar 15 02:16:55 GMT 2000 jkh@monster.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: In the testsuite for a threaded application, a process spawning test that spawns 1000 /bin/cat /dev/null and waits for them sometimes fails because read(2) returns -1 with errno set to 19 (ENODEV). ENODEV is not a documented error code for read(2). Down-stripped code that triggs the bug: { pid_t pid=-2; int control_pipe[2]; /* Used for communication with the child. */ char buf[4]; if (socketpair(AF_UNIX, SOCK_STREAM, 0, control_pipe) < 0) { error("Failed to create child communication pipe.\n"); } { int loop_cnt = 0; sigset_t new_sig, old_sig; sigfillset(&new_sig); while(sigprocmask(SIG_BLOCK, &new_sig, &old_sig)) ; do { pid=fork(); if (pid == -1) { if (errno == EAGAIN) { /* Process table full or similar. * Try sleeping for a bit. */ if (loop_cnt++ < 60) { /* Don't sleep for too long... */ poll(NULL, 0, 100); /* Try again */ continue; } } else if (errno == EINTR) { /* Try again */ continue; } } break; } while(1); while(sigprocmask(SIG_SETMASK, &old_sig, 0)) ; } if(pid == -1) { int e = errno; /* * fork() failed */ while(close(control_pipe[0]) < 0 && errno==EINTR); while(close(control_pipe[1]) < 0 && errno==EINTR); error("Process.create_process(): fork() failed. errno:%d\n", e); } else if(pid) { int olderrno; /* * The parent process */ /* Close our child's end of the pipe. */ while(close(control_pipe[1]) < 0 && errno==EINTR); /* Wake up the child. */ buf[0] = 0; while (((e = write(control_pipe[0], buf, 1)) < 0) && (errno == EINTR)) ; if(e!=1) { /* Paranoia in case close() sets errno. */ olderrno = errno; while(close(control_pipe[0]) < 0 && errno==EINTR) ; error("Child process died prematurely. (e=%d errno=%d)\n", e, olderrno); } /* Wait for exec or error */ while (((e = read(control_pipe[0], buf, 3)) < 0) && (errno == EINTR)) ; /* Paranoia in case close() sets errno. */ olderrno = errno; while(close(control_pipe[0]) < 0 && errno==EINTR) ; if (!e) { /* OK! */ pop_n_elems(args); push_int(0); return; } else { /* Something went wrong. */ switch(buf[0]) { /* ... */ case 0: /* read() probably failed. */ default: /****************************************************************** * This point is reached with buf = {0, 4, 0}, e = -1, olderrno=19. *****************************************************************/ error("Process.create_process(): " "Child failed: %d, %d, %d, %d, %d!\n", buf[0], buf[1], buf[2], e, olderrno); break; } } }else{ /* * The child process */ /* Close our parent's end of the pipe. */ while(close(control_pipe[0]) < 0 && errno==EINTR); /* Ensure that the pipe will be closed when the child starts. */ if(set_close_on_exec(control_pipe[1], 1) < 0) PROCERROR(PROCE_CLOEXEC, 0); /* Wait for parent to get ready... */ while ((( e = read(control_pipe[1], buf, 1)) < 0) && (errno == EINTR)) ; /* ... */ execvp(argv[0], argv); PROCERROR(PROCE_EXEC, 0); exit(99); } } For the full source, please check src/signal_handler.c:f_create_process() in a Pike distribution. Testsuite report: testsuite: Test 9406 (shift 0) (CRNL) failed. 1: mixed a() { for(int x=0;x<10;x++) { for(int e=0;e<100;e++) if(Process.create_process(({"/bin/cat","/dev/null"}))->wait()) return e; __signal_watchdog(); } return -1;; } 2: mixed b() { return -1; } Error: Process.create_process(): Child failed: 0, 4, 0, -1, 19! __builtin.create_process: create(({"/bin/cat","/dev/null"})) __builtin: create_process() testsuite: Test 9406 (shift 0) (CRNL):1: a() /tmp/autobuild/pike7.1-20001021082826.tar/bin/test_pike.pike:572: main(3,({"/tmp/autobuild/pike7.1-20001021082826.tar/bin/test_pike.pike","modules/CommonLog/module_testsuite","modules/Gdbm/module_testsuite","modules/Gettext/module_testsuite","modules/Gmp/module_testsuite",,,34})) >How-To-Repeat: Unfortunately, the problem is intermittent. It may be triggered by resource exhaustion. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 21 11: 0:13 2000 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 1C05D37B4CF for ; Sat, 21 Oct 2000 11:00:08 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA18311; Sat, 21 Oct 2000 11:00:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hyperhost.net (hyperhost.net [207.159.132.249]) by hub.freebsd.org (Postfix) with ESMTP id 7130837B4C5 for ; Sat, 21 Oct 2000 10:55:20 -0700 (PDT) Received: from foobar.foobar.eyep.net (p5.a8.du.radix.net [207.192.132.133]) by hyperhost.net (8.9.3/8.9.3) with ESMTP id NAA19372 for ; Sat, 21 Oct 2000 13:55:18 -0400 (EDT) Received: by foobar.foobar.eyep.net (Postfix, from userid 1000) id 9DACE137F75; Sat, 21 Oct 2000 13:54:45 -0400 (EDT) Message-Id: <20001021175445.9DACE137F75@foobar.foobar.eyep.net> Date: Sat, 21 Oct 2000 13:54:45 -0400 (EDT) From: patseal@hyperhost.net Reply-To: patseal@hyperhost.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/22191: query-pr-summary.cgi bug Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22191 >Category: misc >Synopsis: query-pr-summary.cgi bug >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 21 11:00:07 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Patrick Seal >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: I was searching for all the PR that I've submitted here: http://www.FreeBSD.org/cgi/query-pr-summary.cgi?category=&severity=&priority=&class=&state=&sort=none&text=&responsible=&multitext=&originator=Patrick+Seal&closedtoo= notice the originator=Patrick+Seal A few of the links on the page that modify the query (like "Include closed reports too") will mess that part up: http://www.FreeBSD.org/cgi/query-pr-summary.cgi?&originator=Patrick Seal&sort=none&closedtoo=on originator=Patrick Seal Without the '+' everything past the space is ignored and all PR's submitted by Patricks are displayed (and since the closedtoo=on is past the space, only the open ones are displayed) I know this isn't serious, but It's a bug that could confuse some of the developers that use this interface (at least for a minute) so I marked this PR as serious. Was my judgement correct in assigning this priority? >How-To-Repeat: After a PR query, click on any of the links "Last-Modified", "Catergory", "Responsible Party", or "include closed reports too" using an originator with a space. >Fix: s/ /\+/g >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 Oct 21 12: 3: 1 2000 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 D8E0237B479; Sat, 21 Oct 2000 12:03:00 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA38708; Sat, 21 Oct 2000 12:03:00 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Date: Sat, 21 Oct 2000 12:03:00 -0700 (PDT) From: Message-Id: <200010211903.MAA38708@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, dwmalone@FreeBSD.org Subject: Re: kern/22186: Patch to sys/cam to add M_ZERO to appropriate malloc calls Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch to sys/cam to add M_ZERO to appropriate malloc calls Responsible-Changed-From-To: freebsd-bugs->dwmalone Responsible-Changed-By: dwmalone Responsible-Changed-When: Sat Oct 21 12:02:35 PDT 2000 Responsible-Changed-Why: I'm looking at these. http://www.freebsd.org/cgi/query-pr.cgi?pr=22186 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 21 12: 7:49 2000 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 3B1B337B479; Sat, 21 Oct 2000 12:07:48 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA41918; Sat, 21 Oct 2000 12:07:48 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Date: Sat, 21 Oct 2000 12:07:48 -0700 (PDT) From: Message-Id: <200010211907.MAA41918@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, dwmalone@FreeBSD.org Subject: Re: kern/22188: Patch to sys/alpha to add M_ZERO to appropriate malloc calls Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch to sys/alpha to add M_ZERO to appropriate malloc calls Responsible-Changed-From-To: freebsd-bugs->dwmalone Responsible-Changed-By: dwmalone Responsible-Changed-When: Sat Oct 21 12:03:30 PDT 2000 Responsible-Changed-Why: Josh - Can you check the parts of the system that Robert Drehmel has already produced patches for? I've merged all the patches I've recieved so far into one big patch at: http://www.maths.tcd.ie/~dwmalone/thirdtry I won't be able to apply all of this patch as some bits touch code from KAME or are shared by other BSDs. http://www.freebsd.org/cgi/query-pr.cgi?pr=22188 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 21 12: 9:22 2000 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 EDB0237B479; Sat, 21 Oct 2000 12:09:20 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA42524; Sat, 21 Oct 2000 12:09:20 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Date: Sat, 21 Oct 2000 12:09:20 -0700 (PDT) From: Message-Id: <200010211909.MAA42524@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, dwmalone@FreeBSD.org Subject: Re: kern/22189: Patch to sys/compat/linux to add M_ZERO to appropriate malloc calls Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch to sys/compat/linux to add M_ZERO to appropriate malloc calls Responsible-Changed-From-To: freebsd-bugs->dwmalone Responsible-Changed-By: dwmalone Responsible-Changed-When: Sat Oct 21 12:08:31 PDT 2000 Responsible-Changed-Why: I'm looking at these - patches to date at: http://www.maths.tcd.ie/~dwmalone/thirdtry http://www.freebsd.org/cgi/query-pr.cgi?pr=22189 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 21 13:32:59 2000 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 A9D6337B4C5; Sat, 21 Oct 2000 13:32:57 -0700 (PDT) Received: (from dcs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA70872; Sat, 21 Oct 2000 13:32:57 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Date: Sat, 21 Oct 2000 13:32:57 -0700 (PDT) From: Message-Id: <200010212032.NAA70872@freefall.freebsd.org> To: dcs@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/22196: if the first gethostbyname is for an ipv6 host it will fail Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: if the first gethostbyname is for an ipv6 host it will fail Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: dcs Responsible-Changed-When: Sat Oct 21 13:32:33 PDT 2000 Responsible-Changed-Why: Moved from pending. http://www.freebsd.org/cgi/query-pr.cgi?pr=22196 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 21 13:33:22 2000 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 287B037B4C5; Sat, 21 Oct 2000 13:33:21 -0700 (PDT) Received: (from dcs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA71047; Sat, 21 Oct 2000 13:33:21 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Date: Sat, 21 Oct 2000 13:33:21 -0700 (PDT) From: Message-Id: <200010212033.NAA71047@freefall.freebsd.org> To: dcs@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/22198: inet_ntop may set errno to ENOSPC and needs better docs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: inet_ntop may set errno to ENOSPC and needs better docs Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: dcs Responsible-Changed-When: Sat Oct 21 13:33:04 PDT 2000 Responsible-Changed-Why: Moved from pending. http://www.freebsd.org/cgi/query-pr.cgi?pr=22198 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 21 15:18:40 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from hotmail.com (oe31.law11.hotmail.com [64.4.16.88]) by hub.freebsd.org (Postfix) with ESMTP id 3821137B479; Sat, 21 Oct 2000 15:18:36 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 21 Oct 2000 15:18:36 -0700 X-Originating-IP: [130.240.193.170] From: "jerker pihl" To: , Subject: FreeBSD watchdog problem worsens... Date: Sun, 22 Oct 2000 00:22:36 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0023_01C03BBE.2E03CD40" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Message-ID: X-OriginalArrivalTime: 21 Oct 2000 22:18:36.0055 (UTC) FILETIME=[DAF92A70:01C03BAC] Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0023_01C03BBE.2E03CD40 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Umm.. I write this in hope that someone will take a note of a big = problem(NO this is not a bug report) namley that the current src tree = PCI dir has changed som much so the patch for the watchdog problem with = some network cards is not appliable any more. = http://www.mcs.net/~locke/vrfix/ Either I hope someone will release a new patch page or a more complete = network driver so the watchdog problem will end.(Have two different = network cards and I have the problem on both of them) Regards Jerker ------=_NextPart_000_0023_01C03BBE.2E03CD40 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Umm.. I write this in hope that someone = will take a=20 note of a big problem(NO this is not a bug report) namley that the = current=20 src tree PCI dir has changed som much so the patch for the watchdog = problem with=20 some network cards is not appliable any more. http://www.mcs.net/~locke/vrfix/
Either I hope = someone will=20 release a new patch page or a more complete network driver so the = watchdog=20 problem will end.(Have two different network cards and I have the = problem on=20 both of them)
Regards
Jerker
------=_NextPart_000_0023_01C03BBE.2E03CD40-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 21 21:50: 7 2000 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 402C237B4C5 for ; Sat, 21 Oct 2000 21:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA30367; Sat, 21 Oct 2000 21:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from vampire.gothic.net.au (vampire.gothic.net.au [202.182.72.18]) by hub.freebsd.org (Postfix) with ESMTP id E909737B4CF for ; Sat, 21 Oct 2000 21:41:12 -0700 (PDT) Received: (from sean@localhost) by vampire.gothic.net.au (8.11.1/8.11.1) id e9M4f4700675; Sun, 22 Oct 2000 15:41:04 +1100 (EST) (envelope-from sean) Message-Id: <200010220441.e9M4f4700675@vampire.gothic.net.au> Date: Sun, 22 Oct 2000 15:41:04 +1100 (EST) From: sean@gothic.net.au Reply-To: sean@gothic.net.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/22204: ATA time-outs when using Seagate STT/20000A TR-5 ATAPI tape Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22204 >Category: kern >Synopsis: ATA time-outs when using Seagate STT/20000A TR-5 ATAPI tape >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 Oct 21 21:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Sean Winn >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: atapci0: port 0xf000-0xf00f at device 7.1 on pci0 ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0xf000 ata0: mask=03 status0=50 status1=50 ata0: mask=03 status0=00 status1=10 ata0: devices = 0xc ata0: at 0x1f0 irq 14 on atapci0 ata0-master: piomode=3 dmamode=1 udmamode=-1 dmaflag=1 ata0-master: success setting PIO3 on generic chip acd0: CDROM drive at ata0 as master acd0: read 1376KB/s (1376KB/s), 128KB buffer, PIO3 acd0: Reads: CD-DA acd0: Audio: play, 256 volume levels acd0: Mechanism: ejectable tray acd0: Medium: CD-ROM unknown medium, unlocked ata0-slave: piomode=4 dmamode=-1 udmamode=-1 dmaflag=0 ata0-slave: success setting PIO4 on generic chip ast0: tape drive at ata0 as slave ast0: 1000KB/s, transfer limit 108 blks, 324KB buffer, PIO4 ast0: Unknown media (0xb7), reverse, qfa, ecc, 512b >Description: During backups or any extended write sequence to the drive, the following will be produced: ast0: WRITE command timeout - resetting ata0: resetting devices .. ata0: mask=03 status0=00 status1=10 ata0-master: success setting PIO3 on generic chip ata0-slave: timeout waiting for command=ef s=11 e=60 ata0-slave: failed setting PIO4 on generic chip ata0-slave: using PIO mode set by BIOS done At which point dump will abort write an I/O error Small backups work successfully; the drive probably recalibrates during a long dump, which makes for an extra long write cycle. Similarly, doing a mt retension will produce ast0: TEST_UNIT_READY command timeout - resetting ata0: resetting devices .. ata0: mask=03 status0=00 status1=10 ata0-master: success setting PIO3 on generic chip ata0-slave: timeout waiting for command=ef s=11 e=60 ata0-slave: failed setting PIO4 on generic chip ata0-slave: using PIO mode set by BIOS done And return to the prompt with 'Input/output error' Tape drive and tape successfully pass a 8000M read/write test using the Seagate Diagnostics Utility 2.1 under DOS This is not specific to the ATA controller (an Aladdin chipset produces the same results). >How-To-Repeat: Try a backup using that model tape drive. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message