From owner-freebsd-bugs@FreeBSD.ORG Sun Jul 27 00:50:21 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22C7737B401 for ; Sun, 27 Jul 2003 00:50:21 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1384C43F93 for ; Sun, 27 Jul 2003 00:50:20 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6R7oJUp061495 for ; Sun, 27 Jul 2003 00:50:19 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6R7oJ7e061494; Sun, 27 Jul 2003 00:50:19 -0700 (PDT) Resent-Date: Sun, 27 Jul 2003 00:50:19 -0700 (PDT) Resent-Message-Id: <200307270750.h6R7oJ7e061494@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Morozovsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6C6037B401 for ; Sun, 27 Jul 2003 00:45:26 -0700 (PDT) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id D89F643FAF for ; Sun, 27 Jul 2003 00:45:25 -0700 (PDT) (envelope-from marck@woozle.rinet.ru) Received: from woozle.rinet.ru (localhost [127.0.0.1]) by woozle.rinet.ru (8.12.9/8.12.9) with ESMTP id h6R7jO4C092708 for ; Sun, 27 Jul 2003 11:45:24 +0400 (MSD) (envelope-from marck@woozle.rinet.ru) Received: (from marck@localhost) by woozle.rinet.ru (8.12.9/8.12.9/Submit) id h6R7jNKF092707; Sun, 27 Jul 2003 11:45:23 +0400 (MSD) Message-Id: <200307270745.h6R7jNKF092707@woozle.rinet.ru> Date: Sun, 27 Jul 2003 11:45:23 +0400 (MSD) From: Dmitry Morozovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/54897: [PATCH] -y flag for mount_mfs X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dmitry Morozovsky List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2003 07:50:21 -0000 >Number: 54897 >Category: bin >Synopsis: [PATCH] -y flag for mount_mfs >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 Jul 27 00:50:19 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Dmitry Morozovsky >Release: FreeBSD 4-STABLE i386 >Organization: Cronyx Plus LLC (RiNet ISP) >Environment: System: FreeBSD 4-STABLE >Description: mount_mfs makes file system root inode world writable and sticky, which is great for temporary file places; however, there are number of occasions where this behaviour better be avoided, and mounting leads to race. Workararounds like mount_mfs ... /mnt chmod 755 /mnt rm -rf /mnt do not seem elegant to me. On the other hand, changing default directory mode violates POLA. Hence, the following patch, which adds -y option to mount_mfs. This behaviour is not applicable to -current, as mdconfig does not make fs root-dir 1777 >How-To-Repeat: mount_mfs -s 65536 swap /mnt ls -ld /mnt >Fix: Index: sbin/newfs/mkfs.c =================================================================== RCS file: /home/ncvs/src/sbin/newfs/mkfs.c,v retrieving revision 1.29.2.6 diff -u -r1.29.2.6 mkfs.c --- sbin/newfs/mkfs.c 21 Sep 2001 19:15:21 -0000 1.29.2.6 +++ sbin/newfs/mkfs.c 27 Jul 2003 07:33:00 -0000 @@ -96,6 +96,7 @@ extern int Nflag; /* run mkfs without writing file system */ extern int Oflag; /* format as an 4.3BSD file system */ extern int Uflag; /* enable soft updates for file system */ +extern int yflag; /* do not make root inode with mode 1777 */ extern int fssize; /* file system size */ extern int ntracks; /* # tracks/cylinder */ extern int nsectors; /* # sectors/track */ @@ -1008,7 +1009,7 @@ /* * create the root directory */ - if (mfs) + if (mfs && !yflag) node.di_mode = IFDIR | 01777; else node.di_mode = IFDIR | UMASK; Index: sbin/newfs/newfs.8 =================================================================== RCS file: /home/ncvs/src/sbin/newfs/newfs.8,v retrieving revision 1.26.2.15 diff -u -r1.26.2.15 newfs.8 --- sbin/newfs/newfs.8 13 May 2003 12:16:08 -0000 1.26.2.15 +++ sbin/newfs/newfs.8 27 Jul 2003 07:33:00 -0000 @@ -82,6 +82,7 @@ .Op Fl o Ar options .Op Fl s Ar size .Op Fl v +.Op Fl y .Ar special node .Sh DESCRIPTION .Nm Newfs @@ -333,9 +334,11 @@ .Nm command, except for the .Fl o -option. +and +.Fl y +options. .Pp -That option is as follows: +That options are as follows: .Bl -tag -width indent .It Fl o Options are specified with a @@ -344,6 +347,13 @@ See the .Xr mount 8 man page for possible options and their meanings. +.It Fl y +By default, +.Nm mount_mfs +command makes file system with world writable sticky (mode 1777) +root directory which is useful for temporary file systems. +.Fl y +option disables this behaviour. .El .Sh EXAMPLES .Dl newfs /dev/ad3s1a Index: sbin/newfs/newfs.c =================================================================== RCS file: /home/ncvs/src/sbin/newfs/newfs.c,v retrieving revision 1.30.2.9 diff -u -r1.30.2.9 newfs.c --- sbin/newfs/newfs.c 13 May 2003 12:03:55 -0000 1.30.2.9 +++ sbin/newfs/newfs.c 27 Jul 2003 07:33:00 -0000 @@ -171,6 +171,7 @@ int Nflag; /* run without writing file system */ int Oflag; /* format as an 4.3BSD file system */ int Uflag; /* enable soft updates for file system */ +int yflag; /* do not make root inode with mode 1777 */ int fssize; /* file system size */ int ntracks = NTRACKS; /* # tracks/cylinder */ int nsectors = NSECTORS; /* # sectors/track */ @@ -249,7 +250,7 @@ } opstring = mfs ? - "NF:T:Ua:b:c:d:e:f:g:h:i:m:o:s:v" : + "NF:T:Ua:b:c:d:e:f:g:h:i:m:o:s:vy" : "NOS:T:Ua:b:c:d:e:f:g:h:i:k:l:m:n:o:p:r:s:t:u:vx:"; while ((ch = getopt(argc, argv, opstring)) != -1) switch (ch) { @@ -375,6 +376,9 @@ fatal("%s: bad spare sectors per cylinder", optarg); break; + case 'y': + yflag = 1; + break; case '?': default: usage(); @@ -785,5 +789,7 @@ fprintf(stderr, "\t-v do not attempt to determine partition name from device name\n"); fprintf(stderr, "\t-x spare sectors per cylinder\n"); + if (mfs) + fprintf(stderr, "\t-y make normal (non-writable) root dir\n"); exit(1); } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jul 27 03:30:23 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83DEA37B401 for ; Sun, 27 Jul 2003 03:30:23 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 817C643FBD for ; Sun, 27 Jul 2003 03:30:22 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6RAUMUp078338 for ; Sun, 27 Jul 2003 03:30:22 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6RAUM0h078337; Sun, 27 Jul 2003 03:30:22 -0700 (PDT) Resent-Date: Sun, 27 Jul 2003 03:30:22 -0700 (PDT) Resent-Message-Id: <200307271030.h6RAUM0h078337@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Bruce M Simpson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E0F337B401 for ; Sun, 27 Jul 2003 03:26:47 -0700 (PDT) Received: from bigboy.spc.org (bigboy.spc.org [195.206.69.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id D515743F3F for ; Sun, 27 Jul 2003 03:26:46 -0700 (PDT) (envelope-from bms@spc.org) Received: from saboteur.dek.spc.org (unknown [81.3.72.68]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by bigboy.spc.org (Postfix) with ESMTP id 18337316A for ; Sun, 27 Jul 2003 11:27:24 +0100 (BST) Received: by saboteur.dek.spc.org (Postfix, from userid 1001) id CF67EE8; Sun, 27 Jul 2003 11:26:39 +0100 (BST) Message-Id: <20030727102639.CF67EE8@saboteur.dek.spc.org> Date: Sun, 27 Jul 2003 11:26:39 +0100 (BST) From: Bruce M Simpson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: conf/54910: [PATCH] Add rc.conf option to disable virecover X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Bruce M Simpson List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2003 10:30:23 -0000 >Number: 54910 >Category: conf >Synopsis: [PATCH] Add rc.conf option to disable virecover >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jul 27 03:30:21 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Bruce M Simpson >Release: FreeBSD 5.1-RELEASE i386 >Organization: >Environment: System: FreeBSD saboteur.dek.spc.org 5.1-RELEASE FreeBSD 5.1-RELEASE #3: Mon Jun 23 06:55:01 BST 2003 root@saboteur.dek.spc.org:/usr/src/sys/i386/compile/SABOTEUR i386 >Description: Certain MTA configurations mean that the notifications from virecover keep bouncing; so here's a patch to allow administrators to turn them off. >How-To-Repeat: >Fix: --- x1 begins here --- --- virecover.orig Sun Jul 27 11:19:54 2003 +++ virecover Sun Jul 27 11:24:08 2003 @@ -14,6 +14,7 @@ . /etc/rc.subr name="virecover" +rcvar="virecover_enable" stop_cmd=":" case ${OSTYPE} in --- x1 ends here --- --- x2 begins here --- --- rc.conf.orig Sun Jul 27 11:20:19 2003 +++ rc.conf Sun Jul 27 11:21:20 2003 @@ -429,6 +429,7 @@ jail_set_hostname_allow="YES" # Allow root user in a jail to change its hostname jail_socket_unixiproute_only="YES" # Route only TCP/IP within a jail jail_sysvipc_allow="NO" # Allow SystemV IPC use from within a jail +virecover_enable="YES" # Perform housekeeping for the vi(1) editor ############################################################## ### Define source_rc_confs, the mechanism used by /etc/rc.* ## --- x2 ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jul 27 03:56:42 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 980E837B401; Sun, 27 Jul 2003 03:56:42 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FCA543F85; Sun, 27 Jul 2003 03:56:42 -0700 (PDT) (envelope-from tjr@FreeBSD.org) Received: from freefall.freebsd.org (tjr@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6RAugUp080460; Sun, 27 Jul 2003 03:56:42 -0700 (PDT) (envelope-from tjr@freefall.freebsd.org) Received: (from tjr@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6RAufLP080455; Sun, 27 Jul 2003 03:56:41 -0700 (PDT) Date: Sun, 27 Jul 2003 03:56:41 -0700 (PDT) From: "Tim J. Robbins" Message-Id: <200307271056.h6RAufLP080455@freefall.freebsd.org> To: ler@lerctr.org, ler@lerctr.org, tjr@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/54661: Update last(1) to allow -n # in addition to -# for number of records X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2003 10:56:43 -0000 Synopsis: Update last(1) to allow -n # in addition to -# for number of records State-Changed-From-To: open->closed State-Changed-By: tjr State-Changed-When: Sun Jul 27 03:54:39 PDT 2003 State-Changed-Why: I've added the -n option. Thanks for the suggestion. http://www.freebsd.org/cgi/query-pr.cgi?pr=54661 From owner-freebsd-bugs@FreeBSD.ORG Sun Jul 27 09:23:09 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 779CF37B401; Sun, 27 Jul 2003 09:23:09 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D39943F3F; Sun, 27 Jul 2003 09:23:09 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: from freefall.freebsd.org (ume@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6RGN8Up057081; Sun, 27 Jul 2003 09:23:08 -0700 (PDT) (envelope-from ume@freefall.freebsd.org) Received: (from ume@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6RGN8Pu057077; Sun, 27 Jul 2003 09:23:08 -0700 (PDT) Date: Sun, 27 Jul 2003 09:23:08 -0700 (PDT) From: Hajimu UMEMOTO Message-Id: <200307271623.h6RGN8Pu057077@freefall.freebsd.org> To: jinmei@shuttle.wide.toshiba.co.jp, ume@FreeBSD.org, freebsd-bugs@FreeBSD.org, ume@FreeBSD.org Subject: Re: kern/54874: ip6fw does not handle ESP correctly X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2003 16:23:09 -0000 Synopsis: ip6fw does not handle ESP correctly State-Changed-From-To: open->analyzed State-Changed-By: ume State-Changed-When: Sun Jul 27 09:21:44 PDT 2003 State-Changed-Why: Because I committed it. Responsible-Changed-From-To: freebsd-bugs->ume Responsible-Changed-By: ume Responsible-Changed-When: Sun Jul 27 09:21:44 PDT 2003 Responsible-Changed-Why: Thanks! I've just committed it into 5-CURRENT. I'll do MFC after 1 week. http://www.freebsd.org/cgi/query-pr.cgi?pr=54874 From owner-freebsd-bugs@FreeBSD.ORG Sun Jul 27 13:12:58 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A865537B404; Sun, 27 Jul 2003 13:12:58 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F23EB43FD7; Sun, 27 Jul 2003 13:12:57 -0700 (PDT) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6RKCvUp081229; Sun, 27 Jul 2003 13:12:57 -0700 (PDT) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6RKCvHl081225; Sun, 27 Jul 2003 13:12:57 -0700 (PDT) Date: Sun, 27 Jul 2003 13:12:57 -0700 (PDT) From: Ceri Davies Message-Id: <200307272012.h6RKCvHl081225@freefall.freebsd.org> To: ceri@FreeBSD.org, freebsd-bugs@FreeBSD.org, alc@FreeBSD.org Subject: Re: kern/54890: [PATCH] don't hold Giant when calling kmem_malloc X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2003 20:12:59 -0000 Synopsis: [PATCH] don't hold Giant when calling kmem_malloc Responsible-Changed-From-To: freebsd-bugs->alc Responsible-Changed-By: ceri Responsible-Changed-When: Sun Jul 27 13:12:32 PDT 2003 Responsible-Changed-Why: Alan has been working in this area, pass this PR over for his perusal. http://www.freebsd.org/cgi/query-pr.cgi?pr=54890 From owner-freebsd-bugs@FreeBSD.ORG Sun Jul 27 13:25:34 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9DA137B401; Sun, 27 Jul 2003 13:25:34 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45ED343F75; Sun, 27 Jul 2003 13:25:34 -0700 (PDT) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6RKPYUp081996; Sun, 27 Jul 2003 13:25:34 -0700 (PDT) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6RKPYHg081992; Sun, 27 Jul 2003 13:25:34 -0700 (PDT) Date: Sun, 27 Jul 2003 13:25:34 -0700 (PDT) From: Ceri Davies Message-Id: <200307272025.h6RKPYHg081992@freefall.freebsd.org> To: ceri@FreeBSD.org, freebsd-bugs@FreeBSD.org, mtm@FreeBSD.org Subject: Re: conf/54910: [PATCH] Add rc.conf option to disable virecover X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2003 20:25:35 -0000 Synopsis: [PATCH] Add rc.conf option to disable virecover Responsible-Changed-From-To: freebsd-bugs->mtm Responsible-Changed-By: ceri Responsible-Changed-When: Sun Jul 27 13:25:13 PDT 2003 Responsible-Changed-Why: Passing to the most active committer in this area. http://www.freebsd.org/cgi/query-pr.cgi?pr=54910 From owner-freebsd-bugs@FreeBSD.ORG Sun Jul 27 13:50:17 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0902837B401 for ; Sun, 27 Jul 2003 13:50:17 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B973C43FA3 for ; Sun, 27 Jul 2003 13:50:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6RKoFUp084356 for ; Sun, 27 Jul 2003 13:50:15 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6RKoFqe084355; Sun, 27 Jul 2003 13:50:15 -0700 (PDT) Resent-Date: Sun, 27 Jul 2003 13:50:15 -0700 (PDT) Resent-Message-Id: <200307272050.h6RKoFqe084355@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Zahemszky Gábor Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86F5F37B401 for ; Sun, 27 Jul 2003 13:44:17 -0700 (PDT) Received: from digpala.axelero.hu (fe02.axelero.hu [195.228.240.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BCFC43F85 for ; Sun, 27 Jul 2003 13:44:15 -0700 (PDT) (envelope-from gabor@zahemszky.hu) Received: from localhost (localhost-02 [127.0.2.1]) by digpala.axelero.hu (8.12.9/8.12.9) with SMTP id h6RKiERL094612 for ; Sun, 27 Jul 2003 22:44:14 +0200 (CEST) Received: from fe02.axelero.hu [127.0.2.1] via SMTP gateway by digpala [195.228.240.90]; id A0718EEF36F at Sun Jul 27 22:44:13 2003 Received: from Picasso.Zahemszky.HU (125.38-182-adsl-pool.axelero.hu [81.182.38.125]) by fe02.axelero.hu (8.12.9/8.12.9) with ESMTP id h6RKiDa1094586 for ; Sun, 27 Jul 2003 22:44:13 +0200 (CEST) Received: from Picasso.Zahemszky.HU (localhost.Zahemszky.HU [127.0.0.1]) by Picasso.Zahemszky.HU (8.12.9/8.12.9) with ESMTP id h6RKiGVo000460 for ; Sun, 27 Jul 2003 22:44:16 +0200 (CEST) (envelope-from zgabor@Picasso.Zahemszky.HU) Received: (from zgabor@localhost) by Picasso.Zahemszky.HU (8.12.9/8.12.9/Submit) id h6RKiF1K000459; Sun, 27 Jul 2003 22:44:15 +0200 (CEST) Message-Id: <200307272044.h6RKiF1K000459@Picasso.Zahemszky.HU> Date: Sun, 27 Jul 2003 22:44:15 +0200 (CEST) From: Zahemszky Gábor To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/54959: tr utility has a bug in ISO8859-2 locale X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Zahemszky Gábor List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2003 20:50:17 -0000 >Number: 54959 >Category: bin >Synopsis: tr utility has a bug in ISO8859-2 locale >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jul 27 13:50:15 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Zahemszky Gábor >Release: FreeBSD 4.8-STABLE i386 >Organization: >Environment: System: FreeBSD Picasso.Zahemszky.HU 4.8-STABLE FreeBSD 4.8-STABLE #1: Tue Jul 22 09:58:37 CEST 2003 root@Picasso.Zahemszky.HU:/usr/obj/usr/src/sys/PICASSO i386 >Description: In Hungary, we use the hu_HU.ISO8859-2 locale. The iso-8859-2 codepage has correct upper-lower conversion tables (eg. in vi, the ~ operator works well, with correct LANG variable), but tr has a bug: it uses something, but not the correct iso-8859-2 conversion table when converting from upper to lower or vice versa. >How-To-Repeat: # use correct fonts, kbdtables and LANG, eg: $ kbdcontrol -l hu.iso2.102keys $ vidcontrol -f iso02-8x16 $ export LANG=hu_HU.ISO8859-2 $ echo áéíóöõúüû | hd 00000000 e1 e9 ed f3 f6 f5 fa fc fb 0a |áéíóöõúüû.| 0000000a $ echo áéíóöõúüû | tr '[:lower:]' '[:upper:]' | hd ### INCORRECT!!! 00000000 c2 ca ce d4 d8 d6 db dd dc 0a |ÂÊÎÔØÖÛÝÜ.| 0000000a $ echo ÁÉÍÓÖÕÚÜÛ | hd ### correct 00000000 c1 c9 cd d3 d6 d5 da dc db 0a |ÁÉÍÓÖÕÚÜÛ.| 0000000a >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Jul 27 14:50:12 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A216037B401 for ; Sun, 27 Jul 2003 14:50:12 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 483FB43FB1 for ; Sun, 27 Jul 2003 14:50:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6RLoCUp090458 for ; Sun, 27 Jul 2003 14:50:12 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6RLoCqf090457; Sun, 27 Jul 2003 14:50:12 -0700 (PDT) Date: Sun, 27 Jul 2003 14:50:12 -0700 (PDT) Message-Id: <200307272150.h6RLoCqf090457@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Dan Dexter Subject: Re: i386/10229: system time goes slow X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dan Dexter List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2003 21:50:13 -0000 The following reply was made to PR i386/10229; it has been noted by GNATS. From: Dan Dexter To: "'freebsd-gnats-submit@FreeBSD.org'" Cc: Subject: Re: i386/10229: system time goes slow Date: Sun, 27 Jul 2003 17:42:34 -0400 Confirmed problem exists again as of version 4.8. I could not find information at what release it appeared again, or what was done the last time to fix it (other than installing a P90). This causes many issues, including slow package installs and various firewall and logging issues. # uname -a FreeBSD dex.dexters.org 4.8-RELEASE FreeBSD 4.8-RELEASE #0: Sat Jul 19 01:24:14 EDT 2003 root@dex.dexters.org:/usr/src/sys/compile/DEX i386 # dmesg | head Copyright (c) 1992-2003 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.8-RELEASE #0: Sat Jul 19 01:24:14 EDT 2003 root@dex.dexters.org:/usr/src/sys/compile/DEX Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 99654982 Hz CPU: AMD K5 model 0 (99.65-MHz 586-class CPU) Origin = "AuthenticAMD" Id = 0x501 Stepping = 1 Features=0x3bf From owner-freebsd-bugs@FreeBSD.ORG Sun Jul 27 23:10:18 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CE2637B401 for ; Sun, 27 Jul 2003 23:10:18 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B08C43FB1 for ; Sun, 27 Jul 2003 23:10:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6S6AHUp060348 for ; Sun, 27 Jul 2003 23:10:17 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6S6AHb2060347; Sun, 27 Jul 2003 23:10:17 -0700 (PDT) Resent-Date: Sun, 27 Jul 2003 23:10:17 -0700 (PDT) Resent-Message-Id: <200307280610.h6S6AHb2060347@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, pscott@the-frontier.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 363B637B401 for ; Sun, 27 Jul 2003 23:03:56 -0700 (PDT) Received: from the-frontier.org (ns1.the-frontier.org [216.86.199.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EB4F43F3F for ; Sun, 27 Jul 2003 23:03:55 -0700 (PDT) (envelope-from pscott@the-frontier.org) Received: (from root@localhost) by the-frontier.org (8.9.3/8.9.3) id XAA90625; Sun, 27 Jul 2003 23:03:54 -0700 (PDT) (envelope-from pscott) Message-Id: <200307280603.XAA90625@the-frontier.org> Date: Sun, 27 Jul 2003 23:03:54 -0700 (PDT) From: pscott@the-frontier.org To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.2 Subject: misc/54967: Spelling error in /usr/share/games/fortune/startrek data base. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: pscott@the-frontier.org List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 06:10:18 -0000 >Number: 54967 >Category: misc >Synopsis: Spelling error in /usr/share/games/fortune/startrek data base. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jul 27 23:10:16 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Paul A. Scott >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: N/A >Description: Grammatical error in /usr/share/games/fortune/startrek data base: -... The prejudices people feel about each other disappear when then get +... The prejudices people feel about each other disappear when they get >How-To-Repeat: N/A >Fix: --- startrek.orig Fri Jul 28 06:05:34 2000 +++ startrek Sun Jul 27 22:53:45 2003 @@ -491,3 +491,3 @@ % -... The prejudices people feel about each other disappear when then get +... The prejudices people feel about each other disappear when they get to know each other. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 28 02:00:22 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5F7337B401 for ; Mon, 28 Jul 2003 02:00:22 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E08443FA3 for ; Mon, 28 Jul 2003 02:00:20 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6S90KUp090633 for ; Mon, 28 Jul 2003 02:00:20 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6S90KDZ090632; Mon, 28 Jul 2003 02:00:20 -0700 (PDT) Resent-Date: Mon, 28 Jul 2003 02:00:20 -0700 (PDT) Resent-Message-Id: <200307280900.h6S90KDZ090632@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kyunghwan Kim Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F06E537B401 for ; Mon, 28 Jul 2003 01:51:09 -0700 (PDT) Received: from atropos.snu.ac.kr (atropos.snu.ac.kr [147.46.106.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F07343F75 for ; Mon, 28 Jul 2003 01:51:09 -0700 (PDT) (envelope-from redjade@atropos.snu.ac.kr) Received: from atropos.snu.ac.kr (localhost [127.0.0.1]) by atropos.snu.ac.kr (8.12.9/8.12.9) with ESMTP id h6S8oY2q019527; Mon, 28 Jul 2003 17:50:35 +0900 (KST) Received: (from redjade@localhost) by atropos.snu.ac.kr (8.12.9/8.12.9/Submit) id h6S8oY7A019526; Mon, 28 Jul 2003 17:50:34 +0900 (KST) Message-Id: <20030728085033.GA19506@atropos.snu.ac.kr> Date: Mon, 28 Jul 2003 17:50:34 +0900 From: Kyunghwan Kim To: FreeBSD-gnats-submit@FreeBSD.org Subject: bin/54969: rcp '-r' option patch or MFC request X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Kyunghwan Kim List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 09:00:23 -0000 >Number: 54969 >Category: bin >Synopsis: rcp '-r' option patch or MFC request >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 Jul 28 02:00:20 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Kyunghwan Kim >Release: FreeBSD 4.8-STABLE i386 >Organization: >Environment: System: FreeBSD XXXX 4.8-STABLE FreeBSD 4.8-STABLE #0: Fri Jul 25 21:09:08 KST 2003 >Description: From revision 1.26.2.3, rcp don't work well with '-r' option. rcp.c revision 1.37 is not MFCed yet. >How-To-Repeat: Use rcp with '-r' option post FreeBSD 4.7 release. >Fix: patch against rcp.c revision 1.26.2.5 --- rcp.c.orig Sat Jul 26 01:53:33 2003 +++ rcp.c Sat Jul 26 01:59:34 2003 @@ -589,7 +589,7 @@ off_t i, j, size; int amt, count, exists, first, mask, mode, ofd, omode; int setimes, targisdir, wrerrno = 0; - char ch, *cp, *np, *targ, *why, *vect[1], buf[BUFSIZ]; + char ch, *cp, *np, *targ, *why, *vect[1], buf[BUFSIZ], path[PATH_MAX]; #define atime tv[0] #define mtime tv[1] @@ -686,21 +686,15 @@ if (*cp++ != ' ') SCREWUP("size not delimited"); if (targisdir) { - static char *namebuf = NULL; - static size_t cursize; - size_t need; - - need = strlen(targ) + strlen(cp) + 250; - if (need > cursize) { - if (namebuf != NULL) - free(namebuf); - if (!(namebuf = malloc(need))) - run_err("%s", strerror(errno)); - cursize = need; + if (strlen(targ) + (*targ ? 1 : 0) + strlen(cp) + >= sizeof(path)) { + run_err("%s%s%s: name too long", targ, + *targ ? "/" : "", cp); + exit(1); } - (void)snprintf(namebuf, need, "%s%s%s", targ, + (void)snprintf(path, sizeof(path), "%s%s%s", targ, *targ ? "/" : "", cp); - np = namebuf; + np = path; } else np = targ; exists = stat(np, &stb) == 0; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 28 02:30:17 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67FB737B401 for ; Mon, 28 Jul 2003 02:30:17 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B44743FAF for ; Mon, 28 Jul 2003 02:30:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6S9UGUp095660 for ; Mon, 28 Jul 2003 02:30:16 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6S9UGNw095659; Mon, 28 Jul 2003 02:30:16 -0700 (PDT) Resent-Date: Mon, 28 Jul 2003 02:30:16 -0700 (PDT) Resent-Message-Id: <200307280930.h6S9UGNw095659@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Slawek Zak Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1717437B401 for ; Mon, 28 Jul 2003 02:29:47 -0700 (PDT) Received: from ptcnat.era.pl (ptcnat.era.pl [213.158.197.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D0BB43FDD for ; Mon, 28 Jul 2003 02:29:46 -0700 (PDT) (envelope-from zaks@era.pl) Received: by localhost (Postfix, from userid 1001) id CC0311145C; Mon, 28 Jul 2003 11:29:43 +0200 (CEST) Message-Id: <20030728092943.CC0311145C@localhost> Date: Mon, 28 Jul 2003 11:29:43 +0200 (CEST) From: Slawek@era.pl, "Zak List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 09:30:17 -0000 >Number: 54971 >Category: conf >Synopsis: /etc/rc.d/mountcritermote requires ldconfig for non-ascii charset support in smbfs >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 Jul 28 02:30:15 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Slawek Zak >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: System: FreeBSD thirst.corponet.era.pl 5.1-CURRENT FreeBSD 5.1-CURRENT #33: Mon Jul 7 16:04:27 CEST 2003 root@thirst.corponet.era.pl:/usr/obj/usr/src/sys/THIRST i386 x86, libiconv-1.9.1_1 >Description: Using non-ascii characters in file names requires shared libiconv.so to be loaded by mount_smbfs, so ldconfig should be run before mountcritremote. >How-To-Repeat: Add charsets=iso8859-2:cp1250 to some mounted-at-boot share definition in /etc/nsmb.conf >Fix: ldconfig should be added to the prerequisites list /etc/rc.d/mountcritremote, like this: # REQUIRE: NETWORKING root mountcritlocal ldconfig >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 28 07:33:23 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C8A437B401 for ; Mon, 28 Jul 2003 07:33:23 -0700 (PDT) Received: from hotmail.com (law12-oe45.law12.hotmail.com [64.4.18.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF81143F75 for ; Mon, 28 Jul 2003 07:33:22 -0700 (PDT) (envelope-from company2210@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 28 Jul 2003 07:33:22 -0700 Received: from 81.17.78.42 by law12-oe45.law12.hotmail.com with DAV; Mon, 28 Jul 2003 14:33:22 +0000 X-Originating-IP: [81.17.78.42] X-Originating-Email: [company2210@hotmail.com] From: "Company 2210" To: Date: Mon, 28 Jul 2003 15:33:36 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2727.1300 Message-ID: X-OriginalArrivalTime: 28 Jul 2003 14:33:22.0536 (UTC) FILETIME=[326FAE80:01C35515] Subject: ARP Problem on VPN Gateway X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 14:33:23 -0000 Right, I don't know if this is the right place to post, so apologies in advance if I've got it wrong, but as I've received no response on other mailing lists, and by following a particuar set of actions causes the kernel to panic with a page fault, I presumed this might be the place: The Setup: (Both Gateways - ROUTER A & ROUTER B use FreeBSD 5.0) - The IKE Daemon is Racoon. IPSEC/IPSEC_ESP/IPSEC_DEBUG functionality is compiled into the kernel. Clients (12.20.78.0/25) <----->(eth0) ROUTER A (eth1)<=======> (eth1) ROUTER B (eth0) <----> (12.20.65.69) Upstream ISP & Internet Router A Configuration: eth0: 12.20.78.1 Subnet 255.255.255.128 eth1: 10.0.0.1 Subnet 255.255.255.0 Router B Configuration: eth0: 12.20.65.70 Subnet 255.255.255.252 eth1: 10.0.0.2 Subnet 255.255.255.0 The private IP's denote an IPSEC VPN connection (Wireless) between ROUTER A & B, all the client PC's are on public IP's. Now, the VPN works perfectly, encrypting the packets over the wireless link, however ROUTER A's eth0 interface does not appear in the arp -a lookup: ? (10.0.0.1) at 00:05:5d:a6:15:78 on eth1 permanent [ethernet] ? (10.0.0.2) at 00:c0:dd:ea:ac:5c on eth1 [ethernet] ? (12.20.78.0) at ff:ff:ff:ff:ff:ff on eth0 permanent [ethernet] ? (12.20.78.2) at 00:0c:cd:53:d9:f3 on eth0 [ethernet] ? (12.20.78.42) at 00:9a:17:90:d3:b4 on eth0 [ethernet] ? (12.20.78.52) at 00:2b:18:2e:22:21 on eth0 [ethernet] ? (12.20.78.127) at ff:ff:ff:ff:ff:ff on eth0 permanent [ethernet] If I try and force the entry, I receive the following error: routera# arp -s 12.20.78.1 00:0c:5d:e6:16:75 set: can only proxy for 12.20.78.1 The big problem this is causing is that clients cannot ping the gateway, and it responds to no requests (i.e I can't ssh into it), but it still forwards packets perfectly. Basically it's like 12.20.78.1 was invisible. The other strange thing is, that if I ssh into ROUTER B and ping 12.20.78.1 I receive replies: routerb# ping 12.20.78.1 PING 12.20.78.1 (12.20.78.1): 56 data bytes 64 bytes from 12.20.78.1: icmp_seq=0 ttl=64 time=3.577 ms 64 bytes from 12.20.78.1: icmp_seq=1 ttl=64 time=3.724 ms 64 bytes from 12.20.78.1: icmp_seq=2 ttl=64 time=3.817 ms ^C --- 12.20.78.1 ping statistics --- 3 packets transmitted, 3 packets received, 0% packet loss round-trip min/avg/max/stddev = 3.577/3.706/3.817/0.099 ms The output of ROUTER B's arp table is displayed below: ? (10.0.0.1) at 00:05:5d:a6:15:78 on eth1 [ethernet] ? (10.0.0.2) at 00:c0:dd:ea:ac:5c on eth1 permanent [ethernet] ? (12.20.65.69) at 00:d0:03:ba:bb:fc on eth0 [ethernet] The output from setkey -DP (For encrypting the packets across the 10.0.0.x link) on each router: ROUTER A: 0.0.0.0/0[any] 12.20.78.0/25[any] any in ipsec esp/tunnel/10.0.0.2-10.0.0.1/require spid=2 seq=1 pid=778 refcnt=1 12.20.78.0/25[any] 0.0.0.0/0[any] any out ipsec esp/tunnel/10.0.0.1-10.0.0.2/require spid=1 seq=0 pid=778 refcnt=1 ROUTER B: 12.20.78.0/25[any] 0.0.0.0/0[any] any in ipsec esp/tunnel/10.0.0.1-10.0.0.2/require spid=8 seq=1 pid=24377 refcnt=1 0.0.0.0/0[any] 12.20.78.0/25[any] any out ipsec esp/tunnel/10.0.0.2-10.0.0.1/require spid=7 seq=0 pid=24377 refcnt=1 Now, the next logical step was, in my mind, to reboot ROUTER A, comment out the ipsec.conf so no SPD policies are loaded, and force the arp entry before configuring the gif0 VPN tunnel. I took these steps (gif0 has only it's internal IP's configured - 10.0.0.1->10.0.0.2 - external IP's are not configured): Steps on ROUTER A: arp -S 12.20.78.1 00:05:5d:a6:15:78 pub permanent ifconfig gif0 12.20.78.1 12.20.65.70 netmask 255.255.255.252 Kernel Panic. Any ideas? Many Thanks Colin From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 28 08:10:20 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7435137B407 for ; Mon, 28 Jul 2003 08:10:20 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E777843FB1 for ; Mon, 28 Jul 2003 08:10:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6SFAIUp066509 for ; Mon, 28 Jul 2003 08:10:18 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6SFAI6P066508; Mon, 28 Jul 2003 08:10:18 -0700 (PDT) Resent-Date: Mon, 28 Jul 2003 08:10:18 -0700 (PDT) Resent-Message-Id: <200307281510.h6SFAI6P066508@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jan-Espen Pettersen Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B97FD37B401 for ; Mon, 28 Jul 2003 08:06:35 -0700 (PDT) Received: from endeavour.localnet.radiotube.org (tromso-dhcp-235-22.bluecom.no [62.101.235.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B45B43F93 for ; Mon, 28 Jul 2003 08:06:34 -0700 (PDT) (envelope-from sigsegv@endeavour.localnet.radiotube.org) Received: from endeavour.localnet.radiotube.org (localhost [127.0.0.1]) h6SF6WOS000921 for ; Mon, 28 Jul 2003 17:06:33 +0200 (CEST) (envelope-from sigsegv@endeavour.localnet.radiotube.org) Received: (from sigsegv@localhost)h6SF6WgG000920; Mon, 28 Jul 2003 17:06:32 +0200 (CEST) Message-Id: <200307281506.h6SF6WgG000920@endeavour.localnet.radiotube.org> Date: Mon, 28 Jul 2003 17:06:32 +0200 (CEST) From: Jan-Espen Pettersen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/54982: data corruption with usb umass da msdosfs digital camera 5.1-CURRENT X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jan-Espen Pettersen List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 15:10:20 -0000 >Number: 54982 >Category: kern >Synopsis: data corruption with usb umass da msdosfs digital camera 5.1-CURRENT >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jul 28 08:10:18 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Jan-Espen Pettersen >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: System: FreeBSD endeavour.localnet.radiotube.org 5.1-CURRENT FreeBSD 5.1-CURRENT #19: Thu Jul 24 18:04:14 CEST 2003 sigsegv@endeavour.sky.dom:/usr/obj/usr/src/FreeBSD-CURRENT/sys/ENDEAVOUR i386 nForce2 chipset, aBit NF7-M motherboard, no known hardware problems, no known memory problems. FSB, PCI, CPU, are overclocked, but seems to work without problems. No problem running 'make buildworld' >Description: The commits at 2003/07/15 15:42:37 PDT and 2003/07/15 16:12:54 PDT introduced a data corruption problem with the USB, umass, da system. I was able to retrieve valid jpeg images from the msdos filesystem on the device before the first of the two commits, without any problems. umass was unusable after the fisrt commit. After the second commit I was able to mount th efilesystem, but the files were corrupted. I ktraced 'cat < phto001.jpg' the image seemed to contain data which probably came from uninitialized memory (parts of the files were just zeros, and other parts were cvs output lines (I would guess it was previously free'ed data from cvs, ttyp?, etc)). Going back to sources just before the first commit did always fix the problem. The problem does exist on both usb0 and usb1 cvs-src mailinglist URLs: http://lists.freebsd.org/pipermail/cvs-src/2003-July/007150.html http://lists.freebsd.org/pipermail/cvs-src/2003-July/007153.html A workaround is to use sources older than 2003/07/15 15:42:37 PDT. ohci0: mem 0xef003000-0xef003fff irq 12 at device 2.0 on pci0 usb0: OHCI version 1.0, legacy support usb0: on ohci0 usb0: USB revision 1.0 uhub0: (0x10de) OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 3 ports with 3 removable, self powered ohci1: mem 0xef004000-0xef004fff irq 10 at device 2.1 on pci0 usb1: OHCI version 1.0, legacy support usb1: on ohci1 usb1: USB revision 1.0 uhub1: (0x10de) OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 3 ports with 3 removable, self powered umass0: DSC DIGITAL CAMERA USB, rev 1.00/1.00, addr 2 umass0: 8070i (ATAPI) over CBI; quirks = 0x0000 umass0:0:0:-1: Attached to scbus0 da0 at umass-sim0 bus 0 target 0 lun 0 da0: Removable Direct Access SCSI-0 device da0: 1.000MB/s transfers da0: 122MB (250880 512 byte sectors: 64H 32S/T 122C) >How-To-Repeat: Insert an usb digital camera, mount it, and try to read files from it. >Fix: I don't know yet. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 28 08:23:25 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCE3237B401; Mon, 28 Jul 2003 08:23:25 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57A7F43F85; Mon, 28 Jul 2003 08:23:25 -0700 (PDT) (envelope-from maxim@FreeBSD.org) Received: from freefall.freebsd.org (maxim@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6SFNPUp067544; Mon, 28 Jul 2003 08:23:25 -0700 (PDT) (envelope-from maxim@freefall.freebsd.org) Received: (from maxim@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6SFNPnp067540; Mon, 28 Jul 2003 08:23:25 -0700 (PDT) Date: Mon, 28 Jul 2003 08:23:25 -0700 (PDT) From: Maxim Konovalov Message-Id: <200307281523.h6SFNPnp067540@freefall.freebsd.org> To: maxim@FreeBSD.org, freebsd-bugs@FreeBSD.org, jmg@FreeBSD.org Subject: Re: kern/54982: data corruption with usb umass da msdosfs digital camera 5.1-CURRENT X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 15:23:26 -0000 Synopsis: data corruption with usb umass da msdosfs digital camera 5.1-CURRENT Responsible-Changed-From-To: freebsd-bugs->jmg Responsible-Changed-By: maxim Responsible-Changed-When: Mon Jul 28 08:21:58 PDT 2003 Responsible-Changed-Why: John, could you please take a look at this issue? The submitter mentions your commits. http://www.freebsd.org/cgi/query-pr.cgi?pr=54982 From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 28 08:30:16 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23DAC37B401 for ; Mon, 28 Jul 2003 08:30:16 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B23E643F3F for ; Mon, 28 Jul 2003 08:30:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6SFUFUp067688 for ; Mon, 28 Jul 2003 08:30:15 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6SFUFBL067687; Mon, 28 Jul 2003 08:30:15 -0700 (PDT) Date: Mon, 28 Jul 2003 08:30:15 -0700 (PDT) Message-Id: <200307281530.h6SFUFBL067687@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Jilles Tjoelker Subject: kern/51964 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jilles Tjoelker List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 15:30:16 -0000 The following reply was made to PR kern/51964; it has been noted by GNATS. From: Jilles Tjoelker To: freebsd-gnats-submit@freebsd.org Cc: unix@stack.nl Subject: kern/51964 Date: Mon, 28 Jul 2003 17:26:09 +0200 Some weeks ago, a different solution was committed (kern_exit.c rev 1.215 and others). This fixes the problem, please close this PR. Jilles From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 28 09:40:58 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3700137B401; Mon, 28 Jul 2003 09:40:58 -0700 (PDT) Received: from cs.columbia.edu (cs.columbia.edu [128.59.16.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49A3B43F75; Mon, 28 Jul 2003 09:40:57 -0700 (PDT) (envelope-from lennox@grandcentral.cs.columbia.edu) Received: from grandcentral.cs.columbia.edu (grandcentral.cs.columbia.edu [128.59.19.196]) by cs.columbia.edu (8.12.9/8.12.9) with ESMTP id h6SGesl8021729 verify=NOT); Mon, 28 Jul 2003 12:40:55 -0400 (EDT) Received: from grandcentral.cs.columbia.edu (localhost [127.0.0.1]) h6SGerQQ009574; Mon, 28 Jul 2003 12:40:53 -0400 (EDT) Received: (from lennox@localhost)h6SGequu009571; Mon, 28 Jul 2003 12:40:52 -0400 (EDT) From: Jonathan Lennox MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="p4dH/IeS7Q" Content-Transfer-Encoding: 7bit Message-ID: <16165.21011.781126.341394@grandcentral.cs.columbia.edu> Date: Mon, 28 Jul 2003 12:40:51 -0400 To: sub_0@netcabo.pt In-Reply-To: <1058576063.1430.20.camel@suzy.unbreakable.homeunix.org> References: <1058576063.1430.20.camel@suzy.unbreakable.homeunix.org> X-Mailer: VM 7.17 under Emacs 20.7.1 cc: freebsd-bugs@FreeBSD.org cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/54189: DNS resolver should resolve hostnames with underscores X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 16:40:58 -0000 --p4dH/IeS7Q Content-Type: text/plain; charset=iso-8859-1 Content-Description: message body text Content-Transfer-Encoding: quoted-printable On , July 19 2003, "M=E1rio Freitas" wrote to "freebsd-bugs@FreeBSD.org= , lennox@cs.columbia.edu" saying: > The problem you submitted is due to mozilla's gethostbyname() own(bad= ) > implementation. FreeBSD's resolver can deal with underscores in > hostnames without any problem at all. I think you should submit that > problem to mozilla's bug tracking system(yes I succeded resolving tha= t > hostname in FreeBSD 4.8 and 5.1). Not so, at least if you go through the gethostbyname() or getaddrinfo()= APIs. I've attached a small program that exercises both APIs, compiled= it on both FreeBSD 4.8-RELEASE and on Red Hat Linux 7.1, and executed b= oth on the same FreeBSD 4.8 machine (the Linux binary running under emulati= on): conrail $ ./gethostbyname dear=5Fraed.blogspot.com dear=5Fraed.blogspot.com: gethostbyname lookup failed: Unknown server e= rror (3) dear=5Fraed.blogspot.com: getaddrinfo lookup failed: Non-recoverable fa= ilure in name resolution (4) conrail $ ./gethostbyname-linux dear=5Fraed.blogspot.com dear=5Fraed.blogspot.com [ghbn]: 216.34.7.189=20 dear=5Fraed.blogspot.com [gai]: 216.34.7.189 216.34.7.189 216.34.7.189=20= The FreeBSD 'nslookup' and 'host' programs, which bypass these APIs and= do DNS queries directly, can indeed resolve the hostname: conrail $ nslookup dear=5Fraed.blogspot.com Server: sutton.cs.columbia.edu Address: 128.59.22.38 Non-authoritative answer: Name: dear=5Fraed.blogspot.com Address: 216.34.7.189 conrail $ host dear=5Fraed.blogspot.com dear=5Fraed.blogspot.com has address 216.34.7.189 --p4dH/IeS7Q Content-Type: text/plain Content-Disposition: inline; filename="gethostbyname.c" Content-Transfer-Encoding: 7bit #include #include #include #include #include #include #include #include int main(int argc, char *argv[]) { int i; struct addrinfo hints; if (argc < 2) { fprintf(stderr, "Usage: %s hostname [...]", argv[0]); exit(1); } memset(&hints, 0, sizeof(hints)); hints.ai_family = AF_INET; for (i = 1; i < argc; i++) { int ret; struct hostent *he; struct addrinfo *ai; he = gethostbyname(argv[i]); if (he == NULL) { printf("%s: gethostbyname lookup failed: %s (%d)\n", argv[i], hstrerror(h_errno), h_errno); } else { int j; printf("%s [ghbn]: ", argv[i]); for (j = 0; he->h_addr_list[j] != NULL; j++) { printf("%s ", inet_ntoa(*(struct in_addr*)(he->h_addr_list[j]))); } printf("\n"); } ret = getaddrinfo(argv[i], NULL, &hints, &ai); if (ret != 0) { printf("%s: getaddrinfo lookup failed: %s (%d)\n", argv[i], gai_strerror(ret), ret); } else { struct addrinfo* this_ai; printf("%s [gai]: ", argv[i]); for (this_ai = ai; this_ai != NULL; this_ai = this_ai->ai_next) { printf("%s ", inet_ntoa(((struct sockaddr_in*)(this_ai->ai_addr))->sin_addr)); } printf("\n"); freeaddrinfo(ai); } } return 0; } --p4dH/IeS7Q Content-Type: text/plain; charset=us-ascii Content-Description: .signature Content-Transfer-Encoding: 7bit -- Jonathan Lennox lennox@cs.columbia.edu --p4dH/IeS7Q-- From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 28 09:50:18 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCA0037B401 for ; Mon, 28 Jul 2003 09:50:18 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 642E743F93 for ; Mon, 28 Jul 2003 09:50:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6SGoHUp074073 for ; Mon, 28 Jul 2003 09:50:17 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6SGoHeb074072; Mon, 28 Jul 2003 09:50:17 -0700 (PDT) Date: Mon, 28 Jul 2003 09:50:17 -0700 (PDT) Message-Id: <200307281650.h6SGoHeb074072@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Jonathan Lennox Subject: Re: misc/54189: DNS resolver should resolve hostnames with underscores X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jonathan Lennox List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 16:50:19 -0000 The following reply was made to PR misc/54189; it has been noted by GNATS. From: Jonathan Lennox To: sub_0@netcabo.pt Cc: freebsd-bugs@FreeBSD.org, freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/54189: DNS resolver should resolve hostnames with underscores Date: Mon, 28 Jul 2003 12:40:51 -0400 --p4dH/IeS7Q Content-Type: text/plain; charset=iso-8859-1 Content-Description: message body text Content-Transfer-Encoding: quoted-printable On , July 19 2003, "M=E1rio Freitas" wrote to "freebsd-bugs@FreeBSD.org= , lennox@cs.columbia.edu" saying: > The problem you submitted is due to mozilla's gethostbyname() own(bad= ) > implementation. FreeBSD's resolver can deal with underscores in > hostnames without any problem at all. I think you should submit that > problem to mozilla's bug tracking system(yes I succeded resolving tha= t > hostname in FreeBSD 4.8 and 5.1). Not so, at least if you go through the gethostbyname() or getaddrinfo()= APIs. I've attached a small program that exercises both APIs, compiled= it on both FreeBSD 4.8-RELEASE and on Red Hat Linux 7.1, and executed b= oth on the same FreeBSD 4.8 machine (the Linux binary running under emulati= on): conrail $ ./gethostbyname dear=5Fraed.blogspot.com dear=5Fraed.blogspot.com: gethostbyname lookup failed: Unknown server e= rror (3) dear=5Fraed.blogspot.com: getaddrinfo lookup failed: Non-recoverable fa= ilure in name resolution (4) conrail $ ./gethostbyname-linux dear=5Fraed.blogspot.com dear=5Fraed.blogspot.com [ghbn]: 216.34.7.189=20 dear=5Fraed.blogspot.com [gai]: 216.34.7.189 216.34.7.189 216.34.7.189=20= The FreeBSD 'nslookup' and 'host' programs, which bypass these APIs and= do DNS queries directly, can indeed resolve the hostname: conrail $ nslookup dear=5Fraed.blogspot.com Server: sutton.cs.columbia.edu Address: 128.59.22.38 Non-authoritative answer: Name: dear=5Fraed.blogspot.com Address: 216.34.7.189 conrail $ host dear=5Fraed.blogspot.com dear=5Fraed.blogspot.com has address 216.34.7.189 --p4dH/IeS7Q Content-Type: text/plain Content-Disposition: inline; filename="gethostbyname.c" Content-Transfer-Encoding: 7bit #include #include #include #include #include #include #include #include int main(int argc, char *argv[]) { int i; struct addrinfo hints; if (argc < 2) { fprintf(stderr, "Usage: %s hostname [...]", argv[0]); exit(1); } memset(&hints, 0, sizeof(hints)); hints.ai_family = AF_INET; for (i = 1; i < argc; i++) { int ret; struct hostent *he; struct addrinfo *ai; he = gethostbyname(argv[i]); if (he == NULL) { printf("%s: gethostbyname lookup failed: %s (%d)\n", argv[i], hstrerror(h_errno), h_errno); } else { int j; printf("%s [ghbn]: ", argv[i]); for (j = 0; he->h_addr_list[j] != NULL; j++) { printf("%s ", inet_ntoa(*(struct in_addr*)(he->h_addr_list[j]))); } printf("\n"); } ret = getaddrinfo(argv[i], NULL, &hints, &ai); if (ret != 0) { printf("%s: getaddrinfo lookup failed: %s (%d)\n", argv[i], gai_strerror(ret), ret); } else { struct addrinfo* this_ai; printf("%s [gai]: ", argv[i]); for (this_ai = ai; this_ai != NULL; this_ai = this_ai->ai_next) { printf("%s ", inet_ntoa(((struct sockaddr_in*)(this_ai->ai_addr))->sin_addr)); } printf("\n"); freeaddrinfo(ai); } } return 0; } --p4dH/IeS7Q Content-Type: text/plain; charset=us-ascii Content-Description: .signature Content-Transfer-Encoding: 7bit -- Jonathan Lennox lennox@cs.columbia.edu --p4dH/IeS7Q-- From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 28 11:00:35 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02F6C37B401 for ; Mon, 28 Jul 2003 11:00:35 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B55243F3F for ; Mon, 28 Jul 2003 11:00:34 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6SI0YUp081007 for ; Mon, 28 Jul 2003 11:00:34 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6SI0XtM081001 for freebsd-bugs@freebsd.org; Mon, 28 Jul 2003 11:00:33 -0700 (PDT) Date: Mon, 28 Jul 2003 11:00:33 -0700 (PDT) Message-Id: <200307281800.h6SI0XtM081001@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: open PR's (mis)filed to gnats-admin and in limbo X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 18:00:35 -0000 Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/07/13] pending/54448gnats-admin Re: portupgrading to gnome2-2.2.2_1 fails o [2003/07/13] pending/54449gnats-admin Re: portupgrading to gnome2-2.2.2_1 fails o [2003/07/13] pending/54452gnats-admin Re: portupgrading to gnome2-2.2.2_1 fails o [2003/07/14] pending/54480gnats-admin Re: ipfm (/usr/ports/ipfm) destroys all a o [2003/07/14] pending/54484gnats-admin Re: ipfm (/usr/ports/ipfm) destroys all a o [2003/07/15] pending/54523gnats-admin Re: patch: net/wmwave: more portable data o [2003/07/14] pending/54489gnats-admin Re:%20kern/37056:%20usb%20mouse%20with%20 o [2003/07/19] pending/54630gnats-admin Re: [Update] games/freeciv: 1.13.0 -> 1.1 o [2003/07/22] pending/54750gnats-admin Re: Add support for Canon PowerShot A60 t o [2003/07/24] pending/54825gnats-admin Re: [PATCH] devel/buildtool: update to 0. o [2003/07/24] pending/54828gnats-admin Re: [PATCH] port net/psi unbreak o [2003/07/25] pending/54846gnats-admin Re: [PATCH] net/openldap* ports conflicts o [2003/07/25] pending/54849gnats-admin Re: [PATCH] net/openldap* ports conflicts o [2003/07/25] pending/54850gnats-admin Re: [PATCH] net/openldap* ports conflicts o [2003/07/25] pending/54851gnats-admin Re: [PATCH] net/openldap* ports conflicts o [2003/07/25] pending/54852gnats-admin Re: [PATCH] net/openldap* ports conflicts o [2003/07/26] pending/54891gnats-admin o [2003/07/27] pending/54911gnats-admin Re: [PATCH] net/openldap* ports conflicts o [2003/07/27] pending/54958gnats-admin Re: [PATCH] enable choose of ghostscript o [2003/07/27] pending/54960gnats-admin Re: [PATCH] enable choose of ghostscript o [2003/07/28] pending/54979gnats-admin Re: VESA crash/vidcontrol kern/52970 o [2003/07/28] pending/54981gnats-admin 22 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/07/26] pending/54894gnats-admin [Maintainer-Update] lang/gauche 0.7 -> 1 problem total. From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 28 11:00:55 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A48B237B408 for ; Mon, 28 Jul 2003 11:00:55 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89F5643F75 for ; Mon, 28 Jul 2003 11:00:40 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6SI0eUp081020 for ; Mon, 28 Jul 2003 11:00:40 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6SI0YDB081013 for freebsd-bugs@freebsd.org; Mon, 28 Jul 2003 11:00:34 -0700 (PDT) Date: Mon, 28 Jul 2003 11:00:34 -0700 (PDT) Message-Id: <200307281800.h6SI0YDB081013@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 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 18:00:56 -0000 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 problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. 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 -- or when fixing the problem is abandoned. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/05/05] alpha/51824 alpha Booting 5.0-RELEASE install cd with IDE H o [2002/01/18] bin/34028 brian userland ppp o [2002/08/13] bin/41647 ifconfig doesn't accept lladdr along with f [2000/11/03] bin/22595 brian telnetd tricked into using arbitrary peer o [2001/09/27] bin/30869 dump does not dump all files of a filesys o [2001/10/15] bin/31304 joe fix crunchgen to work with more contrib-k o [2001/11/16] bin/32040 brian 4.4-Release "set mtu" in ppp is broken wi o [2002/01/07] bin/33670 dwmalone default inetd install allows for unlimite o [2002/05/13] bin/38058 brian ppp alters IP header length field 40 -> 4 o [2002/05/28] bin/38676 change request for pw command o [2002/07/05] bin/40215 wpaul NIS host search not terminate o [2002/08/05] bin/41350 vnconfig: apparent off-by-one bug p [2002/09/14] bin/42772 usr.bin/make: patch to stop a fork bomb o [2002/09/14] bin/42789 cp -p may report wrong exit status o [2002/09/27] bin/43434 New option to 'dmesg' which allow to disp o [2002/11/01] bin/44808 opiepasswd makes bad seed for existing us o [2003/01/08] bin/46866 NIS-based getpwent() falsely returns NULL f [2003/01/14] bin/47044 gshapiro Sendmail "Can't assign requested addresse o [2003/01/22] bin/47384 qa sysinstall ignores intended destination d o [2003/01/27] bin/47538 tar buggy on memory disk partitions o [2003/02/16] bin/48341 qa Sysinstall deletes mbr although it should o [2003/04/30] bin/51628 ypmatch doesn't match keys in legacy NIS o [2001/10/17] conf/31327 Fixes and improvements for rc.diskless* s o [2002/05/24] conf/38518 combination of pr-27087 and pr-36911 (2) o [2000/07/12] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/11/20] gnu/22972 obrien Internal Compiler Error p [2001/12/27] gnu/33262 mp gdb does not handle pending signals corre a [2002/05/26] gnu/38594 kan Fortan program don't link post gcc-3.1 o [2000/07/30] i386/20308 yokota vidcontrol VESA_800x600 causes a kernel p f [2000/09/04] i386/21042 mdodd Keyboard driver problems with PS/2 Model f [2000/11/27] i386/23145 brian pppoe-test-program panics the server a [2001/09/24] i386/30802 gibbs repeat of i386/22760. Adaptec SCSI contro a [2001/10/31] i386/31671 doc 4.4 installer hangs at " Mounting root fr f [2001/12/14] i386/32830 FreeBSD 4.4 install fails on Thinkpad 750 a [2001/12/22] i386/33089 murray GENERIC bloat causes 'make world' to brea f [2002/02/18] i386/35096 Network card dies copying files > 200MB w o [2002/03/06] i386/35615 sound ES1978 Maestro 2E sound card locks up mac o [2002/03/09] i386/35726 Won't let me use ifconfig on the interfac o [2002/03/15] i386/35950 acpi-jp ACPI missing prevents install from floppi f [2002/03/26] i386/36342 rl/dc(smc) + ppppoe = major bug ! f [2002/04/07] i386/36850 joe Page Fault using ppp with USB Modem a [2002/05/23] i386/38459 mbr Intel SB82558B NIC won't initialize prope o [2002/05/23] i386/38484 probe freeze f [2002/05/29] i386/38698 Kernel panics when filesystem with snapsh o [2002/06/13] i386/39234 jhb SMP 4.6-RC freezes during boot (Fujitsu-S f [2002/08/08] i386/41437 qa sysinstall 4.6 RELEASE - hang o [2002/08/14] i386/41663 sos support of promise fasttrack 100 tx2 unde o [2002/08/16] i386/41723 Copying files to filesystem causes "integ f [2002/08/21] i386/41860 qa sysinstall rel. 4.5 and 4.6 hangs o [2002/08/26] i386/42046 System crashes with o [2002/08/29] i386/42173 sound Sony VAIO FXA 53 (or FXA 679 in Mexico) w o [2002/09/29] i386/43491 microuptime () went backwards o [2002/11/17] i386/45383 Failed installation FreeBSD 4.7-RELEASE a o [2002/12/08] i386/46113 busspace bug o [2002/12/21] i386/46455 sos trouble with VIA EPIA 5000 system- WRITE o [2002/12/23] i386/46506 joe Crash Before Initialization of Printer? o f [2003/01/21] i386/47295 kernel panic during FreeBSD 5.0 installat o [2003/01/24] i386/47428 Installing 4.7 on pst0 device fails f [2003/01/24] i386/47429 5.0-REL will not install on pst device f [2003/02/05] i386/47989 5.0-RELEASE install CD kernel panic o [2003/02/14] i386/48274 FreeBSD 4.7-RELEASE doesn't work on Toshi o [2003/03/13] i386/49978 installation problem on Acer Altos G300 o [2003/04/18] i386/51129 acpi-jp ACPI problem, booting from install cd fai o [2003/04/24] i386/51338 sound random system hangs; system hangs because f [2003/05/22] i386/52593 mdodd Kernel panic when starting apm o [2003/05/25] i386/52668 i386 AIC7902 problem when large data transferr o [2003/06/01] i386/52835 pdeuskar em driver does not work with mobile-chips o [2003/06/11] i386/53203 i386 "BTX halted" when attempting install of 5 o [2003/06/22] i386/53620 i386 Kernel panics / reboots during install of o [2002/08/22] java/41913 java JniHandler and ChannelUn Errors o [2003/07/13] java/54463 glewis Apparent bug in jdk13 o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 s [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch f [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy f [2000/05/29] kern/18874 peter 32bit NFS servers export wrong negative v o [2000/06/13] kern/19247 threads uthread_sigaction.c does not do anything f [2000/07/31] kern/20310 groudier Symbios 53c875j drivers don't work o [2000/08/05] kern/20429 yokota setting flags 0x1 in atkbd0 locks keyboar o [2000/08/28] kern/20895 groudier sym driver doesn't work for SYM53C895A o [2000/09/12] kern/21220 msmith mlx0: I/O error - attempt to write beyond o [2000/09/14] kern/21272 wpaul USB interrupts seem to be turned off f [2000/11/01] kern/22494 silby Fatal trap 12: page fault while in kernel a [2000/12/14] kern/23547 msmith only one logical device on Mylex AcceleRA s [2001/01/30] kern/24740 cy filesystem corruption CFP1080 CAM SCSI ca o [2001/03/09] kern/25632 n_hibma USB modem (umodem) may destroy the cfreel o [2001/03/20] kern/25950 obrien Bad drives on asr look zero-length and pa o [2001/03/24] kern/26048 obrien 4.3-RC: SMP and asr driver don't work to o [2001/04/13] kern/26549 IPsec policies for more than one pair of f [2001/04/25] kern/26840 process doing mmap() over nfs hangs in vm f [2001/05/03] kern/27059 groudier (symbios) SCSI subsystem hangs under heav a [2001/05/10] kern/27250 bp unionfs filesystem panics in large number f [2001/05/11] kern/27275 kernel bug ? f [2001/06/27] kern/28465 Enabling softupdates on a clean but activ f [2001/06/27] kern/28466 When soft updates is enabled, cpl is not o [2001/07/14] kern/28966 pirzyk math libraries in linux emulation do not o [2001/08/18] kern/29844 standards [PATCH] setpgrp does not behave as manual o [2001/08/18] kern/29847 n_hibma USB usbd_probe_and_attach() is broken and f [2001/09/29] kern/30921 ACER mechanic ps/2 keyboard don´t work an o [2001/10/04] kern/31042 murray Device name conflict f [2001/11/02] kern/31710 silby kernel reboots; looks like an unintended o [2001/12/11] kern/32713 joe usb mouse detaches from hub and doesnt re f [2001/12/14] kern/32831 sos HP Colorado IDE tape drive get wedged eas o [2002/01/16] kern/33951 threads pthread_cancel is ignored o [2002/01/19] kern/34067 n_hibma Reproducable crash on usb ugen o [2002/01/19] kern/34071 pcn-driver is sort-of-broken in 4.5RC2 (a o [2002/01/30] kern/34470 bde Modem gets sio1 interrupt-level buffer o f [2002/02/26] kern/35354 4.4/4.5 FreeBSD causes hard lock after 20 o [2002/03/01] kern/35466 imp xe driver can not read CIS tuples f [2002/03/19] kern/36095 cd9660_vfsops.c: cd9660_vget_internal() k o [2002/03/29] kern/36504 crash/panic vm_object_allocate under file o [2002/03/30] kern/36549 sym driver fails on Tekram DC-390U in 486 f [2002/04/12] kern/37015 joe Kernel panic in tty_subr.c while using pp f [2002/04/14] kern/37056 joe usb mouse with bios legacy support on han o [2002/04/14] kern/37064 imp System hangs when removing wire of NIC D- f [2002/04/19] kern/37257 SMP 4.5 freezes o [2002/05/14] kern/38070 4.6-PRERELEASE panics on resume on Fujits f [2002/06/03] kern/38848 joe kernel panic when removing memory stick f o [2002/06/03] kern/38872 nfs code ignores possibility of MGET(M_WA o [2002/06/08] kern/39043 Corrupted files on a FAT32 partition o [2002/06/19] kern/39524 smbfs with nge NIC causes kernel panic o [2002/06/29] kern/40003 Panic on boot w/4.6 and 4.6-stable from 6 o [2002/08/07] kern/41402 kernal panics f [2002/08/07] kern/41417 luigi 3Com xl0 drivers generate a kernel panic o [2002/08/09] kern/41494 static routes set with interface address a [2002/08/18] kern/41765 rwatson UDP socket remains connected after error o [2002/08/26] kern/42030 panic when zebra works on detaching tun i o [2002/08/30] kern/42198 Kernel panics or system hangs up with big o [2002/08/30] kern/42235 system panics with "worklist_remove: item o [2002/08/31] kern/42277 mckusick Several kernel panics per day with panics p [2002/09/09] kern/42580 robert kernel crash when starting ISC 3.2 X11 bi f [2002/09/09] kern/42597 silby kernel panic, xl and bpf related o [2002/09/15] kern/42796 NCR/SYM 53C825 driver detects scsi cdrom o [2002/09/18] kern/42937 panic when ARP cache uses up all mbufs o [2002/09/26] kern/43396 silby repeatable kernel panic in if_xl.c:xl_new o [2002/09/29] kern/43480 panic: CPU class not configured, Athlon M o [2002/10/02] kern/43614 Installation Hangs at "md1: Malloc disk" o [2002/10/03] kern/43625 imp Wi(4) driver hangs after long data transf o [2002/10/05] kern/43713 during install, mounting root from ufs:/d o [2002/10/06] kern/43738 Memory corruption in -stable with agp mod o [2002/10/14] kern/44054 kernel panic o [2002/10/17] kern/44198 joe Toshiba PDR-M25 camera/umass o [2002/10/21] kern/44336 NFSv3 client broken - security problem wi o [2002/10/28] kern/44569 Kernel crash o [2002/10/30] kern/44744 VN devices can hang system FreeBSD v4.5 f [2002/11/20] kern/45535 nfs client panic o [2002/11/04] kern/44884 imp pcic is broken in current o [2002/11/05] kern/44950 SMP kernel crash in vm_page_free: freeing f [2002/11/09] kern/45170 kernel panics when trying to write to ufs o [2002/11/21] kern/45568 gibbs ahc(A19160) pci parity error o [2002/11/24] kern/45698 emoore Freebsd 5.0 DP2 can not find Integrated H o [2002/12/02] kern/45910 emoore unable to use amr device f [2002/12/19] kern/46376 acpi-jp ACPI module fails to load in a IBM e-seri f [2002/12/20] kern/46392 grog kernel, vinum, umount, changing user mode o [2002/12/23] kern/46490 silby xl driver generates lots of interrupts wi o [2002/12/26] kern/46537 amr(4) hangs system on -CURRENT or make p o [2003/01/02] kern/46696 imp ep0 hard lockup during -CURRENT install o [2003/01/08] kern/46865 kernel panic on SuperMicro 6012-8P box o [2003/01/17] kern/47167 5.0 RC 3 (and 2) has 1 second uptime on T o [2003/01/26] kern/47529 ipfw natd/ipfw lose TCP packets for firewalled o [2003/01/27] kern/47544 iir does not detect direct access drives a [2003/02/03] kern/47874 NFS server crashes when given mount daemo s [2003/02/06] kern/48028 panicstr: union: missing upper layer in w o [2003/02/06] kern/48029 Fatal trap 12: page fault while in kernel o [2003/02/07] kern/48039 Fatal trap 12: page fault while in kernel o [2003/02/08] kern/48092 Fatal trap 12: page fault while in kernel o [2003/02/08] kern/48100 Fatal panic in vm_map_lookup_entry ... o [2003/02/10] kern/48166 panic: pmap_new_proc: u_map allocation fa o [2003/02/17] kern/48369 ext2fs no-go in FreeBSD 5 (regression ove f [2003/02/17] kern/48379 the keyboard is dead after X11R6 started o [2003/02/25] kern/48691 kernel panics on ASUS A7N266-VM Motherboa o [2003/03/02] kern/48849 joe Maxtor XT5000 causes panic in boot o [2003/02/25] kern/48667 FreeBSD hangs f [2003/03/10] kern/49079 panic: bwrite: buffer is not busy o [2003/03/11] kern/49110 joe UHCI driver panic while booting if any US f [2003/03/20] kern/50148 rwatson Incorrect applied default ACLs o [2003/03/23] kern/50216 ipfw kernel panic on 5.0-current when use ipfw f [2003/03/23] kern/50229 FreeBSD detects laptop drive geometries i o [2003/04/07] kern/50691 EOT detection in sa driver prevents mutli f [2003/04/11] kern/50833 panicstr: ffs_valloc: dup alloc f [2003/04/15] kern/51015 kernel panic while using dirhash at ~3000 f [2003/04/15] kern/51016 kernel panic: ufsdirhash_lookup: bad offs o [2002/09/08] kern/42563 sos ATA Tagged Queuing wedges -STABLE o [2003/05/03] kern/51742 ffs_vfree: freeing free inode o [2003/05/17] kern/52383 njl QUIRK: IBM IBM USB Memory Key, rev 1.00/1 o [2003/05/18] kern/52404 sound kernel panic on laptop resume (related to o [2003/05/22] kern/52585 luigi Kernel panic with ipfw2 and syncookies o [2003/05/27] kern/52718 changes to kern_umtx.c causes panic in ca s [2003/05/27] kern/52745 Fatal trap 12: page fault while in kernel o [2003/06/03] kern/52916 grog vinum causes panic after start/stop/... c o [2003/06/06] kern/53004 union_lookup returning . (0xbc332e90) not o [2003/06/07] kern/53010 FreeBSD-CURRENT cannot use 2940 UW on SNI o [2003/06/11] kern/53195 Easily reproduceable mac_lomac panic o [2003/06/11] kern/53245 mdodd ida(4) panic during boot o [2003/06/15] kern/53350 fill up a malloc md-disk on 5.1-R causes o [2003/06/17] kern/53416 kmem_map too small after around 12 hours. o [2003/06/17] kern/53433 heavy i/o on GBDE partition on SMP locks o [2003/06/18] kern/53468 reproducible panic when MD /tmp partition o [2003/06/25] kern/53725 jhb fatal trap 12 during boot, sys/dev/pci/pc f [2003/06/30] kern/53938 MFS_ROOT doesn't work o [2003/07/14] kern/54490 joe Intel D845EPT2 Motherboard USB driver pro s [2003/07/08] kern/54211 rwatson Seeing other uid with kern.file sysctl. o [2003/07/16] kern/54549 panic on install on Dell 600sc o [2003/07/18] kern/54616 thomas System hangs writing CD-Rs with "atapicam f [2000/01/17] misc/16157 green "fire" screensave kills network performan o [2000/05/09] misc/18466 jwd install via nfs or ftp media silently tru o [2000/05/17] misc/18641 paul FreeBSD V4.0 crashes when using ifconfig f [2000/09/04] misc/21025 msmith BTX loader 1.00 gets 1Gb of memory from B o [2000/11/25] misc/23103 fenner lacks many ISO C99 features (NAN o [2001/07/24] misc/29200 dcs Syntax errors in /boot/device.hints cause o [2001/10/14] misc/31266 cjc System can be crashed with "ls -al /flopp o [2002/05/30] misc/38748 qa FreeBSD 4.5 Keyboard problem cannot insta o [2002/06/03] misc/38867 sos Boot "Read error" with offboard Promise u o [2002/06/15] misc/39341 joe ppp + USB modem problem o [2002/07/14] misc/40575 qa Kern.flp boot floppy error o [2002/08/07] misc/41425 adding new cpu types to bsd.cpu.mk o [2002/08/16] misc/41717 Memory Leak in FreeBSD o [2002/08/19] misc/41792 tjr lseek after ftruncate fails f [2002/08/30] misc/42221 qa Signal 11 core dumped when fetchin index o [2002/10/02] misc/43576 imp Problem with wi driver and Lucent Orinoco o [2002/10/11] misc/43954 nfs-blocked process can't return or be in o [2002/10/25] misc/44471 qa 4.6 install writes MBR even when specifie o [2001/07/15] ports/28995 max deMime produces blank line in header part o [2001/09/04] ports/30331 portmgr Conflict between bsd.port.mk MAKEFILE var o [2001/09/30] ports/30935 taoka pips sc880 - needs to have syvr4 support p [2002/04/10] ports/36964 keramida cvsupit from www.freebsd.org is out of da o [2002/06/07] ports/39008 dwhite py-kqueue wrapper broken with python 2.2 o [2002/08/10] ports/41513 tobez lang/perl5.8 - "make test" destroys perl f [2002/09/18] ports/42921 nork archivers/rpm/work/rpm-3.0.6/lib/rpmlead. o [2002/11/04] ports/44868 fanf sysutils/cfengine2: cfservd dies fails if o [2003/03/17] ports/50082 lioux net/dctc-gui-qt (0.0.3) does not build on o [2003/04/08] ports/50736 nork ports/mail/mailman /var/cron/tabs/mailman o [2003/04/15] ports/50999 ports-bugs SSL with (mail/)dovecot simply doesn't wo o [2003/04/14] ports/50954 anholt XFree86 4.0 core dump ati rage mobility o [2003/05/16] ports/52346 obrien Portupgrade of bash-2.05b.004 fails with o [2003/05/23] ports/52632 ports-bugs vmware3 port is missing /usr/lib/vmware/v o [2003/06/12] ports/53252 dirk databases/mysql323-server: fails to build o [2003/06/21] ports/53600 ports-bugs /usr/port/emulators/linux_base says "linu o [2003/06/25] ports/53742 sobomax /usr/ports/print/freetype2 fails to insta o [2003/06/28] ports/53874 ports-bugs /usr/ports/emulators/linux_base isn't wor o [2003/07/03] ports/54075 petef fix xxdiff port compile problems o [2003/07/08] ports/54230 ports-bugs fsck_ext2fs is broken (unable to perform o [2003/07/10] ports/54338 roger Incorrect ${NONEXISTENT} dependency o [2003/07/14] ports/54465 ports-bugs ipfm (/usr/ports/ipfm) destroys all accou o [2003/07/17] ports/54584 ports-bugs ports/devel/tclxml depends on ports/devel o [2003/06/10] standards/53151fenner inet_net_pton() returns 4 for *all* multi o [2003/07/18] kern/54626 Some PC Cards cause NEWCARD to panic on c o [2003/07/21] sparc64/54712luigi ``ipfw: getsockopt(IP_FW_ADD): Bad addres f [2003/07/22] ports/54753 ports-bugs print/lyx core dump 250 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/07/17] kern/54591 njl USB quirk needed for IntelligentStick dev o [2000/03/28] alpha/17637 billf misconfigured syscons bell causes panic o o [2001/09/10] alpha/30486 alpha AlphaServer DS10 floppy access is broken o [2001/09/10] alpha/30487 alpha Floppy access on AlphaServer DS20 solid l f [2002/03/01] alpha/35455 alpha Unable to compile ISA NIC devices into ke o [2002/04/23] alpha/37382 alpha de0 (tulip) DEC-21140A card stays in OACT o [2002/04/23] alpha/37385 alpha xl0 network card (509B) fails on heavy tr p [2002/10/01] alpha/43567 robert strtod() core dumps o [2002/10/04] alpha/43653 alpha rl(8) driver causes unaligned access trap o [2003/02/05] alpha/47952 alpha DEFPA causes machine check with V5.0-rele a [1997/04/01] bin/3170 sheldonh vi freaks and dump core if user doesn't e o [1997/05/06] bin/3524 imp rlogin doesn't read $HOSTALIASES for non- s [1997/10/01] bin/4672 rdist does not do hard links right when t a [1998/05/06] bin/6536 peter pppd doesn't restore drainwait for tty o [2002/01/25] bin/34269 fenner tcpdump -v incorectly identifies packets s [1998/06/23] bin/7033 gad Same process notified multiple times o [1998/11/10] bin/8646 peter Implement rlogind -a option f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console s [1999/01/07] bin/9379 pppd does not go through all interfaces l o [1999/03/02] bin/10353 jon ypserv gets segmentation violation o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/16] bin/10633 fenner [patch] tcpslice timezone problem and upd o [1999/07/20] bin/12727 billf Game patches from NetBSD o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of f [2000/01/03] bin/15877 tobez Perl 5.00503 interpreter crashes with a s a [2000/05/19] bin/18678 peter Bug in libz s [2000/05/22] bin/18742 mike times.allow field parsed incorrectly s [2000/06/20] bin/19405 markm telnetd sends DO AUTHENTICATION even if a s [2000/07/07] bin/19773 markm [PATCH] telnet infinite loop depending on p [2000/08/02] bin/20373 Setting breakpoints in shared objects bro o [2000/08/15] bin/20633 fdisk doesn't handle LBA correctly f [2000/08/22] bin/20779 assar junk pointer error causes kpasswd to fail f [2000/08/30] bin/20952 markm ftpd doesn't honor account expiration tim a [2000/09/18] bin/21375 mbr [PATCH] dhclient runs away on interface r f [2000/09/27] bin/21603 green Can't change user passwords on 4.1.1-STAB o [2000/10/25] bin/22291 getcwd() fails on recently-modified NFS-m o [2000/11/05] bin/22614 billf pam_ssh dumps core o [2000/11/14] bin/22846 Routed does not reflect preference of Int o [2000/11/25] bin/23098 ambrisko If installing on a serial console, enable o [2000/12/26] bin/23866 dwmalone patch for pointing out current date o [2001/01/12] bin/24271 dumpon should check its argument more o [2001/01/19] bin/24461 pirzyk Being able to increase the YP timeout wit o [2001/01/19] bin/24472 threads libc_r does not honor SO_SNDTIMEO/SO_RCVT o [2001/01/25] bin/24632 threads libc_r delicate deviation from libc in ha s [2001/02/23] bin/25337 rwatson dmesg -a should be restricted o [2001/02/28] bin/25461 qa sysinstall's fdisk and disklabel don't wo o [2001/03/15] bin/25826 nfsd -t -h adr1 -h adr2 doesn't work o [2001/03/17] bin/25886 cgetset(3) doesn't get cleared when switc o [2001/03/05] bin/25542 standards /bin/sh: null char in quoted string o [2001/03/19] bin/25929 qa Can't use MAKEDEV in fixit mount o [2001/03/26] bin/26093 markm pam_unix rejects authenticating accounts o [2001/04/02] bin/26307 threads libc_r aborts when using the KDE media pl o [2001/04/25] bin/26842 dd dump with h flag takes a very long time a [2001/04/25] bin/26869 sheldonh vi(1) crashes in viewing a file with long o [2001/06/16] bin/28221 eric dialog(1) segfaults (due to the bug in li o [2001/06/17] bin/28223 su doesn't look at login.conf all the tim o [2001/06/17] bin/28224 yar ftpd doesn't honor invalid shelll in logi o [2001/06/20] bin/28311 markm ftpd and sshd do not honor expired pw ent o [2001/06/26] bin/28424 mtree fails to report directory hierarchy o [2001/07/07] bin/28798 mikeh mail(1) with a pager (more) requires fg/C o [2001/07/09] bin/28852 cracauer behavior of /bin/sh with -e option looks o [2001/07/16] bin/29026 pb traceroute -s option allows any IP addres o [2001/07/26] bin/29253 ru natd forgets about udp connections o [2001/08/15] bin/29725 dwmalone [PATCH] Fixed segmentation fault in simpl o [2001/08/17] bin/29808 ypserv dumps core in yp_find_db o [2001/08/20] bin/29903 ypbind loses connection to NIS master and o [2001/08/31] bin/30235 /usr/sbin/portmap cannot listen to localh o [2001/09/04] bin/30310 top does not show CPU usage o [2001/09/26] bin/30837 qa Sysinstall doesn't set the schg flag on t f [2001/10/01] bin/30966 fenner TCPdump repeating on Radius accounting pa o [2002/02/25] bin/35307 standards standard include files are not standard c o [2001/10/04] bin/31045 routed dumps core o [2001/10/31] bin/31661 threads pthread_kill signal handler doesn't get s f [2001/10/31] bin/31678 A bug in handling an error reading a CD-R o [2001/11/01] bin/31692 2872-or-less-byte ftp binary transfer fro o [2001/11/07] bin/31835 mbr dhclient doesn't close FD's before spawni a [2001/11/07] bin/31837 jhb sysinstall change mountpoint o [2001/11/17] bin/32072 setuid w/o immutable flag o [2001/11/22] bin/32205 brian PPP login fails in LCP negotiation on opt o [2001/11/26] bin/32295 threads pthread dont dequeue signals o [2001/11/29] bin/32374 vi -r doesn't work, file contained unexpe o [2001/12/08] bin/32619 des libfetch does not use RFC 1738's definito f [2001/12/10] bin/32686 wosch locate command dumps a core file with bro o [2001/12/11] bin/32717 brian ppp(8) change mss to wrong size f [2001/12/12] bin/32791 ru FreeBSD's man(1) utility vulnerable to ol o [2002/01/03] bin/33515 amd incorrectly handles multi-homed nfs s o [2002/01/18] bin/34030 miibus.ko can be loaded into the kernel w p [2002/02/06] bin/34682 fenner scanf/sscanf doesn't understand %lld o [2002/02/10] bin/34811 sh: "jobs" is not pipeable o [2002/02/22] bin/35214 obrien dump program hangs while exiting o [2002/09/24] bin/43337 des fetch: -s fails if -4 or possibly other o o [2002/03/07] bin/35622 threads sigaltstack is missing in libc_r o [2002/03/12] bin/35842 rm -f nonexistent file successful but rm o [2002/03/13] bin/35843 maxim [PATCH] MD5 auth implemented in routed is p [2002/03/15] bin/35921 jon Wrong path reduction of dot-dot paths in o [2002/03/15] bin/35925 joe fixit floppy cannot be mounted on USB dri o [2002/04/07] bin/36867 games/fortune: add FORTUNE_PATH env var, o [2002/04/09] bin/36926 send-pr destroys PR if emacs interrupt ch o [2002/04/16] bin/37159 ru more then one natd use running use the sa o [2002/04/22] bin/37343 portmap TCP binds strangeness o [2002/05/27] bin/38609 qa Sysinstall should know the size of the va o [2002/05/31] bin/38765 peter CVS Daemon Vulnerability in 1.11.1p1 a [2002/05/31] bin/38778 mbr dhclient infinite loop on ro /etc/resolv. o [2002/06/05] bin/38918 edquota breaks silently when quota-marked o [2002/06/25] bin/39849 /sbin/restore fails to overwrite files wi o [2002/06/26] bin/39896 netmask 0xffffff00 no longer works in /et o [2002/06/26] bin/39906 johan cleaning sbin/newfs code from warnings f [2002/06/27] bin/39918 brian Userland PPP - CHAP and PAP are swaped o [2002/06/27] bin/39922 threads [PATCH?] Threaded applications executed w o [2002/06/27] bin/39940 /usr/sbin/periodic sends thousands of ema o [2002/07/05] bin/40219 [apm] apm breaks removable media o [2002/07/05] bin/40227 CVS client doesn't upload new files creat o [2002/07/06] bin/40261 des sshd allows PasswordAuthentication even t o [2002/07/06] bin/40278 mktime returns -1 for certain dates/timez o [2002/07/07] bin/40282 /bin/kill has bad error checking for comm a [2002/07/11] bin/40466 pax may not handle correctly some tar arc o [2002/07/11] bin/40471 des chpass(1) -a option broken in CURRENT a [2002/07/16] bin/40654 jhb patch: sysinstall: infinite loop a [2002/07/16] bin/40655 jhb patch: sysinstall assigns partition a to o [2002/07/16] bin/40656 qa patch: sysinstall: scripted deletion of s o [2002/08/03] bin/41297 mp {t,}csh backquote/braces expansion bug f [2002/08/04] bin/41327 jon skey decrementing but not authorizing wit o [2002/08/07] bin/41410 /bin/sh bug on expanding $? in here-docum o [2002/08/07] bin/41435 mbr dhclient writes lease file that it can't o [2002/08/19] bin/41777 /etc/periodic/daily/100.clean-disks remov o [2002/08/22] bin/41908 make: $? not always set o [2002/08/25] bin/42004 quota and rpc.statd are still IPv4 only, o [2002/08/27] bin/42093 ypbind hangs on NIC with the lowest scope p [2002/09/02] bin/42356 uudecode -o doesn't work if piped o [2002/09/04] bin/42407 ppp(8) IPV6CP fails o [2002/09/06] bin/42484 jmallett ps: uprocp documented but not implemented o [2002/09/11] bin/42658 markm recompile /usr/src/libexec/telnetd and lo o [2002/09/21] bin/43223 pirzyk getnetby{name|addr} broken for DNS lookup f [2002/09/23] bin/43299 march=pentium4 miscompiles msun/src/e_pow o [2002/09/29] bin/43501 getpwnam, getpwuid fail when linking agai o [2002/09/30] bin/43505 des ssh session "crash" if you are typing sec o [2002/10/02] bin/43592 mktime rejects dates at the start of dayl o [2002/10/11] bin/43930 ldconfig calls bcopy with wrong size o [2002/10/12] bin/43993 joe /usr/sbin/usbd does not handle an usb eve s [2002/10/26] bin/44504 mp tcsh-6.12.00's "source" command ignore co o [2002/10/27] bin/44518 yar ftpd does not show OPIE OTP challenge o [2002/10/27] bin/44519 yar ftpd.conf(5) contains references to ftpd( o [2002/10/28] bin/44567 darrenr ipfstat does not show IPv6 accounting inf o [2002/11/06] bin/44995 /usr/bin/limits thinks sbsize is number, o [2002/11/18] bin/45397 nectar Telnet dumps core when MAKE_KERBEROS5=yes o [2002/11/19] bin/45478 tjr /bin/sh coredump o [2002/11/20] bin/45529 hexdump core-dumps with certain args [PAT o [2002/11/24] bin/45669 des pam_ssh fails in presence of SIGCHLD hand o [2002/11/13] bin/45272 dump/restore problem o [2002/11/25] bin/45721 darrenr ipfilter's flags and icmp-type processing o [2002/11/25] bin/45723 ls(1)'s wrong behaviour with not searchab o [2002/12/04] bin/45990 dwmalone top dumps core if specific errors in pass o [2002/12/04] bin/45995 markm Telnet fails to properly handle SIGPIPE o o [2002/12/18] bin/46352 Open file descriptors and signal handling o [2003/01/01] bin/46676 ru [PATCH] bsd.dep.mk restricts domain of ta o [2003/01/04] bin/46761 hmp buffer overflow by strcpy() in natd's arg f [2003/04/21] bin/51253 syslogd crashes. o [2003/01/28] bin/47607 quota(1) misreports nfs quotas >= 4 GB o [2003/02/13] bin/48271 bug with find's -delete option o [2003/02/17] bin/48378 brian [PATCH] User-PPP MTU/MRU - LCP Problem p [2003/02/18] bin/48424 Integer overflow in cksum(1) and sum(1) f o [2003/02/24] bin/48648 des FreeBSD 5/PAM: incorrect handling of spac o [2003/02/26] bin/48730 sos burncd does not handle signals and causes o [2003/03/02] bin/48856 threads Setting SIGCHLD to SIG_IGN still leaves z o [2003/03/02] bin/48865 Dumps made on FreeBSD 5.0-RELEASE are unr o [2003/03/05] bin/48958 standards The type 'bool' has different sizes for C f [2003/03/09] bin/49048 [patch] ctm(1) does not check parent dire o [2003/03/10] bin/49087 threads Signals lost in programs linked with libc o [2002/09/02] bin/42318 ipfw NATD redirect limitations p [2003/03/28] bin/50384 robert pkg_version -v core-dumps when no package a [2003/04/08] bin/50733 threads buildworld won't build, because of linkin p [2003/04/10] bin/50770 tjr popen in libc_r not threadsafe o [2003/04/13] bin/50912 dwmalone Small syslogd & postfix incompatibility a o [2003/04/19] bin/51171 /bin/sh has only 32-bit arithmetics that o [2003/05/05] bin/51827 getaddrinfo() is broken with numeric serv o [2003/05/06] bin/51892 des can't ssh after su to different local use o [2003/05/07] bin/51927 routed(8) fails to use multicast with IFF o [2003/05/07] bin/51949 threads thread in accept cannot be cancelled o [2003/05/16] bin/52343 NIS login problem on the server o [2003/05/19] bin/52433 lines in /etc/group longer than 1024 char o [2003/05/27] bin/52743 /etc/ppp/ppp.linkup instability issues o [2003/06/11] bin/53201 re buildworld 5.1-RELEASE on 4.8-STABLE fail o [2003/06/17] bin/53434 pw disallow a password including space. o [2003/06/21] bin/53606 roberto ntpdate seems to hang system o [2003/06/27] bin/53839 qa sysinstall disklabel editor fails on post o [2003/07/02] bin/54031 ru awk/nawk regression with LANG o [2003/07/04] bin/54097 Non-local yppasswd -d broken in 5.1-CURRE o [2003/07/11] bin/54367 gshapiro [PATCH] sendmail coredumps (sometime) whe o [2003/07/13] bin/54446 pkg_delete doesn't honour symlinks, portu o [2003/07/11] bin/54401 [patch] pppstats prints 0 for absolute va f [2003/07/03] bin/54066 acpi-jp ACPI repeating error messages at boot tim o [2003/07/15] bin/54492 tail -F duplicates lines o [2003/07/15] bin/54517 murray dhclient core dumps on negative ip addres s [1999/09/16] conf/13775 multi-user boot may hang in NIS environme o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/23] conf/16948 qa Sysinstall/disklabel: bad partition table s [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg o [2000/07/29] conf/20282 qa sysinstall does not recover some /etc fil o [2001/09/06] conf/30399 Have Fortran use the CPUTYPE variable o [2001/10/30] conf/31631 "MAC address" can't be acquired properly. o [2002/03/13] conf/35880 rc files could be a bit more jail friendl o [2002/03/29] conf/36508 qa installation floppy bug (See description) o [2002/04/08] conf/36911 qa installation floppies miss autoload file o [2002/06/24] conf/39763 Can't get a correct MAC address for MELCO f [2002/06/26] conf/39887 matusita /stand/sysinstall doesn't set sendmail_en o [2002/08/23] conf/41935 PPPoE problem with 3com device - 3c12 o [2002/10/09] conf/43851 Colorado backup unit o [2002/10/19] conf/44263 imp Intel AnyPoint II Wireless Card Unrecogni o [2002/12/20] conf/46401 dougb [PATCH] /etc/rc.d/named doesn't create ch o [2000/06/30] docs/19604 steve Web query interface doesn't search or Ori s [2000/07/18] docs/20028 doc ASCII docs should reflect tags o [2000/10/02] docs/21708 jlemon kqueue/kevent man pages isn't specific ab o [2001/01/06] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN o [2001/05/23] docs/27605 doc Cross-document references () o [2001/08/16] docs/29767 incorrect description of 'standart-supfil s [2002/03/08] docs/35678 doc docproj Makefiles for web are broken for o [2002/03/21] docs/36168 doc -pthread/_THREAD_SAFE docs missing in gcc o [2002/08/20] docs/41824 murray LANG is not documented in setlocale(3) o [2002/09/13] docs/42762 doc ppp.8 has no description of $env and ~use o [2002/11/14] docs/45303 doc Bug in PDF DocBook rendering o [2002/11/29] docs/45833 trhodes nsmb.conf man page f [2003/02/19] docs/48472 doc Documentation unreadable. o [2002/01/24] gnu/34246 joe CVS doesn't rebuild CVSROOT/options o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio o [2000/08/28] gnu/20912 mp gdb does not recognise old executables. o [2000/09/14] gnu/21260 buffer overrun in uux o [2000/09/14] gnu/21276 kan libI77 is unable to handle files >2Gbytes p [2000/09/20] gnu/21433 kan g++ optimiser produces bad code on right a [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- f [2002/01/04] gnu/33551 cvs chokes on OpenBSD repositories o [2002/01/21] gnu/34128 sdiff "e" doesn't work with some editors o [2002/03/13] gnu/35878 /usr/bin/strip resets ABI type to FreeBSD o [2002/09/13] gnu/42726 cvs -R pserver & val-tags: story continue o [2002/10/28] gnu/44564 peter [PATCH] Aborted cvs session causes an end o [2002/11/09] gnu/45168 Buffer overflow in /usr/bin/dialog o [2003/02/11] gnu/48183 [patch] gdb on a corefile from a threaded o [2003/07/10] gnu/54317 sobomax tar with very large packages and portinst o [2002/01/25] i386/34267 semenu FreeBSD hangs and reboots when overloaded o [1998/06/24] i386/7057 mdodd 3Com 3C509 locks up, or has >1000ms rtt u o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go s [1999/09/17] i386/13787 lnc driver isn't really the lnc driver s [1999/10/04] i386/14135 doc lpt1 nolonger exists after 3.2-RELEASE o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" o [1999/11/17] i386/14946 mjacob rmt - remote magtape protocol o [2000/01/02] i386/15845 imp Driver for RealTek 8029 o [2000/03/29] i386/17662 gibbs cam_xpt.c incorrectly disables tagged que o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit o [2000/04/04] i386/17800 bde [PATCH] problem with statclock initializa f [2000/04/23] i386/18185 gibbs Adaptec 3950U2 errors during boot/probe o [2000/06/13] i386/19245 obrien -fexpensive-optimizations buggy (even wit f [2000/08/09] i386/20507 yokota Mouse freezes in 4.0-release after some u o [2000/11/18] i386/22944 isa_dmainit fails on machines with 512MB o [2001/02/10] i386/24997 /boot/loader cannot handle extended dos p o [2001/03/31] i386/26261 silo overflow problem in sio driver o [2001/05/10] i386/27247 sos Panic on install - "page fault syncing di f [2001/05/29] i386/27729 qa the ls120 device "afd" does not show up u o [2001/07/07] i386/28802 joe 3com Performance Pro modem conflicts with o [2001/07/12] i386/28928 wpaul dual starfire nic doesn't seem to work (a o [2001/07/18] i386/29067 sound Yamaha OPL3Sa2 pcm/pnp bug o [2001/08/01] i386/29375 qa the disk editor used by /stand/sysinstall o [2001/08/01] i386/29377 imp pccard hangs during probe when returning o [2001/08/17] i386/29809 imp pb Xircom Eth Card with Freebsd 4.4RC1 : o [2001/08/19] i386/29882 peter stable 4.3 kernel compile fails for multi o [2001/09/02] i386/30276 CPUTYPE=486 built on a CPUTYPE=p3 WORLD b o [2001/11/05] i386/31771 brian PPP compares CHAP81 response case sensiti s [2002/01/20] i386/34092 reboot hangs the system (IBM PC Server 31 o [2002/02/01] i386/34536 threads accept() blocks other threads o [2002/03/10] i386/35742 joe USB 2.0 attached device cannot be fdisk'd o [2002/03/17] i386/36003 Cyclades Cyclom YeP causes panics on Free a [2002/03/28] i386/36451 roger (sys/dev/bktr) Japan IF frequency is inco o [2002/03/29] i386/36517 sis driver can't map ports/memory for Net o [2002/04/09] i386/36943 reboot hangs on Tyan Thunder K7 with SMP o [2002/04/18] i386/37240 EtherExpress16 not probed at boot o [2002/04/26] i386/37482 sound Weird behaviour under relatively slow loa o [2002/04/28] i386/37523 lock for bios16 call and vm86call o [2002/05/30] i386/38731 Freebsd doesn't support ( pdc20276 / Raid o [2002/06/19] i386/39507 FreeBSD can't boot: BTX halted problem s [2002/06/19] i386/39536 FreeBSD default bootloader does not load o [2002/06/20] i386/39604 Install failure on HP Pavilion 310n - Una o [2002/06/21] i386/39633 Errors reported in schistory.c in syscons o [2002/06/24] i386/39802 iBCS2 emulation fork process core dumps o [2002/07/01] i386/40073 imp Xircom Realport Ether doesn't work in Tos o [2002/07/02] i386/40132 Enabling the joystick interface on es137x f [2002/07/06] i386/40274 "fxp: device timeout" errors during heavy o [2002/07/23] i386/40945 FreeBSD can not support IBM ServeRAID4Lx o [2002/07/25] i386/40972 Stallion Multiport Serial Driver . o [2002/07/26] i386/41020 sos Installation was successful only after I o [2002/07/29] i386/41138 silby vr0 locks up on one hub, OK on another o [2002/08/18] i386/41757 qa sysinstall 4.6.x unstable o [2002/08/19] i386/41776 mrouted doesn't route multicast packets o [2002/08/11] i386/41569 silo overflow o [2002/08/23] i386/41930 declaration clash for ffs() and ${CXX} o [2002/08/24] i386/41979 top(1) reports zero CPU utilization o [2002/09/05] i386/42463 sos 4.6 and 4.6.2 fail to boot on Sony CD-ROM o [2002/09/06] i386/42495 sos Drive Timeout - New Dell GX260 o [2002/09/07] i386/42539 Fatal Trap 12 resulting from Conner Perip o [2002/09/13] i386/42750 Fdisk makes no difference between FAT32, o [2002/09/14] i386/42784 imp pcmcia 16bit network card removal locks a o [2002/09/15] i386/42806 VLANs do not work with fxp + catalyst as o [2002/09/21] i386/43222 setrootbyname panic in 4.6 o [2002/09/25] i386/43366 joe Cannot format media in USB floppy devices o [2002/10/08] i386/43814 sos release 4.6 & 4.6.2 does not see the hard o [2002/10/09] i386/43852 4.7-RC "device timeout" problem f [2002/10/17] i386/44178 sound kldload of snd_emu10k1 locks system o [2002/10/26] i386/44497 NIC Lags? o [2002/11/20] i386/45525 imp Dell Inspiron 7000 does not recognize PC- o [2002/11/21] i386/45558 mdconfig and msdosfs make fs writes hang o [2002/11/21] i386/45565 qa sysinstall: write error, filesystem full o [2002/11/26] i386/45773 Softboot causes autoconf failure on Broad o [2002/12/05] i386/46017 smb mounts break /etc/periodic/weekly/310 f [2002/12/08] i386/46100 Random panic. f [2002/12/11] i386/46194 5.0-RC1 kern floppy load fails on AMD K6- o [2002/12/19] i386/46371 joe USB controller cannot be initialized on I o [2002/12/22] i386/46484 System panics upon configuration of bge N f [2002/12/26] i386/46553 acpi-jp System freezes after awakening from hiber f [2002/12/31] i386/46646 sound snd_emu10k1.ko halting the system f [2003/01/19] i386/47236 Console missing during bootup on Sony Pic o [2003/01/19] i386/47243 sound Onboard CMedia CMI8738 playback noise o [2003/01/23] i386/47412 phk fdisk core dumps (gdb) with gbde disc o [2003/01/24] i386/47449 Thinkpad 755CD floppy boot fails o [2003/01/29] i386/47647 init died with signal 6 f [2003/02/01] i386/47787 markm new 5.0 system without perl fails buildwo o [2003/02/02] i386/47813 pseudo-device gre doesn't appear to work o [2003/02/04] i386/47934 /etc/rc.diskless1 does not get valid mem o [2003/02/05] i386/47951 rtld in ld.so will livelock in some circu o [2003/03/18] i386/50099 jhb [PATCH] AP initialization fails on some S o [2003/04/12] i386/50887 MBR on kern.flp fails Compaq MBR validati o [2003/05/18] i386/52392 i386 Password lengths over 8 chracters are ign f [2003/05/19] i386/52438 sos Promise TX2 Ultra100 hangs system o [2003/05/21] i386/52556 i386 Syskonnect SK9843SX, sk driver, MII not d o [2003/05/22] i386/52581 i386 Boot loaders reading more than one sector o [2003/05/23] i386/52610 i386 MSI "655 max" (MS-6730, SiS 655/963) MB A o [2003/05/24] i386/52638 i386 SCSI U320 on SMP server won't run faster o [2003/05/27] i386/52724 i386 crashes apparently due to a ACPI problem o [2003/05/31] i386/52822 i386 5.1-BETA2 problems with named/syslogd/if_ o [2003/06/05] i386/52975 i386 CPUTYPE=k7 results in non-functional /boo o [2003/06/10] i386/53137 i386 background fscking causing ffs_valloc pan o [2003/06/16] i386/53382 i386 Repetable panics in ffs_vget() on Prolian o [2003/06/30] i386/53948 i386 console="comconsole" in loader.conf cause o [2003/07/02] i386/54033 i386 Disk lockup. o [2003/07/15] i386/54501 i386 Promise Ultra133 TX2 does not work proper f [2003/03/16] ia64/50059 kan GCC bug tracker (tracks GCC PR 10116) f [2001/11/17] java/32063 znerd patch for /usr/ports/java/linux-jdk about o [2002/02/25] java/35320 java linux-jdk-1.4 JVM fails when running Tomc o [2002/10/11] java/43924 glewis writing from JAVA to a pipe sometimes han o [2002/12/09] java/46151 phantom Sound Capture works only one time o [2002/12/15] java/46269 glewis ports/java: jdk 1.3.1 p7 fails to build w o [2003/05/15] java/52302 phantom jdk14 runnaway processes s [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f f [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/12] kern/4284 paul le0 goes OACTIVE after some time o [1997/10/16] kern/4782 Under certain conditions, several krsh's o [1998/01/27] kern/5587 des session id gets dropped o [1998/02/28] kern/5877 kbyanc sb_cc counts control data as well as data a [1998/04/07] kern/6238 cg Sound-driver patch for MAD16 (OPTi 928,92 s [1998/08/10] kern/7556 hm sl_compress_init() will fail if called an f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S o [1998/12/21] kern/9163 adrian [patch] squid does not join a multicast g o [1999/01/13] kern/9478 assar support for running a script from kldload s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/15] kern/10107 interlock situation with exec_map and a p a [1999/03/24] kern/10778 ru "ipforward_rt" is not cleared when routin o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/05/03] kern/11462 imp CS network interface driver (for CS89XX b o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 imp CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/13] kern/11697 tegge Disk failure hangs system o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/09/27] kern/13997 rwatson RLIMIT_NPROC works unadequately for jails o [1999/10/12] kern/14285 NFS client appears to lose data o [1999/10/26] kern/14549 mdodd 3C509 broken in 3.3 o [1999/10/27] kern/14566 yokota Non-kernel programs have little/no contro a [1999/11/04] kern/14712 iedowse root has access to NFS mounted directorie s [1999/11/12] kern/14848 murray Frame Relay support, corrected s [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c o [1999/12/17] kern/15542 de suddenly stops working o [1999/12/26] kern/15707 bad trap in mprotect o [2000/01/01] kern/15825 Softupdates gets behind, runs the system o [2000/01/12] kern/16090 mdodd No buffer space available a [2000/01/22] kern/16299 tmm nfs.ko can be unloaded when nfsd is runni o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P o [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/03/16] kern/17422 bde 4.0-STABLE: top: nlist failed o [2000/03/20] kern/17504 ken Another Micropolis Synchronize Cache Prob f [2000/03/21] kern/17542 greid random static with GUS PnP o [2000/04/12] kern/17961 n_hibma Fatal Trap 12. Page fault while in kernel o [2000/04/14] kern/18012 adrian vnode_free_list corruption, "free vnode i o [2000/04/24] kern/18200 mdodd 3com 3c509b recognized twice during boot o [2000/05/02] kern/18345 cg sbc / pcm not fully recognizing AWE64 o [2000/05/02] kern/18348 yokota 80 char. but u o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ o [2001/02/19] kern/25213 peter Bus abstraction interface doesn't allow p o [2001/02/21] kern/25248 bde sys/user.h needs sys/param.h, but doesn't f [2001/02/21] kern/25261 gibbs ahc0 no active SCB errors when booting of o [2001/03/03] kern/25511 ioctl(fd, FIONREAD, &c) on a FIFO (not PI o [2001/03/13] kern/25781 Statclocks cannot be disables on ServerWo o [2001/03/22] kern/25986 silby Socket would hang at LAST_ACK forever. o [2001/03/22] kern/26013 joe Linksys (rev 3) USB 100TX NIC causes infi o [2001/03/27] kern/26142 Unlink fails on NFS mounted filesystem o [2001/03/28] kern/26171 emulation not work Linux-emulator, but hi is work i o [2001/04/03] kern/26309 PPPoE client panics in kernel - fxp probl o [2001/04/08] kern/26430 cg -CURRENT panics on cat /dev/dsp or cat /d o [2001/04/12] kern/26506 phk sendto() syscall returns EINVAL in jail e a [2001/05/10] kern/27262 process won't be terminated after CPUTIME o [2001/05/20] kern/27474 Interactive use of user PPP and ipfilter o [2001/05/21] kern/27522 des linprocfs:/proc/stat does not handle SMP o [2001/05/22] kern/27543 des /proc/cpuinfo does not handle SMP hosts o [2001/05/27] kern/27694 cg Panic in csa(4) o [2001/06/09] kern/27995 src/sys/pci if_pcn.c revision 1.21 resp. o [2001/06/15] kern/28173 Problem with Touchpad on Inspiron 5000e o [2001/06/25] kern/28417 arplookup uses potentially unprotected st o [2001/07/04] kern/28692 cg ICH sound driver hangs kernel o [2001/07/06] kern/28768 The system doesn't get connects on one of o [2001/07/09] kern/28840 gibbs Possible interrupt masking trouble in sys f [2001/07/23] kern/29170 ru ARP request fails after "bad gateway valu o [2001/08/03] kern/29421 Update a file with mmap will cause mtime/ o [2001/08/04] kern/29465 sound Can't probe NeoMagic 256AX audio chip. f [2001/08/11] kern/29626 ifconfig causes kernel panic in 4.4-PRERE o [2001/08/13] kern/29686 jlemon kevent EV_ADD EVFILT_WRITE does the wrong o [2001/08/23] kern/29983 imp Problem with "TI PCI-1250 PCI-CardBus Bri o [2001/08/24] kern/30049 imp [f: 4.4] Bad iomem assigned in some cases o [2001/08/27] kern/30125 btx/bootloader dumps very often if serial o [2001/08/30] kern/30223 Using /usr/share/examples/kld/cdev, testc o [2001/08/30] kern/30230 md cannot o [2001/08/31] kern/30241 gibbs System crash w/err: AHC0; AHC_INTR - refe f [2001/09/02] kern/30280 Fatal trap 12 in kldunload() on 4.4-RC o [2002/01/23] kern/34205 joe detect USB memory device, But can not use o [2001/09/10] kern/30482 calcru calls printf while holding a spin o [2001/09/10] kern/30502 joe panics if logitech joystick usb attached o [2001/09/15] kern/30592 roam [PATCH] panic: static sysctl oid too high o [2001/09/17] kern/30630 fenner Failure to check for existence of interfa o [2001/09/21] kern/30712 fatal kernel trap during ufs_rename o [2001/09/24] kern/30798 contigfree() doesn't o [2001/09/25] kern/30820 sound PCM sound fails o [2001/09/30] kern/30952 silby kernel panics with 3C905[BC] cards / xl d o [2001/10/01] kern/30958 QUOTA with 0 bytes in quota.user hangs up o [2001/10/01] kern/30971 peter NFS client modification time resolution i s [2001/10/04] kern/31047 Linux programs do not dump core in linux o [2001/10/07] kern/31102 wpaul lge + Pentium III data transmission probl o [2001/10/21] kern/31398 cg newpcm does not play back the tail of sou o [2001/09/30] kern/30948 ls'ing mounted brand new floppy locks up o [2001/10/31] kern/31659 n_hibma USB controller driver will die after some o [2001/11/03] kern/31746 failed connect(2) seems to cause problems f [2001/11/05] kern/31768 darrenr Use of fastroute in IPFilter reboots the o [2001/11/05] kern/31790 problem with NFS and jail() o [2001/11/12] kern/31940 nge gigabit adapter link reset and slow t o [2001/11/14] kern/31979 Setup and boot locks Compaq Armada E500 l o [2001/11/18] kern/32098 semctl() does not propagate permissions o [2001/11/19] kern/32118 mbr 21143 with dc driver will not select 10ba o [2001/11/20] kern/32124 imp Cannot set 128 bit wep key on prism2 (wi0 o [2001/11/23] kern/32226 time of day clock runs fast (approx twice o [2001/11/27] kern/32338 Network to disk write performance low und o [2001/11/28] kern/32353 if kern.maxproc > 512 sybase ASE 11.9.2( o [2001/12/10] kern/32668 peter NFS directory removal problems manifested o [2001/12/11] kern/32716 joe system hangs when running vid (usb webcam o [2001/12/13] kern/32797 Problem with IPX and netgraph(4) o [2001/12/13] kern/32809 yet another panic while syncing disks aft f [2001/12/21] kern/33074 joe USB printer support does not detect print o [2001/12/22] kern/33085 jlemon Samba's NMBD cannot find alias interface o [2001/12/24] kern/33138 pnp problem in 4.3, 4.4, 4.5 o [2001/12/26] kern/33201 net/net_osdep.c:if_name is broken o [2001/12/30] kern/33344 memory leak in device resource config loa o [2002/01/02] kern/33464 soft update inconsistencies after system o [2002/01/04] kern/33535 invalid kernel diagnostic while writing d f [2002/01/07] kern/33653 DSL PPPoE connection error on 4.5-PRERELE o [2002/01/09] kern/33738 argv == NULL is not handled correctly by o [2002/01/13] kern/33833 luigi Correct kernel config for 4.4-RELEASE is o [2002/01/13] kern/33839 joe usb0: host controller halted (involving A o [2002/01/16] kern/33940 quotactl allows compromise gid-quotas o [2002/01/16] kern/33974 sound Can not record anything with emu10k1 on 4 o [2002/01/17] kern/34017 The siginfo_t passed to the signal handli o [2002/01/18] kern/34020 programs fail that poll(2) on fifos f [2002/01/26] kern/34306 gibbs 4.5-RC panics on boot with half-supported o [2002/02/01] kern/34544 joe Kernel crash on fclose() of /dev/kbd1 whe o [2002/02/04] kern/34619 TCP - FINs with different sequence number o [2002/02/03] kern/34582 wpaul Support for D-Link DFE-690TXD Cardbus PC o [2002/02/09] kern/34765 darrenr Unloading the ipl.ko module will panic th o [2002/02/10] kern/34801 darrenr TCP window size bug (afflicting IP Filter o [2002/02/17] kern/35061 joe After printing to HP Deskjet 656c USB pri o [2002/02/20] kern/35136 luigi VLAN & bridging & MTU o [2002/02/26] kern/35351 sound emu10k1: no posibility to record sound. K o [2002/02/27] kern/35396 poll(2) doesn't set POLLERR for failed co o [2002/02/28] kern/35399 poll(2) botches revents on dropped socket o [2002/02/28] kern/35429 select(2)/poll(2)/kevent(2) can't/don't n o [2002/02/28] kern/35442 Problem transmitting runts in if_sis driv o [2002/03/03] kern/35511 sis(4) multicast filtering doesn't pass s o [2002/03/07] kern/35645 Layer 2 switching using default router of o [2002/03/08] kern/35669 NFSROOT breaks without a gateway f [2002/03/08] kern/35691 mbr Realtek NIC driver does not work with Rea o [2002/03/09] kern/35703 /proc/curproc/file returns unknown o [2002/03/10] kern/35756 joe USB reattach of Sony DSC-S75 fails, USB s a [2002/03/16] kern/35985 re swap double mount o [2002/03/16] kern/35986 Wrong bpf-header preceading packet when u f [2002/03/16] kern/35989 720KB floppies unusable p [2002/03/17] kern/36038 bp sendfile(2) on smbfs fails, exposes kerne o [2002/03/20] kern/36147 bogus irq 7 message being issued o [2002/03/22] kern/36219 poll() behaves erratic on BPF file descri o [2002/03/22] kern/36220 panic: sched_sync: fsync failded vp 0xcf4 o [2002/03/28] kern/36415 roger the bktr driver incorrectly handles the s o [2002/03/29] kern/36482 Multiport starfire card (sf/ukphy) doesn' o [2002/03/29] kern/36522 des stat outside procs in procfs succeeds fro o [2002/03/31] kern/36566 System reboot with dead smb mount and umo o [2002/04/01] kern/36610 sos acd0: MODE_SENSE_BIG command timeout - re o [2002/04/05] kern/36784 Can't fcntl(fd, F_SETFL, ...) on a pseudo o [2002/01/04] kern/33532 sound Playing audio on some soundcards with pcm o [2002/04/07] kern/36858 murray The USB flash drive "Apacer HandyDrive" c o [2002/04/09] kern/36953 des linux emulation does not work well on SMP o [2002/04/14] kern/37057 Problem with rlimits on filesystem mounte o [2002/04/15] kern/37109 Kernel refuses to assign unused IP to tun o [2002/04/19] kern/37261 luigi kernel is not linking without "device eth o [2002/04/21] kern/37326 roger smbus/bktr crash when omitting "device ii o [2002/04/24] kern/37436 accept dead loop when out of file descrip o [2002/04/24] kern/37441 ISA PNP parse problem o [2002/04/24] kern/37443 incorrect move pointer in environment str o [2002/04/27] kern/37502 NFS client ignores mtime.tv_usec for open o [2002/04/30] kern/37589 imp Kernel panics upon resume from zzz on my o [2002/05/01] kern/37635 joe USB ufm driver using major 200, although a [2002/05/01] kern/37656 robert Linux emulator 'Invalid Argument' error i o [2002/05/09] kern/37889 kernel panic when writing to a FAT32 part o [2002/05/12] kern/37998 panic: vinvalbuf: dirty bufs o [2002/05/12] kern/38011 imp Fatal Trap 12 using Xircom CE2 in IBM 760 f [2002/05/13] kern/38024 kernel panic with devices 'sio' removed f o [2002/05/14] kern/38095 bp vlan not supported with fxp f [2002/05/16] kern/38166 gad ipv6_gateway_enable="YES" breaks lpd o [2002/05/17] kern/38210 SIOCGIFCONF truncates interface list. o [2002/05/22] kern/38438 System crashes when starting XFree4 o [2002/05/24] kern/38495 soreceive fails to maintain invariant on s [2002/05/24] kern/38527 /dev/random does not obey O_NONBLOCK flag o [2002/05/25] kern/38549 threads the procces compiled whith pthread stoppe o [2002/05/25] kern/38554 changing interface ipaddress doesn't seem o [2002/05/25] kern/38562 bridge_cfg=*dc0* ; kldload if_dc => panic o [2002/05/27] kern/38632 imp Loss of connection with wi cards o [2002/05/30] kern/38752 rn_walktree_from not halting at the right f [2002/05/31] kern/38763 GENERIC kernel doesn't boot o [2002/06/01] kern/38794 sound ESS Solo driver truncates output o [2002/06/01] kern/38795 sound kldunload of snd_ess, snd_sb16, snd_sb8 p f [2002/05/30] kern/38736 joe kernel panic during memory stick removal o [2002/06/04] kern/38894 Dell PowerEdge 4600 PCI Bus scan problems o [2002/06/04] kern/38906 calcru: negative time of o [2002/06/07] kern/38983 Kernel fails to access disk o [2002/06/11] kern/39185 core dump binary in single user mode o [2002/06/12] kern/39199 joe CASIO QV-4000 not recognized by /sys/dev/ o [2002/06/13] kern/39233 NonConforming IPsec implementation from F o [2002/06/13] kern/39252 Syscons doesn't support 8-bit control cha o [2002/06/13] kern/39260 sound pcm0 locks on boot, Compaq Presario 1920 o [2002/06/15] kern/39329 '..' at mountpoint is subject to the perm o [2002/06/15] kern/39331 dwmalone namei cache unreliable for __getcwd() o [2002/06/16] kern/39388 groudier ncr/sym drivers fail with 53c810 and more p [2002/06/16] kern/39396 cjc firewall security loophole f [2002/06/17] kern/39447 4.5R &4.6R Kernels fail to boot w/ AHA294 f [2002/06/24] kern/39805 joe 4.6R install panics with umass0 device co o [2002/06/27] kern/39928 imp wi0 timeouts and hangs the system while s o [2002/06/27] kern/39937 ipstealth issue o [2002/06/30] kern/40044 SMP kernel fails to boot on DELL 610 o [2002/07/02] kern/40122 sound Device pcm stopps booting Kernel 4.6 o [2002/07/03] kern/40139 darrenr ipfilter issue o [2002/07/09] kern/40394 if_tap driver hard coded permission check o [2002/07/14] kern/40558 UDP6 sockets do not receive responses of o [2002/07/14] kern/40561 jlemon TTCP does not work with IPv6 o [2002/07/14] kern/40574 sound NeoMagic soundcard detection on Gateway S o [2002/07/19] kern/40766 imp NEWCARD freeses system while card inserti o [2002/07/19] kern/40787 page fault while in kernel mode o [2002/07/19] kern/40792 joe signals lead to data loss on device ugen o [2002/07/22] kern/40895 wierd kernel / device driver bug f [2002/07/22] kern/40903 Busy_count is < 0 message keeps counting o [2002/07/26] kern/41007 overfull traffic on third and fourth adap o [2002/07/29] kern/41125 adrian squid-2.4.STABLE7 loop on poll() - SMP ke o [2002/07/31] kern/41216 Get "NFS append race" error o [2002/08/13] kern/41632 luigi bridging when one interface has no carrie o [2002/08/16] kern/41720 if_nge_load=YES make system not bootable o [2002/08/16] kern/41740 grog vinum issues: page fault while rebuilding o [2002/08/21] kern/41850 qa sysinstall fails to create root filesyste o [2002/08/22] kern/41881 julian ng_device was not MFCed for 2 months o [2002/08/27] kern/42089 roberto ntp_gettime returns time in wrong scale o [2002/08/28] kern/42120 arp(8) fails due to ioctl SIOCGIFNETMASK p [2002/08/30] kern/42216 rwatson simultaneous multiple server network fail o [2002/09/02] kern/42352 Impossible to set RCV timeout on a socket o [2002/09/05] kern/42457 Hack to allow Linux Matlab to exit o [2002/09/08] kern/42564 sound record bug with emu10k1 driver o [2002/09/08] kern/42578 Using PCI serial cards (puc) in SMP machi o [2002/11/17] kern/45373 mckusick softupdate / fs damaged after loss of pow o [2002/09/09] kern/42621 imp Dell Inspiron 5000e hangs when using Orin o [2002/09/10] kern/42629 panic in nfs_get o [2002/09/10] kern/42638 sound CS4326/4327 (MSS) buggy output playing 11 o [2002/09/11] kern/42652 error deleting r/o (by windows) files on a [2002/09/12] kern/42714 mbr dc ethernet driver is broken o [2002/09/13] kern/42727 [PATCH] Wrong MTU in need-frag ICMP using f [2002/09/15] kern/42805 System lockup f [2002/09/16] kern/42847 panic: backgroundwritedone: lost buffer o [2002/09/20] kern/42983 imp wi0 sporadically freezes the system for 1 o [2002/09/20] kern/43151 Panic 20 seconds after resume o [2002/09/21] kern/43175 joe uvisor.c table error o [2002/09/23] kern/43314 kernel panic "clist reservation botch" o [2002/09/25] kern/43352 luigi ipfw aborts processing file/pipe when del o [2002/09/28] kern/43462 joe copying files from olympus C-4040 digital o [2002/10/02] kern/43599 Balloc did not check mallocated pointer i a [2002/10/02] kern/43605 luigi enabling polling in the kernel causes pag o [2002/10/07] kern/43808 joe usb kernel panics a [2002/10/09] kern/43885 ken USB CDROM does not work with vmware 2.x o [2002/10/10] kern/43887 threads abnormal CPU useage when use pthread_mute o [2002/10/11] kern/43953 Backport of BMC5703 drivers o [2002/10/12] kern/43984 rp driver does not support multiple PCI c o [2002/10/13] kern/44030 VNode/Swap troubles f [2002/10/14] kern/44063 sos ATA Tags (TQ) problems on 4.7-STABLE o [2002/10/15] kern/44087 fatal kernel trap when ifconfig a inet6 i o [2002/10/15] kern/44126 lnc network hungup at large traffics on V o [2002/10/16] kern/44130 Enabled apm hangs up FreeBSD kernel on i8 o [2002/10/18] kern/44202 -stable rp driver does not work with mult o [2002/10/21] kern/44355 After deletion of an IPv6 alias, the rout o [2002/10/23] kern/44417 luigi ipfw layer2 rules are not checked for eth o [2002/10/26] kern/44512 sound pcm driver generates static half the time o [2002/10/26] kern/44514 X11 mouse pointer disappears upon suspend o [2002/10/27] kern/44542 sound Locking issues with pcm o [2002/10/29] kern/44585 bug in lockmgr o [2002/11/03] kern/44853 Panic on resume o [2002/11/03] kern/44867 Frequent hard hangs on ASUS P4T-E/P4S-533 o [2002/11/05] kern/44936 ng_pppoe: relay session identifier does n o [2002/11/06] kern/45013 locking warnings in CURRENT o [2002/11/06] kern/45014 VLAN tag on frames received via em(4) are o [2002/11/06] kern/45023 flexlm does not run with linux-base-7, st o [2002/11/15] kern/45322 Panic on resume (zone: entry not free) o [2002/11/15] kern/45324 Re: 4.7 kernel does not find aha1 o [2002/11/18] kern/45403 imp Cannot install -CURRENT via pccard networ o [2002/11/21] kern/45579 joe Panic from USB stack after device detach o [2002/11/24] kern/45673 sound PC98 internal CS4231A is mis-detected to o [2002/11/24] kern/45679 sound Cannot record except 8bit-mono with CS423 o [2002/11/24] kern/45682 sound Sometime failed to record/play with CS423 o [2002/11/25] kern/45713 emoore If you use the amr driver, it is impossib o [2002/11/25] kern/45733 file descriptor flags and socket flags ou o [2002/11/26] kern/45777 crashdump issue with too-small dumpdev o [2002/12/02] kern/45913 imp WaveLan driver problems with latest -CURR o [2002/12/03] kern/45966 TCPDEBUG kernel option broken by changes o [2002/12/06] kern/46036 inaccurate timeouts in select(),nanosleep o [2002/12/09] kern/46152 Panic in adw dumping to tape o [2002/12/10] kern/46176 joe umass causes kernel panic if device remov o [2002/12/12] kern/46226 darrenr 5.0-RC1 ipfilter module [ipl.ko] fails to o [2002/12/13] kern/46239 posix semaphore implementation errors o [2002/12/26] kern/46551 cbb driver hangs on Sony Vaio o [2002/12/27] kern/46557 ipfw ipfw pipe show fails with lots of queues o [2002/12/28] kern/46576 FreeBSD 4.6 broke linux emulation install o [2002/12/29] kern/46618 joe USB (UHCI/ICH3) PALM connect/disconnect/c f [2002/12/29] kern/46619 acpi-jp Installation hangs on IBM Thinkpad T23 a [2002/12/31] kern/46647 silby Failure to initialize MII on 3Com NIC res o [2003/01/03] kern/46736 sound ISA audio CS4232 (HP Omnibook 5000C) work o [2003/01/08] kern/46872 Make sound work on TV-cards with MSDP3415 o [2003/02/18] kern/48435 wierd file system behavior o [2003/01/12] kern/47005 joe OHCI USB not noticing device detachments o [2003/01/16] kern/47152 pseudo-device ef in kernel does not creat f [2003/01/20] kern/47255 5.0-RELEASE install boot floppies hang wi o [2003/01/20] kern/47279 IBM 370 hangs on reboot f [2003/01/20] kern/47280 acpi-jp APCI functions crash / corrupt / fail to o [2003/01/20] kern/47286 device probing not verbose when using boo o [2003/01/22] kern/47352 sound pcm/ac'97, dsp device busy f [2003/01/24] kern/47451 qa 5.0 GENERIC(sysinstall CD) locks during b f [2003/01/26] kern/47512 bash in gdb triggers kernel panic o [2003/01/24] kern/47452 df(1) reports filesystem empty when it is o [2003/01/26] kern/47531 mutex_d panics SMP kernel o [2003/01/28] kern/47586 [PATCH] fix information-leak (mounts) in o [2003/01/29] kern/47628 msdosfs file corruption fix o [2003/01/29] kern/47648 creating alias on ethernet interface caus f [2003/02/03] kern/47871 Kernel panic in unpredictable moments o [2003/02/04] kern/47920 if ng_pppoe switches to nonstandard mode o [2003/02/04] kern/47937 hw.ncpu and kern.smp.cpus duplicate same o [2003/02/05] kern/47939 5.0-Current freezes when bktr device is o f [2003/02/06] kern/48020 phk kernel system time running fast o [2003/02/07] kern/48033 FFS superblock flags are being ignored? o [2003/02/07] kern/48062 mount -o snapshot doesn't work on +100GB f [2003/02/09] kern/48109 acpi-jp relaxed AML checking o [2003/02/09] kern/48116 Support for Synaptics touchpad o [2003/02/09] kern/48117 SMP machine hang during boot related to i o [2003/02/10] kern/48156 des Bug in procfs(5) closed in jail. o [2003/02/11] kern/48198 Non-jailed users can kill processes owned f [2003/02/14] kern/48279 Brooktre878 (bktr) may cause freeze o [2002/03/07] kern/35631 SKIP and IPSEC together cause kernel pani o [2003/02/15] kern/48316 File size limit on NTFS filesystems o [2003/02/16] kern/48338 sound pcm audio driver hogs /dev/dsp?.? o [2003/02/16] kern/48359 joe SiS 5597/8 USB + uscanner breakage o [2003/02/17] kern/48393 ufs2 snapshot code bugs o [2003/02/18] kern/48425 Tape drive EOT handling problems in 4.7 o [2003/02/22] kern/48560 Panic in if_vlan.c on CURRENT o [2003/02/23] kern/48614 VESA VGA modes for syscons lock up machin o [2003/02/26] kern/48715 thomas atacontrol detach panics system when ATAP o [2003/02/27] kern/48741 darrenr ipnat corrupts packets on gre interface w o [2003/02/27] kern/48755 5.0-p2 kernel panic probably filesystem r f [2003/02/27] kern/48758 kldunload if_{nic} can cause kernel panic o [2003/02/28] kern/48777 vidcontrol modes not restored on vt switc o [2003/02/27] kern/48752 freeze when installing 5.0 Release o [2003/03/05] kern/48952 joe uscanner0 hangs f [2003/03/06] kern/48986 sos 5.0-R/4.7R system hangs on HighPoint RAID o [2003/03/08] kern/49040 problem mounting root; ffs_mountroot can' o [2003/03/11] kern/49102 julian Resident set size calculation broken in 5 o [2003/03/07] kern/48996 Fatal trap 12 with incoming traffic from o [2003/03/20] kern/50149 joe Using Alcatel SpeedTouch results in "usb0 o [2003/03/25] kern/50298 unlimited usage of AGP memory make system o [2003/03/27] kern/50348 joe On usb.ko unload usb and usbN devices are o [2003/04/02] kern/50541 scottl raidframe does not work o [2003/04/03] kern/50574 imp dc driver incorrectly detects ADMtek chip o [2003/04/05] kern/50621 panic while TCP6 bind() o [2003/04/08] kern/50741 scottl "wiring down SCSI devices" as described i f [2003/04/10] kern/50803 bmilekic mbuf-related kernel panic (sbappendaddr) o [2003/04/11] kern/50807 NFS file locking as client deos not worki o [2003/04/11] kern/50827 [PATCH] no sane record locking on *nix. o [2003/04/07] kern/50683 fxp broken f [2003/04/12] kern/50856 kernel panic if mounting /tmp as mfs with o [2003/04/14] kern/50943 kernel panic to initialize NIC (Intel Pro o [2003/04/14] kern/50947 darrenr BUG: port eq 25 does not work anymore (po o [2003/04/23] kern/51308 sound Creative SB32 doesn't work under CURRENT o [2003/04/18] kern/51145 sound Audio Slows during Heavy I/O o [2003/04/21] kern/51243 Deadlock via syscons o [2003/04/22] kern/51274 ipfw ipfw2 create dynamic rules with parent nu o [2003/04/23] kern/51309 rl driver problem on large file transfers o [2003/04/23] kern/51332 njl QUIRK: BNCHMARK DLT1 requires SA_QUIRK_1F f [2003/04/24] kern/51341 ipfw ipfw rule 'deny icmp from any to any icmp o [2003/04/24] kern/51352 panic: malloc(M_WAITOK) in interrupt cont o [2003/04/29] kern/51583 tjr [PATCH] allow to work with devices and so o [2003/05/02] kern/51685 Unbounded inode allocation causes kernel o [2003/05/08] kern/51964 panic: race condition with realitexpire() o [2003/05/08] kern/51982 sio1: interrupt-level buffer overflows f [2003/05/09] kern/52002 mjacob the Fiber Channel isp driver does not wor o [2003/05/12] kern/52110 FS corruption when using unionfs o [2003/05/12] kern/52128 Unable to floppy install on Toshiba Libre o [2003/05/14] kern/52260 sys/net/if.c:if_detach in FreeBSD4 forget o [2003/05/16] kern/52331 groudier 4.7 to 4.8-REL upgrade: SCSI disks on sym o [2003/05/19] kern/52445 Kernel panics when mounting floppy on MFS o [2003/05/20] kern/52490 ^T'ing a zombie causes 'calcru: negative o [2003/05/21] kern/52527 sos atacontrol detach 0 causes kernel panic o [2003/05/22] kern/52561 5.1-BETA install fails on Dell PowerEdge f [2003/05/24] kern/52648 bonnie gives kernel panic in SMP but not o [2003/05/27] kern/52729 panic: bremfree: removing a buffer not on o [2003/05/27] kern/52728 vidcontrol 80x60 panics reproducably o [2003/05/28] kern/52756 4.8 RELEASE installer(generic kernel) sta f [2003/05/30] kern/52812 FTP problems when using dummynet + ipfilt o [2003/05/30] kern/52817 threads top(1) shows garbage for threaded process o [2003/05/30] kern/52818 vm_fault() calls vput() on shared-locked f [2003/06/02] kern/52866 Fatal 12 pagefault... when I load kernel o [2003/06/02] kern/52868 NFS v3 shows a negative size with volumes o [2003/06/04] kern/52935 occasional panic in ip_input with IPSEC o [2003/06/04] kern/52936 Huge writes to nfs exported FAT filesyste o [2003/06/04] kern/52925 acpi-jp Gigabyte GA-8IK1100 motherboard hangs on o [2003/06/05] kern/52962 imp discrepancy between ifconfig and wicontro o [2003/06/05] kern/52966 pdeuskar em0 not in promisc mode when bridging. o [2003/06/06] kern/52988 mbr [patch] if_dc with ADMTek AN983B corrupts o [2003/06/07] kern/53008 [PATCH] genwakecode generates errornously o [2003/06/15] kern/53334 o [2003/06/18] kern/53447 poll(2) semantics differ from susV3/POSIX f [2003/06/18] kern/53481 5.1R does not recognise xl0 at every star o [2003/06/20] kern/53566 IBM Eserver (245 || 345) + ServeRaid 5i i o [2003/06/21] kern/53601 Quirk entry for Casio Exilim EX-S3 digita o [2003/06/23] kern/53656 Problem with if_dc and Davicom DM9102AF o [2003/06/25] kern/53712 anholt drm/DRI broken (out of DMA buffers?) for o [2003/06/25] kern/53717 4.8-RELEASE kernel panic (page fault) o [2003/06/27] kern/53847 software hang o [2003/06/30] kern/53920 sluggish TCP connection o [2003/06/30] kern/53927 imp wi0: device timeout problem with PRISM 2. o [2003/06/30] kern/53940 imp Some WiFi devices cannot connect to hosta o [2003/07/01] kern/53987 smbfs can't access to files with symbol ¿ o [2003/07/02] kern/54049 sound Sound driver reports device busy and show o [2003/07/07] kern/54188 [PATCH] touchpad doesn't work on some Ace o [2003/07/09] kern/54248 nge/vlan: kernel panic o [2003/07/09] kern/54295 [PATCH] ng_rfc1490(4) does not support Ci o [2003/07/10] kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o [2003/07/10] kern/54331 robert shutdown() on a socket registered in a kq o [2003/07/15] kern/54495 acpi-jp ACPI problem on Compaq Evo N620c a [2003/07/14] kern/54488 pdeuskar em driver does not send out gratituous ar o [2003/07/16] kern/54539 devinfo/devstat lists too many if_tun res o [2002/02/02] misc/34568 turning printer on and off hangs the comp o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati a [1999/04/08] misc/11024 mtm getpwnam(3) uses incorrect #define to lim o [1999/05/05] misc/11525 dwmalone [PATCH] Networking patches to increase # o [1999/09/26] misc/13978 peter a write to last column bug appears since a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested o [1999/12/23] misc/15662 markm [PATCH] perl5 Sys::Hostname fails if no P s [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm o [2000/03/10] misc/17310 wpaul NIS host name resolving may loop forever f [2000/03/20] misc/17517 mbr 100/10baseT card resets under load o [2000/03/24] misc/17584 groudier fatal SCSI error with a Symbios 53c875 co o [2000/02/25] misc/16991 jhb booting install disk and USB o [2000/04/17] misc/18065 mdodd FREEBSD 4.0 crashes on boot Compaq Prolia o [2000/07/13] misc/19909 Problem with NFS client in 4.0-STABLE p [2000/07/17] misc/19994 fenner sscanf() fails on 64-bit operations o [2000/07/25] misc/20172 byacc 1.9 fails to generate $default tran o [2000/08/10] misc/20521 mjacob /etc/rmt several problems o [2000/08/26] misc/20861 threads libc_r does not honor socket timeouts o [2000/09/07] misc/21089 vi silently corrupt open file on SIGINT w s [2000/09/18] misc/21384 greid pcm driver has static in recorded audio o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites o [2000/10/15] misc/21998 green ident only for outgoing connections o [2000/12/14] misc/23561 emulation Linux compatibility mode does not support o [2001/01/16] misc/24391 cannot kill amd after interface disappear s [2001/01/23] misc/24590 standards timezone function not compatible witn Sin o [2001/01/25] misc/24641 threads pthread_rwlock_rdlock can deadlock o [2002/01/25] misc/34270 man -k could be used to execute any comma p [2001/03/07] misc/25585 dds sed.test 8.16 puts bugged sed into infini o [2001/03/16] misc/25851 qa Security hole in anonymous FTP setup scri o [2001/03/22] misc/26002 n_hibma Poor read/write performance on uhci USB c o [2001/04/03] misc/26320 alfred mountd breaks IRIX automounter o [2001/04/10] misc/26486 setnetgrent hangs when netgroup contains o [2001/04/27] misc/26897 qa 4.3R sysinstall fails to create swap part a [2001/06/05] misc/27893 sos can't burn audio cds on LG CD-RW CED-8083 o [2001/06/05] misc/27896 Error in /etc/exports invalidates entire o [2001/06/12] misc/28095 [PATCH] pax may descend into directories o [2001/06/29] misc/28508 problems with backup to Tandberg SLR40 st o [2001/09/15] misc/30590 /etc/hosts.equiv and ~/.rhosts interactio o [2001/10/18] misc/31363 qa sysinstall "partition editor" silently co o [2001/12/30] misc/33370 qa Post configuration issue f [2001/12/26] misc/33213 ume rarpd fails to init IPv6 enabled interfac o [2002/01/07] misc/33672 sheldonh telnetd and mount_mfs signal handlers cal o [2002/02/11] misc/34842 VmWare port + NIS causes "broadcast storm o [2002/02/19] misc/35116 keyinfo reports root's keyinfo o [2002/02/25] misc/35310 des SSHing with expired password does not bri o [2002/02/26] misc/35350 Can't boot on ASUS TXP4 o [2002/03/03] misc/35506 innetgr() doesn't match wildcard fields i o [2002/03/07] misc/35662 send-pr and/or web pr query system screws o [2002/03/11] misc/35774 [SECURITY] Suboptimal auditing possibilit o [2002/03/19] misc/36086 trhodes Kerberos Problem/Handbook wrong/Followup o [2002/04/11] misc/36999 2 Default Routes Created o [2002/04/23] misc/37399 rsh does not work from Win 2k to freeBSD o [2002/04/29] misc/37585 qa System hangs on install at probing device o [2002/04/30] misc/37586 qa newfs failing in 5.0-DP1 initial install o [2002/05/03] misc/37710 murray LAN interface in wrong state after attemp f [2002/05/05] misc/37775 netsmb/smb_subr.c needs opt_global.h in S o [2002/05/08] misc/37863 Configuration of X corrupts screen, and i o [2002/05/18] misc/38241 mount_cd9660 doesn't mount/read multisess o [2002/05/26] misc/38582 qa sysinstall sets newfs flag after changing f [2002/06/02] misc/38835 qa sysinstall always installs crypto o [2002/06/10] misc/39104 sos The disc in your drive looks more like an o [2002/06/29] misc/40001 grog vinum showing -2 drives after removing se o [2002/07/04] misc/40206 Can not assign alias to any POINTOPOINT i o [2002/07/06] misc/40260 qa sysinstall hangs up detecting devices (No o [2002/08/01] misc/41242 periodic scripts make unwarrented assumpt o [2002/08/04] misc/41331 threads Pthread library open sets O_NONBLOCK flag f [2002/08/11] misc/41557 periodic daily -> 500.ipfwdenied -> syste o [2002/08/26] misc/42029 add rdist flags to /etc/periodic/daily/32 o [2002/08/27] misc/42062 2 computers with the same network interfa o [2002/08/28] misc/42115 luigi PicoBSD: fix build script for 4.6-STABLE o [2002/08/29] misc/42172 des ftp and fetch client needs an active comm o [2002/09/13] misc/42748 joe USB on hardware list does not work o [2002/09/15] misc/42801 FreeBSD freezes when opening cuaa0 with a o [2002/09/16] misc/42849 MBR is scribbled on by by freebsd o [2002/10/04] misc/43674 Able to bypass expired password o [2002/10/12] misc/43976 bmah Binary upgrade to 4.7R fails if package ' s [2002/10/16] misc/44148 installworld in 4.7-STABLE does not insta o [2002/10/17] misc/44185 Problem adding route with -interface opti p [2002/10/19] misc/44268 ache [PATCH] FreeBSD is missing lt_LT.ISO8859- o [2002/10/28] misc/44578 getnetgrent fails to read NIS netgroup ma o [2002/12/13] misc/46245 sound AC'97 is not supported on ABIT BW7 o [2003/01/02] misc/46694 imp Getting DUP packets when in Promiscous mo p [2003/01/09] misc/46902 tjr Error with mount_smbfs and 15 Char Netbio o [2003/02/16] misc/48325 /etc/periodic/security/100.chksetuid does o [2003/02/19] misc/48461 murray $EDITOR on the fixit CD is wrong. o [2003/03/03] misc/48881 [PATCH] The influence of /etc/start_ifnam o [2003/03/13] misc/49984 des openSSH crashes while password based auth p [2003/04/17] misc/51085 ache FreeBSD is missing ja_JP.eucJP locale. o [2003/04/18] misc/51146 qa Incorrect error message when configuring o [2003/04/25] misc/51409 us.emacs.kbd doesn't have 'boot' o [2003/05/12] misc/52122 make release does not use proper binaries o [2003/07/02] misc/54004 Incorrect usr/src/release/sysinstall Make o [2003/07/07] misc/54189 DNS resolver should resolve hostnames wit f [2000/01/24] ports/16343 reg bsd.port.mk cannot override make.conf. o [2000/08/08] ports/20490 tg Termios timeout parameters, VMIN, VTIME, o [2000/09/14] ports/21264 markm tn3270 port receives segmentation fault o [2000/10/02] ports/21714 sobomax audio problem with nil o [2001/02/11] ports/25007 max telnetx problem on 4.x o [2001/02/21] ports/25272 rse Using eperl as cgi/nph binary executor ca o [2001/04/23] ports/26797 ports-bugs arla-0.34.6 causes kernel panic/page faul o [2001/06/12] ports/28102 ports-bugs Recent changes to 4.3-STABLE break arla-0 o [2001/06/14] ports/28155 portmgr DESTDIR is used incorrectly in bsd.port.m o [2001/06/24] ports/28398 ports-bugs ja-dvips cannot find tex.pro o [2001/06/28] ports/28491 kiri www/w3-4 port: mismatch between pkg-plist o [2001/07/11] ports/28889 lioux qpopper-4.0.3 error: Insufficient room to o [2001/07/19] ports/29098 jedgar p5-Mysql port references wrong directory o [2001/08/14] ports/29704 bp Imagemagick Identify utility crashes when o [2001/09/10] ports/30490 sobomax yacc in world does NOT fully respect TMPD o [2001/09/25] ports/30823 ports-bugs New port: KinterbasDB, Python module to a o [2001/09/30] ports/30947 ports-bugs mail/mahogany fails to build, conflicts w o [2001/10/10] ports/31191 ports-bugs netsaint - plugins sometimes not found o [2001/10/11] ports/31216 znerd New port: devel/plist-builder o [2001/10/26] ports/31511 obrien g++30 produces binaries which SIGBUS when o [2001/11/07] ports/31819 jmz ports/ispell install doesn't work o [2001/11/09] ports/31893 des gnats-3.113.1 conflicts with /usr/bin/sen o [2001/11/19] ports/32121 anholt xf86cfg 4.1.0 writes bad "Chipset" value o [2001/11/23] ports/32234 tobez Perl ports not $LOCALBASE clean o [2001/12/11] ports/32700 assar inode changes for large o [2001/12/21] ports/33080 ume grkrellmvolume interferes with the abilit o [2002/01/15] ports/33927 ports-bugs ja-dvipdfm port requires texmf/dvips/base o [2002/01/15] ports/33929 doc Section 15.15 of the FreeBSD Porter's Han o [2002/02/08] ports/34730 lioux new port qmail-scanner - a virus-scanning o [2002/02/26] ports/35353 green cfs strips eighth bit of file name on "ou o [2002/04/07] ports/36846 ports-bugs fxtv 1.03 freezes the system when $LANG=d o [2002/04/08] ports/36879 mbr emulators/vmware2 freezes and reboots sys o [2002/04/11] ports/37006 dirk cdrecord does not work with Teac USB CDRW o [2002/04/19] ports/37262 ports-bugs gphoto2 fails to find supported USB digit o [2002/04/22] ports/37361 ports-bugs installing gcc30 port breaks devel/gettex o [2002/05/12] ports/37995 trevor lilypond port will not build due to bison a [2002/05/12] ports/38018 znerd ports/www/jakarta-tomcat4: make passing o a [2002/05/12] ports/38020 znerd ports/www/jakarta-tomcat4: stop tomcat vi o [2002/05/17] ports/38212 knu XFree86-4 and portupgrade get dependencie f [2002/05/27] ports/38602 ports-bugs x11-wm/tvtwm is confused about PREFIX o [2002/06/08] ports/39054 portmgr [PATCH] Support USE_OPENSSL=yes in bsd.po o [2002/06/11] ports/39148 cy screen consumes 100% when run o [2002/06/11] ports/39149 ume ports/mail/cyrus-imapd: cyradm causes per o [2002/06/11] ports/39151 trevor acroread5 install fails o [2002/06/18] ports/39479 cy Binary version of screen-3.9.11_1 in port s [2002/06/22] ports/39660 portmgr add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DI o [2002/06/23] ports/39760 jedgar ports/math/rcalc is too old and contains o [2002/06/24] ports/39788 mharo building proftpd in ports ignores WITH_MY o [2002/06/25] ports/39859 nbm ports/www/publicfile confused file name i o [2002/07/03] ports/40167 bp mars_nwe does not report disk full errors o [2002/07/15] ports/40610 jmz Latex build "cannot find Hyphenation patt o [2002/07/16] ports/40672 sobomax wsoundserver defaults to using esound and o [2002/07/22] ports/40886 ache pkpkg_delete apache-1.3.26_3 does not w o [2002/07/05] ports/40216 anholt [xmh] xmh is unstable o [2002/07/05] ports/40218 anholt [xmh] mail list does not refresh automati o [2002/07/05] ports/40223 anholt [xmh] Deleted mail does not appears in sc o [2002/07/29] ports/41128 greid recv_addr init wrong and 512 byte udp pac o [2002/08/24] ports/41966 edwin audio/play: sblive, can cause "Device bu o [2002/08/28] ports/42118 petef mail/isoqlog fails to compile due to auto o [2002/09/07] ports/42516 openoffice OpenOffice.org generate wrong WM_LOCALE_N f [2002/09/09] ports/42612 ports-bugs gphoto2 2.1 core dumps on DC290 o [2002/09/10] ports/42643 fanf new mainstream version from sysutils/cfen f [2002/09/10] ports/42647 ports-bugs port pybliographger does not configure o [2002/09/12] ports/42713 wjv biology/emboss : problems building EMBASS o [2002/09/13] ports/42729 obrien bash manpage has /bin/bash as location fo a [2002/09/14] ports/42777 openoffice OpenOffice install fails o [2002/09/14] ports/42783 steve open-motif port doesn't compile o [2002/09/19] ports/42964 billf /usr/ports/net/mtr: I don't want mtr-gtk o [2002/09/20] ports/43036 perky python-doc packages aren't found by pydoc o [2002/09/23] ports/43301 steve mwm confused by mouse events following up o [2002/09/28] ports/43454 www Packages hard to find, often missing o [2002/10/07] ports/43796 ports-bugs x11-toolkits/xview does not build on 5.0 f [2002/10/15] ports/44101 trevor Netscape 7 port fetches unspecified compo o [2002/10/17] ports/44192 edwin joe o [2002/10/19] ports/44295 ports-bugs New port: MLton, an optimizing Standard M o [2002/10/24] ports/44440 sobomax www/viewml won't compile if qt3 installed o [2002/10/08] ports/43847 ports-bugs new ports: babytrans,gsfv,mmail,tetradraw f [2002/10/30] ports/44759 ports-bugs ghostscript-gnu-7.05_3 produces incorrect f [2002/10/31] ports/44799 dirk mysql323-server (3.23.53) fails to build o [2002/11/02] ports/44835 knu portupgrade vs. docproj dependencies o [2002/11/12] ports/45234 ports-bugs timidity++ portupgrade problem, removes s o [2002/11/18] ports/45417 jim everybuddy installs modules in wrong plac o [2002/11/19] ports/45490 ports-bugs tightvnc leaks connections o [2002/11/19] ports/45495 portmgr Fix port bsd.port.mk to build when there o [2002/11/26] ports/45757 trevor mail/xc-mail: update to current (2.2) & c o [2002/11/27] ports/45805 ports-bugs security/sfs does not build on Alpha o [2002/11/30] ports/45894 sobomax wxgtk-2.2.9 conflicts with /usr/ports/dev o [2002/12/03] ports/45972 tobez Perl system() calls will hang if the proc o [2002/12/05] ports/46008 kiri [PATCH] Update mail/mew2 to Mew 2.3 o [2002/12/05] ports/46013 dbaker misc/dnetc: fix install error o [2002/12/06] ports/46039 ports-bugs adzapper install fails out of the box o [2002/12/09] ports/46149 trevor Celestia build fix o [2002/12/11] ports/46180 ports-bugs lang/squeak3 creates $PREFIX/bin/squeak s f [2002/12/15] ports/46278 edwin New Port: games/vegastrike o [2002/12/17] ports/46322 tobez lang/perl5 - string '0' (zero) is not con o [2002/12/17] ports/46338 ports-bugs cyrus-sasl-1.5.27_7 mysql_verify_password o [2002/12/20] ports/46399 ports-bugs libdvxencore permissions o [2002/12/21] ports/46443 ports-bugs lang/jgnat compilation failure o [2002/12/25] ports/46530 ports-bugs GtkAda2 links against unexistent libgthre o [2002/12/26] ports/46554 tobez fix a regex bug dealing with utf8 strings o [2003/01/03] ports/46741 ports-bugs PVM-POV fails trying to locate file/folde s [2003/01/07] ports/46846 lioux livecd: Running fails due to old patches o [2003/01/10] ports/46964 ports-bugs Failure when running "make install" on ex o [2003/01/11] ports/46985 sobomax port x11-toolkits/py-wxPython broken on - o [2003/01/14] ports/47061 ports-bugs Conflicting system headers by build of gr o [2002/11/11] ports/45210 ports-bugs Broken Linux ABI Emulation in FreeBSD 4.7 o [2003/01/15] ports/47107 nbm sip port doesn't build o [2002/10/31] ports/44802 will games/xkobo broken on -current o [2003/01/19] ports/47212 lioux Port `multimedia/libdvdread' could not be o [2003/01/20] ports/47245 znerd daemonctl scribbles over log file when si o [2003/01/20] ports/47273 portmgr Ports tree references wrong crypto librar o [2003/01/21] ports/47303 wjv Update biology/p5-bioperl to latest relea o [2003/01/20] ports/47285 lioux libmpeg2 fails to build on Alpha f [2003/01/23] ports/47405 lev scribus could not save russian letters an o [2003/01/30] ports/47700 ports-bugs New port: XawPlus, a 3D replacement for X f [2003/01/31] ports/47768 ports-bugs print/ghostscript-afpl gv (3.5.8_1) can't o [2003/01/31] ports/47713 lioux multimedia/ffmpeg - "make deinstall reins f [2003/02/02] ports/47807 knu ruby-bdb1 fails to install o [2003/02/02] ports/47809 ports-bugs New port: Ukrainian accounting system. o [2003/02/03] ports/47842 cy security/tripwire fails to build under CU o [2003/02/05] ports/47942 lioux qmail-tls MASTER_SITES and naming convent o [2003/02/09] ports/48130 kris games/falconseye can't save games or bone o [2003/02/07] ports/48073 ports-bugs ports version of linux-eagle missing libs o [2003/02/08] ports/48091 ports-bugs port install fails on minimum system o [2003/02/16] ports/48334 kde KDE System Guard (`sysutils/kdeadmin3') d o [2003/02/16] ports/48335 kde Bug in `kpackage' from `sysutils/kdeadmin o [2003/02/16] ports/48343 ports-bugs Several issues with the www/zope port o [2003/02/16] ports/48346 dwcjr samba-devel port thinks 5-CURRENT is SVR5 o [2003/02/20] ports/48506 lioux multimedia/libmpeg2 mcpu build problem on o [2003/02/26] ports/48737 znerd java/jdk13-doc - 5572 files missing from o [2003/03/01] ports/48803 kde KDE 3.1 (kxkb) break XKB configuration an o [2003/03/01] ports/48805 kde `Segmentation fault' for games/nethack34- o [2003/03/02] ports/48841 ports-bugs tls on postfix does not work (smtp and sm o [2003/03/02] ports/48852 kris sysutils/pstree can go into infinite loop o [2003/03/09] ports/49056 trevor Festival fixes for newer GCCs [PATCH] o [2003/03/13] ports/49995 phantom Native JDK1.4.1 build fails if WRKDIRPREF o [2003/03/15] ports/50042 mbr ports/www/mod_frontpage causes Bad System o [2003/03/16] ports/50062 knu portupgrade does not process directives f o [2003/03/17] ports/50083 lioux qpopper 4.0.5 tarball file permissions do f [2003/03/18] ports/50093 kde x11-toolkits/qt31 port lacks of configura o [2003/03/18] ports/50104 ports-bugs Zope package does not set sticky bit on v o [2003/03/21] ports/50162 adrian update ports www/squid to 2.5-stable2 o [2003/03/28] ports/50402 knu glib20 port: pthread_getschedparam is mis o [2003/03/29] ports/50417 phoenix Phoenix does not respect /usr/X11R6/lib/b o [2003/03/29] ports/50418 phoenix Phoenix file "unix.js" links to old versi o [2003/04/07] ports/50694 lioux mail/qmail-ldap edit mismatch causes CLEA o [2003/04/10] ports/50795 ports-bugs misc/solfege does not function o [2003/04/11] ports/50844 ports-bugs MPlayer fails to build on Alpha o [2003/04/15] ports/51007 dirk cdda2wav rips glitches on 5.0 o [2003/04/16] ports/51069 wjv [PATCH] p5-XML-Twig does not correctly de o [2003/04/17] ports/51089 lioux net/dctc refuses to connect to any hub f [2003/04/17] ports/51113 knu /usr/ports/lang/ruby build failure; sed? o [2003/04/18] ports/51128 ports-bugs It is not possible to build security/drwe o [2003/04/18] ports/51140 jedgar No documentation for the port databases/d o [2003/04/22] ports/51281 tobez broken way of upgrading perl5.6.x to 5.8 o [2003/04/23] ports/51316 ports-bugs games/bsdtris: fails to run after install o [2003/04/23] ports/51324 knu lang/ruby-devel fails to remove lib/ruby/ o [2003/04/23] ports/51334 ports-bugs [New Port] Zend Optimizer 2.1.0a f [2003/04/24] ports/51340 edwin [Maintainer Update] Port: devel/zziplib o [2003/04/27] ports/51455 billf core dump when exiting ethereal o [2003/04/27] ports/51464 ports-bugs [Patch Port] devel/viewcvs (unforbidden) o [2003/04/15] ports/50975 anholt xclock segfaults o [2003/04/28] ports/51539 tobez dual perl installation breakage? o [2003/05/02] ports/51711 ports-bugs /usr/ports/emulators/linux_base will not o [2003/05/02] ports/51714 ports-bugs emulators/linux_base port fails to instal f [2003/05/05] ports/51789 ports-bugs high security hole in old dcgui/dclib por o [2003/05/05] ports/51807 ports-bugs g++295 can't parse header file f [2003/05/05] ports/51813 ports-bugs wrong mod_perl dependencies o [2003/05/06] ports/51837 murray [Unbreak Port] print/hugelatex (fix PLIST o [2003/05/07] ports/51941 ports-bugs Compiling error in /usr/ports/japanese/gn o [2003/05/07] ports/51946 jedgar grub port looking for /dev/rfd0 o [2003/05/11] ports/52064 ports-bugs ns2 (ports/net/ns) was broken o [2003/05/11] ports/52067 anholt Machine reboots when loading X after cold a [2003/05/11] ports/52068 openoffice portupgrade of openoffice.org-1.0.3 stall o [2003/05/11] ports/52079 ports-bugs vmware3 hangs when nmdm(4) is used as COM a [2003/05/11] ports/52087 openoffice error while building japanese/openoffice o [2003/05/14] ports/52236 phantom java/jdk14 does not build the Java Plugin o [2003/05/16] ports/52352 ports-bugs Postfix Configuration Summary Reporter o [2003/05/17] ports/52387 anholt XDMCP doesn't work [PATCH] f [2002/04/25] ports/37468 ports-bugs mpeg_play compiled on current/DP1 does no f [2002/05/23] ports/38460 ports-bugs core dumps with ghostscript o [2003/05/23] ports/52602 ports-bugs security/ident2 port segfaults when retur o [2003/05/25] ports/52684 lioux x11/rxvt-devel distinfo incorrect o [2003/05/28] ports/52755 ports-bugs ports net/openldap21 has recursive depend f [2003/05/28] ports/52774 znerd New port: mod_jk2 port (a clean build) o [2003/05/28] ports/52775 znerd New port: mod_jk2 slave port for apache2 o [2003/05/28] ports/52777 znerd New slave port: mod_jk-apache2 o [2003/06/01] ports/52849 dirk [update/new port] Fix a security issue in f [2003/06/04] ports/52944 ports-bugs CUPS is not configurable on 4.8-RELEASE o [2003/06/05] ports/52967 ports-bugs Checksum-with bdb/db o [2003/06/10] ports/53181 ports-bugs New port: postgresql-contrib o [2003/06/11] ports/53214 ports-bugs emulators/vmware3 tries to install emulat o [2003/06/13] ports/53290 lioux Adds russian charsets to `mail/spamoracle o [2003/06/17] ports/53414 ports-bugs port security/amavis-perl open filedescri o [2003/06/18] ports/53458 ports-bugs irc/tr-ircd breaks on non-IPv6 kernels o [2003/06/19] ports/53504 knu pkgdb -F causes ruby to fail (can not all o [2003/06/19] ports/53508 lofi security/newpg: gpgsm dumps core (while i o [2003/06/20] ports/53561 dirk patch to fix fail configure for mysql323 o [2003/06/23] ports/53659 dirk Can't build MySQL 323 on 5.1 o [2003/06/24] ports/53696 ports-bugs new port: Security scanner for Samba o [2003/06/27] ports/53843 ports-bugs trouble running getmail from cron o [2003/06/27] ports/53862 ports-bugs -CURRENT ports symlink busted o [2003/06/28] ports/53888 ports-bugs Linux Realplayer esound support and depen o [2003/07/01] ports/53962 nakai emulators/gngb: Bento fix. o [2003/07/03] ports/54067 mbr www/mod_auth_mysql_another fails to build o [2003/07/05] ports/54125 ports-bugs new port: x11/xinput o [2003/07/06] ports/54156 dougb Add foomatic and cups support to print/hp o [2003/07/08] ports/54233 kde ports-fix: fix for kio_fish in CURRENT o [2003/07/09] ports/54256 mita japanese/vflib: fix dependency on japanes f [2003/07/09] ports/54302 ports-bugs New port: p5-X11-IdleTime, Perl module to f [2003/07/10] ports/54332 gnome wrong char encoding in koi8-r table o [2003/07/08] ports/54234 ports-bugs gnu-radius fails to build on 4.8-STABLE o [2003/07/10] ports/54340 hrs textproc/xmlcatmgr: install failure o [2003/07/10] ports/54345 naddy Update port: devel/dmalloc o [2003/07/12] ports/54412 ade USE_LIBTOOL_VER overwrites autoconf-PATH f [2003/07/12] ports/54419 sf [PATCH] Compile failure with DIVX 5 o [2001/10/02] ports/30993 iedowse xxgdb cannot open source file o [2003/07/12] ports/54424 knu portupgrade ignores ALT_PKGDEP o [2003/07/13] ports/54435 lioux [PATCH] multimedia/libdvdread dvdcss_crac o [2003/07/16] ports/54546 openoffice OpenOffice-1.0.3_2 build fails: autoconf. o [2003/07/16] ports/54552 ports-bugs Easytag Fillall Field fails o [2003/07/17] ports/54585 roam [Update] Port: mail/vpopmail o [2003/07/17] ports/54587 gerald ports/lang/gcc33 bounds check patch does o [2003/07/17] ports/54588 knu databases/ruby-bdb WITH_BDB41 actually us o [2003/06/24] sparc64/53670sparc64 pthreads implementation on 5.1-Release sp o [2002/10/08] standards/43837wollman PKST (pakistan daylight time) changed fro o [2003/04/21] standards/51209standards [PATCH] add a64l()/l64a/l64a_r functions o [2003/06/05] standards/52972standards /bin/sh arithmetic not POSIX compliant o [2003/06/20] standards/53554standards interval timers not cleared in fork() o [2003/07/12] standards/54410standards one-true-awk not POSIX compliant (no exte o [2002/12/11] www/46195 www man page kadmind(8) not found at www.Free o [2003/04/18] www/51135 www Problems with the mailing-lists search in o [2003/07/18] kern/54622 acpi-jp current ACPI implementation problems o [2003/07/19] ports/54640 ports-bugs [PATCH] ports/net/gnu-radius/ cannot crea o [2003/07/19] ports/54647 ports-bugs Updated gsfonts 6.0 disables printing in o [2003/07/20] ports/54652 lioux Update/fix net/freenet yet again: 0.5.2.r o [2003/07/20] kern/54673 'stli' driver requires unavailable COMPAT o [2003/07/21] kern/54705 sound codec timeout during read of register 26 o [2003/07/21] ports/54726 ports-bugs fixing incorrect detecting of OpenLDAP de o [2003/07/21] ports/54727 adrian [PATCH] update to STABLE3 and request mai o [2003/07/22] ports/54743 ports-bugs Add support for Canon PowerShot A60 to s1 f [2003/07/22] ports/54747 dirk Coredump when building the database/mysql o [2003/07/22] i386/54756 i386 ACPI suspend/resume problem on CF-W2 lapt o [2003/07/22] ports/54776 nbm update ports/databases/phpmyadmin to 2.5. o [2003/07/23] i386/54781 i386 ACPI prevents psm to detect on Compaq Evo o [2003/07/23] ports/54783 mbr [PATCH] ftp/proftpd: fix for mysql41, MOD f [2003/07/23] ports/54792 ports-bugs [patch] port lang/mozart unbreak and upda o [2003/07/25] www/54838 phantom [PATCH] www/ru update o [2003/07/25] ports/54842 kde graphics/kdegraphics3 does not build on C o [2003/07/25] ports/54848 ports-bugs print/ghostscript-gnu fails building whil o [2003/07/25] bin/54854 cvs pserver sig11 crash on 4.8-R o [2003/07/25] ports/54855 lioux PATCH: fix mjpegtools divx tools segfault a [2003/07/25] kern/54874 ume ip6fw does not handle ESP correctly o [2003/07/25] ports/54875 ports-bugs hpijs loops on fatal error o [2003/07/26] kern/54881 New device/vendor ID and quirks for iRive a [2003/07/26] ports/54883 portmgr Add ports infrastructure for info files o [2003/07/27] bin/54959 tr utility has a bug in ISO8859-2 locale o [2003/07/27] ports/54966 ports-bugs id3v2 port has gcc 3.3 trouble o [2003/07/28] bin/54969 rcp '-r' option patch or MFC request o [2003/07/28] ports/54970 ports-bugs emulators/linux_base Port Makefile "dange o [2003/07/28] conf/54971 /etc/rc.d/mountcritermote requires ldconf o [2003/07/28] ports/54972 ports-bugs net/simicq compilation error o [2003/07/28] ports/54973 roam [Update] Port: mail/qmailadmin o [2003/07/28] www/54976 www [PATCH] www/ru/news update o [2003/07/28] ports/54977 ports-bugs o [2003/07/28] ports/54983 ports-bugs MAINTAINER-UPDATE: games/crimson 0.3.4 1173 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/07/17] ports/54583 ports-bugs adding Naken Chat to FreeBSD ports o [2003/01/27] advocacy/47559advocacy New FreeBSD PR campaign has been started. o [2001/01/26] alpha/24663 alpha Console output gets scribbled into /var/l o [2001/02/22] alpha/25284 alpha PC164 won't reboot with graphics console o [2001/06/07] alpha/27930 NE2000 not supported on FreeBSD Alpha 4.x o [2001/06/07] alpha/27933 alpha Time jitter under load on FreeBSD 4.3 alp o [2001/07/29] alpha/29299 alpha FreeBSD 4.3 Alpha + Tekram SCSI adapter p o [2001/10/01] alpha/30970 alpha Ensoniq 1371 (Creative chipset) does not o [2002/01/24] alpha/34232 alpha rpc.statd throws alignment errors o [2002/03/26] alpha/36327 alpha trap within cvt() while attempting to pri o [2002/05/13] alpha/38031 alpha osf1.ko not loaded during boot-time of li o [2002/10/01] alpha/43561 jhb kern_shutdown.c uses time_t as 'long int' p [2002/11/12] alpha/45240 alpha pstat -f column headings misaligned on Al o [2003/02/25] alpha/48676 alpha Changing the baud rate of serial consoles o [2003/04/12] alpha/50868 alpha fd0 floppy device is not mapped into /dev o [2003/06/02] alpha/52882 alpha fpsetprec/fp_prec_t unsupported on alpha? a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases a [1996/07/07] bin/1375 eivind Extraneous warning from mv(1) [PATCH] s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/12/02] bin/2137 tegge vm statistics are bad o [1997/01/10] bin/2442 setusershell()/endusershell() missing a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/03/10] bin/2934 cracauer sh(1) has problems with $ENV f [1997/05/16] bin/3608 jkoshy Telnet in linemode will break apart long o [1997/07/18] bin/4116 Kerberized login as .root fails to s [1997/07/26] bin/4172 des suggest reconnection option added to fetc o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 jmallett 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/25] bin/4629 calendar doesn't print all dates sometime o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/11/13] bin/5031 gad lpr does not remove original file if -s i s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1998/01/11] bin/5483 Login(1) clears utmp entry a [1998/01/28] bin/5591 jkoshy Trouble with LD_PRELOAD environment varia o [1998/01/31] bin/5609 gad lpd cannot send long files to HP's JetDir o [1998/02/10] bin/5712 mikeh /bin/chio code cleaup and option added o [1998/02/14] bin/5745 nik [PATCH] Add /usr/local/share/mk to defaul o [2002/01/21] bin/34146 newfs defaults and vfs.usermount=1 tug at o [2002/02/12] bin/34874 Netstat output to small s [1998/05/29] bin/6785 place for all the default dump flags o [2002/01/23] bin/34199 dwmalone [PATCH] top(1) RES/rss display incorrect o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m o [2000/01/23] bin/16316 dwmalone Enhancement: allow .fakeid to be a named f [1999/04/13] bin/11114 tjr make(1) does not work as documented with f [1998/03/28] bin/6161 assar 2.2.6 kerberos servers are awfully visibl a [1998/07/01] bin/7136 markm kerberized telnetd doesn't use gettytab % a [2001/04/25] bin/26854 sound Better fix for ESS Technology Maestro-2E o [1998/07/12] bin/7265 A warning flag is added to ln(1). a [1998/07/19] bin/7324 mtm Suggestions for minor modifications to ad s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re a [1998/10/28] bin/8479 dd Final \'s in /etc/exports did not work in a [1998/12/18] bin/9123 pax can't read tar archives that contain s [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy a [1999/01/05] bin/9333 jkoshy timestamp dump's progress a [1999/01/28] bin/9770 jmallett An openpty(3) auxiliary program o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/03/02] bin/10358 yar ftp(1) has problems with long pathnames o [1999/03/15] bin/10611 timed enhancement o [1999/04/11] bin/11085 Per-host configuration for syslog.conf p [1999/04/11] bin/11092 johan readlink(1) from OpenBSD o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/07/07] bin/12545 peter kldload(8) should be more sensitive to er o [1999/07/25] bin/12801 nvi infinite recursion with options "left o [1999/08/09] bin/13042 make doesn't handle wildcards in subdirec o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/12] bin/13108 authunix_create_default includes egid twi a [1999/08/13] bin/13128 cy pkg_delete doesn't handle absolute pathna o [1999/08/21] bin/13309 billf Fixes to nos-tun o [1999/08/26] bin/13397 nvi mishandles tags files under certain c o [1999/09/02] bin/13550 markm If no PATH is defined when calling Sys::H s [1999/09/21] bin/13869 man program saves multiple cached copies o [1999/09/21] bin/13882 pirzyk mount -p is missing the quota options o [1999/10/13] bin/14318 qa sysinstall upon install has some counter- o [1999/11/03] bin/14697 grog Exploitable buffer overflow in Vinum (Fre o [1999/11/16] bin/14925 getsubopt isn't poisonous enough o [1999/12/10] bin/15410 edquota -p copies current usage as well a p [1999/12/13] bin/15458 sort(1) doesn't sort correctly in some ca o [1999/12/15] bin/15497 NIS does not deal well with comments s [2000/05/23] bin/18773 matusita Merge ports/japanese/less to src/contrib/ o [2000/01/30] bin/16480 adrian locked accounts and adduser o [2000/02/21] bin/16880 [PATCH] pw(8) hardcodes directory creatio o [2000/03/09] bin/17289 gad [PATCH] wrong permissions on /var/run/pri o [2000/03/13] bin/17363 crontab(1) leaves files in /var/cron/tabs o [2000/03/22] bin/17546 qa Sysinstall does not let you configure NIS o [2000/03/27] bin/17623 date(1) -v doesn't handle time changes (D o [2000/03/29] bin/17679 wpaul wicontrol should take multiple args on co o [2000/04/19] bin/18100 update to src/usr.bin/from/from.c for mul s [2000/04/20] bin/18114 ken msps from iostat is wrong 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/18337 yokota New screen saver for FreeBSD o [2000/05/11] bin/18498 jhb allowing ELF_VERBOSE in /etc/make.conf o [2000/05/16] bin/18587 brian /etc/security: improove the dmesg diff ou o [2000/05/21] bin/18715 dec Changes to /etc/defaults/rc.conf, /etc/rc o [2000/05/21] bin/18738 tg /usr/bin/doscmd reports a 286 while booti o [2000/06/03] bin/18992 brian log packets blocked by filter rules o [2000/07/01] bin/19635 add -c for grand total to df(1), like du( o [2000/07/03] bin/19683 green mount displays incorrect mount point on f o [2000/07/07] bin/19772 df output wrong for union-mounts o [2000/07/20] bin/20054 yar ftpd: rotating _PATH_FTPDSTATFILE losts x o [2000/07/26] bin/20204 ps more doesn't handle 8-bit characters prop f [2000/08/02] bin/20371 mbr dhclient inserts bogus configurations o [2000/09/16] bin/21312 more incorrectly redraws screen on xterm o [2000/08/03] bin/20391 jhb sysinstall should check debug.boothowto s o [2000/08/09] bin/20501 mjacob extra flag to dump to offline autoloaders o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE o [2000/08/23] bin/20799 peter top's problem o [2000/08/26] bin/20881 There's no reason not to build DNSsec-DSA o [2000/08/27] bin/20889 dwmalone syslogd.c still uses depreciated domain A o [2000/08/28] bin/20908 qa /stand/sysinstall too limited in selectio o [2000/08/30] bin/20944 ru natd enhancements, default config file an o [2000/09/02] bin/21008 gad Fix for lpr's handling of lots of jobs in o [2000/09/06] bin/21080 mjacob dump doesn't use eject tape device correc o [2000/09/16] bin/21315 Shells often behave oddly when executing o [2000/09/24] bin/21519 standards sys/dir.h should be deprecated some more f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q s [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/10/04] bin/21751 ken libcam's cam_real_open_device() may lose o [2000/10/05] bin/21766 [PATCH] add -s (skip) flag to head(1) o [2000/10/16] bin/22033 iedowse [PATCH] to pw(8) to allow encrypted passw s [2000/10/16] bin/22034 nfsstat lacks useful features found in So o [2000/10/21] bin/22182 vi options noprint/print/octal broken o [2000/10/21] bin/22198 inet_ntop may set errno to ENOSPC and nee s [2000/10/27] bin/22351 green sed(1) fails with backslash on buffer bou o [2000/10/31] bin/22442 greid [PATCH] Increase speed of split(1) o [2000/11/04] bin/22612 schweikh crontab -e failures o [2000/11/09] bin/22730 fenner tcpslice doesn't handle long file offsets o [2000/11/24] bin/23082 dwmalone ntpd has only one reference-clock parser o [2000/11/29] bin/23180 Certain KOI8 characters are treated as "w o [2000/11/29] bin/23178 'talk' not doing right thing o [2000/12/01] bin/23204 length of salt in crypt() is not the same o [2000/12/02] bin/23233 kris Reincorporate /usr/bin/error in the FreeB a [2000/12/03] bin/23254 fenner yacc accepts bad grammer p [2000/12/11] bin/23472 mp gdb weirdness on programs compiled with - o [2000/12/18] bin/23635 mike [PATCH] whois enhancement - smarter whois a [2000/12/28] bin/23912 sheldonh underflow of cnt in vs_paint() by O_NUMBE o [2001/01/04] bin/24066 mp gdb can't detach from programs linked wit o [2001/01/16] bin/24390 standards Replacing old dir-symlinks when using /bi o [2001/01/18] bin/24435 qa Changing slice type causes Auto-partition o [2001/01/20] bin/24485 [PATCH] to make cron(8) handle clock jump o [2001/01/21] bin/24521 des ssh-agent exits when authenticating DSA v o [2001/01/23] bin/24592 cjc dmesg.boot Gets Overwritten without Reboo o [2001/01/31] bin/24757 yar ftpd not RFC compliant o [2001/02/08] bin/24953 green adduser ignores passwd_format in login.co o [2001/02/11] bin/25013 mv(1) cannot move unresolvable symlinks a o [2001/02/11] bin/25015 cp: options -i and -f do not work as docu o [2001/02/13] bin/25070 gad newsyslog(8) should send signals only onc o [2001/02/13] bin/25085 msmith mlxcontrol utility fails silently if devi f [2001/02/21] bin/25263 des openssh and /etc/login.access does not wo o [2001/02/21] bin/25273 add fs type feature to vnconfig(8) to all f [2001/02/22] bin/25278 dd bs accepts -s -c but not -sc o [2001/02/28] bin/25462 daemon(3) fails if called by a session le o [2001/03/01] bin/25477 billf pam_radius fix to allow null passwords fo s [2001/03/07] bin/25598 yar patch to let ftpd output message when cha s [2001/03/09] bin/25627 Cannot append hash after .elif in Makefil o [2001/03/12] bin/25724 quota(1) outputs wrong limits about NFS q o [2001/03/12] bin/25736 ac -d option probrem with overdays logon o [2001/03/06] bin/25572 des sshd core dump o [2001/03/22] bin/26005 MIME quoted-printable encoding added to v o [2001/03/29] bin/26201 nsayer telnet SRA password exchange trap when no o [2001/04/04] bin/26359 [PATCH] a minor nit in how netstat detect o [2001/04/06] bin/26375 markm PAMized su allows non-wheel members to su o [2001/04/09] bin/26468 pkg_delete clears dependencies after runn s [2001/04/23] bin/26803 des Fix fetch to allow FTP puts in '-o' & all o [2001/04/18] bin/26686 joe Freeze at boot from 4.3-RC4 floopies - US o [2001/04/28] bin/26919 qa sysinstall' fdisk can ONLY set bootable f o [2001/05/06] bin/27163 cracauer sh trap TSTP () deadly hangs o [2001/05/10] bin/27258 getty didn't check if if= isn't empty o [2001/05/11] bin/27268 fdisk does not recognize Linux extended p o [2001/05/12] bin/27281 vidcontrol(1) does not have error codes f [2001/05/12] bin/27283 brian netstat -i missing IPv4 input packet coun f [2001/05/07] bin/27188 jon fix of rsh non-interactive mode behaviour o [2001/05/14] bin/27319 obrien df displays amd pid processes o [2001/05/20] bin/27483 qa make sysinstall ask for the keymap at ins o [2001/05/23] bin/27604 change truncate to support low case size o [2001/05/27] bin/27687 fsck wrapper is not properly passing opti o [2001/05/27] bin/27697 assar trouble compiling libroken o [2001/06/08] bin/27972 losing information with talk o [2001/06/21] bin/28333 rtprio/idprio setuid problems o [2001/06/23] bin/28364 lex(1) generated files fail to compile cl o [2001/07/01] bin/28620 ru xinstall has no way to pass options to st o [2001/07/07] bin/28789 /usr/bin/last does not filter for uucp co o [2001/07/14] bin/28972 dwmalone gamma returns same result as lgamma o [2001/07/18] bin/29062 markm krb4 and krb5 multiply defined version sy o [2001/07/21] bin/29119 menu of fdisk editor in 4.3R does not lis o [2001/08/01] bin/29363 gad [PATCH] newsyslog can support time as ext o [2001/08/07] bin/29516 markm telnet from an non FreeBSD host still use o [2001/08/09] bin/29581 nectar proposed gethostbyXXXX_r() implementation f [2001/08/18] bin/29850 markm ftpd.c doesn't check via PAM/pam_acct_mgm o [2001/08/20] bin/29897 markm pam_unix patch, which uses loginclass pas o [2001/08/22] bin/29961 ru A4 paper size for groff knob for /etc/mak o [2001/09/04] bin/30321 strftime(3) '%s' format does not work pro o [2001/09/05] bin/30360 vmstat returns impossible data o [2001/09/06] bin/30392 sh: incorrect value of $? in here-documen o [2001/09/07] bin/30424 Generalization of vipw to lock pwdb while o [2001/09/09] bin/30464 threads pthread mutex attributes -- pshared f [2001/09/09] bin/30471 brian periodic script output to a file always a o [2001/09/12] bin/30542 [PATCH] add -q option to shut up killall o [2001/09/18] bin/30654 gad Added ability for newsyslog to archive lo f [2001/09/18] bin/30661 alfred FreeBSD-current fails to do partial NFS f a [2001/09/20] bin/30685 cjc Patch for usr.bin/hexdump a [2001/09/22] bin/30737 murray sysinstall leaks file descriptors on rest o [2001/09/25] bin/30812 giant termcap database update o [2001/09/25] bin/30819 /bin/mv results in warnings when /bin/cp o [2001/09/26] bin/30854 bootpd/bootpgw change - skip ARP modifica o [2001/09/27] bin/30863 bootpd/dovend.c Win95 compatibility impro o [2001/10/04] bin/31034 dwmalone regularly add original address logging fo p [2001/10/04] bin/31052 fenner Traceroute needs update o [2001/10/10] bin/31199 tunefs error is incorrect when enabling s o [2001/10/10] bin/31201 [patch] add free_space(chunk) to libdisk o [2001/10/20] bin/31387 When getuid()=0, mailwrapper should drop o [2001/10/22] bin/31432 umount(8) and unmount(2) don't corespond o [2001/10/29] bin/31588 change request to allow mount(1) to set t o [2001/11/10] bin/31906 No method available to unwind atexit(3) s o [2001/11/12] bin/31933 pw can interpret numeric name as userid d o [2001/11/14] bin/31985 New /etc/remote flag for tip to append LF o [2001/11/14] bin/31987 patch to allow dump(1) to notify operator a [2001/11/30] bin/32411 shutdown's absolute-time handling could b o [2001/12/04] bin/32501 quot(8) is stupid regarding the filesyste o [2001/12/10] bin/32667 systat waste too much time reading input o [2001/12/13] bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ o [2001/12/14] bin/32828 phk w incorrectly handles stale utmp slots wi o [2002/01/28] bin/34394 peter tgetent returns wrong value in libtermcap o [2001/12/21] bin/33066 rwatson sysinstall does not write to new disks as s [2001/12/23] bin/33133 keyinit outputs wrong next login password a [2002/01/07] bin/33661 PAP AuthAck/AuthNak parsing problem in pp o [2002/01/10] bin/33774 Patch for killall(1) o [2002/01/12] bin/33809 mux mount_nfs has trouble with embedded ':' o [2002/01/13] bin/33834 tjr strptime(3) is misleading o [2002/01/31] bin/34497 calendar(1) does not understand calendars o [2002/01/16] bin/33941 /usr/sbin/dev_mkdb dumps core s [2002/01/31] bin/34498 Error in vi manpage. o [2002/01/31] bin/34519 pkg_check(8) does not return exit code >0 o [2002/02/04] bin/34628 jkh pkg-routines ignore the recorded md5 chec o [2002/02/06] bin/34676 mbr dhclient always in -q quiet mode (PATCH E f [2002/02/07] bin/34728 murray DHCP hostname set as Hexadecimal string o [2002/02/11] bin/34832 /usr/share/man/cat3/setkey.3.gz linked to o [2002/02/11] bin/34834 "fix" of du(1) and -h o [2002/02/11] bin/34843 fenner `tcpdump port echo' filters for port 4 in o [2002/02/15] bin/34955 doc [PATCH] ps(1) is out of touch with realit o [2002/02/16] bin/35018 brian enhancing daily/460.status-mail-rejects s [2002/02/17] bin/35070 math(3) references section "3m", etc. o [2002/02/19] bin/35109 [PATCH] games/morse: add ability to decod o [2002/02/19] bin/35113 grdc enhancement: countdown timer mode s [2002/02/25] bin/35333 send-pr(1) vim syntax highlighting suppor o [2002/03/01] bin/35451 PATCH: pkg_add -r able to save local copy o [2002/03/05] bin/35568 make declares target out of date, but $? o [2002/03/08] bin/35671 wrong comments in rc.diskless1 o [2002/03/09] bin/35717 which(1) returns wrong exit status for m o [2002/03/11] bin/35769 w does not correctly interpret X sessions o [2002/03/12] bin/35838 Change to size of WID_IF in usr.bin/netst o [2002/03/14] bin/35886 [patch] Enhancement: custom time format f o [2002/03/14] bin/35894 bbraun popen.c in cron won't build without LOGIN o [2002/03/20] bin/36136 savecore -z option does not work o [2002/03/24] bin/36262 [PATCH] Fixed rusers idle-time reporting o [2002/03/27] bin/36374 Patch (against core dumps) and improvemet f [2002/03/29] bin/36477 gshapiro mailwrapper doesn't handle rmail calls o [2002/03/29] bin/36501 /usr/bin/calendar can't handle recurring o [2002/03/30] bin/36553 gad Two new features in newsyslog(8) o [2002/04/01] bin/36626 login_cap(3) incorrectly claims that all o [2003/05/20] bin/52469 ppp: Multiple devices using UDP don't wor o [2002/04/04] bin/36740 make ps obey locale (particularly for tim o [2002/04/04] bin/36757 EnhancementRequest binary which ought to o [2002/04/05] bin/36786 make ps use 24-hour time by default o [2002/04/08] bin/36902 [patch] proposed new format code %N for s o [2002/04/10] bin/36960 calendar doesn't effect -t option. o [2002/04/11] bin/37013 ls directory name output trailing slash d o [2002/04/14] bin/37074 bp [PATCH] Typographical error in output of o [2002/04/14] bin/37083 small improvement to talk(1): add clocks o [2002/04/15] bin/37096 Fixes to fsdb command-line handling [patc o [2002/04/24] bin/37424 nfsstat reports negative values o [2002/04/24] bin/37437 Add HTTP-style support to {vis,unvis}(1). o [2002/04/24] bin/37442 [PATCH] sleep.c to support time multiplie p [2002/04/25] bin/37448 obrien [PATCH] ldd/rtld support for more informa o [2002/05/01] bin/37650 imp Add skipPCCARD variable to sysinstall o [2002/05/02] bin/37672 pw(8) prints warnings after successful NI o [2002/05/02] bin/37676 threads libc_r: msgsnd(), msgrcv(), pread(), pwri o [2002/05/03] bin/37715 "pkg_info -g package_name_version" fail o [2002/05/04] bin/37733 su(1) does not behave the way it is descr o [2002/05/07] bin/37844 ru [PATCH] make knob to not install progs wi o [2002/05/17] bin/38168 installing curses programs and terminfo d o [2002/05/18] bin/38256 linking pax to pax_{cpio|tar} p [2002/05/19] bin/38303 billf tftpd -c patch o [2002/05/21] bin/38388 nectar request to add "openssl starttls" command o [2002/05/27] bin/38610 qa Sysinstall should be able to mount ISO im o [2002/06/05] bin/38931 Cleanup for WARNS=4 of src/games/fortune/ o [2002/06/05] bin/38940 Change: an option to *stat to allow supre p [2002/06/10] bin/39116 tjr /usr/bin/printf o [2002/06/12] bin/39198 sh aborts on variables with periods o [2002/06/14] bin/39311 rwatson you can't enable inetd in sysinstall with o [2002/06/18] bin/39463 mtm [PATCH] Add several options to fingerd o [2002/06/20] bin/39576 [PATCH] tail -f for multiple files p [2002/06/20] bin/39578 add more russian holydays o [2002/06/22] bin/39676 obrien lukemftpd manual pages fix + examples o [2002/06/24] bin/39818 johan cleaning sbin/atm code from warnings o [2002/06/24] bin/39819 tjr cleaning bin/sh code from warnings o [2002/06/25] bin/39866 johan cleaning sbin/fsdb code from warnings o [2002/06/25] bin/39867 johan cleaning sbin/mount_cd9660 and sbin/mount o [2002/06/26] bin/39893 setusercontext library call differs umask o [2002/06/26] bin/39905 johan cleaning sbin/restore code from warnings o [2002/07/02] bin/40127 [PATCH] Add functions for PID-file handli o [2002/07/24] bin/40958 apm on Acer TravelMate 351 could not resu f [2002/07/13] bin/40538 dougb mergemaster fixes and enhancements o [2002/07/14] bin/40572 vipw prints silly message if $EDITOR fail f [2002/07/14] bin/40570 mbr dhclient freeze the whole thing o [2002/07/15] bin/40597 add /sbin/fdisk ability of showing extend o [2002/07/15] bin/40617 brian /usr/sbin/ppp is not able to bind the nat o [2002/07/25] bin/40980 du(1)'s -h and -k options interact confus o [2002/07/26] bin/41012 brian /etc/periodic/daily/440.status-mailq assu o [2002/07/27] bin/41060 ready to import gzip 1.3.3 o [2002/07/27] bin/41070 added .warning in make(1) + two fixes o [2002/07/27] bin/41071 make NO to NO_ transition patch o [2002/07/30] bin/41159 new sed -c option to allow ; as a separat o [2002/07/30] bin/41190 in sed, report the { linenum instead of E o [2002/08/02] bin/41271 Non-suid-crontab. o [2002/08/04] bin/41307 ru libalias: logging of links lifecycle (add o [2002/08/04] bin/41310 des Added ,,-d'' option to truss(1) for chang o [2002/08/10] bin/41526 symlinked mount points get mounted more t f [2002/08/11] bin/41556 obrien [PATCH] wtmp patch for lukemftpd a [2002/08/12] bin/41583 assorted mtree bugs (+fixes) o [2002/08/22] bin/41902 [PATCH] Add queue depth to systat -v disk f [2002/08/30] bin/42213 joe moused(8) seems to delay some mouse event o [2002/08/30] bin/42217 libdisk segfaults with 1024 bytes/sector a [2002/08/31] bin/42275 roam [patch] sftp coredump if file specified b o [2002/09/02] bin/42338 imp pccard_ether should run ipf -y if ipfilte o [2002/09/03] bin/42386 cleaning code from warnings in libkvm o [2002/09/03] bin/42387 cleaning code of librpcsvc from warnings o [2002/09/03] bin/42388 cleaning code from warnings in libm o [2002/09/04] bin/42419 syslog enhancement for the nologin shell o [2002/09/04] bin/42430 Add -m option to du(1) for compatibility o [2002/09/09] bin/42609 pkg_info -qg doesn't handle missing files o [2002/09/13] bin/42725 dwmalone Patch for calendar to support Hungarian n o [2002/09/13] bin/42732 semenu Seg fault in mount_nfs o [2002/09/15] bin/42803 tconv, tic, captoinfo binaries missing fr o [2002/09/19] bin/42974 [patch] ISO 8601 date format option o [2002/09/20] bin/43139 /sbin/route -host option doesn't always s o [2002/09/25] bin/43367 incorrect report from 'who' after 'shutdo o [2002/09/25] bin/43372 Broken struct ufs_args in ufsmount.h o [2002/09/29] bin/43471 `ls -l` shows wrong size for big files (> f [2002/10/02] bin/43582 passwd(1) fails on nonexistent users o [2002/10/02] bin/43596 pkg_add does not propogate 'remote' to de o [2002/10/04] bin/43675 tjr uniq prints last, not first of the identi o [2002/10/08] bin/43819 changed truss output for utrace calls p [2003/05/16] bin/52324 maxim formatting of RTT wrong in ping6 a [2002/10/08] bin/43826 mbr dhclient on 'no carrier' interfaces takes o [2002/10/09] bin/43857 hm conflicting types in /usr/src/usr.sbin/i4 o [2002/10/11] bin/43938 roberto ntpd binds to local aliases o [2002/10/12] bin/43994 des sshd gives fatal while logging off o [2002/10/16] bin/44137 "make most" fails on rmail (RELENG_4) o [2002/10/17] bin/44188 qa cannot install FreeBSD 4.0-4.6 to Compaq o [2002/10/18] bin/44212 Unify 'recursive' options -r and -R o [2002/10/19] bin/44277 devinfo is not C++ safe o [2002/10/20] bin/44310 make ppp(8) add clients MAC address to al o [2002/10/21] bin/44329 wish for systat o [2002/10/21] bin/44343 [PATCH] sbin/fsdb.c o [2002/11/10] bin/45193 [PATCH] truss can't truss itself o [2002/11/11] bin/45229 restore(8) -i: ls reports mising files as o [2002/11/16] bin/45333 [PATCH] New option -r for chown and chgrp o [2002/11/19] bin/45486 Support for human readble (-h/-H) output s [2002/11/20] bin/45547 sos a patch to make burncd handle .wav files. a [2002/11/22] bin/45584 tjr read builtin function of sh does not read o [2002/11/23] bin/45659 portmap can not be bound to only loopback o [2002/11/24] bin/45701 markm spelling error in rogue o [2002/11/25] bin/45729 make rbootd transfere the default file if o [2002/11/26] bin/45749 [PATCH] rm -f in MS-DOS directory o [2002/12/01] bin/45896 dwmalone setnetgrent() should return error code o [2002/12/03] bin/45967 markm telnetd does not set SO_DEBUG for -debug o [2002/12/08] bin/46107 killall(1) can prematurely kill itself o [2002/12/08] bin/46110 tomsoft why does fsck work with / mounted r/o but o [2002/12/09] bin/46123 fenner PATCH: tcpdump needs -a flag if netmask i o [2002/12/11] bin/46203 [patch] make(1) missing trailing '\0' and o [2002/12/19] bin/46379 customize home-directory permissions in p o [2003/01/01] bin/46672 dump(8) program gives unnecessary -L warn o [2003/01/07] bin/46830 Make pkg_add respect prefix for dependanc o [2003/01/09] bin/46888 gad Add script run hook to newsyslog(8) o [2003/01/09] bin/46905 qa FreeBSD 5.x cannot be installed from mult o [2003/01/10] bin/46925 sysctl -a goes into an infinite loop... o [2003/01/16] bin/47149 ru make -C documented but not working o [2003/01/19] bin/47235 top reports inaccurate cpu usage s [2003/01/19] bin/47237 des HTTP_PROXY with libfetch stalls at 99% o [2003/01/21] bin/47350 rc.network supports only one ppp profile o [2003/01/22] bin/47387 [PATCH] gprof -K still requires "a.out" a o [2003/01/27] bin/47540 ru Make natd configurable in running state w o [2003/01/27] bin/47560 tar 'z' option gzip'd output has extra ga o [2003/01/27] bin/47566 grog Suggested patch: vinum status verificatio o [2003/01/28] bin/47596 daily security run complains if timezone o [2003/02/02] bin/47815 stty -all should work. o [2003/02/09] bin/48114 gethostname(3) can leave the wrong errno o [2002/10/17] bin/44200 ftp site keeps sockets open. o [2003/02/15] bin/48309 pppoe connections fail to establish if th o [2003/02/15] bin/48313 [patch] make yacc(1) use getopt(3) o [2003/02/16] bin/48342 joe [PATCH] usbd dynamic device list. o [2003/02/17] bin/48399 Can't put URL in GECOS phone field o [2003/02/18] bin/48443 /usr/sbin/periodic executes too many file o [2003/02/20] bin/48489 ru [PATCH] update information arp(4): descri o [2003/02/23] bin/48603 Getopt is broken. Patch included. o [2003/02/25] bin/48679 (5.0) xterm termcap/info entry seems prob o [2003/02/28] bin/48784 yar No way to disable directory listings in f o [2003/03/04] bin/48914 mike [PATCH] Add flag to whois(1) to query IAN o [2003/03/05] bin/48962 des [PATCH] modify /usr/bin/fetch to allow ba o [2003/03/06] bin/48989 qa Sysinstall's partition editor gets confu o [2003/03/12] bin/49959 ipfw ipfw tee port rule skips parsing next rul o [2003/03/13] bin/49983 markm [patch] Fix bug & improve telnet status o o [2003/03/19] bin/50118 calendar(1) dumps core if there is ./cale o [2003/03/25] bin/50300 Make the loader's use of terminal-control o [2003/03/25] bin/50310 ru natd / libalias fix to allow dcc resume i p [2003/03/26] bin/50328 kris ctm_smail doesn't handle large deltas wel o [2003/03/26] bin/50331 Changing uid with pw causes duplicate use o [2003/03/27] bin/50365 [PATCH] rc.sysctl cannot handle values co o [2003/03/30] bin/50461 ctm cannot handle the large files current o [2003/04/03] bin/50569 /bin/sh doesn't handles ${HOME}/.profile o [2003/04/04] bin/50613 [PATCH] pppd(8) incorrect CBCP response f o [2003/04/06] bin/50656 /bin/cp - wrong error on copying of multi o [2003/04/09] bin/50749 ipfw ipfw2 incorrectly parses ports and port r p [2003/04/13] bin/50924 "vmstat -f" says "unimplemented" but data o [2003/04/14] bin/50949 BUG: mtree doesn't honor the -P when chec o [2003/04/14] bin/50955 ru [PATCH] natd / libalias support for multi o [2003/04/15] bin/50971 du(1) doesn't understand UF_NODUMP flag o [2003/04/15] bin/50988 [Patch] find -size -- express argument in o [2003/04/16] bin/51070 add -p option to pom [PATCH] o [2003/04/17] bin/51091 fenner [FEATURE] Add -A (print ASCII) flag to tc o [2003/04/18] bin/51148 Control the cache size for pwd_mkdb to sp o [2003/04/19] bin/51151 du hardlinkmatching is slow - fix include o [2003/04/19] bin/51165 Login does not honor .hushlogin o [2003/04/21] bin/51205 nectar openssl in base system is not compiled th o [2003/04/22] bin/51296 calendar wrong for dates based on day+-nu o [2003/04/28] bin/51488 Compat patch: more(1) allowed filename to o [2003/04/28] bin/51493 ls usage is missing a few options o [2003/05/01] bin/51655 savecore needs ${dumpdev} as an argument o [2003/05/10] bin/52032 markm Telnet option contra telnet protocol o [2003/05/11] bin/52072 maxim Wrong behaviour of the ftpd when the OOB o [2003/05/13] bin/52190 [Patch] decode more syscalls in truss o [2003/05/15] bin/52271 qa sysinstall panics in machine with no hard o [2003/05/16] bin/52349 netstat -ni broken for vlan interfaces o [2003/05/20] bin/52489 [PATCH] ps tpt does not work o [2003/05/21] bin/52517 New functionality for /usr/bin/Mail f [2003/05/22] bin/52601 mbr [PATCH] rpc.yppasswdd fails if master.pas f [2003/05/27] bin/52746 tcsh fails to handle large arguements p [2003/05/28] bin/52750 maxim formatting of RTT wrong in traceroute6 o [2003/05/29] bin/52782 user ppp dumps core when doing pppctl "sh s [2003/05/31] bin/52826 Feature Request: Adding Timestamps to pkg o [2003/06/03] bin/52907 [PATCH] more malloc options for debugging o [2003/06/08] bin/53063 [PATCH] Let mtree -U update mtime o [2003/06/13] bin/53288 tail will sometimes display more lines th o [2003/06/14] bin/53325 /usr/bin/locale is not installed by make o [2003/06/15] bin/53341 qa dump frequency in sysinstall is always th o [2003/06/16] bin/53366 mtm rc.d/root is trying "mount /" while start o [2003/06/16] bin/53377 [PATCH] su does not return exit status of p [2003/06/16] bin/53378 lioux Missing newline in pkg_info from pkg_add' o [2003/06/18] bin/53451 mbr SEGV in rpcgen o [2003/06/18] bin/53475 cp(1) copies files in reverse order to de o [2003/06/19] bin/53517 chm [PATCH] repair ffsinfo(8) on CURRENT o [2003/06/19] bin/53520 su to another user does not update utmp o [2003/06/20] bin/53560 logging domain names in wtmp is retarded o [2003/06/24] bin/53682 standards [PATCH] add fuser(1) utitity o [2003/06/28] bin/53870 C++ undeclares standard math functions li o [2003/06/29] bin/53899 mktime gives wrong result in Central time o [2003/07/01] bin/53980 [FIX] Better memory utilization in fstat( o [2003/07/02] bin/54026 [patch] Add support for non-standard port o [2003/07/04] bin/54098 ken [patch] make camcontrol(8) work if plain o [2003/07/05] bin/54123 [patch] fix assignments of getopt() retur o [2003/07/05] bin/54141 wrong behavour of cu(1) p [2003/07/06] bin/54151 yar [PATCH] -i (restrict to one interface) pa f [2003/07/07] bin/54185 rwatson UFS2 filesystem ACL flag not enforced o [2003/07/09] bin/54263 su/csh job control problem o [2003/07/09] bin/54274 ru udp-proxy support is not implemented in l o [2003/07/09] bin/54276 pread/pwrite patches for libc db function o [2003/07/11] bin/54365 [PATCH] add -u option to install(1) for S o [2003/07/14] bin/54464 dougb dig -x with ipv6-address is broken. o [2003/07/17] bin/54594 Apply regexps to the entire variable -- a o [1998/04/18] conf/6346 joe Kernel version strings need to relate to a [2002/01/26] conf/34316 sheldonh Uncomment kserver-adm to /etc/services o [2002/01/27] conf/34355 [PATCH] rc.conf comment misleading (firew s [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace o [1999/06/21] conf/12324 qa Sysinstall's fdisk partition editor is mi o [1999/12/28] conf/15748 qa sysinstall - upgrade f [1999/11/20] conf/15010 "client" firewall configuration kills inc o [1999/11/21] conf/15038 qa In sysinstall, easy to not notice that se o [2000/01/11] conf/16076 markm [PATCH] pam_ssh examples for /etc/pam.con o [2000/02/08] conf/16584 qa Hostname field too small during install ( o [2000/03/05] conf/17207 disktab support for Fuji-MO p [2000/03/30] conf/17699 ache Support for dutch keyboards in the consol o [2000/04/13] conf/17993 obrien improving on the default /etc/amd.map s [2000/06/28] conf/19573 des Dot Files for Optional Shells o [2000/09/05] conf/21059 marcel `make -jN buildkernel' can't keep source o [2000/10/14] conf/21994 qa Config of Anonftp (at install) always cre f [2000/10/18] conf/22102 Local scripts get run before securelevel o [2000/10/26] conf/22308 mounting NFS during boot blocks if host m o [2000/11/23] conf/23063 ru [PATCH] for static ARP tables in rc.netwo a [2000/12/09] conf/23402 qa sysinstall upgrade ought to check partiti p [2001/01/21] conf/24515 dougb Fix for find(1) warning in /etc/rc o [2001/03/15] conf/25829 IPSec config in rc.network doesn't allow p [2001/03/04] conf/25527 trhodes `man ldconfig' does not reflect its behav o [2001/04/10] conf/26488 dougb incomplete named sandbox information a [2001/06/11] conf/28081 murray /stand/sysinstall errs out if /cdrom/ alr o [2001/07/23] conf/29167 imp rc.pccard doesn't check /var/run/pccardd. o [2001/08/19] conf/29870 rc.diskless2 uses /usr/sbin/mtree before o [2001/09/03] conf/30301 Default printcap "mx" config too small o [2001/09/30] conf/30938 Improving behavior of /etc/periodic/daily o [2001/11/17] conf/32067 Problems with spanish keyboard in console o [2001/11/19] conf/32108 Proposed Firewall (IPv4) configuration sc o [2001/11/26] conf/32288 qa After install: /etc/rc complains if crypt a [2001/11/29] conf/32375 murray sysinstall doesn't respect User generated o [2001/12/18] conf/32976 assar Kerberos5 config files not installed by d o [2001/12/31] conf/33395 imp better way to use more than one pccard ne o [2002/01/09] conf/33753 Intel ICH2 and NVidia device ID updates o [2002/01/16] conf/33967 Alternative Italian keymap o [2002/01/31] conf/34494 n_hibma usb configuration problem - usb does not o [2002/02/08] conf/34729 sheldonh treat smbfs as network file system in /et o [2002/02/09] conf/34776 rc.diskless1 creates insufficiently sized o [2002/02/23] conf/35242 Change to etc/periodic/weekly/330.catman o [2002/02/23] conf/35262 Generation of boot block for headless ope o [2002/03/04] conf/35545 Enhanced periodic scripts o [2002/03/19] conf/36118 re 4.5 Upgrade says it won't touch /usr/src, o [2002/04/23] conf/37395 peter even with NO_SENDMAIL=true, /usr/sbin/sen o [2002/04/30] conf/37611 phk proposed /etc/rc.jails for jail(8) manage o [2002/05/09] conf/37909 make distribution DESTDIR=/path -DNO_MAKE o [2002/06/02] conf/38829 bootblock recompile instructions in handb o [2002/06/12] conf/39192 sound [PATCH] Save pcm mixer settings during re o [2002/06/14] conf/39306 The /etc/rc file should know if is runnin f [2002/06/19] conf/39505 automate BUILDNAME variable for releases s [2002/06/20] conf/39580 insecure default settings o [2002/06/28] conf/39976 vi recovery halting boot process o [2002/07/09] conf/40391 imp sysinstall with PCCARD<->ISA bridge gets o [2002/07/14] conf/40548 list of /etc/defaults/make.conf undocumme o [2002/07/19] conf/40777 disktab does not support 2.88MB floppies o [2002/07/21] conf/40855 murray psuedo-device bpf need note in LINT and G o [2002/08/01] conf/41241 murray sysinstall build uses kbdcontrol keymaps o [2002/08/21] conf/41855 improvment of /etc/rc.diskless2 script o [2002/09/06] conf/42497 rc.network lacks IKE daemon startup o [2002/09/15] conf/42807 imp /etc/netstart doesn't run /etc/defaults/p o [2002/09/21] conf/43167 Ability to have vnode based file systems o [2002/09/29] conf/43500 rc.syscons "allscreens" improvements o [2002/10/07] conf/43800 imp Belkin 10/100 Base-TX PCMCIA card not rec o [2002/10/07] conf/43805 imp Asante' FriendlyNet AeroLAN AL1011 802.11 f [2002/10/15] conf/44090 pppoa authentication failure? on FreeBSD o [2002/10/17] conf/44170 Add ability to run multiple pppoed(8) on f [2002/10/29] conf/44717 dougb update login.conf and unify login capabil o [2002/10/31] conf/44800 mtm RC_NG for local rc scripts o [2002/11/11] conf/45226 mtm Fix for rc.network, ppp-user annoyance o [2002/11/22] conf/45608 qa Install should config all ether devices, o [2002/12/07] conf/46062 kris Remove skel from BSD.root.dist. o [2002/12/13] conf/46235 rwatson Sysinstall NTP servers for Finland requir o [2002/12/30] conf/46645 [PATCH] rc.shutdown state table saving ha o [2003/01/03] conf/46746 No way to set link addresses through rc.c o [2003/01/09] conf/46913 darrenr ipf denied packets of security run output o [2003/01/18] conf/47204 qa base + XFree86 install fails -- crypto di o [2003/02/08] conf/48105 /etc/disktab has incomplete duplication o o [2003/02/11] conf/48195 /var/db/mounttab error on diskless boot o [2003/02/22] conf/48566 [PATCH] /etc/defaults/make.conf stales af a [2003/02/22] conf/48569 trhodes make.conf misses comments on some options o [2003/02/28] conf/48775 iso8859-15 termcap entries needed f [2003/03/14] conf/50000 dougb ntpdate not ran before (x)ntpd p [2002/08/18] conf/41772 dougb can't disable keybell o [2003/03/15] conf/50040 nectar Missing $FreeBSD$ in /etc/ssl/openssl.cnf o [2003/04/14] conf/50956 daily_status_disks_df_flags in /etc/defau o [2003/05/06] conf/51830 trhodes new entries in termcap o [2003/05/19] conf/52432 joe Install: drivers.flp won't load with USB o [2003/06/09] conf/53131 qa "ALL" could not turn check BOXes ON at pa o [2003/06/11] conf/53197 re default tag of RELENG_5_1 standard-supfil o [2003/06/29] conf/53901 dd Suggest MFC of include keyword to config( o [2003/07/06] conf/54166 add default CVSROOT to make release o [2003/07/07] conf/54170 error from weekly periodic script 330.cat o [2003/07/10] conf/54334 Tip in freebsd-tips datfile for fortune i o [2003/07/11] conf/54369 MFC /etc/services o [2003/07/11] conf/54371 Subversion IANA-assigned port number o [1999/10/06] docs/14165 nbm FDP introduction article a [1999/11/03] docs/14682 gad lprm(1) unaware of lp(1) Environment Vari o [2000/03/01] docs/17104 hmp gethostbyname(3) contains a reference to o [2000/08/10] docs/20528 standards sysconf(3) manpage doesn't mention posix. o [2000/10/07] docs/21826 wollman ARP proxy feature lacks documentation o [2000/11/14] docs/22861 dd newsyslog man page is misleading and inco o [2001/02/01] docs/24786 doc missing FILES descriptions in sa(4) p [2001/02/11] docs/25016 ru symlink(7) manpage says symlinks have no a [2001/02/05] docs/24869 hmp Some text elf.5 is duplicated f [2001/03/22] docs/26003 rwatson getgroups(2) lists NGROUPS_MAX but not sy a [2001/03/22] docs/26006 jeff Changing zone(9) man page o [2001/04/02] docs/26286 chris *printf(3) etc should gain format string a [2001/04/13] docs/26532 des ".Ql ?" becomes "`'?" through nroff (and a [2001/06/02] docs/27833 cjc No man page for locate.rc s [2001/06/02] docs/27843 alex [PATCH] make.conf WITH_* variables aren't o [2001/06/23] docs/28371 phk malloc(2) man page correction o [2001/06/30] docs/28555 trhodes [PATCH] style(9) isn't explicit about boo a [2001/07/13] docs/28949 phk the mknod(8) man page stills refers to bl o [2001/07/26] docs/29245 doc top(1) manpage doesn't understand SMP a [2001/08/17] docs/29807 trhodes [PATCH] XFREE86_VERSION is undocumented a [2001/08/23] docs/30008 doc This document should be translated, comme o [2001/09/08] docs/30442 trhodes remove broken referemce to gettime(9) fro p [2001/09/08] docs/30443 trhodes remove broken reference to kerberos(1) fr o [2001/09/27] docs/30873 doc ``ip'' man page does not specify byte ord o [2001/10/07] docs/31109 doc replace gif images w/ png ones due to pat o [2001/11/15] docs/32020 doc loader.8 manpage missing tunables o [2001/11/16] docs/32054 simon inconsistency between index.3 and rindex. o [2001/12/09] docs/32662 dd arp(8) uses "this host" with two differen o [2001/12/18] docs/32979 hmp manpages are not installed for k5admin an o [2002/01/05] docs/33589 doc Patch to doc.docbook.mk to post process . o [2002/01/07] docs/33645 assar k5list(1) contains many incorrect "klist" o [2002/01/09] docs/33724 chern a very minor documentation error o [2002/01/13] docs/33852 doc split(1) man page implies that input file o [2002/01/14] docs/33877 doc Documentet behaviour of SF_flags for non- o [2002/01/24] docs/34239 trhodes tunefs(8) man page doesn't describe argum a [2002/02/16] docs/35011 doc There are no commands called "diskless" o o [2001/04/29] docs/26943 doc [patch] description of :C modifier is mis o [2002/02/22] docs/35222 doc mailing list archive URL regexp suboptima o [2002/03/06] docs/35602 doc dump(8)/restore(8) pages don't explain "a o [2002/03/06] docs/35607 doc dump(1) page needs discussion of scary er o [2002/03/06] docs/35608 doc mt(1) page uses "setmark" without explana o [2002/03/06] docs/35609 doc mt(1) page needs explanation of "long era o [2002/03/06] docs/35612 doc ps(1) page "state" description doesn't me o [2002/03/07] docs/35642 doc lo(4) page maybe should document optional o [2002/03/07] docs/35644 doc lo(4) page presumes familiarity with prin o [2002/03/07] docs/35646 doc cp(1) page needs a "Bugs" section. o [2002/03/07] docs/35647 doc www; combine query-by-number and multi-fi o [2002/03/07] docs/35649 doc mount_smbfs(8) page: "See ./examples/dot. o [2002/03/07] docs/35652 trhodes bsd.README seriously obsolete o [2002/03/07] docs/35648 doc rc.conf; add note about "flags" to both f o [2002/03/08] docs/35686 doc blackhole(4) page seems to contradict its o [2002/03/08] docs/35687 doc /etc/nsmb.conf missing mention of readers o [2002/03/08] docs/35696 trhodes mount_smbfs(8) references a nonexistent n o [2002/03/09] docs/35711 doc the "gnats page" should move to its own s o [2002/03/10] docs/35732 doc adduser(8) page has obsolete reference an o [2002/03/28] docs/36449 doc symlink(7) manual doesn't mention trailin o [2002/03/15] docs/35943 doc at(1) config files are misplaced in /var/ p [2002/03/15] docs/35951 trhodes disklabel(8) manual confuses partitions a o [2002/03/15] docs/35953 doc hosts.equiv(5) manual is confusing or wro o [2002/03/28] docs/36432 doc Proposal for doc/share/mk: make folded bo a [2002/03/28] docs/36447 trhodes chown(8) manual misdescribes handling of o [2002/03/28] docs/36459 simon tftp(1) manual's "get" syntax/description o [2002/04/03] docs/36724 darrenr ipnat(5) manpage grammar is incomplete an f [2002/04/03] docs/36726 trhodes Handbook lacks information about hardware o [2002/04/03] docs/36727 trhodes Mail chapter of Handbook is incomplete o [2002/04/27] docs/37504 blackend The word PC Card should be used instead o o [2002/05/03] docs/37719 doc Detail VOP_ naming in a relevant man-page s [2002/05/07] docs/37843 doc manual for pthread_setschedparam is wrong o [2002/05/13] docs/38061 ume Typos in man pages for faith & faithd o [2002/05/16] docs/38148 trhodes In manpages "timezone" should be "time zo o [2002/05/18] docs/38225 doc change "CDROM" to "CD-ROM" o [2002/05/25] docs/38540 rpratt sysinstall application name should be Sys o [2002/05/25] docs/38556 doc EPS file of beastie, as addition to exist o [2002/05/27] docs/38620 doc Committers Guide and CVS o [2003/05/06] docs/51845 hmp [PATCH] catch up getfsstat.2 and statfs.2 o [2002/05/31] docs/38772 doc firewall_type feature not mentioned on Ha p [2002/06/03] docs/38850 keramida handbook/kernelopts/ should be in Develop o [2002/06/07] docs/38982 doc developers-hanbook/Jail fix p [2002/06/08] docs/39044 tjr The man page for rot13(6) never mentions o [2002/06/12] docs/39213 doc No rc(4) man page o [2002/06/15] docs/39348 doc kenv fetch of hostname requires dhcp/boot o [2002/06/19] docs/39530 doc access(2) man page has unnecessarily broa o [2002/06/19] docs/39532 doc 'find' man page should o [2002/06/24] docs/39824 doc Various tweaks for doc/en_US.ISO8859-1/bo o [2002/07/04] docs/40196 doc man find does not describe -follow o [2002/07/10] docs/40423 doc Keyboard(4)'s definition of parameters to o [2002/07/10] docs/40443 doc Update books/faq/book.sgml for USB .ko's o [2002/07/21] docs/40851 doc [PATCH] "mergemaster -p" in UPDATING's "C o [2002/07/28] docs/41089 doc pax -B option does not mention interactio o [2002/07/29] docs/41110 doc "apropos linux" doesn't find brandelf o [2003/05/19] docs/52448 simon [patch] Misc man page reference fixes o [2002/08/07] docs/41423 doc Update FAQ: attrib command for windows du o [2002/08/08] docs/41449 ceri [PATCH] Missing word in DNS info in Handb o [2002/08/18] docs/41761 doc Update for /ru/internal/ part of site o [2002/08/19] docs/41787 doc man page for route (Section 8) missing de o [2002/08/19] docs/41791 doc Documentation formatting error o [2002/08/02] docs/41270 doc confusing directions for kernelconfig cha o [2002/08/19] docs/41807 doc natd -punch_fw "bug" o [2000/09/04] docs/21024 bde pow() ERANGE bug o [2002/08/20] docs/41820 doc Device driver confusion in Handbook (2.3) o [2002/08/21] docs/41879 hrs cleanup to DOCROOT/share/sgml/freebsd.dsl o [2002/08/22] docs/41919 blackend MINI kernel for bootfloppy (Handbook p.34 a [2002/08/27] docs/42058 doc Documentation: Installing Oracle 8i onto o [2002/08/29] docs/42182 trhodes Making Dedicated Mode disks doc out of da o [2002/08/30] docs/42210 gioria doc/en_US.ISO8859-1/articles/releng/branc o [2002/09/27] docs/43416 doc pw(8) -u uidmin,uidmax feature is out of o [2002/10/01] docs/43569 doc src/share/examples/worm/README out-of-dat o [2002/10/04] docs/43651 doc stab(5) incorrectly states to include jus o [2002/10/09] docs/43861 doc non-trivial typo in wicontrol man page o [2002/10/11] docs/43941 doc Rationale for Upgrade Sequence o [2002/10/12] docs/43980 darrenr ipf(5) missing "gre" keyword o [2002/10/13] docs/44034 trhodes Multiple sysctl variables are not documen o [2002/10/14] docs/44074 doc ln(1) manual clarifications [patch] p [2002/10/21] docs/44337 hmp [PATCH] netstat(1) manual references none o [2002/10/23] docs/44400 doc ipfw(8) has contradictions in bridged and o [2002/10/24] docs/44435 doc sysctl manpage: add example for tcsh o [2002/10/29] docs/44594 doc Handbook doesn't mention drivers.flp for o [2002/11/06] docs/45011 trhodes style(9): '->' and '.' don't require spac o [2002/11/11] docs/45214 brueffer [PATCH] Fix sorting in Additional Contrib o [2002/11/11] docs/45215 brueffer [PATCH] Fix sorting in Additional Contrib o [2002/11/17] docs/45371 doc man page for exports lacks information on o [2002/12/02] docs/45940 doc burncd missing info o [2002/12/11] docs/46181 doc "make fetch-recursive" target description o [2002/12/11] docs/46196 doc Missing return value in (set_)menu_format o [2002/12/11] docs/46200 doc fix for ru_RU.KOI8-R/books/porters-handbo o [2002/12/15] docs/46286 ru there's an omission and an error in the n o [2002/12/16] docs/46291 doc correlation between HZ kernel config para o [2002/12/16] docs/46295 doc please add information to Nvi recovery em o [2003/01/02] docs/46709 doc tables in terminfo.5 are broken p [2003/01/05] docs/46787 trhodes compress(1) manpage missing BUGS; other c o [2003/01/05] docs/46793 doc DEVICE_POLLING can not be used with SMP, o [2003/01/09] docs/46918 trhodes ipsec(4) does not reference the IPSEC RFC o [2003/01/14] docs/47085 doc boot(8) manpage is incomplete according t o [2003/01/27] docs/47575 doc Clarify requirements for IPFW2 in STABLE o [2003/01/28] docs/47594 doc [PATH] passwd(5) incorrectly states allow o [2003/01/30] docs/47690 doc builtin(1) manpage is wrong about externa o [2003/01/30] docs/47705 doc wc(1) manpage has poor explanations. o [2003/02/01] docs/47792 mheinen www/news/news.xml translated to .de f [2003/02/02] docs/47818 doc ln(1) manpage is confusing o [2003/02/02] docs/47824 doc auto-create plist chapter should mention o [2003/02/05] docs/47991 doc Handbook section on upgrading kernel says f [2003/02/07] docs/48038 doc [PATCH] add Tips and Tricks section into o [2003/02/08] docs/48101 brueffer There's no documentation on the fixit dis o [2003/02/12] docs/48210 doc make -q only does what the manpage says i o [2003/02/28] docs/48767 doc wrong key numbers for left/right windows o [2003/03/06] docs/48980 doc [PATCH] nsgmls -s errors and sect. 3.2.1 o [2003/03/14] docs/50013 doc [PATCH] add much more russian holydays o [2003/03/22] docs/50200 doc Handbook "Kerberos" chapter doesn't quali o [2003/03/23] docs/50211 doc [PATCH] Fix textfile creation p [2003/03/24] docs/50248 ceri New FreeBSD books o [2003/03/27] docs/50349 doc make release fails with NO_OPENSSH and ! f [2003/03/28] docs/50391 doc Incorrect information in a man o [2003/04/03] docs/50573 doc return values for res_query/res_search/re f [2003/04/07] docs/50677 doc [PATCH] update doc/en_US.ISO8859-1/books/ p [2003/04/08] docs/50735 brueffer Small diff to the developers handbook & o o [2003/04/10] docs/50773 doc NFS problems by jumbo frames to mention i a [2003/04/18] docs/51133 murray RSH environmental variable not described o [2003/05/09] docs/51999 wosch Missing MAN for ssh p [2003/04/24] docs/51399 blackend XFree86 section of handbook needs some up o [2003/04/27] docs/51480 dds Multiple undefined references in the Free o [2003/04/29] docs/51608 phantom [PATCH] Add Internet Archive Wayback Mach o [2003/05/06] docs/51875 doc atkbd(4) adjustment o [2003/05/06] docs/51891 doc DIAGNOSTICS in ed driver manpage don't ma o [2003/05/06] docs/51897 blackend Add example for disklable for md devices o [2003/05/07] docs/51921 doc ls(1) manpage lacks some information abou o [2003/05/11] docs/52071 doc [PATCH] Add more information about soft u o [2002/10/08] docs/43823 hmp [PATCH] update to environ(7) manpage o [2003/05/20] docs/52514 brueffer Handbook: new chapter about Bluetooth p [2003/05/23] docs/52612 trhodes [PATCH] close() can return undocumented E o [2003/05/25] docs/52672 doc Porter's Handbook: couple of corrections o [2003/06/02] docs/52858 ceri Add the Bell System Technical Journal to o [2003/06/02] docs/52878 doc [PATCH] security(7): small clairification o [2003/06/03] docs/52914 ceri typo in nfsiod(8) o [2003/06/13] docs/53271 hmp the bus_dma man page fails to document al o [2003/06/13] docs/53303 doc mount(2) man page error o [2003/06/14] docs/53315 doc [PATCH] remove extraneous whitespace at t o [2003/06/14] docs/53316 blackend Small update/correction to multimedia/cha o [2003/06/17] docs/53420 ceri [patch] rework of parts of Porter's Handb o [2003/06/17] docs/53421 ceri [patch] rework of parts of Porter's Handb o [2003/06/17] docs/53422 ceri [patch] rework of parts of Porter's Handb o [2003/06/17] docs/53424 ceri [patch] rework of parts of Porter's Handb o [2003/06/17] docs/53425 ceri [patch] rework of parts of Porter's Handb o [2003/06/18] docs/53454 doc wrong sample code in manpage of wcwidth(3 o [2003/06/19] docs/53501 doc [PATCH] Handbook: update snapshots sectio o [2003/06/20] docs/53575 doc Change to Handbook Section 20.9 o [2003/06/21] docs/53596 doc Updates to mt manual page o [2003/06/22] docs/53621 doc devname(3)'s man page needs an example o [2003/06/24] docs/53688 doc [PATCH] mount_msdosfs(8) does not documen o [2003/06/25] docs/53732 doc quota output and man page do not document o [2003/06/26] docs/53751 doc bus_dma(9) incorrectly documents BUS_DMA_ o [2003/07/02] docs/54009 doc Clarify the location of the splash image o [2003/07/07] docs/54197 doc Mentioning of devfs is missing in the Ger p [2003/07/08] docs/54235 ceri Error in ioctl(2)'s man page: Ioccon.h co o [2003/07/11] docs/54380 doc [PATCH] document additional perl variable o [2003/07/11] docs/54391 doc Document that glob(3) respects LC_COLLATE o [2003/07/12] docs/54422 blackend [PATCH] remove redundant "-p" from "mkdir o [2003/07/13] docs/54461 ceri Possible addition to Handbook o [2003/07/17] docs/54574 doc [patch] fixed b0rked o [2003/07/18] docs/54610 blackend [patch] adds route(8) examples to routing o [2000/05/28] gnu/18857 peter Enable GSSAPI in CVS if available o [1999/03/19] gnu/10670 peter cvs doesn't allow digits in local keyword o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor o [2000/07/02] gnu/19642 kbyanc patch to merge OpenBSD changes to patch(1 o [2002/02/01] gnu/34538 mp_set_memory_functions not extern "C"'d o [2001/03/14] gnu/25794 markm [PATCH] make perl use a decent random num a [2001/06/15] gnu/28189 [PATCH] fix for detecting empty CVS commi o [2001/11/05] gnu/31772 New option in dialog(1) o [2001/12/09] gnu/32661 dd send-pr uses $LOGNAME for From and Reply o [2002/08/28] gnu/42154 kan [patch] gnu: libobjc redefines MIN and MA o [2001/12/25] gnu/33182 mp gdb seg faults when given handle SIGALRM o [2002/02/07] gnu/34709 [patch] Inaccurate GDB documentation s [2002/03/28] gnu/36460 cu(1) program does not work very well. o [2002/05/09] gnu/37910 PATCH: make send-pr(1) respect &'s in /et o [2002/11/05] gnu/44984 Send-pr can use environmental variable $F o [2002/11/08] gnu/45137 peter [PATCH] CVS 1.11.2 cannot reuse log messa o [2002/11/12] gnu/45246 sobomax tar --listed-incremental fails for Solari o [2003/02/24] gnu/48638 [PATCH] some bug fixs in libdialog o [2003/03/09] gnu/49055 Please import send-pr (GNATS 4) o [2003/06/18] gnu/53476 kan [patch] gcc improperly handles GCC_EXEC_P f [1995/01/11] i386/105 standards Distributed libm (msun) has non-standard o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. s [1997/11/30] i386/5182 bde [PATCH] A patch support high speed serial f [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/10/27] i386/8474 repquota does not pick up NIS information o [1998/11/27] i386/8867 qa /stand/sysinstall core dumps (signal 11) o [1999/01/29] i386/9777 cg Generic AD1816 sound suport in Luigi's pc o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 o [1999/06/08] i386/12088 imp Enhancement to ed driver for Linksys 10/1 f [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/09/24] i386/13936 qa No clear indictaion of how much space to o [1999/09/30] i386/14048 ``doscmd -r'' doesn't work o [1999/12/21] i386/15619 peter standard pppd doesn't authenticate users o [2000/04/22] i386/18154 [PATCH] Add cpu class and features flags o [2000/08/11] i386/20537 msmith HP NetRAID controller error when rebootin o [2000/08/16] i386/20660 wpaul if_wi provides 802.11 src and dst, not et o [2000/08/23] i386/20803 mdodd ep0 driver finds additional "shadow" ep c o [2000/10/01] i386/21672 obrien AMD Duron Rev. A0 reports incorrect L2 ca o [2000/12/15] i386/23562 markm telnetd doesn't show message in file spec o [2001/02/08] i386/24963 perfmon(4) doesn't work on SMP systems o [2001/04/13] i386/26562 /dev/lpt0 returns EBUSY when attempting t o [2001/04/24] i386/26812 peter old bootstrap /sys/i386/boot/... still in o [2001/04/30] i386/26994 obrien AMD Athlon Thunderbird not known to ident o [2001/05/08] i386/27216 qa Can not get to shell prompt from serial c o [2001/05/13] i386/27306 mp hw watchpoints work unreliable under gdb o [2001/05/24] i386/27627 machdep.tsc_freq does not exists on machi s [2001/06/22] i386/28346 n_hibma USB ethernet dongle detach requires "ifco o [2001/07/14] i386/28975 mjacob RocketPort problems f [2001/08/29] i386/30206 mdodd PS/2 server 85 can't boot kern.flp o [2001/09/09] i386/30461 sound no audio cd with cmi8330 o [2001/09/20] i386/30700 sound Applications cannot synchronize sound usi o [2001/09/26] i386/30860 While install after "Mounting root from u o [2001/10/18] i386/31353 'shutdown -p' does not work on SMP Tyan T o [2001/10/21] i386/31427 minor incorrect code in sys/i386/i386/pma f [2001/10/27] i386/31535 Can't reboot system: Tyan Thunder K7+ Dua o [2001/11/01] i386/31686 Problem with the timestamp option when fl f [2001/11/02] i386/31716 phk FreeBSD uses broken tsc timecounter by de s [2001/11/15] i386/32014 ppi locks up system during boot o [2001/12/22] i386/33097 sound Crystal 4237b mixer problems o [2002/01/17] i386/34010 keyinit takes passwords less than 10 char o [2002/02/18] i386/35078 Uninitialized pointer dereference in func o [2002/02/18] i386/35101 chern cvusupit and other packages won't extract f [2002/03/06] i386/35599 murray install f [2002/04/16] i386/37137 qa FreeBSD install doesn't recognize version o [2002/04/23] i386/37379 /dev/MAKEDEV entry for RocketPort is brok o [2002/05/12] i386/37999 qa In /stand/sysinstall, 's' selects Options o [2002/05/13] i386/38055 qa In Install, Groups (creation) item should o [2002/05/13] i386/38056 qa In Install, User (creation)'s "Member gro o [2002/05/23] i386/38477 qa In sysinstall's Choose Distributions scre o [2002/05/23] i386/38478 qa In sysinstall's Choose Distributions scre o [2002/05/23] i386/38480 qa sysinstall should prompt for normal users o [2002/05/24] i386/38524 cons25 doesn't support F-keys beyond 12 o [2002/06/02] i386/38826 RFE: BootMgr should provide more identify o [2002/06/20] i386/39574 qa Error mounting /dev/acd0c on /dist: No su o [2002/07/24] i386/40946 Possible way to cause a system to hang us o [2002/08/05] i386/41364 imp pccard: NewMedia "Bus Toaster" SCSI card o [2002/08/07] i386/41398 Illegal instruction Core Dumped o [2002/08/17] i386/41743 sound No sound from SiS630s controller o [2002/08/25] i386/42022 qa sysinstall in non-interactive mode prompt o [2002/08/29] i386/42162 qa Installation (sysinstall) crashes, md0c f o [2002/09/10] i386/42641 des Pam SSH authentication don't work o [2002/09/14] i386/42766 Proposal to perform reboot via jump to BI s [2002/10/10] i386/43896 Missing "syscall fstat64" in linux emulat o [2002/10/19] i386/44262 tanimura Problems with nrp driver o [2002/10/28] i386/44580 NFS updates file access time when file is o [2002/10/30] i386/44762 sound sound (ie, not system beeps) stop working o [2002/12/13] i386/46238 dds [code] Driver for the PCL-724 ISA card f [2002/12/14] i386/46258 PLT code causes skewed return hint stack o [2002/12/21] i386/46453 [INTERLATIONALIZATION] cons25l2, ISO8859- o [2003/01/09] i386/46912 johan chflags nonodump fails o [2003/01/19] i386/47223 hm [PATCH] pcvt(4), ESC sequences do not cha o [2003/01/22] i386/47376 hm [PATCH], pcvt(4), COLOR_KERNEL_FG, 2nd ch o [2003/02/06] i386/48014 joe moused fails to correctly identify usb mo f [2003/02/14] i386/48283 acpi-jp sound (pcm/sbc) broken with acpi o [2003/02/26] i386/48738 sound ForteMedia FM801 chipset based sound card o [2003/03/07] i386/49023 gad Mod to LPD (printjob.c) to pass source fi o [2003/03/18] i386/50110 joe Astra 2100U scanner being detected as /de s [2003/04/14] i386/50929 AMD K6-2+ processor is identified incorre o [2003/05/14] i386/52249 i386 [PATCH] Bootmanager shows NTFS partitions o [2003/05/18] i386/52401 i386 5.1-BETA syslogd not recording entries fr o [2003/05/18] i386/52408 i386 quitting gnome2-2.2.1_1 results in LOR o [2003/05/18] i386/52416 i386 Requesting ethernet driver for Broadcom 4 o [2003/05/19] i386/52427 i386 DVD replay under MSI "655 MAX" mobo inter o [2003/05/19] i386/52428 i386 pcm0 reported twice: onboard AC97 and PCI f [2003/05/21] i386/52519 i386 request USB-2.x support o [2003/05/21] i386/52555 i386 Large filesystem, df o [2003/05/27] i386/52722 i386 lock order reversal message o [2003/06/05] i386/52971 i386 bad macro LIST_HEAD in /usr/include/sys/q o [2003/06/11] i386/53200 i386 5.1-RC1 SMP kernel boot gags at "APIC_IO: o [2003/06/14] i386/53324 i386 pam_group problems (PAM_RUSER used instea o [2003/07/17] i386/54595 i386 emu10k1 sound driver locks system o [2003/06/30] i386/53930 i386 showmount doesnot show nfs exportlist on o [2003/07/11] i386/54402 i386 Silicon Image (SiI) 0680 secondary ATA ch o [2003/07/13] i386/54451 i386 [patch] i386_{get|set}_ldt manual page is o [2002/05/28] ia64/38677 ia64 savecore fault when 1M buffer is allocate a [2000/01/25] java/16347 znerd Inconsistencies between Java ports o [2002/10/02] java/43602 glewis jdk13 does not honor WRKDIRPREFIX o [2001/05/04] java/27075 sobomax Port java/javavmwrapper installs no man p o [2001/05/04] java/27079 sobomax Improvements for javavmwrapper? o [2002/04/08] java/36901 glewis WITHOUT_X11 Knob for port java/jdk13 o [2002/04/09] java/36951 glewis Java (aka 1.3.1-p6-root-020405-00:26) cor o [2002/06/09] java/39080 sobomax java/javavmwrapper: Functionality enhance o [2002/03/17] java/36024 ports-bugs port update: OpenJIT 1.1.16 for JDK 1.3.1 o [2002/10/11] java/43929 java linux-ibm-jdk core dumps without System.e o [2002/10/11] java/43947 znerd Checkstyle port should install checkstyle a [2002/10/14] java/44039 znerd Request for port: CruiseControl a [2002/10/14] java/44041 znerd Generate bsd.java.mk from an XML file o [2002/10/18] java/44219 java Update port: textproc/cocoon to 2.0.3 o [2002/10/18] java/44251 java Create stylebook port a [2002/10/21] java/44335 znerd devel/jakarta-ant does not install man pa o [2002/10/24] java/44432 znerd Ant-based port installs should use Jikes o [2002/11/04] java/44922 java JVM crash o [2003/01/24] java/47448 phantom linux-blackdown-jdk-1.4.1: syscall mmap2 o [2003/04/08] java/50729 phantom java/jdk14: broken java.net.NetworkInterf o [2003/06/26] java/53790 znerd Let tomcat41ctl start java -server s [1995/11/20] kern/831 one minor complaint about the kernel visu s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po o [1997/06/24] kern/3944 paul if_le doesnt receive ether multicast pack s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe s [1998/05/17] kern/6668 babkin [PATCH] new driver: Virtual Ethernet driv o [2002/02/23] kern/35234 World access to /dev/pass? (for scanner) s [1998/06/01] kern/6820 jesper cd9660_mount NULL pointer deref for no CD p [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel s [1998/08/22] kern/7722 Changes to acct format o [1998/10/19] kern/8376 tjr CLOCK_VIRTUAL not implemented f [1998/10/30] kern/8498 dwmalone Race condition between unp_gc() and accep o [1999/01/19] kern/9570 dfr ed(4) irq config enhancement 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/02/01] kern/9869 When using macros out of function, they s o [1999/03/17] kern/10641 groudier Default sync rate in ncr SCSI driver is s o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/05/19] kern/11789 obrien ELF machine definition missing for ARM o [1999/06/03] kern/12014 alfred Fix SysV Semaphore handling o [1999/06/07] kern/12071 fanf [PATCH] large scale IP aliasing o [1999/07/06] kern/12543 dg [PATCH] cumulative error counters for fxp o [1999/09/02] kern/13546 se Too-verbose output from PCI probe at boot s [1999/09/19] kern/13843 ken da driver does not support 'CDIOCEJECT' i o [1999/10/06] kern/14166 roger AVER TVPhone o [1999/10/15] kern/14356 grog vinum and ``some processes would not die; f [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/28] kern/14584 babkin Proposition for improved file permissions o [1999/11/01] kern/14646 kern.boottime affected by APM suspend/res o [1999/11/12] kern/14841 adrian IEEE 802 encapsulation for arp on etherne o [1999/11/25] kern/15095 jlemon TCP's advertised window is not scaled imm o [1999/12/12] kern/15436 syscons extension: "propellers" f [1999/12/21] kern/15608 scsi acd0 / cd0 give inconsistent errors on em o [2000/01/02] kern/15838 Conversion tables in msdosfs_conv.c are b o [2000/01/10] kern/16021 To support SMP on NEC PC98, call mp_probe o [2000/01/18] kern/16195 rwatson 16-bit uid/gid struct in sys/ipc.h o [2000/01/24] kern/16339 alc vm/vm_page.h PQ_L2_SIZE options too limit o [2000/02/14] kern/16713 grog Vinum: some processes would not die; ps a o [2000/02/16] kern/16765 bde Add support for mark/space parity o [2000/02/18] kern/16815 Cannot "rm -rf" for not-existed file on r o [2000/02/26] kern/17003 dscheck() overzealously protects labels o o [2000/02/28] kern/17058 mjacob SCSI tape driver can't drive devs that ca s [2000/03/01] kern/17109 darrenr fastroute crashes for lo0 udp o [2000/03/14] kern/17385 Support for IIT's "XC87SLC-33" numeric pr o [2000/03/16] kern/17425 nsouch [PATCH] fix two small printing errors in f [2000/03/24] kern/17581 devices failing probing do so silently o [2000/04/02] kern/17751 wpaul rl driver loaded as module when it alread o [2000/04/05] kern/17819 adrian Build ports on nfs & union mount panics k o [2000/04/10] kern/17907 cg Audio record levels are too low o [2000/04/28] kern/18271 jake simplelock: klds not portable across UP a o [2000/04/28] kern/18289 CPU Time exceeded delivered multiple time o [2000/04/29] kern/18293 mikeh lack of versapad mouse wheel emulation o [2000/05/11] kern/18503 check for error return from vfs_allocate_ o [2000/05/30] kern/18909 dwmalone select(2) timeout limited to 100000000 se o [2000/06/26] kern/19535 adrian procfs_rlimit tidyup a [2000/07/03] kern/19686 yokota splash screen fails o [2000/07/05] kern/19720 kbyanc more sysctl signed-ness patches o [2000/07/07] kern/19756 Inability to use linux extended partition o [2000/07/08] kern/19782 dirk mkisofs 1.12.1 (i386-unknown-freebsd4.0) o [2000/07/10] kern/19827 yokota psm flag bit9(NOIDPROBE) doesn't work cor o [2000/07/14] kern/19913 des add SYN+FIN counter o [2000/07/15] kern/19966 new syscons screensaver o [2000/07/27] kern/20214 dec kernel routing bug for nexthop is routed o [2000/07/29] kern/20297 cg Joystick is not enabled with es1370 based o [2000/08/01] kern/20352 yokota Configuring a synaptics touchpad 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/04] kern/20410 sio support for high speed NS16550A, ST16 o [2000/08/10] kern/20529 wpaul gigabit cards fail to link o [2000/08/23] kern/20804 deadlocking when using vnode disk file an o [2000/09/09] kern/21156 yokota [PATCH] inconsistency in scmouse vs xterm 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/10/04] kern/21754 n_hibma Sound stops working when NetGear USB Devi o [2000/10/05] kern/21768 rwatson shouldn't trailing '/' on regular file sy a [2000/10/06] kern/21807 [patches] Make System attribute correspon o [2000/10/09] kern/21859 fanf Allow the syncer to be slowed down o [2000/11/15] kern/22868 getsockname may return an incorrect addre o [2000/12/05] kern/23304 standards POSIX clock_gettime, clock_getres return o [2000/12/05] kern/23314 aic driver fails to detect Adaptec 1520B o [2000/12/13] kern/23520 sound sb0 old style audio support in 4.2-RELEAS o [2000/12/14] kern/23546 tanimura [PATCH] csa DMA-interrupt problem o [2001/01/07] kern/24141 sound emu10k1 has trouble playing non-44.1KHz s o [2001/01/22] kern/24528 Bad tracking of Modem status o [2001/02/03] kern/24827 yokota Erratic Intellimouse Explorer in 4.1 and o [2001/02/05] kern/24882 ktrace not syncing .out file before panic o [2001/02/08] kern/24959 jesper proper TCP_NOPUSH/TCP_CORK compatibility o [2001/02/11] kern/25018 lstat(2) returns bogus permissions on sym o [2001/02/26] kern/25386 cg Incorrect mixer registers (line & synth) o [2001/02/27] kern/25445 kernel statistics are displayed in wrong o [2001/03/04] kern/25521 Laptop with FreeBSD4.2 freezes in battery o [2001/03/12] kern/25733 mismatch between error reporting in smbus f [2001/03/13] kern/25777 atime not updated on exec o [2001/03/16] kern/25866 more than 256 ptys, up to 1302 ptys. o [2001/03/18] kern/25909 4.x kernel freezes on P3-Asus CUSL2-C mot o [2001/03/18] kern/25910 cg Kernel sound driver may die if a program p [2001/03/22] kern/26016 iedowse VMWare is crash on SMP machine o [2001/04/01] kern/26277 ppc driver doesn't work with port 0x3BC p o [2001/04/03] kern/26316 Booting FreeBSD on VMware2 with 2 or 3 et o [2001/04/03] kern/26324 Defaults for NFS mounts over TCP are slow a [2001/04/04] kern/26348 hm [pcvt] scon -s, page fault in HP mode o [2001/04/09] kern/26454 cg mixer volume settings on Maestro-2E (Diam a [2001/04/13] kern/26534 ipfw Add an option to ipfw to log gid/uid of w o [2001/04/13] kern/26547 ambrisko "lnc" problem with shared memory mode wit o [2001/04/14] kern/26584 kernel boot messages aren't logged correc o [2001/04/16] kern/26618 unmount(2) can't unmount a filesystem who o [2001/04/22] kern/26787 dd sysctl change request o [2001/05/01] kern/27008 kernel function sysbeep(xxx, 0) does prod o [2001/05/09] kern/27232 On NFSv3 mounted filesystems, stat return o [2001/05/11] kern/27269 Cannot mount linux extended (logical) par o [2001/05/17] kern/27403 lpt driver doesn't handle flags anymore o [2001/05/18] kern/27429 'dependant' is a misspelling o [2001/05/23] kern/27571 bp Changing policy of shadowing files and di o [2001/05/26] kern/27660 Kernel does not return error if adding du o [2001/06/02] kern/27835 execve() doesn't conform to execve(2) spe o [2001/06/16] kern/28206 bp UMAPFS module should depend on NULLFS - p s [2001/06/18] kern/28260 standards UIO_MAXIOV needs to be made public o [2001/06/20] kern/28297 change request for sys/i386/conf/NOTES o [2001/06/30] kern/28566 bp Mount_null loopbacks can hang startx temp o [2001/07/10] kern/28888 mbr Acer 8000 NIC not detected correctly o [2002/02/14] kern/34942 sound Attempt to play -> "pcm0: play interrupt o [2001/07/23] kern/29169 mjacob FC loop that 'goes away' never times out o [2001/07/25] kern/29233 sound VIA 82C686 AC97 codec gets probed as 'chi f [2001/07/29] kern/29318 mjacob Exabyte 8200 needs SA_QUIRK_1FM and SA_QU o [2001/07/31] kern/29355 mux [patch] lchflags support o [2001/08/03] kern/29423 [PATCH] kernel security hooks implementat f [2001/08/08] kern/29538 joerg Mounting /dev/fd0 never completes o [2001/08/11] kern/29621 n_hibma Missing man page for ulpt o [2001/08/14] kern/29698 linux ipcs doesn'work o [2001/08/15] kern/29727 amr_enquiry3 structure in amrreg.h (amr d f [2001/08/16] kern/29777 n_hibma kernel uscanner.c contains wrong vendor a o [2001/08/20] kern/29915 kernel panics on interaction with mlock a o [2001/08/24] kern/30052 mbr dc(4) driver queues outgoing pkts indefin f [2001/08/28] kern/30160 Kernel panic when flash disk is removed a o [2001/08/29] kern/30200 yokota Bug in psm in 4.4-RC o [2001/09/13] kern/30570 joe boot loader don't reacts on USB keyboard o [2001/09/16] kern/30608 kern.ps_showallproc=0 doesn't limit queri p [2001/09/17] kern/30634 kbyanc kevent.data value incorrect for UDP socke s [2001/09/07] kern/30422 WDT hardware watchdog driver & daemon o [2001/09/30] kern/30951 Optimize page queue scan on miss of speci o [2001/10/04] kern/31048 des linprocfs:/proc/meminfo cannot handle mul o [2001/10/22] kern/31445 sound cat sound.au > /dev/audio fails for sound a [2001/10/23] kern/31455 n_hibma [PATCH] ohci driver probrem when send dat o [2001/10/23] kern/31456 Register number definition for AMD PCnet f [2001/10/25] kern/31490 Panic in sysctl_sysctl_next_ls on empy no o [2001/10/26] kern/31521 cg pcm0 plays too fast on Intel 82801BA (ICH o [2001/10/29] kern/31624 writev may return undocumented ECONNRESET o [2001/10/30] kern/31647 socket calls can return undocumented EINV o [2001/11/02] kern/31708 VM system / fsync / flushing delayed inde f [2001/11/13] kern/31971 phk microuptime() went backwards when apm is o [2001/12/09] kern/32652 joe A new ioctl to uscanner o [2001/12/09] kern/32659 VM and VNODE leak with vm.swap_idle_enabl o [2001/12/10] kern/32671 imp Patch to generate usbdevs.h automatically o [2001/12/10] kern/32677 pciconf -l opens /dev/pci for read/write o [2001/12/13] kern/32812 roger bktr driver missing tuner for eeprom dete p [2001/12/16] kern/32912 mp options misssing TCBHASHSIZE o [2001/12/19] kern/33004 n_hibma Patch for USB (uhci) o [2001/12/23] kern/33117 empty struct md_coredump in pcb.h and use o [2001/12/23] kern/33124 jhb kthread_create doesnt mark kthreads as kt o [2001/12/26] kern/33203 "got bad cookie" errors on NFS client o [2002/01/08] kern/33696 phk panic: Driver mistake: repeat make_dev("a o [2002/01/08] kern/33707 sound ICH (82801AA) cannot be used for mono rec a [2002/01/16] kern/33963 bmah Messages at the serial IO port device pro o [2002/02/03] kern/34591 ICMP bandwidth limiting does not indicate o [2002/02/06] kern/34665 darrenr ipfilter rcmd proxy "hangs". o [2002/02/08] kern/34747 joe Please add USB floppy entry o [2002/02/10] kern/34789 joe PNY brand USB flash readers need 10 byte o [2002/02/11] kern/34820 FreeBSD should be able to beep after shut o [2002/02/11] kern/34854 sound /src/sys/dev/sound doesn't work correctly o [2002/02/12] kern/34880 Impossibility of grouping IP into a pipe o [2002/02/14] kern/34952 joe Mouse cursor invisible with USB mice and o [2002/02/15] kern/34963 identify procs belonging to the same jail o [2002/02/15] kern/34965 4.4, 4.5 freeze at boot time on ASUS P2B o [2002/02/21] kern/35175 ptrace(PT_DETACH, ....) doesn't do signal f [2002/02/23] kern/35269 possible panics with 4:1 filesystem ratio o [2002/02/24] kern/35289 Brooktree device doesnt properly signal a o [2002/02/25] kern/35324 Plug and Play probe fails to configure Di o [2002/02/27] kern/35377 process gets unkillable (-9) in "ttywai" o [2002/03/07] kern/35635 sheldonh [patch] missing dep in libiconv prevents o [2002/03/08] kern/35699 trhodes [PATCH] msdosfs: differrent masks for dir o [2002/03/13] kern/35846 imp timeout in wi_cmd 11, machine hangs for a o [2002/03/21] kern/36170 an(4) does an_init() even if interface is o [2002/03/27] kern/36381 sos ata + hw.ata.wc=1: high CPU load for larg o [2002/03/28] kern/36425 bump up SYS_NMLN in sys/utsname.h f [2002/03/31] kern/36569 joe umass fails when RiteLink Pocket Disk is p [2002/04/02] kern/36682 joe USB isochroneous transfer doesn't report o [2002/04/09] kern/36952 ldd comand of linux does not work o [2002/04/10] kern/36983 CD9660 unicode to utf-8 [hack] f [2002/04/23] kern/37374 joe [PATCH] closing ums0 blocks with wmesg uh o [2002/04/23] kern/37405 njl Support for Mitsumi USB Mouse with Memory o [2002/04/26] kern/37486 wes Bug in network stack in sending broadcast o [2002/04/29] kern/37554 [PATCH] Make ELF shared libraries immutab o [2002/04/29] kern/37555 vnode flags appear to be changed in non-s o [2002/04/30] kern/37600 sound [Partial PATCH] t4dwave drive doesn't rec o [2002/05/01] kern/37657 sound /dev/dsp and /dev/audio skip the first 32 o [2002/05/02] kern/37675 grog Page fault when newfs'ing a vinum volume o [2002/05/04] kern/37761 net process exits but socket is still ESTABLI o [2002/05/16] kern/38156 quotacheck chokes on user -2 o [2002/05/21] kern/38372 ambrisko patch for puc(4) to support parallel port o [2002/05/22] kern/38419 joe add name "CanoScanN676U" in uscanner o [2002/05/22] kern/38429 [PATCH] getgpid and getsid work for proce o [2002/05/22] kern/38445 Centralized ptrace() permission checking o [2002/05/26] kern/38575 joe NoName USB Flash drive not working o [2002/05/27] kern/38626 luigi dummynet/traffic shaper: RED: max_th and f [2002/05/28] kern/38657 acpi-jp fujitsu c4110 lifebook crashes on resume o [2002/05/29] kern/38730 mikeh Memorex scrollpro mouse is not fully func o [2002/05/30] kern/38749 murray Diskless booting fails with some DHCP ser o [2002/06/02] kern/38828 DPT PM2012B/90 doesn't work o [2002/06/06] kern/38967 sound 4/22/02 pcm driver merge appears to break o [2002/06/07] kern/38986 trhodes a change to msdosfs permissions behaviour o [2002/06/08] kern/39047 IPSEC Compression (IPCOMP) broken in tunn o [2002/06/19] kern/39527 dwmalone getcwd() and unreadable parent directory o [2002/06/22] kern/39681 hidden kernel boot tunables added to sysc o [2002/06/29] kern/40017 [patch] allows config(8) to specify confi o [2002/06/29] kern/40021 [patch] use ld(1) to build kernel with li o [2002/06/30] kern/40058 imp lockup on 5.0 DP1 - Xircom X3201 (RealPor o [2002/07/08] kern/40369 rman_reserve_resource - when "count > (en o [2002/07/12] kern/40516 ti driver has no buadrate set o [2002/07/14] kern/40563 gif driver can clobber route/arp table o [2002/07/17] kern/40711 sound CT5880-C sometimes fails to output sound o [2002/07/18] kern/40745 Inconsistency between net/if.c and struct o [2002/07/19] kern/40763 [UPDATED PATCH] Introduction of non-stric o [2002/07/23] kern/40919 usage of ucred->cr_uid in sys/netinet/in_ o [2002/07/23] kern/40926 qa After Upgrading or Clean Installing 4.6, o [2002/07/23] kern/40927 sound sound dies with pcm:play:0 play interrupt o [2002/07/23] kern/40933 make depend fails when building kernel fr o [2002/07/24] kern/40948 joe USB HP CDW8200 does not work o [2002/08/04] kern/41317 trhodes reflect kernel building user for sudo-ers o [2002/08/07] kern/41415 joe Some USB scanner cannot talk to uscanner f [2002/08/09] kern/41489 nge(4) works as a module, but fails when o [2002/08/11] kern/41543 emulation Easier wine/w23 support o [2002/08/11] kern/41555 Add support of VScom titan PCI-800L o [2002/08/13] kern/41631 PATCH to add sysctl knob to disable clone o [2002/08/20] kern/41812 patch to detect/function AMD768 SMBus o [2002/07/31] kern/41220 [PATCH] Minor sk driver enhancements o [2002/08/21] kern/41856 VESA splash screen problems on ThinkPad 2 o [2002/08/27] kern/42065 kern.ps_showallprocs has no effect on /pr o [2002/08/31] kern/42274 jlemon Convert defined variable into tuneable as p [2002/09/04] kern/42404 TIOCSCTTY not implemented in linuxulator o [2002/09/05] kern/42442 problem in idlequeue/debugging mode ? s [2002/09/05] kern/42466 linux: 'ipc' typ=258 not implemented o [2002/09/13] kern/42728 many problems in src/usr.sbin/ppp/* afte o [2002/09/14] kern/42769 Boot stalls if the system has a serial co o [2002/09/19] kern/42967 njl Sony MemoryStick problems with umass driv o [2002/09/19] kern/42977 qa FreeBSD installer doesn't probe past EISA o [2002/09/21] kern/43154 tunwrite() does not allocate clusters for o [2002/10/02] kern/43577 [PATCH] New kernel option SHUTDOWN_BEEP o [2002/10/02] kern/43610 static-ize some symbols in digi driver o [2002/10/02] kern/43611 static-ize some symbols in sys/crypto o [2002/10/02] kern/43613 static-ize symbol in smbfs code o [2002/10/02] kern/43616 static-ize some functions in sys/net/zlib o [2002/10/11] kern/43916 Olicom OC-2220 (PC-card) hangs on ifconfi o [2002/09/25] kern/43355 idad driver will work if logical drives d o [2002/10/05] kern/43716 puc driver does not recognize Lava Dual-6 o [2002/10/15] kern/44098 RealTec-based NIC initialization problem p [2002/10/15] kern/44121 [PATCH] bogus cast removal in hea driver o [2002/10/18] kern/44215 PUC driver support for Moxa C320 Intellio o [2002/10/18] kern/44218 Init dies during boot after upgrade from o [2002/10/19] kern/44260 LINT does not list pseudo-device tap o [2002/10/19] kern/44267 One more modem PNP id for /usr/src/sys/is o [2002/10/19] kern/44293 thomas Unable to access audio CD under Linux emu p [2002/10/21] kern/44333 mikeh [PATCH] make A4-tech RFSW-35 mouse's whee o [2002/10/21] kern/44365 introduce ulong and unchar types o [2002/10/21] kern/44372 roberto some kernel options prevent NTP clock syn o [2002/10/24] kern/44439 puc doesn't find all 4 ports on SIIG Cybe o [2002/10/24] kern/44450 joe USB support FAILURE for device that was s o [2002/11/04] kern/44872 dgb driver update o [2002/11/09] kern/45182 sound fm801.c does not recognize a FM801 based o [2002/11/14] kern/45285 Support for yet another PCI multiport car o [2002/11/14] kern/45291 kevent(2) ignores timeout if nevents == 0 o [2002/11/14] kern/45293 kevent denies to observe /dev/tty o [2002/11/24] kern/45684 systat -vmstat reports "alternate system o [2002/11/26] kern/45753 linux-sun-jdk1.4.1 calls SIOCGIFCONF ioct o [2002/09/27] kern/43426 mlockall and munlockall system calls are o [2002/11/26] kern/45785 emulation Linux WineX seems to require a few new li o [2002/11/27] kern/45793 Invalid media subtype aliases in if_media o [2002/12/03] kern/45968 des linprocfs is missing maps o [2002/12/05] kern/46014 thomas atapi-cam: cd0c errors o [2002/12/07] kern/46080 ipfw [PATCH] logamount in ipfw2 does not defau f [2002/12/09] kern/46157 dnetc crashes DP2-SMP system o [2002/12/10] kern/46159 ipfw ipfw dynamic rules lifetime feature o [2002/12/13] kern/46250 sound Sound driver not working correctly on SON o [2002/12/18] kern/46368 MAXDEP in isa/pnpparse.c is too small o [2002/12/23] kern/46488 joe usb driver do not send detach events on S o [2002/12/27] kern/46564 ipfw IPFilter and IPFW processing order is not o [2003/01/01] kern/46677 joe Wrong vendor and device defines in ng_ubt o [2003/01/03] kern/46734 joystick driver doesn't allow for anythin o [2003/01/04] kern/46773 sos I want IDE HD go into standby mode. o [2003/01/10] kern/46961 bridging between vlan-interfaces on same o [2003/01/11] kern/46973 syscons virtual terminals switching featu f [2003/01/11] kern/46978 acpi-jp Creative SoundBlaster 16 does not work wh o [2003/01/18] kern/47200 joe USB port is disabled when Kodak DX4900 is o [2003/01/20] kern/47274 joe umodem update to support motorola v66 pho o [2003/01/21] kern/47311 mdodd [PATCH] Kernel support for NVIDIA nForce2 o [2003/01/21] kern/47349 Fake a sound ioctl (plus linux hook) o [2003/01/22] kern/47359 panic after kldunload snp o [2003/01/30] kern/47675 joe usb/umass problems o [2003/01/31] kern/47731 reboot goes panic each time o [2003/02/01] kern/47791 imp Idea for what to do on insert o [2003/02/04] kern/47935 panic on disk full o [2003/02/07] kern/48081 Enabling mutex profiling panics the kerne o [2003/02/11] kern/48172 ipfw ipfw does not log size and flags o [2003/02/12] kern/48216 mike Linux uname returns wrong hostname inside o [2003/02/19] kern/48468 imp puc driver for Nm9845 o [2003/02/19] kern/48471 Private IPC for every jail. [PATCH] o [2003/02/23] kern/48599 [PATCH] syscons cut-n-paste logic is brok f [2003/02/20] kern/48494 acpi-jp BP6 ACPI errors - AML incorrect o [2003/02/27] kern/48759 demon kldstat shows module after unsuccessfull o [2003/03/02] kern/48837 mbr dc cannot handle DC21142/3 PCI/CardBus 10 o [2003/03/03] kern/48894 Improvements to the NFS read-ahead heuris o [2003/03/06] kern/48976 nwfs.ko oddity o [2003/03/08] kern/49037 sound ESS Maestro chip misdetected as 'chip2' o [2003/03/08] kern/49039 add support for RS485 hardware where dire o [2003/03/10] kern/49085 jail statfs and mountpoint information le o [2003/03/10] kern/49086 ipfw [patch] Make ipfw2 log to different syslo o [2003/03/12] kern/49957 CRC32 generator should be the common rout o [2003/03/12] kern/49963 rwatson Lack of error return for some proc sysctl o [2003/03/13] kern/49980 murray patch to enable ThinkPAD X24 sound device o [2003/03/22] kern/50201 3ware RAID 5 resulting in data corruption f [2003/03/25] kern/50297 njl QUIRK: Apacer Handydrive 256M USB Disk o [2003/04/01] kern/50526 Update to #! line termination o [2003/04/05] kern/50633 joe problems mounting SanDisk compact flash r o [2003/04/06] kern/50644 [PATCH] Update xe driver: multicast, hard o [2003/04/07] kern/50687 ioctl(.., CDIOCCAPABILITY, ...) always re o [2003/04/14] kern/50948 BUG: @0 does not insert at the beginning o [2003/04/13] kern/50923 rfork(RFPROC|RFMEM, ...) fails unconditio o [2003/04/15] kern/51009 Buggy aue driver fixed. o [2003/04/16] kern/51074 joe pointer arithmatic error in ugen.c o [2003/04/17] kern/51082 FEATURE: More descriptive message on drop o [2003/04/17] kern/51111 darrenr ipf doesn't allow outbound IPv6 packets u o [2003/04/17] kern/51120 MSGBUF_SIZE doesn't work in makefiles o [2003/04/18] kern/51137 config(8) should check if a scheduler is o [2003/04/20] kern/51186 imp pointer arithmatic error in ugen.c f [2003/05/01] kern/51675 njl Quirks for i-Bead MP3 player/USB key o [2003/05/06] kern/51874 Apacer HandySteno should have DA_Q_NO_6_B o [2003/05/08] kern/51958 joe update for urio driver [PATCH] o [2003/05/10] kern/52026 joe umass driver support for InSystem ISD200 o [2003/05/14] kern/52258 imp pccard non-functional, repeated "card ins o [2003/05/23] kern/52623 Error in driver for the Intel EtherExpres o [2003/05/27] kern/52725 [PATCH] installincludes for kmods o [2003/05/27] kern/52735 joe Add support for one more type of USB flas o [2003/05/28] kern/52752 [PATCH] SMBus controller on ICH4 not reco o [2003/05/28] kern/52764 Impossible to build kernel with COPTFLAGS o [2003/05/29] kern/52795 joe uscanner for CanoScan N1220U f [2003/06/04] kern/52943 reproducable system stuck just brefore mu o [2003/06/04] kern/52927 Intel Kinnereth-R NIC is not supported by o [2003/06/04] kern/52960 kbdcontrol macros don't work when len = 1 o [2003/06/06] kern/52980 mbr [patch] dc(4) driver fails to init Intel o [2003/06/06] kern/53005 joe USB IntelligentStick SCSI DA quirk o [2003/06/07] kern/53025 joe [PATCH] ugen does not allow O_NONBLOCK fo o [2003/06/07] kern/53027 imp [CHANGE-REQUEST] Better Entry for Intel P o [2003/06/08] kern/53067 joe Add support for the PQI USB Flash Disk o [2003/06/09] kern/53094 joe QUIRK: Creative Nomad Muvo USB mp3 player o [2003/06/11] kern/53242 sound [patch] snd_ich fails to detect Intel 828 o [2003/06/12] kern/53264 sound PCM interrupt not routed on Sony VAIO lap o [2003/06/12] kern/53265 imp Make Sierra A555 work in FreeBSD o [2003/06/13] kern/53276 modules ignore kernel configuration upon o [2003/06/16] kern/53383 adding Terratec TValue to bktr driver o [2003/06/17] kern/53417 sound Bad Recordings on AC97 onboard audio syst f [2003/06/17] kern/53427 Changes to MSDOSFS not reflected when Win o [2003/06/19] kern/53506 Support gzipped modules. (partial patch) o [2003/06/20] kern/53548 Add support for Moxa CP-168U PCI serial a o [2003/06/23] kern/53627 silby Zsh fork bomb panicks kernel. o [2003/06/25] kern/53719 phk [PATCH] GEOM: Just first DOS_EXTLBA parti o [2003/06/29] kern/53897 joe [PATCH] add EPoX Bluetooth USB dongle to f [2003/06/25] kern/53726 PS/2 optical mouse 'Samsung OMS3PB' won't o [2003/06/30] kern/53941 sos [PATCH] ATAPI CD drives don't open the tr o [2003/07/03] kern/54078 sound Sound Plays ~10% Slow o [2003/07/04] kern/54094 [patch] make signedness of kg_nice and ki o [2003/07/06] kern/54163 Non-existing Jails in jls?! o [2003/07/07] kern/54176 sound [PATCH] Updates for AC97 audio (ICH5/R & o [2003/07/11] kern/54383 NFS root configurations without dynamic p o [2003/07/13] kern/54439 Protecting sysctls variables by given mut o [2003/07/18] kern/54604 des Made 'ps -e' procfs-independent [PATCH]. s [1996/10/13] misc/1791 tegge syslimits.h does not allow overriding def s [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/09/28] misc/4646 qa Can't fixit with an NFS-mounted CD. o [2002/08/20] misc/41817 pw groupshow doesn't include the login gr o [2002/01/22] misc/34171 yar ftpd indiscrete about unprivileged user a o [2002/01/23] misc/34195 iedowse setting the action for SIGCHLD to SIG_IGN s [1998/07/10] misc/7232 qa Suggestion for FreeBSD installation dialo o [1998/09/16] misc/7946 ccdconfig gives confusing error when give o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) f [1998/12/28] misc/9220 ache nvi: catalog: mistake in Russian error me o [1999/08/22] misc/13326 additional timeval interfaces for 1TB o [2002/04/24] misc/37434 mbr dhclient generates pointless log messages o [2002/04/29] misc/37569 [PATCH] Extend fstab(5) format to allow f o [2002/05/03] misc/37732 joe usbd start in wrong place in /etc/rc in 4 o [2002/05/13] misc/38057 qa "install" document doesn't display correc o [2002/05/20] misc/38347 new library function abs2rel and rel2abs. o [2002/05/23] misc/38452 joe Logitech USB iFeel: device_probe_and_atta p [2003/04/28] misc/51504 ache New file: src/share/mklocale/zh_CN.GBK.sr o [2002/05/23] misc/38468 imp Write drivers for Intel PRO/Wireless 2011 o [2002/05/26] misc/38583 qa sysinstall installs crypto sources when / o [2002/05/29] misc/38727 mptable should complain about garbage arg o [2002/06/03] misc/38854 qa Resetting the sysinstall during setup cau o [2002/06/03] misc/38870 kernel-panic when coping data from a NFS- o [2002/06/05] misc/38937 delay between tracks in digital audio dum o [2002/06/12] misc/39201 ptrace(2) and rfork(RFLINUXTHPN) confuse f [2002/06/13] misc/39229 instruction pointer = 0x8:0xc00eaf13 o [2002/06/15] misc/39347 use of /usr/bin/* utils in /etc/rc.diskle o [2002/06/16] misc/39360 qa If linux emu is added as a dependency (an o [2002/06/17] misc/39425 Auto mounted directory was not found at b o [2002/06/17] misc/39439 tcopy will not duplicate tapes with block o [2002/06/18] misc/39466 find -xdev hangs on dead NFS mounts (/etc o [2002/06/24] misc/39772 imp pccardd is slow to install a PCCARD. o [2002/06/25] misc/39864 robert hostname instead of IP in w -n output s [2002/07/04] misc/40197 sos BurnCD doesn't "just work" at 4.6-p1 o [2002/06/30] misc/40057 bugbusters send-pr -a flag does not work with -f o [2002/07/01] misc/40081 sound noise in sound output with built-in CMedi f [2002/07/06] misc/40273 dougb some more fortunes o [2002/07/06] misc/40280 joe I add uscanner entory o [2002/07/07] misc/40298 using swapfile as /tmp o [2002/07/09] misc/40378 standards stdlib.h gives needless warnings with -an o [2002/07/14] misc/40552 alternate syscons font for iso-07 encodin o [2002/07/14] misc/40577 post-October 2001 Dell Inspiron 2500's (a o [2002/07/16] misc/40657 joe Logitech iFeel usb mouse will not attach o [2002/07/16] misc/40671 threads pthread_cancel doesn't remove thread from o [2002/07/17] misc/40693 the system reboot alone with no reason o [2002/07/30] misc/41179 LD_LIBRARY_PATH security checks o [2002/07/31] misc/41213 top(1) blocks if NIS-related entries in p o [2002/07/31] misc/41215 console revert back to kbd0 (AT) after KV o [2002/08/01] misc/41238 qa problems with FreeBSD installation on a d o [2002/08/01] misc/41243 joe USB, getting full desc failed, HID device o [2002/08/04] misc/41309 brian security check scripts do not delete temp o [2002/08/06] misc/41379 Cannot browse directory tree on FreeBSD m o [2002/08/09] misc/41490 sound C-Media 8738 sound card static o [2002/08/10] misc/41515 jhb boot0cfg corrupts slice table o [2002/08/11] misc/41566 obrien file(1) out of date o [2002/08/14] misc/41674 ken iostat column formatting overlaps o [2002/08/17] misc/41744 qa Cannot stop comat22 from being extracted o [2002/08/18] misc/41771 '/etc/ttys' and X o [2002/08/23] misc/41947 hexdump(1) unprintable ASCII enhancement o [2002/08/23] misc/41949 qa sysinstall sorts /etc/rc.conf during netb o [2002/08/27] misc/42084 luigi PicoBSD's 'netstat -i' reports negative I o [2002/08/29] misc/42167 du uses linear search for duplicate inode o [2002/09/02] misc/42336 [PATCH] ISO-fication of /usr/src/contrib/ o [2002/09/03] misc/42373 mtm Update to rc scripts to make interface al o [2003/05/14] misc/52255 picobsd build script fails under FreeBSD o [2002/09/04] misc/42422 dbm_delete returns -1 instead of 1 when t o [2002/09/04] misc/42429 hash_action called with HASH_DELETE does o [2002/09/05] misc/42461 mdodd if_wi_pci.c,if_wi_pccard.c lack device_re o [2002/09/05] misc/42467 netstat -s does not include fabricated pk o [2002/09/05] misc/42468 mount_smbfs incorrectly handled configura o [2002/09/06] misc/42469 After mounting by mount_smbfs directories o [2002/09/08] misc/42558 www http://www.freebsd.org/search produces in o [2002/09/11] misc/42663 pw useradd assigns unique UID's to multip o [2002/09/18] misc/42934 qa installation procedure on install floppie o [2002/09/19] misc/42956 dlclose gives "invalid shared object hand o [2002/09/21] misc/43169 caps-lock led doesn't work o [2002/09/21] misc/43177 markm Updates and additions to src/games/quiz/d o [2002/09/22] misc/43262 command 'shutdown -r' (also reboot) cause o [2002/09/25] misc/43368 pkg_create fails if target directory does o [2002/09/29] misc/43470 blackend Solid State / x109 article out of date. o [2002/09/29] misc/43474 murray dhcp.* values not set in kenv by bootp cl o [2002/09/29] misc/43476 rc.* uses kenv - which is in /usr/bin o [2002/09/29] misc/43494 wish: resolv.conf created (again) later i o [2002/09/29] misc/43495 awk - rc/diskless references by full path o [2002/09/29] misc/43496 touch - rc/diskless references by full pa o [2002/09/29] misc/43497 mount -t nfs -> crunchgen incompatible o [2002/09/30] misc/43539 Cannot mout floppy on Compaq Proliant ML3 o [2002/09/30] misc/43543 jhb cdboot does not handle 'relaxed' ISO9660 f [2002/09/30] misc/43547 ppp will not connect to att worldnet over o [2002/10/08] misc/43825 qa please remove object files in source (src o [2002/10/10] misc/43886 markm local exploitable overflow in rogue o [2002/10/10] misc/43905 kqueues: EV_SET(kevp++, ...) is non-int o [2002/10/12] misc/43989 missing tabs in calendarfiles o [2002/10/14] misc/44044 sound 4.7-R Freezes half the times snd.ko is lo o [2002/10/14] misc/44058 /dev/ch* is created without group write p o [2002/10/15] misc/44122 tun0 gets a second ip adress after a disc o [2002/10/16] misc/44150 Diskless kernel may crash, depends on the o [2002/10/19] misc/44286 roberto /etc/defaults/rc.conf uses the obsolete n o [2002/10/20] misc/44307 UTF-8 locales support o [2002/10/22] misc/44379 libutil: property.c, properties_read() ba o [2002/10/26] misc/44500 AC1001 Gigabit NIC Worked o [2002/10/29] misc/44587 dev/dpt/dpt.h is missing defines required o [2002/10/30] misc/44747 strange echoes in sound when using PLIP o o [2002/11/04] misc/44894 markm as a local non-root user and remote it's o [2002/11/04] misc/44915 qa 'choose installation media' choose CD-ROM o [2002/11/07] misc/45026 Can't set next password change date on NI o [2002/11/11] misc/45222 daily rejected mail hosts report too long o [2002/11/12] misc/45254 qa Sysinstall installs things it should not o [2002/11/13] misc/45273 contrib/smbfs: error in examples/dot.nsmb o [2002/11/25] misc/45704 [PATCH] request to change cp866b to cp866 o [2002/11/28] misc/45830 KDC has problems when listening to IPv6 a o [2002/11/29] misc/45839 [PATCH] Remove some duplicate fortunes p [2002/11/30] misc/45874 ache [PATCH] FreeBSD does not know about ca_ES o [2002/12/10] misc/46163 gad lpc problem. Only root can modify despit o [2002/12/17] misc/46328 gad patch for lpd o [2002/12/19] misc/46382 ps(1) could use a "repeat" mode o [2002/12/20] misc/46409 Certain periodic scripts check broken NFS o [2002/12/27] misc/46555 enhancements for libradius o [2003/01/01] misc/46670 qa 5.0-RC2 install leaves CD drawer locked. o [2003/01/04] misc/46758 moused enhancements o [2003/01/12] misc/46998 [patch] Support PicoBSD source in other l o [2003/01/13] misc/47029 sound Static and popping with Hercules GameThea o [2003/01/18] misc/47187 [patch] fix printf specifier in src/sys/b o [2003/01/21] misc/47314 qa Install requires a swap partition. o [2003/01/27] misc/47576 [PATCH] factor(6)ing of negative numbers o [2003/01/28] misc/47601 ru Additional subdir targets p [2003/02/04] misc/47906 murray options screen not return previous screen o [2003/02/04] misc/47908 qa /stand/sysinstall can't display document o [2003/02/09] misc/48110 change CVSROOT/log_accum.pl to not send m o [2003/02/10] misc/48133 improvied vi recovery notification o [2003/02/18] misc/48444 change to count connection attempts inste o [2003/03/03] misc/48870 [PATCH] allow to cancel interface status o [2003/03/12] misc/49967 Minor fixes to fortunes data o [2003/03/18] misc/50106 Make 'make release' more flexible behind o [2003/03/20] misc/50154 darrenr Add /etc/periodic/security/610.ipf6denied f [2003/03/21] misc/50160 ache sl_SI.ISO8859-2 collation sequence is wro o [2003/03/27] misc/50370 phantom NLSOWN set to ${SHAREGRP} in o [2003/04/14] misc/50945 ru BUG: NOINSTALLLIB isn't honored in all Ma p [2003/04/15] misc/50979 tomsoft [PATCH] Some spelling corrections in sbin o [2003/04/19] misc/51167 dougb [PATCH] Makefile for /etc/namedb. f [2003/05/03] misc/51729 ache A patch that can make freebsd support zh_ o [2003/05/07] misc/51920 Collation for no_NO.ISO8859-1 o [2003/05/14] misc/52256 picobsd build script does not read in use o [2003/06/04] misc/52954 mbr [PATCH] Unbreak the share/examples/kld/cd p [2003/06/14] misc/53327 Important fix for Latin-american keymap p [2003/06/30] misc/53944 [PATCH] ARMSCII-8 (Armenian) LOCALE and C f [2003/07/07] misc/54198 /usr/share/misc/magic does not contain td o [2003/07/08] misc/54220 [PATCH] /usr/src/Makefile has wrong instr o [2003/07/08] misc/54229 Complete "See also" section for getipnode o [2003/07/14] misc/54477 Thousands separator for Italian locale o [1999/10/07] ports/14182 portmgr Patch: bsd.port.mk: add plist target o [1999/11/08] ports/14783 jmz mgetty 1.1.12 always sets clocal o [1999/11/11] ports/14824 wosch no '\0' at the end of buffer o [1999/11/28] ports/15142 jmz Added DIST_SUBDIR to print/tex port o [1999/12/15] ports/15495 portmgr Add "addsum" target to bsd.port.mk a [2002/09/30] ports/43540 arved Update Port net/cnet 1.7.7 -> 2.0.3 o [2000/03/18] ports/17479 portmgr bsd.port.mk: PARALLEL_BUILD o [2000/04/04] ports/17803 jake new port: devel/gdb11 s [2000/05/24] ports/18800 green security/cfs ports installation fix o [2000/06/01] ports/18960 portmgr Add USE_APACHE to bsd.port.mk for Apache o [2000/06/30] ports/19594 trevor update port: qrash a [2000/07/28] ports/20270 ade libtool needlessly runs ldconfig after in o [2000/08/02] ports/20359 demon New port: Apache-mod_perl_guide a [2000/08/10] ports/20520 olgeni New port: lang/mercury o [2000/08/23] ports/20795 msmith FBSD 4.x: Citrix client with drive mappin o [2000/10/09] ports/21885 portmgr bsd.port.mk: test for old layout is too o [2000/10/30] ports/22412 taoka two extraneous ports and one name change o [2000/11/02] ports/22550 cy Patch for conserver for log file rotation o [2000/11/08] ports/22698 portmgr Ports' rc.d files should use rc.conf o [2001/01/10] ports/24214 portmgr [PATCH] verbose 'make index' o [2001/01/12] ports/24299 ports-bugs Configure the synaptics touchpad. o [2001/01/30] ports/24749 dirk mysql323-server pkg-install script doesn' o [2001/02/07] ports/24940 demon prolem with Tnm::icmp echo command due to o [2001/02/09] ports/24983 nobutaka Emacs ports have misleading names o [2001/03/02] ports/25490 wosch [PATCH] fix various bugs in stat(1) o [2001/03/06] ports/25576 anholt XFree86-4 port installs manual pages with a [2001/03/13] ports/25779 portmgr (patch) make fetch-list should list all m f [2001/03/14] ports/25815 portmgr [PATCH] Port build collision fix. o [2001/03/28] ports/26192 kiri apel appeared both in xemacs/site-package o [2001/04/27] ports/26904 jim New port(?): net/everybuddy-i18n (i18n pa o [2001/05/01] ports/27019 marcel patch supplied in PR ports/26976 breaks l o [2001/05/08] ports/27200 greid new port: bed (binary editor) a [2001/06/07] ports/27936 mi Update /usr/ports/deskutils/xmdiary 3.0.1 o [2001/06/13] ports/28121 netchild New port: 3D modelling and animation syst o [2001/06/13] ports/28138 tg python os.statvfs module is not functiona o [2001/06/23] ports/28365 wosch Typical use of portchecheckout breaks int o [2001/06/27] ports/28471 keith no iso8859 font o [2001/07/02] ports/28644 jmz Make error when rebuilding xdvi o [2000/12/24] ports/23822 trevor mtree entries for German X11 man pages o [2001/07/03] ports/28678 wosch portcheckout doesn't allow flexible build o [2001/07/07] ports/28803 cy ports/comms/conserver does not support ## o [2001/07/08] ports/28810 lioux qpopper 4.0.3 + PAM modification; HAVE_SH o [2001/07/10] ports/28887 brian [PATCH] sandbox for httptunnel! o [2001/07/22] ports/29154 nik TeX resource settings from MAKE_ENV in pr o [2001/07/25] ports/29223 ports-bugs cyrus-imapd and postfix master.8 manpage f [2001/08/13] ports/29691 portmgr New port variable USE_COMPAT_LIB - bsd.po o [2001/08/21] ports/29929 ports-bugs wginstall.pl script chokes on calculated f [2001/08/27] ports/30148 ade devel/libtool: shared libs with compaq-cc o [2001/08/29] ports/30201 msmith editors/wordperfect in ports is not usabl o [2001/09/22] ports/30732 obrien bash2 - pkg-plist fix and sample files ad o [2001/09/23] ports/30754 nakai x11/dgs port overwrites a number of files o [2001/09/23] ports/30777 portmgr add a 'make pkg-plist' make target in por f [2001/09/24] ports/30788 sobomax compile works, install fails of graphics/ o [2001/09/27] ports/30870 ports-bugs httpd in free(): warning: recursive call o [2001/09/30] ports/30929 brian [net/pppoa] use usbd to initialize USB AD o [2001/09/30] ports/30936 taoka pips-sc880 installed script contains inco o [2001/10/30] ports/31630 jmz Port se-ispell install the dictionary in o [2001/11/11] ports/31910 greid comms/sms_client a [2001/11/12] ports/31943 dirk mysql323-server port hostname look up fai o [2001/11/16] ports/32039 greid UPDATE devel/asmutils 0.14 -> 0.15 o [2001/11/20] ports/32145 jmz XFree86 doesn't ldconfig itself o [2001/11/22] ports/32202 kbyanc ports/devel/py-htmlkit distribution does f [2001/11/26] ports/32317 petef Request for linux-qt port o [2001/12/04] ports/32508 ports-bugs www/flashplugin-mozilla has malloc bug o [2001/12/08] ports/32604 portmgr Many ports which depends on apache don't s [2001/12/09] ports/32653 joe Added patches to improve USB scanner supp o [2001/12/17] ports/32936 mharo ports/security/keyprint only supports S/K s [2001/12/18] ports/32999 arved New ports: devel/ORBacus4 o [2001/12/29] ports/33320 trevor print/acroread5 does not install the Nets o [2002/01/17] ports/33980 benno Can't use sgmltools-lite-3.0.0 port o [2002/01/30] ports/34442 ports-bugs xt, xalan-j, saxon should have the same C o [2002/02/02] ports/34550 ports-bugs ghostscript-gnu-nox11 portversion 6.51 fa o [2002/02/02] ports/34565 ports-bugs graphics/blender port is broke o [2002/02/03] ports/34597 eivind [PATCH] Update ports/mail/isync to 0.8 o [2002/02/06] ports/34659 reg Proposed change to Mozilla port's Makefil o [2002/02/07] ports/34714 ache unzip(1) breaks filenames in non-ASCII ch o [2002/02/10] ports/34796 jmz wrong path in /etc/XF86Config (purely cos s [2002/02/12] ports/34878 chern sysinstall o [2002/02/27] ports/35372 ports-bugs pgp6 ports fails to compile on alpha plat s [2002/03/01] ports/35459 ports-bugs portupgrade doesn't clean up dependencies f [2002/03/02] ports/35481 edwin New port: console text editor looks like o [2002/03/05] ports/35580 ports-bugs Startup script in /usr/local/etc/rc.d is o [2002/03/07] ports/35638 markm tn3270 dumps core unconditionally o [2002/03/07] ports/35639 max executable name conflicts: ploticus and s o [2002/03/11] ports/35767 portmgr make_index script does not deal with syml o [2002/03/14] ports/35897 ports-bugs upgrading the linux_base port runs into t o [2002/03/17] ports/36020 jmz Update port: print/musixtex T.98 -> T.104 f [2002/03/17] ports/36034 edwin new port databases/pg-crypto o [2002/03/18] ports/36079 portmgr [PATCH] Support USE_LESSTIF=yes o [2002/03/19] ports/36112 portmgr [PATCH] New feature for whole ports tree: f [2002/03/19] ports/36113 nork Add gdbm, BerkeleyDB2, BerkeleyDB3, libio f [2002/03/22] ports/36202 wosch update to sysutils/socket: NetBSD IPv6 pa o [2002/03/29] ports/36503 ports-bugs several files conflict in ports/databases o [2002/03/30] ports/36545 jmz mwrite is an absolute symbolic link to /u o [2002/03/30] ports/36557 perky Fix port: security/py-amkCrypto (to refle o [2002/03/30] ports/36560 rse bug fix for the eperl package o [2002/03/31] ports/36587 ports-bugs news/inn{-stable} do not install when --e a [2002/04/04] ports/36766 ade Incompatibility between autoconf, automak o [2002/04/06] ports/36832 kuriyama apache13-* coredumps when using XML::Pars o [1998/06/22] ports/7023 portmgr bsd.port.(%|subdir.).mk patches for size o [2002/04/07] ports/36849 cy FVWM-Themes fails to switch themes o [2002/04/08] ports/36913 seanc New port: devel/ruby-rbprof o [2002/04/09] ports/36933 portmgr [PATHCES] New feature for pkg_create and o [2002/04/17] ports/37186 ports-bugs Dbview contains an error, because of whic o [2002/04/17] ports/37187 mita ports/japanese/vfghostscript font-2.6.2 f o [2002/04/18] ports/37226 mita ports/japanese/vfghostscript5 doesn't fin o [2002/04/22] ports/37362 ports-bugs The Ted port is incompatible with FreeBSD o [2002/04/23] ports/37366 kde kdeutils-3.0: kdepasswd truncates passwor o [2002/04/25] ports/37462 jmz dvips is no more available separately fro o [2002/04/27] ports/37518 grog gmat port CATALOG needs updating o [2002/04/29] ports/37574 taoka ports/print/pips-sc20 file not found on m o [2002/04/30] ports/37596 shige EMACS_PORT_NAME=xemacs21 forks make infin o [2002/04/30] ports/37597 ports-bugs aureal-kmod-1.5_3 fails to build s [2002/05/01] ports/37654 arved Update textproc/xml4j to 4.0.1 o [2002/05/03] ports/37711 znerd New port: Beacon-agent 0.6.3 (Multicast B o [2002/05/03] ports/37712 znerd New port: Beacon server v0.8.9 (Beacon mu o [2002/05/03] ports/37713 seanc AIM Transport doesn't work correctly with s [2002/05/05] ports/37771 znerd New Port: audio/jmax o [2002/05/09] ports/37904 znerd New Port: database/isql-viewer (a JDBC 2. o [2002/05/10] ports/37927 ports-bugs port to install linux Lahey Fortran 95 v6 o [2002/05/10] ports/37942 kde KDE 3.0 konsole terminal keyboard table u o [2002/05/11] ports/37962 markm ports/lang/gcl does not build o [2002/05/13] ports/38034 ports-bugs compaq-cc (under linux-emu) installes man o [2002/05/14] ports/38086 rse eperl does not build CFLAGS recursive err o [2002/05/14] ports/38090 jkoshy devel/m4 port PREFIX vs LOCALBASE o [2002/05/15] ports/38125 ports-bugs ApacheCylical Link error/bug in Virtualse o [2002/05/18] ports/38243 www Ports search for 'IMP' vs look in Mail ca o [2002/05/19] ports/38301 kiri upgrade www/w3-4 to 4.0.47 o [2002/05/22] ports/38406 obrien incorrect .so in g++31.1 man page o [2002/05/22] ports/38408 wjv zope-zmysqlda does not run f [2002/05/24] ports/38516 edwin ICQv7 transport for the Jabber Server f [2002/05/25] ports/38539 edwin New port: devel/libcfg+ o [2002/05/26] ports/38593 portmgr Third level ports f [2002/06/01] ports/38800 ports-bugs update www/roxen to Roxen WebServer 2.2.2 o [2002/06/03] ports/38853 portmgr net/ethereal: configure fails o [2002/06/03] ports/38876 tegge devel/linuxthreads: pkg-plist ignores NOP o [2002/06/07] ports/38989 ports-bugs Fix to BROKEN arla port (arla-0.35.6) o [2002/06/10] ports/39095 mharo ports/net/nttcp and ports/net/ttcp appear o [2002/06/10] ports/39102 trevor new category requested: finance o [2002/06/10] ports/39103 trevor new virtual category requested: accessib o [2002/06/11] ports/39182 ports-bugs netsaint-plugins util.c functions don't q a [2002/06/12] ports/39193 edwin [maintainer-update] net/papaya update to o [2002/06/16] ports/39390 gnome Make graphics/imlib not depend upon GTK+ a [2002/06/19] ports/39544 ports-bugs mayavi port disfunctional o [2002/06/20] ports/39600 znerd New port: jdictionary-ger-hun 1.4 - Germa o [2002/06/20] ports/39603 znerd New port: jdictionary-eng-ger 1.4 - Engli a [2002/06/20] ports/39608 ports-bugs upgrade games/cgoban to 1.9.13 o [2002/06/21] ports/39620 ports-bugs flashplugin-mozilla crashes when viewing o [2002/06/21] ports/39634 jim Port pclock unaligned access on alpha o [2002/06/24] ports/39777 des New port: security/libsectok o [2002/06/24] ports/39778 des New port: security/sectok o [2002/06/18] ports/39476 ports-bugs profxp will run but when you fxp a file i o [2002/06/29] ports/40002 wjv py-4suite: XSLT import error o [2002/07/02] ports/40107 trevor ports/audio/festogi-spanish has a checksu o [2002/07/02] ports/40121 ache standard Apache port creates sbin link o [2002/07/02] ports/40124 kris Patch to wdm to allow long passwords o [2002/07/03] ports/40163 cy screen w/o suid and locale o [2002/07/07] ports/40284 mi ports/x11/djvuplugin tarball no longer ex o [2002/07/11] ports/40452 wollman ports/www/mod_auth_kerb mastersite doesn' o [2002/07/12] ports/40511 sumikawa update for net/zebra (no-ipv6 option) o [2002/07/13] ports/40525 kiri [new port] mail/mew2-xemacs-devel-mule o [2002/07/14] ports/40555 steve x11-toolkits/open-motif requires mkhtmlin o [2002/07/16] ports/40659 dirk php3 and GD problem a [2002/07/17] ports/40699 portmgr allow exclude patterns in `make search` o [2002/07/17] ports/40705 ports-bugs Upgrade of gnome-commander to 0.9.8 o [2002/07/18] ports/40756 ports-bugs insecure default options o [2002/07/21] ports/40866 ports-bugs sml-nj port CM autoloading compilation pr a [2002/07/22] ports/40904 ports-bugs new port: www/tclcurl o [2002/07/22] ports/40915 billf Fix pkg-plist for net/ethereal o [2002/07/25] ports/40975 knu Uncatched coredump of pkg_info while pkgd o [2002/07/31] ports/41209 gnome www/mozilla browser serializes DNS lookup o [2002/07/31] ports/41224 dburr update port: textproc/yodl o [2002/08/02] ports/41259 ports-bugs Info directory change for various GNU Ema a [2002/08/03] ports/41282 ports-bugs New_Ports japanese/stevie-* o [2002/08/07] ports/41400 benno sgmltools-lite update to 3.0.3 o [2002/08/07] ports/41434 ports-bugs New port: www/light: another Mozilla-base o [2002/08/08] ports/41444 portmgr ports system fails to check for non-base s [2002/08/08] ports/41452 wjv games/newkind does not compile due to all f [2002/08/11] ports/41562 mph New port: inform-glk o [2002/08/17] ports/41755 max Wrong letters in Canna iroha dictionary o o [2002/08/19] ports/41773 ports-bugs new port: x11-servers/Mozdev-PrintServer o [2002/08/19] ports/41784 ports-bugs vmware2 causes panic on recent -current o [2002/08/20] ports/41829 ports-bugs New port: mail/squirrelmail-devel o [2002/08/20] ports/41836 ports-bugs new port - virus filtering tool for qmail a [2002/08/23] ports/41945 ade bsd.port.mk: does not run ACLOCAL f [2002/08/24] ports/41971 ports-bugs New Port: sysutils/ipfw-manager o [2002/08/25] ports/42018 ports-bugs pkg_info with PKG_PATH searches through t o [2002/08/28] ports/42134 ports-bugs linux-gtk PORTREVISION contaminates other o [2002/08/30] ports/42197 obrien [patch] make ports/editors GNOMENG aware o [2002/08/31] ports/42280 ports-bugs New port: florist (Ada-POSIX bindings) o [2002/09/01] ports/42281 ports-bugs lang/rexx-imc - addition of UPPER patch o [2002/09/01] ports/42295 perky New port: Webware for Python (Web applica o [2002/09/01] ports/42296 ports-bugs New port: mod_webkit (adapter between Web o [2002/09/03] ports/42371 ports-bugs libncurses.so.4 missing from ports/emulat o [2002/09/03] ports/42378 ports-bugs New port: science/at Acoustic ToolBox o [2002/09/04] ports/42427 motoyuki New port apache13-modssl+ipv6 o [2002/09/06] ports/42483 cy misc/screen problem with editors/vim-lite o [2002/09/07] ports/42503 kde kuser tries to create the wrong Mailbox o [2002/09/10] ports/42642 fanf cfexecd needs symlink, cfexecd, cfservd a o [2002/09/10] ports/42649 marcel linux_kdump port for source dirs != /usr/ o [2002/09/11] ports/42668 grog port instant-workstation should be update o [2002/09/12] ports/42708 wjv update biology/emboss to EMBOSS-2.5.1 f [2002/09/23] ports/43282 dirk SONY CD-RW CRX10U don't work with FreeBSD o [2002/09/16] ports/42839 roam New Port: Weedns o [2002/09/20] ports/42985 tobez Perl5 port doesn't build automatically on a [2002/09/21] ports/43171 ports-bugs Port misc/upclient setgid kmem o [2002/09/22] ports/43273 portmgr [patch] make bsd.port.mk checksum check a o [2002/09/24] ports/43324 kde kdebase: kdm config file overwritten when o [2002/09/26] ports/43394 ports-bugs New port yptransitd, an nss_ldap replacem f [2002/09/29] ports/43484 ports-bugs Update port net/arla to 0.35.9 o [2002/10/01] ports/43565 znerd jakarta-tomcat41 port breaks upgrades o [2002/10/03] ports/43641 znerd Port www/orion should log to /var/log o [2002/10/04] ports/43667 ume RC_NG script for mail/cyrus_imapd o [2002/10/04] ports/43668 ume RC_NG script for mail/cyrus_imapd2 o [2002/10/04] ports/43669 dirk RC_NG script for databases/mysql323-{serv o [2002/10/04] ports/43670 ports-bugs RC_NG script for net/openldap12 o [2002/10/04] ports/43671 ports-bugs RC_NG script for net/openldap20 o [2002/10/04] ports/43673 ume RC_NG script for security/cyrus_sasl2 f [2002/10/04] ports/43679 znerd Error starting jakarta-tomcat41 o [2002/10/05] ports/43718 ports-bugs New port: x11-wm/icebgset (set IceWM back o [2002/10/07] ports/43764 ports-bugs New port: audio/wavemagic - An audio play o [2002/10/07] ports/43771 ports-bugs LaTeX ports mixed between print and textp o [2002/10/09] ports/43880 ports-bugs Names of Emacs ports are misleading o [2002/10/10] ports/43892 ports-bugs Enable use of keynote with security/isakm o [2002/10/10] ports/43909 kde kscd should no longer default to rmatcd0c o [2002/10/10] ports/43911 grog instant-workstation depend annoyance a [2002/10/11] ports/43956 ports-bugs New port: x11-wm/ion-devel o [2002/10/13] ports/43997 ports-bugs New port: www/apache13-modsnmp: apache-1. o [2002/10/13] ports/44019 ache Fixes for ftp/wu-ftpd-2.6.2 f [2002/10/13] ports/44028 oliver courier "make install" fails p [2002/10/15] ports/44095 mjacob Fix Installation of Manpages, portlint sy o [2002/10/18] ports/44225 green Update port: emulators/snes9x to 1.39 (fi o [2002/10/18] ports/44241 fanf Update: sysutils/cfengine2 o [2002/10/18] ports/44252 anholt XFree86-Servers port removes/overwrites c o [2002/10/19] ports/44258 obrien pkg_update ate my Muttrc o [2002/10/19] ports/44270 ports-bugs New port: net/bind9-sdb-ldap o [2002/10/19] ports/44273 dwcjr improved samba start script o [2002/10/22] ports/44393 green Bug in emulators/snes9x -- superfluous "& o [2002/10/24] ports/44430 ports-bugs New port: xalan-c v. 1.4 (XSLT engine and a [2002/10/25] ports/44464 ports-bugs Ports addition o [2002/10/28] ports/44565 ports-bugs NEW PORT: devel/libds (Useful data struct f [2002/10/29] ports/44589 trevor [patch] Unbreak audio/csound by updating o [2002/10/29] ports/44712 tg python port doesn't install symlink as 'p o [2002/10/29] ports/44715 bp novell ncp client does not install o [2002/11/02] ports/44836 ports-bugs New port: hunch - Scan httpd log files, f o [2002/11/03] ports/44854 ports-bugs [PATCH] add xaw3d build option to games/x o [2002/11/03] ports/44861 markp several games ports are missing their sco o [2002/11/05] ports/44949 ports-bugs New port Squid Access Report Generator o [2002/11/07] ports/45127 taoka correct fetch for x11/xco o [2002/11/08] ports/45148 jhb fix fetch and build for x11/eweather and o [2002/11/09] ports/45180 ports-bugs New port (split out from old port): net/s o [2002/11/11] ports/45216 joerg devel/bcc port is incomplete o [2002/11/11] ports/45227 ports-bugs problems building/installing db3 and open o [2002/11/12] ports/45247 ports-bugs New port: www/scoop collaborative media o [2002/11/14] ports/45289 mita ja-dvi2ps-3.2 does not handle \special co o [2002/11/15] ports/45316 ports-bugs new-port: game, train control simulation o [2002/11/15] ports/45329 ports-bugs New port: xnodecor (x11 utility on Overri o [2002/11/16] ports/45343 torstenb Metamail 2.7 incorrectly patched [PATCH] o [2002/11/16] ports/45357 jmz PATCH: textproc/ispell - added bulgarian o [2002/11/16] ports/45360 portmgr [patch] add SITE_PERL / ARCH_PERL variabl o [2002/11/18] ports/45394 wjv update biology/emboss from 2.4.1 to 2.5.1 o [2002/11/18] ports/45414 portmgr make update in /usr/ports missing default o [2002/11/19] ports/45491 ports-bugs New Port: apache-soap (Apache SOAP Toolki o [2002/11/20] ports/45522 ports-bugs new port database/WWWdb-0.8.2 f [2002/11/20] ports/45526 edwin New port: math/maxima -- symbolic compute o [2002/11/22] ports/45596 dwcjr net/samba v2.2.7 fetch error - maybe a fi f [2002/11/22] ports/45607 edwin New port: french/grisbi, a french finance o [2002/11/22] ports/45612 marcel port devel/linux_kdump does not compile s [2002/11/22] ports/45613 portmgr make update doesn't o [2002/06/21] ports/39619 ports-bugs flashplugin-mozilla crashes and doesnt pl f [2002/11/24] ports/45681 sada Update port: chinese/chitex o [2002/11/24] ports/45693 ports-bugs New port: net/gkrellmmultiping2 f [2002/11/26] ports/45771 ports-bugs OffiX printer doesn't find printer f [2002/11/26] ports/45782 nakai [patch] fix fetch and update version for o [2002/11/27] ports/45812 ports-bugs New port for print/mup o [2002/11/29] ports/45843 dbaker sysutils/3dm - needs to detect and create o [2002/11/30] ports/45886 ports-bugs New ports: japanese/trr* o [2002/12/01] ports/45899 brian Packaging list for vlc-0.4.4 is incomplet o [2002/12/01] ports/45909 ports-bugs New port: Python DBI Sybase module o [2002/12/02] ports/45911 ports-bugs GEOM-related problem sysutils/diskcheckd o [2002/12/03] ports/45963 anders the port looks for majordomo.cf in /etc o [2002/12/03] ports/45977 dbaker New version of FreeBSD dnet client releas o [2002/12/05] ports/46005 ports-bugs New port: ginsu - a client for the gale s o [2002/12/06] ports/46024 ports-bugs palm/plucker-1.2 doesn't work with python f [2002/12/06] ports/46034 gioria new ports: mantis o [2002/12/07] ports/46063 ports-bugs New port: USB FM Radio Control utility f [2002/12/07] ports/46065 ports-bugs [patch] fix fetch for devel/libvanessa_* f [2002/12/07] ports/46077 kbyanc [patch] fix fetch for devel/gsnes9x f [2002/12/07] ports/46089 ports-bugs multimedia/xmms Vorbis plugin built incor o [2002/12/08] ports/46092 tg ports/print/acroread on i386 needs Linux o [2002/12/14] ports/46256 lioux update rxvt-devel to 2.7.9 o [2002/12/16] ports/46288 edwin OpenLDAP port update o [2002/12/16] ports/46317 obrien ports/editors/vim/files/patch-02 is stale o [2002/12/17] ports/46325 ports-bugs new port: net/luasocket - IP library for o [2002/12/17] ports/46327 ports-bugs obsolete version of the Computer Modern f o [2002/12/20] ports/46394 ports-bugs New port: special purpose database applic o [2002/12/20] ports/46410 ports-bugs New port: SGL - incomplete STL implementa o [2002/12/20] ports/46414 adrian squid man page gives wrong location of co o [2002/12/21] ports/46442 ports-bugs New port: Ada thin binding to SDL and Ope f [2002/12/20] ports/46417 mph bidwatcher port broken as of Dec. 17 2002 o [2002/12/21] ports/46448 ports-bugs New port: adabooch is a Booch implementat f [2002/12/21] ports/46457 ports-bugs Update x11/temperature.app to 1.4 and use o [2002/12/22] ports/46478 jmz Fix build on -current for graphics/pixmap p [2002/12/22] ports/46483 trevor [patch] Fix gcc295 on current/i386 o [2002/12/23] ports/46487 ports-bugs New port: cbind - Translator for "thin" A o [2002/12/23] ports/46505 ports-bugs New port: adabindx - an Ada-binding to th o [2002/12/23] ports/46510 ports-bugs sshd does not correctly store the remote f [2002/12/24] ports/46520 ports-bugs stability issues re - mplayer and audio o o [2002/12/25] ports/46522 sobomax xtraceroute-0.9.0 fails with "OpenGL not o [2002/12/27] ports/46570 jhb E-Fancylauncher core dump as receiving mo o [2002/12/28] ports/46602 ports-bugs new port devel/tkinspect o [2002/12/28] ports/46608 ports-bugs [NEW PORT] latest development track of ep f [2002/12/29] ports/46615 gioria new-port: mail/sympa - an electronic mail o [2002/12/31] ports/46655 dwcjr net/samba beauty fix o [2003/01/02] ports/46707 ports-bugs [NEW PORT} audio/asmix mixer for afterste o [2003/01/02] ports/46708 ports-bugs [NEW PORT} audio/asmixer Another mixer fo o [2003/01/03] ports/46714 ache fix www/mnogosearch to adhere to ${APACHE o [2003/01/03] ports/46731 ports-bugs New port: SGI's Open Inventor f [2003/01/03] ports/46738 edwin new port: www/templeet o [2003/01/04] ports/46756 ports-bugs new port: net/fpl o [2003/01/04] ports/46766 ports-bugs New port: kix-kmod : Syscons screen saver o [2003/01/04] ports/46774 ports-bugs New port: comms/lirc: Linux Infared Remot o [2003/01/06] ports/46803 sobomax Unbreak emulators/basiliskII on 5.0 o [2003/01/06] ports/46810 edwin [Patch] pkg_tree additional switches o [2003/01/07] ports/46847 ports-bugs new port: multimedia/nxtvepg (electronic o [2003/01/09] ports/46893 ports-bugs make error in /usr/ports/print/xpp o [2003/01/09] ports/46904 ports-bugs new port: mail/vqregister o [2003/01/12] ports/46991 markp new port: dump MSRPC information o [2003/01/12] ports/47002 roam New port: vodmr - ODMR/ATRN server for vp o [2003/01/13] ports/47018 sf Teach ftp/wget new very useful feature - o [2003/01/13] ports/47026 ports-bugs New port: a small assembly to HTML conver o [2003/01/13] ports/47036 portmgr bsd.port.mk has bad comments WRT dependen a [2003/01/14] ports/47068 arved Update port: devel/bison to 1.875 o [2003/01/15] ports/47098 ports-bugs New port: Senken, a city simulation game o [2003/01/15] ports/47112 ports-bugs web2ldap compile abends with `LDAP_FILT_M o [2003/01/15] ports/47128 ports-bugs New port: hybserv (irc services for ircd- o [2003/01/16] ports/47138 ports-bugs ports/latex cannot be installed o [2003/01/17] ports/47161 ports-bugs New Port: audio/xmms-kj Add K-JoefolSkinS o [2003/01/18] ports/47189 ports-bugs New port: x11/chameleon o [2003/01/18] ports/47197 ports-bugs multimedia/xmms cdaudio plugin issues ill o [2003/01/18] ports/47203 ade upgrade of automake to try on the cluster o [2003/01/19] ports/47216 ports-bugs daily_clean_hoststat_enable causes errors o [2003/01/19] ports/47218 ports-bugs PostgreSQL client has problems when libbi o [2003/01/19] ports/47220 ports-bugs New port: games/gnmm (GNOME Nine mens' mo o [2003/01/20] ports/47275 ports-bugs devel/sdcc v2.3.0 fails to configure/buil o [2003/01/22] ports/47379 ports-bugs patch for elm port o [2003/01/23] ports/47420 ports-bugs cad/xcircuit: ownership is of user who bu o [2003/01/24] ports/47442 dwcjr ports/net/samba-devel update to 3.0a21 o [2003/01/24] ports/47446 dougb nslookup crash in SetDefaultServer (patch o [2003/01/25] ports/47472 ports-bugs new port: games/xcheckers (checkers game) o [2003/01/25] ports/47473 ports-bugs Exitstatus passing in vgetty for external o [2003/01/26] ports/47520 ports-bugs New port: net/roadrunner - a BEEP library o [2003/01/27] ports/47542 ports-bugs [PATCH] Keynote2 support configuration op o [2003/01/27] ports/47545 ports-bugs New port: jpegoptim is an command-line jp o [2003/01/27] ports/47571 ports-bugs new port: gnotime tracker a [2003/01/28] ports/47593 nork Update port: www/elinks o [2003/01/28] ports/47622 ports-bugs New Port: misc/gkrellshoot2 o [2003/01/29] ports/47640 wjv ports/p5-bioperl-devel is obsolete o [2003/01/29] ports/47649 ports-bugs New port: audio/eTktab - guitar tabulatur o [2003/01/29] ports/47651 ports-bugs unPERLify ports/audio o [2003/01/29] ports/47652 ports-bugs unPERLify ports/astro o [2003/01/29] ports/47653 ports-bugs unPERLify ports/cad o [2003/01/29] ports/47654 ports-bugs unPERLify ports/biology o [2003/01/29] ports/47656 ports-bugs unPERLify ports/comms o [2003/01/28] ports/47614 dburr databases/p5-ApacheDBILogConfig 0.01 -> 0 o [2003/02/02] ports/47834 dirk mysql-server-3.23.55 upgrade should be mo f [2003/02/03] ports/47862 ports-bugs Maintainer update: databases/mysql-gui (b o [2003/02/04] ports/47904 ports-bugs drweb - cron example don't work o [2003/02/04] ports/47917 ports-bugs New port: audio/gkrellmss2 a [2003/02/05] ports/47957 seanc ruby-snmp is broken o [2003/02/05] ports/47992 gnome gtk12 apps don't pick up correct locale r o [2003/02/06] ports/47995 ports-bugs New port: Showing moving blobs o [2003/02/06] ports/47996 sobomax [patch] graphics/svgalib shouldn't called o [2003/02/06] ports/48021 ports-bugs New Port: www/photo_gallery o [2003/02/07] ports/48052 obrien Upgrading vim blows away locally-added pl a [2003/02/07] ports/48059 roam Nitpicks for the comms/qpage port o [2003/02/08] ports/48093 kde kde3 FreeBSD port fails to configure Xine f [2003/02/09] ports/48115 ports-bugs Update port: math/abs o [2003/02/09] ports/48124 dbaker [PATCH] updates ports/misc/proxyper to ve o [2003/02/10] ports/48140 andreas Update Port: print/apsfilter (conditional o [2003/02/04] ports/47913 ume idled.8 man page conflict in ports mail/c o [2003/02/12] ports/48214 trevor Update port: audio/festogi-spanish to 2.0 o [2003/02/12] ports/48217 ports-bugs New Port: www/mod_frontpage13 and www/mod o [2003/02/13] ports/48235 ports-bugs New Port: anomy mail sanitizer - removing o [2003/02/13] ports/48247 ports-bugs unPERLify ports/deskutils o [2003/02/13] ports/48248 ports-bugs unPERLify ports/editors o [2003/02/13] ports/48249 nork unPERLify ports/emulators o [2003/02/13] ports/48253 ports-bugs unPERLify ports/devel f [2003/02/13] ports/48257 ports-bugs New Port: portdowngrade: a tool to set a o [2003/02/14] ports/48273 des FlightGear can only be run once between b o [2003/02/14] ports/48281 obrien Patch editors/vim to use fetch instead of o [2003/02/14] ports/48292 ports-bugs new port: print/epsonepl "Printer filter f [2003/02/16] ports/48352 roam JavaCC port updated for new distfiles. o [2003/02/17] ports/48377 portmgr Randomizing MASTER_SITES o [2003/02/17] ports/48382 ports-bugs /usr/ports/net/cflowd compile errors, wil o [2003/02/17] ports/48388 ports-bugs ftp/lukemftpd: Maintainer does not exist o [2003/02/17] ports/48397 jmz malformed make file in /usr/ports/comms/m o [2003/02/17] ports/48404 ports-bugs gnuchess doesn't install the gnuchessx al o [2003/02/18] ports/48418 ports-bugs mail/teapop: 2 problems o [2003/02/18] ports/48422 ports-bugs New POrt: webstats o [2003/02/18] ports/48426 sobomax [PATCH] digger-vgl does not support conso o [2003/02/18] ports/48434 obrien shells/bash2: process substitution broken o [2003/02/18] ports/48448 ports-bugs New port: orca text data grapher (uses rr o [2003/02/19] ports/48470 nork [PATCH www/flashpluginwrapper] add helper o [2003/02/21] ports/48552 ports-bugs new port: sysutils/ganglia-webfrontend: G o [2003/02/25] ports/48683 nik 'passivetex' port out of date, checksum e o [2003/02/25] ports/48694 ports-bugs New port: Plan9 compatibility libraries f [2003/02/26] ports/48735 edwin New Port: net/kismet f [2003/02/27] ports/48740 taoka [patch] Update audio/mpg123.el to 1.35, b o [2003/02/27] ports/48764 ports-bugs new port for mpexpr o [2003/02/28] ports/48771 ports-bugs Bug in audio/shout when using with SHOUTc o [2003/02/28] ports/48786 wjv update biology/EMBOSS to the latest relea o [2003/03/01] ports/48812 ports-bugs New port: print/foomatic-db-engine o [2003/03/01] ports/48813 ports-bugs New port: print/foomatic-filters o [2003/03/01] ports/48824 ports-bugs add WITHOUT_NLS support to devel/bison o [2003/03/02] ports/48832 ports-bugs New port: print/foomatic-db-hpijs f [2003/03/03] ports/48873 oliver courier update to 0.41 o [2003/03/03] ports/48890 ports-bugs New port: audio/streamtuner-python 0.0.1 o [2003/03/04] ports/48913 ports-bugs vtk does not compile with nvidia-drivers o [2003/03/04] ports/48929 ports-bugs New port: JRTPLIB - RTP library in C++ o [2003/03/04] ports/48934 ports-bugs new port: games/eif (empire text client) o [2003/03/07] ports/49002 ports-bugs fix duplicated categories on a 34 slave p o [2003/03/07] ports/49003 ports-bugs New port: A virtual note-pad system for y o [2003/03/09] ports/49047 kris rc.d script for security/snort o [2003/03/10] ports/49061 ports-bugs Update port: net/mmucl o [2003/03/10] ports/49076 roam stunnel logs normal end of connection as o [2003/03/10] ports/49080 ports-bugs New port: emacs-chess, a chessboard for e o [2003/03/10] ports/49082 knu portupgrade runs slow o [2003/03/11] ports/49944 ports-bugs New Port: mail/pop-before-smtp - smtp aut o [2003/03/11] ports/49948 ports-bugs Port submission f [2003/03/12] ports/49955 portmgr [PATCH] bsd.port.mk: add target to automa o [2003/03/12] ports/49961 ports-bugs [PATCH] Mega tree sweep for SITE_PERL usa o [2003/03/12] ports/49964 billf [patch] Resurrect print/pdflib3 o [2003/03/12] ports/49971 lioux fix overlong comment for mail/qmail port o [2003/03/13] ports/49986 ports-bugs new port: myphpmoney o [2003/03/14] ports/49999 ports-bugs lrz in lrzsz-0.12.20(comms/lrzsz) sets in o [2003/03/14] ports/50005 ports-bugs net/flow-extract: new port o [2003/03/15] ports/50022 nik Port: print/jadetex (update pkg-message) o [2003/03/15] ports/50029 ports-bugs fix for "user stats" function in tkseti o [2003/03/15] ports/50039 dwcjr Samba port fails to compile with winbind o [2003/03/16] ports/50043 lioux update for qmail-port o [2003/03/16] ports/50044 dwcjr allow samba to be built automatically o [2003/03/16] ports/50047 nbm update www/zope-cmf from 1.3 to 1.3.1 o [2003/03/16] ports/50060 billf Update port: add GTK+ 2.0 support to net/ o [2003/03/17] ports/50068 ports-bugs New port: sybase_ase (Sybase ASE RDBMS) o [2003/03/17] ports/50072 ports-bugs New port: net/gkrellmwireless2 o [2003/03/17] ports/50086 lioux qpopper has a chown with deprecated optio o [2003/03/18] ports/50094 murray [patch] print/hugelatex: fix plist (bento o [2003/03/18] ports/50096 sobomax tiff-3.5.7 fax2tiff dumps core o [2003/03/18] ports/50114 znerd linux-sun-jdk13 BUILD_DEPENDS not picked o [2003/03/19] ports/50135 ports-bugs conflicting types for mkdir() and rename( o [2003/03/20] ports/50140 ports-bugs [patch] fix plist devl/linux_devtools (al o [2003/03/20] ports/50142 ports-bugs misc/compat4x broken o [2003/03/20] ports/50146 ports-bugs mount.app new port submission o [2003/03/21] ports/50157 lioux Gnome-2.2 sound recorder abends with long o [2003/03/21] ports/50170 ports-bugs New version of bcwipe port o [2003/03/22] ports/50195 ports-bugs [PATCH] Import of OpenBSD fdisk o [2003/03/23] ports/50230 ports-bugs grail don't work with Python 2.x. o [2003/03/24] ports/50234 trevor Update x11-fm/xdiskusage port to 1.45 and f [2003/03/24] ports/50256 ports-bugs new port version: sysutils/stmpclean o [2003/03/24] ports/50258 portmgr [patch] refactor /usr/ports/Tools/portbui o [2003/03/24] ports/50262 tg lang/py-mx-base (mxDateTime) is broke o [2003/03/25] ports/50291 ports-bugs FreeBSD Port Submission for "Destroy" f [2003/03/25] ports/50301 edwin databases/clip: upgrading to 1.0 and unbr o [2003/03/25] ports/50303 ports-bugs [NEW PORT] detachtty: Run interactive pro a [2003/03/26] ports/50313 ports-bugs Upgrade emulators/linux_base's glibc o [2003/03/26] ports/50318 ports-bugs New port: Python shared library. o [2003/03/26] ports/50324 ports-bugs net/ns fails to build o [2003/03/28] ports/50405 ports-bugs New port: x11-wm/fluxspace o [2003/03/28] ports/50411 ports-bugs Revised [UPDATE] sysutils/fastresolve fro o [2003/03/28] ports/50415 ports-bugs New port: irc/onis o [2003/03/29] ports/50423 ports-bugs New port: www/phpftp o [2003/03/29] ports/50443 ports-bugs New port for libirman 0.4.2 o [2003/03/29] ports/50444 portmgr Suggestion for new category: "dns" o [2003/03/30] ports/50466 grog The benchmarks/rawio port does not seem t f [2003/03/30] ports/50467 edwin Fix for port net/citadel o [2003/03/31] ports/50473 ports-bugs amavis-perl is no longer supported (super o [2003/03/31] ports/50475 ports-bugs Port of rubber. f [2003/03/31] ports/50476 ports-bugs New port: math/libmath++ o [2003/03/31] ports/50478 ports-bugs New port: games/monopd s [2003/03/31] ports/50479 portmgr Request for approval to commit bsd.gnuste o [2003/03/31] ports/50484 ports-bugs Lots of warnings when compiling hping a [2003/04/03] ports/50572 portmgr Simlifying the work with Debian packages o [2003/04/03] ports/50578 ports-bugs pktrace has been renamed to mftrace by th o [2003/04/03] ports/50586 ports-bugs JDEE port needs updates o [2003/04/04] ports/50609 ports-bugs New port: russian/muttprint (pretty print o [2003/04/04] ports/50616 ports-bugs UPDATE-PORT: devel/linux-sdl12 update to o [2003/04/05] ports/50628 ports-bugs [PATCH] waimea port has missing run-depen o [2003/04/06] ports/50645 ports-bugs New port: benchmarks/scimark2 - a Java b o [2003/04/06] ports/50646 ports-bugs New port: benchmarks/scimark2c - an ANSI o [2003/04/07] ports/50662 ume sysutils/gkrellm2 interaction with Metaci o [2003/04/07] ports/50663 ume sysutils/gkrellm2 - it is not possible to o [2003/04/07] ports/50672 ports-bugs New port submission o [2003/04/08] ports/50708 jedgar update sysutils/roottail to 0.2 o [2003/04/08] ports/50710 ports-bugs New port: misc/pxclient o [2003/04/08] ports/50724 ports-bugs [PATCH] pkg_fetch saves full filename o [2003/04/08] ports/50725 ports-bugs new port: russian/koi2koi o [2003/04/08] ports/50728 brian Update: update of multimedia/vlc to versi o [2003/04/09] ports/50754 ports-bugs New port: security/hmap - web server fing o [2003/04/09] ports/50767 ports-bugs New port: ldap2dns - maintain DNS zones i o [2003/04/10] ports/50775 ports-bugs axel port failes to build o [2003/04/10] ports/50777 ports-bugs New port: lxsplit-0.1.1 f [2003/04/10] ports/50779 edwin Maintainer Update: net/libdnet o [2003/04/10] ports/50788 ports-bugs gnump3d - install problem - adamw asked m o [2003/04/10] ports/50794 ports-bugs New port graphics/pho (version 0.9.1) o [2003/04/10] ports/50799 ports-bugs Lisp Packages install directory should no f [2003/04/11] ports/50822 ports-bugs [PATCH] graphics/netpbm doesn't install i o [2003/04/11] ports/50835 dirk cdrtools port uses the config path "/etc/ o [2003/04/11] ports/50813 nork New port: japanese/mailman o [2003/04/11] ports/50840 ports-bugs mail/squirrelmail - Port Docs in wrong lo o [2003/04/12] ports/50850 ports-bugs -march=pca56 blows up nethack34-nox11 o [2003/04/12] ports/50863 trevor Update audio/csound-manual o [2003/04/12] ports/50864 trevor Update audio/festlex-ogi o [2003/04/12] ports/50866 lioux [PATCH] Introduce patch to qmail-1.03 to o [2003/04/12] ports/50869 trevor Update audio/festvox-abc o [2003/04/12] ports/50880 ports-bugs Request for (optional) addition of tcplim o [2003/04/12] ports/50888 ports-bugs Updated fetchyahoo port, like fetchmail f o [2003/04/12] ports/50891 phantom [PATCH] java/jdk14 port don't build on so o [2003/04/13] ports/50914 ports-bugs Port update: editors/fte o [2003/04/14] ports/50930 lioux Update net/silc-client o [2003/04/14] ports/50931 lioux Update net/silc-server o [2003/04/14] ports/50932 lioux Update net/silc-doc o [2003/04/14] ports/50965 ports-bugs www/linux-flashplugin update to 6.0r79 o [2003/04/15] ports/50989 krion Update cad/slffea: fix distinfo - bento e o [2003/04/15] ports/50992 ports-bugs ports-bug: devel/kprof o [2003/04/15] ports/50996 openoffice editors/ooodict-hu_HU port can moved to h o [2003/04/15] ports/51005 ports-bugs New port of native window decoration for o [2003/04/15] ports/51008 ports-bugs making sysutils/eject understand cdrom ar o [2003/04/15] ports/51013 ports-bugs New Port: avidemux2 o [2003/04/16] ports/51024 gioria fix-bento/update port: french/spip o [2003/04/16] ports/51036 ports-bugs New port: sysutils/clockspeed-conf - Supe o [2003/04/16] ports/51071 ports-bugs New port: net/pear-Net_URL - Easy parsing o [2003/04/17] ports/51087 ports-bugs spamass-milter can not be built with send o [2003/04/17] ports/51097 tobez New port databases/p5-DBD-PgSPI o [2003/04/17] ports/51098 ports-bugs New port: Perl5 module to read and write f [2003/04/17] ports/51118 ports-bugs New Port: graphics/xvgr Open Look-based d o [2003/04/19] ports/51152 portmgr bsd.port.mk: generic SHEBANG_FILES o [2003/04/19] ports/51158 ports-bugs New port: sysutils/reoback o [2003/04/19] ports/51162 ports-bugs new port: misc/gkrellm-helium, Prague the o [2003/04/20] ports/51190 ports-bugs New port: emulators/extract-xiso o [2003/04/20] ports/51197 ports-bugs New Port: rendezvous (Apple's ZeroConf im o [2003/04/21] ports/51214 ports-bugs New port: www/zope-localizer o [2003/04/21] ports/51215 ports-bugs New port: www/zope-translationservice o [2003/04/21] ports/51264 ports-bugs new port: mail/mls o [2003/04/22] ports/51290 nbm Update devel/sip: patchout license confir o [2003/04/23] ports/51320 ports-bugs NEW PORT: sysutils/adtool o [2003/04/24] ports/51351 ports-bugs new port x11-toolkits/SoXt 1.1.0 (SUPERCE o [2003/04/15] ports/50970 anholt KDE-3.1.1a - R128(0) Idle timed out, rese o [2003/04/24] ports/51395 trevor [PATCH] Update xdiskusage to 1.45 f [2003/04/24] ports/51400 ports-bugs new port:biology/lsysexp o [2003/04/24] ports/51402 ports-bugs New port for LDAP Directory Administrator o [2003/04/25] ports/51415 kevlo Port textproc/xerces-j should be updated o [2003/04/25] ports/51424 dirk www/httrack should be updated to lastest o [2003/04/26] ports/51446 trevor Update port: audio/fest* to last versions o [2003/04/27] ports/51456 ports-bugs adding new port: opencm o [2003/04/27] ports/51484 ports-bugs undefined reference in libobjc.so o [2003/04/28] ports/51536 ports-bugs rmagic 2.21/FreeBSD 4.8-STABLE failing to o [2003/04/28] ports/51543 ports-bugs New port: py-sybase 0.36 (Sybase DB modul o [2003/04/29] ports/51553 tobez UPDATE textproc/p5-Text-Autoformat o [2003/04/29] ports/51554 dburr p5-File-Spec is too picky o [2003/04/29] ports/51557 tobez UPDATE audio/p5-MP3-Info o [2003/04/29] ports/51560 scrappy UPDATE converters/p5-Convert-BER o [2003/04/29] ports/51563 tobez UPDATE converters/p5-Convert-UUlib o [2003/04/29] ports/51564 tobez o [2003/04/29] ports/51567 tobez UPDATE converters/p5-Unicode-Map8 o [2003/04/29] ports/51568 tobez UPDATE converters/p5-Unicode-String o [2003/04/29] ports/51572 dburr UPDATE databases/p5-ApacheDBILogConfig o [2003/04/29] ports/51575 tobez UPDATE databases/p5-CDB_File o [2003/04/29] ports/51588 portmgr SITE_PERL defined too late in bsd.port.mk o [2003/04/29] ports/51590 brian port update for multimedia/vlc o [2003/04/29] ports/51610 ports-bugs rmagic.sample (config file) & sample.dat o [2003/04/30] ports/51631 ports-bugs New port: hungarian/complexjogtar - Hunga o [2003/04/30] ports/51632 anholt luit from x11/XFree86-4-clients is unusab o [2003/04/30] ports/51647 ports-bugs NEW PORT: pglod - inserts web logs into a o [2003/05/01] ports/51651 kde KDE 3.1.1a: KProcess' stdout redirection a [2003/05/01] ports/51663 roam [PATCH] vpopmail-stable fix for using vmo o [2003/05/02] ports/51690 blackend Update devel/linux-runrev: 1.1.1 -> 2.0-B o [2003/05/02] ports/51693 cy [PATCH] Unbreak w11-fm/fvwm2-devel o [2003/05/02] ports/51694 ports-bugs net/lft update to 2.1 o [2003/05/03] ports/51731 greid Update Port: emulators/freesci o [2003/05/04] ports/51757 edwin Maintainer update: isc-dhcp3 splitted to o [2003/05/04] ports/51760 ports-bugs Change-request: mail/tmda (ACTION_AUTO_RE o [2003/05/04] ports/51772 dirk Upgrade to version 0.52 of port net/nsc o [2003/05/05] ports/51791 tg Change-request: shell/pdksh (pdksh-5.2.14 o [2003/05/05] ports/51804 petef (update) devel/p5-Class-Date o [2003/05/05] ports/51819 ports-bugs New port: Provides a static mod_perl with o [2003/05/06] ports/51834 trevor (update) devel/p5-Class-MethodMaker o [2003/05/06] ports/51840 tobez (update) devel/p5-Data-Flow o [2003/05/06] ports/51898 greid Update net/ettercap: 0.6.7 -> 0.6.a o [2003/05/06] ports/51900 trevor [Update Port]: audio/fest* to last versio o [2003/05/07] ports/51915 ports-bugs update for ports dcgui/dclib o [2003/05/07] ports/51918 ports-bugs isc-dhcp3 port package creates dhcp.lease o [2003/05/07] ports/51931 jedgar update port irc/p5-IRC o [2003/05/07] ports/51947 mharo Analog port does not include anlgform.htm o [2003/02/08] ports/48097 ports-bugs Manual for camediaplay(1) falsely describ o [2003/05/08] ports/51971 trevor Update port: biology/xdrawchem to 1.6.10 o [2003/05/08] ports/51991 trevor Update port: security/mcrypt to 2.6.4 o [2003/05/09] ports/52006 ports-bugs rsync fails with protocol problems o [2003/05/09] ports/52016 ports-bugs New port: lang/harbour - A Clipper-compat o [2003/05/10] ports/52024 lioux port multimedia/libdv fails to build o [2003/05/10] ports/52028 ports-bugs Update port: misc/bibletime-doc from 1.2. o [2003/05/10] ports/52037 ports-bugs port multimedia/avifile fails to build (I o [2003/05/11] ports/52078 ports-bugs mail/gmime: upgrading to 1.0.7. o [2003/05/11] ports/52082 ports-bugs bacon port has no its homepage o [2003/05/12] ports/52106 phantom New port: java/javaws: Java Web Start 1.2 o [2003/05/12] ports/52109 petef Add MASTER_SITE_PACKETSTORM as additional f [2003/05/12] ports/52113 ports-bugs mpg123 fails to play o [2003/05/12] ports/52125 ports-bugs New port: The devel branch of the ion win f [2003/05/12] ports/52130 ports-bugs New Port: sysutils/klineakconfig configur f [2003/05/12] ports/52131 ports-bugs New port: databases/qt-mysql-plugin mysql o [2003/05/12] ports/52132 ports-bugs New port: audio/prokyon3 Really nice mp3- o [2003/05/13] ports/52157 wjv (update) devel/p5-IO-String to 1.02 o [2003/05/13] ports/52158 ports-bugs Update to pr:ports/52129 sysutils/lineakd o [2003/05/13] ports/52159 ports-bugs updates to pr:ports/52130 and pr:ports/52 o [2003/05/13] ports/52160 tobez (update) devel/p5-IPC-Run to 0.75 s [2003/05/13] ports/52173 portmgr bsd.port.mk - Modify USE_GETOPT_LONG opti o [2003/05/13] ports/52176 ports-bugs new port: comms/gscmxx 0.4.1 - gtk-fronte o [2003/05/13] ports/52195 glewis java/jdk13 does not autodetect itself o [2003/05/14] ports/52241 jedgar (update) irc/p5-IRC to 0.74 o [2003/05/15] ports/52268 ports-bugs devel/picasm update to 1.12b o [2003/05/15] ports/52272 cy Aide-0.9 complains of "@@end_db" o [2003/05/15] ports/52279 kbyanc (update) mail/p5-Mail-CClient to 1.7 o [2003/05/15] ports/52288 tobez (update) math/p5-Math-Base85 to 0.2 o [2003/05/15] ports/52290 tobez (update) math/p5-Math-BigInt to 1.64 o [2003/05/15] ports/52293 mharo (update) math/p5-Math-Pari to 2.010500 o [2003/05/15] ports/52296 lioux Improve bittorrent port to not require X o [2003/05/15] ports/52303 des [patch] add knob to databases/gnats to re o [2003/05/15] ports/52310 jedgar sysutils/grub does not send a dhcp option o [2003/05/16] ports/52311 patrick [ADD MAKE ARGS]:: WITH_GTK And WITH_THREA o [2003/05/16] ports/52319 patrick [NEW PORT]:: comms/qtpcr and fix to priv. o [2003/05/16] ports/52323 fanf Update port: sysutils/cfengine2 Upgrade t o [2003/05/17] ports/52357 ports-bugs New Port: ASDF, a Common Lisp library man o [2003/05/17] ports/52359 ports-bugs New Port: ASDF, a Common Lisp library man o [2003/05/17] ports/52361 ports-bugs New Port: Common Lisp Parser Generator o [2003/05/17] ports/52362 ports-bugs New Port: Common Lisp Parser Generator (S o [2003/05/17] ports/52363 ports-bugs New Port: Parser Generator for Common Lis o [2003/05/17] ports/52364 ports-bugs New Port: Common Lisp Parser Generator (C o [2003/05/17] ports/52365 ports-bugs New Port: Common Lisp portability package o [2003/05/17] ports/52366 ports-bugs New Port: Common Lisp portability package o [2003/05/17] ports/52367 ports-bugs New Port: Common Lisp portability package o [2003/05/17] ports/52368 ports-bugs New Port: Common Lisp portability package o [2003/05/17] ports/52369 ports-bugs New Port: Portable Perl-Compatible Regexp o [2003/05/17] ports/52370 ports-bugs New Port: Portable Perl-Compatible Regexp o [2003/05/17] ports/52371 ports-bugs New Port: Portable Perl-Compatible Regexp o [2003/05/17] ports/52372 ports-bugs New Port: Portable Perl-Compatible Regexp o [2003/05/17] ports/52373 ports-bugs New Port: Splitting Common Lisp sequences o [2003/05/17] ports/52374 ports-bugs New Port: Splitting Common Lisp Sequences o [2003/05/17] ports/52375 ports-bugs New Port: Splitting Common Lisp Sequences o [2003/05/17] ports/52376 ports-bugs New Port: Splitting Common Lisp sequences f [2003/05/17] ports/52380 ports-bugs Configure problem in libggi o [2003/05/17] ports/52386 cvsweb [patch] devel/cvsweb and perl5.8 o [2003/05/17] ports/52390 ports-bugs emulators/twin attempts to build on unsup o [2003/05/18] ports/52393 ports-bugs New port: py-sourceview is a Python wrapp o [2003/05/18] ports/52402 ports-bugs New port: www/webcpp (converts code to hi o [2003/05/18] ports/52414 portmgr pkg_info improvement: get only package na o [2003/05/18] ports/52415 obrien missing files in bash2 ports collection o [2003/05/18] ports/52420 mita japanese/xpdf installation terminated whe o [2003/05/19] ports/52430 ports-bugs port lang/ocaml fails to build o [2002/01/14] ports/33906 ports-bugs [PATCH] tic program as a port for easier o [2002/02/09] ports/34759 ports-bugs Phantasia does not accept [enter] key f [2002/04/19] ports/37244 ports-bugs c2lib port includes vector.h which appare o [2002/07/30] ports/41167 ports-bugs adventure.6 man-page, add section AUTHORS f [2003/05/19] ports/52444 ports-bugs Fix to ports/lang/ici build problem on 5- o [2003/05/19] ports/52447 edwin [PATCH] for gtk20-apireference .devhelp f f [2003/05/19] ports/52439 lioux Request: SMTP AUTH for qmail o [2003/05/19] ports/52452 ports-bugs [PATCH] sysutils/afio mangles FIFOs o [2003/05/20] ports/52463 ports-bugs New Port: lml, a Common Lisp HTML generat o [2003/05/20] ports/52464 ports-bugs New Port: lml, a Common Lisp HTML generat o [2003/05/20] ports/52508 adrian Update port: www/squid (use MANn variable a [2002/06/06] ports/38965 kde [PATCH] kapptemplate fails on FreeBSD o [2003/05/22] ports/52582 ports-bugs new port: net/weedns_sc o [2003/05/22] ports/52590 ports-bugs [non-maintainer update] update logic for o [2003/05/22] ports/52598 nbm Update devel/sip: 3.5 -> 3.6 o [2003/05/22] ports/52599 nbm Update devel/py-sip: 3.4 -> 3.6 o [2003/05/22] ports/52600 lioux multimedia/mpeg4ip does not compile with o [2003/05/23] ports/52614 ports-bugs New port openradius o [2003/05/23] ports/52626 nork [NON-MAINTAINER UPDATE] mail/mailman 2.1. o [2003/05/23] ports/52627 krion Update databases/clip: 0.9 -> 1.0.6 o [2003/05/24] ports/52653 ports-bugs ports/net/gnu-radius no longer compatible o [2003/05/24] ports/52659 ports-bugs New port: news/xvnews Open Look-based new o [2003/05/26] ports/52706 portmgr bsd.port.mk issues warning if a site is e o [2003/05/27] ports/52727 ports-bugs Add Apache2 support at phplot o [2003/05/27] ports/52731 kris ports/x11-toolkits/qt145 - fix for 5.1-BE o [2003/05/28] ports/52747 ports-bugs port update - mail/p5-Mail-Ezmlm a [2003/05/28] ports/52765 portmgr [PATCH] Uncompressing manual pages may fa o [2003/05/28] ports/52773 ports-bugs mysql-gui won't build o [2003/05/28] ports/52779 fenner please make rat and sdr use tcl/tk8.3 f [2003/05/29] ports/52781 ports-bugs Maintainer update: devel/tide a [2003/05/29] ports/52788 ports-bugs Port p5-Gimp unfetchable o [2003/05/29] ports/52790 ports-bugs New port: shells/bash-completion o [2003/05/29] ports/52793 dwcjr Samba 2.2.8a printing woes o [2003/05/29] ports/52794 ports-bugs Xmaxima cannot start o [2003/05/29] ports/52796 ports-bugs devel/apr is compiled without threads sup o [2003/05/29] ports/52797 bmah devel/subversion does not install any too o [2003/05/30] ports/52811 ports-bugs [PATCH] net/unison: install documentation o [2003/05/31] ports/52821 ports-bugs Rayshade homesite and postscript document o [2003/05/31] ports/52825 lioux goggles-0.5.5 compile under 5.1-BETA2 fai o [2003/06/01] ports/52834 trevor ports/www/linux-phoenix - update to 0.6 o [2003/06/02] ports/52857 ports-bugs New port: Scan detection and blocking dae o [2003/06/02] ports/52859 dwcjr Samba 2.2.8a (2.2.8)- broken support for o [2003/06/02] ports/52864 taoka Update port: japanese/FreeWnn-lib o [2003/06/02] ports/52873 ports-bugs New port: kcmpureftpd, a PureFTP control f [2003/06/02] ports/52877 ports-bugs Non-Maintainer-Update: mail/postfix add s o [2003/06/02] ports/52879 ports-bugs New port: astro/accrete o [2003/06/02] ports/52881 ports-bugs New port: sysutils/clean; automatically r o [2003/06/03] ports/52906 roger vid-1.0.1 from ports does not work with U f [2003/06/03] ports/52909 lioux [PATCH] ftp/twoftpd: chase devel/bglibs h f [2003/06/03] ports/52892 oliver The mail/courier port is outdated s [2003/06/03] ports/52917 portmgr [PATCH] bsd.port.mk: update default value o [2003/06/04] ports/52923 ports-bugs New port: f-prot - the F-Prot virus scann o [2003/06/04] ports/52939 petef [PATCH] Update mail/qmHandle to 1.1.0 o [2003/06/04] ports/52941 ports-bugs security/poc card-terminal problems o [2003/06/04] ports/52946 lioux Add cdparanoia support to gstreamer-plugi o [2003/06/04] ports/52955 ports-bugs Update port: sysutils/di: di-3.9 - disk i o [2003/06/06] ports/52984 knu update archivers/fastjar to 0.93 o [2003/06/06] ports/52989 ports-bugs update archivers/libcomprex to 0.3.3 o [2003/06/06] ports/52997 ports-bugs NEW port CAD/admesh o [2003/06/07] ports/53019 ports-bugs New Port: kvirc3 a irc client based on o [2003/06/07] ports/53020 ports-bugs [patch] fix pygame detection in games/joo o [2003/06/07] ports/53026 lioux 5.1-RC1 avifile0.7-0.7.34 compile fails w f [2003/06/08] ports/53076 ports-bugs Update port: x11-clocks/dclock to 2.1 && o [2003/06/09] ports/53080 ports-bugs ARJ archiver with Russian localization o [2003/06/09] ports/53130 jmz [patch] correct logic in Makefile for sys o [2003/06/09] ports/53132 dbaker [patch] fix Makefile for devel/dnetc and o [2003/06/10] ports/53145 ports-bugs mplayer fails to compile o [2003/06/10] ports/53152 oliver New port: XFce 4 management library o [2003/06/10] ports/53154 oliver New port: XFce 4 library with non-graphic o [2003/06/10] ports/53155 oliver New port: XFce 4 widget library required o [2003/06/10] ports/53156 oliver New port: XFce 4 settings manager o [2003/06/10] ports/53157 oliver New port: XFce 4 settings manager plugins o [2003/06/10] ports/53158 oliver New port: XFce 4 essential utilities and o [2003/06/10] ports/53159 oliver New port: XFce 4 alternative icon box o [2003/06/10] ports/53160 oliver New port: XFce 4 panel module o [2003/06/10] ports/53161 oliver New port: XFce 4 desktop background manag o [2003/06/10] ports/53162 oliver New port: XFce 4 file manager o [2003/06/10] ports/53163 oliver New port: XFce 4 graphical frontend for p o [2003/06/10] ports/53167 oliver New port: XFce 4 file manager extra icons o [2003/06/10] ports/53168 oliver Port update: x11-wm/xfwm4 to current vers o [2003/06/10] ports/53169 oliver New port: Additional XFce 4 window decora o [2003/06/10] ports/53170 oliver New port: XFce 4 meta-port o [2003/06/10] ports/53185 ports-bugs ports/games/connect4 depends on archivers a [2003/06/11] ports/53190 bmah update to devel/subversion o [2003/06/11] ports/53193 ports-bugs [Patch] unbroke port: math/simpack fix co o [2003/06/11] ports/53199 dbaker Port update: misc/dnetc o [2003/06/11] ports/53219 sobomax update emulators/basiliskII to 1.0 o [2003/06/11] ports/53232 ports-bugs New port: net/bitlbee o [2003/06/11] ports/53239 naddy audio/xmms-speex missing shared lib o [2003/06/11] ports/53241 naddy graphics/xmms-goom port update o [2003/06/11] ports/53244 ports-bugs graphics/xmms-nebulus port update o [2003/06/11] ports/53246 ports-bugs New Port: mysqlcc o [2003/06/12] ports/53247 ports-bugs New port: gnome-ssh-askpass o [2003/06/12] ports/53248 ports-bugs mysql-qui port make aborts with inadequat o [2003/06/12] ports/53256 ports-bugs update port: misc/pl-sms update patch res o [2003/06/12] ports/53266 ports-bugs ploticus should not require X11 (patch in o [2003/06/13] ports/53274 ports-bugs New port: net/rbldnsd - small fast DNS se f [2003/06/13] ports/53281 ports-bugs Port for LDAP servers access and KAddress o [2003/06/13] ports/53307 ports-bugs New port: palm/synce f [2003/06/13] ports/53308 ports-bugs New port: palm/synce-dccm f [2003/06/13] ports/53309 ports-bugs New port: palm/synce-serial f [2003/06/13] ports/53310 ports-bugs New port: palm/synce-librapi2 o [2003/06/11] ports/53206 ports-bugs Patch updates x11-wm/pekwm to version 0.1 o [2003/06/14] ports/53318 ports-bugs New port, proxychains 1.8.2 o [2003/06/14] ports/53319 ports-bugs New port: yaph 0.91 o [2003/06/14] ports/53320 ijliao centericq memory leaks under 5.x o [2003/06/14] ports/53321 ports-bugs Update: comms/plp o [2003/06/14] ports/53331 ports-bugs [patch] fix checksum for textproc/jing o [2003/06/15] ports/53333 ports-bugs New port: palm/rapip o [2003/06/15] ports/53346 ports-bugs xmms volume bar error o [2003/06/15] ports/53347 ports-bugs port-update: icu2 f [2003/06/15] ports/53348 ports-bugs MAINTAINER-UPDATE: textproc/xerces-c2 o [2003/06/15] ports/53363 kbyanc [patch][non-maintainer update] fix www fo o [2003/06/15] ports/53364 nbm [patch][non-maintainer update] fix fetch f [2003/06/16] ports/53367 ports-bugs New port: xprobe2 ICMP active OS fingerpr o [2003/06/17] ports/53401 lioux mail/qpopper: add knob WITHOUT_APOP, brin o [2003/06/18] ports/53436 ports-bugs [PATCH] games/magiccube4d to 2.2 o [2003/06/18] ports/53444 ports-bugs comms/hamfax - sending and receiving facs f [2003/06/18] ports/53445 ports-bugs Patch to update www/mod_mp3 port to 0.40 o [2003/06/18] ports/53457 ports-bugs [patch][non-maintainer] set NOT_FOR_ARCHS o [2003/06/18] ports/53460 ports-bugs security/inflex port out-of-date o [2003/06/18] ports/53461 jdp [patch] change usage of BROKEN to IGNORE o [2003/06/18] ports/53466 trevor [non-maintainer] delete port audio/spiral o [2003/06/18] ports/53469 sobomax [patch][non-maintainer] remove hardwiring o [2003/06/18] ports/53471 cjh [patch][non-maintainer] fix non-i386 buil o [2003/06/18] ports/53474 ports-bugs Fix audio support for squeak3 o [2003/06/19] ports/53482 ports-bugs New Port: zabbix - Very advanced network o [2003/06/19] ports/53484 wjv [PATCH] for updating textproc/docbook-tdg o [2003/06/19] ports/53490 ports-bugs [New ports] linux-pam-docs o [2003/06/19] ports/53507 dougb mail/p5-Mail-SpamAssassin-snapshot is out o [2003/06/19] ports/53537 ports-bugs New port: mb2md - Converts mbox mailboxes o [2003/06/20] ports/53540 ports-bugs New port: audio/mpio-driver Digit@lway MP o [2003/06/20] ports/53541 ports-bugs New port: audio/mpiosh Digit@lway MPIO MP o [2003/06/20] ports/53549 ports-bugs update for ports dcgui/dclib in category: o [2003/06/20] ports/53558 ports-bugs new port of Gerrit Pape's runit package o [2003/06/19] ports/53535 jmz [patch][non-maintainer] update benchmarks s [2003/06/20] ports/53564 perky [non-maintainer] lang/stackless_python fa o [2003/06/20] ports/53565 ports-bugs post-patch for port o [2003/06/21] ports/53588 ports-bugs [PATCH] devel/ac-archive: update to 0.5.5 o [2003/06/21] ports/53593 kris PATCH sysutils/pstree o [2003/06/22] ports/53615 ports-bugs obsolete dependancy ports/security/drweb o [2003/06/22] ports/53617 ports-bugs Update databases/mysql-jdbc-mm to mysql-c o [2003/06/22] ports/53622 ports-bugs [patch] archivers/unadf and "#define LITT o [2003/06/23] ports/53636 ports-bugs Suggestion for rc.d style startup scripts o [2003/06/23] ports/53657 tobez devel/p5-Parse-RecDescent - tutorial/* is o [2003/06/23] ports/53662 ports-bugs [CHANGE-REQUEST] Patch textproc/xlhtml so o [2003/06/23] ports/53665 ports-bugs graphics/showimg 0.8 beta 2 broken on 4.8 o [2003/06/24] ports/53671 ports-bugs NEW PORT: rude/crude UDP traffic generato o [2003/06/24] ports/53672 lioux update net/silc-client to current version o [2003/06/24] ports/53689 erwin update converters/p5-String-Multibyte o [2003/06/24] ports/53701 ports-bugs [NEW PORT] devel/skalibs: General purpose o [2003/06/24] ports/53702 ports-bugs Port upgrade: devel/directfb o [2003/06/24] ports/53706 mph /usr/ports/news/trn4 fails to build in -C o [2003/06/25] ports/53722 ports-bugs [UPDATE] www/plone from 1.0.1 to 1.0.3 o [2003/06/25] ports/53730 tobez update devel/p5-Time-HiRes o [2003/06/25] ports/53738 ports-bugs New port: gcipher: a simple encryption to o [2003/06/25] ports/53744 nbm Update port: devel/sip o [2003/06/25] ports/53745 nbm New port: x11-toolkits/pyqt f [2003/06/25] ports/53746 ports-bugs New port: graphics/imgseek o [2003/06/25] ports/53747 ports-bugs [UPDATE] net/easysoap to 0.6 o [2003/06/26] ports/53785 veers Upgrade net/domtools from 1.5 to 1.6 o [2003/06/26] ports/53786 ports-bugs new port: bksh, the Backup Shell f [2003/06/26] ports/53791 kde Can't pass CPPFLAGS to configure when WIT o [2003/06/26] ports/53793 ports-bugs New port for sebeksniff o [2003/06/26] ports/53797 portmgr new ports directory request o [2003/06/27] ports/53810 eric update port: sysutils/bsdsar to 1.1.0 o [2003/06/27] ports/53816 ports-bugs [NEW PORT] databases/adodb3 o [2003/06/27] ports/53817 nik textproc/docbook should include textproc/ o [2003/06/27] ports/53848 tobez [PATCH] update of port devel/p5-IPC-Run t f [2003/06/27] ports/53853 ports-bugs Update port: mail/hotwayd to version 0.5. o [2003/06/28] ports/53877 ports-bugs p5-Data-FormValidator can be updated o [2003/06/28] ports/53878 des [Port Update]:: games/flightgear & devel/ o [2003/06/28] ports/53882 nbm Update port: devel/sip o [2003/06/28] ports/53887 nbm Update port: x11-toolkits/py-qt o [2003/06/29] ports/53914 ports-bugs [NEW PORT] games/linux_nwnclient: Neverwi o [2003/06/29] ports/53915 ports-bugs [NEW PORT] games/linux_nwndata: Neverwint o [2003/06/30] ports/53921 ports-bugs update palm/libmal to 0.31 o [2003/06/30] ports/53922 kde [patch] Teach deskutils/kdepim3 to take u o [2003/06/30] ports/53923 ports-bugs New Port: Sipsak is a SIP test command li f [2003/06/30] ports/53934 ports-bugs www/mod_jk2 fails to build (Maintainer fi o [2003/06/30] ports/53935 brian UPDATE to multimedia/vlc to version 0.6.0 o [2003/06/30] ports/53939 dwcjr [PATCH] Fix library dependencies in samba o [2003/07/01] ports/53968 petef update net/p5-File-Rsync o [2003/07/01] ports/53974 erwin Upgrade mail/p5-Mail-Sendmail 0.78 to 0.7 o [2003/07/01] ports/53981 ports-bugs New Port: k3b 0.8.1, a kde cd recording g o [2003/07/01] ports/53983 ports-bugs New port: Zope Extensible User Folder o [2003/07/01] ports/53991 nick update to port astro/roadmap o [2003/07/01] ports/53997 ports-bugs update py-psycopg from 1.0.13 to 1.1.5.1 a [2003/07/01] ports/53998 gnome Add a dependency xrender to fontconfig o [2003/07/02] ports/54002 lioux QMTPC patch for qmail-1.03 o [2003/07/02] ports/54038 ports-bugs [new port] www/gforge: Open Source collab o [2003/07/02] ports/54041 ade libtool13 (as installed) doesn't recogniz o [2003/07/02] ports/54046 fenner fix to graphics/geomview o [2003/07/02] ports/54048 rse wml fails o [2003/07/03] ports/54055 ports-bugs new port: x11-toolkits/gtk-theme-switch2 o [2003/07/03] ports/54059 ports-bugs New port: psycopg database adapter for zo o [2003/07/03] ports/54060 ports-bugs new port devel/aegis o [2003/07/03] ports/54079 ports-bugs New port: Formulator for Zope f [2003/07/03] ports/54080 ports-bugs Update port mail/minimalist to the latest o [2003/07/04] ports/54089 nbm databases/phppgadmin update to 3.0 o [2003/07/04] ports/54092 ports-bugs LCDd daemon from LCDd starts in the foreg o [2003/07/04] ports/54095 ports-bugs New port: ParsedXML for Zope o [2003/07/04] ports/54096 ports-bugs Plone port bundled formulator conflicts w o [2003/07/04] ports/54105 ports-bugs New port submission o [2003/07/04] ports/54108 voland [PATCH] port misc/afbackup does not build o [2003/07/04] ports/54116 ports-bugs New port: sysutils/rc_subr (rcNG support o [2003/07/06] ports/54146 ports-bugs UPDATE: www/eddie - fix build with Erlang o [2003/07/06] ports/54149 ports-bugs [UPDATE] net/rdesktop-devel: Add RDP5 sup o [2003/07/06] ports/54152 ports-bugs New Port: x11-fonts/ppantsfonts o [2003/07/06] ports/54154 kde program kooka does not load it's OCR pack o [2003/07/06] ports/54160 ports-bugs New port: show 2.1, a fast image viewer f o [2003/07/06] ports/54161 trevor security/mcrypt unbrake and update to 2.6 o [2003/07/07] ports/54174 ports-bugs clean spaces behind variables out of port o [2003/07/07] ports/54179 petef update security/p5-Digest-MD5 o [2003/07/07] ports/54187 ports-bugs new port devel/p5-DateTime-Format-HTTP o [2003/07/07] ports/54194 ports-bugs new port p5-DateTime-Format-W3CDTF o [2003/07/07] ports/54195 ports-bugs new port p5-DateTime-Format-ISO8601 o [2003/07/07] ports/54199 ports-bugs port update: www/dansguardian to version o [2003/07/08] ports/54209 ports-bugs FBSD-1.0-4365 nVidia driver (port) locks o [2003/07/08] ports/54212 lioux Goggles-0.5.5 compile fails - dvdnav.o un o [2003/07/08] ports/54218 ports-bugs new port: mail/cone p [2003/07/08] ports/54236 portmgr [patch] add detection of amd64 errors to o [2003/07/08] ports/54238 shige [patch][non-maintainer] fix build for jap o [2003/07/08] ports/54245 ports-bugs [new port] sysutils/bubblemon2 o [2003/07/08] ports/54246 adrian [PATCH] www/squid: change obsolete config o [2003/07/09] ports/54250 ade [PATCH] for devel/automake17 o [2003/07/09] ports/54251 ports-bugs [NEW PORT] www/zope-xmlwidgets: XMLWidget o [2003/07/09] ports/54254 ade bsd.port.mk contains non-existing autocon o [2003/07/09] ports/54271 ports-bugs New port: databases/pgbash o [2003/07/09] ports/54272 ports-bugs new port: misc/torrentsniff - BitTorrent o [2003/07/09] ports/54279 ports-bugs new port: sysutils/ucspi-ssl o [2003/07/09] ports/54283 ports-bugs [patch][non-maintainer] add identificatio f [2003/07/09] ports/54285 ports-bugs port update: www/dansguardian-devel to v o [2003/07/09] ports/54290 sanpei [patch][non-maintainer] fix imake depende o [2003/07/09] ports/54298 ports-bugs New port KVIrc 3.0.0 o [2003/07/09] ports/54299 ports-bugs [patch][non-maintainer] better identifica o [2003/07/10] ports/54319 ports-bugs New port: net/zonecheck version 2.0.0b5 o [2003/07/09] ports/54262 tobez port lang/perl5 doesn't deinstall /usr/bi f [2003/07/08] ports/54247 ports-bugs [patch] mark audio/ximp3 as BROKEN on non o [2003/07/10] ports/54335 ports-bugs new port: PPower4 - Post processor for PD o [2003/07/10] ports/54346 ports-bugs [NEW Port]:: x11/materm o [2003/07/10] ports/54351 marcus devel/portlint and /usr/ports/Mk/bsd.port o [2003/07/10] ports/54352 ports-bugs Conversion rc.d scripts to RC_NG o [2003/07/10] ports/54356 ports-bugs [new port] textproc/sagasu o [2003/07/11] ports/54368 dburr update devel/p5-File-Spec o [2003/07/11] ports/54372 ports-bugs new port: FoilTeX - a collection of LaTeX o [2003/07/11] ports/54373 petef [PATCH] mail/qmHandle: update to 1.1.1 f [2003/07/11] ports/54386 osa [PATCH] net/libnet: update to 1.1.0 a [2003/07/11] ports/54398 portmgr Port System inside of FreeBSD Jail broken o [2003/07/11] ports/54406 portmgr [patch] add two more cases to ports/Tools o [2003/07/11] ports/54408 ports-bugs [new port] ftp/prozgui o [2003/07/12] ports/54411 ports-bugs New Port: www/caudium-devel Devel Branch o [2003/07/12] ports/54414 ports-bugs New port: Dasher -- text entry system (fo o [2003/07/12] ports/54417 emulation update somewhat to emulators/vmware3 o [2003/07/12] ports/54421 osa [PATCH] net/libnet: update to 1.1.1-RC-00 o [2003/07/12] ports/54423 ports-bugs net/libnss-mysql (NSS module using a MySQ o [2003/07/13] ports/54428 osa New port: irc/ircd-ru - An modern irc ser o [2003/07/13] ports/54433 ports-bugs MAINTAINER UPDATE: nagios-plugins update o [2003/07/13] ports/54436 ports-bugs [NEW PORTS] split net/openldap2[012] into o [2003/07/13] ports/54438 yoichi ports update: net/tramp o [2003/07/13] ports/54457 ports-bugs new ports for xfe file-manager f [2003/07/13] ports/54459 gnome gnometerminal2 doesn't retain multiple ta o [2003/07/14] ports/54469 nbm [update] devel/sip to 3.7 o [2003/07/14] ports/54470 nbm [update] devel/py-sip to 3.7 f [2003/07/14] ports/54473 osa port update: security/firewalk 1.0 -> 5.0 o [2003/07/14] ports/54474 ports-bugs port upgrade: net/nsd to 1.2.0 o [2003/07/14] ports/54478 portmgr [NEW PORT] sysutils/pkg_install o [2003/07/15] ports/54493 ports-bugs New port: xmms-infopipe (Create a named p o [2003/07/15] ports/54498 anders gnokii port upgrade (maintainer not answe f [2003/07/15] ports/54502 ports-bugs [Update] games/freeciv: 1.13.0 -> 1.14.0 o [2003/07/15] ports/54508 ports-bugs New port: www/pwebstats o [2003/06/25] ports/53740 ports-bugs New port: Fluka - Linux Monte Carlo simul o [2003/07/15] ports/54511 ports-bugs patch: net/wmwave: more portable data gat o [2003/07/15] ports/54518 kde Patch to build QT without XFT o [2003/07/15] ports/54530 ports-bugs [new port] deskutils/multi-backgrounds-da o [2003/07/16] ports/54540 nork Update port: graphics/gd2 o [2003/07/16] ports/54550 ports-bugs [NEW PORT] www/zope-FileSystemSite: Enabl o [2003/07/16] ports/54551 kuriyama snmpd returns bad MIB variable value: tcp o [2003/07/16] ports/54553 ports-bugs New port: Growspd displays growth rate of f [2003/07/16] ports/54555 oliver [new port] devel/gccxml: An XML output ex o [2003/07/16] ports/54557 ports-bugs [NEW PORT] security/gnutls-devel: develop o [2003/07/16] ports/54559 kde Find File in Kde Konqueror can't be cance o [2003/07/16] ports/54563 maho new ports: Sun Grid Engine (Enterprise Ed o [2003/07/16] ports/54565 ports-bugs New port: net/zabbix - advanced network m o [2003/07/17] ports/54571 ports-bugs New port: security/tinyca version 0.4.9 g o [2003/07/17] ports/54575 brian arpwatch.sh doesn't support multiple inte o [2003/07/18] ports/54612 krion Update net/libnet: fix build with gcc-3.3 o [2003/07/18] ports/54613 krion Update sysutils/logrotate: fix build with o [2003/07/18] ports/54614 nork New port: drweb-qmail o [2003/02/03] sparc64/47845sparc64 4 second daily clock drift s [2002/03/18] standards/36076standards Implementation of POSIX fuser command o [2002/06/13] standards/39256standards [v]snprintf aren't POSIX-conformant for s p [2002/07/16] standards/40669standards command command does not support `-p' opt o [2001/11/20] standards/32126standards getopt(3) not Unix-98 conformant p [2002/08/12] standards/41576standards POSIX compliance of ln(1) o [2002/10/22] standards/44394alfred restrict qualifiers missing from sys/sock o [2002/10/23] standards/44425standards getcwd() succeeds even if current dir has o [2002/11/25] standards/45738tjr sh "unset" built-in violates IEEE Std 100 o [2002/12/09] standards/46119standards Priority problems for SCHED_OTHER using p o [2002/12/21] standards/46441tjr /bin/sh does not do parameter expansion i o [2002/12/23] standards/46504standards Warnings in headers o [2003/04/22] standards/51292standards [PATCH] add ecvt()/fcvt()/gcvt() function o [2003/06/22] standards/53613standards FreeBSD doesn't define EPROTO o [2003/07/08] standards/54223standards [PATCH] Add mlockall(), munlockall() sysc s [2002/05/24] www/38500 www gnats web form is overenthusiastic about o [2002/08/04] www/41312 cvs RCS IDs are off-by-one in the NetBSD cvsw o [2002/10/17] www/44181 www www "Release Information" organization o [2002/11/09] www/45169 www suggested update for ports index page on o [2002/11/21] www/45560 www russian FAQ trouble on www.FreeBSD.org o [2003/01/09] www/46896 www updating document http://www.freebsd.org/ o [2003/02/22] www/48575 www 1. o [2003/07/25] ports/54876 gnome [PATCH] lang/guile: Bug in a Makefile o [2003/07/25] ports/54877 ports-bugs Update port: chinese/xcin25 o [2003/07/25] bin/54878 incorrect divisor in /usr/bin/jot -r o [2003/07/25] docs/54879 doc man 1 jot, -r description o [2003/07/26] kern/54884 FreeBSD -stable and -current free space h o [2003/07/26] ports/54886 ports-bugs new port for ports tree o [2003/07/26] ports/54887 ports-bugs [new port] mail/dbmail: An SQL database-b o [2003/07/26] ports/54889 nobutaka www/emacs-w3m: make package error & make o [2003/07/26] pending/54894gnats-admin [Maintainer-Update] lang/gauche 0.7 -> o [2003/07/26] ports/54895 ports-bugs [Maintainer-Update] databases/gauche-gdb o [2003/07/27] bin/54897 [PATCH] -y flag for mount_mfs o [2003/07/27] www/54908 www [patch] add osnews.com to news ressources o [2003/07/27] conf/54910 mtm [PATCH] Add rc.conf option to disable vir o [2003/07/27] ports/54912 ports-bugs New port: pkg_cutleaves - Perl script for o [2003/07/27] ports/54918 ports-bugs [PATCH] cad/xcircuit: enable choose of gh o [2003/07/27] ports/54919 ports-bugs [PATCH] chinese/abiword: enable choose of o [2003/07/27] ports/54920 ports-bugs [PATCH] chinese/enscript: enable choose o o [2003/07/27] ports/54921 ports-bugs [PATCH] chinese/moefonts-cid: enable choo o [2003/07/27] ports/54922 ports-bugs [PATCH] comms/tkhylafax: enable choose of o [2003/07/27] ports/54924 ports-bugs [PATCH] devel/doc++: enable choose of gho o [2003/07/27] ports/54925 ports-bugs [PATCH] changed WWW address in pkg-descr o [2003/07/27] ports/54926 ports-bugs [PATCH] graphics/ImageMagick: enable choo o [2003/07/27] ports/54927 ports-bugs [PATCH] graphics/eps2png: enable choose o o [2003/07/27] ports/54928 ports-bugs [PATCH] graphics/epstool: enable choose o o [2003/07/27] ports/54929 ports-bugs [PATCH] graphics/ipe: enable choose of gh o [2003/07/27] ports/54930 ports-bugs [PATCH] graphics/ocaml-images: enable cho o [2003/07/27] ports/54931 ports-bugs [PATCH] graphics/peps: enable choose of g o [2003/07/27] ports/54932 ports-bugs [PATCH] graphics/pstoedit: enable choose o [2003/07/27] ports/54933 ports-bugs [PATCH] graphics/pstoepsi: enable choose o [2003/07/27] ports/54934 ports-bugs [PATCH] graphics/py-chart: enable choose o [2003/07/27] ports/54935 ports-bugs [PATCH] graphics/sam2p: enable choose of o [2003/07/27] ports/54936 ports-bugs [PATCH] lang/logo: enable choose of ghost o [2003/07/27] ports/54937 ports-bugs [PATCH] mbone/wb: enable choose of ghosts o [2003/07/27] ports/54938 ports-bugs [PATCH] using www/squid as proxy (instead o [2003/07/27] ports/54939 ports-bugs [PATCH] misc/instant-workstation: enable o [2003/07/27] ports/54940 ports-bugs [PATCH] print/font2svg: enable choose of o [2003/07/27] ports/54941 ports-bugs [PATCH] print/apsfilter: enable choose of o [2003/07/27] ports/54942 ports-bugs [PATCH] print/ggv2: enable choose of ghos o [2003/07/27] ports/54943 ports-bugs [PATCH] print/gnomeprint: enable choose o o [2003/07/27] ports/54944 ports-bugs [PATCH] print/magicfilter: enable choose o [2003/07/27] ports/54945 ports-bugs [PATCH] print/html2ps-letter: enable choo o [2003/07/27] ports/54946 ports-bugs [PATCH] print/pnm2ppa: enable choose of g o [2003/07/27] ports/54947 ports-bugs [PATCH] misc/pointless: enable choose of o [2003/07/27] ports/54948 ports-bugs [PATCH] print/preview-latex: enable choos o [2003/07/27] ports/54950 ports-bugs [PATCH] print/transfig: enable choose of o [2003/07/27] ports/54951 ports-bugs [PATCH] textproc/latex2html: enable choos o [2003/07/27] ports/54952 ports-bugs [PATCH] textproc/pdftohtml: enable choose o [2003/07/27] ports/54953 ports-bugs [PATCH] textproc/prosper: enable choose o o [2003/07/27] ports/54954 ports-bugs [PATCH] textproc/tth: enable choose of gh o [2003/07/27] ports/54955 ports-bugs [PATCH] print/pstotext: enable choose of o [2003/07/27] ports/54956 ports-bugs [PATCH] x11/dgs: enable choose of ghostsc o [2003/07/27] ports/54957 ports-bugs [PATCH] mail/courier: enable choose of gh o [2003/07/27] ports/54961 ports-bugs [PATCH] print/scribus: enable choose of g o [2003/07/27] i386/54963 i386 Left over/outdated comment in NOTES o [2003/07/27] ports/54964 ports-bugs Update to CAD/felt o [2003/07/27] misc/54967 Spelling error in /usr/share/games/fortun o [2003/07/28] ports/54968 krion New port: Proxy servers set (HTTP(s), FTP f [2003/07/28] ports/54975 ports-bugs New Port: deskutils/kluje o [2003/07/28] www/54980 www (Hopefully) Last update to WWW Mirror Lis o [2003/07/28] kern/54982 jmg data corruption with usb umass da msdosfs o [2003/07/28] ports/54984 ports-bugs New port: mail/postfixadmin Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77CD237B404; Mon, 28 Jul 2003 11:46:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F51643F93; Mon, 28 Jul 2003 11:46:05 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: from freefall.freebsd.org (schweikh@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6SIk5Up094981; Mon, 28 Jul 2003 11:46:05 -0700 (PDT) (envelope-from schweikh@freefall.freebsd.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6SIk51r094977; Mon, 28 Jul 2003 11:46:05 -0700 (PDT) Date: Mon, 28 Jul 2003 11:46:05 -0700 (PDT) From: Jens Schweikhardt Message-Id: <200307281846.h6SIk51r094977@freefall.freebsd.org> To: nickc01@corp.firstindustrial.com, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/39447: 4.5R &4.6R Kernels fail to boot w/ AHA2940U2W attached to an IFT-3102 controller X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 18:46:06 -0000 Synopsis: 4.5R &4.6R Kernels fail to boot w/ AHA2940U2W attached to an IFT-3102 controller State-Changed-From-To: feedback->closed State-Changed-By: schweikh State-Changed-When: Mon Jul 28 11:44:24 PDT 2003 State-Changed-Why: Closed after confirmation of submitter: The issue was related to the CAM layer probing the device's management interface (which is exposed as at the lun level) and taking 15-20 minutes to timeout (under 4.6R). Disabling the management interface resolved the issue, but prevents the use the win32 based management console. I will note that this behavior has not been seen on the AIX and WinNT systems that we run with identical target disk arrays (meaning identical IFT-3102 controller and controller firmware). http://www.freebsd.org/cgi/query-pr.cgi?pr=39447 From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 28 12:05:46 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6D4737B401; Mon, 28 Jul 2003 12:05:46 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7859D43F75; Mon, 28 Jul 2003 12:05:46 -0700 (PDT) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6SJ5kUp099447; Mon, 28 Jul 2003 12:05:46 -0700 (PDT) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6SJ5k8x099443; Mon, 28 Jul 2003 12:05:46 -0700 (PDT) Date: Mon, 28 Jul 2003 12:05:46 -0700 (PDT) From: Ceri Davies Message-Id: <200307281905.h6SJ5k8x099443@freefall.freebsd.org> To: jilles@stack.nl, ceri@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/51964: panic: race condition with realitexpire() called for zombie X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 19:05:47 -0000 Synopsis: panic: race condition with realitexpire() called for zombie State-Changed-From-To: open->closed State-Changed-By: ceri State-Changed-When: Mon Jul 28 12:05:20 PDT 2003 State-Changed-Why: The submitter reports that this problem has now been corrected. http://www.freebsd.org/cgi/query-pr.cgi?pr=51964 From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 28 12:07:58 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5972637B401; Mon, 28 Jul 2003 12:07:58 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBD2943FA3; Mon, 28 Jul 2003 12:07:57 -0700 (PDT) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6SJ7vUp099541; Mon, 28 Jul 2003 12:07:57 -0700 (PDT) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6SJ7vrG099537; Mon, 28 Jul 2003 12:07:57 -0700 (PDT) Date: Mon, 28 Jul 2003 12:07:57 -0700 (PDT) From: Ceri Davies Message-Id: <200307281907.h6SJ7vrG099537@freefall.freebsd.org> To: ceri@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/54981: Add support for Lexar 256MB USB drive X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 19:07:58 -0000 Old Synopsis: New Synopsis: Add support for Lexar 256MB USB drive Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: ceri Responsible-Changed-When: Mon Jul 28 12:05:57 PDT 2003 Responsible-Changed-Why: Reassign misfiled PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=54981 From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 28 12:11:40 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14B9137B401; Mon, 28 Jul 2003 12:11:40 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5B1243FA3; Mon, 28 Jul 2003 12:11:39 -0700 (PDT) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6SJBdUp099826; Mon, 28 Jul 2003 12:11:39 -0700 (PDT) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6SJBddT099822; Mon, 28 Jul 2003 12:11:39 -0700 (PDT) Date: Mon, 28 Jul 2003 12:11:39 -0700 (PDT) From: Ceri Davies Message-Id: <200307281911.h6SJBddT099822@freefall.freebsd.org> To: ceri@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/54891: libalias/natd and exporting connection-info for identd X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 19:11:40 -0000 Old Synopsis: New Synopsis: libalias/natd and exporting connection-info for identd Class-Changed-From-To: sw-bug->change-request Class-Changed-By: ceri Class-Changed-When: Mon Jul 28 12:08:08 PDT 2003 Class-Changed-Why: Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: ceri Responsible-Changed-When: Mon Jul 28 12:08:08 PDT 2003 Responsible-Changed-Why: Reassign misfiled PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=54891 From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 28 23:03:50 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B17237B401; Mon, 28 Jul 2003 23:03:50 -0700 (PDT) Received: from www.svzserv.kemerovo.su (www.svzserv.kemerovo.su [213.184.65.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6248F43FAF; Mon, 28 Jul 2003 23:03:48 -0700 (PDT) (envelope-from eugen@kuzbass.ru) Received: from kuzbass.ru (kost [213.184.65.82])h6T63i4q052718; Tue, 29 Jul 2003 14:03:45 +0800 (KRAST) (envelope-from eugen@kuzbass.ru) Message-ID: <3F260E21.687DB359@kuzbass.ru> Date: Tue, 29 Jul 2003 14:03:13 +0800 From: Eugene Grosbein Organization: SVZServ X-Mailer: Mozilla 4.8 [en] (Win98; U) X-Accept-Language: ru,en MIME-Version: 1.0 To: Kris Kennaway References: <200307141136.h6EBac9p009264@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit cc: freebsd-bugs@FreeBSD.org cc: eugen@grosbein.pp.ru Subject: Re: kern/52943: reproducable system stuck just brefore multiuser mode X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2003 06:03:50 -0000 Kris Kennaway wrote: > > Synopsis: reproducable system stuck just brefore multiuser mode > > State-Changed-From-To: open->feedback > State-Changed-By: kris > State-Changed-When: Mon Jul 14 04:36:28 PDT 2003 > State-Changed-Why: > Please obtain a debugging traceback as explained in > http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/kerneldebug.html > > http://www.freebsd.org/cgi/query-pr.cgi?pr=52943 Ok, I will soon. Eugene Grosbein From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 29 03:00:35 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5885737B401 for ; Tue, 29 Jul 2003 03:00:35 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7828C43F3F for ; Tue, 29 Jul 2003 03:00:34 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6TA0XUp007202 for ; Tue, 29 Jul 2003 03:00:33 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6TA0XTB007201; Tue, 29 Jul 2003 03:00:33 -0700 (PDT) Resent-Date: Tue, 29 Jul 2003 03:00:33 -0700 (PDT) Resent-Message-Id: <200307291000.h6TA0XTB007201@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Roman Nikitchenko Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DACB937B401 for ; Tue, 29 Jul 2003 02:58:04 -0700 (PDT) Received: from www.trifle.net (www.trifle.net [195.24.128.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id B906F43FA3 for ; Tue, 29 Jul 2003 02:58:01 -0700 (PDT) (envelope-from hc@www.trifle.net) Received: from www.trifle.net (localhost [127.0.0.1]) by www.trifle.net (8.12.6p2/8.12.6) with ESMTP id h6T9vvIv082704 for ; Tue, 29 Jul 2003 12:57:57 +0300 (EEST) (envelope-from hc@www.trifle.net) Received: (from hc@localhost) by www.trifle.net (8.12.6p2/8.12.6/Submit) id h6T9vtbt082701; Tue, 29 Jul 2003 12:57:55 +0300 (EEST) Message-Id: <200307290957.h6T9vtbt082701@www.trifle.net> Date: Tue, 29 Jul 2003 12:57:55 +0300 (EEST) From: Roman Nikitchenko To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/55007: btoken close() on kqueue filter descriptors. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Roman Nikitchenko List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2003 10:00:35 -0000 >Number: 55007 >Category: kern >Synopsis: btoken close() on kqueue filter descriptors. >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 Jul 29 03:00:32 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Roman Nikitchenko >Release: FreeBSD 4.8-STABLE i386 >Organization: Trifle Co. Ltd. >Environment: System: FreeBSD hc.apex.dp.ua 4.8-STABLE FreeBSD 4.8-STABLE #0: Mon Jul 28 18:51:32 EEST 2003 hc@hc.apex.dp.ua:/usr/src/sys/compile/HC i386 >Description: File descriptors obtained through kqueue() call can't be closed using uthread_close() because of non-libc_r kqueue() implementation and _thread_fd_table checks on uthread_close(). I see this behaviour after checks in /usr/src/lib/libc_r/uthread/uthread_close.c in the following branches: MAIN: after revision 1.14, RELENG_4_8_BP after revision 1.10.2.4. >How-To-Repeat: Link against libc_r anything like this: int poller = kqueue(); if ( close( poller ) < 0 ) perror( "close" ); >Fix: Write uthread_kqueue() function inserting new kqueue() descriptor into _thread_fd_table (maybe better way exists, but this is all i found). As workaround: syscall( SYS_close, fd ), but this is too dirty. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 29 03:30:07 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8B8F37B401; Tue, 29 Jul 2003 03:30:07 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81F2343F85; Tue, 29 Jul 2003 03:30:07 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from freefall.freebsd.org (phk@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6TAU7Up012366; Tue, 29 Jul 2003 03:30:07 -0700 (PDT) (envelope-from phk@freefall.freebsd.org) Received: (from phk@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6TAU7mu012362; Tue, 29 Jul 2003 03:30:07 -0700 (PDT) Date: Tue, 29 Jul 2003 03:30:07 -0700 (PDT) From: Poul-Henning Kamp Message-Id: <200307291030.h6TAU7mu012362@freefall.freebsd.org> To: phk@FreeBSD.org, phk@FreeBSD.org, bugs@FreeBSD.org Subject: Re: kern/26506: sendto() syscall returns EINVAL in jail environment X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2003 10:30:08 -0000 Synopsis: sendto() syscall returns EINVAL in jail environment Responsible-Changed-From-To: phk->bugs Responsible-Changed-By: phk Responsible-Changed-When: Tue Jul 29 03:29:21 PDT 2003 Responsible-Changed-Why: I do not have time to work on jail right now, sorry. http://www.freebsd.org/cgi/query-pr.cgi?pr=26506 From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 29 03:31:44 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B30637B401; Tue, 29 Jul 2003 03:31:44 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E695F43F93; Tue, 29 Jul 2003 03:31:43 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from freefall.freebsd.org (phk@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6TAVhUp012664; Tue, 29 Jul 2003 03:31:43 -0700 (PDT) (envelope-from phk@freefall.freebsd.org) Received: (from phk@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6TAVhHs012660; Tue, 29 Jul 2003 03:31:43 -0700 (PDT) Date: Tue, 29 Jul 2003 03:31:43 -0700 (PDT) From: Poul-Henning Kamp Message-Id: <200307291031.h6TAVhHs012660@freefall.freebsd.org> To: phk@FreeBSD.org, phk@FreeBSD.org, bugs@FreeBSD.org Subject: Re: conf/37611: proposed /etc/rc.jails for jail(8) management (with patch) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2003 10:31:44 -0000 Synopsis: proposed /etc/rc.jails for jail(8) management (with patch) Responsible-Changed-From-To: phk->bugs Responsible-Changed-By: phk Responsible-Changed-When: Tue Jul 29 03:31:24 PDT 2003 Responsible-Changed-Why: I'm sorry, but I don't have time to work on jails right now. http://www.freebsd.org/cgi/query-pr.cgi?pr=37611 From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 29 03:33:15 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60F6D37B401; Tue, 29 Jul 2003 03:33:15 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF4FA43F3F; Tue, 29 Jul 2003 03:33:14 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from freefall.freebsd.org (phk@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6TAXEUp012731; Tue, 29 Jul 2003 03:33:14 -0700 (PDT) (envelope-from phk@freefall.freebsd.org) Received: (from phk@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6TAXEZn012726; Tue, 29 Jul 2003 03:33:14 -0700 (PDT) Date: Tue, 29 Jul 2003 03:33:14 -0700 (PDT) From: Poul-Henning Kamp Message-Id: <200307291033.h6TAXEZn012726@freefall.freebsd.org> To: phk@FreeBSD.org, phk@FreeBSD.org, bugs@FreeBSD.org Subject: Re: bin/32828: w incorrectly handles stale utmp slots with jail X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2003 10:33:15 -0000 Synopsis: w incorrectly handles stale utmp slots with jail Responsible-Changed-From-To: phk->bugs Responsible-Changed-By: phk Responsible-Changed-When: Tue Jul 29 03:32:30 PDT 2003 Responsible-Changed-Why: This is indeed a problem with the way utmp and w(1) works, but admittedly, jails probably add to the confusion. I have no simple fix to offer. http://www.freebsd.org/cgi/query-pr.cgi?pr=32828 From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 29 07:20:14 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 756E237B401 for ; Tue, 29 Jul 2003 07:20:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D31143FA3 for ; Tue, 29 Jul 2003 07:20:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6TEKDUp071204 for ; Tue, 29 Jul 2003 07:20:13 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6TEKDin071203; Tue, 29 Jul 2003 07:20:13 -0700 (PDT) Resent-Date: Tue, 29 Jul 2003 07:20:13 -0700 (PDT) Resent-Message-Id: <200307291420.h6TEKDin071203@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Gustavo Bellotto" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 911EE37B401 for ; Tue, 29 Jul 2003 07:14:42 -0700 (PDT) Received: from relay2.mecon.ar (relay2.mecon.gov.ar [168.101.16.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1045643F3F for ; Tue, 29 Jul 2003 07:14:41 -0700 (PDT) (envelope-from gustavo@racing.mecon.ar) Received: from racing.mecon.ar (racing.mecon.gov.ar [168.101.133.15]) by relay2.mecon.ar (8.12.6p2/8.12.6) with ESMTP id h6TEEdV7060683 for ; Tue, 29 Jul 2003 11:14:39 -0300 (ART) (envelope-from gustavo@racing.mecon.ar) Received: from racing.mecon.ar (meyosp.mecon.gov.ar [10.11.0.149]) by racing.mecon.ar (8.12.6/8.12.6) with ESMTP id h6TECX8e023487; Tue, 29 Jul 2003 11:12:33 -0300 (ART) (envelope-from gustavo@racing.mecon.ar) Received: from racing.mecon.ar (localhost [127.0.0.1]) by racing.mecon.ar (8.12.6/8.12.6) with ESMTP id h6TECXjd023484; Tue, 29 Jul 2003 11:12:33 -0300 (ART) (envelope-from gustavo@racing.mecon.ar) Received: (from root@localhost) by racing.mecon.ar (8.12.6/8.12.6/Submit) id h6TECW7b023480; Tue, 29 Jul 2003 11:12:32 -0300 (ART) Message-Id: <200307291412.h6TECW7b023480@racing.mecon.ar> Date: Tue, 29 Jul 2003 11:12:32 -0300 (ART) From: "Gustavo Bellotto" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Gustavo Bellotto Subject: misc/55015: Security check output enhacement (truncated 1st line problem) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Gustavo Bellotto List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2003 14:20:14 -0000 >Number: 55015 >Category: misc >Synopsis: Security check output enhacement (truncated 1st line problem) >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 Jul 29 07:20:12 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Gustavo Bellotto >Release: FreeBSD 4.8-RELEASE i386 >Organization: MECON (Argentine Ministry of Economy) >Environment: FreeBSD cvs-freebsd.mecon.ar 4.8-RELEASE FreeBSD 4.8-RELEASE #0: Mon Jun 2 11:16:05 ART 2003 root@bal740r0.mecon.gov.ar:/usr/obj/usr/src/sys/PENTIUM i386 >Description: As dmesg prints out the system message buffer, which seems to be cyclic on a byte boundary, the first line of dmesg.today / yesterday are some times fragments of a line. Thus the diff done by check_diff in the periodic security report shows undesired unmatched fragments. >How-To-Repeat: Trivial. >Fix: My suggestion is to add a "tail +2" in 700.kernelmsg (version 1.1.2.7), to suppress first dmesg output line: cvs-freebsd:/etc/periodic/security>diff 700.kernelmsg 700.kernelmsg- 47c47 < dmesg 2>/dev/null | tail +2 | --- > dmesg 2>/dev/null | Best Regards, Gustavo >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 29 11:30:11 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8BBC37B401 for ; Tue, 29 Jul 2003 11:30:11 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A67043FA3 for ; Tue, 29 Jul 2003 11:30:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6TIUAUp096033 for ; Tue, 29 Jul 2003 11:30:10 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6TIUAnv096032; Tue, 29 Jul 2003 11:30:10 -0700 (PDT) Resent-Date: Tue, 29 Jul 2003 11:30:10 -0700 (PDT) Resent-Message-Id: <200307291830.h6TIUAnv096032@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Cyrill Shevchuk Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4E7B37B401 for ; Tue, 29 Jul 2003 11:21:51 -0700 (PDT) Received: from holmes.peterlink.ru (holmes.peterlink.ru [195.242.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EA9C43FAF for ; Tue, 29 Jul 2003 11:21:50 -0700 (PDT) (envelope-from cyrill@peterlink.ru) Received: from stapleton.peterlink.ru (stapleton.peterlink.ru [195.242.2.5]) by holmes.peterlink.ru (8.12.6/8.12.6) with ESMTP id h6TILn3W068335 for ; Tue, 29 Jul 2003 22:21:49 +0400 (MSD) Received: from buratino.peterlink.ru (cyrill@buratino.peterlink.ru [195.242.2.70])h6TIKxZT002935 for ; Tue, 29 Jul 2003 22:20:59 +0400 (MSD) Received: from localhost (cyrill@localhost) by buratino.peterlink.ru (8.9.1/8.9.1) with SMTP id WAA07418 for ; Tue, 29 Jul 2003 22:20:58 +0400 (MSD) Message-Id: Date: Tue, 29 Jul 2003 22:20:58 +0400 (MSD) From: Cyrill Shevchuk To: FreeBSD-gnats-submit@FreeBSD.org Subject: kern/55018: [patch] Digiboard PC/Xem fails to initialize when using digi module (BIOS boot failed (0x00 != 0x4447)) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Cyrill Shevchuk List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2003 18:30:12 -0000 >Number: 55018 >Category: kern >Synopsis: [patch] Digiboard PC/Xem fails to initialize when using digi module (BIOS boot failed (0x00 != 0x4447)) >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 Jul 29 11:30:09 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Cyrill Shevchuk >Release: FreeBSD 5.1-RELEASE i386 >Organization: Peterlink ISP >Environment: FreeBSD parazit.peterlink.ru 5.1-RELEASE FreeBSD 5.1-RELEASE #0: Thu Jun 5 02:55:42 GMT 2003 root@wv1u.btc.adaptec.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: Module digi.ko can't initialize Digiboard PC/Xem ISA multiport serial card on old Pentium-100MHz machine. Error message during boot or manual module loading: digi0: BIOS boot failed (0x00 != 0x4447) >How-To-Repeat: 1. Apply following patch to enable verbose init process: --- sys/dev/digi/digi.c.orig Tue Jul 29 09:36:38 2003 +++ sys/dev/digi/digi.c Sun Jul 27 14:21:35 2003 @@ -108,7 +108,7 @@ static struct con_bios *con_bios_list; devclass_t digi_devclass; static char driver_name[] = "digi"; -unsigned digi_debug = 0; +unsigned digi_debug = 1; static struct speedtab digispeedtab[] = { { 0, 0}, /* old (sysV-like) Bx codes */ 2. Place these lines in /etc/make.conf: .if ${.CURDIR} == /usr/src/sys/modules/digi/digi CFLAGS+= -DDEBUG .endif 3. Recompile digi.ko module and load it: # cd /usr/src/sys/modules/digi # make cleandir && make obj && make depend && make # cp digi/digi.ko /boot/kernel # kldload digi digi0: probing on isa bus digi0: isa? port 0x104 mem 0xd0000 digi0: got reset after 0 iterations digi0: board type is 0xf5 digi0: Probe returns -10 digi0: probing on isa bus digi0: isa? port 0x104 mem 0xd0000 digi0: got reset after 0 iterations digi0: board type is 0xf5 digi0: Probe returns -10 digi0 at port 0x104-0x107 iomem 0xd0000-0xd7fff on isa0 digi0: attaching digi0: Checking card type digi0: got reset after 0 iterations digi0: board type is 0xf5 digi0: internal memory segment 0x0 digi0: got reset after 0 iterations digi0: short memory test digi0: 1st memory test ok digi0: 2nd memory test ok digi0: 3rd memory test ok digi0: Got init reset after 0 us digi0: BIOS uploaded digi0: BIOS started after 0 us digi0: BIOS boot failed (0x00 != 0x4447) digi1: probing on isa bus digi1: 0x534: Invalid i/o address digi1: probing on isa bus digi1: probing on isa bus digi1: 0xf00: Invalid i/o address digi1: probing on isa bus digi1: 0x330: Invalid i/o address digi1: probing on isa bus digi1: io address not given digi1: probing on isa bus digi1: 0x061: Invalid i/o address digi1: probing on isa bus digi1: io address not given >Fix: Period given to digiboard bios to run is too small. In current version of sys/dev/digi/digi.c it is 2 * hz ticks, actually it takes my card a little longer to initialize (logged with default hz=100 value): digi0: probing on isa bus digi0: isa? port 0x104 mem 0xd0000 digi0: got reset after 0 iterations digi0: board type is 0xf5 digi0: Probe returns -10 digi0: probing on isa bus digi0: isa? port 0x104 mem 0xd0000 digi0: got reset after 0 iterations digi0: board type is 0xf5 digi0: Probe returns -10 digi0 at port 0x104-0x107 iomem 0xd0000-0xd7fff on isa0 digi0: attaching digi0: Checking card type digi0: got reset after 0 iterations digi0: board type is 0xf5 digi0: internal memory segment 0x0 digi0: got reset after 0 iterations digi0: short memory test digi0: 1st memory test ok digi0: 2nd memory test ok digi0: 3rd memory test ok digi0: Got init reset after 0 us digi0: BIOS uploaded digi0: BIOS started after 0 us digi0: BIOS booted after 215 iterations digi0: Loading FEP/OS digi0: FEP/OS loaded digi0: FEP/OS started after 3 iterations digi0: Digiboard PC/Xem, 64 ports found digi1: probing on isa bus digi1: 0x534: Invalid i/o address digi1: probing on isa bus digi1: probing on isa bus digi1: 0xf00: Invalid i/o address digi1: probing on isa bus digi1: 0x330: Invalid i/o address digi1: probing on isa bus digi1: io address not given digi1: probing on isa bus digi1: 0x061: Invalid i/o address digi1: probing on isa bus digi1: io address not given Suggested patch to sys/dev/digi/digi.c (version 1.34): --- sys/dev/digi/digi.c.orig Tue Jul 29 09:40:24 2003 +++ sys/dev/digi/digi.c Tue Jul 29 09:40:36 2003 @@ -378,7 +378,7 @@ DLOG(DIGIDB_INIT, (sc->dev, "BIOS started after %d us\n", i)); for (i = 0; vW(ptr) != *(u_short *)"GD"; i++) { - if (i > 2*hz) { + if (i > 5*hz) { log(LOG_ERR, "digi%d: BIOS boot failed " "(0x%02x != 0x%02x)\n", sc->res.unit, vW(ptr), *(u_short *)"GD"); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 29 14:20:11 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 835CA37B401 for ; Tue, 29 Jul 2003 14:20:11 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDA5943FBF for ; Tue, 29 Jul 2003 14:20:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6TLK9Up013843 for ; Tue, 29 Jul 2003 14:20:09 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6TLK9si013842; Tue, 29 Jul 2003 14:20:09 -0700 (PDT) Resent-Date: Tue, 29 Jul 2003 14:20:09 -0700 (PDT) Resent-Message-Id: <200307292120.h6TLK9si013842@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F4CB37B401 for ; Tue, 29 Jul 2003 14:11:11 -0700 (PDT) Received: from mailhost.nmt.edu (mailhost.NMT.EDU [129.138.4.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79E3D43F75 for ; Tue, 29 Jul 2003 14:11:10 -0700 (PDT) (envelope-from wcolburn@nmt.edu) Received: from icewing.nmt.edu (icewing.tcct.nmt.edu [129.138.3.102]) h6TLB8Q1020046 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 29 Jul 2003 15:11:08 -0600 Received: from icewing.nmt.edu (localhost.localdomain [127.0.0.1]) by icewing.nmt.edu (8.12.8/8.12.8) with ESMTP id h6TLB8Sv003846; Tue, 29 Jul 2003 15:11:08 -0600 Received: (from wcolburn@localhost) by icewing.nmt.edu (8.12.8/8.12.8/Submit) id h6TLB84D003844; Tue, 29 Jul 2003 15:11:08 -0600 Message-Id: <200307292111.h6TLB84D003844@icewing.nmt.edu> Date: Tue, 29 Jul 2003 15:11:08 -0600 From: "William D. Colburn (aka Schlake)" To: FreeBSD-gnats-submit@FreeBSD.org, wcolburn@nmt.edu X-Send-Pr-Version: 3.113 Subject: kern/55025: machine crashed/rebooted from tar/find/rm fight X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: wcolburn@nmt.edu List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2003 21:20:11 -0000 >Number: 55025 >Category: kern >Synopsis: machine crashed/rebooted from tar/find/rm fight >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 Jul 29 14:20:09 PDT 2003 >Closed-Date: >Last-Modified: >Originator: William D.Colburn >Release: FreeBSD 4.7-STABLE i386 >Organization: New Mexico Institute of Mining and Technology >Environment: eh? System: FreeBSD userhost 4.7-STABLE FreeBSD 4.7-STABLE #0: Thu Jan 9 11:59:54 MST 2003 wcolburn@userhost:/usr/obj/usr/src/sys/USERHOST i386 >Description: Ok, so my file system is pretty full: wcolburn@userhost<~>$ df . Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/da1s1e 81305544 65457788 9343313 88% /tedium But I've got this tar file: wcolburn@userhost<~>$ ll fermium.tar.gz -rw-r--r-- 1 wcolburn 5702 34471720960 Jul 22 14:00 fermium.tar.gz It contains thousands of files I need, and many more that I don't need. It would be annoyingly hard to name all the the ones I want on the command line, but I have a better idea! tar zxf fermium.tar.gz & while true ; do find fermium -type f ! -size 0 ! -perm 0 -exec rm '{}' \; ; done A few minutes later, from an NFS mounted linux box, I do an ls to make sure the find is progressing right. I notice that there is a directory that contains filenames, but not inodes for any of the files. Uh oh, this is bad. Kill the while loop, kill the tar, rm -rf the whole tree. Whew. Disaster averted. A few minutes later, while I'm formulating a new plan of attack the machine drops off the face of the world. Since every computer and its mother depends on this machine for user accounts, I hide. Eventually, the fsck is complete (hurray!) and it comes up. There is useful info in dmesg, and a handy bug submittal form! panic: dqget: free dquot isn't mp_lock = 01000001; cpuid = 1; lapic.id = 01000000 boot() called on cpu#1 syncing disks... 175 35 5 5 5 5 5 5 5 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 gi07]: ./fs/tedium/accounts/u/usul unmounted fstype link from ./fs/tedium/accounts/u/usul cpu_reset_proxy: Grabbed mp lock for BSP cpu_reset_proxy: Stopped CPU 1 >How-To-Repeat: I'm not positive this will work, but I'm also not willing to try again to see if it crashes again. I was using a 34 gig tar file. tar zxf fermium.tar.gz & while true ; do find fermium -type f ! -size 0 ! -perm 0 -exec rm '{}' \; ; done >Fix: My fix is not to run the command listed above in the "How-To-Repeat" section. I will untar my 34 gig tar file on a larger disk, and then run the find after it has finished. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 29 14:44:20 2003 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7845D37B401 for ; Tue, 29 Jul 2003 14:44:20 -0700 (PDT) Received: from obelix2.abcmultimedia.fr (abcmultimedia.net2.nerim.net [213.41.129.93]) by mx1.FreeBSD.org (Postfix) with SMTP id 8923A43F85 for ; Tue, 29 Jul 2003 14:44:16 -0700 (PDT) (envelope-from info@abcmultimedia.fr) Received: (qmail 16206 invoked by uid 0); 29 Jul 2003 23:44:28 -0000 Received: from info@abcmultimedia.fr by obelix2.abcmultimedia.fr by uid 506 with qmail-scanner-1.16 (. spamassassin: 2.55. Clear:. Processed in 0.139222 secs); 29 Jul 2003 23:44:28 -0000 Received: from unknown (HELO spiderman) (192.168.0.160) by obelix2.abcmultimedia.fr with SMTP; 29 Jul 2003 23:44:27 -0000 Message-ID: <000801c3561a$94da0380$6901a8c0@spiderman> From: "Service Commercial" To: Date: Tue, 29 Jul 2003 23:44:25 +0200 Organization: =?iso-8859-1?Q?ABC_Multim=E9di@?= MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Installation problem with 5.1 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2003 21:44:20 -0000 Hi, I use since 4.8 since many weeks now on my smp system : tyan tiger mpx + 2 AMD MP 1800 + 756 Mo ECC 3ware 7000 + 2 X 40GO Udam 100 7200t seagate ati rage pro 128 16mo agp 2x cd-Rom plextor 54x on ide1 floppy on a and that's all !!! com1, com2, mouse, and parallel port are disabled in the bios Since i begin to boot on the 5.1 installation CD with any option the = system hangs on "lockmgr" and prompt to reboot at any time. Any idea ? Regards, Lo=EFc Fraison From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 29 16:40:12 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 184C437B401 for ; Tue, 29 Jul 2003 16:40:12 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C645D43FA3 for ; Tue, 29 Jul 2003 16:40:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6TNeAUp025820 for ; Tue, 29 Jul 2003 16:40:10 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6TNeALa025819; Tue, 29 Jul 2003 16:40:10 -0700 (PDT) Resent-Date: Tue, 29 Jul 2003 16:40:10 -0700 (PDT) Resent-Message-Id: <200307292340.h6TNeALa025819@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Portnoy Alexander Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1758D37B401 for ; Tue, 29 Jul 2003 16:32:29 -0700 (PDT) Received: from mx8.mail.ru (mx8.mail.ru [194.67.23.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD59F43F3F for ; Tue, 29 Jul 2003 16:32:27 -0700 (PDT) (envelope-from Tel-Hai@mail.ru) Received: from [212.179.128.159] (port=1949 helo=old.home) by mx8.mail.ru with smtp id 19hdws-00060m-00 for FreeBSD-gnats-submit@freebsd.org; Wed, 30 Jul 2003 03:32:07 +0400 Message-Id: <20030730023223.12b35ab1.Tel-Hai@mail.ru> Date: Wed, 30 Jul 2003 02:32:23 +0300 From: Portnoy Alexander To: FreeBSD-gnats-submit@FreeBSD.org Subject: kern/55028: The broken FAT12 filesystem causes system panic onFreeBSD 4.8-RELEASE and 5.1-CURRENT X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2003 23:40:12 -0000 >Number: 55028 >Category: kern >Synopsis: The broken FAT12 filesystem causes system panic on FreeBSD 4.8-RELEASE and 5.1-CURRENT >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jul 29 16:40:10 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Alexander Portnoy >Release: FreeBSD 4.8-RELEASE i386 and FreeBSD 5.1-CURRENT i386 >Organization: >Environment: System: FreeBSD old.home 4.8-RELEASE FreeBSD 4.8-RELEASE #0: Wed May 28 02:40:57 IDT 2003 sasha@old.home:/usr/obj/usr/src/sys/UNIVERSAL i386 >Description: The broken FAT12 filesystem (the image is attached) causes system panic on FreeBSD 4.8-RELEASE and 5.1-CURRENT. It happens when I mount the filesystem via vnode or directly from the floppy disk and execute 'ls /mnt/floppy'. >How-To-Repeat: Extract the image of the filesystem I attached to the report: bunzip2 fd0.bz2 Directly from the floppy disk: dd if=fd0 of=/dev/fd0 bs=512 count=2880 mount -t msdos /dev/fd0 /mnt ls /mnt Via vnode: On FreeBSD 4.8-RELEASE: vnconfig -c /dev/vn0 fd0 mount -t msdos /dev/vn0 /mnt ls /mnt On FreeBSD 5.1-CURRENT: mdconfig -a -t vnode -f fd0 -u 0 mount -t msdos /dev/md0 /mnt ls /mnt --Multipart_Wed__30_Jul_2003_02:32:23_+0300_081d3e00 Content-Type: application/octet-stream; name="fd0.bz2" Content-Disposition: attachment; filename="fd0.bz2" Content-Transfer-Encoding: base64 QlpoOTFBWSZTWfwyxvgAmWP/////////////////////////////////////////////4Iv++PKU Pb7sPSu++956evu93vu+98b7vd5m9u7bvvvdj3ffdvYyp97ve+u9l16zn3u+3nfbafe7xe+94fee 9fW+66eyeW9t7W7t2r7b117zXd19vfe6uN3Z2n03nre7vK2877b3s7bd3Vy7ud203u2457bq5btt 3d3Zk93Pe097vbPHmvM3tvXdTLSee871dtZcq7qZqw7u7W5K1V2XVy2rmucCTuaVu93vbbru6fXf M++63r3i5dxjuu9G72tr3NXXr3nvXtxe7K6tme6+ttz3nbThu92vO7vPo3b67ru1zNc65ud7vrvr 3fdXuc7u23NqZ3r3ntL657N53dtTdN9td29Pei3vT272cfUb3V7vu9fHvuB6++z76t75eufbWvc9 eAJAAAAAAAAABVAAAUAB48fVKNaWmrTZtrNTMlWADW2GlUZsYoRLRJ6B12rUNAANB64dvp9CtbW+ yoAACgAAClCgAAAUFaKqaAAAmAEwAAAAAAEwAAmAAAAABMAAACYAmAAp4BMAAJphNMBMAABGTAJq EU8iEJkAAaADQZAmQxNDINNGmKZoZMhoaGQ0MmIaTDQA0aaDQyTaGTSYBoaAT00DQTABMGQCYAmC ngBQinggiBDQNAABCZoTT1NMANJpk0ekyA0GmmJoZMJo00xNMmIGBMgDEGImNGqeyGmEjTBNkyNG gI02mptGRpNiNJ6AoNU/JoRCEQmRMnqYp6ap+maBI8o9MoxNMk/VP1TMjU9pI9TyaaNJ6T9TT1NT GKZHqb0p6jaRtNTMoabaUGjTTTQyekYj0T1PUaGE09RoMgBo00aNqYI9JkAaniEISRVPbQUnvSbJ mpgjCaaDUnkNNTDRqh+qemp5TxT9U/VPJmpGyajaTR+RTelNHhNT0hvVNkbQptQaabKepmU2U8mp 6j1HqD1HkR6mg9T1MmhoaaDaMo02Iyg1P0hIiABGAhoI0mQU/JptCZKfoTxBTwpsp+RpTYJqeU9M DVPU/TInqNqaZT8EnhtClPEQ00eUeRlNqeKeoeo9T9TKPNUHlPCh6nqPSeaU02mKepnqQybUNBm4 +qH6jwvD/irpdpba+NtggkiPrhADluzDt7ymGLFCVthCSEJJKytpCSSta1rJY4Ky5Wi7HVp2S+KW Xa+vXa+yftPTVdJdUfbLWVlZWsrLs+17NaqIRKstgt0xrQ7JAoLbBZfMLJQhSlYQmWswsWN4C32F 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 --Multipart_Wed__30_Jul_2003_02:32:23_+0300_081d3e00-- >Fix: >Release-Note: >Audit-Trail: >Unformatted: This is a multi-part message in MIME format. --Multipart_Wed__30_Jul_2003_02:32:23_+0300_081d3e00 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 29 21:20:08 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CC4937B401 for ; Tue, 29 Jul 2003 21:20:08 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09C2843F3F for ; Tue, 29 Jul 2003 21:20:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6U4K7Up054716 for ; Tue, 29 Jul 2003 21:20:07 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6U4K74S054715; Tue, 29 Jul 2003 21:20:07 -0700 (PDT) Date: Tue, 29 Jul 2003 21:20:07 -0700 (PDT) Message-Id: <200307300420.h6U4K74S054715@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Brent Casavant Subject: Re: kern/52927: Intel Kinnereth-R NIC is not supported by fxp driver X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Brent Casavant List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2003 04:20:08 -0000 The following reply was made to PR kern/52927; it has been noted by GNATS. From: Brent Casavant To: freebsd-gnats-submit@FreeBSD.org, cryptographite@attbi.com Cc: Subject: Re: kern/52927: Intel Kinnereth-R NIC is not supported by fxp driver Date: Tue, 29 Jul 2003 23:14:27 -0500 (CDT) Here's a patch to make this work. Patch is against 5.1-RELEASE. Tested and works (otherwise you wouldn't be getting this message) on a Gigabyte GA-8IK1100 motherboard. I haven't stress-tested the interface, but in a half-hour of web browsing it's done just fine. I took a stab at the correct string to describe this Ethernet controller. I got the "82801EB" from PR kern/54176, and I have no idea what the "VE" or "VM" means, so I left it out. --- cut here --- Index: sys/dev/fxp/if_fxp.c =================================================================== RCS file: /usr/FreeBSDCVS/src/sys/dev/fxp/if_fxp.c,v retrieving revision 1.180 diff -u -r1.180 if_fxp.c --- sys/dev/fxp/if_fxp.c 25 May 2003 05:04:26 -0000 1.180 +++ sys/dev/fxp/if_fxp.c 30 Jul 2003 03:32:09 -0000 @@ -166,6 +166,7 @@ { 0x103C, "Intel 82801DB (ICH4) Pro/100 Ethernet" }, { 0x103D, "Intel 82801DB (ICH4) Pro/100 VE Ethernet" }, { 0x103E, "Intel 82801DB (ICH4) Pro/100 VM Ethernet" }, + { 0x1050, "Intel 82801EB (ICH5) Pro/100 Ethernet" }, { 0x1059, "Intel 82551QM Pro/100 M Mobile Connection" }, { 0x1209, "Intel 82559ER Embedded 10/100 Ethernet" }, { 0x1229, "Intel 82557/8/9 EtherExpress Pro/100(B) Ethernet" }, --- cut here --- I hope this helps, Brent Casavant -- Brent Casavant http://www.angeltread.org/ KD5EMB -.- -.. ..... . -- -... 44 54'24"N 93 03'21"W 907FASL EN34lv From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 29 23:00:34 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37ACB37B4CC for ; Tue, 29 Jul 2003 23:00:34 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3CD143F93 for ; Tue, 29 Jul 2003 23:00:32 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6U60WUp062124 for ; Tue, 29 Jul 2003 23:00:32 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6U60Wgj062123; Tue, 29 Jul 2003 23:00:32 -0700 (PDT) Date: Tue, 29 Jul 2003 23:00:32 -0700 (PDT) Message-Id: <200307300600.h6U60Wgj062123@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Eugene Grosbein Subject: Re: kern/53717: 4.8-RELEASE kernel panic (page fault) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Eugene Grosbein List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2003 06:00:34 -0000 The following reply was made to PR kern/53717; it has been noted by GNATS. From: Eugene Grosbein To: bug-followup@freebsd.org Cc: stable@freebsd.org Subject: Re: kern/53717: 4.8-RELEASE kernel panic (page fault) Date: Wed, 30 Jul 2003 13:55:48 +0800 Some more crashes of 4.8-RELEASE. Lets see what do I have today: # ls -l /var/crash total 1576676 -rw-r--r-- 1 root wheel 2 Jul 30 13:31 bounds -rw-r--r-- 1 root wheel 2193252 Jun 25 17:30 kernel.0 -rw-r--r-- 1 root wheel 2193252 Jul 4 00:08 kernel.1 -rw-r--r-- 1 root wheel 2193252 Jul 15 19:28 kernel.2 -rw-r--r-- 1 root wheel 2193252 Jul 16 17:50 kernel.3 -rw-r--r-- 1 root wheel 2193252 Jul 21 18:19 kernel.4 -rw-r--r-- 1 root wheel 2193252 Jul 30 13:32 kernel.5 -rw-r--r-- 1 root wheel 6 Jun 19 16:15 minfree -rw------- 1 root wheel 267124736 Jun 25 17:30 vmcore.0 -rw------- 1 root wheel 267124736 Jul 4 00:08 vmcore.1 -rw------- 1 root wheel 267124736 Jul 15 19:28 vmcore.2 -rw------- 1 root wheel 267124736 Jul 16 17:50 vmcore.3 -rw------- 1 root wheel 267124736 Jul 21 18:19 vmcore.4 -rw------- 1 root wheel 267124736 Jul 30 13:32 vmcore.5 Pretty sad, isn't it? Here come backtraces of vmcore.[1-5]. # gdb -k /usr/obj/usr/src/sys/FRANT/kernel.debug vmcore.1 GNU gdb 4.18 (FreeBSD) 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"...Deprecated bfd_read called at /usr/src/gnu/usr.bin/binutils/gdb/../../../../contrib/gdb/gdb/dbxread.c line 2627 in elfstab_build_psymtabs Deprecated bfd_read called at /usr/src/gnu/usr.bin/binutils/gdb/../../../../contrib/gdb/gdb/dbxread.c line 933 in fill_symbuf IdlePTD at phsyical address 0x00352000 initial pcb at physical address 0x002bf8e0 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0xaaae fault code = supervisor write, page not present instruction pointer = 0x8:0xc0193de9 stack pointer = 0x10:0xcf466c70 frame pointer = 0x10:0xcf466c74 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 7950 (find) interrupt mask = bio trap number = 12 panic: page fault syncing disks... 37 2 done Uptime: 1d8h16m21s dumping to dev #ad/0x20001, offset 2560 dump ata0: resetting devices .. done 254 253 252 251 250 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 231 230 229 228 227 226 225 224 223 222 221 220 219 218 217 216 215 214 213 212 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 194 193 192 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 175 174 173 172 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 156 155 154 153 152 151 150 149 148 147 146 145 144 143 142 141 140 139 138 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 487 if (dumping++) { (kgdb) bt #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 #1 0xc016a248 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:316 #2 0xc016a695 in panic (fmt=0xc028d14c "%s") at /usr/src/sys/kern/kern_shutdown.c:595 #3 0xc0240fb8 in trap_fatal (frame=0xcf466c30, eva=43694) at /usr/src/sys/i386/i386/trap.c:974 #4 0xc0240c4d in trap_pfault (frame=0xcf466c30, usermode=0, eva=43694) at /usr/src/sys/i386/i386/trap.c:867 #5 0xc02407df in trap (frame={tf_fs = -950206448, tf_es = 16, tf_ds = 1048592, tf_edi = -825164480, tf_esi = 0, tf_ebp = -817468300, tf_isp = -817468324, tf_ebx = -1036697600, tf_edx = 43690, tf_ecx = -826035648, tf_eax = -1037385876, tf_trapno = 12, tf_err = 2, tf_eip = -1072087575, tf_cs = 8, tf_eflags = 66054, tf_esp = -826035648, tf_ss = -817468284}) at /usr/src/sys/i386/i386/trap.c:466 #6 0xc0193de9 in cache_zap (ncp=0xc2354000) at /usr/src/sys/kern/vfs_cache.c:144 #7 0xc019431c in cache_purge (vp=0xcec3b240) at /usr/src/sys/kern/vfs_cache.c:373 #8 0xc01983a8 in getnewvnode (tag=VT_UFS, mp=0xc2307800, vops=0xc22a1600, vpp=0xcf466cec) at /usr/src/sys/kern/vfs_subr.c:663 #9 0xc0201894 in ffs_vget (mp=0xc2307800, ino=3920480, vpp=0xcf466d58) at /usr/src/sys/ufs/ffs/ffs_vfsops.c:1109 #10 0xc0204747 in ufs_lookup (ap=0xcf466db8) at /usr/src/sys/ufs/ufs/ufs_lookup.c:611 #11 0xc02090f5 in ufs_vnoperate (ap=0xcf466db8) at /usr/src/sys/ufs/ufs/ufs_vnops.c:2376 #12 0xc0194676 in vfs_cache_lookup (ap=0xcf466e10) at vnode_if.h:77 #13 0xc02090f5 in ufs_vnoperate (ap=0xcf466e10) at /usr/src/sys/ufs/ufs/ufs_vnops.c:2376 #14 0xc01976ad in lookup (ndp=0xcf466e8c) at vnode_if.h:52 #15 0xc0197198 in namei (ndp=0xcf466e8c) at /usr/src/sys/kern/vfs_lookup.c:153 #16 0xc019d009 in lstat (p=0xced0fd40, uap=0xcf466f80) at /usr/src/sys/kern/vfs_syscalls.c:1823 #17 0xc0241229 in syscall2 (frame={tf_fs = -1078001617, tf_es = -817496017, tf_ds = 672071727, tf_edi = 134617856, tf_esi = 134617936, tf_ebp = -1077937420, tf_isp = -817467436, tf_ebx = 672079852, tf_edx = 134557696, tf_ecx = 0, tf_eax = 190, tf_trapno = 0, tf_err = 2, tf_eip = 671760972, tf_cs = 31, tf_eflags = 663, tf_esp = -1077937560, tf_ss = 47}) at /usr/src/sys/i386/i386/trap.c:1175 #18 0xc02347e5 in Xint0x80_syscall () #19 0x280a0a01 in ?? () #20 0x280a02a2 in ?? () #21 0x804971a in ?? () #22 0x804b9a0 in ?? () #23 0x80493ce in ?? () (kgdb) q # gdb -k /usr/obj/usr/src/sys/FRANT/kernel.debug vmcore.2 GNU gdb 4.18 (FreeBSD) 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"...Deprecated bfd_read called at /usr/src/gnu/usr.bin/binutils/gdb/../../../../contrib/gdb/gdb/dbxread.c line 2627 in elfstab_build_psymtabs Deprecated bfd_read called at /usr/src/gnu/usr.bin/binutils/gdb/../../../../contrib/gdb/gdb/dbxread.c line 933 in fill_symbuf IdlePTD at phsyical address 0x00352000 initial pcb at physical address 0x002bf8e0 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0xecdac6ed fault code = supervisor read, page not present instruction pointer = 0x8:0xc01e6a84 stack pointer = 0x10:0xc029831c frame pointer = 0x10:0xc0298328 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = Idle interrupt mask = net tty trap number = 12 panic: page fault syncing disks... Fatal trap 12: page fault while in kernel mode fault virtual address = 0x30 fault code = supervisor read, page not present instruction pointer = 0x8:0xc01f9fd4 stack pointer = 0x10:0xc0298144 frame pointer = 0x10:0xc029814c code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = Idle interrupt mask = net tty bio trap number = 12 panic: page fault Uptime: 5d0h5m28s dumping to dev #ad/0x20001, offset 2560 dump ata0: resetting devices .. done 254 253 252 251 250 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 231 230 229 228 227 226 225 224 223 222 221 220 219 218 217 216 215 214 213 212 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 194 193 192 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 175 174 173 172 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 156 155 154 153 152 151 150 149 148 147 146 145 144 143 142 141 140 139 138 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 487 if (dumping++) { (kgdb) bt #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 #1 0xc016a248 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:316 #2 0xc016a695 in panic (fmt=0xc028d14c "%s") at /usr/src/sys/kern/kern_shutdown.c:595 #3 0xc0240fb8 in trap_fatal (frame=0xc0298104, eva=48) at /usr/src/sys/i386/i386/trap.c:974 #4 0xc0240c4d in trap_pfault (frame=0xc0298104, usermode=0, eva=48) at /usr/src/sys/i386/i386/trap.c:867 #5 0xc02407df in trap (frame={tf_fs = 7274512, tf_es = 7274512, tf_ds = -1072300016, tf_edi = 0, tf_esi = 2, tf_ebp = -1071021748, tf_isp = -1071021776, tf_ebx = -1070926180, tf_edx = 6864960, tf_ecx = -1070772832, tf_eax = 0, tf_trapno = 12, tf_err = 0, tf_eip = -1071669292, tf_cs = 8, tf_eflags = 66050, tf_esp = -1071021628, tf_ss = 2}) at /usr/src/sys/i386/i386/trap.c:466 #6 0xc01f9fd4 in acquire_lock (lk=0xc02af69c) at /usr/src/sys/ufs/ffs/ffs_softdep.c:266 #7 0xc01fe722 in softdep_fsync_mountdev (vp=0xce7059c0) at /usr/src/sys/ufs/ffs/ffs_softdep.c:4024 #8 0xc0202b4a in ffs_fsync (ap=0xc02981c4) at /usr/src/sys/ufs/ffs/ffs_vnops.c:134 #9 0xc0201788 in ffs_sync (mp=0xc2306800, waitfor=2, cred=0xc0a78680, p=0xc02d4da0) at vnode_if.h:558 #10 0xc019b63f in sync (p=0xc02d4da0, uap=0x0) at /usr/src/sys/kern/vfs_syscalls.c:576 #11 0xc016a003 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:235 #12 0xc016a695 in panic (fmt=0xc028d14c "%s") at /usr/src/sys/kern/kern_shutdown.c:595 #13 0xc0240fb8 in trap_fatal (frame=0xc02982dc, eva=3973760749) at /usr/src/sys/i386/i386/trap.c:974 #14 0xc0240c4d in trap_pfault (frame=0xc02982dc, usermode=0, eva=3973760749) at /usr/src/sys/i386/i386/trap.c:867 #15 0xc02407df in trap (frame={tf_fs = 196624, tf_es = -1072234480, tf_ds = -65520, tf_edi = -1062115584, tf_esi = 6754458, tf_ebp = -1071021272, tf_isp = -1071021304, tf_ebx = -1062115584, tf_edx = -1062756352, tf_ecx = -321206547, tf_eax = 362078, tf_trapno = 12, tf_err = 0, tf_eip = -1071748476, tf_cs = 8, tf_eflags = 66055, tf_esp = -1062227968, tf_ss = -1037503460}) at /usr/src/sys/i386/i386/trap.c:466 #16 0xc01e6a84 in xl_newbuf (sc=0xc228f000, c=0xc228f41c) at /usr/src/sys/pci/if_xl.c:1817 #17 0xc01e6c3e in xl_rxeof (sc=0xc228f000) at /usr/src/sys/pci/if_xl.c:1918 #18 0xc01e737c in xl_intr (arg=0xc228f000) at /usr/src/sys/pci/if_xl.c:2156 #19 0xc023a792 in cpu_idle () at /usr/src/sys/i386/i386/machdep.c:1022 (kgdb) q gdb -k /usr/obj/usr/src/sys/FRANT/kernel.debug vmcore.3 GNU gdb 4.18 (FreeBSD) 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"...Deprecated bfd_read called at /usr/src/gnu/usr.bin/binutils/gdb/../../../../contrib/gdb/gdb/dbxread.c line 2627 in elfstab_build_psymtabs Deprecated bfd_read called at /usr/src/gnu/usr.bin/binutils/gdb/../../../../contrib/gdb/gdb/dbxread.c line 933 in fill_symbuf IdlePTD at phsyical address 0x00352000 initial pcb at physical address 0x002bf8e0 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0x2e383132 fault code = supervisor read, page not present instruction pointer = 0x8:0xc01e6a84 stack pointer = 0x10:0xced96f4c frame pointer = 0x10:0xced96f58 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 6142 (sendmail) interrupt mask = net tty trap number = 12 panic: page fault syncing disks... Fatal trap 12: page fault while in kernel mode fault virtual address = 0x2e383132 fault code = supervisor read, page not present instruction pointer = 0x8:0xc01e6a84 stack pointer = 0x10:0xced96c58 frame pointer = 0x10:0xced96c64 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 6142 (sendmail) interrupt mask = net tty trap number = 12 panic: page fault Uptime: 22h21m6s dumping to dev #ad/0x20001, offset 2560 dump ata0: resetting devices .. done 254 253 252 251 250 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 231 230 229 228 227 226 225 224 223 222 221 220 219 218 217 216 215 214 213 212 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 194 193 192 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 175 174 173 172 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 156 155 154 153 152 151 150 149 148 147 146 145 144 143 142 141 140 139 138 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 487 if (dumping++) { (kgdb) bt #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 #1 0xc016a248 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:316 #2 0xc016a695 in panic (fmt=0xc028d14c "%s") at /usr/src/sys/kern/kern_shutdown.c:595 #3 0xc0240fb8 in trap_fatal (frame=0xced96c18, eva=775434546) at /usr/src/sys/i386/i386/trap.c:974 #4 0xc0240c4d in trap_pfault (frame=0xced96c18, usermode=0, eva=775434546) at /usr/src/sys/i386/i386/trap.c:867 #5 0xc02407df in trap (frame={tf_fs = -824639472, tf_es = -1072496624, tf_ds = -1037565936, tf_edi = -1062226432, tf_esi = 6754458, tf_ebp = -824611740, tf_isp = -824611772, tf_ebx = -1062226432, tf_edx = -1062756352, tf_ecx = 775434546, tf_eax = 897548, tf_trapno = 12, tf_err = 0, tf_eip = -1071748476, tf_cs = 8, tf_eflags = 66050, tf_esp = -1062411520, tf_ss = -1037504132}) at /usr/src/sys/i386/i386/trap.c:466 #6 0xc01e6a84 in xl_newbuf (sc=0xc228f000, c=0xc228f17c) at /usr/src/sys/pci/if_xl.c:1817 #7 0xc01e6c3e in xl_rxeof (sc=0xc228f000) at /usr/src/sys/pci/if_xl.c:1918 #8 0xc01e737c in xl_intr (arg=0xc228f000) at /usr/src/sys/pci/if_xl.c:2156 #9 0xc0235cda in vec3 () #10 0xc01fa08a in interlocked_sleep (lk=0xc02af69c, op=1, ident=0xce705884, flags=17, wmesg=0xc0282c1f "drainvp", timo=0) at /usr/src/sys/ufs/ffs/ffs_softdep.c:329 #11 0xc01ffa52 in drain_output (vp=0xce705840, islocked=1) at /usr/src/sys/ufs/ffs/ffs_softdep.c:4913 #12 0xc01fe816 in softdep_fsync_mountdev (vp=0xce705840) at /usr/src/sys/ufs/ffs/ffs_softdep.c:4056 #13 0xc0202b4a in ffs_fsync (ap=0xced96df4) at /usr/src/sys/ufs/ffs/ffs_vnops.c:134 #14 0xc0201788 in ffs_sync (mp=0xc227d000, waitfor=2, cred=0xc0a78680, p=0xc02d4da0) at vnode_if.h:558 #15 0xc019b63f in sync (p=0xc02d4da0, uap=0x0) at /usr/src/sys/kern/vfs_syscalls.c:576 #16 0xc016a003 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:235 #17 0xc016a695 in panic (fmt=0xc028d14c "%s") at /usr/src/sys/kern/kern_shutdown.c:595 #18 0xc0240fb8 in trap_fatal (frame=0xced96f0c, eva=775434546) at /usr/src/sys/i386/i386/trap.c:974 #19 0xc0240c4d in trap_pfault (frame=0xced96f0c, usermode=0, eva=775434546) at /usr/src/sys/i386/i386/trap.c:867 #20 0xc02407df in trap (frame={tf_fs = -1036320752, tf_es = 16, tf_ds = 135462928, tf_edi = -1062484480, tf_esi = 6754458, tf_ebp = -824610984, tf_isp = -824611016, tf_ebx = -1062484480, tf_edx = -1062756352, tf_ecx = 775434546, tf_eax = 897548, tf_trapno = 12, tf_err = 0, tf_eip = -1071748476, tf_cs = 8, tf_eflags = 66054, tf_esp = -1062335232, tf_ss = -1037462992}) at /usr/src/sys/i386/i386/trap.c:466 #21 0xc01e6a84 in xl_newbuf (sc=0xc2299000, c=0xc2299230) at /usr/src/sys/pci/if_xl.c:1817 #22 0xc01e6c3e in xl_rxeof (sc=0xc2299000) at /usr/src/sys/pci/if_xl.c:1918 #23 0xc01e737c in xl_intr (arg=0xc2299000) at /usr/src/sys/pci/if_xl.c:2156 #24 0x804e8d1 in ?? () #25 0x809e3b6 in ?? () #26 0x809ce63 in ?? () #27 0x806e652 in ?? () #28 0x804c1d2 in ?? () (kgdb) q gdb -k /usr/obj/usr/src/sys/FRANT/kernel.debug vmcore.4 GNU gdb 4.18 (FreeBSD) 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"...Deprecated bfd_read called at /usr/src/gnu/usr.bin/binutils/gdb/../../../../contrib/gdb/gdb/dbxread.c line 2627 in elfstab_build_psymtabs Deprecated bfd_read called at /usr/src/gnu/usr.bin/binutils/gdb/../../../../contrib/gdb/gdb/dbxread.c line 933 in fill_symbuf IdlePTD at phsyical address 0x00352000 initial pcb at physical address 0x002bf8e0 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0xc0bbf0d4 fault code = supervisor write, page not present instruction pointer = 0x8:0xc01e6a7b stack pointer = 0x10:0xc0298180 frame pointer = 0x10:0xc029818c code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = Idle interrupt mask = net tty trap number = 12 panic: page fault syncing disks... Fatal trap 12: page fault while in kernel mode fault virtual address = 0x30 fault code = supervisor read, page not present instruction pointer = 0x8:0xc01f9fd4 stack pointer = 0x10:0xc0297fa8 frame pointer = 0x10:0xc0297fb0 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = Idle interrupt mask = net tty bio trap number = 12 panic: page fault Uptime: 5d0h27m15s dumping to dev #ad/0x20001, offset 2560 dump ata0: resetting devices .. done 254 253 252 251 250 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 231 230 229 228 227 226 225 224 223 222 221 220 219 218 217 216 215 214 213 212 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 194 193 192 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 175 174 173 172 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 156 155 154 153 152 151 150 149 148 147 146 145 144 143 142 141 140 139 138 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 487 if (dumping++) { (kgdb) bt #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 #1 0xc016a248 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:316 #2 0xc016a695 in panic (fmt=0xc028d14c "%s") at /usr/src/sys/kern/kern_shutdown.c:595 #3 0xc0240fb8 in trap_fatal (frame=0xc0297f68, eva=48) at /usr/src/sys/i386/i386/trap.c:974 #4 0xc0240c4d in trap_pfault (frame=0xc0297f68, usermode=0, eva=48) at /usr/src/sys/i386/i386/trap.c:867 #5 0xc02407df in trap (frame={tf_fs = -1037565936, tf_es = 16, tf_ds = -1072300016, tf_edi = 0, tf_esi = 2, tf_ebp = -1071022160, tf_isp = -1071022188, tf_ebx = -1070926180, tf_edx = 6864960, tf_ecx = -1070772832, tf_eax = 0, tf_trapno = 12, tf_err = 0, tf_eip = -1071669292, tf_cs = 8, tf_eflags = 66050, tf_esp = -1071022040, tf_ss = 2}) at /usr/src/sys/i386/i386/trap.c:466 #6 0xc01f9fd4 in acquire_lock (lk=0xc02af69c) at /usr/src/sys/ufs/ffs/ffs_softdep.c:266 #7 0xc01fe722 in softdep_fsync_mountdev (vp=0xce7059c0) at /usr/src/sys/ufs/ffs/ffs_softdep.c:4024 #8 0xc0202b4a in ffs_fsync (ap=0xc0298028) at /usr/src/sys/ufs/ffs/ffs_vnops.c:134 #9 0xc0201788 in ffs_sync (mp=0xc2306800, waitfor=2, cred=0xc0a78680, p=0xc02d4da0) at vnode_if.h:558 #10 0xc019b63f in sync (p=0xc02d4da0, uap=0x0) at /usr/src/sys/kern/vfs_syscalls.c:576 #11 0xc016a003 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:235 #12 0xc016a695 in panic (fmt=0xc028d14c "%s") at /usr/src/sys/kern/kern_shutdown.c:595 #13 0xc0240fb8 in trap_fatal (frame=0xc0298140, eva=3233542356) at /usr/src/sys/i386/i386/trap.c:974 #14 0xc0240c4d in trap_pfault (frame=0xc0298140, usermode=0, eva=3233542356) at /usr/src/sys/i386/i386/trap.c:867 #15 0xc02407df in trap (frame={tf_fs = 16, tf_es = -1071054832, tf_ds = -1072037872, tf_edi = -1062374912, tf_esi = 6754458, tf_ebp = -1071021684, tf_isp = -1071021716, tf_ebx = -1062374912, tf_edx = -1062756352, tf_ecx = 1663988846, tf_eax = 1331412, tf_trapno = 12, tf_err = 2, tf_eip = -1071748485, tf_cs = 8, tf_eflags = 68103, tf_esp = -1062336512, tf_ss = -1037462896}) at /usr/src/sys/i386/i386/trap.c:466 #16 0xc01e6a7b in xl_newbuf (sc=0xc2299000, c=0xc2299290) at /usr/src/sys/pci/if_xl.c:1817 #17 0xc01e6c3e in xl_rxeof (sc=0xc2299000) at /usr/src/sys/pci/if_xl.c:1918 #18 0xc01e737c in xl_intr (arg=0xc2299000) at /usr/src/sys/pci/if_xl.c:2156 #19 0xc0235cda in vec3 () #20 0xc01e492a in xl_miibus_readreg (dev=0xc2292e80, phy=24, reg=1) at /usr/src/sys/pci/if_xl.c:588 #21 0xc014e54e in MIIBUS_READREG (dev=0xc2292e80, phy=24, reg=1) at miibus_if.c:27 #22 0xc0147ef8 in miibus_readreg (dev=0xc2292d00, phy=24, reg=1) at /usr/src/sys/dev/mii/mii.c:196 #23 0xc014e54e in MIIBUS_READREG (dev=0xc2292d00, phy=24, reg=1) at miibus_if.c:27 #24 0xc01487f4 in ukphy_status (phy=0xc229bf00) at /usr/src/sys/dev/mii/ukphy_subr.c:78 #25 0xc014aa69 in exphy_service (sc=0xc229bf00, mii=0xc229bf40, cmd=1) at /usr/src/sys/dev/mii/exphy.c:294 #26 0xc014808d in mii_tick (mii=0xc229bf40) at /usr/src/sys/dev/mii/mii.c:311 #27 0xc01e754b in xl_stats_update (xsc=0xc2299000) at /usr/src/sys/pci/if_xl.c:2235 #28 0xc0170349 in softclock () at /usr/src/sys/kern/kern_timeout.c:131 #29 0xc0235c03 in doreti_swi () (kgdb) q gdb -k /usr/obj/usr/src/sys/FRANT/kernel.debug vmcore.5 GNU gdb 4.18 (FreeBSD) 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"...Deprecated bfd_read called at /usr/src/gnu/usr.bin/binutils/gdb/../../../../contrib/gdb/gdb/dbxread.c line 2627 in elfstab_build_psymtabs Deprecated bfd_read called at /usr/src/gnu/usr.bin/binutils/gdb/../../../../contrib/gdb/gdb/dbxread.c line 933 in fill_symbuf IdlePTD at phsyical address 0x00352000 initial pcb at physical address 0x002bf8e0 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0xecf3c1ab fault code = supervisor read, page not present instruction pointer = 0x8:0xc0189800 stack pointer = 0x10:0xced05e3c frame pointer = 0x10:0xced05e60 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 46228 (sshd) interrupt mask = net tty trap number = 12 panic: page fault syncing disks... 32 2 2 1 1 1 1 1 1 1 Fatal trap 12: page fault while in kernel mode fault virtual address = 0xecf3c1ab fault code = supervisor read, page not present instruction pointer = 0x8:0xc01e6a84 stack pointer = 0x10:0xced05a4c frame pointer = 0x10:0xced05a58 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 46228 (sshd) interrupt mask = net tty trap number = 12 panic: page fault Uptime: 7d13h22m17s dumping to dev #ad/0x20001, offset 2560 dump ata0: resetting devices .. done 254 253 252 251 250 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 231 230 229 228 227 226 225 224 223 222 221 220 219 218 217 216 215 214 213 212 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 194 193 192 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 175 174 173 172 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 156 155 154 153 152 151 150 149 148 147 146 145 144 143 142 141 140 139 138 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 487 if (dumping++) { (kgdb) bt #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 #1 0xc016a248 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:316 #2 0xc016a695 in panic (fmt=0xc028d14c "%s") at /usr/src/sys/kern/kern_shutdown.c:595 #3 0xc0240fb8 in trap_fatal (frame=0xced05a0c, eva=3975397803) at /usr/src/sys/i386/i386/trap.c:974 #4 0xc0240c4d in trap_pfault (frame=0xced05a0c, usermode=0, eva=3975397803) at /usr/src/sys/i386/i386/trap.c:867 #5 0xc02407df in trap (frame={tf_fs = -825229296, tf_es = -1843331056, tf_ds = 524304, tf_edi = -1062408960, tf_esi = 6754458, tf_ebp = -825206184, tf_isp = -825206216, tf_ebx = -1062408960, tf_edx = -1062756352, tf_ecx = -319569493, tf_eax = 362878, tf_trapno = 12, tf_err = 0, tf_eip = -1071748476, tf_cs = 8, tf_eflags = 66050, tf_esp = -1061904640, tf_ss = -1037503976}) at /usr/src/sys/i386/i386/trap.c:466 #6 0xc01e6a84 in xl_newbuf (sc=0xc228f000, c=0xc228f218) at /usr/src/sys/pci/if_xl.c:1817 #7 0xc01e6c3e in xl_rxeof (sc=0xc228f000) at /usr/src/sys/pci/if_xl.c:1918 #8 0xc01e737c in xl_intr (arg=0xc228f000) at /usr/src/sys/pci/if_xl.c:2156 #9 0xc0235cda in vec3 () #10 0xc0192dff in biowait (bp=0xc7524558) at /usr/src/sys/kern/vfs_bio.c:2644 #11 0xc0190647 in bread (vp=0xce705840, blkno=1831456, size=16384, cred=0x0, bpp=0xced05b98) at /usr/src/sys/kern/vfs_bio.c:527 #12 0xc01fc39d in indir_trunc (ip=0xced05be0, dbn=1831456, level=0, lbn=12, countp=0xced05bd0) at /usr/src/sys/ufs/ffs/ffs_softdep.c:2216 #13 0xc01fc1ae in handle_workitem_freeblocks (freeblks=0xc2b3b680) at /usr/src/sys/ufs/ffs/ffs_softdep.c:2133 #14 0xc01fa64e in process_worklist_item (matchmnt=0x0, flags=0) at /usr/src/sys/ufs/ffs/ffs_softdep.c:723 #15 0xc01fa4da in softdep_process_worklist (matchmnt=0x0) at /usr/src/sys/ufs/ffs/ffs_softdep.c:622 #16 0xc016a0c4 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:261 #17 0xc016a695 in panic (fmt=0xc028d14c "%s") at /usr/src/sys/kern/kern_shutdown.c:595 #18 0xc0240fb8 in trap_fatal (frame=0xced05dfc, eva=3975397803) at /usr/src/sys/i386/i386/trap.c:974 #19 0xc0240c4d in trap_pfault (frame=0xced05dfc, usermode=0, eva=3975397803) at /usr/src/sys/i386/i386/trap.c:867 #20 0xc02407df in trap (frame={tf_fs = 16, tf_es = -825229296, tf_ds = 8323088, tf_edi = 0, tf_esi = -1061981696, tf_ebp = -825205152, tf_isp = -825205208, tf_ebx = -1061981696, tf_edx = -1062756352, tf_ecx = -319569493, tf_eax = 362878, tf_trapno = 12, tf_err = 0, tf_eip = -1072130048, tf_cs = 8, tf_eflags = 66054, tf_esp = -1070942144, tf_ss = 304}) at /usr/src/sys/i386/i386/trap.c:466 #21 0xc0189800 in sosend (so=0xcda2fac0, addr=0x0, uio=0xced05ee0, top=0x0, control=0x0, flags=0, p=0xccff91e0) at /usr/src/sys/kern/uipc_socket.c:567 #22 0xc017ceee in soo_write (fp=0xc2b58f40, uio=0xced05ee0, cred=0xc2396200, flags=0, p=0xccff91e0) at /usr/src/sys/kern/sys_socket.c:81 #23 0xc01799ba in dofilewrite (p=0xccff91e0, fp=0xc2b58f40, fd=4, buf=0x8079000, nbyte=304, offset=-1, flags=0) at /usr/src/sys/sys/file.h:163 #24 0xc017986b in write (p=0xccff91e0, uap=0xced05f80) at /usr/src/sys/kern/sys_generic.c:329 #25 0xc0241229 in syscall2 (frame={tf_fs = 134676527, tf_es = 47, tf_ds = -1078001617, tf_edi = 134662512, tf_esi = 304, tf_ebp = -1077939184, tf_isp = -825204780, tf_ebx = 671906620, tf_edx = 134662512, tf_ecx = 4, tf_eax = 4, tf_trapno = 7, tf_err = 2, tf_eip = 673687852, tf_cs = 31, tf_eflags = 646, tf_esp = -1077939228, tf_ss = 47}) at /usr/src/sys/i386/i386/trap.c:1175 #26 0xc02347e5 in Xint0x80_syscall () #27 0x8053c72 in ?? () #28 0x805443b in ?? () #29 0x805a269 in ?? () #30 0x805756c in ?? () #31 0x804ffc8 in ?? () #32 0x804dcfa in ?? () (kgdb) q Eugene Grosbein From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 29 23:10:09 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65CC037B401 for ; Tue, 29 Jul 2003 23:10:09 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69B2343FAF for ; Tue, 29 Jul 2003 23:10:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6U6A8Up066103 for ; Tue, 29 Jul 2003 23:10:08 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6U6A8Fj066102; Tue, 29 Jul 2003 23:10:08 -0700 (PDT) Resent-Date: Tue, 29 Jul 2003 23:10:08 -0700 (PDT) Resent-Message-Id: <200307300610.h6U6A8Fj066102@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2914D37B401 for ; Tue, 29 Jul 2003 23:01:01 -0700 (PDT) Received: from mail.kristal.ru (mail.kristal.ru [195.161.155.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id B101E43F75 for ; Tue, 29 Jul 2003 23:00:59 -0700 (PDT) (envelope-from ivk@kristal.ru) Received: by mail.kristal.ru (8.9.3/8.9.3, from userid 1000) id BFE83178; Wed, 30 Jul 2003 16:00:46 +1000 (YAKST) Message-Id: <20030730060046.BFE83178@mail.kristal.ru> Date: Wed, 30 Jul 2003 16:00:46 +1000 (YAKST) From: To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/55034: ACPI Power Off don't work X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: ivk@kristal.ru List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2003 06:10:09 -0000 >Number: 55034 >Category: kern >Synopsis: ACPI Power Off don't work >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jul 29 23:10:07 PDT 2003 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: >Description: System: FreeBSD spooky.my.domain 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Sat Oct 26 16:19:39 YAKST 2002 root@spooky.my.domain:/usr/obj/usr/src/sys/SPOOKY i386 Hardware configuration: Intel 815EP MB, Pentium III-866, 512MB memory, 20GB disk Problem: When I run /sbin/shutdown -p now I got some messages about stopped processes, syncing disks and then this error messages: Powering system off using ACPI ACPI-1287: *** Error: Method execution failed [\SALD] (Node 0xc3671e00) AE_AML_UNINITIALIZED_LOCAL ACPI-1287: *** Error: Method execution failed [\_PTS] (Node 0xc108bae0) AE_AML_UNINITIALIZED_LOCAL AcpiEnterSleepStatePrep failed AE_AML_UNINITIALIZED_LOCAL >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 29 23:56:41 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2E4537B401; Tue, 29 Jul 2003 23:56:41 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A0AF43FA3; Tue, 29 Jul 2003 23:56:41 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from freefall.freebsd.org (ru@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6U6ufUp068553; Tue, 29 Jul 2003 23:56:41 -0700 (PDT) (envelope-from ru@freefall.freebsd.org) Received: (from ru@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6U6uefF068549; Tue, 29 Jul 2003 23:56:40 -0700 (PDT) Date: Tue, 29 Jul 2003 23:56:40 -0700 (PDT) From: Ruslan Ermilov Message-Id: <200307300656.h6U6uefF068549@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org, dirk.meyer@dinoex.sub.org, ru@FreeBSD.org, ru@FreeBSD.org Subject: Re: bin/54031: awk/nawk regression with LANG X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2003 06:56:42 -0000 Synopsis: awk/nawk regression with LANG State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Tue Jul 29 23:55:04 PDT 2003 State-Changed-Why: Fixed in the just imported 2003/07/29 version of one-true-awk. http://www.freebsd.org/cgi/query-pr.cgi?pr=54031 From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 30 11:40:11 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1EA337B408 for ; Wed, 30 Jul 2003 11:40:11 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C65A743FAF for ; Wed, 30 Jul 2003 11:40:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6UIeAUp087586 for ; Wed, 30 Jul 2003 11:40:10 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6UIeAiO087585; Wed, 30 Jul 2003 11:40:10 -0700 (PDT) Resent-Date: Wed, 30 Jul 2003 11:40:10 -0700 (PDT) Resent-Message-Id: <200307301840.h6UIeAiO087585@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Morozovsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2460937B401 for ; Wed, 30 Jul 2003 11:31:41 -0700 (PDT) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3707643FA3 for ; Wed, 30 Jul 2003 11:31:40 -0700 (PDT) (envelope-from marck@woozle.rinet.ru) Received: from woozle.rinet.ru (localhost [127.0.0.1]) by woozle.rinet.ru (8.12.9/8.12.9) with ESMTP id h6UIVd4C015096 for ; Wed, 30 Jul 2003 22:31:39 +0400 (MSD) (envelope-from marck@woozle.rinet.ru) Received: (from marck@localhost) by woozle.rinet.ru (8.12.9/8.12.9/Submit) id h6UIVdIe015095; Wed, 30 Jul 2003 22:31:39 +0400 (MSD) Message-Id: <200307301831.h6UIVdIe015095@woozle.rinet.ru> Date: Wed, 30 Jul 2003 22:31:39 +0400 (MSD) From: Dmitry Morozovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/55078: [patch] mount_mfs crashes RELENG_4 for tyny mfs X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dmitry Morozovsky List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2003 18:40:12 -0000 >Number: 55078 >Category: bin >Synopsis: [patch] mount_mfs crashes RELENG_4 for tyny mfs >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 Jul 30 11:40:09 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Dmitry Morozovsky >Release: FreeBSD 4-STABLE i386 >Organization: Cronyx Plus LLC (RiNet ISP) >Environment: System: FreeBSD 4-STABLE >Description: for restricted jail environment, it's useful to make jail filesystem nodev just to be safe; the most useful way to make jail's /dev is mfs of minimal size. It's possible to crash RELENG_4 system that way, as mount_mfs doesn't check it can successfully allocate inodes for root directory, etc. Problem is RELENG_4-specific. --- #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 487 if (dumping++) { (kgdb) bt #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 #1 0xc013a148 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:316 #2 0xc013a57c in poweroff_wait (junk=0xc01f6847, howto=-1047158784) at /usr/src/sys/kern/kern_shutdown.c:595 #3 0xc01a01e2 in ufs_dirbad (ip=0xc1986400, offset=0, how=0xc01f67f0 "mangled entry") at /usr/src/sys/ufs/ufs/ufs_lookup.c:641 #4 0xc019f9eb in ufs_lookup (ap=0xc5778db8) at /usr/src/sys/ufs/ufs/ufs_lookup.c:291 #5 0xc01a4ad9 in ufs_vnoperate (ap=0xc5778db8) at /usr/src/sys/ufs/ufs/ufs_vnops.c:2376 #6 0xc016436a in vfs_cache_lookup (ap=0xc5778e10) at vnode_if.h:77 #7 0xc01a4ad9 in ufs_vnoperate (ap=0xc5778e10) at /usr/src/sys/ufs/ufs/ufs_vnops.c:2376 #8 0xc016735d in lookup (ndp=0xc5778e8c) at vnode_if.h:52 #9 0xc0166e48 in namei (ndp=0xc5778e8c) at /usr/src/sys/kern/vfs_lookup.c:153 #10 0xc016cb75 in stat (p=0xc4718c20, uap=0xc5778f80) at /usr/src/sys/kern/vfs_syscalls.c:1787 #11 0xc01d7749 in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = -1077937536, tf_esi = -1077937344, tf_ebp = -1077937440, tf_isp = -982020140, tf_ebx = 251860, tf_edx = -1077937348, tf_ecx = 1059584793, tf_eax = 188, tf_trapno = 12, tf_err = 2, tf_eip = 671739816, tf_cs = 31, tf_eflags = 663, tf_esp = -1077937628, tf_ss = 47}) at /usr/src/sys/i386/i386/trap.c:1175 #12 0xc01cb775 in Xint0x80_syscall () #13 0x804891e in ?? () (kgdb) >How-To-Repeat: mount_mfs -s 128 -i 256 swap /mnt [notice 'first cylinder group ran out of space'] touch /mnt/1 >Fix: Add checks in mount_mfs: Index: sbin/newfs/mkfs.c =================================================================== RCS file: /home/ncvs/src/sbin/newfs/mkfs.c,v retrieving revision 1.29.2.6 diff -u -r1.29.2.6 mkfs.c --- mkfs.c 21 Sep 2001 19:15:21 -0000 1.29.2.6 +++ mkfs.c 30 Jul 2003 18:23:40 -0000 @@ -148,7 +148,7 @@ long calcipg(); static int charsperline(); void clrblock __P((struct fs *, unsigned char *, int)); -void fsinit __P((time_t)); +int fsinit __P((time_t)); void initcg __P((int, time_t)); int isblock __P((struct fs *, unsigned char *, int)); void iput __P((struct dinode *, ino_t)); @@ -728,7 +728,8 @@ * Now construct the initial file system, * then write out the super-block. */ - fsinit(utime); + if (fsinit(utime) == -1) + exit(1); sblock.fs_time = utime; wtfs((int)SBOFF / sectorsize, sbsize, (char *)&sblock); for (i = 0; i < sblock.fs_cssize; i += sblock.fs_bsize) @@ -968,7 +969,7 @@ #endif char buf[MAXBSIZE]; -void +int fsinit(utime) time_t utime; { @@ -1001,6 +1002,8 @@ node.di_nlink = 2; node.di_size = sblock.fs_bsize; node.di_db[0] = alloc(node.di_size, node.di_mode); + if (node.di_db[0] == 0) + return -1; node.di_blocks = btodb(fragroundup(&sblock, node.di_size)); wtfs(fsbtodb(&sblock, node.di_db[0]), node.di_size, buf); iput(&node, LOSTFOUNDINO); @@ -1018,9 +1021,12 @@ else node.di_size = makedir(root_dir, PREDEFDIR); node.di_db[0] = alloc(sblock.fs_fsize, node.di_mode); + if (node.di_db[0] == 0) + return -1; node.di_blocks = btodb(fragroundup(&sblock, node.di_size)); wtfs(fsbtodb(&sblock, node.di_db[0]), sblock.fs_fsize, buf); iput(&node, ROOTINO); + return 0; } /* >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 30 13:00:32 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB00237B401 for ; Wed, 30 Jul 2003 13:00:32 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A3A543FE3 for ; Wed, 30 Jul 2003 13:00:31 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6UK0VUp096263 for ; Wed, 30 Jul 2003 13:00:31 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6UK0VR5096262; Wed, 30 Jul 2003 13:00:31 -0700 (PDT) Resent-Date: Wed, 30 Jul 2003 13:00:31 -0700 (PDT) Resent-Message-Id: <200307302000.h6UK0VR5096262@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chuck Cranor Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6988E37B401 for ; Wed, 30 Jul 2003 12:58:51 -0700 (PDT) Received: from gs1.research.att.com (H-135-207-14-45.research.att.com [135.207.14.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BA4143FB1 for ; Wed, 30 Jul 2003 12:58:50 -0700 (PDT) (envelope-from chuck@gs1.research.att.com) Received: from gs1.research.att.com (localhost.research.att.com [127.0.0.1]) by gs1.research.att.com (8.12.6/8.12.6) with ESMTP id h6UJwjdF055735; Wed, 30 Jul 2003 19:58:49 GMT (envelope-from chuck@gs1.research.att.com) Received: (from chuck@localhost) by gs1.research.att.com (8.12.6/8.12.6/Submit) id h6UJt1aN055545; Wed, 30 Jul 2003 19:55:01 GMT Message-Id: <200307301955.h6UJt1aN055545@gs1.research.att.com> Date: Wed, 30 Jul 2003 19:55:01 GMT From: Chuck Cranor To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: chuck@research.att.com Subject: kern/55081: contigmalloc API semantics inadequate --- forces KVM mapping X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Chuck Cranor List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2003 20:00:33 -0000 >Number: 55081 >Category: kern >Synopsis: contigmalloc API semantics inadequate --- forces KVM mapping >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 Jul 30 13:00:28 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Chuck Cranor >Release: FreeBSD 4.7-RELEASE i386 >Organization: AT&T Labs--Research >Environment: System: FreeBSD gs1.research.att.com 4.7-RELEASE FreeBSD 4.7-RELEASE #2: Mon Mar 3 15:40:37 GMT 2003 chuck@gs1.research.att.com:/usr/home/chuck/src/sys/compile/RESEARCH47MP i386 >Description: we have a PCI card that communicates with its user-level applications by using a physically contiguous memory mapped buffer [mapped via mmap(2)]. currently the card's driver allocates the buffer using contigmalloc() during autoconfig. we would like to make this buffer quite large (all our systems have 4GB RAM), but unfortunately the semantics of contigmalloc() cannot support this! the problem with the contigmalloc() API is that in addition to allocating physically contiguous memory, it also insists on mapping the allocated memory into the kernel virtual address space! thus, when we try and allocate large buffers for our PCI device, our allocation fails because we run out of kernel virtual memory. this is bad, since the PCI card we are using needs large blocks of contiguous memory, but it does not need _any_ kernel mappings of these blocks. to solve the problem, i have broken contigmalloc() up into two functions: vm_contig_pg_alloc() - allocates physical contig memory, return index of first page in vm_page_array or -1 on error vm_contig_pg_kmapin() - maps a set of physically contig pages into KVM and now contigmalloc() is just a wrapper around calls to these two functions. i also have a vm_contig_pg_free() function that undoes a vm_contig_pg_alloc() operation. for our device, we only need to call vm_contig_pg_alloc()... that will save us from running out of KVM. I would like to get some sort of change along these lines committed to the FreeBSD 4 and 5 branches. I'm willing to rework the patch a bit if needed. >How-To-Repeat: attempt to allocate a large (e.g. 1GB) physically contig buffer in the FreeBSD kernel. >Fix: here is a context diff that makes my proposed changes. also, after the diff is a simple kld module that I used for doing basic testing of the APIs (seems to work). *** vm_page.h_47 Thu Jul 24 13:43:16 2003 --- vm_page.h Thu Jul 24 17:03:33 2003 *************** *** 393,398 **** --- 393,402 ---- #define VM_ALLOC_ZERO 3 #define VM_ALLOC_RETRY 0x80 + int vm_contig_pg_alloc(u_long, u_long, u_long, u_long, u_long); + vm_offset_t vm_contig_pg_kmapin(int, u_long, vm_map_t); + void vm_contig_pg_free(int, u_long); + void vm_page_unhold(vm_page_t mem); void vm_page_activate (vm_page_t); *** vm_page.c_47 Thu Jul 24 13:33:20 2003 --- vm_page.c Thu Jul 24 18:26:06 2003 *************** *** 1774,1815 **** } /* ! * This interface is for merging with malloc() someday. ! * Even if we never implement compaction so that contiguous allocation ! * works after initialization time, malloc()'s data structures are good ! * for statistics and for allocations of less than a page. */ ! void * ! contigmalloc1( ! unsigned long size, /* should be size_t here and for malloc() */ ! struct malloc_type *type, ! int flags, ! unsigned long low, ! unsigned long high, ! unsigned long alignment, ! unsigned long boundary, ! vm_map_t map) ! { ! int i, s, start; ! vm_offset_t addr, phys, tmp_addr; ! int pass; vm_page_t pga = vm_page_array; size = round_page(size); if (size == 0) ! panic("contigmalloc1: size must not be 0"); if ((alignment & (alignment - 1)) != 0) ! panic("contigmalloc1: alignment must be a power of 2"); if ((boundary & (boundary - 1)) != 0) ! panic("contigmalloc1: boundary must be a power of 2"); start = 0; for (pass = 0; pass <= 1; pass++) { s = splvm(); again: /* ! * Find first page in array that is free, within range, aligned, and ! * such that the boundary won't be crossed. */ for (i = start; i < cnt.v_page_count; i++) { int pqtype; --- 1774,1806 ---- } /* ! * vm_contig_pg_alloc: allocate a set of physically contig pages in a ! * given range. we return the index (in the vm_page_array[]) of the ! * first page allocated, or return -1 on error. */ ! int ! vm_contig_pg_alloc(u_long size, u_long low, u_long high, u_long alignment, ! u_long boundary) { ! ! int i, s, start, pass; ! vm_offset_t phys; vm_page_t pga = vm_page_array; size = round_page(size); if (size == 0) ! panic("vm_contig_pg_alloc: size must not be 0"); if ((alignment & (alignment - 1)) != 0) ! panic("vm_contig_pg_alloc: alignment must be a power of 2"); if ((boundary & (boundary - 1)) != 0) ! panic("vm_contig_pg_alloc: boundary must be a power of 2"); start = 0; for (pass = 0; pass <= 1; pass++) { s = splvm(); again: /* ! * Find first page in array that is free, within range, ! * aligned, and such that the boundary won't be crossed. */ for (i = start; i < cnt.v_page_count; i++) { int pqtype; *************** *** 1835,1841 **** m = next) { KASSERT(m->queue == PQ_INACTIVE, ! ("contigmalloc1: page %p is not PQ_INACTIVE", m)); next = TAILQ_NEXT(m, pageq); if (vm_page_sleep_busy(m, TRUE, "vpctw0")) --- 1826,1832 ---- m = next) { KASSERT(m->queue == PQ_INACTIVE, ! ("vm_contig_pg_alloc: page %p is not PQ_INACTIVE", m)); next = TAILQ_NEXT(m, pageq); if (vm_page_sleep_busy(m, TRUE, "vpctw0")) *************** *** 1862,1868 **** m = next) { KASSERT(m->queue == PQ_ACTIVE, ! ("contigmalloc1: page %p is not PQ_ACTIVE", m)); next = TAILQ_NEXT(m, pageq); if (vm_page_sleep_busy(m, TRUE, "vpctw1")) --- 1853,1859 ---- m = next) { KASSERT(m->queue == PQ_ACTIVE, ! ("vm_contig_pg_alloc: page %p is not PQ_ACTIVE", m)); next = TAILQ_NEXT(m, pageq); if (vm_page_sleep_busy(m, TRUE, "vpctw1")) *************** *** 1885,1891 **** } splx(s); ! continue; } start = i; --- 1876,1882 ---- } splx(s); ! continue; /* next pass */ } start = i; *************** *** 1917,1963 **** if (m->flags & PG_ZERO) vm_page_zero_count--; m->flags = 0; ! KASSERT(m->dirty == 0, ("contigmalloc1: page %p was dirty", m)); m->wire_count = 0; m->busy = 0; m->object = NULL; } /* ! * We've found a contiguous chunk that meets are requirements. ! * Allocate kernel VM, unfree and assign the physical pages to it and ! * return kernel VM pointer. */ ! vm_map_lock(map); ! if (vm_map_findspace(map, vm_map_min(map), size, &addr) != ! KERN_SUCCESS) { ! /* ! * XXX We almost never run out of kernel virtual ! * space, so we don't make the allocated memory ! * above available. ! */ ! vm_map_unlock(map); ! splx(s); ! return (NULL); ! } ! vm_object_reference(kernel_object); ! vm_map_insert(map, kernel_object, addr - VM_MIN_KERNEL_ADDRESS, ! addr, addr + size, VM_PROT_ALL, VM_PROT_ALL, 0); ! vm_map_unlock(map); ! tmp_addr = addr; ! for (i = start; i < (start + size / PAGE_SIZE); i++) { ! vm_page_t m = &pga[i]; ! vm_page_insert(m, kernel_object, ! OFF_TO_IDX(tmp_addr - VM_MIN_KERNEL_ADDRESS)); ! tmp_addr += PAGE_SIZE; ! } ! vm_map_pageable(map, addr, addr + size, FALSE); splx(s); ! return ((void *)addr); } ! return NULL; } void * --- 1908,2041 ---- if (m->flags & PG_ZERO) vm_page_zero_count--; m->flags = 0; ! KASSERT(m->dirty == 0, ("vm_contig_pg_alloc: page %p was dirty", m)); m->wire_count = 0; m->busy = 0; m->object = NULL; } /* ! * success! */ ! splx(s); ! return(start); ! } /* end of pass loop */ ! ! /* ! * failed... ! */ ! splx(s); ! return(-1); ! } ! ! /* ! * vm_contig_pg_free: undo a vm_contig_pg_alloc. we assume that all ! * references to the pages have been removed and that it is OK to add ! * them back to the free list. ! */ ! void ! vm_contig_pg_free(int start, u_long size) { ! ! vm_page_t pga = vm_page_array; ! int i; ! ! size = round_page(size); ! if (size == 0) ! panic("vm_contig_pg_free: size must not be 0"); ! ! for (i = start; i < (start + size / PAGE_SIZE); i++) { ! vm_page_free(&pga[i]); ! } ! } ! ! ! /* ! * vm_contig_pg_kmapin: map a previously allocated set of contig pages ! * from the vm_page_array[] into the kernel address space. once mapped, ! * the pages become part of the kernel object and should be freed with ! * kmem_free(kernel_map, address, size). ! */ ! vm_offset_t ! vm_contig_pg_kmapin(int start, u_long size, vm_map_t map) { ! ! int i, s; ! vm_offset_t addr, tmp_addr; ! vm_page_t pga = vm_page_array; ! ! size = round_page(size); ! if (size == 0) ! panic("vm_contig_pg_kmapin: size must not be 0"); + s = splvm(); /* XXX: is this really needed? */ + /* + * We've found a contiguous chunk that meets are requirements. + * Allocate kernel VM, unfree and assign the physical pages to it and + * return kernel VM pointer. + */ + vm_map_lock(map); + if (vm_map_findspace(map, vm_map_min(map), size, &addr) != + KERN_SUCCESS) { + vm_map_unlock(map); splx(s); ! return (0); ! } ! vm_object_reference(kernel_object); ! vm_map_insert(map, kernel_object, addr - VM_MIN_KERNEL_ADDRESS, ! addr, addr + size, VM_PROT_ALL, VM_PROT_ALL, 0); ! vm_map_unlock(map); ! ! tmp_addr = addr; ! for (i = start; i < (start + size / PAGE_SIZE); i++) { ! vm_page_t m = &pga[i]; ! vm_page_insert(m, kernel_object, ! OFF_TO_IDX(tmp_addr - VM_MIN_KERNEL_ADDRESS)); ! tmp_addr += PAGE_SIZE; } ! vm_map_pageable(map, addr, addr + size, FALSE); ! ! splx(s); ! return (addr); ! } ! ! /* ! * This interface is for merging with malloc() someday. ! * Even if we never implement compaction so that contiguous allocation ! * works after initialization time, malloc()'s data structures are good ! * for statistics and for allocations of less than a page. ! */ ! void * ! contigmalloc1( ! unsigned long size, /* should be size_t here and for malloc() */ ! struct malloc_type *type, ! int flags, ! unsigned long low, ! unsigned long high, ! unsigned long alignment, ! unsigned long boundary, ! vm_map_t map) ! { ! int index; ! void *rv; ! ! size = round_page(size); ! if (size == 0) ! panic("contigmalloc1: size must not be 0"); ! if ((alignment & (alignment - 1)) != 0) ! panic("contigmalloc1: alignment must be a power of 2"); ! if ((boundary & (boundary - 1)) != 0) ! panic("contigmalloc1: boundary must be a power of 2"); ! ! index = vm_contig_pg_alloc(size, low, high, alignment, boundary); ! if (index < 0) ! return(NULL); ! ! rv = (void *) vm_contig_pg_kmapin(index, size, map); ! if (!rv) { ! vm_contig_pg_free(index, size); ! } ! ! return(rv); } void * # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # Makefile # vm_contig_test.c # echo x - Makefile sed 's/^X//' >Makefile << 'END-of-Makefile' X# $FreeBSD$ X XKMOD = vm_contig_test XSRCS = vm_contig_test.c X X.include END-of-Makefile echo x - vm_contig_test.c sed 's/^X//' >vm_contig_test.c << 'END-of-vm_contig_test.c' X/* $FreeBSD$ */ X X/* X * vm_contig_test.c test vm_contig page allocation functions X * 30-Jul-2003 chuck@research.att.com X */ X X#include X#include X#include X#include X#include X X#include X#include X#include X X/* X * module glue, as per module(9) X */ Xstatic int vmct_handler(module_t mod, int what, void *arg); Xstatic void doit(void); X Xstatic moduledata_t mod_data = { X "vm_contig_test", /* name */ X vmct_handler, /* handler */ X 0, /* private */ X}; X XMODULE_VERSION(vm_contig_test, 1); X XDECLARE_MODULE(vm_contig_test, mod_data, SI_SUB_EXEC, SI_ORDER_ANY); X X/* X * vmct_handler: module function to perform some testing of the X * vm_contig page allocation API. X */ X Xstatic int vmct_handler(module_t mod, int what, void *arg) { X X int err = 0; X X switch (what) { X case MOD_LOAD: X uprintf("vmct_handler: loading contig test module\n"); X doit(); X uprintf("vmct_handler: test done! now kldunload me.\n"); X break; X case MOD_UNLOAD: X uprintf("vmct_handler: unloading contig test module\n"); X break; X default: X uprintf("unknown contig test module command (%d)\n", what); X break; X X } X return(err); X} X X/* X * doit: do the tests X */ X Xvoid doit() { X int ntp = 8; /* number of test pages */ X int psz = PAGE_SIZE; /* page size */ X int n, span, idx, i; X char *b1, *p; X vm_page_t pga = vm_page_array; X X uprintf("doit: testing VM contig API... PAGE_SIZE=%d\n", psz); X X b1 = contigmalloc(psz * ntp, M_DEVBUF, M_NOWAIT, 0, 0xffffffff, psz, 0); X uprintf("contigmalloc %d pages: %p\n", ntp, b1); X X if (b1) { X for (p = b1, n = 0 ; p < b1 + (psz * ntp) ; p += psz, n++) { X if (p == b1) { X uprintf("first page: va=%p, pa=%x\n", X p, vtophys(p)); X } else { X span = vtophys(p) - vtophys(p - psz); X uprintf("page %d: span=%d %s\n", n, span, X (span == psz) ? "OK" : "BAD!!!!"); X } X } X contigfree(b1, psz * ntp, M_DEVBUF); X uprintf("freed the pages\n"); X } X X idx = vm_contig_pg_alloc(psz * ntp, 0, 0xffffffff, psz, 0); X if (idx < 0) { X uprintf("vm_contig_pg_alloc: API failed %d\n", idx); X } else { X for (i = idx, n = 0 ; i < idx + ntp ; i++, n++) { X if (n == 0) { X uprintf("first page: pa=%x\n", X pga[i].phys_addr); X } else { X span = pga[i].phys_addr - pga[i-1].phys_addr; X uprintf("page %d: span=%d %s\n", n, span, X (span == psz) ? "OK" : "BAD!!!!"); X } X } X uprintf("freeing the pages\n"); X vm_contig_pg_free(idx, psz * ntp); X } X} END-of-vm_contig_test.c exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 30 19:30:14 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 744C837B401 for ; Wed, 30 Jul 2003 19:30:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05D3743FAF for ; Wed, 30 Jul 2003 19:30:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6V2UDUp058326 for ; Wed, 30 Jul 2003 19:30:13 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6V2UDmW058324; Wed, 30 Jul 2003 19:30:13 -0700 (PDT) Date: Wed, 30 Jul 2003 19:30:13 -0700 (PDT) Message-Id: <200307310230.h6V2UDmW058324@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: David Thiel Subject: Re: kern/54737: QUIRK: Jungsoft Nexdisk USB key X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: David Thiel List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jul 2003 02:30:14 -0000 The following reply was made to PR kern/54737; it has been noted by GNATS. From: David Thiel To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/54737: QUIRK: Jungsoft Nexdisk USB key Date: Wed, 30 Jul 2003 19:23:47 -0700 Note: The recent umass commits and de-quirking do not fix this issue. From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 30 20:20:15 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5880137B404 for ; Wed, 30 Jul 2003 20:20:15 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8434343FB1 for ; Wed, 30 Jul 2003 20:20:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6V3KDUp064088 for ; Wed, 30 Jul 2003 20:20:13 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6V3KDCf064087; Wed, 30 Jul 2003 20:20:13 -0700 (PDT) Resent-Date: Wed, 30 Jul 2003 20:20:13 -0700 (PDT) Resent-Message-Id: <200307310320.h6V3KDCf064087@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, micko Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7953A37B401 for ; Wed, 30 Jul 2003 20:18:38 -0700 (PDT) Received: from micko.boca.verio.net (n00.bcrtfl01.us.wh.nameservers.net [208.55.254.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C57043F3F for ; Wed, 30 Jul 2003 20:18:37 -0700 (PDT) (envelope-from micko@micko.boca.verio.net) Received: from micko.boca.verio.net (localhost.boca.verio.net [127.0.0.1]) by micko.boca.verio.net (8.12.9/8.12.8) with ESMTP id h6V3H40f030845 for ; Wed, 30 Jul 2003 23:17:04 -0400 (EDT) (envelope-from micko@micko.boca.verio.net) Received: (from micko@localhost) by micko.boca.verio.net (8.12.9/8.12.8/Submit) id h6V3H4dd030844; Wed, 30 Jul 2003 23:17:04 -0400 (EDT) Message-Id: <200307310317.h6V3H4dd030844@micko.boca.verio.net> Date: Wed, 30 Jul 2003 23:17:04 -0400 (EDT) From: micko To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/55089: [patch] add aditional codec id for YMF753 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: micko List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jul 2003 03:20:15 -0000 >Number: 55089 >Category: kern >Synopsis: [patch] add aditional codec id for YMF753 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jul 30 20:20:13 PDT 2003 >Closed-Date: >Last-Modified: >Originator: micko >Release: FreeBSD 4.8-STABLE i386 >Organization: >Environment: System: FreeBSD micko.boca.verio.net 4.8-STABLE FreeBSD 4.8-STABLE #2: Wed Jun 4 21:45:39 GMT 2003 micko@mobilepunk.boca.verio.net:/usr/src/sys/compile/KILLER i386 >Description: Patch to add an additional codec id (0x594d4803) which is YMF753 to src/sys/dev/sound/pcm/ac97.c >How-To-Repeat: Before: pcm0: (id=0x594d4803) After: pcm0: >Fix: *** ac97.c.orig Wed Jul 30 23:10:48 2003 --- ac97.c Wed Jul 30 23:14:55 2003 *************** *** 128,133 **** --- 128,134 ---- { 0x574d4c00, 0, "Wolfson WM9701A", 0 }, { 0x574d4c03, 0, "Wolfson WM9703/9704", 0 }, { 0x574d4c04, 0, "Wolfson WM9704 (quad)", 0 }, + { 0x594d4803, 0, "YMF753", 0 }, { 0, 0, NULL, 0 } }; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 30 22:00:28 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6548C37B404 for ; Wed, 30 Jul 2003 22:00:28 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A2FB43F75 for ; Wed, 30 Jul 2003 22:00:27 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6V50RUp072398 for ; Wed, 30 Jul 2003 22:00:27 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6V50Rk0072397; Wed, 30 Jul 2003 22:00:27 -0700 (PDT) Resent-Date: Wed, 30 Jul 2003 22:00:27 -0700 (PDT) Resent-Message-Id: <200307310500.h6V50Rk0072397@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Brent Casavant Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7279937B401 for ; Wed, 30 Jul 2003 21:56:40 -0700 (PDT) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97C4A43FB1 for ; Wed, 30 Jul 2003 21:56:37 -0700 (PDT) (envelope-from bcasavan@angeltread.org) Received: from abigail.msp.angeltread.org (c-24-245-17-149.mn.client2.attbi.com[24.245.17.149](untrusted sender)) by comcast.net (rwcrmhc12) with ESMTP id <2003073104562701400cl64ge>; Thu, 31 Jul 2003 04:56:27 +0000 Received: by abigail.msp.angeltread.org (Postfix, from userid 49841) id C441510; Wed, 30 Jul 2003 23:56:26 -0500 (CDT) Message-Id: <20030731045626.C441510@abigail.msp.angeltread.org> Date: Wed, 30 Jul 2003 23:56:26 -0500 (CDT) From: Brent Casavant To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/55092: [PATCH] New Intel ichsmb controller added X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Brent Casavant List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jul 2003 05:00:28 -0000 >Number: 55092 >Category: kern >Synopsis: [PATCH] New Intel ichsmb controller added >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 Jul 30 22:00:26 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Brent Casavant >Release: FreeBSD 5.1-RELEASE i386 >Organization: Angeltread Software Organization >Environment: System: FreeBSD abigail.msp.angeltread.org 5.1-RELEASE FreeBSD 5.1-RELEASE #7: Wed Jul 30 23:33:08 CDT 2003 bcasavan@abigail.msp.angeltread.org:/usr/home/bcasavan/Workarea/ac97/sys/i386/compile/abigail i386 P4 2.4GHz, Gigabyte GA-8IK1100 motherboard. FreeBSD 5.1-RELEASE, with local modifications to enable hardware not yet supported by -RELEASE (and maybe not even -CURRENT). >Description: The SMBus controller on this particular motherboard is not yet recognized by the FreeBSD kernel and drivers. The following is a patch to enable its recognition. It has not been tested, other than booting the kernel and seeing that it is recognized. I have no idea what sort of interesting things one can do with the SMBus, thus the lack of testing. With my local modifications, the pciconf output is as follows: --- cut here --- ichsmb0@pci0:31:3: class=0x0c0500 card=0x24d21458 chip=0x24d38086 rev=0x02 hdr=0x00 vendor = 'Intel Corporation' class = serial bus subclass = SMBus --- cut here --- And the dmesg output is: --- cut here --- ichsmb0: port 0x1400-0x141f irq 11 at device 31.3 on pci0 --- cut here --- I'm not sure I named this thing correctly (Intel 82801DD in particular), but this is an Intel ICH5R controller, and "82801DD" was the next sequential controller name after those already in the code. I don't know what documentation would give me the official name, hopefully the maintainer knows where to look. >How-To-Repeat: Boot a FreeBSD kernel on the Gigabyte GA-8IK1100 motherboard. >Fix: The following patch enables the existing ichsmb driver to recognize the controller: --- cut here --- cvs diff -u sys/dev/ichsmb/ichsmb_pci.c Index: sys/dev/ichsmb/ichsmb_pci.c =================================================================== RCS file: /usr/FreeBSDCVS/src/sys/dev/ichsmb/ichsmb_pci.c,v retrieving revision 1.6 diff -u -r1.6 ichsmb_pci.c --- sys/dev/ichsmb/ichsmb_pci.c 18 Oct 2002 12:06:01 -0000 1.6 +++ sys/dev/ichsmb/ichsmb_pci.c 31 Jul 2003 04:28:16 -0000 @@ -71,6 +71,7 @@ #define ID_82801BA 0x24438086 #define ID_82801CA 0x24838086 #define ID_82801DC 0x24C38086 +#define ID_82801DD 0x24D38086 #define PCIS_SERIALBUS_SMBUS_PROGIF 0x00 @@ -131,6 +132,9 @@ break; case ID_82801DC: device_set_desc(dev, "Intel 82801DC (ICH4) SMBus controller"); + break; + case ID_82801DD: + device_set_desc(dev, "Intel 82801DD (ICH5) SMBus controller"); break; default: if (pci_get_class(dev) == PCIC_SERIALBUS --- cut here --- I hope this proves useful. Thanks, Brent Casavant >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 30 22:20:15 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7909637B401 for ; Wed, 30 Jul 2003 22:20:15 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81DB843FA3 for ; Wed, 30 Jul 2003 22:20:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6V5KEUp076886 for ; Wed, 30 Jul 2003 22:20:14 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6V5KEAk076885; Wed, 30 Jul 2003 22:20:14 -0700 (PDT) Resent-Date: Wed, 30 Jul 2003 22:20:14 -0700 (PDT) Resent-Message-Id: <200307310520.h6V5KEAk076885@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Brent Casavant Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E2BB37B401 for ; Wed, 30 Jul 2003 22:14:23 -0700 (PDT) Received: from sccrmhc12.comcast.net (sccrmhc12.comcast.net [204.127.202.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id C92F143FA3 for ; Wed, 30 Jul 2003 22:14:22 -0700 (PDT) (envelope-from bcasavan@angeltread.org) Received: from abigail.msp.angeltread.org (c-24-245-17-149.mn.client2.attbi.com[24.245.17.149](untrusted sender)) by comcast.net (sccrmhc12) with ESMTP id <2003073105142101200k2ft0e>; Thu, 31 Jul 2003 05:14:21 +0000 Received: by abigail.msp.angeltread.org (Postfix, from userid 49841) id CF92710; Thu, 31 Jul 2003 00:14:20 -0500 (CDT) Message-Id: <20030731051420.CF92710@abigail.msp.angeltread.org> Date: Thu, 31 Jul 2003 00:14:20 -0500 (CDT) From: Brent Casavant To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/55094: Intel USB 2.0 unrecognized (partial patch provided) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Brent Casavant List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jul 2003 05:20:15 -0000 >Number: 55094 >Category: kern >Synopsis: Intel USB 2.0 unrecognized (partial patch provided) >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 Jul 30 22:20:13 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Brent Casavant >Release: FreeBSD 5.1-RELEASE i386 >Organization: Angeltread Software Organization >Environment: System: FreeBSD abigail.msp.angeltread.org 5.1-RELEASE FreeBSD 5.1-RELEASE #7: Wed Jul 30 23:33:08 CDT 2003 bcasavan@abigail.msp.angeltread.org:/usr/home/bcasavan/Workarea/ac97/sys/i386/compile/abigail i386 Intel P4 2.4GHz on a Gigabyte GA-8IK1100 motherboard. FreeBSD 5.1-RELEASE with local modifications to enable various hardware not currently supported by -RELEASE (and maybe even by -CURRENT). >Description: One of the USB controllers on the Gigabyte GA-8IK1100 motherboard is not recognized and a driver fails to attach. This motherboard uses an Intel ICH5R I/O controller. The pciconf line for this device is: --- cut here --- none0@pci0:29:7: class=0x0c0320 card=0x50061458 chip=0x24dd8086 rev=0x02 hdr=0x00 vendor = 'Intel Corporation' class = serial bus subclass = USB --- cut here --- The BIOS identifies this device as a USB 2.0 controller. With the modifications from the patch below, the following dmesg output occurs: --- cut here --- uhci4: mem 0xf7000000-0xf70003ff irq 10 at device 29.7 on pci0 uhci4: failed to enable port mapping! uhci4: Could not map ports device_probe_and_attach: uhci4 attach returned 6 --- cut here --- Note that I named the controller "USB-E" as it was the next sequentially available description. I'm not sure if this was proper or not, but is sufficed for the moment. For reference, here's the USB section of dmesg for all the succesfully attached USB controllers: --- cut here --- uhci0: port 0xbc00-0xbc1f irq 2 at device 29.0 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 uhci1: port 0xb000-0xb01f irq 5 at device 29.1 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0xb400-0xb41f irq 9 at device 29.2 on pci0 usb2: on uhci2 usb2: USB revision 1.0 uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered uhci3: port 0xb800-0xb81f irq 2 at device 29.3 on pci0 usb3: on uhci3 usb3: USB revision 1.0 uhub3: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub3: 2 ports with 2 removable, self powered --- cut here --- The only interesting thing I can see with regard to these that is not present for the failing case is that the successful ones have a port assignment, whereas the failing one has a memory assignment. >How-To-Repeat: Boot a Gigabyte GA-8IK1100 motherboard on FreeBSD 5.1-RELEASE with the following patch applied. >Fix: This is a partial patch to enable support for this device. I'm not sure where to go from here to make this work, so hopefully one of the maintainers will be able to take a look at it. I'm more than willing to run test code. --- cut here --- % cvs diff -u sys/dev/usb/uhci_pci.c Index: sys/dev/usb/uhci_pci.c =================================================================== RCS file: /usr/FreeBSDCVS/src/sys/dev/usb/uhci_pci.c,v retrieving revision 1.46 diff -u -r1.46 uhci_pci.c --- sys/dev/usb/uhci_pci.c 6 May 2003 19:30:41 -0000 1.46 +++ sys/dev/usb/uhci_pci.c 31 Jul 2003 03:39:40 -0000 @@ -126,6 +126,9 @@ #define PCI_UHCI_DEVICEID_ICH5_D 0x24de8086 static const char *uhci_device_ich5_d = "Intel 82801EB (ICH5) USB controller USB-D"; +#define PCI_UHCI_DEVICEID_ICH5_E 0x24dd8086 +static const char *uhci_device_ich5_e = "Intel 82801EB (ICH5) USB controller USB-E"; + #define PCI_UHCI_DEVICEID_440MX 0x719a8086 static const char *uhci_device_440mx = "Intel 82443MX USB controller"; @@ -208,6 +211,8 @@ return (uhci_device_ich5_c); } else if (device_id == PCI_UHCI_DEVICEID_ICH5_D) { return (uhci_device_ich5_d); + } else if (device_id == PCI_UHCI_DEVICEID_ICH5_E) { + return (uhci_device_ich5_e); } else if (device_id == PCI_UHCI_DEVICEID_440MX) { return (uhci_device_440mx); } else if (device_id == PCI_UHCI_DEVICEID_460GX) { --- cut here --- Thanks for your time and effort. Brent Casavant >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 30 23:20:14 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB04937B414 for ; Wed, 30 Jul 2003 23:20:13 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D262C43FD7 for ; Wed, 30 Jul 2003 23:20:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6V6KBUp082958 for ; Wed, 30 Jul 2003 23:20:11 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6V6KB9H082957; Wed, 30 Jul 2003 23:20:11 -0700 (PDT) Date: Wed, 30 Jul 2003 23:20:11 -0700 (PDT) Message-Id: <200307310620.h6V6KB9H082957@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: David Schultz Subject: Re: bin/54878: incorrect divisor in /usr/bin/jot -r X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: David Schultz List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jul 2003 06:20:14 -0000 The following reply was made to PR bin/54878; it has been noted by GNATS. From: David Schultz To: David Brinegar Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/54878: incorrect divisor in /usr/bin/jot -r Date: Wed, 30 Jul 2003 23:15:43 -0700 On Sat, Jul 26, 2003, David Brinegar wrote: > For example one would expect something like the following: > > > jot -w %d -r 1000 1 4 | sort -n | uniq -c > 333 1 > 333 2 > 334 3 > > Internally, jot is assigning *y to 1,2,3, and very rarely 4: > > [1.0,2.0) => 1 > [2.0,3.0) => 2 > [3.0,4.0) => 3 > 4.0 => 4 [...] > src/usr.bin/jot/jot.c revision 1.24, line 278: > > *y = arc4random() / (double)UINT32_MAX; > > should be: > > *y = arc4random() / (1.0 + (double)UINT32_MAX); Actually, to be compatible with the non-random behavior, and to make the random letter example in the manpage actually work, jot needs to treat integers and floating point numbers differently. In particular, 'jot -w %d -r 1000 1 4' needs to give integers uniformly distrubited over [1,4], whereas 'jot -w %f -r 1000 1 4' needs to give floating point numbers uniformly distributed over the same range. As you rightly point out, the integer distribution is skewed if you take a number over the floating point distribution and round down. On a related note, jot should be retrofitted to use fmtcheck(3) anyway... From owner-freebsd-bugs@FreeBSD.ORG Wed Jul 30 23:40:14 2003 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01FED37B404 for ; Wed, 30 Jul 2003 23:40:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1AD543F75 for ; Wed, 30 Jul 2003 23:40:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h6V6eCUp083990 for ; Wed, 30 Jul 2003 23:40:12 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h6V6eChp083989; Wed, 30 Jul 2003 23:40:12 -0700 (PDT) Resent-Date: Wed, 30 Jul 2003 23:40:12 -0700 (PDT) Resent-Message-Id: <200307310640.h6V6eChp083989@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, async@ript.net Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD3EF37B401 for ; Wed, 30 Jul 2003 23:33:57 -0700 (PDT) Received: from pants.ript.net (ript.net [216.194.67.93]) by mx1.FreeBSD.org (Postfix) with SMTP id 421F143FB1 for ; Wed, 30 Jul 2003 23:33:57 -0700 (PDT) (envelope-from async@pants.ript.net) Received: (qmail 81751 invoked by uid 1022); 31 Jul 2003 06:44:36 -0000 Message-Id: <20030731064436.81750.qmail@pants.ript.net> Date: 31 Jul 2003 06:44:36 -0000 From: async@ript.net To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/55097: BUSLink BusDrive Support (umass) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: async@ript.net List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jul 2003 06:40:14 -0000 >Number: 55097 >Category: kern >Synopsis: BUSLink BusDrive Support (umass) >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 Jul 30 23:40:12 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Michael Hoisie >Release: FreeBSD 5.1-CURRENT-20030628-JPSNAP >Organization: >Environment: System: FreeBSD 5.1-CURRENT-20030628-JPSNAP #8: Mon Jul 28 21:15:36 MDT 2003 root@localhost:/usr/obj/usr/src/sys/TRACKSTAR >Description: The BUSlink BusDrive (pen usb drive) is unsupported in FreeBSD. >How-To-Repeat: Plus in any model BusDrive into the USB port and you will be faced with an endless stream of CAM errors. Try and mount it with mount_msdos and you get more errors. >Fix: add the following to /usr/src/sys/cam/scsi/scsi_da.c (in the quirks entry): Note, this patch does NOT work in 4.8-stable. The BusDrive crashes 4.8-stable. This matter will be further investigated. { /* * Buslink Dusdrive */ {T_DIRECT, SIP_MEDIA_REMOVABLE, "BusDrive", "*", "*"}, /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE }, --- dmesg.txt begins here --- Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.1-CURRENT-20030628-JPSNAP #8: Mon Jul 28 21:15:36 MDT 2003 root@localhost:/usr/obj/usr/src/sys/TRACKSTAR Preloaded elf kernel "/boot/kernel/kernel" at 0xc0460000. Preloaded elf module "/boot/kernel/linux.ko" at 0xc04601f4. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc04602a0. Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 696972514 Hz CPU: Intel Pentium III (696.97-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383f9ff real memory = 536805376 (511 MB) avail memory = 516591616 (492 MB) Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard pcibios: BIOS version 2.10 Using $PIR table, 7 entries at 0xc00fdf50 Timecounter "ACPI-safe" frequency 3579545 Hz acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 acpi_cpu0: on acpi0 acpi_tz0: on acpi0 acpi_lid0: on acpi0 acpi_cmbat0: on acpi0 acpi_cmbat1: on acpi0 acpi_acad0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib0: slot 7 INTD is routed to irq 5 pcib0: slot 8 INTA is routed to irq 5 pcib0: slot 16 INTA is routed to irq 5 agp0: mem 0xe0000000-0xe3ffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pcib1: slot 0 INTA is routed to irq 11 pci1: at device 0.0 (no driver attached) cbb0: mem 0x88000000-0x88000fff at device 4.0 on pci0 cardbus0: on cbb0 pccard0: <16-bit PCCard bus> on cbb0 pcib0: slot 4 INTA is routed to irq 11 cbb1: mem 0x88001000-0x88001fff at device 4.1 on pci0 cardbus1: on cbb1 pccard1: <16-bit PCCard bus> on cbb1 pcib0: slot 4 INTA is routed to irq 11 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0x1050-0x105f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0x1060-0x107f irq 5 at device 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 uhub1: BUSlink Inc. USB Hub, class 9/0, rev 1.10/0.01, addr 2 uhub1: 2 ports with 0 removable, self powered umass0: BUSlink Inc. USB Mass Storage, rev 1.10/0.01, addr 3 pci0: at device 7.3 (no driver attached) pci0: at device 8.0 (no driver attached) pci0: at device 16.0 (no driver attached) acpi_button0: on acpi0 acpi_button1: on acpi0 acpi_ec0: port 0x66,0x62 on acpi0 atkbdc0: port 0x64,0x60 irq 1 on acpi0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 fdc0: port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ppc0 port 0x778-0x77f,0x378-0x37f irq 7 drq 3 on acpi0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/7 bytes threshold ppbus0: on ppc0 lpt0: on ppbus0 lpt0: Interrupt-driven port sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A orm0: