From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 09:10:13 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 2913C16A41F for ; Sun, 14 Aug 2005 09:10:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61F6243D48 for ; Sun, 14 Aug 2005 09:10:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7E9ACuZ018927 for ; Sun, 14 Aug 2005 09:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7E9ACXi018926; Sun, 14 Aug 2005 09:10:12 GMT (envelope-from gnats) Resent-Date: Sun, 14 Aug 2005 09:10:12 GMT Resent-Message-Id: <200508140910.j7E9ACXi018926@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, Ade Lovett Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D25016A41F for ; Sun, 14 Aug 2005 09:06:38 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E945843D46 for ; Sun, 14 Aug 2005 09:06:37 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from freefall.freebsd.org (ade@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7E96bvq018882 for ; Sun, 14 Aug 2005 09:06:37 GMT (envelope-from ade@freefall.freebsd.org) Received: (from ade@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7E96bPI018881; Sun, 14 Aug 2005 09:06:37 GMT (envelope-from ade) Message-Id: <200508140906.j7E96bPI018881@freefall.freebsd.org> Date: Sun, 14 Aug 2005 09:06:37 GMT From: Ade Lovett To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/84903: Incorrect initialization of nswbuf X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ade Lovett List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 09:10:13 -0000 >Number: 84903 >Category: kern >Synopsis: Incorrect initialization of nswbuf >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 14 09:10:11 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Ade Lovett >Release: All FreeBSD > 5.0 >Organization: Supernews >Environment: Any FreeBSD system (RELENG_5, RELENG_6, and HEAD) after revision 1.132 of sys/vm/vnode_pager.c (4 years, 1 month ago) >Description: Whilst attempting to nail down some serious performance issues (compared with 4.x) in preparation for a 6.x rollout here, we've come across something of a fundamental bug. In this particular environment (a Usenet transit server, so very high network and disk I/O) we observed that processes were spending a considerable amount of time in state 'wswbuf', traced back to getpbuf() in vm/vm_pager.c To cut a long story short, the order in which nswbuf is being initialized is completely, totally, and utterly wrong -- this was introduced by revision 1.132 of vm/vnode_pager.c just over 4 years ago. In vnode_pager.c we find: static void vnode_pager_init(void) { vnode_pbuf_freecnt = nswbuf / 2 + 1; } Unfortunately, nswbuf hasn't been assigned to yet, just happens to be zero (in all cases), and thus the kernel believes that there is only ever *one* swap buffer available. kern_vfs_bio_buffer_alloc() in kern/vfs_bio.c which actually does the calculation and assignment, is called rather further on in the process, by which time the damage has been done. The net result is that *any* calls involving getpbuf() will be unconditionally serialized, completely destroying any kind of concurrency (and performance). Given the memory footprint of our machines, we've hacked in a simple: nswbuf = 0x100; into vnode_pager_init(), since the calculation ends up giving us the maximum number anyway. There are a number of possible 'correct' fixes in terms of re-ordering the startup sequence. With the aforementioned hack, we're now seeing considerably better machine operation, certainly as good as similar 4.10-STABLE boxes. As per $SUBJECT, this affects all of RELENG_5, RELENG_6, and HEAD, and should, IMO, be considered an absolutely required fix for 6.0-RELEASE. >How-To-Repeat: N/A >Fix: We have implemented a local hack as above, given that the memory footprint of the machines would result in the maximal value of nswbuf being assigned in any case. This is not a real fix however. A solution has been offered by Alexander Kabaev as follows, which appears to do the right thing, at least on RELENG_6/i386, which is the only type of machine I have easy access to for testing purposes. In my opinion, it would be a fatal error to release 6.0 in any shape or form without addressing this issue. Index: vm_init.c =================================================================== RCS file: /home/ncvs/src/sys/vm/vm_init.c,v retrieving revision 1.46 diff -u -r1.46 vm_init.c --- vm_init.c 25 Apr 2005 19:22:05 -0000 1.46 +++ vm_init.c 9 Aug 2005 01:59:12 -0000 @@ -124,7 +124,7 @@ vm_map_startup(); kmem_init(virtual_avail, virtual_end); pmap_init(); - vm_pager_init(); + /* vm_pager_init(); */ } void Index: vm_pager.c =================================================================== RCS file: /home/ncvs/src/sys/vm/vm_pager.c,v retrieving revision 1.105 diff -u -r1.105 vm_pager.c --- vm_pager.c 18 May 2005 20:45:33 -0000 1.105 +++ vm_pager.c 9 Aug 2005 01:59:55 -0000 @@ -202,6 +202,8 @@ struct buf *bp; int i; + vm_pager_init(); + mtx_init(&pbuf_mtx, "pbuf mutex", NULL, MTX_DEF); bp = swbuf; /* >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 13 16:44:53 2005 Return-Path: X-Original-To: freebsd-bugs@freebsd.org 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 CC17616A41F for ; Sat, 13 Aug 2005 16:44:53 +0000 (GMT) (envelope-from kenneth.farrell@btopenworld.com) Received: from smtp807.mail.ukl.yahoo.com (smtp807.mail.ukl.yahoo.com [217.12.12.197]) by mx1.FreeBSD.org (Postfix) with SMTP id 00BDC43D49 for ; Sat, 13 Aug 2005 16:44:52 +0000 (GMT) (envelope-from kenneth.farrell@btopenworld.com) Received: (qmail 27071 invoked from network); 13 Aug 2005 16:44:51 -0000 Received: from unknown (HELO YOUR30859D53AA) (kenneth.farrell@81.131.163.215 with login) by smtp807.mail.ukl.yahoo.com with SMTP; 13 Aug 2005 16:44:50 -0000 Message-ID: <000601c5a026$521c1260$d7a38351@YOUR30859D53AA> From: "kenneth farrell" To: Date: Sat, 13 Aug 2005 17:44:46 +0100 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Mailman-Approved-At: Sun, 14 Aug 2005 11:28:54 +0000 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: kern/54836: Casio QV Digital Camera problems X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Aug 2005 16:44:53 -0000 Hi can you help humidity got in the camera, thought nothing wrong with it = untill printing pictures and smudge marks on the photos as if they are = fingure print on the lense but it is clean. Camera is a qv3500ex 3.3 = mega casio. thank you Jean From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 13:40:04 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 BDFF916A41F for ; Sun, 14 Aug 2005 13:40:04 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2338B43D48 for ; Sun, 14 Aug 2005 13:40:04 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7EDe4SN048095 for ; Sun, 14 Aug 2005 13:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7EDe337048093; Sun, 14 Aug 2005 13:40:03 GMT (envelope-from gnats) Resent-Date: Sun, 14 Aug 2005 13:40:03 GMT Resent-Message-Id: <200508141340.j7EDe337048093@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, Marcus Grando Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4F0116A41F for ; Sun, 14 Aug 2005 13:39:14 +0000 (GMT) (envelope-from marcus@marcus.grupos.com.br) Received: from mail.grupos.com.br (mail.grupos.com.br [200.203.183.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4566A43D45 for ; Sun, 14 Aug 2005 13:39:14 +0000 (GMT) (envelope-from marcus@marcus.grupos.com.br) Received: from corp.grupos.com.br (unknown [150.162.166.55]) by mail.grupos.com.br (Postfix) with ESMTP id 3810F11E20E for ; Sun, 14 Aug 2005 10:39:13 -0300 (BRT) Received: from marcus.grupos.com.br (unknown [150.162.166.51]) by corp.grupos.com.br (Postfix) with ESMTP id 10ACB55AF for ; Sun, 14 Aug 2005 10:39:13 -0300 (BRT) Received: from marcus.grupos.com.br (localhost [127.0.0.1]) by marcus.grupos.com.br (8.13.4/8.13.4) with ESMTP id j7EDdCt6020939 for ; Sun, 14 Aug 2005 10:39:12 -0300 (BRT) (envelope-from marcus@marcus.grupos.com.br) Received: (from root@localhost) by marcus.grupos.com.br (8.13.4/8.13.4/Submit) id j7EDdCdo020938; Sun, 14 Aug 2005 10:39:12 -0300 (BRT) (envelope-from marcus) Message-Id: <200508141339.j7EDdCdo020938@marcus.grupos.com.br> Date: Sun, 14 Aug 2005 10:39:12 -0300 (BRT) From: Marcus Grando To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/84908: filesystem full and reboot (crash) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcus Grando List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 13:40:04 -0000 >Number: 84908 >Category: kern >Synopsis: filesystem full and reboot (crash) >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Aug 14 13:40:03 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Marcus Grando >Release: FreeBSD 6.0-BETA2 i386 >Organization: Grupos Internet S/A >Environment: System: FreeBSD marcus.grupos.com.br 6.0-BETA2 FreeBSD 6.0-BETA2 #8: Fri Aug 12 19:43:58 BRT 2005 root@marcus.grupos.com.br:/usr/obj/usr/src/sys/MARCUS i386 >Description: I write a litte program. This program full /tmp filesystem after that, many messages about filesystem full and FreeBSD reboot directly, without debug console. I think that dd reproduce same thing. # uname -a FreeBSD marcus.grupos.com.br 6.0-BETA2 FreeBSD 6.0-BETA2 #8: Fri Aug 12 19:43:58 BRT 2005 root@marcus.grupos.com.br:/usr/obj/usr/src/sys/MARCUS i386 # cat /tmp/lixo.c #include int main() { int i; char *w = "abcdefghijklmnopqrstuvxz0123456789\n"; FILE *f; f = fopen("test", "wb"); for (i=0; i<100000000; i++) fwrite(w, 1, 35, f); fclose(f); exit(0); } /var/log/messages: Aug 12 19:47:06 marcus last message repeated 2 times Aug 12 19:47:06 marcus kernel: on : filesystem full Aug 12 19:47:06 marcus kernel: pid 703 (lixo), uid 0 inumber 14 on : filesystem full Aug 12 19:47:06 marcus last message repeated 574 times Aug 12 19:47:06 marcus kernel: on : filesystem full Aug 12 19:47:06 marcus kernel: pid 703 (lixo), uid 0 inumber 14 on : filesystem full Aug 12 19:47:06 marcus last message repeated 574 times Aug 12 19:47:06 marcus kernel: on : filesystem full Aug 12 19:47:06 marcus kernel: pid 703 (lixo), uid 0 inumber 14 on : filesystem full >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 15:40:29 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 33BB616A41F for ; Sun, 14 Aug 2005 15:40:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AD0043D79 for ; Sun, 14 Aug 2005 15:40:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7EFeI0r061640 for ; Sun, 14 Aug 2005 15:40:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7EFeITQ061636; Sun, 14 Aug 2005 15:40:18 GMT (envelope-from gnats) Resent-Date: Sun, 14 Aug 2005 15:40:18 GMT Resent-Message-Id: <200508141540.j7EFeITQ061636@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, Fredrik Lindberg Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE4A616A41F for ; Sun, 14 Aug 2005 15:39:21 +0000 (GMT) (envelope-from fli@biocandy.shapeshifter.se) Received: from mail.hamnpolare.net (manticore.shapeshifter.se [212.37.5.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C62143D46 for ; Sun, 14 Aug 2005 15:39:20 +0000 (GMT) (envelope-from fli@biocandy.shapeshifter.se) Received: from localhost (localhost [127.0.0.1]) by mail.hamnpolare.net (Postfix) with ESMTP id 41D5E1A793 for ; Sun, 14 Aug 2005 17:39:18 +0200 (CEST) Received: from mail.hamnpolare.net ([127.0.0.1]) by localhost (manticore.shapeshifter.se [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 33497-14 for ; Sun, 14 Aug 2005 17:39:17 +0200 (CEST) Received: from biocandy.shapeshifter.se (h4n2fls31o270.telia.com [217.208.199.4]) by mail.hamnpolare.net (Postfix) with ESMTP id 007F71A717 for ; Sun, 14 Aug 2005 17:39:16 +0200 (CEST) Received: by biocandy.shapeshifter.se (Postfix, from userid 1001) id BB8C8415E; Sun, 14 Aug 2005 17:39:15 +0200 (CEST) Message-Id: <20050814153915.BB8C8415E@biocandy.shapeshifter.se> Date: Sun, 14 Aug 2005 17:39:15 +0200 (CEST) From: Fredrik Lindberg To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/84911: [patch] ndisgen can't cope with .sys-files that begins with a number X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 15:40:29 -0000 >Number: 84911 >Category: bin >Synopsis: [patch] ndisgen can't cope with .sys-files that begins with a number >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 14 15:40:18 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Fredrik Lindberg >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD biocandy.shapeshifter.se 7.0-CURRENT FreeBSD 7.0-CURRENT #1: Tue Aug 2 19:27:22 CEST 2005 root@biocandy.shapeshifter.se:/usr/obj/usr/src/sys/BIOCANDY-CURRENT i386 >Description: ndisgen uses the basename of the windows drivers .sys-file as an internal identifier. This identifier is used as variable names windrv_stub.c which is fine in most cases, however it will fail to compile if the name of the .sys-file begins with a number. >How-To-Repeat: Pass a .sys-file which begins with a number to ndisgen. >Fix: The following patch adds a ndis_ prefix to the affected variables Index: ndiscvt/ndiscvt.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/ndiscvt/ndiscvt.c,v retrieving revision 1.11 diff -r1.11 ndiscvt.c 210c210 < "objcopy --redefine-sym _binary_%s_start=%s_drv_data_start " --- > "objcopy --redefine-sym _binary_%s_start=ndis_%s_drv_data_start " 212c212 < "--redefine-sym _binary_%s_end=%s_drv_data_end %s.o %s.o\n", --- > "--redefine-sym _binary_%s_end=ndis_%s_drv_data_end %s.o %s.o\n", 387c387 < "\nextern unsigned char %s_drv_data_start[];\n", --- > "\nextern unsigned char ndis_%s_drv_data_start[];\n", 390c390 < "%s_drv_data_start;\n\n", sysfile); --- > "ndis_%s_drv_data_start;\n\n", sysfile); Index: ndiscvt/ndisgen.sh =================================================================== RCS file: /home/ncvs/src/usr.sbin/ndiscvt/ndisgen.sh,v retrieving revision 1.5 diff -r1.5 ndisgen.sh 417,419c417,419 < echo " -DDRV_DATA_START=${SYSBASE}_drv_data_start \\" >> ${MAKEFILE} < echo " -DDRV_NAME=${SYSBASE} \\" >> ${MAKEFILE} < echo " -DDRV_DATA_END=${SYSBASE}_drv_data_end" >> ${MAKEFILE} --- > echo " -DDRV_DATA_START=ndis_${SYSBASE}_drv_data_start \\" >> ${MAKEFILE} > echo " -DDRV_NAME=ndis_${SYSBASE} \\" >> ${MAKEFILE} > echo " -DDRV_DATA_END=ndis_${SYSBASE}_drv_data_end" >> ${MAKEFILE} >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 18:30:19 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 DBF1916A420 for ; Sun, 14 Aug 2005 18:30:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F3B043D55 for ; Sun, 14 Aug 2005 18:30:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7EIUH5L080818 for ; Sun, 14 Aug 2005 18:30:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7EIUHRR080817; Sun, 14 Aug 2005 18:30:17 GMT (envelope-from gnats) Resent-Date: Sun, 14 Aug 2005 18:30:17 GMT Resent-Message-Id: <200508141830.j7EIUHRR080817@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, Colin King Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEC1F16A41F for ; Sun, 14 Aug 2005 18:21:59 +0000 (GMT) (envelope-from cking@m202.net) Received: from ylpvm43.prodigy.net (ylpvm43-ext.prodigy.net [207.115.57.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C7AE43D48 for ; Sun, 14 Aug 2005 18:21:59 +0000 (GMT) (envelope-from cking@m202.net) Received: from pimout2-ext.prodigy.net (pimout2-int.prodigy.net [207.115.4.217]) by ylpvm43.prodigy.net (8.12.10 outbound/8.12.10) with ESMTP id j7EIM5fU005213 for ; Sun, 14 Aug 2005 14:22:05 -0400 Received: from xenon.m202.net (adsl-69-227-134-127.dsl.renocs.nvbell.net [69.227.134.127]) by pimout2-ext.prodigy.net (8.13.4 outbound domainkey aix/8.13.4) with ESMTP id j7EILqlm355562 for ; Sun, 14 Aug 2005 14:21:57 -0400 Received: from mercury.m202.net (mercury.m202.net [10.0.0.1]) by xenon.m202.net (8.13.3/8.13.3) with ESMTP id j7EILnmb051665 for ; Sun, 14 Aug 2005 11:21:49 -0700 (PDT) (envelope-from cking@mercury.m202.net) Received: (from cking@localhost) by mercury.m202.net (8.13.3/8.13.3/Submit) id j7EILm0s036397; Sun, 14 Aug 2005 11:21:48 -0700 (PDT) (envelope-from cking) Message-Id: <200508141821.j7EILm0s036397@mercury.m202.net> Date: Sun, 14 Aug 2005 11:21:48 -0700 (PDT) From: Colin King To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: misc/84920: math programs reporting incorrect values X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Colin King List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 18:30:20 -0000 >Number: 84920 >Category: misc >Synopsis: math programs reporting incorrect values >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 Aug 14 18:30:17 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Colin King >Release: FreeBSD 5.4-RELEASE-p1 i386 >Organization: N/A >Environment: System: FreeBSD mercury 5.4-RELEASE-p1 FreeBSD 5.4-RELEASE-p1 #4: Wed Jun 1 22:07:36 PDT 2005 root@mercury:/usr/src/sys/i386/compile/MERCURY i386 i686 5.4-RELEASE-p1 >Description: Both of these program are giving me incorrect results when subtracting floating-point numbers, so I'm assuming that it is either something wrong with libm, libc, or gcc. >How-To-Repeat: Go to either one of these programs and type an expression that uses at least one floating point number and a subtraction. For example, I used 30.00-29.05 as my expression. In e, the result is 0.949999.... In KDE's kcalc, the result is 0.9500000000000001776356839400250464677811, or 0.9500000000000002 after rounding. >Fix: Not known. xcalc, perl, and openoffice.org do not seem to have this problem. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 19:00:36 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 8530F16A41F for ; Sun, 14 Aug 2005 19:00:36 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3FDC43D49 for ; Sun, 14 Aug 2005 19:00:35 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7EJ0Zmx082587 for ; Sun, 14 Aug 2005 19:00:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7EJ0ZcY082586; Sun, 14 Aug 2005 19:00:35 GMT (envelope-from gnats) Resent-Date: Sun, 14 Aug 2005 19:00:35 GMT Resent-Message-Id: <200508141900.j7EJ0ZcY082586@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, Ed Schouten Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7624B16A420 for ; Sun, 14 Aug 2005 18:51:54 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48F2E43D48 for ; Sun, 14 Aug 2005 18:51:54 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id j7EIpsxg052844 for ; Sun, 14 Aug 2005 18:51:54 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j7EIpsH9052843; Sun, 14 Aug 2005 18:51:54 GMT (envelope-from nobody) Message-Id: <200508141851.j7EIpsH9052843@www.freebsd.org> Date: Sun, 14 Aug 2005 18:51:54 GMT From: Ed Schouten To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/84929: [irc/bitlbee] Add WITH_MSN6_FEATURES flag for buddy icon support X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 19:00:36 -0000 >Number: 84929 >Category: misc >Synopsis: [irc/bitlbee] Add WITH_MSN6_FEATURES flag for buddy icon support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 14 19:00:35 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Ed Schouten >Release: 5.4-STABLE >Organization: >Environment: FreeBSD palm.hoeg.nl 5.4-STABLE FreeBSD 5.4-STABLE #0: Sat Jul 9 22:32:27 CEST 2005 root@palm.hoeg.nl:/usr/obj/usr/src/sys/PALM i386 >Description: Bitlbee is an IRC-to-IM gateway that support multiple protocols. Because the IRC protocol is really simple when it comes to graphical features (buddy icons, smileys, etc), Bitlbee doesn't support these. There's a patch available on the internet that allows you to specify a filename where Bitlbee should get its buddy icon from. >How-To-Repeat: Install Bitlbee >Fix: I built a patch that adds a flag called WITH_MSN6_FEATURES which downloads and applies a patch that adds support for various MSN6 features. It's available at: http://g-rave.nl/files/ports/irc-bitlbee-msn.diff.gz >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 19:01:34 2005 Return-Path: X-Original-To: freebsd-bugs@FreeBSD.org 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 913AB16A42D; Sun, 14 Aug 2005 19:01:34 +0000 (GMT) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [83.98.131.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3792E43D45; Sun, 14 Aug 2005 19:01:33 +0000 (GMT) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id 7E9071702A; Sun, 14 Aug 2005 21:01:32 +0200 (CEST) Date: Sun, 14 Aug 2005 21:01:32 +0200 From: Ed Schouten To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Message-ID: <20050814190132.GG95479@hoeg.nl> References: <200508141851.j7EIpsH9052843@www.freebsd.org> <200508141900.j7EJ0ZaZ082569@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WkfBGePaEyrk4zXB" Content-Disposition: inline In-Reply-To: <200508141900.j7EJ0ZaZ082569@freefall.freebsd.org> User-Agent: Mutt/1.5.9i Cc: Subject: Re: misc/84929: [irc/bitlbee] Add WITH_MSN6_FEATURES flag for buddy icon support X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 19:01:34 -0000 --WkfBGePaEyrk4zXB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * FreeBSD-gnats-submit@FreeBSD.org wrote: > It has the internal identification `misc/84929'. Sorry! Filed it under the wrong category! Could somebody bump this to ports, please? Yours, --=20 Ed Schouten --WkfBGePaEyrk4zXB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFC/5UMmVI4SHXwmhERAu5IAKCynU+HKKo3kWbJrliox4tRIHXCBwCg46ey 75WfKHOPj3QJDTb2zSGitRY= =eEOp -----END PGP SIGNATURE----- --WkfBGePaEyrk4zXB-- From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 19:10:17 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 1FB3316A41F for ; Sun, 14 Aug 2005 19:10:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2C4A43D45 for ; Sun, 14 Aug 2005 19:10:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7EJAGYO087193 for ; Sun, 14 Aug 2005 19:10:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7EJAGiY087192; Sun, 14 Aug 2005 19:10:16 GMT (envelope-from gnats) Date: Sun, 14 Aug 2005 19:10:16 GMT Message-Id: <200508141910.j7EJAGiY087192@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Ed Schouten Cc: Subject: Re: misc/84929: [irc/bitlbee] Add WITH_MSN6_FEATURES flag for buddy icon support X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ed Schouten List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 19:10:17 -0000 The following reply was made to PR misc/84929; it has been noted by GNATS. From: Ed Schouten To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: misc/84929: [irc/bitlbee] Add WITH_MSN6_FEATURES flag for buddy icon support Date: Sun, 14 Aug 2005 21:01:32 +0200 --WkfBGePaEyrk4zXB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * FreeBSD-gnats-submit@FreeBSD.org wrote: > It has the internal identification `misc/84929'. Sorry! Filed it under the wrong category! Could somebody bump this to ports, please? Yours, --=20 Ed Schouten --WkfBGePaEyrk4zXB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFC/5UMmVI4SHXwmhERAu5IAKCynU+HKKo3kWbJrliox4tRIHXCBwCg46ey 75WfKHOPj3QJDTb2zSGitRY= =eEOp -----END PGP SIGNATURE----- --WkfBGePaEyrk4zXB-- From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 19:20:04 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 0EF8216A420 for ; Sun, 14 Aug 2005 19:20:04 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFF5E43D49 for ; Sun, 14 Aug 2005 19:20:02 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7EJK2jO087408 for ; Sun, 14 Aug 2005 19:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7EJK2DT087407; Sun, 14 Aug 2005 19:20:02 GMT (envelope-from gnats) Resent-Date: Sun, 14 Aug 2005 19:20:02 GMT Resent-Message-Id: <200508141920.j7EJK2DT087407@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, "Mikhail T." Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8349316A41F for ; Sun, 14 Aug 2005 19:14:57 +0000 (GMT) (envelope-from mi@blue.virtual-estates.net) Received: from mail24.sea5.speakeasy.net (mail24.sea5.speakeasy.net [69.17.117.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3743943D45 for ; Sun, 14 Aug 2005 19:14:57 +0000 (GMT) (envelope-from mi@blue.virtual-estates.net) Received: (qmail 6217 invoked from network); 14 Aug 2005 19:14:56 -0000 Received: from aldan.algebra.com (HELO blue.virtual-estates.net) ([216.254.65.224]) (envelope-sender ) by mail24.sea5.speakeasy.net (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 14 Aug 2005 19:14:56 -0000 Received: from blue.virtual-estates.net (blue [127.0.0.1]) by blue.virtual-estates.net (8.13.3/8.13.3) with ESMTP id j7EJEsht090529 for ; Sun, 14 Aug 2005 15:14:54 -0400 (EDT) (envelope-from mi@blue.virtual-estates.net) Received: (from mi@localhost) by blue.virtual-estates.net (8.13.3/8.13.3/Submit) id j7EJEs3V090528; Sun, 14 Aug 2005 15:14:54 -0400 (EDT) (envelope-from mi) Message-Id: <200508141914.j7EJEs3V090528@blue.virtual-estates.net> Date: Sun, 14 Aug 2005 15:14:54 -0400 (EDT) From: "Mikhail T." To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/84930: something wrong with msdosfs on amd64 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 19:20:04 -0000 >Number: 84930 >Category: kern >Synopsis: something wrong with msdosfs on amd64 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 14 19:20:02 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 5.4-STABLE amd64 >Organization: Virtual Estates, Inc. >Environment: System: FreeBSD 5.4-STABLE #7: Thu Jul 21 00:06:41 EDT 2005 ... amd64 >Description: I just tried to move some songs over to the IRiver MP3-player. USB code recognized the device: da1 at umass-sim0 bus 0 target 0 lun 0 da1: Fixed Direct Access SCSI-0 device da1: 1.000MB/s transfers da1: 38147MB (78126048 512 byte sectors: 255H 63S/T 4863C) and I was able to mount it: % mount -t msdosfs /dev/da1s1 /iriver The drive on it is just over half-full and df confirms it: /dev/da1s1 39052512 19902080 19150432 51% /iriver Yet, when I tried to list the contents of the drive, I saw nothing: % ls -l /iriver total 0 Another system -- i386 running 5.4-stable from April 23 -- had no problems and is busy copying the files as I type this. >How-To-Repeat: Try to write to an msdosfs on amd64. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 20:00:23 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 3092516A41F; Sun, 14 Aug 2005 20:00:23 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E242543D46; Sun, 14 Aug 2005 20:00:22 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7EK0MS3089314; Sun, 14 Aug 2005 20:00:22 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7EK0MlE089310; Sun, 14 Aug 2005 20:00:22 GMT (envelope-from linimon) Date: Sun, 14 Aug 2005 20:00:22 GMT From: Mark Linimon Message-Id: <200508142000.j7EK0MlE089310@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/84929: [irc/bitlbee] Add WITH_MSN6_FEATURES flag for buddy icon support X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 20:00:23 -0000 Synopsis: [irc/bitlbee] Add WITH_MSN6_FEATURES flag for buddy icon support Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Aug 14 19:59:51 GMT 2005 Responsible-Changed-Why: Ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=84929 From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 20:02:32 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 A9EA016A41F; Sun, 14 Aug 2005 20:02:32 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6888543D46; Sun, 14 Aug 2005 20:02:32 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7EK2Wk7089537; Sun, 14 Aug 2005 20:02:32 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7EK2WsC089533; Sun, 14 Aug 2005 20:02:32 GMT (envelope-from linimon) Date: Sun, 14 Aug 2005 20:02:32 GMT From: Mark Linimon Message-Id: <200508142002.j7EK2WsC089533@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-amd64@FreeBSD.org Cc: Subject: Re: amd64/84930: [msdosfs] something wrong with msdosfs on amd64 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 20:02:32 -0000 Old Synopsis: something wrong with msdosfs on amd64 New Synopsis: [msdosfs] something wrong with msdosfs on amd64 Responsible-Changed-From-To: freebsd-bugs->freebsd-amd64 Responsible-Changed-By: linimon Responsible-Changed-When: Sun Aug 14 20:01:59 GMT 2005 Responsible-Changed-Why: Sounds amd64-specific (or at least 64-bit specific). http://www.freebsd.org/cgi/query-pr.cgi?pr=84930 From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 20:10:23 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 88C2E16A41F for ; Sun, 14 Aug 2005 20:10:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5536A43D45 for ; Sun, 14 Aug 2005 20:10:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7EKANtm094033 for ; Sun, 14 Aug 2005 20:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7EKANY8094032; Sun, 14 Aug 2005 20:10:23 GMT (envelope-from gnats) Date: Sun, 14 Aug 2005 20:10:23 GMT Message-Id: <200508142010.j7EKANY8094032@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Michael Seyfert Cc: Subject: Re: kern/84728: [sound] [patch] ac97 broken mixing capabilities checking X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Seyfert List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 20:10:23 -0000 The following reply was made to PR kern/84728; it has been noted by GNATS. From: Michael Seyfert To: bug-followup@FreeBSD.org Cc: skywizard@MyBSD.org.my Subject: Re: kern/84728: [sound] [patch] ac97 broken mixing capabilities checking Date: Sun, 14 Aug 2005 20:00:56 +0000 Sorry I had the wrong encoding in my editor for that patch.. --- sys/dev/sound/pcm/ac97.c Sun Jul 31 08:28:31 2005 +++ ../ac97.c Thu Aug 11 20:12:47 2005 @@ -622,19 +622,15 @@ j |= 0x8000; ac97_wrcd(codec, codec->mix[i].reg, j); j = ac97_rdcd(codec, codec->mix[i].reg) & j; - j >>= codec->mix[i].ofs; - if (codec->mix[i].reg == AC97_MIX_TONE && - ((j & 0x0001) == 0x0000)) - j >>= 1; - for (k = 0; j != 0; k++) - j >>= 1; - for (j = 0; k != 0; j++) - k >>= 1; if (j != 0) { codec->mix[i].enable = 1; -#if 0 - codec->mix[i].bits = j; -#endif + /* Get the width of the control field. */ + j = ((1 << 6) - 1) << codec->mix[i].ofs; + ac97_wrcd(codec, codec->mix[i].reg, j); + j = ac97_rdcd(codec, codec->mix[i].reg) & j; + j >>= codec->mix[i].ofs; + for (k = 1; j & (1 << k); k++); + codec->mix[i].bits = k; } else codec->mix[i].enable = 0; } else If this doesn't work then I'm giving up.. I tried all of your patches in that directory. My sound didn't work at all. Can't we just keep it simple? Anyways, if I'm the only one affected by this then it's not a big deal. From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 22:30:26 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 11AC916A433 for ; Sun, 14 Aug 2005 22:30:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B27043D45 for ; Sun, 14 Aug 2005 22:30:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7EMUPsD009257 for ; Sun, 14 Aug 2005 22:30:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7EMUPJN009256; Sun, 14 Aug 2005 22:30:25 GMT (envelope-from gnats) Date: Sun, 14 Aug 2005 22:30:25 GMT Message-Id: <200508142230.j7EMUPJN009256@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Ariff Abdullah Cc: Subject: Re: kern/84728: [sound] [patch] ac97 broken mixing capabilities checking X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ariff Abdullah List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 22:30:26 -0000 The following reply was made to PR kern/84728; it has been noted by GNATS. From: Ariff Abdullah To: Michael Seyfert Cc: bug-followup@FreeBSD.org Subject: Re: kern/84728: [sound] [patch] ac97 broken mixing capabilities checking Date: Mon, 15 Aug 2005 06:26:18 +0800 On Sun, 14 Aug 2005 20:00:56 +0000 Michael Seyfert wrote: > > If this doesn't work then I'm giving up.. I tried all of your > patches in that directory. My sound didn't work at all. Can't we > just keep it simple? > Anyways, if I'm the only one affected by this then it's not a big > deal. > No! Please don't given up yet :) I tried so hard to balance between buggy codecs, various ac97 version, even wait for your responses for more than two days. At least, please try that ac97.c.head.FINAL.diff (haven't you?). -- Ariff Abdullah MyBSD http://www.MyBSD.org.my (IPv6/IPv4) http://staff.MyBSD.org.my (IPv6/IPv4) http://tomoyo.MyBSD.org.my (IPv6/IPv4) From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 23:00:34 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 6907316A41F for ; Sun, 14 Aug 2005 23:00:34 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A48943D48 for ; Sun, 14 Aug 2005 23:00:33 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7EN0XZg010874 for ; Sun, 14 Aug 2005 23:00:33 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7EN0W5v010871; Sun, 14 Aug 2005 23:00:33 GMT (envelope-from gnats) Resent-Date: Sun, 14 Aug 2005 23:00:33 GMT Resent-Message-Id: <200508142300.j7EN0W5v010871@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, Antoine Pelisse Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4585516A41F for ; Sun, 14 Aug 2005 22:54:22 +0000 (GMT) (envelope-from willow@xloling.org) Received: from xloling.org (willow.xloling.org [82.67.83.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BEC843D46 for ; Sun, 14 Aug 2005 22:54:21 +0000 (GMT) (envelope-from willow@xloling.org) Received: from xloling.org (localhost [127.0.0.1]) by xloling.org (8.13.3/8.13.1) with ESMTP id j7EMsVFE088878 for ; Mon, 15 Aug 2005 00:54:32 +0200 (CEST) (envelope-from willow@xloling.org) Received: (from willow@localhost) by xloling.org (8.13.3/8.13.1/Submit) id j7EMsV9R088863; Mon, 15 Aug 2005 00:54:31 +0200 (CEST) (envelope-from willow) Message-Id: <200508142254.j7EMsV9R088863@xloling.org> Date: Mon, 15 Aug 2005 00:54:31 +0200 (CEST) From: Antoine Pelisse To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/84934: [PATCH] Panic in kern_exec.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Antoine Pelisse List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 23:00:34 -0000 >Number: 84934 >Category: kern >Synopsis: [PATCH] Panic in kern_exec.c >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 14 23:00:32 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Antoine Pelisse >Release: FreeBSD 7.0-CURRENT i386 >Organization: Xloling >Environment: System: FreeBSD gordon.xloling.org 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Sun Aug 14 23:48:35 CEST 2005 i386 >Description: Fix for panic: http://people.freebsd.org/~pho/stress/log/cons151.html >How-To-Repeat: >Fix: --- kern/kern_exec.c.orig Sun Aug 14 22:39:41 2005 +++ kern/kern_exec.c Sun Aug 14 22:43:16 2005 @@ -667,7 +667,14 @@ /* Cache arguments if they fit inside our allowance */ if (ps_arg_cache_limit >= i + sizeof(struct pargs)) { + /* + * the lock needs to be released as begin_argv is + * stored in pageable memory (allocated with + * kmem_alloc_wait) + */ + PROC_UNLOCK(p); bcopy(imgp->args->begin_argv, newargs->ar_args, i); + PROC_LOCK(p); p->p_args = newargs; newargs = NULL; } Feel free to modify the comment, Regards. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 23:20:15 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 3294716A41F for ; Sun, 14 Aug 2005 23:20:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB44943D49 for ; Sun, 14 Aug 2005 23:20:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7ENKEu2015760 for ; Sun, 14 Aug 2005 23:20:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7ENKEFO015759; Sun, 14 Aug 2005 23:20:14 GMT (envelope-from gnats) Resent-Date: Sun, 14 Aug 2005 23:20:14 GMT Resent-Message-Id: <200508142320.j7ENKEFO015759@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, Antoine Pelisse Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D042E16A41F for ; Sun, 14 Aug 2005 23:15:06 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id A16D043D46 for ; Sun, 14 Aug 2005 23:15:06 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id j7ENF6am083079 for ; Sun, 14 Aug 2005 23:15:06 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j7EMlHkr055715; Sun, 14 Aug 2005 22:47:17 GMT (envelope-from nobody) Message-Id: <200508142247.j7EMlHkr055715@www.freebsd.org> Date: Sun, 14 Aug 2005 22:47:17 GMT From: Antoine Pelisse To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: kern/84935: [PATCH] Panic in kern_exec.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 23:20:15 -0000 >Number: 84935 >Category: kern >Synopsis: [PATCH] Panic in kern_exec.c >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Aug 14 23:20:14 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Antoine Pelisse >Release: 7-CURRENT >Organization: Xloling >Environment: FreeBSD 7.0-CURRENT: Sun Aug 14 23:38:35 CEST 2005 >Description: Fix for panic: http://people.freebsd.org/~pho/stress/log/cons151.html >How-To-Repeat: >Fix: --- kern/kern_exec.c.orig Sun Aug 14 22:39:41 2005 +++ kern/kern_exec.c Sun Aug 14 22:43:16 2005 @@ -667,7 +667,14 @@ /* Cache arguments if they fit inside our allowance */ if (ps_arg_cache_limit >= i + sizeof(struct pargs)) { + /* + * the lock needs to be released as begin_argv is + * stored in pageable memory (allocated with + * kmem_alloc_wait) + */ + PROC_UNLOCK(p); bcopy(imgp->args->begin_argv, newargs->ar_args, i); + PROC_LOCK(p); p->p_args = newargs; newargs = NULL; } Feel free to modify the comment, Regards. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Aug 14 23:33:27 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 E238B16A420; Sun, 14 Aug 2005 23:33:27 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ED7B43D55; Sun, 14 Aug 2005 23:33:27 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7ENXRe2017300; Sun, 14 Aug 2005 23:33:27 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7ENXRid017296; Sun, 14 Aug 2005 23:33:27 GMT (envelope-from linimon) Date: Sun, 14 Aug 2005 23:33:27 GMT From: Mark Linimon Message-Id: <200508142333.j7ENXRid017296@freefall.freebsd.org> To: apelisse@gmail.com, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/84934: [PATCH] Panic in kern_exec.c X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2005 23:33:28 -0000 Synopsis: [PATCH] Panic in kern_exec.c State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Aug 14 23:33:04 GMT 2005 State-Changed-Why: Duplicate of kern/84935. http://www.freebsd.org/cgi/query-pr.cgi?pr=84934 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 00:10:23 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 D7D4416A420 for ; Mon, 15 Aug 2005 00:10:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D5EE43D45 for ; Mon, 15 Aug 2005 00:10:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7F0AN97022443 for ; Mon, 15 Aug 2005 00:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7F0ANmi022442; Mon, 15 Aug 2005 00:10:23 GMT (envelope-from gnats) Date: Mon, 15 Aug 2005 00:10:23 GMT Message-Id: <200508150010.j7F0ANmi022442@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Michael Seyfert Cc: Subject: Re: kern/84728: [sound] [patch] ac97 broken mixing capabilities checking X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Seyfert List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 00:10:24 -0000 The following reply was made to PR kern/84728; it has been noted by GNATS. From: Michael Seyfert To: Ariff Abdullah Cc: bug-followup@FreeBSD.org Subject: Re: kern/84728: [sound] [patch] ac97 broken mixing capabilities checking Date: Mon, 15 Aug 2005 00:03:47 +0000 works fine From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 07:00:52 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 A3D5516A41F for ; Mon, 15 Aug 2005 07:00:52 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59FDB43D48 for ; Mon, 15 Aug 2005 07:00:52 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7F70qhu072416 for ; Mon, 15 Aug 2005 07:00:52 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7F70qTS072415; Mon, 15 Aug 2005 07:00:52 GMT (envelope-from gnats) Date: Mon, 15 Aug 2005 07:00:52 GMT Message-Id: <200508150700.j7F70qTS072415@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Michael Seyfert Cc: Subject: Re: kern/84728: [sound] [patch] ac97 broken mixing capabilities checking X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Seyfert List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 07:00:52 -0000 The following reply was made to PR kern/84728; it has been noted by GNATS. From: Michael Seyfert To: Ariff Abdullah Cc: bug-followup@FreeBSD.org Subject: Re: kern/84728: [sound] [patch] ac97 broken mixing capabilities checking Date: Mon, 15 Aug 2005 06:59:29 +0000 All I really needed was the check for the number of bits.. I'm not sure what the other code is for in that patch, but ac97.c.head.FINAL.diff seems to be working. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 07:10:16 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 067A416A41F for ; Mon, 15 Aug 2005 07:10:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7C2F43D45 for ; Mon, 15 Aug 2005 07:10:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7F7AFLt077049 for ; Mon, 15 Aug 2005 07:10:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7F7AFPN077048; Mon, 15 Aug 2005 07:10:15 GMT (envelope-from gnats) Date: Mon, 15 Aug 2005 07:10:15 GMT Message-Id: <200508150710.j7F7AFPN077048@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Denis Shaposhnikov Cc: Subject: kern/84861 : still can't get working ipw(4) with adhoc X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Denis Shaposhnikov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 07:10:16 -0000 The following reply was made to PR kern/84861; it has been noted by GNATS. From: Denis Shaposhnikov To: bug-followup@FreeBSD.org, dsh@vlink.ru Cc: Subject: kern/84861 : still can't get working ipw(4) with adhoc Date: Mon, 15 Aug 2005 11:04:26 +0400 This patch fixes adhoc's ipw(4) on my system. I've made it from ipw-freebsd-1.7.1 which works fine before API change. System: FreeBSD localhost.my.domain 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Fri Aug 12 22:53:24 MSD 2005 dsh@localhost.my.domain:/var/FreeBSD/obj/var/FreeBSD/src/sys/WIZARD i386 --- sys/dev/ipw/if_ipw.c.orig Fri Aug 12 17:10:10 2005 +++ sys/dev/ipw/if_ipw.c Sat Aug 13 22:35:29 2005 @@ -825,23 +825,26 @@ { struct ifnet *ifp = ic->ic_ifp; struct ipw_softc *sc = ifp->if_softc; - struct ieee80211_node *ni; - uint8_t macaddr[IEEE80211_ADDR_LEN]; + struct ieee80211_node *ni = ic->ic_bss; uint32_t len; + uint8_t val; switch (nstate) { case IEEE80211_S_RUN: - DELAY(200); /* firmware needs a short delay here */ + len = IEEE80211_NWID_LEN; + ipw_read_table2(sc, IPW_INFO_CURRENT_SSID, ni->ni_essid, &len); + ni->ni_esslen = len; - len = IEEE80211_ADDR_LEN; - ipw_read_table2(sc, IPW_INFO_CURRENT_BSSID, macaddr, &len); + val = ipw_read_table1(sc, IPW_INFO_CURRENT_CHANNEL); + ni->ni_chan = &ic->ic_channels[val]; + + DELAY(1000); /* firmware needs a short delay here */ - ni = ieee80211_find_node(&ic->ic_scan, macaddr); - if (ni == NULL) - break; + len = IEEE80211_ADDR_LEN; + ipw_read_table2(sc, IPW_INFO_CURRENT_BSSID, ni->ni_bssid, &len); + IEEE80211_ADDR_COPY(ni->ni_macaddr, ni->ni_bssid); ieee80211_ref_node(ni); - ieee80211_sta_join(ic, ni); ieee80211_node_authorize(ni); if (ic->ic_opmode == IEEE80211_M_STA) -- DSS5-RIPE DSS-RIPN 2:550/5068@fidonet 2:550/5069@fidonet mailto:dsh@vlink.ru http://neva.vlink.ru/~dsh/ From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 09:20:12 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 B3EF516A41F for ; Mon, 15 Aug 2005 09:20:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69C2943D49 for ; Mon, 15 Aug 2005 09:20:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7F9KCH2092044 for ; Mon, 15 Aug 2005 09:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7F9KBMn092043; Mon, 15 Aug 2005 09:20:11 GMT (envelope-from gnats) Date: Mon, 15 Aug 2005 09:20:11 GMT Message-Id: <200508150920.j7F9KBMn092043@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Ariff Abdullah Cc: Subject: Re: kern/84728: [sound] [patch] ac97 broken mixing capabilities checking X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ariff Abdullah List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 09:20:12 -0000 The following reply was made to PR kern/84728; it has been noted by GNATS. From: Ariff Abdullah To: Michael Seyfert Cc: bug-followup@FreeBSD.org, Alexander@Leidinger.net, mathew.kanner@gmail.com, davidxu@FreeBSD.org Subject: Re: kern/84728: [sound] [patch] ac97 broken mixing capabilities checking Date: Mon, 15 Aug 2005 17:16:08 +0800 On Mon, 15 Aug 2005 06:59:29 +0000 Michael Seyfert wrote: > All I really needed was the check for the number of bits.. I'm not > sure what the other code is for in that patch, but > ac97.c.head.FINAL.diff seems to be working. > It's a balance between buggy codecs, different ac97 revisions (2.1/2.2/2.3), different register/bit offset (you cannot simply assume that every mixer register is 6bit long, or you end up overflowing it). Anyway, thanks! I assume *this* should be the true final version! (I'm CCing this to other people as well, especially David Xu for his 'used to be Creative EV1938 but its no longer true' for further validation. -- DIFF BEGIN -- --- sys/dev/sound/pcm/ac97.c.orig Sun Jul 31 22:28:31 2005 +++ sys/dev/sound/pcm/ac97.c Mon Aug 15 15:43:24 2005 @@ -118,6 +118,11 @@ { 0x57454300, "Winbond" }, { 0x574d4c00, "Wolfson" }, { 0x594d4800, "Yamaha" }, + /* + * XXX This is a fluke, really! The real vendor + * should be SigmaTel, not this! This should be + * removed someday! + */ { 0x01408300, "Creative" }, { 0x00000000, NULL } }; @@ -211,6 +216,11 @@ { 0x594d4800, 0x00, 0, "YMF743", 0 }, { 0x594d4802, 0x00, 0, "YMF752", 0 }, { 0x594d4803, 0x00, 0, "YMF753", 0 }, + /* + * XXX This is a fluke, really! The real codec + * should be STAC9704, not this! This should be + * removed someday! + */ { 0x01408384, 0x00, 0, "EV1938", 0 }, { 0, 0, 0, NULL, 0 } }; @@ -283,6 +293,21 @@ u_int16_t ac97_rdcd(struct ac97_info *codec, int reg) { + if (codec->flags & AC97_F_RDCD_BUG) { + u_int16_t i[2], j = 100; + + i[0] = AC97_READ(codec->methods, codec->devinfo, reg); + i[1] = AC97_READ(codec->methods, codec->devinfo, reg); + while (i[0] != i[1] && j) + i[j-- & 1] = AC97_READ(codec->methods, codec->devinfo, reg); +#if 0 + if (j < 100) { + device_printf(codec->dev, "%s(): Inconsistent register value at" + " 0x%08x (retry: %d)\n", __func__, reg, 100 - j); + } +#endif + return i[!(j & 1)]; + } return AC97_READ(codec->methods, codec->devinfo, reg); } @@ -452,14 +477,16 @@ */ snd_mtxlock(codec->lock); if (e->mask) { - int cur = ac97_rdcd(codec, e->reg); + int cur = ac97_rdcd(codec, reg); val |= cur & ~(mask); } ac97_wrcd(codec, reg, val); snd_mtxunlock(codec->lock); return left | (right << 8); } else { - /* printf("ac97_setmixer: reg=%d, bits=%d, enable=%d\n", e->reg, e->bits, e->enable); */ +#if 0 + printf("ac97_setmixer: reg=%d, bits=%d, enable=%d\n", e->reg, e->bits, e->enable); +#endif return -1; } } @@ -536,8 +563,9 @@ const char *cname, *vname; char desc[80]; u_int8_t model, step; - unsigned i, j, k, old; + unsigned i, j, k, bit, old; u_int32_t id; + int reg; snd_mtxlock(codec->lock); codec->count = AC97_INIT(codec->methods, codec->devinfo); @@ -552,6 +580,16 @@ ac97_wrcd(codec, AC97_REG_POWER, (codec->flags & AC97_F_EAPD_INV)? 0x8000 : 0x0000); i = ac97_rdcd(codec, AC97_REG_RESET); + j = ac97_rdcd(codec, AC97_REG_RESET); + /* + * Let see if this codec can return consistent value. + * If not, turn on aggressive read workaround + * (STAC9704 comes in mind). + */ + if (i != j) { + codec->flags |= AC97_F_RDCD_BUG; + i = ac97_rdcd(codec, AC97_REG_RESET); + } codec->caps = i & 0x03ff; codec->se = (i & 0x7c00) >> 10; @@ -610,36 +648,55 @@ for (i = 0; i < 32; i++) { k = codec->noext? codec->mix[i].enable : 1; - if (k && (codec->mix[i].reg > 0)) { - j = old = ac97_rdcd(codec, codec->mix[i].reg); - if (!(j & 0x8000)) { - ac97_wrcd(codec, codec->mix[i].reg, j | 0x8000); - j = ac97_rdcd(codec, codec->mix[i].reg); - } + reg = codec->mix[i].reg; + if (reg < 0) + reg = -reg; + if (k && reg) { + j = old = ac97_rdcd(codec, reg); + /* + * Test for mute bit (except for AC97_MIX_TONE, + * where we simply assume it as available). + */ + if (codec->mix[i].mute) { + ac97_wrcd(codec, reg, j | 0x8000); + j = ac97_rdcd(codec, reg); + } else + j |= 0x8000; if ((j & 0x8000)) { - j = ((1 << 6) - 1) << codec->mix[i].ofs; - if (codec->mix[i].mute) - j |= 0x8000; - ac97_wrcd(codec, codec->mix[i].reg, j); - j = ac97_rdcd(codec, codec->mix[i].reg) & j; - j >>= codec->mix[i].ofs; - if (codec->mix[i].reg == AC97_MIX_TONE && - ((j & 0x0001) == 0x0000)) - j >>= 1; - for (k = 0; j != 0; k++) - j >>= 1; - for (j = 0; k != 0; j++) + /* + * Test whether the control width should be + * 4, 5 or 6 bit. For 5bit register, we should + * test it whether it's really 5 or 6bit. Leave + * 4bit register alone, because sometimes an + * attempt to write past 4th bit may cause + * incorrect result especially for AC97_MIX_BEEP + * (ac97 2.3). + */ + bit = codec->mix[i].bits; + if (bit == 5) + bit++; + j = ((1 << bit) - 1) << codec->mix[i].ofs; + ac97_wrcd(codec, reg, + j | (codec->mix[i].mute ? 0x8000 : 0)); + k = ac97_rdcd(codec, reg) & j; + k >>= codec->mix[i].ofs; + if (reg == AC97_MIX_TONE && + ((k & 0x0001) == 0x0000)) k >>= 1; + for (j = 0; k >> j; j++) + ; if (j != 0) { - codec->mix[i].enable = 1; #if 0 - codec->mix[i].bits = j; + device_printf(codec->dev, "%2d: [ac97_rdcd() = %d] [Testbit = %d] %d -> %d\n", + i, k, bit, codec->mix[i].bits, j); #endif + codec->mix[i].enable = 1; + codec->mix[i].bits = j; } else codec->mix[i].enable = 0; } else codec->mix[i].enable = 0; - ac97_wrcd(codec, codec->mix[i].reg, old); + ac97_wrcd(codec, reg, old); } #if 0 printf("mixch %d, en=%d, b=%d\n", i, codec->mix[i].enable, codec->mix[i].bits); @@ -650,6 +707,8 @@ ac97_hw_desc(codec->id, vname, cname, desc)); if (bootverbose) { + if (codec->flags & AC97_F_RDCD_BUG) + device_printf(codec->dev, "Buggy AC97 Codec: aggressive ac97_rdcd() workaround enabled\n"); device_printf(codec->dev, "Codec features "); for (i = j = 0; i < 10; i++) if (codec->caps & (1 << i)) --- sys/dev/sound/pcm/ac97.h.orig Thu Jan 6 09:43:20 2005 +++ sys/dev/sound/pcm/ac97.h Mon Aug 15 15:41:42 2005 @@ -81,6 +81,7 @@ #define AC97_REG_ID2 0x7e #define AC97_F_EAPD_INV 0x00000001 +#define AC97_F_RDCD_BUG 0x00000002 #define AC97_DECLARE(name) static DEFINE_CLASS(name, name ## _methods, sizeof(struct kobj)) #define AC97_CREATE(dev, devinfo, cls) ac97_create(dev, devinfo, &cls ## _class) -- DIFF END -- -- Ariff Abdullah MyBSD http://www.MyBSD.org.my (IPv6/IPv4) http://staff.MyBSD.org.my (IPv6/IPv4) http://tomoyo.MyBSD.org.my (IPv6/IPv4) From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 11:00:26 2005 Return-Path: X-Original-To: freebsd-bugs@freebsd.org 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 5845316A41F for ; Mon, 15 Aug 2005 11:00:26 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1126D43D55 for ; Mon, 15 Aug 2005 11:00:26 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7FB0P0l006369 for ; Mon, 15 Aug 2005 11:00:25 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7FB0Pr5006363 for freebsd-bugs@freebsd.org; Mon, 15 Aug 2005 11:00:25 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 15 Aug 2005 11:00:25 GMT Message-Id: <200508151100.j7FB0Pr5006363@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.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 11:00:26 -0000 Current FreeBSD problem reports No matches to your query From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 11:00:34 2005 Return-Path: X-Original-To: freebsd-bugs@freebsd.org 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 20F8C16A41F for ; Mon, 15 Aug 2005 11:00:34 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DD1543D55 for ; Mon, 15 Aug 2005 11:00:33 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7FB0XYB006381 for ; Mon, 15 Aug 2005 11:00:33 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7FB0QcV006374 for freebsd-bugs@freebsd.org; Mon, 15 Aug 2005 11:00:26 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 15 Aug 2005 11:00:26 GMT Message-Id: <200508151100.j7FB0QcV006374@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.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 11:00:34 -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 ------------------------------------------------------------------------------- a [2001/05/10] kern/27250 bp [unionfs] [patch] unionfs filesystem pani o [2002/06/08] kern/39043 Corrupted files on a FAT32 partition (wit o [2002/08/16] kern/41723 [2TB] on 1TB fs, copying files to filesys o [2002/10/25] bin/44471 qa [sysinstall] 4.6 install writes MBR even o [2003/02/16] bin/48341 qa [sysinstall] sysinstall deletes mbr altho o [2003/03/23] kern/50201 [twe] 3ware RAID 5 resulting in data corr o [2003/06/28] kern/53874 emulation /usr/ports/emulators/linux_base isn't wor o [2003/10/06] i386/57673 i386 [disklabel] Odd/dangerous disklabel behav o [2003/11/10] kern/59103 Serious data corruption reading compact f o [2003/12/12] kern/60175 panic: 5.2-RC: disk errors cause panic in o [2003/12/17] kern/60313 data destruction: lseek() misalignment si o [2004/02/16] i386/62902 i386 Data Corruption on Dell PE 600SC (Server o [2004/04/28] i386/66039 i386 panic: system panic with file system corr o [2004/05/04] bin/66261 fsck cannot recover filesystem corruption o [2004/05/11] kern/66553 rwatson SEBSD kernel compilation errors o [2004/05/27] i386/67260 i386 [boot] stack overflow after boot menu whe o [2004/07/07] kern/68757 kan rapid file creation on snapshotted filesy o [2004/08/06] kern/70096 [patch] full msdos file system causes cor o [2004/08/23] kern/70881 5.3 beta1 kernel.generic missing from /bo o [2004/09/05] i386/71395 i386 Data corrupted on Serverworks CG-SL chips o [2004/09/09] i386/71538 i386 [install] multi-homed install trashes exi o [2004/09/16] kern/71800 5.3-RELEASE crash (infinite IRQ list dump o [2004/10/21] kern/72979 unkillable process(es) stuck in `STOP' st o [2004/10/22] bin/73019 fsck_ufs: cannot alloc 607016868 bytes fo o [2004/10/27] amd64/73211 amd64 FAST_IPSEC broken on amd64 o [2004/10/30] kern/73313 simokawa Maxtor Onetouch drivers hang or corrupt d o [2004/11/19] kern/74137 FreeBSD 5.3 BTX loader stack overflows an o [2004/12/14] amd64/75043 le Vinum panic on booting from mirrored vinu o [2004/12/20] alpha/75317 alpha ATA DMA broken on PCalpha o [2005/01/05] kern/75844 phk gbde causes disk write errors and subsequ o [2005/01/18] i386/76397 i386 ata raid crashes in g_down (heavy load) o [2005/01/26] threads/76690threads fork hang in child for (-lc_r & -lthr) o [2005/02/07] kern/77234 [patch] corrupted data is read from UDF f o [2005/03/14] i386/78837 i386 Partition Table Corruption in 5.3 o [2005/05/09] kern/80805 le vinum does not start at boot and may even o [2005/05/11] threads/80887threads ULE with SMP broke libpthread/libthr on 5 o [2005/05/27] bin/81555 Cron exits from SIGPIPE after crontab -e o [2005/07/24] i386/83974 i386 FreeBSD-6.0-BETA1 blows up with PCI SATA o [2005/08/02] kern/84498 [hang] [unionfs] file system hangs when j o [2005/08/09] ia64/84693 ia64 Keyboard not recognized during first step o [2005/08/10] kern/84750 6-BETA2 reboot/shutdown with root_fs on e o [2005/08/11] kern/84801 kernel hangs with pf and route-to o [2005/08/14] kern/84903 Incorrect initialization of nswbuf 43 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1997/04/02] bin/3170 vi freaks and dump core if user doesn't e 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 f [1998/06/24] i386/7057 mdodd 3Com 3C509 locks up, or has >1000ms rtt u o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio o [1998/11/11] bin/8646 Implement rlogind -a option o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console o [1999/02/15] kern/10107 interlock situation with exec_map and a p o [1999/03/02] bin/10353 jon ypserv gets segmentation violation o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/05/13] kern/11697 tegge Disk failure hangs system o [1999/09/11] bin/13691 fenner tcpslice cannot extract over 2GB part of s [1999/09/16] conf/13775 multi-user boot may hang in NIS environme f [1999/09/30] ports/14048 des [patch] doscmd -r doesn't work a [1999/11/04] kern/14712 iedowse [nfs] root has access to NFS mounted dire s [1999/11/17] bin/14946 mjacob rmt - remote magtape protocol o [2000/01/02] i386/15845 imp [patch] Driver for RealTek 8029 f [2000/01/04] bin/15877 tobez Perl 5.00503 interpreter crashes with a s o [2000/01/12] kern/16090 mdodd No buffer space available p [2000/01/22] kern/16299 peadar [nfs] nfs.ko can be unloaded when nfsd is o [2000/02/21] conf/16879 tanimura [sound] csa: Sound drivers seem to be usi o [2000/02/24] bin/16948 qa [sysinstall] sysinstall/disklabel: bad pa o [2000/03/11] kern/17310 wpaul [patch] NIS host name resolving may loop o [2000/03/17] kern/17422 bde 4.0-STABLE: top: nlist failed s [2000/03/22] conf/17540 [nfs] NIS host lookups cause NFS mounts t o [2000/04/06] kern/17819 [unionfs] Build ports on nfs & union moun f [2000/04/24] i386/18185 gibbs Adaptec 3950U2 errors during boot/probe s [2000/05/22] bin/18742 mike times.allow field parsed incorrectly p [2000/05/29] kern/18874 [2TB] 32bit NFS servers export wrong nega o [2000/06/13] i386/19245 obrien -fexpensive-optimizations buggy (even wit s [2000/06/20] bin/19405 markm telnetd sends DO AUTHENTICATION even if a o [2000/07/02] kern/19654 mbr 20 dc ports in one machine (5x 4port card s [2000/07/08] bin/19773 markm [PATCH] telnet infinite loop depending on o [2000/07/13] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/18] kern/20016 threads pthreads: Cannot set scheduling timer/Can f [2000/07/19] kern/20040 jhb Toshiba 2775 hangs after pcib0 driver is o [2000/07/25] bin/20172 byacc 1.9 fails to generate $default tran o [2000/07/29] bin/20282 qa [sysinstall] sysinstall does not recover o [2000/07/30] i386/20308 mux [panic] vidcontrol VESA_800x600 causes a s [2000/08/10] bin/20521 mjacob /etc/rmt several problems o [2000/08/10] kern/20523 bde [patch] support for PCI multiport cards f o [2000/08/16] bin/20633 fdisk doesn't handle LBA correctly o [2000/08/23] kern/20804 deadlocking when using vnode disk file an o [2000/08/26] kern/20861 threads libc_r does not honor socket timeouts o [2000/08/29] bin/20912 marcel gdb does not recognise old executables. o [2000/08/31] kern/20958 mdodd ep0 lockup with ifconfig showing OACTIVE o [2000/09/07] bin/21089 vi silently corrupt open file on SIGINT w a [2000/09/16] kern/21304 mbr dc0 watchdog timeouts on NetGear FA310TX o [2000/09/20] misc/21406 [boot] bootinst or booteasy overwrites se o [2000/09/21] kern/21461 imp ISA PnP resource allocator problem o [2000/09/22] kern/21463 emulation Linux compatability mode should not allow o [2000/09/29] kern/21642 Compaq Netelligent 10/100 card (TI Thunde a [2000/10/07] kern/21808 [patch] msdosfs incorrectly handles vnode o [2000/10/15] kern/21998 green [patch] ident only for outgoing connectio o [2000/10/20] kern/22142 cjc securelevel does not affect mount o [2000/10/25] bin/22291 [nfs] getcwd() fails on recently-modified o [2000/10/30] kern/22417 gibbs advansys wide scsi driver does not suppor o [2000/11/13] kern/22826 emulation Memory limits have no effect in linux com a [2000/11/14] bin/22846 bms Routed does not reflect preference of Int f [2000/11/18] i386/22944 tegge isa_dmainit fails on machines with 512MB o [2000/11/20] gnu/22972 obrien Internal Compiler Error o [2000/11/25] bin/23098 qa [patch] [sysinstall] if installing on a s o [2000/12/14] kern/23535 imp 4.x kernels seem to no longer support Ada o [2001/01/04] kern/24074 mdodd Properties of token-ring protocol must be o [2001/01/05] kern/24085 syncing on shutdown leaves filesystem dir o [2001/01/07] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN o [2001/01/12] bin/24271 dumpon should check its argument more f [2001/01/16] bin/24391 mbr cannot kill amd after interface disappear o [2001/01/19] bin/24461 Being able to increase the YP timeout wit o [2001/01/20] threads/24472threads libc_r does not honor SO_SNDTIMEO/SO_RCVT o [2001/01/25] kern/24629 harti ng_socket failes to declare connected dat o [2001/01/25] threads/24632threads libc_r delicate deviation from libc in ha o [2001/01/25] kern/24641 threads pthread_rwlock_rdlock can deadlock s [2001/01/30] kern/24740 cy filesystem corruption CFP1080 CAM SCSI ca o [2001/02/10] kern/24982 stack gap usage o [2001/02/11] i386/24997 /boot/loader cannot handle extended dos p o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ 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/05] bin/25542 standards /bin/sh: null char in quoted string o [2001/03/13] i386/25781 i386 Statclocks cannot be disabled on ServerWo o [2001/03/16] bin/25851 qa [patch] security hole in anonymous FTP se o [2001/03/18] bin/25886 cgetset(3) doesn't get cleared when switc o [2001/03/19] kern/25910 sound [sound] Kernel sound driver may die if a o [2001/03/20] kern/25950 obrien Bad drives on asr look zero-length and pa a [2001/03/22] kern/25986 andre Socket would hang at LAST_ACK forever. o [2001/03/23] kern/26035 sound [sound] [hang] system hangs when playing o [2001/03/24] kern/26048 obrien 4.3-RC: SMP and asr driver don't work to a [2001/03/27] kern/26142 [nfs] Unlink fails on NFS mounted filesys o [2001/03/28] kern/26171 emulation not work Linux-emulator, but hi is work i o [2001/04/03] kern/26316 Booting FreeBSD on VMware2 with 2 or 3 et o [2001/04/03] bin/26320 alfred [mount] [patch] mountd breaks IRIX automo a [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- o [2001/04/10] kern/26486 [patch] setnetgrent hangs when netgroup c o [2001/04/25] bin/26842 dd dump with h flag takes a very long time a [2001/04/26] bin/26869 vi(1) crashes in viewing a file with long o [2001/04/27] bin/26897 qa [sysinstall] 4.3R sysinstall fails to cre o [2001/05/03] kern/27059 scsi (symbios) SCSI subsystem hangs under heav f [2001/05/11] kern/27275 kernel bug ? (negative sbsize) o [2001/05/20] kern/27474 Interactive use of user PPP and ipfilter s [2001/05/22] kern/27543 /proc/cpuinfo does not handle SMP hosts o [2001/05/24] docs/27605 doc Cross-document references () o [2001/05/27] kern/27694 sound [sound] Panic in csa(4) a [2001/06/05] kern/27893 sos can't burn audio cds on LG CD-RW CED-8083 o [2001/06/05] conf/27896 Error in /etc/exports invalidates entire o [2001/06/09] kern/27995 src/sys/pci if_pcn.c revision 1.21 resp. o [2001/06/17] bin/28223 su doesn't look at login.conf all the tim o [2001/06/26] bin/28424 mtree fails to report directory hierarchy o [2001/06/29] kern/28508 scsi problems with backup to Tandberg SLR40 st o [2001/07/04] kern/28692 sound [sound] ICH sound driver hangs kernel o [2001/07/06] kern/28768 The system doesn't get connects on one of o [2001/07/07] bin/28798 mikeh mail(1) with a pager (more) requires fg/C 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/07/27] bin/29253 natd forgets about udp connections o [2001/08/02] bin/29375 qa [sysinstall] disk editor gets confused by o [2001/08/03] kern/29421 Update a file with mmap will cause mtime/ o [2001/08/05] kern/29465 sound [sound] Can't probe NeoMagic 256AX audio f [2001/08/11] kern/29626 ifconfig causes kernel panic in 4.4-PRERE o [2001/08/13] kern/29686 kevent EV_ADD EVFILT_WRITE does the wrong 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/23] kern/29983 imp Problem with "TI PCI-1250 PCI-CardBus Bri o [2001/08/27] kern/30125 btx/bootloader dumps very often if serial f [2001/08/28] kern/30160 [panic] kernel panic when flash disk is r f [2001/08/29] i386/30206 mdodd [boot] PS/2 server 85 can't boot kern.flp o [2001/08/30] kern/30223 [patch] Using /usr/share/examples/kld/cde o [2001/08/31] kern/30241 gibbs System crash w/err: AHC0; AHC_INTR - refe o [2001/09/04] bin/30310 top does not show CPU usage o [2001/09/06] conf/30399 Have Fortran use the CPUTYPE variable o [2001/09/10] kern/30482 calcru calls printf while holding a spin 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 a [2001/09/24] i386/30802 gibbs repeat of i386/22760. Adaptec SCSI contro o [2001/09/26] bin/30837 qa [sysinstall] sysinstall doesn't set the s o [2001/09/27] i386/30860 [hang] While install after "Mounting root o [2001/09/27] bin/30869 dump(8) does not dump all files of a file s [2001/09/29] i386/30921 [kbd] ACER mechanic ps/2 keyboard don´t w o [2001/10/01] kern/30948 ls'ing mounted brand new floppy locks up o [2001/10/01] kern/30958 rwatson QUOTA with 0 bytes in quota.user hangs up f [2001/10/01] bin/30966 fenner TCPdump repeating on Radius accounting pa o [2001/10/01] kern/30971 peter [nfs] NFS client modification time resolu 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/14] kern/31266 cjc System can be crashed with "ls -al /flopp o [2001/10/15] bin/31304 joe [patch] fix crunchgen to work with more c o [2001/10/18] bin/31363 qa [sysinstall] "partition editor" silently o [2001/10/30] conf/31631 "MAC address" can't be acquired properly. o [2001/11/04] kern/31746 failed connect(2) seems to cause problems o [2001/11/06] kern/31790 [nfs] problem with NFS and jail() o [2001/11/12] kern/31940 nge gigabit adapter link reset and slow t o [2001/11/14] i386/31979 [kbd] Setup and boot locks Compaq Armada o [2001/11/19] kern/32098 semctl() does not propagate permissions a [2001/11/19] kern/32118 mbr 21143 with dc driver will not select 10ba o [2001/11/20] ports/32121 x11 XFree86-4-Server: xf86cfg 4.1.0 writes ba o [2001/11/26] bin/32295 threads pthread dont dequeue signals o [2001/11/28] kern/32353 if kern.maxproc > 512 sybase ASE 11.9.2( 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 o [2001/12/10] kern/32668 peter [nfs] NFS directory removal problems mani o [2001/12/11] bin/32686 wosch locate command dumps a core file with bro f [2001/12/13] bin/32791 ru FreeBSD's man(1) utility vulnerable to ol o [2001/12/22] ports/33080 ume gkrellmvolume interferes with the ability a [2001/12/22] i386/33089 murray GENERIC bloat causes 'make world' to brea o [2001/12/24] kern/33138 [patch] pnp problem in 4.3, 4.4, 4.5 f [2001/12/26] bin/33213 ume rarpd(8) fails to init IPv6 enabled inter o [2001/12/30] kern/33344 davidxu memory leak in device resource config loa o [2001/12/31] bin/33370 qa [sysinstall] post-configuration issue o [2002/01/02] kern/33464 soft update inconsistencies after system o [2002/01/04] kern/33532 sound [sound] Playing audio on some soundcards f [2002/01/04] gnu/33551 cvs chokes on OpenBSD repositories o [2002/01/08] bin/33672 [patch] telnetd and mount_mfs signal hand f [2002/01/08] kern/33696 mbr [panic] Driver mistake: repeat make_dev(" o [2002/01/13] kern/33833 luigi Correct kernel config for 4.4-RELEASE is o [2002/01/16] kern/33940 [patch] quotactl allows compromise gid-qu o [2002/01/18] kern/34017 The siginfo_t passed to the signal handli o [2002/01/18] bin/34030 miibus.ko can be loaded into the kernel w s [2002/01/20] i386/34092 reboot hangs the system (IBM PC Server 31 o [2002/01/21] gnu/34128 sdiff "e" doesn't work with some editors o [2002/01/25] gnu/34246 joe CVS doesn't rebuild CVSROOT/options f [2002/01/25] bin/34269 fenner tcpdump -v incorectly identifies packets o [2002/01/25] bin/34270 man -k could be used to execute any comma o [2002/01/31] kern/34470 bde Modem gets sio1 interrupt-level buffer o o [2002/02/01] threads/34536threads accept() blocks other threads o [2002/02/03] kern/34568 [lpt] turning printer on and off hangs th f [2002/02/09] kern/34765 darrenr Unloading the ipl.ko module will panic th o [2002/02/11] bin/34811 sh: "jobs" is not pipeable o [2002/02/11] kern/34842 [NIS] [patch] VmWare port + NIS causes "b o [2002/02/18] i386/35078 [patch] Uninitialized pointer dereference o [2002/02/20] kern/35136 luigi VLAN & bridging & MTU o [2002/02/22] bin/35214 obrien dump program hangs while exiting o [2002/02/26] i386/35350 Can't boot on ASUS TXP4 o [2002/02/26] kern/35351 sound [sound] emu10k1: no posibility to record o [2002/02/28] 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/03/01] kern/35442 [patch] Problem transmitting runts in if_ o [2002/03/03] kern/35506 jon innetgr() doesn't match wildcard fields i o [2002/03/03] kern/35511 sis(4) multicast filtering doesn't pass s o [2002/03/07] kern/35615 sound [sound] [hang] ES1978 Maestro 2E sound ca f [2002/03/07] kern/35645 bms Layer 2 switching using default router of o [2002/03/08] kern/35669 [nfs] NFSROOT breaks without a gateway s [2002/03/08] docs/35678 doc docproj Makefiles for web are broken for 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] conf/35726 andre [patch] [rc.network] can't use ifconfig o o [2002/03/14] gnu/35878 /usr/bin/strip resets ABI type to FreeBSD o [2002/03/15] bin/35925 qa [sysinstall] fixit floppy cannot be mount a [2002/03/16] bin/35985 qa [sysinstall] swap double mount o [2002/03/17] i386/36003 Cyclades Cyclom YeP causes panics on Free p [2002/03/18] kern/36038 bp [smbfs] sendfile(2) on smbfs fails, expos o [2002/03/19] misc/36086 trhodes Kerberos Problem/Handbook wrong/Followup a [2002/03/19] bin/36110 dmesg output corrupt if /dev/console is b o [2002/03/20] kern/36147 bogus irq 7 message being issued o [2002/03/21] docs/36168 doc -pthread/_THREAD_SAFE docs missing in gcc o [2002/03/22] kern/36219 [patch] poll() behaves erratic on BPF fil o [2002/03/28] kern/36415 [bktr] [patch] driver incorrectly handles o [2002/03/29] kern/36504 [patch] crash/panic vm_object_allocate un o [2002/03/29] bin/36508 qa [sysinstall] installation floppy bug (4.5 o [2002/03/30] i386/36517 sis driver can't map ports/memory for Net o [2002/03/31] kern/36566 [smbfs] System reboot with dead smb mount o [2002/04/05] kern/36784 Can't fcntl(fd, F_SETFL, ...) on a pseudo f [2002/04/07] ports/36846 barner fxtv 1.03 freezes the system when $LANG=d o [2002/04/08] bin/36867 [patch] games/fortune: add FORTUNE_PATH e o [2002/04/08] bin/36911 qa [sysinstall] installation floppies miss a o [2002/04/09] gnu/36926 send-pr destroys PR if emacs interrupt ch o [2002/04/10] i386/36943 reboot hangs on Tyan Thunder K7 with SMP o [2002/04/14] kern/37057 Problem with rlimits on filesystem mounte o [2002/04/14] kern/37064 imp [pccard] System hangs when removing wire 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/22] kern/37326 [bktr] smbus/bktr crash when omitting "de o [2002/04/22] bin/37343 portmap TCP binds strangeness o [2002/04/25] kern/37436 [hang] accept dead loop when out of file o [2002/04/25] kern/37441 davidxu [patch] ISA PNP parse problem o [2002/04/27] kern/37502 [nfs] NFS client ignores mtime.tv_usec fo o [2002/04/28] i386/37523 davidxu [patch] lock for bios16 call and vm86call o [2002/04/30] kern/37589 imp Kernel panics upon resume from zzz on my o [2002/04/30] ports/37596 portmgr EMACS_PORT_NAME=xemacs21 forks make infin o [2002/05/02] kern/37675 le [vinum] Page fault when newfs'ing a vinum o [2002/05/03] kern/37710 qa LAN interface in wrong state after attemp f [2002/05/05] kern/37775 [smbfs] netsmb/smb_subr.c needs opt_globa o [2002/05/13] ports/38018 java www/jakarta-tomcat4: make passing of JVM f [2002/05/13] ports/38020 java www/jakarta-tomcat4: stop tomcat via java o [2002/05/14] i386/38070 [panic] 4.6-PRERELEASE panics on resume o o [2002/05/15] kern/38095 bp vlan not supported with fxp f [2002/05/17] kern/38166 gad ipv6_gateway_enable="YES" breaks lpd f [2002/05/23] i386/38459 mux Intel SB82558B NIC won't initialize prope o [2002/05/24] i386/38484 [hang] probe freeze while probing devices o [2002/05/24] kern/38495 bms soreceive fails to maintain invariant on o [2002/05/24] kern/38518 [boot] combination of pr-27087 and pr-369 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 a [2002/05/25] kern/38554 bms changing interface ipaddress doesn't seem o [2002/05/26] bin/38582 qa [sysinstall] sysinstall sets newfs flag a a [2002/05/27] gnu/38594 kan Fortan program don't link post gcc-3.1 o [2002/05/27] bin/38609 qa [sysinstall] sysinstall should know the s o [2002/05/27] kern/38632 imp Loss of connection with wi cards o [2002/05/30] i386/38731 Freebsd doesn't support ( pdc20276 / Raid o [2002/05/30] kern/38752 andre rn_walktree_from not halting at the right o [2002/06/01] kern/38795 sound [sound] kldunload of snd_ess, snd_sb16, s o [2002/06/03] kern/38872 [nfs] nfs code ignores possibility of MGE o [2002/06/04] i386/38894 Dell PowerEdge 4600 PCI Bus scan problems o [2002/06/05] bin/38918 edquota breaks silently when quota-marked o [2002/06/07] kern/38983 Kernel fails to access disk o [2002/06/12] kern/39185 core dump binary in single user mode o [2002/06/13] kern/39233 bms NonConforming IPsec implementation from F o [2002/06/13] kern/39252 Syscons doesn't support 8-bit control cha o [2002/06/14] kern/39260 sound [sound] neomagic: pcm0 locks on boot, Com o [2002/06/15] kern/39329 [mount] '..' at mountpoint is subject to o [2002/06/15] kern/39331 dwmalone namei cache unreliable for __getcwd() o [2002/06/17] kern/39388 scsi ncr/sym drivers fail with 53c810 and more 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/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/27] threads/39922threads [PATCH?] Threaded applications executed w o [2002/06/27] kern/39928 imp wi0 timeouts and hangs the system while s a [2002/06/27] kern/39937 bms ipstealth issue a [2002/06/28] bin/39940 [patch] /usr/sbin/periodic sends thousand o [2002/06/29] kern/40001 le [vinum] vinum showing -2 drives after rem o [2002/06/30] i386/40044 SMP kernel fails to boot on DELL 610 o [2002/07/02] kern/40122 sound [sound] Device pcm stopps booting Kernel f [2002/07/03] kern/40139 darrenr ipfilter issue o [2002/07/05] kern/40206 Can not assign alias to any POINTOPOINT i o [2002/07/05] bin/40215 wpaul [nis] NIS host search not terminate o [2002/07/05] i386/40219 i386 [apm] apm breaks removable media o [2002/07/05] bin/40227 [patch] CVS client doesn't upload new fil o [2002/07/06] bin/40260 qa [sysinstall] hang when detecting devices f [2002/07/06] i386/40274 "fxp: device timeout" errors during heavy 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 o [2002/07/10] kern/40394 if_tap driver hard coded permission check o [2002/07/12] bin/40471 des chpass(1) -a option broken in CURRENT o [2002/07/14] kern/40561 TTCP does not work with IPv6 o [2002/07/14] kern/40574 sound [sound] NeoMagic soundcard detection on G o [2002/07/15] i386/40577 [hang] post-October 2001 Dell Inspiron 25 o [2002/07/19] kern/40787 kernel panic if PCMCIA CD-drive with moun o [2002/07/19] usb/40792 usb signals lead to data loss on device ugen o [2002/07/22] kern/40895 scsi wierd kernel / device driver bug s [2002/07/30] i386/41138 vr0 locks up on one hub, OK on another o [2002/07/31] kern/41216 [nfs] Get "NFS append race" error o [2002/08/01] conf/41242 periodic scripts make unwarranted assumpt 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/04] kern/41331 threads Pthread library open sets O_NONBLOCK flag o [2002/08/05] bin/41350 vnconfig: apparent off-by-one bug o [2002/08/07] kern/41402 [panic] kernel panics in pmap_insert_entr o [2002/08/07] bin/41410 /bin/sh bug on expanding $? in here-docum o [2002/08/08] bin/41435 mbr dhclient writes lease file that it can't o [2002/08/13] kern/41632 luigi bridging when one interface has no carrie a [2002/08/14] bin/41647 bms ifconfig doesn't accept lladdr along with o [2002/08/16] kern/41720 if_nge_load=YES make system not bootable o [2002/08/17] kern/41740 le [vinum] page fault while rebuilding; inab o [2002/08/18] bin/41757 qa [sysinstall] sysinstall 4.6.x unstable s [2002/08/19] bin/41776 bms mrouted doesn't route multicast packets o [2002/08/19] conf/41777 /etc/periodic/daily/100.clean-disks remov o [2002/08/20] docs/41824 murray LANG is not documented in setlocale(3) o [2002/08/21] bin/41850 qa [sysinstall] sysinstall fails to create r o [2002/08/25] bin/42004 quota and rpc.statd are still IPv4 only, p [2002/08/26] kern/42030 bms panic when zebra works on detaching tun i o [2002/08/27] kern/42089 phk ntp_gettime returns time in wrong scale o [2002/08/27] bin/42093 ypbind hangs on NIC with the lowest scope o [2002/08/28] misc/42115 luigi PicoBSD: fix build script for 4.6-STABLE o [2002/08/29] kern/42173 sound [sound] Sony VAIO FXA 53 (or FXA 679 in M o [2002/08/30] i386/42198 pjd Kernel panics or system hangs up with big s [2002/08/30] kern/42216 rwatson simultaneous multiple server network fail o [2002/09/04] bin/42407 ppp(8) IPV6CP fails o [2002/09/07] i386/42539 Fatal Trap 12 resulting from Conner Perip o [2002/09/09] kern/42578 Using PCI serial cards (puc) in SMP machi p [2002/09/09] kern/42580 robert kernel crash when starting ISC 3.2 X11 bi o [2002/09/10] kern/42621 imp Dell Inspiron 5000e hangs when using Orin o [2002/09/11] kern/42652 [smbfs] error deleting r/o (by windows) f o [2002/09/11] bin/42658 markm recompile /usr/src/libexec/telnetd and lo o [2002/09/13] gnu/42726 cvsadm cvs -R pserver & val-tags: story continue p [2002/09/13] kern/42727 bms [PATCH] Wrong MTU in need-frag ICMP using o [2002/09/13] i386/42750 Fdisk makes no difference between FAT32, o [2002/09/14] kern/42769 [boot] Boot stalls if the system has a se o [2002/09/14] i386/42784 imp pcmcia 16bit network card removal locks a o [2002/09/15] kern/42801 [hang] FreeBSD freezes when opening cuaa0 a [2002/09/18] kern/42937 bms panic when ARP cache uses up all mbufs o [2002/09/20] kern/42983 imp wi0 sporadically freezes the system for 1 o [2002/09/21] i386/43151 Panic 20 seconds after resume o [2002/09/22] bin/43223 getnetby{name|addr} broken for DNS lookup o [2002/09/24] bin/43337 des fetch: -s fails if -4 or possibly other o a [2002/09/25] i386/43366 bms Cannot format media in USB floppy devices o [2002/09/29] kern/43491 microuptime () went backwards o [2002/09/30] bin/43501 getpwnam, getpwuid fail when linking agai o [2002/10/02] kern/43576 imp Problem with wi driver and Lucent Orinoco o [2002/10/02] bin/43592 mktime rejects dates at the start of dayl a [2002/10/03] kern/43605 luigi enabling polling in the kernel causes pag o [2002/10/03] kern/43625 imp Wi(4) driver hangs after long data transf o [2002/10/04] bin/43674 [patch] login(1): able to bypass expired o [2002/10/05] kern/43713 during install, mounting root from ufs:/d o [2002/10/08] conf/43837 wollman PKST (pakistan daylight time) changed fro o [2002/10/09] i386/43852 4.7-RC "device timeout" problem o [2002/10/11] java/43924 glewis writing from JAVA to a pipe sometimes han o [2002/10/12] kern/43954 [nfs] nfs-blocked process can't return or a [2002/10/14] kern/44030 VNode/Swap troubles o [2002/10/15] kern/44087 [crash] fatal kernel trap when ifconfig a o [2002/10/16] i386/44130 i386 Enabled apm hangs up FreeBSD kernel on i8 o [2002/10/16] kern/44150 Diskless kernel may crash, depends on the o [2002/10/18] kern/44202 -stable rp driver does not work with mult o [2002/10/18] kern/44218 Init dies during boot after upgrade from p [2002/10/21] kern/44336 [nfs] NFSv3 client broken - security prob o [2002/10/21] kern/44355 gnn After deletion of an IPv6 alias, the rout o [2002/10/23] kern/44417 luigi ipfw layer2 rules are not checked for eth s [2002/10/27] bin/44518 yar ftpd does not show OPIE OTP challenge o [2002/10/27] docs/44519 obrien ftpd.conf(5) contains references to ftpd( o [2002/10/28] gnu/44564 peter [PATCH] Aborted cvs session causes an end o [2002/10/28] kern/44578 [nis] getnetgrent fails to read NIS netgr o [2002/10/30] kern/44744 [patch] [vn] VN devices can hang system F o [2002/11/01] bin/44808 opiepasswd makes bad seed for existing us o [2002/11/04] i386/44867 Frequent hard hangs on ASUS P4T-E/P4S-533 o [2002/11/07] kern/45023 emulation flexlm does not run with linux-base-7, st o [2002/11/09] gnu/45168 Buffer overflow in /usr/bin/dialog o [2002/11/13] bin/45272 dump/restore problem f [2002/11/15] docs/45303 remko Bug in PDF DocBook rendering o [2002/11/15] kern/45322 Panic on resume (zone: entry not free) o [2002/11/17] kern/45373 mckusick softupdate / fs damaged after loss of pow o [2002/11/18] kern/45403 imp Cannot install -CURRENT via pccard networ o [2002/11/19] bin/45478 /bin/sh coredump o [2002/11/20] i386/45525 imp Dell Inspiron 7000 does not recognize PC- f [2002/11/20] bin/45529 johan hexdump core-dumps with certain args [PAT o [2002/11/21] kern/45558 [msdosfs] mdconfig and msdosfs make fs wr o [2002/11/21] bin/45565 qa [sysinstall] write error, filesystem full o [2002/11/21] kern/45568 gibbs ahc(A19160) pci parity error o [2002/11/24] kern/45673 sound [sound] [patch] PC98 internal CS4231A is f [2002/11/25] bin/45721 darrenr ipfilter's flags and icmp-type processing p [2002/11/25] kern/45733 bms file descriptor flags and socket flags ou o [2002/11/27] i386/45773 Softboot causes autoconf failure on Broad o [2002/11/27] kern/45777 crashdump issue with too-small dumpdev o [2002/12/02] kern/45913 imp WaveLan driver problems with latest -CURR 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/05] kern/46017 [smbfs] smb mounts break /etc/periodic/we o [2002/12/06] kern/46036 inaccurate timeouts in select(),nanosleep o [2002/12/10] usb/46176 usb [panic] umass causes kernel panic if devi o [2002/12/11] i386/46194 5.0-RC1 kern floppy load fails on AMD K6- o [2002/12/13] kern/46239 standards posix semaphore implementation errors f [2002/12/13] kern/46245 sound [sound] AC'97 is not supported on ABIT BW s [2002/12/18] ports/46338 ports-bugs security/cyrus-sasl 1.5.27_7 mysql_verify o [2002/12/18] bin/46352 Open file descriptors and signal handling o [2002/12/19] i386/46371 usb USB controller cannot be initialized on I o [2002/12/23] i386/46484 System panics upon configuration of bge N p [2002/12/27] kern/46557 pjd ipfw pipe show fails with lots of queues a [2002/12/31] kern/46647 silby Failure to initialize MII on 3Com NIC res o [2003/01/01] bin/46670 qa [sysinstall] 5.0-RC2 install leaves CD dr o [2003/01/01] bin/46676 ru [PATCH] bsd.dep.mk restricts domain of ta o [2003/01/02] kern/46694 imp Getting DUP packets when in Promiscous mo o [2003/01/08] i386/46865 [panic] kernel panic on SuperMicro 6012-8 o [2003/01/08] bin/46866 NIS-based getpwent() falsely returns NULL o [2003/01/17] i386/47167 [panic] 5.0 RC 3 (and 2) has 1 second upt o [2003/01/20] i386/47236 Console missing during bootup on Sony Pic o [2003/01/21] i386/47279 [hang] IBM 370 hangs on reboot o [2003/01/21] kern/47286 device probing not verbose when using boo o [2003/01/22] kern/47359 dd panic after kldunload snp o [2003/01/23] bin/47384 qa [sysinstall] sysinstall ignores intended o [2003/01/24] i386/47449 Thinkpad 755CD floppy boot fails o [2003/01/27] kern/47544 scottl iir does not detect direct access drives o [2003/01/29] kern/47628 trhodes [msdosfs] [patch] msdosfs file corruption o [2003/01/29] kern/47647 [crash] init died with signal 6 [4.7] s [2003/02/02] kern/47813 pseudo-device gre doesn't appear to work o [2003/02/05] kern/47937 hw.ncpu and kern.smp.cpus duplicate same s [2003/02/05] kern/47939 [bktr] 5.0-Current freezes when bktr devi o [2003/02/05] kern/47951 [hang] rtld in ld.so will livelock in som o [2003/02/05] alpha/47952 alpha DEFPA causes machine check with V5.0-rele o [2003/02/07] kern/48033 [ffs] FFS superblock flags are being igno o [2003/02/07] kern/48062 mckusick mount -o snapshot doesn't work on +100GB o [2003/02/08] kern/48100 Fatal panic in vm_map_lookup_entry ... [S o [2003/02/09] kern/48117 SMP machine hang during boot related to i o [2003/02/11] kern/48166 panic: pmap_new_proc: u_map allocation fa o [2003/02/11] bin/48183 marcel [patch] gdb on a corefile from a threaded o [2003/02/14] bin/48271 bug with find's -delete option s [2003/02/14] kern/48279 [bktr] Brooktre878 may cause freeze o [2003/02/16] conf/48325 /etc/periodic/security/100.chksetuid does o [2003/02/17] kern/48393 mckusick ufs2 snapshot code bugs p [2003/02/18] bin/48424 Integer overflow in cksum(1) and sum(1) f o [2003/02/18] kern/48425 Tape drive EOT handling problems in 4.7 o [2003/02/19] misc/48461 murray $EDITOR on the fixit CD is wrong. o [2003/02/24] i386/48614 i386 VESA VGA modes for syscons lock up machin o [2003/02/26] i386/48691 [panic] kernel panics on ASUS A7N266-VM M o [2003/02/27] bin/48730 sos burncd does not handle signals and causes o [2003/02/27] kern/48741 darrenr ipnat corrupts packets on gre interface w o [2003/02/27] i386/48752 freeze when installing 5.0 Release o [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/03/02] threads/48856threads Setting SIGCHLD to SIG_IGN still leaves z o [2003/03/03] bin/48865 Dumps made on FreeBSD 5.0-RELEASE are unr o [2003/03/03] conf/48881 [PATCH] The influence of /etc/start_ifnam o [2003/03/07] kern/48996 Fatal trap 12 with incoming traffic from o [2003/03/09] kern/49040 problem mounting root; ffs_mountroot can' f [2003/03/09] bin/49048 [patch] ctm(1) does not check parent dire f [2003/03/09] ports/49056 trevor Festival fixes for newer GCCs [PATCH] o [2003/03/10] threads/49087threads Signals lost in programs linked with libc o [2003/03/13] kern/49980 sound [sound] [patch] enable ThinkPAD X24 sound f [2003/03/13] bin/49984 des openSSH crashes while password based auth f [2003/03/17] ports/50062 daichi portupgrade does not process directives f p [2003/03/28] bin/50384 robert pkg_version -v core-dumps when no package o [2003/04/03] kern/50574 mbr dc driver incorrectly detects ADMtek chip o [2003/04/11] kern/50827 [PATCH] no sane record locking on *nix. s [2003/04/12] kern/50856 [mfs] panic if mounting /tmp as mfs with o [2003/04/13] i386/50887 MBR on kern.flp fails Compaq MBR validati p [2003/04/17] conf/51085 ache FreeBSD is missing ja_JP.eucJP locale. o [2003/04/18] www/51135 www Problems with the mailing-lists search in o [2003/04/20] bin/51171 /bin/sh has only 32-bit arithmetics that o [2003/04/21] standards/51209standards [PATCH] add a64l()/l64a/l64a_r functions o [2003/04/22] kern/51274 ipfw ipfw2 create dynamic rules with parent nu o [2003/04/23] kern/51308 sound [sound] Creative SB32 doesn't work under o [2003/04/23] kern/51332 mjacob QUIRK: BNCHMARK DLT1 requires SA_QUIRK_1F o [2003/04/24] kern/51338 sound [sound] [hang] system hangs randomly beca 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 [nullfs] [patch] allow to work with devic o [2003/04/30] bin/51628 [nis] ypmatch doesn't match keys in legac o [2003/05/02] kern/51685 [hang] Unbounded inode allocation causes o [2003/05/04] kern/51742 [panic] ffs_vfree: freeing free inode o [2003/05/06] bin/51827 getaddrinfo() is broken with numeric serv f [2003/05/06] bin/51892 des can't ssh after su to different local use o [2003/05/08] kern/51982 sio1: interrupt-level buffer overflows s [2003/05/11] ports/52079 ports-bugs vmware3 hangs when nmdm(4) is used as COM s [2003/05/12] kern/52110 green [unionfs] FS corruption when using unionf o [2003/05/12] i386/52128 Unable to floppy install on Toshiba Libre 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/19] kern/52445 [mfs] panic when mounting floppy on MFS f o [2003/05/22] i386/52556 i386 Syskonnect SK9843SX, sk driver, MII not d o [2003/05/22] i386/52561 5.1-BETA install fails on Dell PowerEdge o [2003/05/22] i386/52581 i386 Boot loaders reading more than one sector o [2003/05/22] kern/52585 bms Kernel panic with ipfw2 and syncookies f [2003/05/22] i386/52593 mdodd [apm] Kernel panic when starting apm o [2003/05/24] i386/52638 i386 SCSI U320 on SMP server won't run faster f [2003/05/27] kern/52718 jeff changes to kern_umtx.c causes panic in ca o [2003/05/28] bin/52743 /etc/ppp/ppp.linkup instability issues s [2003/05/28] kern/52745 [unionfs] Fatal trap 12: page fault while o [2003/05/31] kern/52818 vm_fault() calls vput() on shared-locked o [2003/06/03] kern/52916 le [vinum] vinum causes panic after start/st p [2003/06/04] kern/52935 bms occasional panic in ip_input with IPSEC o [2003/06/04] kern/52936 [nfs] Huge writes to nfs exported FAT fil o [2003/06/04] kern/52943 [hang] reproducable system stuck just bre o [2003/06/06] i386/52975 i386 CPUTYPE=k7 results in non-functional /boo o [2003/06/10] kern/53137 [panic] background fscking causing ffs_va o [2003/06/11] i386/53200 i386 [boot] 5.1-RC1 SMP kernel boot gags at "A o [2003/06/13] kern/53264 jhb [sound] [patch] PCM interrupt not routed o [2003/06/16] i386/53382 i386 Repetable panics in ffs_vget() on Prolian f [2003/06/18] kern/53433 heavy i/o on GBDE partition on SMP locks o [2003/06/18] bin/53434 pw disallow a password including space. o [2003/06/18] kern/53447 bde poll(2) semantics differ from susV3/POSIX a [2003/06/20] kern/53566 mbr [panic] IBM Eserver (245 || 345) + ServeR o [2003/06/22] bin/53606 roberto ntpdate seems to hang system o [2003/06/23] i386/53620 i386 [install] Kernel panics / reboots during o [2003/06/27] bin/53839 qa [sysinstall] disklabel editor fails on po f [2003/06/30] kern/53920 andre 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/02] i386/54033 i386 Disk lockup. o [2003/07/04] bin/54097 Non-local yppasswd -d broken in 5.1-CURRE o [2003/07/07] kern/54189 [dns] resolver should resolve hostnames w s [2003/07/08] kern/54211 rwatson Seeing other uid with kern.file sysctl. o [2003/07/10] kern/54309 silby TCP Packet of 64K-1 crashes FreeBSD4.8 o [2003/07/10] gnu/54317 sobomax tar with very large packages and portinst o [2003/07/11] bin/54401 [patch] pppstats prints 0 for absolute va o [2003/07/12] standards/54410standards one-true-awk not POSIX compliant (no exte f [2003/07/13] ports/54424 daichi portupgrade ignores ALT_PKGDEP o [2003/07/13] bin/54446 pkg_delete doesn't honour symlinks, portu o [2003/07/14] java/54463 glewis Apparent bug in jdk13 o [2003/07/15] i386/54501 i386 Promise Ultra133 TX2 does not work proper s [2003/07/16] kern/54534 [unionfs] unionfs && mfs|md crashing mach f [2003/07/16] i386/54549 [install] panic on install on Dell 600sc o [2003/07/17] kern/54595 sound [sound] emu10k1 sound driver locks system o [2003/07/21] kern/54705 sound [sound] codec timeout during read of regi o [2003/07/22] i386/54756 acpi ACPI suspend/resume problem on CF-W2 lapt p [2003/07/27] bin/54959 tr utility has a bug in ISO8859-2 locale p [2003/07/28] ports/54970 trevor emulators/linux_base Port Makefile "dange o [2003/07/28] conf/54971 mtm /etc/rc.d/mountcritermote requires ldconf a [2003/07/29] kern/55018 andre [patch] Digiboard PC/Xem fails to initial o [2003/07/29] kern/55028 The broken FAT12 filesystem causes system o [2003/08/02] kern/55175 alfred LOR in select and poll o [2003/08/05] gnu/55278 Externs on implicit declarations o [2003/08/05] kern/55297 [vfs_subr.c] kernel panic after running X o [2003/08/07] bin/55346 /bin/sh eats memory and CPU infinitely o [2003/08/07] bin/55349 mbr Amd mixes up symlinks in it's virtual fil o [2003/08/08] bin/55366 le [vinum] [patch] vinum makes /dev/vinum wi s [2003/08/08] ports/55371 ports-bugs xfig dumps core (unaligned access), if US o [2003/08/08] kern/55379 [vm_page_inserti] kernel crashes randomly o [2003/08/10] bin/55448 dbm_nextkey() misbehaves after dbm_store( o [2003/08/11] bin/55457 marcel GDB gets confused debugging libc_r thread a [2003/08/13] kern/55542 andre [patch] discard oversize frame (ether typ o [2003/08/13] i386/55555 i386 system freezes with access to /dev/ums0 o [2003/08/13] i386/55561 i386 SMbus and I2C don't attach when loaded as o [2003/08/15] i386/55603 unable to reboot when system runs from My o [2003/08/15] i386/55615 i386 machine freezes - goes on after key press o [2003/08/16] kern/55617 [smbfs] Accessing an nsmb-mounted drive v o [2003/08/17] i386/55661 acpi ACPI suspend/resume problem on ARMADA M70 o [2003/08/20] kern/55727 rl(4) not working in recent 4.8-STABLE: w o [2003/08/20] kern/55822 acpi No ACPI power off with SMP kernel o [2003/08/21] bin/55829 __stderrp not defined in libc.so.3 (compa o [2003/08/21] bin/55846 and conflict a [2003/08/24] i386/55930 i386 partly configured serial port freezes sys o [2003/08/24] kern/55934 le [vinum] [workaround] kernel panics while o [2003/08/25] bin/55956 passwd chat script not backward compatibl o [2003/08/25] bin/55965 sshd: problems with HostBasedAuthenticati o [2003/08/25] kern/55975 thomas ATAPICAM- READ_6(0x08) fails for ATAPI ta o [2003/08/26] kern/56008 scottl ps shows L flag erroneously with certain o [2003/08/27] kern/56024 acpi ACPI suspend drains battery while in S3 o [2003/08/27] kern/56031 luigi ipfw hangs on every invocation o [2003/08/29] bin/56147 FreeBSD/NetBSD /bin/sh mishandles positio f [2003/08/31] kern/56233 bms IPsec tunnel (ESP) over IPv6: MTU computa o [2003/09/02] kern/56339 select() call (poll() too) hangs, yet cal a [2003/09/03] ports/56363 perky The graphics/py-opengl port is broken o [2003/09/03] i386/56372 acpi acpi don't work on TYAN tiger100 M/B a [2003/09/03] kern/56381 das [unionfs] panic: page fault in fifo_close f [2003/09/04] docs/56456 blackend Initial import of the ro_RO.ISO889-2 doc/ s [2003/09/04] kern/56461 [rpc] FreeBSD client rpc.lockd incompatib p [2003/09/05] bin/56500 roam rpc.lockd needs to use reserved ports o [2003/09/06] kern/56513 [panic] panic in ugen w/ moused -p /dev/u p [2003/09/08] bin/56606 [2TB] df cannot handle 2TB NFS volumes o [2003/09/09] kern/56617 sound [sound] Hang on boot w/Neomagic audio on o [2003/09/10] kern/56675 Syncer "giving up" on buffers and ext2 fi o [2003/09/14] kern/56873 qa [boot] system hangs on boot at Buslogic d o [2003/09/17] i386/56937 i386 panic: system panic during high network l o [2003/09/20] i386/57043 i386 [hang] ar driver with 2 port PCI card loc o [2003/09/22] usb/57085 sanpei [umass] umass0 problems, with Sony Vio/US a [2003/09/22] kern/57100 bms disable hardware checksums when using bri s [2003/09/24] kern/57174 sos 4.9-PRERELEASE panic: ata_dmasetup: trans o [2003/09/24] kern/57192 emulation linux-ibm-java1.4 freeze o [2003/09/24] kern/57195 [mfs] mount_mfs -i 512 => panic? o [2003/09/25] kern/57206 [backtrace] softdep_lock locks against it o [2003/09/26] bin/57255 usb usbd and multi-function devices a [2003/09/29] kern/57344 bms KMEM exhaustion from cloned routes o [2003/09/29] kern/57350 [panic] using old monocrome printer port s [2003/09/30] kern/57398 scsi Current fails to install on mly(4) based o [2003/10/01] kern/57453 [patch] if_kue hangs boot after warm boot o [2003/10/01] bin/57456 Telnet encryption gets out of sync o [2003/10/01] bin/57466 dialog(1) does not read stdin, breaks sub a [2003/10/01] kern/57479 bms FreeBSD Not in compliance with RFC 1122, p [2003/10/01] i386/57480 i386 Removing very large files using rm doesn' p [2003/10/02] bin/57484 bms routed not ignoring cloned routes o [2003/10/02] kern/57487 sound [sound] [patch] Sound stops working on my o [2003/10/04] bin/57554 sh(1) incorrect handling of quoted parame o [2003/10/05] kern/57603 [bktr] bktr driver: freeze on SMP machine o [2003/10/06] kern/57631 jhb [patch] boot failing for ALi chipsets o [2003/10/07] kern/57722 [kern_resource.c] [patch] uidinfo list co o [2003/10/08] kern/57760 bms IPsec policy on inbound trafic is not enf o [2003/10/09] kern/57790 cdparanoia triggers kernel panic o [2003/10/09] i386/57818 i386 4.9-RC panics when kernel is built with a o [2003/10/10] kern/57832 scottl softdep_deallocate_dependencies: dangling o [2003/10/10] bin/57833 gad [PATCH] bin/ps cannot change title for ke o [2003/10/13] kern/57961 le [vinum] kmem_malloc(65536): kmem_map too o [2003/10/14] kern/57985 rwatson [patch] Missing splx in ether_output_fram o [2003/10/16] i386/58139 i386 [panic] -CURRENT panics on Thinkpad A31p o [2003/10/17] kern/58154 mckusick Snapshots prevent disk sync on shutdown o [2003/10/17] kern/58169 panic: vnode_pager_getpages: unexpected m o [2003/10/22] kern/58391 le [vinum] Trap 12 with heavy disk load on i o [2003/10/23] i386/58458 i386 ATAPI-CDROM DMA Support on ALi Aladdin V o [2003/10/24] conf/58504 /etc/periodic/daily/100.clean-disks trave o [2003/10/26] i386/58580 i386 After sysinstall, F2 fails; wrong device o [2003/10/26] kern/58581 [hang] System call gettimeofday hang 5.x o [2003/10/28] ports/58655 obrien A replacement patch is necessary for deve o [2003/10/29] bin/58687 deischen gethostbyname leaks kqueue file descripto o [2003/10/30] i386/58718 i386 need to remove battery before booting lap o [2003/10/31] kern/58752 le [vinum] vinum panics on create/resetconfi o [2003/10/31] kern/58787 peter [panic] pmap_enter: attemped pmap_enter o o [2003/11/02] i386/58826 i386 reboot on an IBM PC Server 315 merely hal o [2003/11/02] kern/58831 panic: vinvalbuf: flush failed o [2003/11/02] conf/58832 /etc/rc.d/ipsec starts not in time f [2003/11/03] kern/58870 bms page fault in kernel mode with ifconfig a f [2003/11/03] kern/58888 4.9-RELEASE installation fails (xl causes o [2003/11/04] kern/58930 [backtrace] Page fault when unplugging Al o [2003/11/05] kern/58941 rwatson acl under ufs2 doesn't handle disk corrup o [2003/11/05] bin/58951 [sysinstall] some problems with 4.9-RELEA o [2003/11/05] kern/58953 [patch] detect NetMOS-based six serial po o [2003/11/09] bin/59095 kientzle tar(1) process hangs in endless loop o [2003/11/09] kern/59098 sound [sound] Dell Dimension 8300 integrated So o [2003/11/10] alpha/59116 alpha [ntfs] mount_ntfs of a Windows 2000-forma f [2003/11/11] kern/59172 bms Zebra interface route causes kernel panic o [2003/11/11] kern/59183 imp wi problems with wi_cmd o [2003/11/11] kern/59185 [panic] 4.9-RELEASE kernel panic (page fa o [2003/11/11] i386/59192 i386 ATA drive not spotted with SCSI drive o [2003/11/12] kern/59203 imp Panic with wi and newcard a [2003/11/12] kern/59211 [nwfs] System crashes when moving files f o [2003/11/13] i386/59248 4.9-RELEASE, ACPI Panic with Dell Latitud o [2003/11/13] i386/59251 Failure of 4.8-RELEASE/4.9-RELEASE/5.1-RE o [2003/11/13] i386/59260 Panic by integer divide fault in Thinkpad o [2003/11/15] kern/59296 Serial Line Noise Causes System Hang in L o [2003/11/15] kern/59303 le [vinum] vinum crashes kernel if concurren f [2003/11/22] kern/59594 [hang] I/O operations freeze system when f [2003/11/24] bin/59638 des passwd(1) does not use PAM to change the o [2003/11/24] kern/59652 cannot redirect kernel output to serial c a [2003/11/24] ports/59657 trevor emulators/linux_base-8 cpio for install w o [2003/11/24] kern/59659 tackerman em driver cannot handle VLANs o [2003/11/25] i386/59683 i386 panic: signal 12 4.9-STABLE - frequent cr o [2003/11/26] i386/59701 i386 System hungup, after resume from suspend. o [2003/11/26] amd64/59714 amd64 device timeout and ad0: WARNING - WRITE_D o [2003/11/26] i386/59719 [crash] 4.9 Crashes on SuperMicro with SM o [2003/11/27] kern/59728 mjacob Qlogic adapter DMA setup failure with PAE o [2003/11/28] bin/59777 ftpd(8)/FreeBSD 5: potential username enu o [2003/12/01] kern/59878 le [vinum] vinum panics 5.1 system s [2003/12/02] misc/59890 bugmeister send-pr database is spam harvested o [2003/12/02] i386/59895 i386 [hang] system hangs from disk IO errors [ f [2003/12/02] i386/59897 i386 [hang] problems with swap-pager with grea f [2003/12/02] i386/59898 i386 [boot] pxe boot: BTX halted o [2003/12/03] kern/59912 bms mremap() implementation lacking o [2003/12/04] kern/59945 [nullfs] [patch] nullfs bug: reboot after o [2003/12/04] i386/59959 machine can not reboot itself with Mylex o [2003/12/05] gnu/59971 peter assertion "strncmp (repository, current_p o [2003/12/08] i386/60050 Toshiba/3Com 3CXM056-BNW: Open Causes Int s [2003/12/09] ports/60083 phantom Unsafe use of getaddrinfo in jvm 1.4.2-p5 f [2003/12/11] usb/60131 usb [usb] Page fault on disconnect of USB dev o [2003/12/11] kern/60154 ipfw ipfw core (crash) o [2003/12/11] ports/60161 trevor Linux emulator (linux_base-8-8.0_3) doesn o [2003/12/14] i386/60226 [patch] ichsmb driver doesn't detects SMB o [2003/12/14] kern/60235 phk some /dev-entries missing for newly auto- o [2003/12/15] ports/60245 knu new lang/ruby16-shim-ruby18 bug in includ a [2003/12/15] kern/60247 le mutex problems in geom_io s [2003/12/15] usb/60276 usb [usb] Kernel panic when plugging in USB ( o [2003/12/17] i386/60328 panic: installing 5.1, 5.2RC and 5-CURREN o [2003/12/17] i386/60344 i386 [boot] Intel ICH5 SATA RAID boot problems o [2003/12/18] bin/60349 scottl [sysinstall] 5.2-RC1 cannot do NFS instal o [2003/12/19] bin/60385 vmstat/iostat/top all fail to report CPU o [2003/12/21] bin/60477 deischen need thread safe gethostent() and getserv o [2003/12/21] bin/60478 deischen getaddrinfo not thread safe o [2003/12/23] kern/60526 Post-PAE stable SMP machine freezes o [2003/12/26] kern/60598 scsi wire down of scsi devices conflicts with o [2003/12/27] i386/60603 i386 dd causes error when copying cd from ATA o [2003/12/27] i386/60633 i386 [hang] SIS motherboard with the SIS 5591 o [2003/12/27] i386/60641 i386 Sporadic SCSI bus resets with 53C810 unde o [2003/12/28] i386/60646 VIA C3 system hangs on reboot o [2003/12/29] docs/60679 doc pthreads documentation does not describe o [2003/12/29] i386/60681 i386 wicontrol -L critical crash (sigbus) o [2003/12/29] kern/60685 Intel 82559 NICs don't work in 4.9 o [2003/12/29] i386/60690 i386 atapicd driver causes spontaneous uncondi p [2004/01/03] kern/60856 bms [patch] panic: at tcp_output(), with TCPD o [2004/01/04] i386/60887 i386 can't boot when fbsd exists with other op o [2004/01/08] i386/61063 i386 [ata] ata hangs in smp system o [2004/01/09] kern/61108 kensmith Port linux_base-8-8.0_3: bash ls -l cause o [2004/01/09] kern/61129 thomas atapicam / UDMA cdrom loop o [2004/01/10] bin/61152 qa [sysinstall] installer refuses to mount U a [2004/01/10] kern/61165 scsi [panic] kernel page fault after calling c o [2004/01/12] i386/61253 i386 [panic] page fault on installation freebs o [2004/01/13] i386/61303 i386 5.2-REL hangs during boot with 3-port pyr o [2004/01/13] i386/61326 i386 Reboot while booting from 5.2-RELEASE CD o [2004/01/14] i386/61342 i386 [hang] CD-based installation crashes [4.9 o [2004/01/14] bin/61355 login(1) does not restore terminal owners o [2004/01/14] kern/61358 phk boot freezes while ATA GEOM slice detecti o [2004/01/15] kern/61390 [hang] Machine freeze when creating gif i o [2004/01/16] kern/61404 andre RFC1323 timestamps with HZ > 1000 f [2004/01/16] java/61407 phantom jdk14 port aborts making html32dtd o [2004/01/17] bin/61498 obrien [patch] Please MFC flex patch for gcc 3.x o [2004/01/18] kern/61544 ip6fw breakage on (at least) sparc64 o [2004/01/19] bin/61587 qa [patch] [sysinstall] installation problem o [2004/01/20] docs/61605 doc Improve documentation for i386 disk geome o [2004/01/20] usb/61627 usb [usb] [patch] New USB printer not support o [2004/01/20] i386/61646 i386 [workaround] Strange irq20 weirdness caus o [2004/01/21] bin/61658 qa [sysinstall] 5.2R error "Add of package q o [2004/01/21] kern/61669 [twe] writing to 3ware escalade spends 90 f [2004/01/21] kern/61686 FreeBSD 5.2-RELEASE crashes when ACPI is o [2004/01/22] bin/61701 Segmentation fault on OPIE when sequence o [2004/01/22] i386/61709 i386 [panic] 5.2-REL i386 Crashes hard; panics o [2004/01/22] bin/61716 mckusick newfs: code and manpage are out of sync o [2004/01/22] kern/61733 imp panic: resource_list_release: resource en o [2004/01/22] kern/61746 [boot] system locks up on boot if both ap o [2004/01/23] kern/61774 [nis] nis security issue o [2004/01/24] bin/61811 qa [sysinstall] 5.2 release no resolv.conf c p [2004/01/24] i386/61852 alc i386 pmap SMP race condition can cause lo o [2004/01/25] i386/61890 i386 [fdisk] FDisk uses incorrect calculations o [2004/01/26] bin/61937 qa [sysinstall] cannot install 5.2-REL via s o [2004/01/26] alpha/61940 alpha Can't disklabel new disk from FreeBSD/alp a [2004/01/26] kern/61960 sos [Patch] BigDrive support for PC-98 archit o [2004/01/26] i386/61970 [panic] on boot, 5.1/5.2 (but not 5.0), S o [2004/01/27] alpha/61973 alpha Machine Check on boot-up of AlphaServer 2 o [2004/01/28] bin/62040 pkg_add(1) won't run because the ELF dyna o [2004/01/29] bin/62058 burncd doesn't work with Creative RW8438E f [2004/01/30] usb/62088 usb [usb] Logitech Cordless/Optical Mouse not o [2004/01/30] kern/62091 [hang] Random Lockups on Boot (Timecounte o [2004/02/01] ports/62213 trevor Cannot install any emulators/linux_base o [2004/02/01] kern/62216 perl syswrite not writing the buffer unde o [2004/02/01] ports/62217 knu dns/idnkit: runidn does nothing o [2004/02/01] kern/62228 le [vinum] Kernel improperly identifies part o [2004/02/02] bin/62255 peter 2003-12-18: Stable CVS Version 1.11.11 Re a [2004/02/02] kern/62278 iedowse [nfs] NFS server may not set eof flag whe o [2004/02/02] i386/62280 i386 em0 broken after resume in 5.2-CURRENT o [2004/02/02] kern/62284 panic: GENERIC panics on FreeBSD 5.X imme o [2004/02/03] amd64/62295 obrien ipsec failure on 5.2.1-RC amd64 o [2004/02/03] kern/62309 jmg panic: ugen driver o [2004/02/05] bin/62367 qa [sysinstall] 5.2.1-RC installation proble o [2004/02/05] kern/62374 darrenr panic: free: multiple frees o [2004/02/05] bin/62375 qa [sysinstall] sysinstall core dump o [2004/02/06] conf/62417 luigi diskless op script failed o [2004/02/06] kern/62438 [patch] viapm patch for VT8235 o [2004/02/07] kern/62468 panic: system crashes when serial getty e o [2004/02/08] kern/62502 [modules] panic under double loading vinu o [2004/02/08] kern/62519 sound [sound] Intel ICH4 (82801DB) sound card d o [2004/02/09] i386/62565 i386 device.hints are not honored in 5.2.1-RC o [2004/02/10] kern/62658 [boot] loader/kernel answer to `boot -a' o [2004/02/12] amd64/62753 obrien txp(4) panics on amd4 o [2004/02/13] kern/62762 trhodes [msdosfs] Fsync for msdos fs does not syn o [2004/02/13] i386/62807 i386 4.9 SMP does not work with Compaq Smart o [2004/02/14] kern/62824 [panic] softdep_setup_inomapdep: found in o [2004/02/14] bin/62833 qa [sysinstall] can't install: integer divid o [2004/02/15] kern/62864 cognet Machine not reboot. o [2004/02/15] i386/62888 i386 ad4: WARNING - WRITE_DMA interrupt was se a [2004/02/16] kern/62906 peadar [patch] AGP misconfigures i845G chipset, o [2004/02/16] gnu/62937 Compilation of base src Perl with static o [2004/02/18] kern/63040 panic: kernel panic (sf_buff_alloc) o [2004/02/24] i386/63305 i386 reading udf filesystem on dvd+rw leads to o [2004/02/25] kern/63343 [boot] manual root filesystem specificati o [2004/02/25] i386/63356 [fdisk] new installation fails on HP Prol o [2004/02/25] kern/63360 [panic] page fault in ath kernel module i o [2004/02/26] bin/63391 Burncd DAO fails on some CD recorders o [2004/02/27] i386/63430 i386 [ata] TIMEOUT - ATA READ o [2004/02/27] kern/63431 [rtc] motherboard going to suspend mode s o [2004/02/27] i386/63441 i386 [panic] fatal trap 12 in pmap.c [4.9 with o [2004/02/27] i386/63449 [boot] FreeBSD 5.2 and 5.2.1 releases won o [2004/02/27] i386/63467 i386 [ata] Sil 3114: RAID not detected using S o [2004/02/28] bin/63489 top, finger segfault when using NIS group o [2004/02/29] bin/63535 getpwent segfaults when NIS groups used b o [2004/02/29] kern/63557 thomas ATAPICAM broken in 5.2-CURRENT (REQUEST_S f [2004/03/01] usb/63621 usb [usb] USB MemoryStick Reader stalls/crash o [2004/03/02] kern/63629 thomas mounting atapicam volume through cd0c cau p [2004/03/02] kern/63662 [nullfs] using read-only NULLFS leads to o [2004/03/03] ports/63670 perl lang/perl5.8: 'Unable to read from thread o [2004/03/03] i386/63678 i386 5.2.1 installation hangs on t30 o [2004/03/03] kern/63724 ipfw IPFW2 Queues dont t work o [2004/03/04] i386/63731 [boot] PATA to SATA converter on Promise o [2004/03/06] i386/63828 i386 [hang] when installing Release 5.2.1 (i38 o [2004/03/06] www/63854 www PR-web page loses text o [2004/03/07] i386/63871 i386 [panic] kernel panic in swi8 after 1 hour o [2004/03/09] i386/63992 i386 [hang] XFree86 4.3 hangs on IBM ThinkPad o [2004/03/09] i386/64002 acpi acpi problem p [2004/03/11] kern/64091 peadar [nfs] nfs data corruption at end of file o [2004/03/12] kern/64151 [jail] jailer can't control all jail proc o [2004/03/12] i386/64158 5.2.1-RELEASE CD won't boot on acer Trave p [2004/03/12] kern/64169 linux binaries dump core on exit o [2004/03/12] i386/64183 i386 5.1-RELEASE Install hung at "Probing devi o [2004/03/13] ports/64191 ume security/cyrus-sasl2 Makefile doesn't obe o [2004/03/13] kern/64196 [patch] remove the arbitrary MAXSHELLCMDL o [2004/03/13] gnu/64231 libstdc++ on FreeBSD 5.2+ is non-usable i f [2004/03/14] kern/64250 panic: 5.2.1 kernel panics on ifconfig wh f [2004/03/15] ports/64305 jedgar dbf2mysql -q option broken with mysql323- s [2004/03/15] kern/64313 threads FreeBSD (OpenBSD) pthread implicit set/un o [2004/03/17] kern/64363 [panic] ffs_blkfree: freeing free block [ o [2004/03/18] kern/64406 panic: ffs_clusteralloc: map mismatch o [2004/03/19] bin/64445 peter "ypwhich -m" map enumeration is broken o [2004/03/19] i386/64450 i386 Lucent Technologies WaveLAN/IEEE (PCI) fr p [2004/03/22] kern/64573 alc mmap with PROT_NONE, but still could be r o [2004/03/22] kern/64594 [rl] 5.2-CURRENT: driver 'rl' (RealTek 81 o [2004/03/25] i386/64680 i386 5.2.1 pci-cfgintr steals serial mouse irq o [2004/03/25] i386/64697 i386 5.2.x BTX loader halts with Promise FastT o [2004/03/25] i386/64716 i386 [nis] mv crashes FreeBSD 5.2.1-p3 o [2004/03/25] bin/64720 tail will not ctrl c o [2004/03/25] i386/64727 i386 [boot] cannot find disk on asus p4s533mx o [2004/03/26] bin/64738 [sendmail] SO_REUSEADDR doesn't seem to w a [2004/03/27] kern/64816 peadar [nfs] mmap and/or ftruncate does not work o [2004/03/28] kern/64826 [panic] with IPv6 on 4-STABLE after FreeB f [2004/03/28] kern/64831 tackerman [hang] Multiple em devices force system l o [2004/03/29] kern/64879 sound [sound] [hang] 4.9 freezes when I try to o [2004/03/29] kern/64903 [modules] panic: multiple kldload of a mo o [2004/03/31] ports/64963 tobez Perl 5.8: make package deletes installed o [2004/03/31] bin/64990 /bin/sh unable to change directory but cu o [2004/04/02] java/65054 glewis Diablo 1.3.1 JVM runs out of file descrip o [2004/04/02] i386/65072 hang on reboot not syncing drives on ibm o [2004/04/03] ports/65128 cy security/aide port fails with SIGBUS ever o [2004/04/03] i386/65137 i386 [boot] 5.2.1 Intall Boot from floppies pa f [2004/04/05] kern/65212 [hang] running startx hangs the system (a o [2004/04/05] bin/65223 fsck of 5.2 makes UFS1 inconsistent for 4 o [2004/04/07] kern/65282 [panic] Trap 12 kernel panic upon boot du o [2004/04/07] kern/65300 [udf] Can't use sendfile(2) to download f o [2004/04/11] kern/65428 panic: uscanner(4)-related repeatable ker o [2004/04/12] i386/65457 BTX Halted when trying boot after success o [2004/04/14] i386/65523 i386 [patch] PXE loader malfunction in multipl o [2004/04/14] bin/65546 qa [sysinstall] 4.10-BETA fails to install f o [2004/04/15] ports/65579 knu japanese/ruby-mecab segmentation fault on o [2004/04/16] kern/65616 bms IPSEC can't detunnel GRE packets after re o [2004/04/16] gnu/65641 Use of llabs() in C++ fails as ambiguous o [2004/04/17] i386/65648 imp cardbus("TI1131") won't work on Dell Lati o [2004/04/17] kern/65658 panic: kernel panic on i386 5.2.1 release o [2004/04/18] kern/65702 panic: kernel panic on i386 5.2.1 with nv o [2004/04/19] bin/65774 qa [sysinstall] cannot run repair disk when o [2004/04/19] i386/65775 i386 [panic] Transmeta crusoe without longrun s [2004/04/20] kern/65817 panic: kernel panic with GENERIC 5.2.1 an f [2004/04/22] gnu/65869 cvs generates invalid cvs command lines o [2004/04/22] ports/65900 perl (non-maintainer) IGNORE p5-ExtUtils-MakeM o [2004/04/22] kern/65901 [smbfs] smbfs fails fsx write/truncate-do a [2004/04/23] ports/65906 phantom Compile of JDK-1.4 under FBSD-5.2.1 fails o [2004/04/23] kern/65920 [nwfs] Mounted Netware filesystem behaves o [2004/04/26] kern/66004 [panic] kernel panic on access to /dev/ul o [2004/04/27] kern/66025 panic: kernel panic in pagedaemon with vm o [2004/04/27] kern/66029 [patch] MD5 alignment problem on a TriMed o [2004/04/27] bin/66036 restore crashes (reproducable, core file s [2004/04/29] kern/66066 [unionfs] panic: ufs_direnter: compact2 o [2004/04/29] i386/66087 i386 [install] hang at PCI config [5.2.1] o [2004/04/30] bin/66103 macro HISADDR is not sticky in filters o [2004/05/01] i386/66133 i386 [boot] nvidia motherboard installer locks o [2004/05/01] java/66151 java JBuilderX (sun jvm 1.4.1 builtin) crashes o [2004/05/01] kern/66152 [unionfs] laying unionfs over another uni p [2004/05/02] bin/66156 smkelly rpcgen generates a CPP macro that won't c o [2004/05/02] kern/66162 phk gbde destroy error o [2004/05/04] bin/66242 endless loop in sh(1) o [2004/05/05] kern/66270 mckusick [hang] dump causes machine freeze o [2004/05/05] kern/66290 imp pccard initialization fails with "bad Vcc o [2004/05/06] i386/66306 i386 pnpbios_identify() queries for more devic p [2004/05/07] kern/66348 rik FR mode of cx (Cronyx Sigma) does not wor o [2004/05/07] i386/66350 i386 [sysinstall] sysinstall creates a partiti o [2004/05/07] i386/66368 i386 [install] 4.9 install fails with MODE_SEN o [2004/05/11] bin/66523 atacontrol allows to detach a channel in o [2004/05/13] kern/66611 [nfs] Crashing NFS servers (with workarou a [2004/05/14] kern/66634 tackerman hard lock with em driver o [2004/05/18] kern/66786 [nfs] panic: exporting msdosfs causes nfs o [2004/05/18] conf/66791 Old dev.db leads to the wrong program beh o [2004/05/18] kern/66829 [unionfs] mounting fdesc union on /dev pa o [2004/05/18] bin/66830 chsh/ypchsh do not change user informatio o [2004/05/19] kern/66848 imp cardbus power support breaks cardbus supp o [2004/05/19] i386/66876 i386 [patch] Cannot extract tar(1) multi-volum o [2004/05/20] bin/66950 qa [sysinstall] upgrading to 4.10-RC3: packa o [2004/05/20] kern/66960 [patch] filesystems not unmounted during o [2004/05/21] bin/66984 [2TB] [patch] teach sysinstall about larg o [2004/05/22] i386/67047 i386 mpt driver does not recognize messages fr o [2004/05/22] i386/67050 imp CardBus (PCI ?) resource allocation probl o [2004/05/25] bin/67167 FreeBSDs ftpd has problems under -CURRENT o [2004/05/27] i386/67273 acpi [hang] system hangs with acpi and Xfree o [2004/05/28] kern/67301 panic: uftdi, RTS and system panic o [2004/05/29] kern/67326 [msdosfs] crash after attempt to mount wr o [2004/05/29] conf/67328 Usermode PPP hangs on boot when NIS confi f [2004/06/01] kern/67455 [patch] EHCI controller is being programm o [2004/06/01] i386/67469 i386 src/lib/msun/i387/s_tan.S gives incorrect p [2004/06/03] kern/67546 [2TB] Coredumps > 2Gb do not work (on 64b o [2004/06/06] ports/67625 trevor Linux_base fails to install f [2004/06/06] alpha/67626 alpha X crashes an alpha machine, resulting reb o [2004/06/07] i386/67688 i386 5.2.1 initial floppy boot fails with Fata p [2004/06/09] i386/67760 jhb [PATCH] Getting AGP/DRM working for VIA K f [2004/06/09] kern/67769 Fxtv 1.03 cause the Desk top (KDE) to Fre o [2004/06/10] kern/67794 panic: ffs panic during high filesystem a o [2004/06/11] i386/67833 i386 [boot] 4.10 does not boot after enabling o [2004/06/14] kern/67919 imagemagicks convert image to movie conve a [2004/06/15] i386/67955 i386 [panic] -current on T40p kernel trap 12 i o [2004/06/16] bin/67995 Morse plays beeps 10 times faster than it p [2004/06/16] kern/68013 jeff tp->snd_wl1 & snd_wl2 are not updated in o [2004/06/17] bin/68047 [sysinstall] unattended install of FreeBS o [2004/06/18] kern/68076 [modules] Page fault when the sequence "k o [2004/06/19] i386/68103 [panic] ASUS P4P8X mb at ffs/ffs_softdep. o [2004/06/20] kern/68131 emulation java/linux-ibm-jdk14: linux ibm jdk 1.4.1 o [2004/06/20] i386/68149 FreeBSD 4.10 installation blocking on ASU o [2004/06/24] ports/68260 markm [PATCH] Removal of -lcompat from freebsd- o [2004/06/24] i386/68277 [kbd] Compact Evo N610c (Laptop): Using e s [2004/06/24] i386/68286 IBM PCNet Ethernet (AMD chip) seen as Tri o [2004/06/25] kern/68324 panic: Duplicate free of item 0xc3121908 o [2004/06/25] kern/68325 panic: _mtx_lock_sleep: recursed on non-r f [2004/06/25] ports/68341 clsung xsysinfo memory leak o [2004/06/26] kern/68351 bge0 watchdog timeout on 5.2.1 and -curre o [2004/06/26] ports/68396 sumikawa Racoon racoon-20040617a Interoperability o [2004/06/27] i386/68411 i386 VMware Virtual Machine - Network Fails Du o [2004/06/28] i386/68438 i386 bootloader cannot read from icp vortex ar o [2004/06/28] kern/68442 [panic] acquiring duplicate lock of same o [2004/06/29] i386/68486 [video] logo screensaver kills compaq ML3 o [2004/07/01] kern/68546 [ata] system seems to hang during stress o [2004/07/01] i386/68554 i386 [hang] system freeze on Compaq Evo 600c [ o [2004/07/02] kern/68576 rwatson UFS2 snapshot files can be mounted read-w o [2004/07/06] bin/68727 marcel gdb coredumps after recent CURRENT upgrad o [2004/07/10] kern/68889 rwatson [panic] m_copym, length > size of mbuf ch o [2004/07/10] i386/68899 i386 Problems reading and writing DVD-RAM disc o [2004/07/13] kern/68978 [crash] firewire crashes with failing har o [2004/07/13] kern/68987 panic: kmem_malloc(163840): kmem_map too o [2004/07/13] usb/69006 usb [patch] Apple Cinema Display hangs USB po o [2004/07/13] kern/69019 [if_wi] wlan stalling after 2-3 hrs of mo o [2004/07/14] i386/69049 i386 [install] error "anic: page fault" o [2004/07/14] kern/69058 panic: kernel reads unmapped memory while o [2004/07/14] kern/69066 panic: nmdm page fault when slattach on a o [2004/07/15] kern/69092 [rl] kernel: rl0: watchdog timeout o [2004/07/15] kern/69100 [nwfs] panic: 5.2.1p9 kernel panics when o [2004/07/16] kern/69141 panic: softdep_lock [5.2.1-RELEASE, SMP] o [2004/07/16] kern/69158 [if_an] Cisco MPI350 wireless card proble o [2004/07/18] i386/69218 simokawa [boot] failure: 4.10-BETA and later do no o [2004/07/19] i386/69260 i386 [install] Problem starting the installati o [2004/07/19] i386/69281 i386 init dies when MAXSSIZ, MAXDSIZ, and DFLD a [2004/07/20] ports/69322 vs ghostscript-afpl (8.14_5.1) fails if I tr o [2004/07/26] kern/69607 [crash] system crashes in if_tap module [ o [2004/07/26] kern/69612 [panic] 4.10-STABLE crashes everyday: pag o [2004/07/26] kern/69629 [panic] Assertion td->td_turnstile o [2004/07/27] kern/69663 ddb's panic comand can not dump o [2004/07/28] amd64/69704 amd64 ext2/ext3 unstable in amd64 o [2004/07/28] amd64/69707 amd64 IPC32 dont work OK in amd64 FreeBSD o [2004/07/28] bin/69723 sysinstall: allow to continue from packag o [2004/08/03] bin/69942 [sysinstall] sysinstall changes /etc/rc.c s [2004/08/03] kern/69953 anholt VIA agp: System reboots on startx with DR o [2004/08/05] i386/70028 i386 umass isuue in the boot prcess on SONY La o [2004/08/07] bin/70147 [PATCH] Globbing bug in /bin/sh o [2004/08/11] ports/70309 sumikawa [patch] racoon disrupt manually-keyed IPS o [2004/08/11] i386/70330 i386 Re-Open 33262? - gdb does not handle pend o [2004/08/12] kern/70360 [twe] Random lock-ups with 3ware RAID 5 u o [2004/08/13] i386/70386 i386 IBM x345 Freezes Randomly o [2004/08/15] i386/70482 i386 Array adapter problems o [2004/08/16] i386/70525 i386 [boot] boot0cfg: -o packet not effective o [2004/08/16] i386/70531 i386 [patch] boot0 hides Lilo in extended slic o [2004/08/17] kern/70587 [patch] NULL pointer dereference in vm_pa o [2004/08/18] bin/70600 [fsck] fsck throws files away when it can o [2004/08/18] docs/70616 brd [patch] incompleteness and error in su(1) o [2004/08/19] kern/70649 [rtc] system clock slows down when heavil o [2004/08/19] i386/70663 i386 Freebsd 4.10 ncplogin + Netware 4.11 = nw f [2004/08/20] ports/70695 hrs teTeX (port source print/teTeX) ends with o [2004/08/20] i386/70747 i386 ddos attack causes box to crash on kernel o [2004/08/21] kern/70753 [boot] Device for firewire hard disk not o [2004/08/21] bin/70803 truss wedges if child exits at the wrong o [2004/08/22] kern/70809 [panic] ufs_direnter: compact1 o [2004/08/25] i386/70925 i386 [hang] 5.3Beta1 acpi-pci driver failure, f [2004/08/25] kern/70931 [panic] page fault at end of boot on Athl o [2004/08/26] conf/70973 [patch] script 800.loginfail does not rep o [2004/08/26] bin/70974 [rpc] SIGSEGV in rpc.lockd o [2004/08/26] threads/70975threads unexpected and unreliable behaviour when o [2004/08/26] i386/71000 i386 [boot] BTX halted when booting from CD on o [2004/08/27] i386/71035 [kbd] SMP boot hangs in bus_space_write_1 o [2004/08/27] i386/71048 i386 [hang] ASUS TUV4X hangs when SONY CRX140E a [2004/08/28] kern/71073 andre [vlan] a media ioctl to vlan(4) causes pa o [2004/08/28] kern/71086 [panic] in vm_page_remove() (referencing o [2004/08/28] i386/71087 i386 [hang] 5.3-beta(2-5) fail to install on e o [2004/08/29] kern/71109 alc [patch] Possible race conditions in pmap. o [2004/08/30] kern/71131 [panic] profile.sh causes bfe to panic o [2004/08/30] i386/71144 i386 FBSD5.3b2 doesn't boot on a Compaq Armada o [2004/08/30] bin/71147 sshd(8) will allow to log into a locked a o [2004/08/30] usb/71155 usb [usb] misbehaving usb-printer hangs proce o [2004/08/30] i386/71158 i386 pci bus number 3 devices are missing on l o [2004/08/30] gnu/71160 gdb gets confused about active frame o [2004/08/31] i386/71190 i386 Dead thinkpad R31 after installing 5.2.1 o [2004/08/31] kern/71198 Lack of PUC device in GENERIC kernel caus o [2004/08/31] i386/71208 i386 Intel EtherExpress not working o [2004/09/02] bin/71290 [PATCH] passwd cannot change passwords ot o [2004/09/02] kern/71310 jeff [panic] kernel crash on rtprio pid priori o [2004/09/03] bin/71323 qa [sysinstall] FTP download from floppy boo f [2004/09/04] kern/71357 le [vinum] Panic when starting vinum at boot p [2004/09/05] kern/71388 rwatson [panic] due mac_policy_list_conditional_b o [2004/09/05] kern/71391 [nfs] [panic] md via NFS file + mount -t o [2004/09/05] i386/71392 i386 5.3-Beta[2-5] crash after final sync when o [2004/09/05] kern/71394 [boot] unable to mount troot device in bo o [2004/09/05] kern/71402 rwatson panic with lomac o [2004/09/06] kern/71421 [hang] [sched_ule] filesystem operations o [2004/09/06] i386/71428 i386 DMA does not work on VIA 82C586 [4.10] o [2004/09/07] i386/71470 i386 [hang] Asus P4P800-E Promise 20378 RAID 1 o [2004/09/07] amd64/71471 amd64 Can not install 5.3beta3/amd64 on IBM eSe o [2004/09/07] ports/71475 ports-bugs ACID (snort DB) detects versions incorrec o [2004/09/08] kern/71478 [nis] NIS/NFS: res_mkquery failed [4.2] o [2004/09/10] kern/71547 anholt R200 (8500) hang on startx (nforce2) a [2004/09/10] kern/71568 brooks [kbd] [patch] unable to install FreeBSD u o [2004/09/11] bin/71594 [patch] pkg_install (sign) - variables ma o [2004/09/11] bin/71602 [PATCH] uninitialized "len" used instead o [2004/09/11] bin/71603 "systat -v" enters infinite loop o [2004/09/12] kern/71638 anholt Radeon 9200 SE with Xorg 6.7 and DRI 5.0. o [2004/09/12] i386/71641 i386 5.3-BETA3: wi0 hangs during kernel load f [2004/09/12] amd64/71644 amd64 5.3-BETA4 crash when heavy load o [2004/09/12] bin/71651 [PATCH] cron may attept to close unopened o [2004/09/12] kern/71677 rwatson MAC Biba / IPFW panic f [2004/09/13] ports/71692 daichi portupgrade fails to find packages in por f [2004/09/13] kern/71695 brooks [hang] ifconfig hanging box o [2004/09/14] threads/71725threads Mysql Crashes frequently giving Sock Erro o [2004/09/14] sparc64/71729sparc64 printf in kernel thread causes panic on S f [2004/09/15] kern/71755 le [vinum] vinum bootstrapping problem o [2004/09/15] kern/71771 Hang during heavy load with amr raid cont o [2004/09/15] kern/71778 scsi 5.3 BETA3 doesnt see Adaptec 2015S FW Rev o [2004/09/16] kern/71785 anholt panics in X (Xorg and XFree86) with ATI c a [2004/09/16] bin/71786 [patch] adduser breaks if /sbin/nologin i f [2004/09/16] kern/71791 [panic] Fatal trap 12: page fault while i o [2004/09/16] kern/71792 [patch] Wrong/missing 'goto' target label o [2004/09/17] kern/71827 jeff [panic] Running java applications causes o [2004/09/19] kern/71910 andre [patch] ipfw forward does not work [5.3-B o [2004/09/19] kern/71918 4.5 disklabel gets damaged when mounted b o [2004/09/22] kern/71999 recurring panic in 4.10: ata_dmasetup: tr o [2004/09/22] i386/72004 i386 [boot] FreeBSD 5.2.1 install hangs with e o [2004/09/22] kern/72007 [panic] clist reservation botch [4.10] o [2004/09/22] ports/72014 java Eclipse doesn't work (SigBus 10) if it ha o [2004/09/23] kern/72022 packet loss on loopback interface [5.3-BE o [2004/09/23] kern/72041 [hang] Deadlock when disk is destroyed wh o [2004/09/24] i386/72065 i386 4.x and 5.2.1 doesn't recognize PCnet/ISA o [2004/09/26] i386/72112 sound [sound] sound problems with builtin sound o [2004/09/27] ports/72122 mharo sudo 1.6.8p1 with pam-krb5 authentication o [2004/09/27] kern/72130 Promise Fastrack sx4000 boot problem f [2004/09/27] kern/72131 le panic when starting vinum on system boot o [2004/09/28] ports/72149 nectar [PATCH] heimdal with LDAP backend - bad s o [2004/09/28] java/72151 phantom JVM crash on 5.2.1-R o [2004/09/29] kern/72163 ACPI Panics on boot with 5.3-BETA-3 and u o [2004/09/30] gnu/72200 bzXgrep fails to detect that its matcher o [2004/09/30] kern/72208 panic: bio_completed can't be greater tha o [2004/09/30] kern/72210 andre ipnat problem with IP Fastforward enable o [2004/09/30] kern/72211 Cannot boot 5.3-BETA6 with both SCSI and o [2004/09/30] i386/72215 i386 with acpi enabled network card will not w o [2004/10/03] kern/72278 Installworld crashes machine [5.3-BETA7] o [2004/10/03] docs/72285 doc GCC manuals are out of sync o [2004/10/04] kern/72305 boot hangs after discovering disks when a o [2004/10/04] i386/72334 i386 7) i386|[boot] FreeBSD 5.3 Beta6 and Beta o [2004/10/05] i386/72343 i386 Suspend resets system on Inspiron 5160. o [2004/10/05] threads/72353threads Assertion fails in /usr/src/lib/libpthrea o [2004/10/06] bin/72370 obrien awk in -current dumps core o [2004/10/06] kern/72372 anholt radeon 9200se atlantis dri hangs X (nforc o [2004/10/06] i386/72376 acpi is mutually exclusive with snd_mss o o [2004/10/06] i386/72378 i386 NFS hangs in 5.3-BETA7 [3Com gbit card] o [2004/10/06] kern/72396 [patch] Incorrect network accounting with o [2004/10/07] i386/72416 i386 FreeBSD 5.3-BETA7: The alternate systemcl f [2004/10/07] kern/72423 wpaul Loading if_ndis for Intel Wireless 2200BG o [2004/10/07] kern/72424 panic: ffs_blkfree: freeing free block in o [2004/10/07] threads/72429threads threads blocked in stdio (fgets, etc) are o [2004/10/08] i386/72439 sound [sound] Sound not functioning for VIA_823 o [2004/10/08] i386/72441 i386 HP Proliant DL380 hangs on reboot with 5. o [2004/10/09] i386/72456 i386 5.xx Releases Do Not Identify ATA when 4. o [2004/10/09] usb/72466 brooks [kbd] USB keyboard does not respond in si o [2004/10/10] kern/72490 Panic mounting cdrom with RWCombo Abort trap (core dumped) o [2004/11/04] kern/73538 problem with the Broadcom BCM5788 Gigabit o [2004/11/05] bin/73559 sos [burncd] failure closing/fixating DVD-+R/ o [2004/11/06] bin/73617 qa [sysinstall] fdisk editor unmarks active o [2004/11/07] amd64/73650 amd64 5.3-release panics on boot o [2004/11/07] bin/73651 Mergemaster on 4x -> 5.x pre-buildworld o [2004/11/08] i386/73658 i386 ed(4) can't get correct MAC address o [2004/11/08] i386/73666 i386 5.3 UDMA error WD1600 can't partition dri o [2004/11/08] kern/73673 ifconfig tun0 destroy report: ifconfig: S o [2004/11/09] i386/73706 jhb ATA_IDENTIFY timed out under FreeBSD 5.3 o [2004/11/09] kern/73719 rwatson Page fault in bpf_mtap () o [2004/11/09] kern/73740 [Panic] & [nfs(?)] 5-3-R#3 panic when acc o [2004/11/09] kern/73744 printing via cups causes "Interrupt storm o [2004/11/09] ports/73745 ports-bugs ports/databases/gnats4: gnatsd receives s o [2004/11/10] amd64/73775 amd64 Kernel panic (trap 12) when booting with o [2004/11/11] ports/73797 portmgr Be causious compiling with -O2 (use -fno- o [2004/11/11] kern/73830 le kernel panic when raid5 member disk is re o [2004/11/12] kern/73850 thomas atapicam and Zip drive causes reboots upo o [2004/11/12] kern/73852 firewire [patch] [firewire] Not htonl() but ntohl( o [2004/11/12] kern/73871 Intersil Prism wireless wi0 locks up, "bu o [2004/11/13] kern/73910 ipfw [ipfw] serious bug on forwarding of packe o [2004/11/14] i386/73934 i386 fdisk sees disk as empty s [2004/11/15] ports/73980 dinoex heimdal port conflicts with apache+mod_ss o [2004/11/16] i386/73987 sound Nforce2 MB sound problem o [2004/11/16] i386/74008 i386 IBM eServer x225 cannot boot any v5.x - e o [2004/11/16] kern/74012 FreeBSD 4.10 stops responding while playi o [2004/11/16] amd64/74014 amd64 5.3-RELEASE-AMD64 freezes on boot during o [2004/11/16] misc/74019 Not NOMAN requires NO_CXX in make.conf o [2004/11/17] bin/74043 [PATCH] sh trap builtin does not properly o [2004/11/17] i386/74044 i386 ServerWorks OSB4 SMBus interface does not o [2004/11/18] i386/74074 i386 hw.ata.wc=0 / but write cache still enabl o [2004/11/19] kern/74104 ipfw ipfw2/1 conflict not detected or reported p [2004/11/19] kern/74105 rwatson IPX protocol support doesn't work o [2004/11/19] i386/74124 i386 ata0 failure on HP(Vectra) VL6/350 [intro o [2004/11/19] bin/74127 [patch] patch(1) may misapply hunks with o [2004/11/19] kern/74136 FreeBSD 5.3 does not see RAID 1 drive onl o [2004/11/20] kern/74171 [serial] Fatal trap 12: page fault while a [2004/11/21] gnu/74193 gcc 3.4 internal compiler error while com o [2004/11/21] i386/74217 i386 init died [Presario 2500] o [2004/11/22] kern/74230 periodic Fatal trap 12: page fault while o [2004/11/22] kern/74238 firewire [firewire] fw_rcv: unknown response; fire o [2004/11/22] kern/74242 phk Write to fifo with no reader fails in 6.0 p [2004/11/22] bin/74255 des sshd produces Zombies with UsePam and Pri o [2004/11/22] ports/74263 obrien [update] security/super f [2004/11/22] ports/74265 x11 XFree86 Version 4.4.0 with KDE 3.1 freeze o [2004/11/22] kern/74272 Interrupt storm detected on "irc10:atapci o [2004/11/23] ports/74278 mharo ftp/proftpd: Update mod_ldap to 2.8.14 (n o [2004/11/24] kern/74309 xterm -C and rxvt -C do not grab /dev/con o [2004/11/24] kern/74319 system reboots after few hours [5.3] [smp o [2004/11/25] kern/74386 phk [patch] Killing watchdogd does not shutdo o [2004/11/26] ports/74432 lawrance ohphone 1.4.1 crashes in 5.3 Stable o [2004/11/29] kern/74495 wi wlan driver device freeze (5.3-STABLE) o [2004/11/29] ports/74518 openoffice openoffice-1.1 build failure on 4-stable: o [2004/11/29] gnu/74531 gcc doesn't link correctly if -pg specifi o [2004/12/01] i386/74576 i386 FAILURE - ATA_IDENTIFY no interrupt o [2004/12/01] kern/74592 le removing a (probably nonexistent) plex/vo o [2004/12/01] i386/74601 i386 Cardbus fails after busdma_machdep.c upda o [2004/12/02] i386/74605 i386 5.3 networking impossibly slow on 32M p15 o [2004/12/02] kern/74607 scsi FreeBSD 5.3 install CD crashes on SCSI de o [2004/12/02] conf/74610 Hostname resolution failure causes firewa o [2004/12/02] kern/74627 scsi Adaptec 2940U2W Can't boot 5.3 o [2004/12/03] kern/74635 [panic] vlan over fxp driver IP assignmen o [2004/12/04] kern/74690 [patch] support for SanDisk 8-in-1 in uma s [2004/12/05] kern/74708 UMAPFS kernel panic o [2004/12/05] amd64/74747 amd64 System panic on shutdown when process wil o [2004/12/06] ports/74760 java java/javavmwrapper messes up amavisd-new o [2004/12/06] kern/74771 mounting write-protected umass device as o [2004/12/06] kern/74778 ipsec passthrough / nat-t crash freebsd f o [2004/12/06] bin/74779 Background-fsck checks one filesystem twi o [2004/12/07] bin/74801 cpio -p --sparse creates truncated files o [2004/12/07] kern/74809 [panic] [modules] smbfs panic o [2004/12/07] i386/74816 i386 OS crash with kernel trap 12 in different o [2004/12/08] kern/74852 page fault: after a few days init causes s [2004/12/08] ports/74857 ports-bugs clamav socket problem a [2004/12/08] ports/74866 portmgr Update Mk/bsd.port.mk to support python p o [2004/12/08] kern/74877 Panic after halting the system - vrele: n o [2004/12/10] kern/74915 le vinum: kernel panic with dumpconfig while o [2004/12/10] i386/74923 i386 kernel panic with ncplist on 5.3-release a [2004/12/10] bin/74926 dds look(1) will silently ignore input from n p [2004/12/10] bin/74929 des DES/BLF login.conf classes not working wi o [2004/12/11] kern/74935 andre [patch] TCP simultaneous open fails. o [2004/12/12] kern/74968 cdparanoia torture wedges CD-drive and PA o [2004/12/12] kern/74976 5.3-STABLE: vn_finished_write triggered p o [2004/12/12] i386/74988 i386 dma errors with large maxtor hard drives p [2004/12/13] kern/75014 rwatson When close ipx socket kernel panic o [2004/12/14] i386/75041 i386 Sk driver gets "Corrupt MAC on input" dur o [2004/12/14] ports/75048 seanc www/mod_backhand nsswitch problem : nss_d o [2004/12/15] kern/75099 OpenOffice makes the system freeze o [2004/12/15] kern/75122 silby [PATCH] Incorrect inflight bandwidth calc o [2004/12/16] kern/75157 Cannot print to /dev/lpt0 with HP Laserje o [2004/12/16] kern/75159 (SC|VGA)_NO_FONT_LOADING in kernel config o [2004/12/18] amd64/75209 amd64 5.3-Release panics on attempted boot from o [2004/12/18] kern/75233 breaking fdformat /dev/fd0 resets device o [2004/12/19] kern/75249 [boot] 5.x install CD hangs on VirtualPC o [2004/12/19] kern/75250 gibbs timedout_scbs is not initialized with LIS o [2004/12/19] bin/75258 [patch] dd(1) has not async signal safe i o [2004/12/19] threads/75273threads FBSD 5.3 libpthread (KSE) bug o [2004/12/20] ports/75315 obrien the shells/bash2 port is broken on -CURRE o [2004/12/21] kern/75368 initiate_write_inodeblock_ufs2() panic o [2004/12/21] threads/75374threads pthread_kill() ignores SA_SIGINFO flag o [2004/12/22] kern/75407 an0: no carrier after short time o [2004/12/23] amd64/75417 amd64 ACPI: SATA Hard-disk o [2004/12/23] i386/75441 i386 fxp device timeout o [2004/12/25] kern/75482 simokawa [patch] bug in fwohci_pci.c causes cdrom f [2004/12/25] kern/75483 ipfw ipfw count does not count o [2004/12/26] kern/75510 panic: kmem_malloc(4096): kmem_map too sm o [2004/12/27] i386/75531 i386 Various DMA errors result in system panic o [2004/12/27] kern/75532 gibbs [scsi] aic79xx.c has two incorrect refere o [2004/12/27] kern/75541 [patch] Forgotten tunables for sysvmsg mo p [2004/12/27] kern/75542 rwatson Inconsistent naming of a tunable and weir p [2004/12/30] ports/75645 trevor Fix errors in emulators/linux_base-8 for o [2004/12/30] ports/75646 trevor x11/linux-XFree86-libs: enable for amd64 o [2004/12/30] usb/75648 usb [panic] panic while loading usb.ko on 4.1 o [2004/12/31] kern/75687 sound [patch] [sound] No sound on PC which is i o [2005/01/01] usb/75705 usb [panic] da0 attach / Optio S4 (with backt o [2005/01/01] docs/75711 keramida opendir manpage o [2005/01/03] kern/75733 harti ATM driver problem. o [2005/01/03] ports/75748 edwin [patch] vmware3 install broken o [2005/01/03] kern/75755 kmem_malloc(45056): kmem_map too small: 3 o [2005/01/03] kern/75773 [panic] sysctl -a panic o [2005/01/04] kern/75780 [backtrace] [5.3R panic] panic: vm_page_f o [2005/01/04] kern/75794 tackerman em driver alignment problems o [2005/01/04] usb/75797 usb 5.3-STABLE(2005 1/4) detect USB headset, o [2005/01/04] kern/75823 wi0 interface self-destructs after a coup o [2005/01/05] kern/75850 Reboot hangs when swap resides on disks t o [2005/01/06] kern/75875 acd0: FAILURE - READ_BIG ILLEGAL REQUEST o [2005/01/06] i386/75887 i386 with vt0.disabled=0 and PCVT in kernel vi o [2005/01/08] bin/75931 Got "bus error" on running certain apps o [2005/01/09] kern/75978 Linksys WPC11 ver 3 wifi card locks up 5 p [2005/01/09] bin/75980 expand(1) breaks tab columns in Japanese o [2005/01/10] kern/76023 [panic] xmms causes panic o [2005/01/10] ports/76029 mita misc/mgp-mode.el is already included in m o [2005/01/11] kern/76080 [panic] "bio_completed .. greater than bi f [2005/01/11] ports/76120 tobez coredump in perl 5.8.5 in malloc()-call f o [2005/01/12] kern/76126 [patch] [nfs] 4.11 client will send a NFS o [2005/01/12] bin/76134 fetch(1) doesn't like 401 errors with -A o [2005/01/12] amd64/76136 amd64 system halts before reboot f [2005/01/12] ports/76174 cy problem with ftp/sftp o [2005/01/13] usb/76204 usb panic while using usb attached modem o [2005/01/13] kern/76207 [patch] Null pointer dereference in xl_de o [2005/01/14] kern/76237 le vinum panics on ufs_baddir, possible link o [2005/01/17] amd64/76336 amd64 racoon/setkey -D cases instant "Fatal Tra o [2005/01/17] i386/76372 i386 cannot burn iso image disk2 of any releas o [2005/01/18] usb/76395 usb USB printer does not work, usbdevs says " o [2005/01/18] kern/76398 stdio can lose data in the presence of si o [2005/01/18] kern/76410 [patch] Null pointer dereference in net/b o [2005/01/19] kern/76464 mlaier PF, set loginterface & non existing inter o [2005/01/20] i386/76487 i386 Compiled GENERIC kernel (and non-GENERIC) o [2005/01/20] kern/76504 silby Keep-alives doesn't work on half-closed s o [2005/01/21] kern/76525 select() hangs on EOF from named pipe (FI o [2005/01/21] kern/76538 nfs-write on gbde partition stalls and co o [2005/01/21] usb/76554 usb Panram "yoyo" USB MP3 player causes panic o [2005/01/22] bin/76578 uniq truncates long lines to LINE_MAX o [2005/01/23] bin/76588 OpenSSL fails on loading keyfiles from BI o [2005/01/24] java/76631 java any port linux-*-jdk12 will core dump if o [2005/01/24] ports/76633 kwm Totem will not play DVDs> o [2005/01/25] ports/76644 emulation FreeBSD 5.3 will freeze or crash when run o [2005/01/25] ports/76658 clive font.properties actual font file cannot p o [2005/01/25] kern/76663 panic with FAST_IPSEC and IPv6 o [2005/01/25] i386/76666 i386 Booting and Sound are mutually exclusive o [2005/01/25] kern/76672 Problem with cardbus and vlans o [2005/01/25] usb/76684 usb Toshiba PDR-M4 camera connected via USB h o [2005/01/26] threads/76694threads fork cause hang in dup()/close() function o [2005/01/27] i386/76737 i386 CardBus problem (cbb1: Could not map regi o [2005/01/28] kern/76792 le vinum not working with aac disk devices f [2005/01/30] ports/76838 edwin multimedia/pvr250 problems in 4.x with co f [2005/01/30] kern/76840 vs aureal-kmod locks the STABLE snapshot of o [2005/01/30] kern/76848 amr hangs o [2005/01/30] bin/76858 [PATCH] Bug in pkg_{info,delete} package o [2005/01/30] kern/76871 le vinum / does not find its second drive p [2005/01/31] kern/76890 glebius [patch] em driver does not send routing m o [2005/01/31] kern/76893 Fatal divide in booting processes with Bu o [2005/01/31] i386/76925 i386 standard pci-ide, install - "NO DISKS FOU o [2005/02/01] kern/76937 Page fault while in kernel mode under hea o [2005/02/01] i386/76944 i386 [patch] i386 bus_dmamap_create() bug o [2005/02/01] i386/76948 i386 Slow network with rl0 (rl0 driver problem o [2005/02/01] kern/76968 Failing to boot into machine o [2005/02/02] amd64/77011 amd64 consisten 5.3-p5 make crash on installwor o [2005/02/02] kern/77026 umount-ing non-existent device panics sys o [2005/02/03] bin/77067 /bin/sh premature termination when 'set - o [2005/02/04] amd64/77101 amd64 Please include ULi M1689 LAN, SATA, and A o [2005/02/05] ports/77115 phantom jdk15 and amd64, ${ARCH} bug o [2005/02/06] i386/77154 i386 5.3 refuses to boot when IDE channel2 is o [2005/02/06] kern/77181 [patch] [newfs] newfs -g largevalue, mkdi o [2005/02/06] usb/77184 usb kernel panic on USB device disconnect o [2005/02/07] kern/77195 darrenr [patch] Ipfilter ioctl SIOCGNATL does not o [2005/02/09] kern/77289 system hangs while trying to unmount prev o [2005/02/09] usb/77294 usb ucom + ulpcom panic o [2005/02/09] i386/77325 dfr valgrind hangs at program completion, see o [2005/02/10] i386/77335 i386 Can not initial Ethernet Broadcom UDI PXE o [2005/02/10] kern/77337 Samba3+FAT32->Reboot o [2005/02/10] conf/77340 rc awk used in /etc/rc.d/nsswitch when not a o [2005/02/10] ports/77356 daichi avr-libc 1.2.1 installs but does not ins p [2005/02/11] conf/77384 brooks /etc/rc.d/var uses commands from /usr/bin o [2005/02/12] sparc64/77417sparc64 [panic] with high usage of cpu when lan u o [2005/02/13] kern/77432 [PATCH] It is not possible to load nfs4cl o [2005/02/13] kern/77439 WAG511 NETGEAR pccard does not attach (De o [2005/02/13] i386/77443 i386 Can't access floppy - "/dev/fd0: Input/ou o [2005/02/13] bin/77455 [natd] fatal trap 19 in natd o [2005/02/13] kern/77463 [PATCH] Local DoS from user-space in NFS o [2005/02/14] kern/77493 [named pipes] freebsd 5.3 + bash process o [2005/02/14] ports/77515 sobomax ZapTel crashes on some hardware o [2005/02/14] i386/77529 i386 installation of freebsd 5.3 in laptop an o [2005/02/15] ports/77574 nectar net/nss_ldap locks out when cd'ing to see o [2005/02/16] kern/77588 PREEMPTION problems in combination with e o [2005/02/16] usb/77604 usb Sluggish Logitch LX700 USB Mouse o [2005/02/17] amd64/77629 amd64 aMule hardlocks AMD64 system o [2005/02/17] kern/77631 [if_sis] sis network driver broken in 5.3 o [2005/02/17] i386/77643 sos SATA PCI controllers fail with WRITE_DMA o [2005/02/17] bin/77651 init can loose shutdown related signals o [2005/02/17] ports/77656 phantom java/jdk15 - (AMD64) install problem. o [2005/02/18] kern/77665 multicast sockets + interface removal = p o [2005/02/18] kern/77684 tx(4) driver causes machine to lockup o [2005/02/19] i386/77710 emulation Linux page fault sigcontext information i o [2005/02/20] kern/77753 DVD-writer fails to fixate DVD f [2005/02/20] usb/77799 usb [panic] on attach of a mp3 player to USB f [2005/02/20] kern/77805 Boot hangs with ACPI enabled o [2005/02/21] i386/77825 i386 dc driver pagefaults on bootup o [2005/02/21] ports/77873 portmgr New variable: USE_BSD_MK o [2005/02/22] conf/77932 [patch] pf and ipfw periodic scripts not o [2005/02/22] i386/77935 i386 Can't boot with 5.x CD or floppy o [2005/02/23] usb/77940 usb [patch] [panic] insertion of usb keyboard o [2005/02/23] amd64/77949 amd64 Pb boot FreeBSD 64 o [2005/02/23] ports/77954 trevor emulators/linux_base for amd64 fails to i o [2005/02/23] kern/77982 [patch] lnc0 can NOT be detected in vmwar o [2005/02/25] docs/78062 doc Sample Echo Pseudo-Device Driver for Free o [2005/02/25] i386/78075 i386 filesystem corruption p [2005/02/25] bin/78085 robert id command inconsistency o [2005/02/25] ports/78086 bms multimedia/dirac: install failure (patch o [2005/02/25] bin/78087 groups program inconsistency o [2005/02/27] docs/78154 doc [PATCH] Make en_US FreeBSD Handbook more o [2005/02/27] gnu/78161 [patch] typo in gzexe o [2005/02/28] kern/78179 bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o [2005/02/28] kern/78216 WRITE_DMA UDMA ICRC errors while copying o [2005/03/01] i386/78218 i386 kue not detected on Sony PCG-F370 VAIO o [2005/03/01] i386/78219 i386 Netgear FA-410TX is incorrectly detected o [2005/03/01] kern/78227 Destroying a network interface leaks kern f [2005/03/01] ports/78245 linimon make no longer working in /usr/ports o [2005/03/02] i386/78301 i386 Fatal trap 12 o [2005/03/02] ports/78325 cy -current behaves differently than 4.X w.r o [2005/03/03] i386/78339 i386 BTX loader crashes on boot on HP Proliant o [2005/03/03] standards/78357standards getaddrinfo() doesn't appear to support A o [2005/03/03] kern/78382 wpaul dhclient on ndis0 causes kernel panic o [2005/03/04] kern/78384 [panic] Reproducible panic with port iplo o [2005/03/04] ports/78396 java Java 1.4 fails to compile under FreeBSD 4 o [2005/03/04] amd64/78406 amd64 [panic]AMD64 w/ SCSI: issue 'rm -r /usr/p o [2005/03/04] ports/78428 openoffice Openoffice-1.1.4 stops compiling -> dmake o [2005/03/05] kern/78434 [patch] vfs_mount: -current does not cdbo p [2005/03/06] kern/78478 rwatson writing to closed socket does not generat o [2005/03/07] i386/78517 i386 WRITE_DMA and READ_DMA timeouts with ATI o [2005/03/07] amd64/78558 amd64 installation o [2005/03/08] bin/78570 "wicontrol -i wi0 -C" outputs garbage o [2005/03/10] i386/78657 i386 error installing 5.3-RELEASE due to Compa o [2005/03/10] threads/78660threads Java hangs unkillably in STOP state after o [2005/03/10] i386/78666 i386 ata0-master: FAILURE ATA-IDENTIFY timed o o [2005/03/13] conf/78762 [patch] /etc/rc.d/ipfw should excecute $f o [2005/03/13] kern/78791 xl input errors and speed problem o [2005/03/14] kern/78801 mux ping: sendto: No buffer space available o [2005/03/14] ports/78811 tobez Add WITH_DEBUGGING option to lang/perl5.8 f [2005/03/14] kern/78818 mlaier pf crash on high load if use route-to o [2005/03/14] ports/78834 ambrisko [PATCH] net/etherboot: gcc-3.4 fix o [2005/03/14] ports/78847 des Can't require 'asdf-install with current o [2005/03/14] amd64/78848 amd64 sis driver on FreeBSD 5.x does not work o f [2005/03/15] kern/78868 gibbs [scsi] Adaptec 29160 fails with IBM LTO-2 o [2005/03/16] i386/78929 i386 atapicam prevents boot, system hangs o [2005/03/16] i386/78930 i386 SuperMicro web server with 5.3-RELEASE ke o [2005/03/17] kern/78946 vm_pageout_flush: partially invalid page o [2005/03/17] kern/78953 bp [smbfs] smbfs getdirentries() failure cau o [2005/03/17] kern/78956 Only one write operation attempted on RAI o [2005/03/17] bin/78964 qa [sysinstall] can not write labels to hdd o [2005/03/17] kern/78968 FreeBSD freezes on mbufs exhaustion (netw o [2005/03/18] kern/78987 scottl [patch] udf fs: readdir returns error whe o [2005/03/18] usb/78989 usb please add USB keyboard support to instal o [2005/03/19] ports/79014 nork building www/linuxpluginwrapper fails. o [2005/03/19] kern/79025 [patch] && in /usr/src/etc/Makefile needs o [2005/03/21] i386/79073 i386 System panic and hang after creating a la o [2005/03/21] i386/79080 acpi acpi thermal changes freezes HP nx6110 o [2005/03/21] i386/79081 acpi ACPI suspend/resume not working on HP nx6 o [2005/03/22] usb/79140 usb WD Firewire/USB Combo hangs under load on o [2005/03/22] i386/79141 i386 5.4Beta1 does not recognize my intel grap o [2005/03/23] kern/79148 DHClient / Ethernet Card not communicatin o [2005/03/23] kern/79160 xl_detach cause panic o [2005/03/23] kern/79168 Problems running two firewire disks on on o [2005/03/23] i386/79169 i386 freeze with striped USB Drives under high o [2005/03/24] kern/79208 [nfs] Deadlock or starvation doing heavy o [2005/03/24] kern/79214 [nfs] iozone hurts tcp-based NFS p [2005/03/25] bin/79229 brooks Wrong Makefile path at /usr/src/sbin/ifco o [2005/03/25] ports/79231 x11 XORG / FBSD5.4 stuck at 640x480 on HP XE2 o [2005/03/26] kern/79255 Fixating CDRW with burncd(8) hangs system o [2005/03/26] kern/79262 [if_dc] Adaptec ANA-6922 not fully suppor o [2005/03/26] bin/79263 find -exec {} + fails with -or and ! o [2005/03/27] i386/79268 i386 5.3-RELEASE won't boot on Compaq Armada 4 o [2005/03/27] usb/79269 usb USB ohci da0 plug/unplug causes crashes a o [2005/03/27] usb/79287 usb UHCI hang after interrupt transfer o [2005/03/28] kern/79295 umount oddity with NFS (fwe) over VIA Fir o [2005/03/28] i386/79323 i386 authmod setup with ifconfig on dlink wlan o [2005/03/29] kern/79324 [if_bge] Broadcom bge chip initialization o [2005/03/29] kern/79332 [patch] "ffs_mountroot: can't find rootvp o [2005/03/29] kern/79333 pjd GEOM MIRROR mount root problem o [2005/03/29] kern/79334 [ata] ATA_IDENTIFY timed out for 5.3 and o [2005/03/29] kern/79336 [nfs] NFS client doesn't detect file upda o [2005/03/29] kern/79339 [patch] Kernel time code sync with improv o [2005/03/30] bin/79376 moused causes random mouse events with a o [2005/03/31] ports/79386 lioux patch multimedia/gstreamer-plugins: wrong o [2005/03/31] ports/79397 clement news/inn fails to build nnrpd under RELEA o [2005/03/31] i386/79409 i386 [ataidle?] Come back from idle make the s o [2005/04/02] usb/79436 usb Panic: ohci_abort_xfer: not in process co o [2005/04/02] kern/79493 [PATCH] [if_tun] Reproducible if_tun pani o [2005/04/04] usb/79524 usb printing to Minolta PagePro 1[23]xxW via o [2005/04/05] kern/79546 glebius dummynet & ipfw tee: kernel may hang (end o [2005/04/05] ports/79550 trevor print/acroread7 fails to open files when o [2005/04/07] kern/79621 qa [sysinstall] sysinstall does not create a o [2005/04/07] usb/79622 imp USB devices can be freed twice o [2005/04/07] usb/79656 usb [usb] RHSC interrupts lost o [2005/04/07] docs/79658 doc Freebsd Handbook incorrect about ATAPI CD o [2005/04/08] kern/79660 ATAPI CD driver /dev/acd0tNN fails if dev o [2005/04/08] kern/79665 [panic] "unmount: dangling vnode" on amd o [2005/04/08] threads/79683threads svctcp_create() fails if multiple threads o [2005/04/08] i386/79686 i386 Spurious notebook disk errors from ATA dr o [2005/04/08] kern/79693 jhb SMP: msleep and sleepq_broadcast race o [2005/04/08] kern/79700 [nfs] suspending nfs file access hangs ot o [2005/04/09] kern/79703 [hang] RocketRaid 1820A has problems with o [2005/04/09] usb/79722 usb [usb] wrong alignments in ehci.h o [2005/04/09] i386/79729 i386 umass, da0 not detected by devfs for o [2005/04/09] i386/79730 i386 SLIM DRIVE COMBO fails with READ_BIG erro o [2005/04/11] i386/79779 i386 If system memory is above 4GB, one parts o [2005/04/11] kern/79783 ata: hw.ata.atapi_dma=1 reduces HDD writi o [2005/04/11] i386/79784 i386 Broadcom BCM4401 (bfe) : no carrier o [2005/04/11] kern/79785 realtek NIC will crash a heavy BSD system f [2005/04/11] i386/79797 i386 [panic] pmap_dev: Coud't alloc kernel vir o [2005/04/12] i386/79807 i386 Lock Up on Old Acer P1 Comp o [2005/04/12] amd64/79813 amd64 Will not install/run on amd64 nForce 4 pl o [2005/04/12] i386/79833 i386 BTX crashes on boot when using Promise TX o [2005/04/13] docs/79857 doc manpage about ntp is wrong o [2005/04/14] kern/79895 darrenr 5.4-RC2 breaks ipfilter NAT when using ne o [2005/04/14] kern/79905 sound [sound] sis7018 sound module problem o [2005/04/14] bin/79910 qa [sysinstall] Cannot escape from failed po o [2005/04/14] i386/79912 i386 Sound broken for 2 VIA chipsets o [2005/04/14] kern/79940 [panic] 5.3 with kernel debug causes pani o [2005/04/14] ports/79941 openoffice Openoffice 1.1.4_1 binary packages (i386) o [2005/04/14] i386/79943 i386 Very High interupt rate on PCM o [2005/04/16] kern/79988 darrenr [trap] page faults while in kernel mode o [2005/04/16] kern/79989 [panic] nfs_inactive() / sched_switch() p o [2005/04/16] kern/80005 [if_re] re(4) network interface _very_ un f [2005/04/17] kern/80035 glebius netgraph is causing crash (free()->panic) o [2005/04/17] usb/80040 usb [hang] Use of sound mixer causes system f f [2005/04/17] kern/80041 sound [sound] snd_via8233 does not support VIA8 o [2005/04/17] kern/80042 FreeBSD 5.4 RC2: Promise PDC20265 on A7V f [2005/04/18] ports/80069 tobez lang/perl5.8 doesn't make a valid symlink o [2005/04/18] bin/80074 Bug in OpenSSL's sk_insert() causes segfa o [2005/04/19] kern/80088 [smbfs] Incorrect file time setting on NT o [2005/04/19] amd64/80114 amd64 kldload snd_ich causes interrupt storm wh o [2005/04/20] kern/80136 [crash] mdconfig can reboot the system o [2005/04/20] kern/80166 ups [panic] Debugger SMP race panic o [2005/04/22] ports/80245 vs net-mgmt/zabbix: Error in Zabbix rc.d fil o [2005/04/22] usb/80260 usb Travan USB tape drive fails to write o [2005/04/22] kern/80266 rwatson [patch] IPX routing doesn't work o [2005/04/22] i386/80268 i386 [crash] System with Transmeta Efficeon cp o [2005/04/23] ports/80288 ports-bugs [PATCH] samba: processing of symlinks bro o [2005/04/25] kern/80321 ups serial db problems o [2005/04/25] kern/80322 TCP socket support broken on a busy port p [2005/04/25] bin/80346 stefanf [PATCH] Misuse of el_init() can lead mult o [2005/04/26] kern/80354 [crash] Path MTU discovery ICMP NATD BSD o [2005/04/26] usb/80361 usb mounting of usb-stick fails o [2005/04/26] usb/80373 usb usb keyboard does not respond o [2005/04/26] kern/80381 5.4 RC3 can't allocate ps/2 irq, no psm, o [2005/04/27] bin/80389 kuriyama rpc.lockd brokenness o [2005/04/27] ports/80395 seanc libmemcache does not properly configure i o [2005/04/27] sparc64/80410sparc64 netgraph is causing crash with mpd on spa o [2005/04/28] i386/80426 i386 5.4-RC3 still panic when boot on ASUS P2B o [2005/04/28] i386/80433 i386 write failure on transfer! o [2005/04/28] threads/80435threads panic on high loads o [2005/04/30] kern/80469 [smbfs] mount_smbfs causes freebsd to reb o [2005/04/30] ports/80491 doceng Dependency error between packages prebuil o [2005/05/01] ports/80514 ports-bugs emulators/vmware3: vmmon_smp.ko does not o [2005/05/01] kern/80519 [ntfs] Write capability for ntfs filesyst o [2005/05/02] i386/80539 i386 bug /dev/bpf (/usr/ports/net-mg o [2005/05/03] kern/80572 bridge/ipfw works intermittantly. o [2005/05/04] usb/80628 usb recent USB MFCs cause panics o [2005/05/05] ports/80633 delphij mail/spamd: problems with rcNG (if spamd o [2005/05/05] ports/80679 emulation emulators/linux_base-8: Use ${MACHINE_ARC o [2005/05/06] usb/80685 usb panic in usb_cold_explore() at begining o [2005/05/06] amd64/80691 amd64 amd64 kernel hangs on load o [2005/05/06] kern/80694 [patch] atkbd looped on Acer TravelMate 2 o [2005/05/06] kern/80714 drop/boot to single user hangs on 5.4-REL o [2005/05/07] i386/80739 i386 Strange panic (keyboard related?) on 5.4 o [2005/05/08] kern/80742 [PATCH] Local DoS in sys/compat/pecoff (+ o [2005/05/08] kern/80784 mux fxp gives device timeouts o [2005/05/08] bin/80798 mount_portal pipe leaves file descriptors o [2005/05/09] usb/80829 usb possible panic when loading USB-modules o [2005/05/09] ports/80837 emulation x11-toolkits/linux-gtk: cannot install by o [2005/05/10] ports/80842 perl mail/p5-Mail-SpamAssassin: spamd does not o [2005/05/10] docs/80843 doc [patch] Suggested doc fix for psm0 / hand o [2005/05/10] kern/80853 [patch] [if_ed] add support for Compex RL o [2005/05/10] ports/80860 demon rrdtool port won't install perl modules o [2005/05/10] usb/80862 usb USB locking issues o [2005/05/10] ports/80869 girgen postgresql80-* does not handle Kerberos c o [2005/05/11] sparc64/80890sparc64 panic: kmem_malloc(73728): kmem_map too s f [2005/05/11] ports/80892 daichi portupgrade ignores configfile f [2005/05/11] ports/80901 mharo proftpd's mod_tls floods syslog with "alr o [2005/05/11] bin/80913 ipfw /sbin/ipfw2 silently discards MAC addr ar o [2005/05/12] ports/80926 emulation running $PREFIX/etc/rc.d/vmware.sh return o [2005/05/12] kern/80932 tackerman [patch] Degraded performance of em driver o [2005/05/12] i386/80938 i386 gmirror: DEVFS Overflow table o [2005/05/13] kern/80969 glebius [panic] Repeatable double fault panic aft o [2005/05/13] kern/80974 sound [sound] SIMPLEX flag is not set properly o [2005/05/13] kern/80975 sound [patch] [sound] Missing PCI-ID (sound) o [2005/05/13] kern/80976 sound [patch] [sound] problems with an soundbla o [2005/05/13] kern/80977 sound [patch] [sound] panic with the vibra16x w o [2005/05/13] kern/80980 [patch] problem in "sys/i386/include/bus. o [2005/05/13] i386/80989 i386 Cannot install 5.4-RELEASE both in my sys o [2005/05/14] kern/81000 sound [sound] Via 8235 sound card worked great o [2005/05/14] i386/81019 i386 RealTek 8169S32 behaves erratically o [2005/05/14] amd64/81037 amd64 SATA problem o [2005/05/16] kern/81095 IPsec connection stops working if associa p [2005/05/16] i386/81111 i386 /boot/loader causes reboot due to CFLAGS+ o [2005/05/17] kern/81146 sound [sound] Sound isn't working AT ALL for Si o [2005/05/17] kern/81147 tackerman em0 reinitialization while adding aliases o [2005/05/17] java/81176 java Java Webstart does not work f [2005/05/18] ports/81179 tobez perl5.8 problem regarding handling of tcp o [2005/05/18] kern/81180 bktr(4) driver cannot capture both audio o [2005/05/18] kern/81202 glebius nmap scan causes box to get immediately r o [2005/05/18] kern/81207 [ndis] NDIS wrapper doesn't probe my card o [2005/05/18] i386/81215 i386 X Freeze on Dell Inspiron 9100 with Radeo o [2005/05/19] bin/81231 des Patch pam_ssh to reject keys with no pass o [2005/05/19] kern/81232 [panic] vrele: negative ref o [2005/05/19] i386/81235 i386 /sys/i386/conf/GENERIC needs "options ASR o [2005/05/19] threads/81258threads Thread specific data is sometimes assigne o [2005/05/19] amd64/81272 amd64 JDK 1.5 port doesn't build. o [2005/05/19] kern/81282 le Check parity with gvinum causes panic p [2005/05/19] ia64/81284 pf Unaligned Reference with pf on 5.4/IA64 o [2005/05/20] kern/81301 problems with new "contigmalloc" routine o [2005/05/20] usb/81308 usb Polling a ugen(4) control endpoint causes s [2005/05/20] ports/81309 pav multimedia/mplayer: fix for bsdbt848 with o [2005/05/20] i386/81311 i386 Athlon MP SMP + 3ware + em0 = deadlock, n o [2005/05/20] kern/81322 [freeze] lnc driver causes lockups o [2005/05/20] kern/81324 darrenr [panic] "Duplicate free of item %p from z o [2005/05/20] amd64/81325 amd64 KLD if_ath.ko: depends on ath_hal - not a o [2005/05/21] ports/81343 lioux azureus crashes on startup o [2005/05/23] bin/81389 brian ( usermode ppp ) LCP Negotiation Never Fi o [2005/05/23] bin/81390 ( usermode ppp ) LCP Negotiation Never Fi o [2005/05/24] bin/81429 [patch] Error in /etc/rc.subr: jail+devfs o [2005/05/24] ports/81440 cy Major improvements to x11-wm/fvwm2-devel o [2005/05/25] ports/81464 knu ruby-1.8.2_3 stack handling broken due to o [2005/05/26] usb/81524 usb panic: usb_cold_explore: busses to explor o [2005/05/27] kern/81539 The fxtv program freezes systems o [2005/05/27] kern/81545 PPTP mpd-link stops to send and/or receiv o [2005/05/28] amd64/81602 amd64 SATA crashes with parallel pcm access o [2005/05/28] kern/81606 darrenr ipnat fails to start after upgrade to REL o [2005/05/29] ports/81631 ports-bugs new port: german/tvbrowser o [2005/05/30] kern/81644 [modules] if_vge does not work properly w o [2005/05/31] gnu/81689 Unable to connect via SSH using protocol f [2005/05/31] i386/81694 i386 boot loader doesn't work after the world o [2005/05/31] ports/81717 skv creation of databases/firebird-server bro o [2005/06/01] kern/81770 [nfs] Always "NFS append race" at every N f [2005/06/01] usb/81774 usb 2nd generation iPod mini cannot be mounte o [2005/06/02] kern/81807 Silo overflows with serial multiport card o [2005/06/02] kern/81813 andre [ PATCH ] ICMP_UNREACH_NEEDFRAG with unsp o [2005/06/03] ports/81821 lioux port multimedia/gstreamer-plugins build b o [2005/06/04] conf/81882 [patch] missing terminal definition for w o [2005/06/04] i386/81887 i386 Adaptec SCSI 2130S aac0: GetDeviceProbeIn o [2005/06/04] i386/81903 i386 Installer hangs on all menu entries on To s [2005/06/06] ports/81940 gerald wine produces err:heap:HEAP_CreateSystemH o [2005/06/06] kern/81943 des [patch] _assert_sbuf_integrity causes pan o [2005/06/07] kern/81978 yar [ PATCH ] if_vlan didn't pass the ALLMULT o [2005/06/07] bin/81997 ntpd fails to bind to IP-address o [2005/06/08] i386/82029 i386 Boot Loader installation on MegaRAID cont p [2005/06/08] bin/82030 simon [sysinstall] Choosing an alternate defaul o [2005/06/08] kern/82043 sound [sound] snd_emu10k1 - mixer does not work o [2005/06/09] conf/82059 [patch] /etc/rc.d/localpkg: partially sor o [2005/06/09] kern/82064 anholt DRM not working with SMP o [2005/06/09] amd64/82071 amd64 incorrect -march's parameter to build 32b o [2005/06/10] ports/82097 lev subversion name resolution failure o [2005/06/11] kern/82143 kqueue on FreeBSD 4.11 fails to report UD f [2005/06/13] java/82183 java Cannot install Java 1.5, lots of missing o [2005/06/13] ports/82191 lawrance [new port] request to add port x11-toolki o [2005/06/13] usb/82198 usb Panic on attaching of ONKI N-338 USB MP3 o [2005/06/13] i386/82207 i386 tcpslice incorrectly handles dates where o [2005/06/14] kern/82219 [panic] in dumping if watchdog enabled. o [2005/06/14] ports/82221 ume security/cyrus-sasl2 does not compile o [2005/06/14] kern/82227 [digi] Xem: chained concentrators not rec o [2005/06/14] docs/82231 doc mountd(8) behavior does not match exports o [2005/06/14] ports/82241 anders minicom port references old serial port n o [2005/06/15] sparc64/82261sos DMA-support on Sparc64 broken o [2005/06/15] bin/82263 compat 4x broken after last update o [2005/06/15] kern/82271 pf [pf] cbq scheduler cause bad latency o [2005/06/15] usb/82272 usb Can not recognize Casio camera EX-Z40 as o [2005/06/15] i386/82285 i386 kernel panic during reboot o [2005/06/15] docs/82296 doc ttys(5) man page misleads about use for n o [2005/06/16] bin/82306 glebius PPP ip-pool regression due CARP implement o [2005/06/16] conf/82314 brooks [patch] /etc/rc.d/netif does not build th f [2005/06/16] ports/82334 lawrance textproc/redland-bindings version bump to o [2005/06/17] usb/82350 null pointer dereference in USB stack f [2005/06/19] kern/82413 glebius Kernel panic in ksocket netgraph module o [2005/06/19] amd64/82425 amd64 fxp0: device timeout, fxp interface dies o [2005/06/20] kern/82442 [panic] Fatal trap 12 in em driver on 4.1 o [2005/06/21] i386/82464 i386 Sony Ericsson GC75 GPRS MODEM not recogni o [2005/06/21] kern/82468 Using 64MB tcp send/recv buffers, traffic o [2005/06/21] kern/82482 [patch] hptmv ( Highpoint RocketRaid 1820 o [2005/06/21] kern/82491 [patch] bootpd shouldn't ignore requests o [2005/06/21] kern/82497 if_vge (via Gigabit Ethernet) on AMD64 on o [2005/06/21] ports/82498 ports-bugs xemacs spews 'X Error of failed..." whene o [2005/06/22] usb/82520 usb Reboot when USL101 connected o [2005/06/22] conf/82526 [patch] /etc/rc.d/ntpd is being started t o [2005/06/23] amd64/82555 amd64 Kernel Panic - after i connect to my "amd o [2005/06/23] sparc64/82569sparc64 USB mass storage plug/unplug causes syste o [2005/06/25] ports/82641 sobomax Remove or mark BROKEN misc/zaptel on 4.x o [2005/06/25] kern/82649 [panic] some request to DVDROM causes ker o [2005/06/25] standards/82654standards C99 long double math functions are missin o [2005/06/26] usb/82660 usb EHCI: I/O stuck in state 'physrd'/panic o [2005/06/26] bin/82667 burncd doesn't abort on error conditions o [2005/06/26] kern/82668 ATA timeouts on 5.4-stable o [2005/06/27] ports/82701 ale Cannot install mysql41-server port o [2005/06/28] bin/82720 <[patch] Incorrect help output from growf o [2005/06/28] kern/82727 firewire [modules] kernel module if_fwip fails to o [2005/06/28] ports/82730 daichi sysutils/portupgrade: SMP + portupgrade o o [2005/06/28] kern/82755 [panic] during periodic ncvs.sh script at o [2005/06/29] ports/82759 delphij Source navigator installs in wrong direct o [2005/06/29] ports/82771 ale Setting "BUILD_OPTIMIZED=yes" breaks port o [2005/06/30] kern/82805 [panic] sched_switch ched_4bsd.c:865 / nf o [2005/06/30] kern/82806 darrenr ipnat doesn't handle out of order fragmen o [2005/06/30] ports/82824 daichi sysutils/portupgrade fails to build due t f [2005/06/30] ports/82837 ports-bugs [patch] Missing dependencies at ftp/lftp o [2005/07/01] kern/82846 phk Kernel crash in 5.4 with SMP,PAE o [2005/07/01] ports/82856 ports-bugs vmware3 port fails to compile on FreeBSD o [2005/07/01] bin/82878 kientzle A bunch of bugs in archive_read_data of l o [2005/07/02] kern/82881 ng_fec(4) causes kernel panic after inter o [2005/07/02] kern/82905 [nullfs] mount_nullfs can reboot system o [2005/07/03] kern/82919 [patch] [sysctl] Bridge configuration upd o [2005/07/03] ports/82924 knu [PATCH] Add bdb4.3 support for ruby-bdb f [2005/07/04] www/82961 remko CSR's listing is way out of date o [2005/07/04] bin/82975 route change does not parse classfull net o [2005/07/04] ports/82979 seanc mod_geoip fails to compile WITH_APACHE2=y o [2005/07/05] amd64/83005 amd64 Memory Occupied during installation of th o [2005/07/05] kern/83017 [modules] snd_ich freezes system when bei o [2005/07/07] i386/83078 i386 Need to develop the network driver for Bo o [2005/07/07] bin/83080 DHCP configuration fails while installing p [2005/07/07] bin/83085 des [patch] double free() in openpam o [2005/07/07] kern/83098 'vrele: negative ref cnt' in shutdown wit o [2005/07/07] kern/83107 delphij [patch] libc uuid_compare() doesn't work o [2005/07/07] bin/83114 DHCP configuration fails while installing o [2005/07/09] ports/83183 olgeni webmin/perl coredumps o [2005/07/09] bin/83195 nvi loses edited file on network disconne o [2005/07/10] i386/83214 i386 FreeBSD 5.4 cannot install on IC35L120AVV o [2005/07/10] ports/83223 tobez lang/perl5.8: perl-after-upgrade do nothi o [2005/07/11] ports/83243 knu ruby-bdb compiling trouble o [2005/07/11] ports/83252 openoffice Openoffice-1.1.4 build failure: Died at . o [2005/07/11] kern/83254 [digi] driver can't init Digiboard PC/4e o [2005/07/11] i386/83289 i386 I get an error while trying to update (ma o [2005/07/11] kern/83297 Possible issue with FreeBSD 5.4 jailing a o [2005/07/12] kern/83319 Systencrash on Heavy HardDisk Load. o [2005/07/12] bin/83336 [ PATCH ] libc's parse_ncp() don't check o [2005/07/12] bin/83338 [ PATCH ] libc's getent() don't check for o [2005/07/12] bin/83340 [ PATCH ] setnetgrent() and supporting fu o [2005/07/12] bin/83344 [ PATCH ] Improper handling of malloc fai o [2005/07/12] bin/83347 [ PATCH ] improper handling of malloc fai o [2005/07/12] bin/83348 [ PATCH ] Improper handling of malloc fai o [2005/07/12] bin/83349 [ PATCH ] improper handling o malloc's fa o [2005/07/12] bin/83359 [ PATCH ] improper handling of malloc fai p [2005/07/13] bin/83363 stefanf [ PATCH ] Improper handling of malloc's f o [2005/07/13] bin/83364 [ PATCH ] improper handling of malloc fai o [2005/07/13] bin/83368 [ PATCH ] incorrect handling of malloc fa o [2005/07/13] bin/83369 [ PATCH ] incorrect handling of malloc fa o [2005/07/13] kern/83375 phk Fatal trap 12 cloning a pty o [2005/07/13] kern/83384 failure of non-essential IDE partitions c o [2005/07/13] kern/83406 SMP: em/bge drivers: severe performance l o [2005/07/14] i386/83425 i386 fdisk can't read or write disklabel o [2005/07/14] bin/83426 [ PATCH ] improper handling of malloc fai o [2005/07/14] kern/83429 [if_ath] ath(4) does not work with the D- f [2005/07/14] ports/83434 java tomcat ports give the wrong ownership to o [2005/07/14] bin/83452 deischen [ PATCH ] Unhandled malloc failure within o [2005/07/14] bin/83457 deischen [ PATCH ] Unhandled malloc failure within o [2005/07/14] bin/83464 [ PATCH ] Unhandled malloc failures withi o [2005/07/14] bin/83467 philip [ PATCH ] Unhandled malloc errors within o [2005/07/14] bin/83476 kientzle [ PATCH ] Too many unhandled malloc error o [2005/07/14] kern/83477 [patch] [ndis]] NDIS compat code makes in o [2005/07/15] kern/83499 fragmented packets does not pass through f [2005/07/15] conf/83500 linimon Errors reading radiusd.conf o [2005/07/15] ports/83502 openoffice OOorgs Makefile lacks information about L o [2005/07/15] ports/83514 portmgr fix typo in bsd.port.mk: s/RC_ORDER/USE_R f [2005/07/15] kern/83521 pjd GEOM_STRIPE Error On Boot o [2005/07/15] kern/83529 partition table corruption using wdc/wd d o [2005/07/16] kern/83552 [panic] Fatal trap 19 on ti0 when SMP is o [2005/07/16] bin/83558 usr.sbin/kernbb doesn't compile during bu o [2005/07/16] usb/83563 usb Page Fault while detaching Mpman Usb devi o [2005/07/16] i386/83574 i386 installation failure o [2005/07/17] kern/83586 [panic] [ndis] ndis panic with Intel Pro o [2005/07/17] ports/83602 archie net/mpd causes segmentation fault with am o [2005/07/17] ports/83620 sobomax net/asterisk: syntax error in chan_zap.c f [2005/07/18] kern/83671 Can't get comconsole to work properly on o [2005/07/18] usb/83677 usb [usb] usb controller not detected o [2005/07/18] bin/83696 Maximum members in group seems broken o [2005/07/19] i386/83735 i386 network card (realtek 8139) and sound car o [2005/07/19] usb/83756 usb Microsoft Intellimouse Explorer 4.0A does o [2005/07/20] kern/83761 [panic] vm-related panic: blst_radix_free o [2005/07/20] ports/83767 tobez lang/perl5.8: Perl5.8.7 coredumps on Text o [2005/07/20] docs/83771 doc handbook/raid.html and atacontrol o [2005/07/21] i386/83826 i386 can't install any version on Toshiba Satt o [2005/07/21] kern/83831 FreeBSD Crashes on heavy IO Load p [2005/07/21] kern/83833 ru vx(4) driver can not be (really) put into f [2005/07/21] kern/83885 gnn [panic] Kernel panic when received ICMP T o [2005/07/22] bin/83914 popen() doesn't work in static threaded p o [2005/07/22] i386/83925 i386 can't boot Dell Latitude D610 after BOIS o [2005/07/22] ports/83929 trevor www/linux-mozilla - PATCH - update port, o [2005/07/22] kern/83930 sam crypto_q_mtx recursion when unloading hif o [2005/07/23] usb/83942 usb [patch] QUIRK: Langel USB flash mp3 playe o [2005/07/23] kern/83943 [panic] FreeBSD 6.0-BETA1 with nve o [2005/07/23] ports/83958 ports-bugs New Port: textproc/p5-Chess-PGN-Parse o [2005/07/23] conf/83969 [patch] /etc/rc.d/cleartmp pollutes non-r o [2005/07/24] usb/83977 usb [panic] ucom1: open bulk out error (addr o [2005/07/24] kern/83999 [patch] [panic] panic in fw_bus_explore d o [2005/07/24] i386/84008 i386 /dev/X? should be /dev/ad1s* o [2005/07/24] kern/84014 glebius [panic] xl(4) lock held o [2005/07/24] kern/84015 [hang] Nforce3-250Gb freezes on FreeBSD-6 o [2005/07/25] amd64/84027 amd64 if_nve gets stuck o [2005/07/25] ports/84039 ports-bugs New port: x11-fm/evidence Enlightened fil o [2005/07/25] kern/84052 [modules] [freeze] 5.4-STABLE - kldunload o [2005/07/25] i386/84088 i386 Panic with nforce2 platform on FreeBSD 6. o [2005/07/26] kern/84102 FreeBSD 6.0 BETA 1 install Panic's in VMW o [2005/07/26] kern/84107 [panic] [unionfs] unionfs related panic f [2005/07/26] ports/84131 pav clamav build errors on FreeBSD 5.2.1-RELE o [2005/07/26] kern/84133 [panic] amd64, while making ports (trace o [2005/07/26] kern/84135 pjd [panic] ggatec destroy panics BETA-1 o [2005/07/27] ports/84160 mharo [patch] ftp/proftpd - module mod_ldap - t p [2005/07/27] kern/84163 6.0-BETA1 mlx driver don't find any drive o [2005/07/27] ports/84164 ports-bugs New Port: games/p5-Games-Sequential - Seq o [2005/07/27] ports/84165 ports-bugs New Port: games/p5-Games-AlphaBeta - Game o [2005/07/28] kern/84202 [patch] Holtek HT80232 PCI NIC recognitio o [2005/07/28] ports/84207 sergei [ patch ] security/gnutls: update to 1.2. o [2005/07/28] bin/84217 "enable proxy" is ignored in ppp.conf p [2005/07/28] conf/84221 Wrong permissions on /etc/opiekeys o [2005/07/28] ports/84231 ports-bugs [patch] devel/ccmalloc crashes o [2005/07/28] ports/84244 krion exim 4.52 -DWITH_SPF broken o [2005/07/29] usb/84295 usb Install FreeBSD with usb keyboard need st o [2005/07/29] i386/84303 i386 boot sometimes stops at "uhci0: 3.5GB o [2005/08/05] kern/84568 Sysinstall ata related panic under 6.0-BE o [2005/08/05] ports/84570 ports-bugs New port: security/p5-Digest-SHA Perl ext f [2005/08/05] ports/84573 lawrance [PATCH] - security/bdc - fix for missing o [2005/08/05] conf/84574 /etc/rc.d/[cleanvar, cleartmp, abi, power o [2005/08/05] kern/84584 if_re spend to much time in interrupt han o [2005/08/05] i386/84589 i386 5.4-STABLE unresponsive during background o [2005/08/05] ports/84592 ports-bugs lighttpd with ssl broken on amd64 o [2005/08/05] ports/84595 lawrance [patch] www/openacs: difference in port-p o [2005/08/05] ports/84596 lawrance [patch] www/openacs-dotlrn: after change o [2005/08/07] kern/84635 csjp [patch] md(4) driver breaks strict securi o [2005/08/07] kern/84637 pjd [patch] GEOM LABEL sometimes doesn't reco o [2005/08/07] ports/84644 phantom Java port lies about what files to fetch o [2005/08/07] kern/84649 [patch] kernel panic after inserting MP3- o [2005/08/07] kern/84656 [panic] when kern.maxdsiz is => hw.physme o [2005/08/08] i386/84668 i386 ssh and sysinstall problem o [2005/08/08] i386/84673 i386 NFS client problem "Stale NFS file handle o [2005/08/08] ports/84681 ports-bugs mod_fastcgi doesn't install with apache2 o [2005/08/08] kern/84684 [PATCH] Kernel panic in kern_proc.c p [2005/08/09] kern/84686 glebius [patch] kernel panic with if_ppp o [2005/08/09] ports/84703 ports-bugs [UPDATE]: www/gforge: 4.0.1->4.5.0.1 o [2005/08/09] i386/84717 i386 [hang] 5.4-rel booting locks-up on Superm o [2005/08/10] ports/84734 ports-bugs upgrade port net/ginsu to 0.7.1 p [2005/08/10] bin/84740 tjr regcomp("\254") fails o [2005/08/10] ports/84747 ports-bugs ports/science/xmakemol fails to detect Mo o [2005/08/10] threads/84778 libpthread busy loop/hang with Java when o [2005/08/11] ports/84792 ports-bugs [PATCH] chinese/firefox-zh_TW: fix error( o [2005/08/11] ports/84794 ports-bugs [PATCH] chinese/firefox-zh_CN: fix error( o [2005/08/11] ports/84795 ports-bugs [PATCH] japanese/firefox-ja_JP: fix error o [2005/08/11] kern/84799 can't read beyond track 0 on fdc (IBM thi o [2005/08/11] ports/84811 demon net-mgmt/mrtg does not work with perl5.00 o [2005/08/11] ports/84814 jmz Fix ports/print/psutils to use the correc o [2005/08/11] bin/84816 patch(1) inserts a line in the wrong plac o [2005/08/11] kern/84818 atapi cd: hangup with motor switched on a o [2005/08/11] ports/84820 x11 x11-servers/xorg-server fails to start w/ o [2005/08/12] kern/84829 sound [sound] SiS 7012 - slow and low pitched p o [2005/08/12] amd64/84832 amd64 Installation crashes just at boot AMD64/ f [2005/08/12] ports/84834 x11 Required symbol GlxSetVIsualConfigs from o [2005/08/12] kern/84836 Fatal trap on 6.0-BETA2 when use SC_PIXEL o [2005/08/12] i386/84838 i386 freebsd restarts a [2005/08/12] i386/84842 i386 i386_set_ioperm(2) timing issue o [2005/08/13] i386/84860 pjd certain FAST_IPSEC setup can cause panic o [2005/08/13] kern/84861 still can't get working ipw(4) with adhoc o [2005/08/13] ports/84862 ports-bugs New port: converters/p5-Convert-IBM390 Pe o [2005/08/13] ports/84877 trevor [PATCH] print/acroread7: fix rpm error & o [2005/08/14] ports/84904 ports-bugs p5-Net-Server path for restart is mangled o [2005/08/14] kern/84908 [reboot] filesystem full and reboot (cras o [2005/08/14] amd64/84930 amd64 [msdosfs] something wrong with msdosfs on o [2005/08/14] kern/84935 [PATCH] Panic in kern_exec.c: missing loc o [2005/08/15] usb/84936 usb install - usb keyboard not recognized o [2005/08/15] i386/84943 i386 "Invalid Partition Table" Intel ICH6 SATA 1847 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1996/01/31] bin/981 fenner clnt_broadcast() is not aware of aliases a [1996/07/07] bin/1375 eivind Extraneous warning from mv(1) [PATCH] s [1996/10/14] kern/1791 tegge syslimits.h does not allow overriding def s [1996/11/23] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/12/02] bin/2137 tegge vm statistics are bad s [1996/12/27] kern/2298 [patch] support for DSR/DCD swapping on s s [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/03/11] bin/2934 sh(1) has problems with $ENV f [1997/05/16] bin/3608 jkoshy Telnet in linemode will break apart long o [1997/07/02] kern/4012 [nfs] 2.2-RELEASE/Digital UNIX NFSv3 0 le 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 s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk o [1997/07/30] kern/4194 kernel pci driver for Digital 21041 Ether o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/30] bin/4420 imp find -exedir doesn't chdir for first entr p [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/25] bin/4629 grog calendar doesn't print all dates sometime o [1997/09/28] bin/4646 qa [sysinstall] can't fixit with an NFS-moun o [1997/10/16] kern/4782 Under certain conditions, several krsh's 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/15] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 [mount] mount incorrectly reports / as an o [1998/01/12] bin/5483 Login(1) clears utmp entry o [1998/01/27] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe o [1998/01/27] kern/5587 des session id gets dropped o [1998/01/31] bin/5609 gad lpd cannot send long files to HP's JetDir o [1998/02/11] bin/5712 mikeh /bin/chio code cleaup and option added o [1998/02/14] bin/5745 nik [PATCH] Add /usr/local/share/mk to defaul o [1998/02/28] kern/5877 kbyanc sb_cc counts control data as well as data p [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/19] conf/6346 joe Kernel version strings need to relate to s [1998/05/17] kern/6668 babkin [PATCH] new driver: Virtual Ethernet driv s [1998/05/29] bin/6785 place for all the default dump flags a [1998/07/01] bin/7136 markm kerberized telnetd doesn't use gettytab % s [1998/07/10] bin/7232 qa [sysinstall] suggestion for FreeBSD insta o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/07/13] bin/7265 A warning flag is added to ln(1). o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m a [1998/07/20] bin/7324 mtm Suggestions for minor modifications to ad s [1998/08/10] kern/7556 sl_compress_init() will fail if called an s [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace s [1998/08/23] kern/7722 Changes to acct format s [1998/09/09] bin/7868 [almost patch]Morse Code Fixups o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re o [1998/10/03] bin/8133 markm [patch] bug in telnetd (Kerberos IV) a [1998/10/28] bin/8479 dd Final \'s in /etc/exports did not work in f [1998/10/30] kern/8498 dwmalone Race condition between unp_gc() and accep o [1998/11/27] bin/8867 qa [sysinstall] [patch] /stand/sysinstall co 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 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 f [1999/01/29] bin/9770 jmallett An openpty(3) auxiliary program o [1999/02/02] bin/9868 Patch to add "date -a" o [1999/02/02] kern/9869 When using macros out of function, they s s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi 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/16] bin/10611 timed enhancement o [1999/03/19] gnu/10670 peter cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re a [1999/03/24] kern/10778 ru "ipforward_rt" is not cleared when routin a [1999/04/08] kern/11024 mtm getpwnam(3) uses incorrect #define to lim o [1999/04/11] bin/11085 Per-host configuration for syslog.conf f [1999/04/13] bin/11114 harti make(1) does not work as documented with o [1999/04/16] i386/11165 emulation IBCS2 don't work correctly with PID_MAX 9 o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/05/05] kern/11525 dwmalone [PATCH] Networking patches to increase # 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/06/08] i386/12088 imp Enhancement to ed driver for Linksys 10/1 o [1999/06/21] bin/12324 qa [sysinstall] fdisk partition editor is mi o [1999/07/07] kern/12543 dg [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 peter kldload(8) should be more sensitive to er o [1999/07/25] bin/12801 nvi infinite recursion with options "left f [1999/08/06] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/09] bin/13042 make doesn't handle wildcards in subdirec o [1999/08/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/14] kern/13141 se [scsi] Multiple LUN support in NCR driver o [1999/08/21] bin/13309 billf Fixes to nos-tun o [1999/08/23] kern/13326 additional timeval interfaces for tags o [2000/07/20] bin/20054 yar ftpd: rotating _PATH_FTPDSTATFILE losts x o [2000/07/30] kern/20297 sound [sound] [patch] Joystick is not enabled w s [2000/08/01] kern/20333 des [libpam] ftp login fails on unix password o [2000/08/03] kern/20389 ken "device pass" required for CD ripping o [2000/08/04] bin/20391 jhb [sysinstall] sysinstall should check debu o [2000/08/04] kern/20410 sio support for high speed NS16550A, ST16 o [2000/08/09] bin/20501 mjacob extra flag to dump to offline autoloaders o [2000/08/10] kern/20529 wpaul gigabit cards fail to link 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/23] i386/20803 mdodd ep0 driver finds additional "shadow" ep c o [2000/08/27] 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 [sysinstall] /stand/sysinstall too limite o [2000/08/30] bin/20944 natd enhancements, default config file an o [2000/09/03] bin/21008 gad Fix for lpr's handling of lots of jobs in o [2000/09/04] docs/21024 bde pow() ERANGE bug f [2000/09/05] i386/21042 mdodd [kbd] Keyboard driver problems with PS/2 f [2000/09/06] bin/21080 mjacob dump doesn't use eject tape device correc o [2000/09/12] kern/21222 [nfs] wrong behavior of concurrent mmap() o [2000/09/12] kern/21229 [nfs] [patch] Proper value for vfs.nfs.ac o [2000/09/16] bin/21312 more incorrectly redraws screen on xterm o [2000/09/16] bin/21315 Shells often behave oddly when executing s [2000/09/19] kern/21384 greid [sound] pcm driver has static in recorded 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/01] i386/21672 obrien AMD Duron Rev. A0 reports incorrect L2 ca o [2000/10/01] conf/21675 Better and more disktab entries for MO dr o [2000/10/04] bin/21751 ken libcam's cam_real_open_device() may lose o [2000/10/05] kern/21768 rwatson shouldn't trailing '/' on regular file sy a [2000/10/07] kern/21807 [patch] Make System attribute correspond p [2000/10/07] docs/21826 bms ARP proxy feature lacks documentation o [2000/10/09] kern/21859 fanf Allow the syncer to be slowed down o [2000/10/15] conf/21994 qa [sysinstall] Config of Anonftp (at instal s [2000/10/17] 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] kern/22190 threads A threaded read(2) from a socketpair(2) f p [2000/10/21] bin/22198 bms inet_ntop may set errno to ENOSPC and nee o [2000/10/26] conf/22308 [nfs] mounting NFS during boot blocks if o [2000/10/31] bin/22442 greid [PATCH] Increase speed of split(1) o [2000/11/10] bin/22730 fenner tcpslice doesn't handle long file offsets o [2000/11/15] bin/22873 markm [perl] Perl's core.h conflicts with ncurs o [2000/11/17] misc/22914 [bootinst] bootinst messages are not upda o [2000/11/24] conf/23063 bms [PATCH] for static ARP tables in rc.netwo o [2000/11/24] bin/23082 dwmalone ntpd has only one reference-clock parser p [2000/11/28] kern/23148 getopt(3) works non-intuitively? p [2000/11/29] bin/23178 'talk' not doing right thing o [2000/11/29] bin/23180 Certain KOI8 characters are treated as "w a [2000/12/04] bin/23254 fenner yacc accepts bad grammer p [2000/12/05] kern/23304 kbyanc POSIX clock_gettime, clock_getres return o [2000/12/06] kern/23314 scsi aic driver fails to detect Adaptec 1520B a [2000/12/09] bin/23402 qa [sysinstall] upgrade ought to check parti p [2000/12/11] bin/23472 mp gdb weirdness on programs compiled with - o [2000/12/13] kern/23520 sound [sound] sb0 old style audio support in 4. o [2000/12/14] kern/23546 tanimura [PATCH] csa DMA-interrupt problem o [2000/12/15] kern/23561 emulation Linux compatibility mode does not support o [2000/12/15] bin/23562 markm [patch] telnetd doesn't show message in f o [2000/12/19] bin/23635 mike [PATCH] whois enhancement - smarter whois o [2000/12/25] ports/23822 trevor mtree entries for German X11 man pages a [2000/12/28] bin/23912 underflow of cnt in vs_paint() by O_NUMBE o [2001/01/04] bin/24066 marcel gdb can't detach from programs linked wit p [2001/01/07] gnu/24132 mp gdb output is wrong (same as #13427 ?) o [2001/01/16] bin/24390 standards Replacing old dir-symlinks when using /bi o [2001/01/18] bin/24435 qa [libdisk] changing slice type causes Auto o [2001/01/20] bin/24485 [PATCH] to make cron(8) handle clock jump o [2001/01/21] bin/24513 peter new options for pppd p [2001/01/21] conf/24515 dougb Fix for find(1) warning in /etc/rc o [2001/01/22] kern/24528 Bad tracking of Modem status s [2001/01/24] standards/24590standards timezone function not compatible witn Sin o [2001/01/24] bin/24592 cjc dmesg.boot Gets Overwritten without Reboo o [2001/01/31] bin/24757 yar ftpd not RFC compliant o [2001/02/02] docs/24786 doc missing FILES descriptions in sa(4) o [2001/02/05] kern/24882 ktrace not syncing .out file before panic o [2001/02/06] bin/24907 qa [sysinstall] Options screen at MenuMedia o [2001/02/08] bin/24953 green adduser ignores passwd_format in login.co o [2001/02/08] kern/24959 andre proper TCP_NOPUSH/TCP_CORK compatibility o [2001/02/09] i386/24963 perfmon(4) doesn't work on SMP systems o [2001/02/11] bin/25013 mv(1) cannot move unresolvable symlinks a o [2001/02/11] bin/25015 cp: options -i and -f do not work as docu o [2001/02/11] kern/25018 lstat(2) returns bogus permissions on sym o [2001/02/15] kern/25109 Fujitsu MO device MCC3064AP could't be c o [2001/02/20] bin/25218 mailwrapper(1) invokes sendmail when reso o [2001/02/22] bin/25273 add fs type feature to vnconfig(8) to all f [2001/02/22] bin/25278 bs accepts -s -c but not -sc o [2001/02/22] alpha/25284 alpha PC164 won't reboot with graphics console o [2001/02/26] kern/25386 sound [sound] Incorrect mixer registers (line & o [2001/02/28] kern/25445 kernel statistics are displayed in wrong o [2001/03/01] bin/25477 billf pam_radius fix to allow null passwords fo o [2001/03/02] ports/25490 wosch [PATCH] fix various bugs in stat(1) p [2001/03/02] kern/25499 [kbd] [patch] buffer paste functionality o [2001/03/04] i386/25521 Laptop with FreeBSD4.2 freezes in battery s [2001/03/08] bin/25598 yar patch to let ftpd output message when cha o [2001/03/12] kern/25733 mismatch between error reporting in smbus o [2001/03/12] bin/25736 ac -d option probrem with overdays logon f [2001/03/13] kern/25777 atime not updated on exec o [2001/03/15] conf/25829 IPSec config in rc.network doesn't allow o [2001/03/17] kern/25866 more than 256 ptys, up to 1302 ptys. f [2001/03/22] docs/26003 rwatson getgroups(2) lists NGROUPS_MAX but not sy o [2001/03/22] bin/26005 delphij MIME quoted-printable encoding added to v p [2001/03/23] kern/26016 iedowse VMWare is crash on SMP machine f [2001/03/29] ports/26192 sem apel appeared both in xemacs/site-package o [2001/04/01] i386/26261 silo overflow problem in sio driver o [2001/04/02] docs/26286 doc *printf(3) etc should gain format string o [2001/04/03] kern/26323 [patch] Quota system creates zero-length a [2001/04/04] kern/26348 [pcvt] scon -s, page fault in HP mode p [2001/04/04] bin/26359 bms [PATCH] a minor nit in how netstat detect o [2001/04/09] kern/26454 sound [sound] mixer volume settings on Maestro- 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] i386/26562 /dev/lpt0 returns EBUSY when attempting t o [2001/04/15] kern/26584 kernel boot messages aren't logged correc o [2001/04/16] kern/26618 iedowse unmount(2) can't unmount a filesystem who p [2001/04/17] kern/26646 ache srand() provides only 8-bit table o [2001/04/18] conf/26658 grog update to src/usr.bin/calendar/calendars/ o [2001/04/18] kern/26686 Freeze at boot from 4.3-RC4 floopies - US o [2001/04/19] bin/26695 change request: kill(1)/killall(1) -l out o [2001/04/23] kern/26787 dd sysctl change request s [2001/04/23] bin/26803 des Fix fetch to allow FTP puts in '-o' & all o [2001/04/24] i386/26812 peter old bootstrap /sys/i386/boot/... still in a [2001/04/25] kern/26854 sound [sound] [patch] Better fix for ESS Techno o [2001/04/26] docs/26879 darrenr [ipf] mkfilter not installed, yet referre o [2001/04/28] bin/26919 qa [sysinstall] fdisk should ONLY set one bo o [2001/05/01] kern/27008 kernel function sysbeep(xxx, 0) does prod f [2001/05/07] bin/27188 jon fix of rsh non-interactive mode behaviour o [2001/05/08] bin/27216 qa [sysinstall] can not get to shell prompt o [2001/05/09] kern/27232 [nfs] On NFSv3 mounted filesystems, stat o [2001/05/10] bin/27258 getty didn't check if if= isn't empty o [2001/05/11] kern/27269 Cannot mount linux extended (logical) par o [2001/05/12] bin/27281 vidcontrol(1) does not have error codes o [2001/05/13] i386/27306 marcel hw watchpoints work unreliable under gdb o [2001/05/14] bin/27319 obrien df displays amd pid processes o [2001/05/17] kern/27403 lpt driver doesn't handle flags anymore o [2001/05/18] misc/27429 'dependant' is a misspelling o [2001/05/21] bin/27483 qa [sysinstall] [patch] make sysinstall ask o [2001/05/23] kern/27571 bp [unionfs] Changing policy of shadowing fi o [2001/05/26] kern/27660 Kernel does not return error if adding du o [2001/05/27] bin/27687 fsck wrapper is not properly passing opti o [2001/06/02] bin/27829 pax's uid/gid cache is read-only a [2001/06/02] docs/27833 cjc No man page for locate.rc o [2001/06/02] kern/27835 execve() doesn't conform to execve(2) spe s [2001/06/03] docs/27843 doc [PATCH] make.conf WITH_* variables aren't o [2001/06/04] bin/27872 qa [sysinstall] "Load Config" hangs Compaq D s [2001/06/07] ports/27936 mi Update /usr/ports/deskutils/xmdiary 3.0.1 o [2001/06/08] bin/27972 losing information with talk a [2001/06/11] bin/28081 qa [sysinstall] /stand/sysinstall errs out i f [2001/06/14] ports/28155 portmgr [patch] DESTDIR is used incorrectly in bs a [2001/06/16] gnu/28189 [PATCH] fix for detecting empty CVS commi f [2001/06/16] kern/28206 bp [nullfs] [patch] umapfs/umap_vfsops.c sho o [2001/06/17] conf/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't c o [2001/06/18] misc/28255 small picobsd documentation still references ol s [2001/06/18] kern/28260 standards UIO_MAXIOV needs to be made public o [2001/06/22] bin/28333 rtprio/idprio setuid problems o [2001/06/23] bin/28364 lex(1) generated files fail to compile cl f [2001/06/23] ports/28365 wosch Typical use of devel/portcheckout breaks p [2001/06/27] gnu/28455 GNU readline should be updated to 4.2 o [2001/06/30] docs/28555 trhodes [PATCH] style(9) isn't explicit about boo o [2001/07/02] bin/28620 ru xinstall has no way to pass options to st o [2001/07/03] ports/28678 wosch portcheckout doesn't allow flexible build o [2001/07/07] bin/28789 /usr/bin/last does not filter for uucp co o [2001/07/11] kern/28888 mbr Acer 8000 NIC not detected correctly o [2001/07/12] i386/28928 wpaul dual starfire nic doesn't seem to work (a o [2001/07/14] bin/28972 dwmalone gamma returns same result as lgamma f [2001/07/14] i386/28975 mjacob RocketPort problems o [2001/07/15] kern/28980 sound [sound] Fujitsu/Siemens Lifebook E-6540 s o [2001/07/18] bin/29062 markm krb4 and krb5 multiply defined version sy o [2001/07/18] kern/29067 sound [sound] Yamaha OPL3Sa2 pcm/pnp stops play o [2001/07/21] bin/29119 menu of fdisk editor in 4.3R does not lis f [2001/07/23] kern/29169 mjacob FC loop that 'goes away' never times out o [2001/07/26] docs/29245 doc top(1) manpage doesn't understand SMP s [2001/07/29] bin/29292 sos The functional addtion to burncd(8) f [2001/07/29] alpha/29299 alpha FreeBSD 4.3 Alpha + Tekram SCSI adapter p o [2001/07/30] kern/29312 sound [sound] Using mixer on pcm misbehaves wit f [2001/07/30] kern/29318 mjacob [scsi] Exabyte 8200 needs SA_QUIRK_1FM an o [2001/08/01] kern/29355 mux [patch] lchflags support o [2001/08/01] bin/29363 gad [PATCH] newsyslog can support time as ext o [2001/08/04] kern/29423 [PATCH] kernel security hooks implementat o [2001/08/07] bin/29516 markm telnet from an non FreeBSD host still use f [2001/08/08] kern/29538 joerg Mounting /dev/fd0 never completes o [2001/08/09] bin/29581 nectar proposed gethostbyXXXX_r() implementation o [2001/08/14] kern/29698 emulation linux ipcs doesn'work o [2001/08/15] kern/29727 scsi [amr] [patch] amr_enquiry3 structure in a a [2001/08/17] docs/29807 trhodes [PATCH] XFREE86_VERSION is undocumented f [2001/08/17] i386/29809 rsm pb Xircom Eth Card with Freebsd 4.4RC1 : o [2001/08/20] bin/29893 qa [sysinstall] suggestions for 4.4 sysinsta o [2001/08/20] bin/29897 des pam_unix patch, which uses loginclass pas a [2001/08/23] docs/30008 doc This document should be translated, comme o [2001/08/24] kern/30052 mbr dc(4) driver queues outgoing pkts indefin o [2001/08/29] kern/30186 getaddrinfo does not handle incorrect ser o [2001/09/03] i386/30276 CPUTYPE=486 built on a CPUTYPE=p3 WORLD b o [2001/09/04] conf/30301 Default printcap "mx" config too small o [2001/09/04] bin/30321 strftime(3) '%s' format does not work pro s [2001/09/05] ports/30331 portmgr [patch] Conflict between bsd.port.mk MAKE o [2001/09/05] bin/30360 vmstat returns impossible data o [2001/09/07] kern/30412 [patch] rtdl/dlopen() fails to merge comm s [2001/09/07] kern/30422 [patch] add WDT hardware watchdog driver o [2001/09/07] bin/30424 Generalization of vipw to lock pwdb while o [2001/09/09] docs/30442 trhodes remove broken referemce to gettime(9) fro o [2001/09/09] kern/30461 sound [sound] no audio cd with cmi8330 o [2001/09/09] threads/30464threads pthread mutex attributes -- pshared o [2001/09/12] bin/30517 qa [sysinstall] using sysinstall with instal o [2001/09/13] bin/30542 [PATCH] add -q option to shut up killall o [2001/09/15] conf/30590 /etc/hosts.equiv and ~/.rhosts interactio p [2001/09/16] kern/30608 kern.ps_showallproc=0 doesn't limit queri o [2001/09/18] bin/30654 gad Added ability for newsyslog to archive lo f [2001/09/19] bin/30661 alfred FreeBSD-current fails to do partial NFS f o [2001/09/21] kern/30700 sound [sound] Applications cannot synchronize s a [2001/09/22] bin/30737 qa sysinstall leaks file descriptors on rest o [2001/09/24] ports/30777 portmgr add a 'make pkg-plist' make target in por 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 p [2001/09/27] kern/30857 [patch] intr_machdep.c allows access out o [2001/09/27] bin/30863 bootpd/dovend.c Win95 compatibility impro o [2001/09/30] conf/30929 usb [patch] use usbd to initialize USB ADSL m o [2001/09/30] conf/30938 Improving behavior of /etc/periodic/daily o [2001/10/04] bin/31034 dwmalone regularly add original address logging fo o [2001/10/04] kern/31048 des linprocfs:/proc/meminfo cannot handle mul p [2001/10/05] bin/31052 fenner Traceroute needs update o [2001/10/07] docs/31109 doc replace gif images w/ png ones due to pat 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/18] i386/31353 'shutdown -p' does not work on SMP Tyan T o [2001/10/19] kern/31380 [nfs] NFS rootfs mount failure message to o [2001/10/20] bin/31387 When getuid()=0, mailwrapper should drop o [2001/10/21] kern/31398 sound [sound] newpcm does not play back the tai o [2001/10/22] i386/31427 davidxu [patch] minor incorrect code in sys/i386/ o [2001/10/22] bin/31432 umount(8) and unmount(2) don't corespond o [2001/10/23] kern/31445 sound [sound] [patch] cat sound.au > /dev/audio o [2001/10/23] kern/31456 [patch] register number definition for AM f [2001/10/25] kern/31490 [panic] [patch] Panic in sysctl_sysctl_ne o [2001/10/27] kern/31521 sound [sound] pcm0 plays too fast on Intel 8280 o [2001/10/27] i386/31535 Can't reboot system: Tyan Thunder K7+ Dua o [2001/10/29] bin/31588 change request to allow mount(1) to set t o [2001/10/30] kern/31624 writev may return undocumented ECONNRESET o [2001/10/30] kern/31647 socket calls can return undocumented EINV s [2001/11/01] kern/31686 bms Problem with the timestamp option when fl o [2001/11/02] kern/31708 VM system / fsync / flushing delayed inde o [2001/11/05] gnu/31772 New option in dialog(1) o [2001/11/10] kern/31890 [syscons] [patch] new syscons font o [2001/11/11] 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] kern/31981 [patch] (mis)feature in getnetent parsing o [2001/11/14] bin/31985 New /etc/remote flag for tip to append LF o [2001/11/14] bin/31987 patch to allow dump(1) to notify operator o [2001/11/15] docs/32020 trhodes loader.8 manpage missing tunables o [2001/11/19] conf/32108 Proposed Firewall (IPv4) configuration sc p [2001/11/20] standards/32126standards getopt(3) not Unix-98 conformant f [2001/11/20] bin/32144 qa [sysinstall] unattended install with sysi o [2001/11/26] bin/32288 qa [sysinstall] After install: /etc/rc compl a [2001/11/29] bin/32375 qa [sysinstall] sysinstall doesn't respect U a [2001/11/30] bin/32411 shutdown's absolute-time handling could b o [2001/12/03] kern/32480 [syscons] Missing graphic characters in s o [2001/12/04] bin/32501 trhodes quot(8) is stupid regarding the filesyste o [2001/12/09] kern/32652 usb [patch] A new ioctl to uscanner s [2001/12/09] ports/32653 usb Added patches to improve USB scanner supp o [2001/12/10] kern/32659 VM and VNODE leak with vm.swap_idle_enabl o [2001/12/10] gnu/32661 dd send-pr uses $LOGNAME for From and Reply o [2001/12/10] bin/32667 systat waste too much time reading input o [2001/12/10] bin/32680 [PATCH] Allows users to start jail(1) by o [2001/12/13] bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ o [2001/12/13] kern/32812 [bktr] bktr driver missing tuner for eepr o [2001/12/14] bin/32828 w incorrectly handles stale utmp slots wi o [2001/12/18] docs/32979 hmp manpages are not installed for k5admin an s [2001/12/19] kern/33013 sound [sound] mixer does not have treble/bass f o [2001/12/21] bin/33066 rwatson sysinstall does not write to new disks as o [2001/12/22] kern/33097 sound [sound] Crystal 4237b mixer problems o [2001/12/23] kern/33124 jhb kthread_create doesnt mark kthreads as kt s [2001/12/24] bin/33133 keyinit outputs wrong next login password o [2001/12/26] bin/33182 marcel gdb seg faults when given handle SIGALRM o [2001/12/26] kern/33203 [nfs] "got bad cookie" errors on NFS clie o [2002/01/05] docs/33589 doc Patch to doc.docbook.mk to post process . a [2002/01/07] bin/33661 PAP AuthAck/AuthNak parsing problem in pp o [2002/01/08] kern/33707 sound [sound] ICH (82801AA) cannot be used for o [2002/01/09] docs/33724 doc [patch] fix Handbook error about Advanced o [2002/01/10] bin/33774 Patch for killall(1) o [2002/01/11] bin/33778 joe crunchgen enhancements o [2002/01/12] bin/33809 mux mount_nfs has trouble with embedded ':' o [2002/01/13] bin/33834 strptime(3) is misleading o [2002/01/14] docs/33852 doc split(1) man page implies that input file o [2002/01/14] docs/33877 doc Documented behaviour of SF_flags for non- o [2002/01/16] bin/33941 /usr/sbin/dev_mkdb dumps core a [2002/01/16] kern/33963 bde Messages at the serial IO port device pro o [2002/01/16] kern/33965 [kbd] [patch] programmable keys of the ke a [2002/01/17] bin/34010 [patch] keyinit takes passwords less than o [2002/01/22] bin/34146 newfs defaults and vfs.usermount=1 tug at s [2002/01/22] bin/34171 yar ftpd indiscrete about unprivileged user a f [2002/01/23] kern/34195 iedowse setting the action for SIGCHLD to SIG_IGN o [2002/01/23] bin/34199 dwmalone [PATCH] top(1) RES/rss display incorrect o [2002/01/24] docs/34239 trhodes tunefs(8) man page doesn't describe argum o [2002/01/26] bin/34309 gad lpd does not garantie that controlfiles b o [2002/01/29] bin/34394 peter tgetent returns wrong value in libtermcap o [2002/01/29] bin/34412 tftp will still try and receive traffic e o [2002/01/31] bin/34497 grog calendar(1) does not understand calendars s [2002/01/31] bin/34498 Error in vi manpage. o [2002/02/01] bin/34519 pkg_check(8) does not return exit code >0 o [2002/02/01] gnu/34538 mp_set_memory_functions not extern "C"'d a [2002/02/03] kern/34591 andre ICMP bandwidth limiting does not indicate o [2002/02/05] bin/34628 jkh pkg-routines ignore the recorded md5 chec o [2002/02/06] kern/34665 darrenr ipfilter rcmd proxy "hangs". o [2002/02/07] gnu/34709 marcel [patch] Inaccurate GDB documentation o [2002/02/08] bin/34728 DHCP hostname set as Hexadecimal string o [2002/02/09] bin/34759 Phantasia does not accept [enter] key o [2002/02/10] bin/34788 dwmalone dmesg(1) issues with console output o [2002/02/11] bin/34832 /usr/share/man/cat3/setkey.3.gz linked to p [2002/02/11] bin/34843 fenner `tcpdump port echo' filters for port 4 in o [2002/02/12] kern/34854 sound [sound] /src/sys/dev/sound doesn't work c p [2002/02/12] bin/34874 bms Netstat output to small o [2002/02/12] kern/34880 luigi Impossibility of grouping IP into a pipe o [2002/02/14] kern/34942 sound [sound] Attempt to play -> "pcm0: play in a [2002/02/16] docs/35011 doc There are no commands called "diskless" o f [2002/02/17] bin/35018 brian enhancing daily/460.status-mail-rejects s [2002/02/18] 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 o [2002/02/22] docs/35222 doc mailing list archive URL regexp suboptima o [2002/02/23] kern/35234 scsi World access to /dev/pass? (for scanner) o [2002/02/24] conf/35262 [patch] generation of boot block for head o [2002/02/25] kern/35289 [bktr] [patch] Brooktree device doesnt pr o [2002/02/25] kern/35324 Plug and Play probe fails to configure Di s [2002/02/26] bin/35333 send-pr(1) vim syntax highlighting suppor o [2002/02/27] kern/35377 process gets unkillable (-9) in "ttywai" o [2002/02/28] bin/35400 qa [sysinstall] sysinstall could improve man o [2002/03/01] bin/35451 PATCH: pkg_add -r able to save local copy o [2002/03/04] misc/35542 bde BDECFLAGS needs -U__STRICT_ANSI__ o [2002/03/04] conf/35545 [patch] enhanced periodic scripts: 100.cl o [2002/03/05] bin/35568 make declares target out of date, but $? 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] kern/35635 [patch] missing dep in libiconv prevents 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] www/35647 www www; combine query-by-number and multi-fi o [2002/03/07] docs/35652 trhodes bsd.README seriously obsolete 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/09] docs/35696 trhodes mount_smbfs(8) references a nonexistent n o [2002/03/09] www/35711 bugmeister the "gnats page" should move to its own s o [2002/03/09] bin/35717 which(1) returns wrong exit status for m o [2002/03/10] docs/35732 doc adduser(8) page has obsolete reference an o [2002/03/11] ports/35767 portmgr make_index script does not deal with syml o [2002/03/11] bin/35769 w does not correctly interpret X sessions o [2002/03/11] kern/35774 [logwtmp] Suboptimal auditing possibiliti o [2002/03/13] kern/35846 imp timeout in wi_cmd 11, machine hangs for a o [2002/03/14] bin/35886 [patch] Enhancement: custom time format f p [2002/03/14] bin/35894 [patch] popen.c in cron won't build witho o [2002/03/16] docs/35943 doc at(1) config files are misplaced in /var/ p [2002/03/16] docs/35951 trhodes disklabel(8) manual confuses partitions a o [2002/03/16] docs/35953 doc hosts.equiv(5) manual is confusing or wro s [2002/03/19] standards/36076standards Implementation of POSIX fuser command o [2002/03/20] bin/36118 qa [sysinstall] 4.5 Upgrade says it won't to o [2002/03/20] kern/36143 [patch] Dynamic (non linear) mouse accele o [2002/03/21] kern/36170 an(4) does an_init() even if interface is o [2002/03/24] bin/36262 [PATCH] Fixed rusers idle-time reporting o [2002/03/27] bin/36374 Patch (against core dumps) and improvemet o [2002/03/27] bin/36385 luigi crunchgen does not handle Makefiles with o [2002/03/27] conf/36392 [feature request] cron starts before vi r o [2002/03/28] kern/36425 [patch] bump up SYS_NMLN in sys/utsname.h o [2002/03/28] docs/36432 doc Proposal for doc/share/mk: make folded bo o [2002/03/29] docs/36449 doc symlink(7) manual doesn't mention trailin a [2002/03/29] i386/36451 [bktr] [patch] Japan IF frequency is inco s [2002/03/29] gnu/36460 cu(1) program does not work very well. f [2002/03/29] bin/36477 gshapiro mailwrapper doesn't handle rmail calls o [2002/03/29] bin/36501 grog /usr/bin/calendar can't handle recurring o [2002/03/30] bin/36553 gad Two new features in newsyslog(8) o [2002/03/31] bin/36556 [patch] regular expressions for tcpwrappe o [2002/04/01] bin/36626 login_cap(3) incorrectly claims that all o [2002/04/02] bin/36646 dwmalone [patch] top(1) does not work correctly in o [2002/04/04] docs/36724 darrenr ipnat(5) manpage grammar is incomplete an o [2002/04/04] bin/36740 make ps obey locale (particularly for tim o [2002/04/04] bin/36757 which(1) ought to append @ if result is s o [2002/04/05] bin/36786 make ps use 24-hour time by default s [2002/04/08] java/36901 glewis WITHOUT_X11 Knob for port java/jdk13 o [2002/04/08] bin/36902 [patch] proposed new format code %N for s o [2002/04/09] kern/36916 qa [libdisk] DOS active partition flag lost o [2002/04/10] kern/36952 ldd comand of linux does not work o [2002/04/10] bin/36960 grog calendar doesn't effect -t option. o [2002/04/11] kern/36983 CD9660 unicode to utf-8 [hack] o [2002/04/12] 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/15] 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/16] bin/37160 qa [sysinstall] coredumps when trying to loa o [2002/04/23] kern/37380 jhb [patch] boot0 partition list is outdated o [2002/04/23] conf/37387 grog bsdmainutils/calendar Hungarian addon fil o [2002/04/24] bin/37424 nfsstat reports negative values o [2002/04/25] bin/37434 mbr dhclient(1) generates pointless log messa o [2002/04/25] bin/37437 Add HTTP-style support to {vis,unvis}(1). o [2002/04/25] 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/04/26] kern/37482 sound [sound] Weird behaviour under relatively o [2002/04/29] kern/37554 jmg [PATCH] Make ELF shared libraries immutab o [2002/04/29] kern/37555 [patch] vnode flags appear to be changed o [2002/04/29] conf/37569 [PATCH] Extend fstab(5) format to allow f o [2002/04/30] kern/37600 sound [sound] [partial patch] t4dwave drive doe o [2002/05/02] kern/37657 sound [sound] /dev/dsp and /dev/audio skip the o [2002/05/02] bin/37672 pw(8) prints warnings after successful NI o [2002/05/02] threads/37676threads libc_r: msgsnd(), msgrcv(), pread(), pwri o [2002/05/03] bin/37715 "pkg_info -g package_name_version" fail o [2002/05/03] docs/37719 kensmith Detail VOP_ naming in a relevant man-page o [2002/05/04] bin/37733 su(1) does not behave the way it is descr s [2002/05/07] docs/37843 doc manual for pthread_setschedparam is wrong o [2002/05/07] bin/37844 [PATCH] make knob to not install progs wi o [2002/05/09] gnu/37910 PATCH: make send-pr(1) respect &'s in /et o [2002/05/13] alpha/38031 alpha osf1.ko not loaded during boot-time of li s [2002/05/13] ports/38034 ports-bugs compaq-cc (under linux-emu) installes man o [2002/05/14] bin/38055 qa [sysinstall] Groups (creation) item shoul o [2002/05/14] bin/38056 qa [sysinstall] User (creation)'s "Member gr o [2002/05/14] bin/38057 qa [sysinstall] "install" document doesn't d o [2002/05/14] docs/38061 ume Typos in man pages for faith & faithd o [2002/05/16] bin/38156 quotacheck chokes on user -2 o [2002/05/17] bin/38168 installing curses programs and terminfo d o [2002/05/18] bin/38256 linking pax to pax_{cpio|tar} o [2002/05/20] kern/38347 [patch] new library function abs2rel and o [2002/05/22] kern/38429 [PATCH] getgpid and getsid work for proce o [2002/05/23] kern/38445 suggestion: centralize ptrace() permissio o [2002/05/24] bin/38477 qa [sysinstall] in Choose Distributions scre o [2002/05/24] bin/38478 qa [sysinstall] In Choose Distributions scre o [2002/05/24] bin/38480 qa [sysinstall] sysinstall should prompt for s [2002/05/24] www/38500 www gnats web form is overenthusiastic about o [2002/05/24] i386/38524 cons25 doesn't support F-keys beyond 12 o [2002/05/25] docs/38540 blackend sysinstall application name should be Sys o [2002/05/25] docs/38556 doc EPS file of beastie, as addition to exist o [2002/05/26] bin/38583 qa [sysinstall] sysinstall installs crypto s o [2002/05/27] ports/38593 portmgr Third level ports o [2002/05/27] bin/38610 qa [sysinstall] should be able to mount ISO o [2002/05/27] docs/38620 doc Committers Guide and CVS o [2002/05/27] kern/38626 luigi dummynet/traffic shaper: RED: max_th and o [2002/05/30] bin/38727 [patch] mptable(1) should complain about f [2002/05/30] kern/38730 philip Memorex scrollpro mouse is not fully func o [2002/05/30] kern/38749 kientzle Diskless booting fails with some DHCP ser o [2002/05/31] docs/38772 doc firewall_type feature not mentioned on Ha o [2002/06/01] kern/38794 sound [sound] ESS Solo driver truncates output o [2002/06/02] i386/38826 RFE: BootMgr should provide more identify o [2002/06/02] kern/38828 scsi [feature request] DPT PM2012B/90 doesn't p [2002/06/03] docs/38850 keramida handbook/kernelopts/ should be in Develop o [2002/06/03] bin/38854 qa [sysinstall] resetting during setup cause o [2002/06/06] misc/38937 delay between tracks in digital audio dum o [2002/06/06] bin/38940 Change: an option to *stat to allow supre o [2002/06/07] kern/38967 sound [sound] 4/22/02 pcm driver merge appears o [2002/06/07] docs/38982 doc developers-hanbook/Jail fix o [2002/06/08] kern/39047 IPSEC Compression (IPCOMP) broken in tunn o [2002/06/12] kern/39201 emulation ptrace(2) and rfork(RFLINUXTHPN) confuse o [2002/06/14] standards/39256standards [v]snprintf aren't POSIX-conformant for s o [2002/06/14] conf/39306 The /etc/rc file should know if is runnin p [2002/06/15] conf/39347 brooks use of /usr/bin/* utils in /etc/rc.diskle o [2002/06/15] docs/39348 doc kenv fetch of hostname requires dhcp/boot o [2002/06/16] bin/39360 qa [sysinstall] if linux emu is added as a d o [2002/06/17] kern/39425 [amd] Auto mounted directory was not foun o [2002/06/17] bin/39439 tcopy will not duplicate tapes with block o [2002/06/18] bin/39463 mtm [PATCH] Add several options to fingerd o [2002/06/18] conf/39466 /etc/security: find -xdev hangs on dead N f [2002/06/19] conf/39505 automate BUILDNAME variable for releases o [2002/06/19] kern/39527 dwmalone getcwd() and unreadable parent directory o [2002/06/19] docs/39530 doc access(2) man page has unnecessarily broa o [2002/06/20] bin/39574 qa [sysinstall] error mounting /dev/acd0c on s [2002/06/20] conf/39580 insecure default settings f [2002/06/22] ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXA o [2002/06/23] kern/39681 [patch] add hidden kernel boot tunables t o [2002/06/24] kern/39772 imp pccardd is slow to install a PCCARD. o [2002/06/25] bin/39819 cleaning bin/sh code from warnings o [2002/06/25] docs/39824 doc Various tweaks for doc/en_US.ISO8859-1/bo o [2002/06/26] bin/39864 robert hostname instead of IP in w(1) -n output o [2002/06/26] bin/39893 setusercontext library call differs umask o [2002/06/27] bin/39905 johan cleaning sbin/restore code from warnings o [2002/06/29] conf/39976 vi recovery halting boot process 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 p [2002/07/01] gnu/40057 bugmeister send-pr -a flag does not work with -f o [2002/07/02] bin/40127 [PATCH] Add functions for PID-file handli o [2002/07/03] kern/40132 sound [sound] [patch] enabling the joystick int f [2002/07/06] bin/40273 dougb some more fortunes o [2002/07/07] conf/40298 [patch] /etc/rc: using swapfile as /tmp o [2002/07/09] kern/40369 [patch] rman_reserve_resource - when "cou o [2002/07/09] kern/40378 standards stdlib.h gives needless warnings with -an o [2002/07/09] bin/40391 imp [sysinstall] sysinstall with PCCARD<->ISA o [2002/07/10] docs/40423 doc Keyboard(4)'s definition of parameters to o [2002/07/13] kern/40516 [if_ti] [patch] ti driver has no baudrate f [2002/07/13] bin/40538 dougb mergemaster fixes and enhancements o [2002/07/14] conf/40548 list of /etc/defaults/make.conf undocumme p [2002/07/14] kern/40563 bms gif driver can clobber route/arp table o [2002/07/14] bin/40572 vipw prints silly message if $EDITOR fail o [2002/07/15] bin/40597 add /sbin/fdisk ability of showing extend s [2002/07/16] threads/40671threads pthread_cancel doesn't remove thread from o [2002/07/17] kern/40711 sound [sound] CT5880-C sometimes fails to outpu p [2002/07/18] kern/40745 bms Inconsistency between net/if.c and struct o [2002/07/19] conf/40777 disktab does not support 2.88MB floppies o [2002/07/21] docs/40851 doc [PATCH] "mergemaster -p" in UPDATING's "C o [2002/07/23] kern/40919 usage of ucred->cr_uid in sys/netinet/in_ o [2002/07/23] kern/40926 qa [boot] After Upgrading or Clean Installin o [2002/07/23] kern/40927 sound [sound] Acer Labs M5451 dies with pcm:pla o [2002/07/24] usb/40948 usb [usb] USB HP CDW8200 does not work o [2002/07/24] i386/40958 i386 apm on Acer TravelMate 351 could not resu o [2002/07/25] bin/40980 du(1)'s -h and -k options interact confus o [2002/07/27] bin/41060 ready to import gzip 1.3.3 o [2002/07/28] docs/41089 doc pax -B option does not mention interactio o [2002/07/30] bin/41159 new sed -c option to allow ; as a separat o [2002/07/30] misc/41179 LD_LIBRARY_PATH security checks o [2002/07/31] bin/41190 in sed, report the { linenum instead of E o [2002/07/31] bin/41213 top(1) blocks if NIS-related entries in p o [2002/07/31] kern/41215 [kbd] console revert back to kbd0 (AT) af o [2002/08/01] bin/41238 qa [sysinstall] problems with FreeBSD instal o [2002/08/02] docs/41270 doc confusing directions for kernelconfig cha o [2002/08/02] bin/41271 Non-suid-crontab. o [2002/08/04] bin/41307 libalias: logging of links lifecycle (add o [2002/08/04] www/41312 cvsadm RCS IDs are off-by-one in the NetBSD cvsw o [2002/08/06] i386/41364 imp pccard: NewMedia "Bus Toaster" SCSI card o [2002/08/06] www/41379 Cannot browse directory tree on FreeBSD m o [2002/08/07] usb/41415 usb [usb] [patch] Some USB scanners cannot ta o [2002/08/09] kern/41490 sound [sound] C-Media 8738 sound card static o [2002/08/10] bin/41526 symlinked mount points get mounted more t o [2002/08/11] kern/41543 emulation Easier wine/w23 support f [2002/08/11] bin/41556 obrien [PATCH] wtmp patch for lukemftpd o [2002/08/12] bin/41566 obrien file(1) out of date o [2002/08/12] i386/41569 silo overflow p [2002/08/12] standards/41576standards POSIX compliance of ln(1) a [2002/08/12] bin/41583 assorted mtree bugs (+fixes) o [2002/08/15] bin/41674 ken iostat column formatting overlaps o [2002/08/17] kern/41743 sound [sound] No sound from SiS630s controller o [2002/08/17] bin/41744 qa [sysinstall] cannot stop comat22 from bei o [2002/08/20] docs/41807 doc natd -punch_fw "bug" o [2002/08/20] bin/41817 pw groupshow doesn't include the login gr o [2002/08/20] docs/41820 doc Device driver confusion in Handbook (2.3) o [2002/08/21] conf/41855 brooks improvment of /etc/rc.diskless2 script o [2002/08/21] i386/41856 i386 VESA splash screen problems on ThinkPad 2 o [2002/08/22] docs/41879 hrs cleanup to DOCROOT/share/sgml/freebsd.dsl o [2002/08/23] docs/41919 blackend MINI kernel for bootfloppy (Handbook p.34 o [2002/08/23] kern/41930 declaration clash for ffs() and ${CXX} o [2002/08/23] bin/41947 hexdump(1) unprintable ASCII enhancement o [2002/08/23] bin/41949 qa [sysinstall] sysinstall sorts /etc/rc.con o [2002/08/24] kern/41966 sound [sound] audio/play: sblive, can cause "D o [2002/08/26] bin/42018 pkg_info with PKG_PATH searches through t o [2002/08/26] bin/42022 qa [sysinstall] non-interactive mode prompts a [2002/08/27] docs/42058 doc Documentation: Installing Oracle 8i onto o [2002/08/27] kern/42065 [patch] kern.ps_showallprocs has no effec o [2002/08/27] bin/42084 luigi [netstat] PicoBSD's 'netstat -i' reports o [2002/08/29] bin/42162 qa [sysinstall] installation crashes, md0c f o [2002/08/30] docs/42182 trhodes Making Dedicated Mode disks doc out of da o [2002/08/30] bin/42217 libdisk segfaults with 1024 bytes/sector o [2002/09/01] kern/42274 [patch] Convert defined variable into tun o [2002/09/02] bin/42336 [PATCH] ISO-fication of /usr/src/contrib/ o [2002/09/03] bin/42386 cleaning code from warnings in libkvm o [2002/09/03] bin/42387 cleaning code of librpcsvc from warnings p [2002/09/04] kern/42404 emulation TIOCSCTTY not implemented in linuxulator o [2002/09/04] kern/42422 dbm_delete returns -1 instead of 1 when t o [2002/09/04] kern/42429 [patch] hash_action called with HASH_DELE o [2002/09/05] kern/42442 problem in idlequeue/debugging mode ? o [2002/09/06] kern/42461 mdodd if_wi_pci.c,if_wi_pccard.c lack device_re s [2002/09/06] kern/42466 emulation linux: 'ipc' typ=258 not implemented o [2002/09/06] bin/42468 mount_smbfs incorrectly handled configura o [2002/09/06] bin/42469 After mounting by mount_smbfs directories o [2002/09/08] kern/42564 sound [sound] record bug with emu10k1 driver o [2002/09/09] bin/42609 pkg_info -qg doesn't handle missing files o [2002/09/10] kern/42638 sound [sound] CS4326/4327 (MSS) buggy output pl o [2002/09/11] bin/42663 pw(1): pw useradd assigns unique UID's to o [2002/09/13] kern/42728 small many problems in src/usr.sbin/ppp/* afte o [2002/09/14] i386/42766 [patch] proposal to perform reboot via ju o [2002/09/15] bin/42803 tconv, tic, captoinfo binaries missing fr o [2002/09/18] bin/42934 qa [sysinstall] installation procedure on in o [2002/09/19] kern/42956 libc bug: dlclose gives "invalid shared o o [2002/09/19] bin/42974 [patch] ISO 8601 date format option p [2002/09/20] bin/43139 bms /sbin/route -host option doesn't always s o [2002/09/21] kern/43154 [patch] tunwrite() does not allocate clus o [2002/09/22] i386/43262 command 'shutdown -r' (also reboot) cause o [2002/09/25] kern/43355 idad driver will work if logical drives d o [2002/09/25] bin/43367 incorrect report from 'who' after 'shutdo o [2002/09/25] bin/43368 pkg_create fails if target directory does o [2002/09/25] bin/43372 Broken struct ufs_args in ufsmount.h o [2002/09/27] bin/43434 New option to 'dmesg' which allow to disp o [2002/09/29] docs/43470 blackend Solid State / x109 article out of date. o [2002/09/29] kern/43474 [nfs] [patch] dhcp.* values not set in ke o [2002/09/29] bin/43497 mount -t nfs -> crunchgen incompatible o [2002/09/30] conf/43500 rc.syscons "allscreens" improvements o [2002/09/30] i386/43539 Cannot mout floppy on Compaq Proliant ML3 o [2002/10/02] kern/43577 [PATCH] New kernel option SHUTDOWN_BEEP o [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/03] kern/43611 [patch] static-ize some symbols in sys/cr o [2002/10/03] kern/43616 [patch] static-ize some functions in sys/ o [2002/10/04] docs/43651 doc stab(5) incorrectly states to include jus o [2002/10/05] kern/43716 [patch] puc driver does not recognize Lav s [2002/10/07] ports/43771 ports-bugs LaTeX ports mixed between print and textp o [2002/10/08] bin/43819 changed truss output for utrace calls o [2002/10/08] docs/43823 doc [PATCH] update to environ(7) manpage o [2002/10/08] misc/43825 qa please remove object files in source (src o [2002/10/09] bin/43857 [patch] conflicting types in /usr/src/usr o [2002/10/09] docs/43861 doc non-trivial typo in wicontrol man page o [2002/10/11] kern/43905 [patch] kqueues: EV_SET(kevp++, ...) is n o [2002/10/11] kern/43916 [hang] Olicom OC-2220 (PC-card) hangs on o [2002/10/11] docs/43941 doc Rationale for Upgrade Sequence o [2002/10/14] docs/44034 trhodes Multiple sysctl variables are not documen o [2002/10/14] misc/44058 /dev/ch* is created without group write p o [2002/10/15] docs/44074 doc ln(1) manual clarifications [patch] o [2002/10/15] kern/44098 RealTec-based NIC initialization problem o [2002/10/15] bin/44122 tun0 gets a second ip adress after a disc o [2002/10/17] conf/44170 Add ability to run multiple pppoed(8) on o [2002/10/17] www/44181 www www "Release Information" organization o [2002/10/18] bin/44212 Unify 'recursive' options -r and -R o [2002/10/19] i386/44262 tanimura Problems with nrp driver o [2002/10/19] kern/44267 [patch] One more modem PNP id for /usr/sr o [2002/10/19] bin/44277 devinfo is not C++ safe o [2002/10/19] conf/44286 roberto /etc/defaults/rc.conf uses the obsolete n o [2002/10/20] kern/44293 thomas Unable to access audio CD under Linux emu o [2002/10/22] kern/44365 [patch] introduce ulong and unchar types o [2002/10/22] kern/44372 roberto some kernel options prevent NTP clock syn o [2002/10/23] standards/44425standards getcwd() succeeds even if current dir has o [2002/10/26] kern/44497 NIC Lags? o [2002/10/26] i386/44500 [patch] bge(4): add AC1001 Gigabit NIC as o [2002/10/27] kern/44512 sound [sound] pcm driver generates static half o [2002/10/29] kern/44580 [nfs] NFS updates file access time when f o [2002/10/29] kern/44587 scsi dev/dpt/dpt.h is missing defines required o [2002/10/29] docs/44594 doc Handbook doesn't mention drivers.flp for f [2002/10/30] conf/44717 dougb update login.conf and unify login capabil o [2002/11/04] bin/44894 markm telnet(1): as a local non-root user and r o [2002/11/05] bin/44915 qa [sysinstall] 'choose installation media' o [2002/11/06] gnu/44984 Send-pr can use environmental variable $F o [2002/11/06] docs/45011 trhodes style(9): '->' and '.' don't require spac o [2002/11/07] kern/45026 [nis] Can't set next password change date o [2002/11/08] gnu/45137 peter [PATCH] CVS 1.11.2 cannot reuse log messa o [2002/11/09] www/45169 linimon suggested update for ports index page on o [2002/11/10] bin/45193 [PATCH] truss can't truss itself o [2002/11/11] ports/45216 joerg devel/bcc port is incomplete o [2002/11/11] conf/45222 daily rejected mail hosts report too long o [2002/11/12] conf/45226 mtm Fix for rc.network, ppp-user annoyance o [2002/11/12] bin/45229 restore(8) -i: ls reports mising files as o [2002/11/12] gnu/45246 sobomax tar --listed-incremental fails for Solari o [2002/11/13] bin/45254 qa [patch] [sysinstall] sysinstall installs f [2002/11/14] ports/45289 hrs ja-dvi2ps-3.2 does not handle \special co o [2002/11/14] kern/45293 kevent denies to observe /dev/tty o [2002/11/16] bin/45333 [PATCH] New option -r for chown and chgrp o [2002/11/18] ports/45414 portmgr make update in /usr/ports missing default o [2002/11/19] bin/45486 Support for human readble (-h/-H) output s [2002/11/21] bin/45547 sos a patch to make burncd handle .wav files. a [2002/11/22] bin/45584 read builtin function of sh does not read o [2002/11/23] bin/45608 qa [sysinstall] install should config all et s [2002/11/23] ports/45613 portmgr make update doesn't o [2002/11/24] kern/45679 sound [sound] [patch] Cannot record except 8bit o [2002/11/24] kern/45682 sound [sound] [patch] Sometime failed to record o [2002/11/24] kern/45684 systat -vmstat reports "alternate system o [2002/11/25] bin/45701 markm spelling error in rogue o [2002/11/25] conf/45704 [PATCH] request to change cp866b font to o [2002/11/25] bin/45729 make rbootd transfere the default file if o [2002/11/27] kern/45793 [patch] invalid media subtype aliases in o [2002/11/28] bin/45830 nectar [kerberos] KDC has problems when listenin p [2002/11/30] conf/45874 ache [PATCH] FreeBSD does not know about ca_ES o [2002/12/01] bin/45896 dwmalone setnetgrent() should return error code o [2002/12/02] docs/45940 doc burncd missing info o [2002/12/07] conf/46062 kris Remove skel from BSD.root.dist. o [2002/12/09] i386/46113 [patch] busspace bugs in parameter checki o [2002/12/09] standards/46119standards Priority problems for SCHED_OTHER using p f [2002/12/09] bin/46123 fenner PATCH: tcpdump needs -a flag if netmask i o [2002/12/10] kern/46159 ipfw ipfw dynamic rules lifetime feature o [2002/12/10] bin/46163 gad lpc problem. Only root can modify despit o [2002/12/11] docs/46196 doc Missing return value in (set_)menu_format o [2002/12/13] bin/46235 rwatson [sysinstall] NTP servers for Finland requ o [2002/12/14] kern/46250 sound [sound] yamaha DS-1E sound driver not wor 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 [2002/12/17] bin/46328 gad patch for lpd o [2002/12/19] kern/46368 [patch] MAXDEP in isa/pnpparse.c is too s s [2002/12/19] bin/46382 ps(1) could use a "repeat" mode o [2002/12/20] conf/46409 Certain periodic scripts check broken NFS o [2002/12/21] standards/46441 /bin/sh does not do parameter expansion i o [2002/12/22] conf/46453 [INTERNATIONALIZATION] cons25l2, ISO8859- o [2002/12/31] conf/46645 [PATCH] rc.shutdown state table saving ha a [2003/01/03] docs/46709 peter tables in terminfo.5 are broken o [2003/01/03] kern/46734 [patch] joystick driver doesn't allow for o [2003/01/03] kern/46736 sound [sound] ISA audio CS4232 (HP Omnibook 500 s [2003/01/04] conf/46746 No way to set link addresses through rc.c o [2003/01/04] bin/46758 moused enhancements p [2003/01/05] docs/46787 trhodes compress(1) manpage missing BUGS; other c p [2003/01/06] docs/46793 trhodes DEVICE_POLLING can not be used with SMP, o [2003/01/09] bin/46888 gad Add script run hook to newsyslog(8) o [2003/01/09] bin/46905 qa [sysinstall] FreeBSD 5.x cannot be instal s [2003/01/10] conf/46913 darrenr ipf denied packets of security run output o [2003/01/10] bin/46925 sysctl -a goes into an infinite loop... o [2003/01/11] kern/46973 [patch] syscons virtual terminals switchi s [2003/01/13] ports/47018 sf Teach ftp/wget new very useful feature - o [2003/01/13] kern/47029 sound [sound] Static and popping with Hercules o [2003/01/19] bin/47204 qa [sysinstall] base + XFree86 install fails o [2003/01/19] i386/47223 [PATCH] pcvt(4), ESC sequences do not cha o [2003/01/20] bin/47235 top reports inaccurate cpu usage f [2003/01/20] kern/47243 sound [sound] Onboard CMedia CMI8738 playback n o [2003/01/21] kern/47311 mdodd [PATCH] Kernel support for NVIDIA nForce2 o [2003/01/21] bin/47314 qa [sysinstall] wish: install should not req p [2003/01/22] kern/47349 emulation Fake a sound ioctl (plus linux hook) o [2003/01/22] bin/47350 rc.network supports only one ppp profile o [2003/01/22] kern/47352 sound [sound] pcm/ac'97, dsp device busy o [2003/01/22] i386/47376 [PATCH], pcvt(4), COLOR_KERNEL_FG, 2nd ch o [2003/01/23] bin/47387 [PATCH] gprof -K still requires "a.out" a f [2003/01/25] kern/47452 le [vinum] df(1) reports filesystem empty wh o [2003/01/27] bin/47540 Make natd configurable in running state w o [2003/01/27] conf/47566 le [vinum] [patch] add vinum status verifica o [2003/01/28] docs/47575 doc Clarify requirements for IPFW2 in STABLE o [2003/01/28] bin/47576 [PATCH] factor(6)ing of negative numbers o [2003/01/28] docs/47594 doc [PATCH] passwd(5) incorrectly states allo 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/02] docs/47818 doc ln(1) manpage is confusing o [2003/02/04] bin/47908 qa [sysinstall] /stand/sysinstall can't disp o [2003/02/06] docs/47991 trhodes Handbook section on upgrading kernel says o [2003/02/08] docs/48101 doc There's no documentation on the fixit dis o [2003/02/09] conf/48105 /etc/disktab has incomplete duplication o o [2003/02/09] misc/48110 change CVSROOT/log_accum.pl to not send m o [2003/02/10] conf/48133 /etc/rc: improved vi recovery notificatio o [2003/02/11] kern/48172 ipfw ipfw does not log size and flags o [2003/02/12] conf/48195 /var/db/mounttab error on diskless boot o [2003/02/14] ports/48281 obrien Patch editors/vim to use fetch instead of o [2003/02/15] bin/48309 pppoe connections fail to establish if th o [2003/02/16] kern/48338 sound [sound] pcm audio driver hogs /dev/dsp?.? o [2003/02/16] bin/48342 usb [PATCH] usbd dynamic device list. o [2003/02/18] bin/48443 mtm /usr/sbin/periodic executes too many file o [2003/02/18] conf/48444 [patch] count connection attempts instead o [2003/02/19] kern/48471 pjd [patch] private IPC for every jail o [2003/02/22] conf/48566 [PATCH] /etc/defaults/make.conf stales af o [2003/02/23] kern/48599 [PATCH] syscons cut-n-paste logic is brok o [2003/02/23] bin/48603 Getopt is broken. Patch included. o [2003/02/24] gnu/48638 [PATCH] some bug fixs in libdialog o [2003/02/25] alpha/48676 alpha Changing the baud rate of serial consoles o [2003/03/02] kern/48837 mbr dc cannot handle DC21142/3 PCI/CardBus 10 o [2003/03/03] conf/48870 [PATCH] rc.network: allow to cancel inter o [2003/03/03] kern/48894 [nfs] Suggested improvements to the NFS r s [2003/03/06] bin/48962 des [PATCH] modify /usr/bin/fetch to allow ba o [2003/03/06] kern/48976 [modules] nwfs.ko oddity o [2003/03/06] docs/48980 doc [PATCH] nsgmls -s errors and sect. 3.2.1 o [2003/03/06] bin/48989 qa [sysinstall] Sysinstall's partition edit o [2003/03/07] i386/49023 gad [patch] to LPD (printjob.c) to pass sourc o [2003/03/08] kern/49037 sound [sound] [patch] ESS Maestro chip misdetec o [2003/03/08] kern/49039 add support for RS485 hardware where dire f [2003/03/10] ports/49082 daichi portupgrade runs slow o [2003/03/10] kern/49086 ipfw [patch] Make ipfw2 log to different syslo f [2003/03/12] ports/49955 portmgr [PATCH] bsd.port.mk: add target to automa p [2003/03/12] kern/49957 naddy CRC32 generator should be the common rout o [2003/03/18] misc/50106 Make 'make release' more flexible behind o [2003/03/19] bin/50118 grog calendar(1) dumps core if there is ./cale p [2003/03/21] conf/50160 ache sl_SI.ISO8859-2 collation sequence is wro o [2003/03/23] docs/50211 doc [PATCH] Fix textfile creation p [2003/03/24] docs/50248 ceri New FreeBSD books o [2003/03/25] bin/50300 Make the loader's use of terminal-control o [2003/03/26] bin/50310 natd / libalias fix to allow dcc resume i p [2003/03/27] bin/50328 kris ctm_smail doesn't handle large deltas wel o [2003/03/27] bin/50331 Changing uid with pw causes duplicate use o [2003/03/27] bin/50365 [PATCH] rc.sysctl cannot handle values co o [2003/04/01] kern/50526 [patch] update to #! line termination o [2003/04/03] bin/50569 /bin/sh doesn't handles ${HOME}/.profile o [2003/04/03] docs/50573 doc return values for res_query/res_search/re o [2003/04/06] bin/50656 /bin/cp - wrong error on copying of multi o [2003/04/07] docs/50677 doc [PATCH] update doc/en_US.ISO8859-1/books/ o [2003/04/07] kern/50687 ioctl(.., CDIOCCAPABILITY, ...) always re p [2003/04/08] docs/50735 brueffer Small diff to the developers handbook & o o [2003/04/09] bin/50749 ipfw ipfw2 incorrectly parses ports and port r o [2003/04/10] docs/50773 jmg NFS problems by jumbo frames to mention i o [2003/04/12] alpha/50868 alpha fd0 floppy device is not mapped into /dev p [2003/04/14] bin/50924 "vmstat -f" says "unimplemented" but data s [2003/04/14] i386/50929 AMD K6-2+ processor is identified incorre o [2003/04/14] bin/50949 BUG: mtree doesn't honor the -P when chec o [2003/04/14] bin/50955 [PATCH] natd / libalias support for multi o [2003/04/14] conf/50956 daily_status_disks_df_flags in /etc/defau 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/15] kern/51009 [patch] buggy aue driver fixed. o [2003/04/16] bin/51070 add -p option to pom [PATCH] p [2003/04/17] kern/51082 bms FEATURE: More descriptive message on drop o [2003/04/18] kern/51120 MSGBUF_SIZE doesn't work in makefiles a [2003/04/18] docs/51133 murray RSH environmental variable not described s [2003/04/18] bin/51137 [patch] config(8) should check if a sched o [2003/04/18] kern/51145 sound [sound] Audio Slows during Heavy I/O o [2003/04/19] bin/51148 Control the cache size for pwd_mkdb to sp f [2003/04/19] ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILE o [2003/04/21] bin/51205 dwmalone openssl in base system is not compiled th o [2003/04/22] bin/51296 grog calendar wrong for dates based on day+-nu o [2003/04/27] docs/51480 dds Multiple undefined references in the Free o [2003/04/28] bin/51488 Compat patch: more(1) allowed filename to p [2003/04/28] conf/51504 ache New file: src/share/mklocale/zh_CN.GBK.sr a [2003/05/01] ports/51663 roam [PATCH] mail/vpopmail fix for using vmodu p [2003/05/03] conf/51729 ache A patch that can make freebsd support zh_ 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] ports/51900 trevor [Update Port]: audio/fest* to last versio o [2003/05/07] conf/51920 Collation for no_NO.ISO8859-1 o [2003/05/07] docs/51921 doc ls(1) manpage lacks some information abou o [2003/05/08] ports/51947 mharo Analog port does not include anlgform.htm o [2003/05/08] kern/51958 usb [usb] [patch] update for urio driver o [2003/05/10] kern/52026 usb [usb] feature request: umass driver suppo o [2003/05/11] docs/52071 doc [PATCH] Add more information about soft u o [2003/05/12] ports/52106 ports-bugs New port: java/javaws: Java Web Start 1.2 o [2003/05/13] bin/52190 dwmalone [Patch] decode more syscalls in truss o [2003/05/14] misc/52255 small picobsd build script fails under FreeBSD o [2003/05/14] misc/52256 small picobsd build script does not read in use o [2003/05/15] kern/52258 imp pccard non-functional, repeated "card ins o [2003/05/15] bin/52271 qa [sysinstall] sysinstall panics in machine o [2003/05/19] i386/52427 i386 DVD replay under MSI "655 MAX" mobo inter o [2003/05/19] docs/52448 simon [patch] Misc man page reference fixes o [2003/05/20] bin/52469 ppp: Multiple devices using UDP don't wor o [2003/05/21] bin/52517 murray New functionality for /usr/bin/Mail f [2003/05/23] bin/52601 mbr [PATCH] rpc.yppasswdd fails if master.pas o [2003/05/23] kern/52623 [if_ex] [patch] IRQ error in driver for t o [2003/05/26] ports/52706 portmgr [patch] bsd.port.mk issues warning if a s o [2003/05/27] kern/52725 [PATCH] installincludes for kmods f [2003/05/28] bin/52746 tcsh fails to handle large arguements 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 s [2003/05/28] ports/52765 portmgr [PATCH] Uncompressing manual pages may fa 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/01] i386/52835 pdeuskar em driver does not work with mobile-chips o [2003/06/03] bin/52907 phk [PATCH] more malloc options for debugging s [2003/06/03] ports/52917 portmgr [PATCH] bsd.port.mk: update default value p [2003/06/05] kern/52960 jmg [kbd] kbdcontrol macros don't work when l o [2003/06/05] kern/52971 bad macro LIST_HEAD in /usr/include/sys/q o [2003/06/06] kern/52980 mbr [patch] dc(4) driver fails to init Intel o [2003/06/08] usb/53025 usb [PATCH] ugen does not allow O_NONBLOCK fo o [2003/06/10] bin/53131 qa [sysinstall] "ALL" could not turn check B o [2003/06/13] kern/53265 imp Make Sierra A555 work in FreeBSD o [2003/06/13] docs/53271 hmp the bus_dma man page fails to document al o [2003/06/13] bin/53288 tail will sometimes display more lines th o [2003/06/15] bin/53341 qa [sysinstall] [patch] dump frequency in sy p [2003/06/16] bin/53377 [PATCH] su does not return exit status of o [2003/06/16] kern/53383 [bktr] [patch] adding Terratec TValue to o [2003/06/17] kern/53417 sound [sound] Bad Recordings on AC97 onboard au o [2003/06/19] bin/53475 cp(1) copies files in reverse order to de o [2003/06/19] kern/53506 [partial patch] support gzipped modules 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/21] docs/53575 doc Change to Handbook Section 20.9 o [2003/06/21] docs/53596 doc Updates to mt manual page o [2003/06/24] www/53676 simon [patch] Don't make people contact doc@ fo o [2003/06/24] standards/53682le [PATCH] add fuser(1) utility o [2003/06/25] docs/53732 doc quota output and man page do not document o [2003/06/26] docs/53751 hmp bus_dma(9) incorrectly documents BUS_DMA_ a [2003/06/28] bin/53870 das C++ undeclares standard math functions li o [2003/06/29] bin/53899 mktime gives wrong result in Central time p [2003/07/01] conf/53944 [PATCH] ARMSCII-8 (Armenian) LOCALE and C o [2003/07/01] kern/53987 [smbfs] smbfs can't access to files with o [2003/07/02] docs/54009 trhodes Clarify the location of the splash image o [2003/07/02] bin/54026 bms [patch] Add support for non-standard port o [2003/07/03] kern/54049 sound [sound] Sound driver reports device busy o [2003/07/03] kern/54078 sound [sound] Sound Plays ~10% Slow [4.8] o [2003/07/06] bin/54141 wrong behavour of cu(1) o [2003/07/07] conf/54170 error from weekly periodic script 330.cat s [2003/07/07] bin/54185 rwatson UFS2 filesystem ACL flag not enforced o [2003/07/08] kern/54220 [PATCH] /usr/src/Makefile has wrong instr o [2003/07/09] bin/54274 udp-proxy support is not implemented in l o [2003/07/11] bin/54365 [PATCH] add -u option to install(1) for S o [2003/07/11] kern/54383 net [nfs] [patch] NFS root configurations wit o [2003/07/13] kern/54439 Protecting sysctls variables by given mut o [2003/07/13] docs/54451 doc [patch] i386_{get|set}_ldt manual page is o [2003/07/14] docs/54461 kensmith Possible addition to Handbook o [2003/07/17] bin/54594 Apply regexps to the entire variable -- a o [2003/07/18] kern/54604 pjd Made 'ps -e' procfs-independent [PATCH]. o [2003/07/21] bin/54683 sh, redundant history o [2003/07/22] docs/54752 hmp bus_dma explained in ISA section in Handb o [2003/07/23] bin/54784 find -ls wastes space o [2003/07/24] standards/54809standards pcvt deficits o [2003/07/25] standards/54833standards more pcvt deficits o [2003/07/25] standards/54839standards pcvt deficits s [2003/07/26] bin/54878 incorrect divisor in /usr/bin/jot -r o [2003/07/26] docs/54879 doc man 1 jot, -r description o [2003/07/26] kern/54884 mckusick FreeBSD -stable and -current free space h o [2003/07/27] bin/54891 libalias/natd and exporting connection-in o [2003/07/27] bin/54897 [PATCH] -y flag for mount_mfs f [2003/07/28] kern/54981 sanpei QUIRK: Add support for Lexar 256MB USB dr p [2003/07/28] docs/54995 bms Error in accept(2) man page o [2003/07/29] conf/55015 [patch] 700.kernelmsg: Security check out o [2003/07/30] kern/55031 getgrent() failure with large groups o [2003/07/31] standards/55112standards glob.h, glob_t's gl_pathc should be "size o [2003/08/01] kern/55163 [patch] hide kld system details from jail o [2003/08/03] bin/55215 le [PATCH] add wu-ftpd style xferlog format p [2003/08/07] conf/55341 Adding ko_KR.CP949 locale o [2003/08/08] misc/55387 [patch] users LD_LIBRARY_PATH can interfe o [2003/08/08] gnu/55394 marcel GDB on FreeBSD 4.8: Deprecated bfd_read. o [2003/08/08] kern/55395 matk ICH sampling rate changes after resume fr o [2003/08/08] ports/55401 ache mod_auth_digest for ports/www/apache13 o [2003/08/11] conf/55470 [PATCH] new pccard.conf entry (I-O DATA W o [2003/08/12] docs/55482 doc DUMP has access to block devices in a JAI a [2003/08/13] ports/55515 portmgr [patch] extract perl stuff from bsd.port. o [2003/08/13] bin/55539 [patch] Parse fstab(5) with spaces in pat o [2003/08/13] bin/55546 cdcontrol play tr m:s.f interface is part p [2003/08/16] docs/55641 roam [PATCH] catch up tl(4) with hardware note p [2003/08/16] docs/55643 roam [PATCH] catch up aue(4) with hardware not p [2003/08/16] docs/55645 roam [PATCH] catch up kue(4) with hardware not o [2003/08/17] ports/55669 nobutaka emacs20 and emacs21 override each other a o [2003/08/20] bin/55788 le [vinum] Growfs does not work on vinum con o [2003/08/20] i386/55793 Flaky behavior of if_dc when initializing o [2003/08/20] kern/55802 Make kernel.GENERIC suitable for diskless o [2003/08/21] kern/55835 emulation Linux IPC emulation missing SETALL syscal o [2003/08/21] i386/55838 [kbd] Dual characters from keyboard in X o [2003/08/21] ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to u o [2003/08/22] docs/55883 kensmith [patch] handbook advanced-networking/chap p [2003/08/23] conf/55895 [patch]fix short weekday names in zh_CN.* o [2003/08/24] conf/55916 Change to /etc/rc.network & /etc/defaults o [2003/08/24] kern/55917 tun# devices cannot be created in 4.8-STA p [2003/08/24] docs/55925 roam mt, mtio, tcopy man pages refers to *rsa o [2003/08/24] gnu/55936 send-pr does not set mail envelope from o [2003/08/26] kern/55984 ipfw [patch] time based firewalling support fo o [2003/08/26] bin/56012 [patch] MAKEDEV does not allow creation o o [2003/08/28] usb/56095 usb [patch] QUIRK: Apacer Pen Drive fails to o [2003/08/30] kern/56165 bms if_baudrate is not correct for rl, xl, dc o [2003/08/31] kern/56245 [bktr] Distorted and choppy video with bk o [2003/08/31] bin/56249 obrien lukemftpd has two bugs (motd, munged utmp o [2003/08/31] kern/56250 ums doesn't work with MCT based PS/2 conv f [2003/09/02] ports/56301 daichi portupgrade: -O ineffective o [2003/09/04] kern/56441 andre bpf_tap() used incorrectly in bpf o [2003/09/04] bin/56447 Extend mt command for AIT-2 tape drives o [2003/09/04] kern/56451 /compat/linux/proc/cpuinfo gives wrong CP o [2003/09/05] standards/56476standards cd9660 unicode support simple hack o [2003/09/07] gnu/56554 re add Cc: maintainer feature to send-pr o [2003/09/07] bin/56558 [PATCH] locate(1) cannot be safely used w o [2003/09/09] kern/56632 MTIO incorrect mt_fileno status after MTE o [2003/09/09] bin/56648 le [PATCH] enable rcorder(8) to use a direct o [2003/09/10] kern/56664 bad file# in MTIO status buffer after MTE o [2003/09/11] misc/56720 [feature request] UNICODE support in Reso o [2003/09/12] conf/56736 mtm [PATCH] rcNG: enable packages to particip f [2003/09/16] ports/56928 java jce-aba port should install to $JAVA_HOME o [2003/09/16] conf/56934 rc.firewall rules for natd expect an inte o [2003/09/16] docs/56936 hmp [patch] articles/java-tomcat: add applica o [2003/09/17] conf/56940 pccard.conf entry for PCET10-CL causes sy o [2003/09/17] bin/56952 re [sysinstall] floppy install error s [2003/09/18] ports/56980 portmgr unprivileged user, extracting of tarballs a [2003/09/18] docs/56981 peter man terminfo(5) from libncurses does not o [2003/09/19] bin/57018 le [PATCH] convert growfs to use libufs(3) o [2003/09/19] bin/57024 a new option for xargs(1) -- only treat \ o [2003/09/19] bin/57026 [PATCH] Therer is no way to know the labe o [2003/09/20] kern/57036 No media detected by 3c905b-tx on 4.9-rel o [2003/09/20] bin/57045 trpt(8) option -t was disabled on -curren o [2003/09/21] bin/57054 let test(1) compare the mtime of a file t o [2003/09/22] bin/57088 [PATCH] for a possible fd leak in libcam. o [2003/09/22] bin/57089 "w" does not honor the -n option o [2003/09/24] docs/57153 doc S_IRWXU missing in fstat(2) man page? o [2003/09/26] kern/57230 [patch] psm(4) incorrectly identifies an o [2003/09/26] amd64/57250 obrien Broken PTRACE_GETFPREGS and PTRACE_SETFPR o [2003/09/26] ports/57259 portmgr [patch] Building a port as root using an o [2003/09/27] standards/57295harti make's handling of MAKEFLAGS is not POSIX o [2003/09/27] docs/57298 blackend [patch] add using compact flash cards inf o [2003/09/30] docs/57388 doc INSTALL.TXT enhancement: mention ok promp s [2003/09/30] bin/57407 bms [patch] Better NTP support for dhclient(8 o [2003/10/01] misc/57464 [boot] loader(8) seems to confuse files [ o [2003/10/01] kern/57469 scsi [patch] Quirk for Conner CP3500 o [2003/10/02] ports/57498 portmgr HEIMDAL_HOME should be defined in src or s [2003/10/02] ports/57502 ports-bugs ports that define USE_* too late o [2003/10/02] conf/57517 add parameter for /etc/periodic/daily/210 o [2003/10/03] kern/57522 [PATCH] New PID allocater algorithm from p [2003/10/03] docs/57541 trhodes Some suggestions for the Basics chapter o o [2003/10/04] docs/57569 doc error on gensetdefs(8) man page p [2003/10/06] bin/57630 lptcontrol gives "device busy" if device o [2003/10/06] bin/57641 dd [patch] missing option in mdmfs (mount_mf a [2003/10/07] kern/57696 [nfs] NFS client readdir terminates prema o [2003/10/07] bin/57715 [patch] tcopy enhancement o [2003/10/08] conf/57748 [patch] rc.network doesn't allow for -a i a [2003/10/12] standards/57911tjr fnmatch ("[[:alpha:]]","x", FNM_PATHNAME) o [2003/10/13] docs/57926 doc amd.conf.5 poorly format as it has both m o [2003/10/13] docs/57974 doc man page apropos for select macros (FD_SE o [2003/10/13] kern/57976 simple kernel DDB enhancement o [2003/10/13] docs/57978 doc Type miss of GPIB in Hardware Notes o [2003/10/14] bin/58008 qa [patch] [sysinstall] sysinstall postfix i o [2003/10/14] bin/58012 Multihomed tftpd enhancement o [2003/10/16] docs/58111 doc Handbook 12.4.3 Rebuilding ATA RAID1 Arra o [2003/10/18] docs/58202 kensmith handbook doesn't mention kldload'ness of o [2003/10/18] bin/58206 [Patch] 460.status-mail-rejects incompati o [2003/10/20] bin/58293 vi replace with CR (ASCII 13) doesn't wor o [2003/10/22] kern/58373 mckusick [ufs] ufs inconsistency between 4.9-RC an o [2003/10/22] bin/58390 bsdlabel fails to display an error messag o [2003/10/24] bin/58483 [PATCH] allows type special or node relat o [2003/10/24] kern/58497 sysctl knob to return current process' ji f [2003/10/25] kern/58529 dwmalone [patch] RDWR bpf in pcap. o [2003/10/26] ports/58545 joerg devel/avr-gcc: fix libintl and libiconv d o [2003/10/26] conf/58557 Summer/Winter-time change causes daily cr o [2003/10/26] gnu/58583 kan gcc.1, cpp.1 and gcov.1 manpages are outd o [2003/10/27] conf/58595 Default NTP configuration o [2003/10/28] docs/58615 doc update for Vinum chapter of Handbook: des f [2003/10/28] ports/58653 trevor [Ports Update]:: audio/fest* 1.4.1 -> 1.4 o [2003/10/28] gnu/58656 marcel gdb not ready for prime time o [2003/10/29] standards/58676standards grantpt(3) alters storage used by ptsname o [2003/10/29] conf/58680 dougb [PATCH] RCNG: shouldn't ldconfig be start o [2003/10/29] bin/58696 /sbin/natd feature request & possible pat o [2003/10/30] docs/58710 doc killpg(2) contains an error regarding sen o [2003/10/31] i386/58784 i386 ATA DMA fails and vx0 creates panic o [2003/11/01] kern/58803 [patch] kern.argmax isn't changeable even o [2003/11/03] bin/58893 OPIE implementation bug o [2003/11/04] bin/58939 dumb little hack for /etc/rc.firewall{,6} o [2003/11/05] kern/58967 Kernel kills processes in spite of cputim o [2003/11/05] bin/58970 truss coredumps for the no significant re o [2003/11/07] docs/59044 doc doc.docbook.mk does not properly handle a o [2003/11/09] kern/59067 [patch] PS/2 mouse unstable o [2003/11/11] usb/59169 usb [patch] ulpt is missing read operation o [2003/11/12] bin/59207 uustat list limit of 201 jobs o [2003/11/12] kern/59208 matk [sound] [patch] reduce pops and crackles o [2003/11/12] bin/59220 obrien systat(1) device select (:only) broken o [2003/11/13] docs/59240 blackend handbook update: linux MATLAB s [2003/11/13] ports/59254 ports-bugs ports that write something after bsd.port o [2003/11/14] kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_ f [2003/11/14] ports/59292 hrs dvips one line paper sizes broken? o [2003/11/15] www/59307 remko [patch] xml/xsl'ify & update publications o [2003/11/19] kern/59456 fdescfs stat / compress creates only empt o [2003/11/19] docs/59477 doc Outdated Info Documents at http://docs.fr o [2003/11/20] bin/59530 strange bug in /bin/sh o [2003/11/21] bin/59551 marcel Problem with GDB on latest -CURRENT f [2003/11/21] ports/59553 hrs teTeX installs texdoctk without depending o [2003/11/21] bin/59564 Added an option (-S) to from command to a o [2003/11/23] conf/59600 [PATCH] Improved us.emacs.kbd mapping o [2003/11/23] kern/59624 [PATCH] HightPoint HPT371 support for Fre o [2003/11/26] kern/59698 [kbd] [patch] Rework of ukbd HID to AT co o [2003/11/26] bin/59708 [patch] add sSMTP support for Mail select o [2003/11/27] bin/59730 isdnd crashes with signal 11 if cannot cr o [2003/11/27] kern/59732 jhb acpi causes boot to hang o [2003/11/27] docs/59735 kensmith Adding a reference to Icelandic Rsync o [2003/11/27] docs/59736 kensmith Updating size of archives o [2003/11/27] kern/59739 rmdir(2) and mkdir(2) both return EISDIR o [2003/11/28] bin/59772 ftpd(8)/FreeBSD 5: support for tcp_wrappe o [2003/11/28] bin/59774 ftpd(8)/FreeBSD 5: syslog facility may be o [2003/11/28] bin/59775 ftpd(8)/FreeBSD 5: incorrect reply for "u f [2003/11/29] ports/59788 daichi sysutils/portupgrade ignores line breaks p [2003/11/29] conf/59799 New locale: zh_HK.Big5HKSCS s [2003/11/29] ports/59802 linimon [patch] make devel/py-ncurses depend on d o [2003/11/29] i386/59806 tackerman [patch] Suspend/resume breaks em0 o [2003/11/30] kern/59814 FreeBSD mknod refuses to create pipes and o [2003/11/30] docs/59835 doc ipfw(8) man page does not warn about acce f [2003/11/30] i386/59854 anholt System panics when AMD 762 AGP is loaded o [2003/12/02] kern/59896 trm driver is not in GENERIC o [2003/12/02] docs/59900 kuriyama out of date README.txt and .message files o [2003/12/02] kern/59903 [patch] "pci_find_device" returns [only/a o [2003/12/03] bin/59922 Toshiba Portege hangs with Eicon DIVA T/A o [2003/12/09] kern/60089 scottl UDF filesystem appends garbage to files o [2003/12/10] conf/60106 /etc/hosts mentions AfriNIC which does no o [2003/12/12] kern/60174 marcel debugging a kernel module in load/attach o [2003/12/12] kern/60183 sobomax [patch] No WCCPv2 support in gre o [2003/12/15] usb/60248 usb [patch] Problem with USB printer HP Laser a [2003/12/16] kern/60293 bms FreeBSD arp poison patch o [2003/12/16] kern/60307 [patch] wrong product id in pccarddevs fo o [2003/12/17] i386/60319 i386 [hang] read error 34/0 during installatio o [2003/12/18] bin/60350 qa [sysinstall] in Choose Distributions scre o [2003/12/18] misc/60352 [PATCH] buildworld fails in sysinstall if o [2003/12/21] kern/60448 PF_KEY protocol does not have a correspon o [2003/12/21] ports/60472 ports-bugs [New Port] devel/doxymacs Doxymacs is Dox o [2003/12/22] misc/60503 [modules] small error in modules installa o [2003/12/22] bin/60510 [PATCH] change to less for compressed fil o [2003/12/23] docs/60529 doc resolver(5) man page is badly out of date o [2003/12/24] docs/60544 doc getenv(3) manpage doesn't state the retur o [2003/12/25] kern/60550 silby [PATCH] hitting process limits produces s f [2003/12/25] ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify o [2003/12/26] kern/60599 multimedia [sound] [partial patch] No sound for ATI o [2003/12/27] bin/60632 UI bug in partition label screen in sysin o [2003/12/27] bin/60636 Enhancement to adduser script. o [2003/12/28] bin/60642 mbr dhclient has mysterious option -D o [2003/12/28] bin/60662 qa [sysinstall] 5.2 Anonymous FTP server out o [2003/12/29] conf/60677 [patch] No reaction of volume controy key o [2003/12/29] kern/60697 [patch] pseudo-tty hack versus telnet rac f [2003/12/29] kern/60699 DVD Multidrive udma mode autosensed wrong o [2003/12/29] i386/60702 i386 can't boot 5.2-RC2 iso's to install o [2003/12/30] kern/60719 ipfw ipfw: Headerless fragments generate cryp o [2003/12/30] kern/60737 sound [sound] Sound card Turtle Beach Santa Cru o [2003/12/31] kern/60761 sound [sound] pcm performance on emu10k1 driver o [2004/01/02] bin/60834 [ftp] ftpd send_data()+oldway: anonymous o [2004/01/03] kern/60874 [feature request] auto-assign devfs rules o [2004/01/04] kern/60892 [patch] added -p option to kldxref to all o [2004/01/04] kern/60900 During shutdown sync fails: "giving up on o [2004/01/06] i386/60963 i386 [PATCH] Win32 Applications abort on PECOF o [2004/01/06] kern/60982 [PATCH] ID for VIA 686A Power Management o [2004/01/07] i386/61005 i386 [boot] The Boot Manager in FreeBSD 5.2RC o [2004/01/08] docs/61070 doc handbook: Installation docs misleading: o [2004/01/09] kern/61109 bge on TYAN AMD762-based Thunder/Tiger pa o [2004/01/11] amd64/61209 amd64 ppc0: cannot reserve I/O port range o [2004/01/12] bin/61234 usb [usb] [patch] usbhidaction doesn't suppor o [2004/01/12] bin/61239 [patch] bootp enhancement, places the dhc o [2004/01/12] kern/61261 obrien generated header, emu10k1-alsa%diked.h no o [2004/01/12] bin/61264 qa [sysinstall] unable To Use VT100 Terminal o [2004/01/13] conf/61289 /etc/pccard_ether: please use ifn value o o [2004/01/13] kern/61300 [patch] Enabling HomePNA PHY on aue(4) fo o [2004/01/13] docs/61301 doc [patch] Manpage patch for aue(4) to enabl o [2004/01/13] i386/61308 i386 Maxproc Limits counts Zombie Processes wh o [2004/01/13] misc/61322 bsd.dep.mk disallows shell generated flag o [2004/01/14] i386/61348 i386 Adaptec 1460D PCI SCSI Card does not work o [2004/01/16] bin/61405 cperciva A faster ffs(3) o [2004/01/16] kern/61415 [PATCH] disable broadcast ssid if_wi and o [2004/01/16] kern/61438 5.2 nfs tasks running and not selected at o [2004/01/16] i386/61442 i386 Highpoint RocketRAID 1520 uses only UDMA2 s [2004/01/17] ports/61471 ports-bugs Suggested mini-patch to ports/graphics/sa o [2004/01/17] i386/61481 i386 [patch] a mechanism to wire io-channel-ch o [2004/01/17] kern/61497 ups [patch] __elfN(map_insert) bug o [2004/01/17] bin/61502 dwmalone Incorrect ip6fw output when adding rules o [2004/01/18] kern/61503 [smbfs] mount_smbfs does not work as non- o [2004/01/18] conf/61504 mtm [patch] New RC script: accf_http o [2004/01/18] i386/61545 5.2 release cannot see NIC on Dell 1750 o [2004/01/19] i386/61579 [hang] sis 645dx is not working (but on t o [2004/01/20] i386/61603 i386 [sysinstall] wrong geometry guessed s [2004/01/20] kern/61622 Intel Pro/100 Intelligent Server Adapter o [2004/01/20] conf/61641 grog Martin Luther King, Jr. Day missing from o [2004/01/21] bin/61666 peter [patch] mount_nfs parsing bug, segmentati o [2004/01/21] docs/61667 doc Obsolete documentation on FreeBSD PnP f [2004/01/21] kern/61677 Unable to open CDROM tray if boot_cdrom i o [2004/01/21] kern/61685 andre [patch] ipnat + dummynet on same interfac o [2004/01/21] bin/61690 fsdb seqfaults in cmd. parsing routine o [2004/01/22] kern/61744 andre [patch] TCP hangs onto mbufs with no tcp o [2004/01/24] bin/61808 [PATCH] Update RPC prgs to allow binding s [2004/01/24] kern/61810 mounts done within a chroot show up wrong o [2004/01/24] www/61824 www Misleading documentation on FreeBSD insta o [2004/01/24] i386/61838 i386 Realtek -8139C Card Not Supported o [2004/01/24] i386/61843 i386 Intel PRO/100 VE adapter is not recognize o [2004/01/24] conf/61847 Additions to file /usr/share/misc/pci_ven o [2004/01/25] i386/61858 bms bus_dmamap_sync with BUS_DMASYNC_POSTREAD o [2004/01/25] docs/61859 doc Incorrect informaiton about trace command o [2004/01/25] kern/61909 5.2-Current fails to notice change of CD o [2004/01/26] bin/61971 k5init --renewable fails o [2004/01/27] bin/61975 ume [PATCH] sync src/usr.sbin/traceroute6.c w o [2004/01/27] bin/61978 [PATCH] sync src/usr.sbin/setkey/token.l a [2004/01/27] ports/61998 roam PostgreSQL support for mail/vpopmail 5.3. o [2004/01/27] i386/62003 i386 [patch] make /boot/loader "reboot" code s o [2004/01/28] kern/62042 luigi ipfw can't no more reject icmp (icmptypes o [2004/01/29] bin/62077 Make it possible to abbreviate device nam o [2004/01/30] kern/62098 [pccard] [patch] Bad CISTPL_VERS_1 and cl o [2004/01/30] kern/62102 alc obreak update f [2004/01/31] bin/62139 User cannot login through telnet or ssh b o [2004/02/01] bin/62207 ppp crashes with option 'nat punch_fw' wh o [2004/02/02] ports/62256 ports-bugs New port: chinese/mozilla-sclp o [2004/02/02] kern/62257 card reader UCR-61S2B is only half-suppor o [2004/02/03] i386/62288 reopened raid disks on a running system o [2004/02/03] bin/62300 gcc/config/freebsd-spec.h 1.6 is incomple o [2004/02/04] kern/62323 [kbd] Logitech Cordless MX Duo Keyboard/M o [2004/02/04] i386/62324 Onboard Broadcom BCM5705 controller not i o [2004/02/04] kern/62333 syslog: kernel: dc0: discard oversize fra o [2004/02/04] bin/62334 vipw doesn't see changes if re-edit for t o [2004/02/05] bin/62379 marcel gdb apropos command crashes o [2004/02/05] docs/62402 doc easily circumventable Blade150 problem o [2004/02/06] docs/62412 doc one of the diskless boot methods describe o [2004/02/08] bin/62513 Errant /usr/bin/krb5-config on 4-STABLE p [2004/02/08] gnu/62555 readline 4.3 should be patched o [2004/02/10] ports/62607 hrs textproc/text2html conflicts with tex por o [2004/02/10] ports/62657 portmgr Port linux-jpeg have decreaseed version n o [2004/02/11] bin/62702 qa [sysinstall] backup of /etc and /root dur o [2004/02/11] bin/62711 qa [sysinstall] installation: "Insert Next C o [2004/02/12] docs/62719 doc cross-reference pccardd and devd o [2004/02/12] docs/62724 doc host(1) manpage does not include informat o [2004/02/12] kern/62742 [hang] system "hangs" for a some time whi o [2004/02/12] kern/62746 tjr [smbfs] SMBFS and vfs.usermount. User can f [2004/02/13] ports/62761 portmgr patch for phasing out distinfo files o [2004/02/13] bin/62766 ``systat -vm'' does not work on diskless f [2004/02/14] ports/62829 portmgr Mk file bsd.linux.rpm.mk supporting Linux o [2004/02/14] java/62837 phantom linux-sun-jdk14 executables hang with COM s [2004/02/14] standards/62858standards malloc(0) not C99 compliant o [2004/02/15] kern/62862 sound [sound] [patch] fix pcm vchans related cr o [2004/02/15] bin/62885 des pam_radius doesn't maintain multiple stat o [2004/02/15] kern/62890 ups proc pointer set by fork1 can be stale in o [2004/02/17] bin/62965 krion pkg_add -r fails if fetching multiple pac o [2004/02/17] i386/62977 i386 Mouse daemon during install/setup f [2004/02/18] ports/62990 daichi portupgrade fails to use package even wit o [2004/02/18] misc/62994 Terminal locks up o [2004/02/18] ports/63018 obrien editors/vim: dependency to ruby/python is o [2004/02/19] bin/63064 strptime fails on %z o [2004/02/19] docs/63084 des Several Man-pages reference non-existant o [2004/02/20] kern/63096 rwatson [patch] MAC entry point for route manipul o [2004/02/20] ports/63108 obrien amd64/bento-fix: devel/gdb52 and devel/gd p [2004/02/21] standards/63173standards Patch to add getopt_long_only(3) to libc o [2004/02/21] amd64/63188 amd64 ti(4) broken on amd64 o [2004/02/22] bin/63197 tftp Bus error, core dumped o [2004/02/22] kern/63204 sound [sound] /dev/mixer broken with ESS Maestr o [2004/02/22] docs/63215 doc Wrong prototypes in mi_switch(9) (ref doc o [2004/02/22] ports/63216 portmgr 'BROKEN' or 'IGNORED' ports exit their "m s [2004/02/22] ports/63238 thierry New port: french/firefox-flp - Mozilla / o [2004/02/24] bin/63319 burncd fixate error o [2004/02/26] bin/63413 dbm_delete return value incorrect o [2004/02/29] conf/63527 AM/PM date format should be localized. o [2004/02/29] ports/63543 ports-bugs New port: chinese/phpbb-zh_TW o [2004/02/29] www/63551 ceri Lack of DTD in cgi scripts o [2004/02/29] www/63552 remko Validation errors due to CAPs in attribut o [2004/03/01] docs/63570 ceri Language cleanup for the Handbook's DNS s o [2004/03/01] bin/63608 Add a -c option to time(1) to display csh o [2004/03/02] i386/63628 bms [patch] i386 master boot record to allow o [2004/03/02] bin/63659 /usr/sbin/pw does not honor symlinks in s s [2004/03/03] ports/63716 portmgr [patch] Mk/bsd.port.mk: move sysctl to ${ s [2004/03/03] i386/63721 bms VT6103 NIC broken since 5.2 o [2004/03/04] kern/63746 vmnet0 makes vmnet4096 o [2004/03/04] kern/63768 Must access /dev/acd0c before using /dev/ o [2004/03/05] i386/63815 i386 boot loader waste a lot of time (10 min) o [2004/03/06] usb/63837 usb [patch] USB: hid_is_collection() only loo o [2004/03/07] kern/63863 glebius [patch] implement NGM_ELECTROCUTE s [2004/03/07] kern/63897 makeoptions CONF_CFLAGS are ignored when f [2004/03/09] kern/63982 tackerman em0 hardware checksum offloading causes b o [2004/03/10] bin/64036 Linux application Sophos Mailmonitor not o [2004/03/10] kern/64040 sound [sound] crackling sound on 5.2.1-RELEASE o [2004/03/11] kern/64114 [PATCH] bad vertical refresh for console o [2004/03/12] bin/64153 mdmfs features via fstab o [2004/03/12] kern/64178 jmg kqueue does not work with bpf when using o [2004/03/13] bin/64198 init(8) may keep zombies o [2004/03/15] ports/64304 portmgr geography category o [2004/03/15] ports/64307 ports-bugs [NEW PORT] databases/linux-unixODBC: RPM o [2004/03/16] bin/64327 [PATCH] make(1): document surprising beha o [2004/03/17] kern/64365 acpi ACPI problems o [2004/03/17] conf/64381 qa lo0 not up and no IPs assigned after inst p [2004/03/19] bin/64464 rwatson pam_krb5 module ignores no_ccache option o [2004/03/19] bin/64476 dougb [PATCH] mergemaster: support for keeping p [2004/03/20] ports/64490 obrien link error in manpage of editors/vim o [2004/03/20] kern/64522 3COM 3C920B onboard Asus P4R800-VM not su o [2004/03/22] kern/64556 if_sis short cable fix problems with NetG o [2004/03/22] kern/64588 [patch] Extend joystick driver architectu o [2004/03/23] i386/64626 i386 AP initialization problem on GIGABYTE GA- s [2004/03/24] bin/64664 bms Reboot command needs to protect itself fr f [2004/03/26] ports/64769 daichi portupgrade mplayer-plugin not reading pk o [2004/03/26] kern/64772 Mouse Movement Problem o [2004/03/26] kern/64788 nsswitch with ldap and starting ppp on bo o [2004/03/27] docs/64807 doc Handbook section on NAT incomplete o [2004/03/27] bin/64811 systat can't display big numbers in some o [2004/03/29] kern/64875 standards [patch] add a system call: fdatasync() o [2004/03/29] i386/64878 tackerman Intel 82547 CSA Driver forces system lock o [2004/03/30] bin/64921 vmstat -i is not reporting IRQ usage on a o [2004/03/30] ports/64930 kris ports/Tools/portbuild/scripts/makeworld d o [2004/03/31] kern/64971 A squid process larger than 3G f [2004/03/31] usb/64997 sanpei QUIRK: Getting a Philips USB mp3 player t o [2004/04/01] bin/65045 ftp doesn't remember binary mode if setti o [2004/04/02] docs/65065 doc improper language ntpd man pages o [2004/04/03] i386/65124 i386 Unable to disable TERM_EMU cleanly o [2004/04/05] kern/65206 adding floppy drive seems to force PIO mo o [2004/04/05] bin/65228 [Patch]Allow rup to parse hostnames from o [2004/04/06] bin/65258 save /etc/rc.firewall from changing for s o [2004/04/07] kern/65278 ups [patch] sio: kgdb debugger port initializ o [2004/04/07] bin/65299 vi temp path contains double / o [2004/04/08] bin/65306 obrien [patch] Portability fixes for FreeBSD bui f [2004/04/09] ports/65344 portmgr USE_ macros for graphics libraries o [2004/04/09] kern/65355 [patch] TC1000 serial ports need enabling o [2004/04/10] ports/65408 trevor patch to shorten 133 DESCR files o [2004/04/10] ports/65409 trevor big whitespace cleanup o [2004/04/11] usb/65436 usb QUIRK: [patch] to add support for PNY Att o [2004/04/12] kern/65448 jhb _mtx_unlock_sleep() race condition if ADA o [2004/04/13] docs/65477 doc Installation Instruction fail to mention o [2004/04/13] bin/65483 vi -r crashes o [2004/04/14] i386/65528 i386 mouse cursor disapears on moving o [2004/04/14] docs/65530 doc minor improvement to getgrent.3 p [2004/04/15] bin/65557 des passwd uses passwd_format of default logi s [2004/04/15] ports/65587 blackend Update emulators/linux-winetools to 1.30 o [2004/04/16] kern/65627 [patch] store P3 serial number in sysctl o [2004/04/17] bin/65649 gad Add `-u name' option to env(1) o [2004/04/18] bin/65707 scp does not deal with local file copies o [2004/04/19] kern/65769 usb [usb] Call to tcflush(x, TCIFLUSH) stops o [2004/04/19] kern/65786 [vfs_syscalls.c] Incorrect fifo semantics s [2004/04/20] ports/65794 joe net/ripetools is obsolete o [2004/04/20] bin/65803 gad bin/ps enhancements (posix syntax, and mo s [2004/04/20] ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow o [2004/04/20] ports/65828 trevor Returned mail: address is restricted o [2004/04/20] ports/65829 trevor Returned mail: address is restricted a [2004/04/22] docs/65895 murray incorrect "omshell" link in "dhclient" ma f [2004/04/23] ports/65915 portmgr [PATCH] bsd.port.mk: handle interactive c o [2004/04/24] ports/65934 ports-bugs [NEW PORT] japanese/ja-xmms: X Multimedia o [2004/04/25] bin/65973 Problem logging in to the NIS slave and N o [2004/04/26] docs/65988 doc incorrect references to ppp.conf in handb o [2004/04/27] ports/66032 portmgr [PATCH] bsd.port.mk: clean room installat o [2004/04/28] ports/66042 ports-bugs new port: www/suexec13 (standalone suexec o [2004/04/29] kern/66079 bms route change default causes panic in cert o [2004/04/29] bin/66095 template_user is broken in pam_radius o [2004/04/30] ports/66109 portmgr [PATCH] bsd.port.mk: inconsistent use of o [2004/04/30] ports/66110 portmgr [PATCH] bsd.port.mk: MLINKS error detecti o [2004/05/03] kern/66185 twe driver generates gratuitous warning o o [2004/05/03] kern/66225 [patch] extend ng_eiface(4) control messa o [2004/05/04] ports/66246 ports-bugs new ports: textproc/docbook-utils, textpr o [2004/05/04] docs/66264 doc [patch] libexec/rtld/rtld.1 typo fixes no o [2004/05/04] docs/66265 doc [patch] Document what -f and LD_TRACE_LOA o [2004/05/04] kern/66268 glebius [PATCH] Socket buffer resource limit (RLI o [2004/05/05] gnu/66279 less(1) -- add support for stty(1) erase2 p [2004/05/05] docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to n o [2004/05/05] docs/66296 doc [patch] contrib/amd/amq/amq.8 uses log_op p [2004/05/06] bin/66311 fenner TCPDUMP ISAKMP payload handling denial-of o [2004/05/07] ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java por o [2004/05/07] docs/66343 doc unlisted supported card on man page for w o [2004/05/07] standards/66357standards make POSIX conformance problem ('sh -e' & o [2004/05/08] ports/66389 portmgr [PATCH] bsd.port.mk: follow MOVED ports o [2004/05/09] kern/66422 sound [sound] [patch] no sound on modern Sony V o [2004/05/09] docs/66426 doc handbook update (desktop section): web br o [2004/05/10] bin/66445 Add options to last(1) to ignore ftp logi f [2004/05/10] ports/66476 adamw [NEW PORT] misc/gaim-talkfilters: A neat o [2004/05/10] alpha/66478 alpha unexpected machine check: panic for 4.9, o [2004/05/10] ports/66480 openoffice editors/openoffice-1.1 port uses root's $ o [2004/05/10] docs/66483 doc [patch] share/man/man4/csa.4 grammar nits o [2004/05/10] bin/66492 cpio -o -Hustar creates broken timestamps o [2004/05/11] docs/66505 trhodes escaping '~' and '$' characters in login. o [2004/05/11] standards/66531standards _gettemp uses a far smaller set of filena f [2004/05/11] kern/66547 usb [usb] Palm Tungsten T USB does not initia o [2004/05/12] i386/66564 3c920-MV00 PHY detection problem s [2004/05/12] ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/ o [2004/05/12] kern/66589 processes get stuck in "inode" state when o [2004/05/13] bin/66594 marcel gdb dumps core o [2004/05/14] kern/66642 sound [sound] pcm0: play: 0: play interrupt tim o [2004/05/16] bin/66677 mv incorrectly copies somedir/.. to ./.. o [2004/05/17] conf/66726 /etc/periodic/security/ 800.loginfail scr o [2004/05/17] bin/66763 mdmfs: sync arguments with those of newfs o [2004/05/17] docs/66768 doc 4_RELENG share/man/man4/ng_one2many.4 MFC o [2004/05/17] docs/66770 doc [patch] share/man/man4/ng_pppoe.4 tyops, o [2004/05/17] docs/66771 imp [patch] usr.sbin/pccard/pccardc/pccardc.8 o [2004/05/17] docs/66775 roam Clarification to committer's guide that p s [2004/05/18] ports/66808 ade bsd.port.mk: bsd.autotools.mk appears too o [2004/05/19] ports/66892 portmgr possible bug in philosophy of ports/MOVED o [2004/05/19] bin/66893 [patch] LINUX NIS clients connecting to F o [2004/05/20] bin/66941 [patch] gcc2.95 (FreeBSD-specific): fix u o [2004/05/21] kern/66981 Can't read audio CDs with a samsung sw-25 o [2004/05/21] bin/66988 [Patch] apm.c check validation of the ret o [2004/05/21] i386/66997 [if_bge] Problem with Broadcom BCM5705M a o [2004/05/21] i386/67011 mdodd [patch] MFC of vpd driver for IBM xSeries o [2004/05/22] bin/67041 "fortune -m" peeks in "fortune" file only o [2004/05/22] i386/67055 i386 Mouse (wheel) detection problem on SIS748 o [2004/05/23] docs/67078 doc [patch] MFC of a rtld(1) man page is inco o [2004/05/24] bin/67142 rpc.yppasswdd incorrectly throws errors a o [2004/05/25] bin/67172 w,finger display the remote host incorrec s [2004/05/25] ports/67192 ports-bugs mod_perl-related regressions in the newes o [2004/05/26] bin/67231 [patch] pam_krb5 doesn't honor default fl o [2004/05/27] kern/67242 tackerman [PATCH] dev/em/if_em.c isn't ctags compat o [2004/05/28] bin/67307 ready to import bootstrap_cmds/decomment o [2004/05/28] bin/67308 ready to import bootstrap_cmds/relpath fr o [2004/05/28] kern/67309 acpi zzz reboot computer (ACPI S3) a [2004/05/29] bin/67317 bms patch to nfsd.c to make it slightly more o [2004/05/29] bin/67334 mount_cd9660 gives dscheck: negative b_bl p [2004/05/29] kern/67357 brooks Patch for uftdi to support Intrepidcs.com o [2004/05/30] i386/67383 i386 [patch] do a better job disassembling cod f [2004/06/01] ports/67436 portmgr patch for bsd.port.mk: GNU_CONFIGURE_PREF o [2004/06/01] ports/67437 portmgr patch for bsd.port.mk: NO_BUILD and PKGNA o [2004/06/02] misc/67502 cvs cvs-all commit message did not include al s [2004/06/03] ports/67531 portmgr New spanish virtual branch p [2004/06/03] conf/67549 No Cents for es_ES monetdef (Euro) o [2004/06/03] bin/67550 Add BLK_SIZE option to tftpd server o [2004/06/04] www/67554 www man-cgi visual glitch on 3-word titles f [2004/06/04] ports/67562 portmgr patch for bsd.port.mk - USE_BDB, WANT_BDB o [2004/06/04] gnu/67565 SIGPIPE processing in cvs 1.11.5 may lead o [2004/06/04] i386/67578 [kbd] Keyboard error IBM xSeries 335 o [2004/06/04] kern/67580 request to add hints for boot failures f [2004/06/06] kern/67627 phk [panic] gbde kernel panic o [2004/06/07] www/67651 hrs Update early-adopter post-4.10 o [2004/06/07] bin/67687 iostat does not provide read vs. write st s [2004/06/08] kern/67706 [unionfs] cvs update over a union mount s o [2004/06/08] bin/67723 FreeBSD 5.x restore cannot handle other p o [2004/06/09] i386/67763 i386 [patch] PCMCIA: MELCO manufacturer code s o [2004/06/10] i386/67773 i386 5.x series - md5 on dev no longer works e f [2004/06/10] docs/67806 doc [patch] Let 5.x users know how to boot in s [2004/06/11] ports/67815 ports-bugs graphics/ImageMagick no longer recognizes f [2004/06/11] i386/67818 bz Marvell if_sk driver watchdog timeout iss o [2004/06/11] kern/67830 [patch] CPU affinity problem with forked o [2004/06/11] ports/67832 jdp Change request: net/cvsup (STATIC -> WANT o [2004/06/13] docs/67893 doc boot.8's -m description is insufficient. o [2004/06/13] alpha/67903 alpha hw.chipset.memory: 1099511627776 - thats o [2004/06/14] bin/67943 find(1) fails when current directory is n o [2004/06/16] bin/68014 stty -pendin does not turn off pendin mod o [2004/06/16] bin/68016 Bug in visual bell on console (kbdcontrol o [2004/06/17] bin/68062 standalone repeat(1) command o [2004/06/18] kern/68081 [patch] sys/time.h (lint fix) o [2004/06/19] conf/68108 [patch] Adding mac-address /conf selector o [2004/06/19] kern/68110 hsu [PATCH] RFC 3522 for -HEAD o [2004/06/19] i386/68117 i386 serious network collisions after NIC "med o [2004/06/19] kern/68122 sound [sound] Device busy (/dev/dsp)- insane, n o [2004/06/20] bin/68134 rwatson 'invalid hostname' displayed in w/who out o [2004/06/20] i386/68140 i386 Problem with Sony AIT ATAPI Tape dirve a [2004/06/22] kern/68189 luigi arp -a discloses non-jail interfaces with o [2004/06/22] kern/68192 Cannot use quotas on jailed systems p [2004/06/22] docs/68201 keramida [patch] pthread_atfork(3) man page o [2004/06/23] kern/68225 sound [sound] trouble with sound on Dell Latitu o [2004/06/23] usb/68232 usb [patch] ugen(4) isochronous handling corr o [2004/06/25] kern/68311 [patch] it is impossible to override defa o [2004/06/25] bin/68312 be able to create fdisk partions using si o [2004/06/25] kern/68315 [patch] atacontrol addspare for 4.x o [2004/06/25] kern/68317 [patch] on soft (clean) reboots clean dme o [2004/06/25] bin/68328 enable configuration of extra listen sock s [2004/06/25] ports/68337 portmgr patch so that README.html files in ports s [2004/06/25] ports/68346 portmgr Nested port install requires user interve o [2004/06/27] usb/68412 usb [usb] [patch] QUIRK: Philips KEY013 USB M o [2004/06/27] kern/68435 wpaul xl driver in freebsd 5.x only works if pr o [2004/06/28] bin/68437 conscontrol DEVDIR -> _PATH_DEV fix and m o [2004/06/28] docs/68453 doc [patch] rc.subr.8 o [2004/06/28] kern/68458 Burning DVD causes lots of FAILURE - READ o [2004/06/28] kern/68459 [patch] Patches to mknod(2) behave more l o [2004/06/30] i386/68514 i386 Realtek driver halts on oversized frames o [2004/06/30] kern/68515 sound [sound] sound card noise (ES1938, 5.0) o [2004/06/30] i386/68518 i386 Hangs while loading 82443BX agp during bo p [2004/06/30] conf/68524 Including the Basque in the system o [2004/06/30] conf/68525 rc Loader's verbose boot mode has rc.d/local o [2004/06/30] bin/68527 Resizing 'top' running in a terminal to o o [2004/07/01] bin/68552 tip(1) does not set noncanonical mode inp o [2004/07/02] bin/68586 dwmalone [patch] allow syslogd to forward to non-d o [2004/07/02] docs/68606 doc Porter's Handbook: document how to write o [2004/07/03] kern/68623 [patch] sf(4) (Adaptec StarFire) multiple o [2004/07/04] kern/68665 sound [sound] pcm doesn't detect Realtek ac97 o o [2004/07/05] kern/68690 write(2) returns wrong value when EFAULT p [2004/07/05] bin/68691 dwmalone syslogd - correct program name handling o [2004/07/05] kern/68692 andre [patch] Move ARP out of routing table o [2004/07/06] kern/68719 [patch] [msdosfs] poor performance with m o [2004/07/07] conf/68745 rc /etc/rc.d/devfs runs after ntpd so links o [2004/07/07] i386/68754 i386 [hang] SMP reset bug (Tyan Thunder100, 44 o [2004/07/07] kern/68765 [mmap] a little data can be stored beyond o [2004/07/08] bin/68797 cut(1) patches to fflush after each write o [2004/07/09] bin/68840 [PATCH] Add Solaris-style -x flag to iost o [2004/07/09] docs/68843 doc Dates on rc.subr(8) & rc(8) are whack. o [2004/07/09] docs/68845 doc The .At macro produces unexpected results o [2004/07/09] bin/68848 [patch] find(1) shows pathname as optiona a [2004/07/11] bin/68904 krion pkg_install fixes (_PATH_*, sprintf -> sn o [2004/07/11] misc/68905 core dump ownership issue o [2004/07/11] ports/68908 daichi x11/kde3 depends on missing port o [2004/07/11] conf/68916 Named starts PRIOR to ldconfig o [2004/07/13] bin/68981 unlogic jot behaviour. o [2004/07/13] kern/68991 le [vinum] vinum doesn't care which type a p o [2004/07/13] bin/69010 [patch] Portability fixes for FreeBSD bui o [2004/07/13] threads/69020threads pthreads library leaks _gc_mutex o [2004/07/14] kern/69064 [patch] No multiple ip4/6's could assigne o [2004/07/15] bin/69083 [patch] basic modelines for contrib/nvi o [2004/07/17] bin/69164 marcel GDB/amd64: coredump while debugging a cor o [2004/07/17] ports/69191 roam SRV patch for dnbs/djbdns o [2004/07/18] i386/69257 i386 [patch] in_cksum_hdr is non-functional wi o [2004/07/19] bin/69268 wpaul Fix ndiscvt to warn you if it's going to a [2004/07/19] kern/69283 sound [sound] Via 8233 driver records at half s o [2004/07/19] ports/69288 mharo [PATCH] security/sudo: Fix deinstall o [2004/07/19] ports/69309 ale mysql database backup script for periodic o [2004/07/20] kern/69356 LOR in rtsock.c/route.c o [2004/07/21] bin/69362 mbr amd (automounter) does not properly detec o [2004/07/21] docs/69383 doc disklabel = bsdlabel in 5.X or later o [2004/07/22] bin/69398 [patch] cleartext display of password in o [2004/07/22] kern/69448 socket.h: cmsghdr macros don't work with f [2004/07/23] ports/69475 vs xemacs invalidly calls xargs (witj unexis o [2004/07/23] kern/69502 kldload will load modules that are in the f [2004/07/24] ports/69537 daichi Portupgrade cannot be run by cron properl o [2004/07/27] kern/69650 [patch] make getserv* functions work with o [2004/07/28] amd64/69705 amd64 IPC problem (msq_queues) o [2004/07/28] amd64/69709 amd64 ACPI enabled then floppy don't work (5.2. o [2004/07/28] i386/69722 i386 wi0: init failed o [2004/07/29] i386/69730 i386 [patch] puc driver doesn't support PC-Com o [2004/07/29] i386/69750 acpi Boot without ACPI failed on ASUS L5 s [2004/07/30] www/69780 keramida query-pr-summary.cgi generates very large o [2004/07/30] kern/69825 [setgroups] 1st group supplied to setgrou o [2004/07/30] kern/69826 [setgroups] 16th group has no effect when o [2004/08/01] docs/69861 doc [patch] usr.bin/csplit/csplit.1 does not o [2004/08/01] bin/69875 `mlxcontrol status ' hangs wit o [2004/08/03] kern/69963 ipfw ipfw: install_state warning about already o [2004/08/03] ports/69965 portmgr check for moved ports in "make deinstall- o [2004/08/04] bin/69986 [patch] sysinstall: No job control in fix o [2004/08/04] kern/69989 killing process that uses snp + unloading o [2004/08/04] bin/70002 qa [sysinstall] fails to locate FTP dirs if o [2004/08/05] docs/70048 magic(5) file has a typo at second test f o [2004/08/08] bin/70182 [patch] fortune -e implementation bug o [2004/08/09] docs/70217 doc Suggested rewrite of docproj/sgml.sgml o [2004/08/10] bin/70245 re Change to src/release/Makefile to aid doc o [2004/08/10] conf/70252 add System Administrator Appreciation Day o [2004/08/10] bin/70283 mtm adduser aborts in batch mode with comment o [2004/08/11] java/70292 java jdk14 compile problem o [2004/08/11] bin/70297 request to make amd timeouts per-mount lo a [2004/08/11] ports/70300 sergei devel/porttools does not use EMAIL from ~ o [2004/08/12] bin/70335 inconsistent syslog behavior when max chi o [2004/08/12] bin/70336 telnetd always exits with value 1 o [2004/08/12] bin/70355 [patch] dhclient-script is chatty with RE f [2004/08/12] kern/70362 sanpei QUIRK: [patch] LaCie 160GB USB drive f [2004/08/12] ports/70365 daichi sysutils/portupgrade incorrectly give inf o [2004/08/13] ports/70400 jedgar databases/p5-Mysql is incompatible with d o [2004/08/13] kern/70401 darrenr [modules] Could not load ipl.ko when no I o [2004/08/15] bin/70476 sbin/reboot change, -p behavior default f o [2004/08/15] amd64/70500 amd64 bge driver for 3Com 3C996B on amd64 preve o [2004/08/16] bin/70511 When fread()ing with buffering turned off o [2004/08/16] usb/70523 usb [usb] [patch] umct sending/receiving wron o [2004/08/16] bin/70528 No libffi on amd64, either with native co o [2004/08/16] bin/70536 reboot -dp tries to dump when powering of o [2004/08/16] docs/70555 doc [patch] changes to freebsd-glossary o [2004/08/17] docs/70583 ceri [PATCH] Update freebsd-glossary o [2004/08/18] kern/70608 [irq] ethernet-error (card uses duplicate o [2004/08/18] i386/70610 i386 [patch] spkr(4): hardcoded assumption HZ o [2004/08/19] docs/70652 hmp New man page: portindex(5) f [2004/08/19] kern/70673 harti gensnmptree is called from base and not / o [2004/08/20] docs/70697 pcm(4) is out of date o [2004/08/20] kern/70708 [nfs] gcore/procfs not finding /proc/pid/ o [2004/08/20] conf/70715 Lack of year in dates in auth.log can cau o [2004/08/21] bin/70756 [PATCH] indent mishandles code that is pr o [2004/08/21] bin/70795 [PATCH] misc nanobsd fixes and improvemen o [2004/08/21] kern/70798 Compatibility: Sun/Solaris has an fcntl() o [2004/08/22] i386/70810 i386 [patch] Enable SMBus device on Asus P4B s o [2004/08/22] standards/70813standards [PATCH] ls not Posix compliant o [2004/08/22] ports/70831 tobez make perl5.8 port SU_CMD aware o [2004/08/22] i386/70832 i386 Serious problems with RealTek NIC using r f [2004/08/22] kern/70835 sanpei QUIRK: [patch] scsi_da does not recognize s [2004/08/23] kern/70852 sound [sound] via82xx PCM driver does not enabl o [2004/08/23] kern/70880 peter [nfs] 5.3 beta1 nfs problem o [2004/08/24] ports/70900 edwin [patch] devel/sdl12 inconsistency between o [2004/08/24] kern/70904 darrenr ipfilter ipnat problem with h323 proxy su o [2004/08/24] docs/70916 roam msync.2 manpage update o [2004/08/25] i386/70926 i386 [boot] 5.3Beta-1 bootstrap error: "atapci o [2004/08/25] usb/70942 usb [usb] Genius Wireless USB mouse: moused d o [2004/08/26] docs/70985 standards [patch] sh(1): incomplete documentation o o [2004/08/27] kern/71045 [dhcp] DHCP-Request is sets other device' o [2004/08/29] bin/71098 CVS keywords are not expanded with CVS 1. p [2004/08/30] kern/71142 delphij [patch] add vesa [1024x768] mode support o [2004/08/31] kern/71184 andre tcp-sessions hangs on FIN_WAIT_2 state o [2004/08/31] gnu/71210 Update to GNU sdiff: add user-preference o [2004/09/01] kern/71219 /proc/*/map dont tell file offset o [2004/09/01] conf/71254 ncurses: xterm vs. cons* termtypes or sc( o [2004/09/01] kern/71258 [patch] anonymous mmappings not always pa o [2004/09/02] kern/71280 aue0 device (linksys usb100tx) doesn't wo p [2004/09/02] kern/71317 sanpei [sound] [patch] Add nForce2 sound support o [2004/09/03] kern/71334 [ PATCH ] mem_range_attr_{set|get} are no o [2004/09/04] kern/71366 ipfw "ipfw fwd" sometimes rewrites destination o [2004/09/05] conf/71386 loader.conf: hint.apic.0.disabled="YES" d o [2004/09/06] usb/71416 usb [usb] Cryptoflex e-gate USB token (ugen0) o [2004/09/06] usb/71417 usb [usb] Cryptoflex e-gate USB token (ugen0) o [2004/09/06] kern/71422 rwatson LOR in sys/net/bpf o [2004/09/07] kern/71450 [if_de] MAC address change on 21040 "Tuli o [2004/09/07] usb/71455 usb [usb] Slow USB umass performance of 5.3 o [2004/09/07] kern/71469 default route to internet magically disap o [2004/09/07] kern/71474 route lookup does not skip interfaces mar p [2004/09/08] conf/71488 brooks [patch] create spooldirs for lpd (in a di f [2004/09/08] ports/71489 ports-bugs [PATCH] www/slash: initial support for mo o [2004/09/08] ports/71498 tobez update port: databases/p5-GDBM: update an o [2004/09/09] ports/71512 james vncserver problems on amd64 and x.org o [2004/09/09] bin/71513 [PATCH] allow -user/group +/-id construct o [2004/09/09] kern/71532 Multiple SCSI-Busses are seen differently f [2004/09/09] ports/71535 mich port sysutils/xbatt modification o [2004/09/09] ports/71536 silby emulators/rtc: kernel msg "rtc: [number] p [2004/09/09] ports/71544 arved devel/tvision might need these extra patc o [2004/09/10] conf/71549 /etc/termcap missing passthrough printing s [2004/09/10] ports/71550 thierry New port: devel/plan9port port of Plan9 s o [2004/09/10] docs/71555 doc how to run matlab on 5.2 o [2004/09/11] i386/71586 i386 FreeBSD 5.3-BETA3 #3 hang during boot on o [2004/09/11] kern/71605 usb [usb] [patch] umass doesn't recognize mul o [2004/09/11] kern/71608 XIRCOM REM56-100 Ethernet 10/100 can't co o [2004/09/12] bin/71613 [PATCH] cleanup of the usr.sbin/tracerout o [2004/09/12] bin/71616 [PATCH] cleanup of the usr.sbin/yp_mkdb c o [2004/09/12] bin/71617 [PATCH] cleanup of the usr.sbin/ypserv co o [2004/09/12] bin/71618 [PATCH] cleanup of the usr.sbin/timed cod o [2004/09/12] bin/71619 [PATCH] cleanup of the usr.sbin/tcpdump c o [2004/09/12] bin/71620 [PATCH] cleanup of the usr.sbin/sysinstal o [2004/09/12] bin/71621 [PATCH] cleanup of the usr.sbin/sliplogin o [2004/09/12] bin/71622 [PATCH] cleanup of the usr.sbin/sicontrol o [2004/09/12] bin/71623 [PATCH] cleanup of the usr.sbin/pcvt code o [2004/09/12] bin/71624 [PATCH] cleanup of the usr.sbin/rtadvd co o [2004/09/12] bin/71625 [PATCH] cleanup of the usr.sbin/rpc.ypupd o [2004/09/12] bin/71626 [PATCH] cleanup of the usr.sbin/rpc.statd o [2004/09/12] bin/71628 [PATCH] cleanup of the usr.sbin/rpcbind c o [2004/09/12] bin/71629 [PATCH] cleanup of the usr.sbin/pppstats o [2004/09/12] bin/71630 [PATCH] cleanup of the usr.sbin/pppd code o [2004/09/12] bin/71631 [PATCH] cleanup of the usr.sbin/pppctl co o [2004/09/12] bin/71632 [PATCH] cleanup of the usr.sbin/ndp code o [2004/09/12] bin/71633 [PATCH] cleanup of the usr.sbin/mrouted c o [2004/09/12] bin/71653 [PATCH] usr.sbin/asf may use uninialised o [2004/09/12] bin/71659 [PATCH] cleanup of the usr.sbin/mount_por o [2004/09/12] bin/71660 [PATCH] cleanup of the usr.sbin/kgmon cod o [2004/09/12] bin/71661 [PATCH] cleanup of the usr.sbin/keyserv c o [2004/09/12] bin/71663 [PATCH] cleanup of the usr.sbin/i4b code o [2004/09/12] bin/71664 [PATCH] cleanup of the usr.sbin/fwcontrol o [2004/09/12] bin/71665 [PATCH] cleanup of the usr.sbin/dconschat a [2004/09/12] bin/71666 delphij [PATCH] cleanup of the usr.sbin/btxld cod o [2004/09/12] bin/71667 [PATCH] cleanup of the usr.sbin/bootparam o [2004/09/12] bin/71669 [PATCH] cleanup of the usr.sbin/atm code o [2004/09/12] bin/71671 [PATCH] cleanup of the usr.sbin/apmd code o [2004/09/12] kern/71683 [nis] NIS/NFS problem [4.8] o [2004/09/13] docs/71690 [patch] inaccurate information in systat( s [2004/09/13] ports/71693 thierry [NEW PORT] x11-clocks/9clock: This is a s o [2004/09/13] kern/71708 [PATCH] MAKEDEV create n+1 bpf devices o [2004/09/13] kern/71711 [PATCH] generate a single bpf timestamp f p [2004/09/14] kern/71726 sanpei [sound] [patch] nForce3 250(CK8S) audio s o [2004/09/15] bin/71748 [patch] make vidcontrol accept mode names o [2004/09/15] bin/71749 [PATCH] truss -f causes circular wait whe f [2004/09/15] conf/71757 brooks no /etc/rc.d/diskless script in FreeBSD 5 o [2004/09/15] conf/71767 [patch] French translations for keyboards s [2004/09/15] bin/71773 des [patch] genericize.pl -c misses some comm o [2004/09/15] kern/71774 [ntfs] NTFS cannot "see" files on a WinXP o [2004/09/16] docs/71782 doc mount_nfs man page is a bit out of date o [2004/09/16] bin/71801 [patch] Add ncurses utility programs: inf o [2004/09/17] kern/71809 wifi hostap mode speed problem [6-CURRENT o [2004/09/17] kern/71813 I get a geometry error on my wd 200gb hd f [2004/09/17] kern/71818 sanpei QUIRK: support for DMR1000 USP flash pen/ o [2004/09/17] kern/71833 multiple process disc access / injustice s [2004/09/18] bin/71855 [patch] making kdump WARNS=6 clean o [2004/09/20] i386/71924 i386 timeouts with ata+hpt366 controller on BE o [2004/09/20] bin/71928 Disk quota doesn't work with numeric logi o [2004/09/20] conf/71952 missing past participles in /usr/share/di f [2004/09/21] ports/71953 thierry New port: x11-themes/kde-splash-freebsd: o [2004/09/21] kern/71965 andre TCP MSS issue in combination with ipfw fw o [2004/09/21] threads/71966threads Mlnet Core Dumped : Fatal error '_pq_inse f [2004/09/21] docs/71980 doc Handbook says that no other software is k o [2004/09/22] conf/71994 [patch] Login shell may unnecessarily pri o [2004/09/22] ports/71997 ports-bugs New port:math/webwork used to create prob o [2004/09/22] standards/72006standards floating point formating in non-C locales f [2004/09/22] ports/72016 joe Setiathome doesn't run on my second proce o [2004/09/24] ports/72067 obrien [PATCH] editors/vim: i18n and extra suppo o [2004/09/25] conf/72076 [patch] German locales use old %d.%m.%y d o [2004/09/27] bin/72124 [patch] rm -P can't unlink u-w files o [2004/09/27] conf/72135 [patch] ipsec belongs to /etc/rc.d/NETWOR o [2004/09/29] ports/72170 ports-bugs [PATCH] www/mozilla-bonobo - build also w o [2004/09/29] bin/72173 csplit(1) ver 1.9 wrong behaviour with ne o [2004/09/29] i386/72179 i386 [patch] Inconsistent apm(8) output regard f [2004/09/30] bin/72193 pjd sysinstall crash with geom_raid3.ko o [2004/09/30] kern/72194 stack backtrace after wakeup from sleepin s [2004/09/30] ports/72202 simon portaudit warns about the CVS server vuln o [2004/09/30] kern/72217 [patch] Bug in calculation of the paramet o [2004/09/30] kern/72218 sound [sound] audio recording broken with emu10 o [2004/09/30] conf/72219 Sysinstall doesn't enable 3rd party MTA i o [2004/10/01] kern/72221 sound [sound] emu10k1 stereo channels are rever a [2004/10/01] kern/72224 anholt umass devices broken by DRM (AGP issue?) o [2004/10/01] bin/72232 qa [sysinstall] Installer installs gui-enabl p [2004/10/01] kern/72238 rwatson [patch] mac_seeotheruids restricts root o [2004/10/02] kern/72263 gifconfig output corruption o [2004/10/03] conf/72277 [patch] update for /usr/share/skel f [2004/10/03] kern/72286 mlaier altq queueing in combination with bfe(4) o [2004/10/04] kern/72293 de(4) NIC performance degradation with de o [2004/10/04] kern/72296 bfe0: discard oversize frame (ether type f [2004/10/04] ports/72336 sergei add RCng to mail/maildrop o [2004/10/04] kern/72338 calcru: runtime wen backwards from ... o [2004/10/04] ports/72339 marius security/ssh2 port startup script needs t p [2004/10/05] i386/72340 des [PATCH] add Pentium M, P3 M, P4 M support o [2004/10/05] usb/72344 usb [patch] [usb] QUIRK: Dane-Elec zMate 512 o [2004/10/05] kern/72352 [PATCH] Support for VScom PCI-100L is mis o [2004/10/05] bin/72355 Can't run "strings" on a (disk) device, e o [2004/10/05] bin/72357 [patch] WARNS?=5 cleanup for src/tools/to o [2004/10/06] i386/72380 usb [usb] USB does not work [dual Celeron Abi o [2004/10/06] bin/72381 [patch] ifconfig lladdr does not set inte o [2004/10/06] docs/72383 doc manpage for awk(1) is terribly small and o [2004/10/06] ports/72398 jmz emulators/mtools man pages are too funky o [2004/10/07] ports/72417 sobomax [patch] enable options for net/ser f [2004/10/07] ports/72421 thierry new port: py-Levenshtein o [2004/10/07] kern/72433 [patch] AMR raid, amrreg.h struct amr_enq o [2004/10/08] kern/72440 [patch] Not increment ifp->if_snd.ifq_dro o [2004/10/09] conf/72465 [patch] United States International keybo o [2004/10/09] kern/72468 OS does not know how to handle broadcast. f [2004/10/10] bin/72485 krion pkg_add -r unnecessarily downloads packag o [2004/10/11] kern/72498 Libc timestamp code on jailed SMP machine o [2004/10/11] bin/72501 cperciva script(1) loops after EOF is read p [2004/10/11] conf/72505 brian [patch] Fix rc.d/ppp-user to make use of o [2004/10/11] bin/72517 Minor Bug in /etc/login.access o [2004/10/12] ports/72550 ports-bugs [NEW PORT] mail/itraxp: Advanced perl sup o [2004/10/12] kern/72560 jeff [patch] small cleanup of SCHED_ULE o [2004/10/12] kern/72585 [patch] [syscons] iso05-8x16.fnt lacks le o [2004/10/12] bin/72588 [patch] iostat tty stats field concatenat a [2004/10/13] kern/72639 5.3-BETA7 kernel config option ALT_BREAK_ o [2004/10/13] kern/72659 jeff [patch] little bug in sched_ule interract o [2004/10/14] bin/72674 [patch] make /usr/bin/whois use SK-NIC's o [2004/10/15] kern/72728 brooks [patch] keyboard debug and reboot qualifi o [2004/10/15] usb/72732 usb [patch] Kyocera 7135 quirk. o [2004/10/15] usb/72733 usb Kyocera 7135 Palm OS connection problem. o [2004/10/15] misc/72741 qa ssh broken on fixit cd (missing /dev/rand o [2004/10/16] ports/72758 ports-bugs New port: latex-schedule o [2004/10/17] bin/72787 gtar in base system doesn't seem to honor o [2004/10/17] kern/72793 [patch] wicontrol prints out non-printabl a [2004/10/18] bin/72814 bms [patch] libpcap opens bpf as O_RDONLY - d o [2004/10/19] ports/72865 emulation emulators/vmware3 crashes on 5.3-STABLE o [2004/10/19] bin/72875 des Some utilities used in debugging do not f o [2004/10/19] bin/72881 yppush pushes map to local server o [2004/10/19] kern/72887 sound [sound] emu10k1: sound lag o [2004/10/20] conf/72901 [PATCH]: Prevent printing when doing an s o [2004/10/20] conf/72910 gshapiro [patch] /etc/rc.d/sendmail does not corre o [2004/10/20] kern/72920 emulation linux emulation : path "prefixing" is not o [2004/10/20] kern/72933 [patch] promisc mode on vlan interface do s [2004/10/21] ports/72956 ports-bugs x11/dgs incorrectly marked as IGNORE a [2004/10/21] conf/72978 [patch] add danish syscons keymap with ac o [2004/10/22] kern/72987 ipfw/dummynet pipe/queue 'queue [BYTES]KB o [2004/10/22] kern/72995 sound [sound] Intel ICH2 (82801BA) - sound near o [2004/10/22] kern/72997 [if_sk] Network performance down [6-CURRE o [2004/10/22] sparc64/72998sparc64 [patch] set_mcontext() change syscalls pa o [2004/10/22] ports/73009 x11 5.3-RC1 ports refer to XF86Config - shoul o [2004/10/23] kern/73034 libalias does not handle lowercase port/e o [2004/10/23] kern/73051 tun0: Warning: ff02:5::/32: Change route o [2004/10/23] usb/73056 usb [usb] Sun Microsystems Type 6 USB mouse n o [2004/10/24] ports/73061 clsung Update port: devel/p5-Glib2 (enable threa o [2004/10/25] kern/73098 sound [sound] Scan rate of sound card shifts wh p [2004/10/25] bin/73110 rwatson [patch] ffsinfo conversion from atol() to p [2004/10/25] bin/73112 rwatson [patch] change atol() to strtol() in bads o [2004/10/26] kern/73145 severe network slowdown with DEC 21140 ne o [2004/10/26] ports/73152 ports-bugs [NEW PORT] graphics/chartdirector: Charti o [2004/10/26] kern/73165 emulation [patch] getting rid of COMPAT_43 dependan o [2004/10/27] kern/73195 bad PATH, missing HOME and TERM env var o o [2004/10/29] kern/73276 ipfw ipfw2 vulnerability (parser error) o [2004/10/29] ports/73285 billf net-mgmt/flow-tools port improvements o [2004/10/29] kern/73294 [hang] hangs in default mode when AcceleP o [2004/10/30] i386/73308 i386 unable to install on AMD 2500+,NF2,GF MX4 o [2004/10/30] bin/73327 [PATCH] iostat - extended mode display o [2004/10/30] kern/73328 top shows NICE as -111 on processes start o [2004/10/31] bin/73337 nsswitch: potential invalid free o [2004/11/01] kern/73375 [panic] vinvalbuf: dirty bufs during umas o [2004/11/01] kern/73388 brooks [usb] usb-keyboard stops working o [2004/11/02] bin/73411 [patch] FTPD could set attributes to 0600 o [2004/11/03] ports/73448 nectar [PATCH] nss_ldap - getpwnam does not retu o [2004/11/03] ports/73487 ports-bugs [New Port] devel/p5-Bundle-Perl6, A bundl o [2004/11/03] kern/73492 [feature request] Reliable Temporary File o [2004/11/03] kern/73496 [feature request] A more flexible version o [2004/11/04] kern/73514 mount_ntfs: can't access to a large file o [2004/11/04] kern/73517 pfil_hooks (ipfw,pf etc) and ipsec proces o [2004/11/05] www/73549 www Mail list archive navigation difficulty o [2004/11/05] www/73551 www List archive 'quoted-printable' corruptio o [2004/11/05] usb/73553 brooks [usb] Microsoft USB Internet Keyboard not o [2004/11/06] docs/73583 doc [patch] add missing instructions to ndis( o [2004/11/06] ports/73609 ports-bugs New port: x11-toolkits/wxhaskell o [2004/11/07] docs/73638 doc ipfw(8): Clarify syntax for use of tables o [2004/11/07] kern/73646 I/O performance: with/without MEMIO optio o [2004/11/07] conf/73653 Proposal of changes to the GENERIC kernel o [2004/11/08] kern/73663 emulation [ibcs2] module_register_init: MOD_LOAD (i o [2004/11/08] kern/73675 atapicam causes interrupt storm o [2004/11/08] conf/73677 [patch] add support for powernow states t o [2004/11/08] docs/73679 doc FreeBSD 5.3 Release notes mention new nat o [2004/11/08] kern/73686 [panic] problems mounting a pen drive for o [2004/11/09] i386/73742 i386 5.3 rel i386 disk2 image not copying s [2004/11/09] ports/73743 x11 XOrg/XFree xauth add/startx problem o [2004/11/10] kern/73757 le [vinum] vinum fails to load from rc.conf o [2004/11/10] kern/73777 emulation [patch] linux emulation: root dir special o [2004/11/10] conf/73786 added WARNING in spanish to stable-supfil o [2004/11/11] conf/73799 Move the last stuff out of usbd.conf o [2004/11/11] i386/73822 acpi [request] add thermal support to ACPI o [2004/11/11] kern/73823 acpi acpi / power-on by timer support o [2004/11/11] conf/73834 Bad dependencies for /etc/rc.d/savecore f [2004/11/12] misc/73847 error in CD volume label - 5.3 cd 1 o [2004/11/12] kern/73865 [patch] NOINET6=yes in /etc/make.conf ign o [2004/11/12] bin/73884 Add NetBSD's rawrite32 to install tools o [2004/11/13] conf/73909 [patch] rc.d/sshd does not work with port o [2004/11/14] i386/73921 i386 [patch] [sysctl] sysctlbyname for machdep o [2004/11/14] conf/73929 [patch] /etc/rc.d/named will not work wit o [2004/11/15] kern/73961 floppy disk drive performance problem [ne o [2004/11/15] kern/73978 emulation [ibsc2] an error message appears during l o [2004/11/16] bin/73988 isdn ISDN - first dial attempt fails o [2004/11/16] conf/73992 periodic security not showing daily firew o [2004/11/16] conf/74004 [PATCH] add fam support to inetd.conf o [2004/11/16] conf/74005 [PATCH] aditional support for /etc/rc.ini o [2004/11/16] conf/74006 dougb [PATCH] /etc/rc.d/named minor fixes o [2004/11/17] kern/74030 acpi Unplugging AC causes battery % to stay lo o [2004/11/17] kern/74037 ppc(4) cannot find parallel port. o [2004/11/18] bin/74062 ifconfig(8) does not display tunnel endpo o [2004/11/18] kern/74066 acd driver fault: READ_BIG timeout o [2004/11/18] ports/74086 ports-bugs New port:chinese/chmsee A viewer for Micr o [2004/11/18] kern/74091 [patch] PCMCIA: MELCO Manufacturer code s o [2004/11/20] bin/74140 [ntpdate] ntpdate does not try all IPs fo o [2004/11/20] i386/74153 i386 FreeBSD 5.3 cannot boot ftom pst o [2004/11/20] kern/74159 [patch] fix warnings concerned with heade o [2004/11/20] bin/74178 [patch] grdc(6) - scrolling does not work o [2004/11/21] threads/74180threads KSE problem. Applications those riched ma o [2004/11/21] i386/74191 i386 Notebook PC2001 Compliant AC97 audio work o [2004/11/21] usb/74211 usb USB flash drive causes CAM status 0x4 on o [2004/11/21] conf/74213 [PATCH] Connect src/etc/periodic/security o [2004/11/21] kern/74215 acpi [request] add ACPI headers to /usr/includ o [2004/11/21] i386/74216 i386 system halts o [2004/11/21] i386/74218 i386 boot floppy (2nd time) read error o [2004/11/22] conf/74228 periodic 470.status-named doesn't work wi o [2004/11/23] kern/74281 Digiboard PCI Xem (64-ports) detection/in o [2004/11/24] kern/74314 DNS resolver broken under certain jail co o [2004/11/24] i386/74327 i386 [patch] [pmap] mlock() causes physical me f [2004/11/24] ports/74344 java [proposal] tomcat41ctl: support for passi o [2004/11/25] kern/74352 PXEBoot problems using md as root device o [2004/11/25] usb/74358 usb [umass] unplugging at boot time an umass o [2004/11/25] bin/74360 [patch] ndiscvt(8) generate a driver whic a [2004/11/25] bin/74387 linprocfs can be mounted on top of itself o [2004/11/26] misc/74396 [patch] "make release" fails if the cdrto o [2004/11/26] bin/74404 sh does not handle signals to subshells p o [2004/11/26] bin/74406 qa [sysinstall] sysinstall accepts but disca o [2004/11/26] ports/74416 fenner update for rtpmon f [2004/11/27] ports/74442 ports-bugs Upgrade multimedia/dvdrip to the latest r o [2004/11/27] bin/74450 [patch] enable libalias/natd to create sk o [2004/11/27] usb/74453 usb Q-lity CD-RW USB ECW-043 (ScanLogic SL11R o [2004/11/27] i386/74454 i386 [PATCH] [bsd.cpu.mk] Adding VIA Eden fami o [2004/11/28] docs/74477 doc [patch] Correct several links in the cont o [2004/11/29] conf/74498 [patch] new CIS id for Intersil WiFi, pcc o [2004/11/29] bin/74500 [PATCH] allow chflags to set flags on sym o [2004/11/29] bin/74506 [patch] bad top command display o [2004/11/29] bin/74509 [PATCH] ifconfig allows setting 33-byte S o [2004/11/29] ports/74537 obrien editors/vim issue: report invalid size of o [2004/11/30] kern/74549 [patch] [modules] Allow third party KLDs o [2004/11/30] usb/74557 usb imation 500mb usb key can only be written o [2004/11/30] bin/74567 [patch] [2TB] du doesn't handle sizes >1T o [2004/12/01] misc/74577 [patch] decorating space in Beastie menu o [2004/12/01] bin/74593 qa [sysinstall] [patch] Installer installs t o [2004/12/02] amd64/74608 amd64 mpt hangs 5 minutes when booting o [2004/12/02] usb/74609 usb [patch] [usb] allowing cdma modems to wor o [2004/12/02] docs/74612 doc [patch] updates to the glossary o [2004/12/03] i386/74650 i386 System Reboot with umount command o [2004/12/03] gnu/74654 libsupc++.a lacks necessary functions o [2004/12/03] kern/74658 ATAPI CD not recognized after booting Fre o [2004/12/05] docs/74724 ceri handbook network-inetd webpage o [2004/12/05] ports/74740 danfe Update port: x11-wm/wampager - Update to o [2004/12/05] bin/74743 [patch] wctype.c declares static array on o [2004/12/06] ports/74752 simon make takes a little while before anything o [2004/12/06] kern/74777 [request] Bootup "beep" in 5.3 should be o [2004/12/06] kern/74786 Smartlink Modem causes interrupt storm on o [2004/12/07] i386/74803 i386 regression: lost 3Com509B in 5.X o [2004/12/07] amd64/74811 amd64 df, nfs mount, negative Avail -> 32/64-bi o [2004/12/07] conf/74817 [patch] Fixed automatic configuration of o [2004/12/07] kern/74827 Problem writing data to floppies [5.3-spe o [2004/12/08] i386/74829 i386 [patch] FreeBSD 5.3-RELEASE hangs during o [2004/12/08] kern/74849 [patch] Samsung SPH-i500 does not attach o [2004/12/08] kern/74868 [acpi] ACPI enabled in 5.3 Release make K o [2004/12/09] usb/74880 usb [patch] [usb] Samsung N400 cellphone/acm s [2004/12/09] ports/74882 hq [New port] java/httpunit: web test framew o [2004/12/09] docs/74889 wosch S_ISREG etc marcos missing from stat man f [2004/12/09] kern/74893 sound [patch] [sound] Channels of USB audio can o [2004/12/09] ports/74907 apache [PATCH] www/mod_perl: cleanups o [2004/12/10] ports/74913 pat I can't see anything in X11 applications o [2004/12/10] ports/74919 ale [PATCH] lang/php4: Add hardened-php.org p o [2004/12/10] kern/74920 [panic] 3Com 3C509-Combo Etherlink III pa o [2004/12/12] i386/74966 i386 Realtek driver seems to misinterpret some o [2004/12/12] kern/74971 le [vinum] vinum creates (shows) incorrect v o [2004/12/12] kern/74977 firewire [modules] dcons.ko requires KDB support o [2004/12/12] kern/74986 tackerman sysctlize a parameter of if_em's interrup o [2004/12/12] usb/74989 usb (regression) Lost USB support between 5.2 f [2004/12/12] ports/74993 danfe graphics/svgalib: SVGALIB-1.4.3_4 segfaul o [2004/12/13] kern/75008 [patch] [psm] ALPS GlidePoint not recogni o [2004/12/13] ports/75015 amd64 cvsup on amd64 with runsocks (socks5) cor o [2004/12/14] bin/75053 krion pkg_delete is stupid o [2004/12/14] docs/75068 doc login.conf(5) manual page says nothing ab o [2004/12/15] i386/75090 i386 READ_BIG errors with Sony CRX1611 o [2004/12/15] kern/75121 Wrong behaviour of IFF_LINK2 bit in 6in6 o [2004/12/15] ports/75130 danfe [NEW PORT] www/mono-xsp: A light-weight w o [2004/12/15] kern/75132 jhb [Patch] add support for the Davicom 56PDV o [2004/12/15] conf/75137 jhb add snd_* modules support to /etc/rc.d/mi o [2004/12/16] ports/75143 java There is no way to specify jvm parameters o [2004/12/17] bin/75175 jot duplicates numbers in simple invocati o [2004/12/17] bin/75177 philip Bug selecting psm operation level in mous o [2004/12/17] i386/75185 ACPI doesn't power off Tyan S2460 o [2004/12/18] kern/75211 le Vinum writes several errors to stdout. s [2004/12/19] i386/75251 anholt Beginnings of an ATI AGP driver. o [2004/12/19] kern/75254 [patch] [if_wi] PRISM3-based adapter ZCOM p [2004/12/19] kern/75277 rwatson netstat -m 'mbufs in use' output appears o [2004/12/20] kern/75298 [PATCH] add missing device id for pccard o [2004/12/20] ports/75301 portmgr new USE_LINUX_X11 macro o [2004/12/20] kern/75312 [if_rl] RealTek RTL8281BL not detected o [2004/12/20] kern/75316 sound [patch] [sound] Enable to select a record o [2004/12/21] bin/75362 contrib/smbfs mount_smbfs No buffer space f [2004/12/21] ports/75369 ports-bugs new port net/p5-Perlbal o [2004/12/22] bin/75378 [/bin/login] login/wtmp/utmp not updating o [2004/12/22] kern/75380 [nfs] can not open("..") from top-level d o [2004/12/22] i386/75387 i386 Future support of Promise SATAII150 TX4 w o [2004/12/23] i386/75420 i386 CMD 648 PCI not work o [2004/12/24] ports/75464 portmgr bsd.port.mk install default configuration o [2004/12/25] bin/75479 qa [sysinstall] sysinstall time servers list o [2004/12/26] conf/75502 [patch] Fix LC_NUMERIC and LC_MONETARY fo o [2004/12/27] docs/75544 trhodes typos in man3 manual pages, acl.3, assert o [2004/12/27] docs/75545 trhodes typos in man3 manual pages, form_field_op a [2004/12/28] ports/75569 dougb pine4 dependant upon ispell (should be op o [2004/12/28] bin/75570 chflags nosappnd directory doesn't work o [2004/12/28] docs/75577 doc typos in man3 manual pages, login_class.3 o [2004/12/28] usb/75578 usb [patch] QUIRK: PNY USB flash key o [2004/12/28] kern/75582 [patch] [if_dc] Add support for Linksys P o [2004/12/28] i386/75583 i386 Installation fails o [2004/12/28] bin/75585 [unionfs] mount -p on unionfs results in o [2004/12/29] i386/75589 i386 O2Micro pccard1 slot not functioning whil o [2004/12/29] bin/75632 le gvinum commands not consistent with vinum o [2004/12/30] ports/75643 danfe New Port: x11/PyPanel (A lightweight tran o [2004/12/30] gnu/75662 less -f behavior contradicts man page o [2005/01/01] misc/75702 dwmalone -O5 flag breaks some compiles in /usr/src o [2005/01/01] kern/75710 [if_cue] cue0 device configuration causes o [2005/01/03] bin/75742 [patch] pkg_add does not honour prefix fo o [2005/01/03] kern/75764 [patch?] "umass0: Phase Error" - no devic o [2005/01/03] bin/75766 [patch] nfsd loops with TCP + multiple -h o [2005/01/03] bin/75767 WANTED: "fdclose" function in libc o [2005/01/04] i386/75776 i386 NO ps/2 keyboard using USB keyboard under o [2005/01/04] usb/75800 usb ucom1: init failed STALLED error in time o [2005/01/05] www/75830 www ports.cgi used ports/INDEX from CVS o [2005/01/05] bin/75842 /sbin/mount: valid, but double, fstab mou o [2005/01/05] bin/75855 getpwent functions on 5.3 with large pass o [2005/01/05] docs/75864 doc FreeBSD 5.3 kern-developer install does n o [2005/01/05] docs/75865 doc comments on "backup-basics" in handbook o [2005/01/06] kern/75873 Usability problem with non-RFC-compliant o [2005/01/06] i386/75881 ACPI suspend/resume doesn't work on ASUS o [2005/01/06] ports/75883 demon mrtg + ucd-snmp give wrong results o [2005/01/06] bin/75884 m4(1): syscmd's output is out of sync wit o [2005/01/06] kern/75894 sound [sound] AD1981 not probing (shuttle ST62K o [2005/01/06] i386/75898 i386 Exception and reboot: Loader and kernel u f [2005/01/07] ports/75916 thierry New port: net/decv o [2005/01/07] usb/75928 usb Cytronix SmartMedia card (SMC) reader has o [2005/01/08] bin/75934 [PATCH] missing blowfish functionality in f [2005/01/08] ports/75939 nork sysutils/smartmontools: smartd can not fo o [2005/01/08] kern/75969 sound [patch] [sound] Support for Sigmatel STAC o [2005/01/08] kern/75970 [patch] support for Sandisk Cruzer Micro o [2005/01/09] docs/75995 hcreate documentation(?) bug o [2005/01/09] kern/76002 [Patch] for PixelView PlayTv Pro Rev f [2005/01/10] ports/76021 daichi portupgrade: package delete can remove ne o [2005/01/10] sparc64/76052marius Incorrect panic strings in sparc64 files o [2005/01/10] gnu/76069 FreeBSD's definition of offsetof isn't go o [2005/01/10] ports/76073 mharo ftp/proftpd: make install does not create o [2005/01/11] kern/76081 [patch] [if_rl] Add support for CardBUS N o [2005/01/11] bin/76089 The "-n" option in /usr/bin/w is broken o [2005/01/11] docs/76094 doc Incorrect statement about partition d p [2005/01/11] ports/76116 ports-bugs PORT UPDATE: graphics/lcms (with PATCH) o [2005/01/12] conf/76124 [patch] Mistake in /usr/share/misc/pci_ve o [2005/01/12] kern/76144 poll doesn't set POLLHUP when FIFO is clo o [2005/01/12] bin/76169 [PATCH] Add PAM support to cvs pserver o [2005/01/12] ports/76170 cy misc/screen -- Support for NONETHACK o [2005/01/12] amd64/76176 obrien misc/compat4x are mismarked unsupported o o [2005/01/12] kern/76178 Problem with ahd and large SCSI Raid syst o [2005/01/13] kern/76225 [patch] WITHOUT_MODULES option for sys/mo o [2005/01/13] conf/76226 Default local.9600 gettytab initially use f [2005/01/13] ports/76227 ports-bugs RLE support for graphics/fbm s [2005/01/14] ports/76247 grog net/arla port update o [2005/01/14] ports/76257 danfe nvidia_driver breaks xorg-clients build o [2005/01/15] conf/76298 fstab doesn't pass mntops properly o [2005/01/17] docs/76333 doc EOF indicator can be cleared by not only o [2005/01/17] ports/76358 vs xlockmore PAM support o [2005/01/17] bin/76362 sys directory link points to wrong locati o [2005/01/17] ports/76365 ports-bugs NEW PORT net/xdb_auth_cpile A user auth/c o [2005/01/17] ports/76379 ports-bugs New port:biology/p5-Bio-Das o [2005/01/18] bin/76401 sysinstall to set "host name" for dhclien o [2005/01/18] kern/76432 gnn [patch] [net/route.h] recursive locking i o [2005/01/19] usb/76461 usb disklabel of umass(4)-CAM(4)-da(4) not us o [2005/01/20] kern/76485 sched_getparam returns weird priority num s [2005/01/20] conf/76491 Addition into /etc/security few new funct o [2005/01/20] bin/76494 [patch] passwd(1) does not indicate a suc p [2005/01/20] bin/76497 tcpdump dumps core on ppp ipv6cp packets o [2005/01/20] conf/76509 [patch] New locale uk_UA.CP1251 support o [2005/01/20] threads/76513threads libpthread is not working o [2005/01/20] docs/76515 doc missleading use of make -j flag in handbo o [2005/01/21] kern/76520 [patch] Add new kernel-side libiconv conv o [2005/01/21] kern/76539 [patch] ipnat + dummynet on output on sam o [2005/01/21] kern/76551 re0: watchdog timeout o [2005/01/23] www/76586 re [patch] minor updates to en/releng/index. o [2005/01/23] i386/76587 i386 ps2 mouse weird... o [2005/01/23] bin/76590 adding -mapall in nfs exports requires re o [2005/01/23] kern/76611 isdn [patch] i4b itjc bad enums for PIB cycle o [2005/01/24] conf/76626 [patch] 460.status-mail-rejects shows des o [2005/01/25] kern/76678 rwatson [patch] Allow pam_krb5 to authenticate no o [2005/01/26] ports/76695 trevor RPM complaints on installation of linux_b o [2005/01/26] bin/76697 newsyslog keeps one more archive files th o [2005/01/26] kern/76710 [patch] [sys/dev/mii] rgephy does not dea o [2005/01/26] bin/76711 parse error in rm.c:check() while parsing o [2005/01/27] usb/76732 usb Mouse problems with USB KVM Switch o [2005/01/27] bin/76736 dwmalone syslogd pipelines losing messages s [2005/01/27] ports/76748 haskell New port: devel/hs-plugins. Loading Haske o [2005/01/27] bin/76752 /usr/bin/login o [2005/01/27] bin/76756 des function pw_equal in pw_util.c does not t o [2005/01/29] kern/76818 rwatson ACL modifications touch file's mtime o [2005/01/30] kern/76857 Samsung mouse misbehaviour o [2005/01/31] ports/76915 portmgr [patch] Handle port deinstall scripts whe o [2005/01/31] kern/76918 sound [sound] ATI AD1981 AC'97 Audio Controller o [2005/02/01] ports/76936 trevor print/acroread with native mozilla and li p [2005/02/01] threads/76938delphij include/unistd.h: ttyname_r prototype mis o [2005/02/01] kern/76950 ACPI wrongly blacklisted on Micron Client o [2005/02/01] kern/76966 udp/520 reply packets when routed is not o [2005/02/01] kern/76971 ipfw ipfw antispoof incorrectly blocks broadca o [2005/02/01] kern/76972 64-bit integer overflow computing user cp o [2005/02/02] ports/76986 ports-bugs New port: print/pmx a pre-processor of Mu o [2005/02/02] bin/77001 sysinstall binary upgrade clobbers /etc/l o [2005/02/02] ports/77010 skv [patch] conflict between p5-XML-SAX and p o [2005/02/02] bin/77031 [patch] comm(1) unable to handle lines gr o [2005/02/03] bin/77082 krion src/usr.sbin/pkg_install - Add 3 new macr o [2005/02/04] docs/77087 doc The bootvinum script given in the handboo o [2005/02/04] bin/77089 /sbin/natd: natd ignores -u with passive o [2005/02/04] kern/77091 Keyboard quits working under X with MAXCO o [2005/02/06] kern/77156 FreeBSD does not redirect packets on prop o [2005/02/07] conf/77197 [patch] calendar.judaic is out of date o [2005/02/07] bin/77212 krion src/usr.sbin/pkg_install - make directory o [2005/02/07] i386/77239 i386 3Com 3CXFEM656C does not seem to be suppo o [2005/02/08] ports/77246 portmgr update "make index" target to use "make f o [2005/02/08] kern/77253 emulation [linprocfs] meminfo in linprocfs returns o [2005/02/08] bin/77259 /bin/sh: shell command "command -v cmd" d o [2005/02/08] bin/77260 df behaviour has changed between 4.x and o [2005/02/08] bin/77261 login doesn't chdir into a group-protecte o [2005/02/08] kern/77273 darrenr ipfilter breaks ipv6 statefull filtering o [2005/02/10] kern/77341 problems with IPV6 impementation o [2005/02/10] kern/77353 [patch] grow SysV IPC kernel limits o [2005/02/10] kern/77355 [patch] Detect i*86 subarches for uname f [2005/02/10] ports/77359 thierry New port: graphics/gephex Software-based o [2005/02/10] kern/77365 [patch] amdpm driver has wrong PCI device o [2005/02/11] kern/77377 Slow downloading from FreeBSD server with p [2005/02/11] conf/77386 brooks let /etc/rc.d/var create spool dirs for l o [2005/02/13] ports/77444 clement devel/portmk ignores FETCH_BEFORE_ARGS= - o [2005/02/13] bin/77445 [ntpd] too many recvbufs(40) when ntpd st s [2005/02/13] ports/77453 ports-bugs [request] new port: print/ghostpcl o [2005/02/14] ports/77471 ports-bugs New port: Device driver for Voicetronix O o [2005/02/14] i386/77477 i386 AHA-1542CP SCSI failed to probe f [2005/02/14] ports/77495 niels new port: security/sav o [2005/02/15] kern/77537 Conditional breakpoints hang on SMP machi o [2005/02/15] kern/77541 [patch] [if_em] if_oerrors book keeping e o [2005/02/15] bin/77554 type mismatch in IPv6 firewall rule parse o [2005/02/16] ports/77584 ports-bugs New ports: games/sear, games/sear-media. o [2005/02/18] kern/77662 diskless hostname set via DHCP only if AC o [2005/02/18] conf/77663 Suggestion: add /etc/rc.d/addnetswap afte o [2005/02/21] ports/77820 portmgr bsd.port.mk 1.508 and PORTDOCS globbing b f [2005/02/21] misc/77821 linimon error at libkvm while doing make buildwor o [2005/02/21] kern/77826 [ext2fs] ext2fs usb filesystem will not m o [2005/02/21] bin/77835 [patch] libc file res_debug.c needs const o [2005/02/21] bin/77841 [patch] cast away const in getpublickey() o [2005/02/21] ports/77857 kwm [PATCH] net/gnomemeeting: correctly deter o [2005/02/21] ports/77876 portmgr Ensure uniqueness of (DOCS|EXAMPLES|DATA) f [2005/02/22] ports/77899 ports-bugs [Maintainer Update] graphics/bugle 0.0. o [2005/02/22] kern/77902 [nfs] NFS client should use VA_UTIMES_NUL o [2005/02/22] kern/77904 [nfs] NFS server should set VA_UTIMES_NUL o [2005/02/22] kern/77913 [PATCH] Add the APDL-325 WLAN pccard to w o [2005/02/22] bin/77918 ceri quota does not exit with a status != 0, i o [2005/02/22] conf/77929 [patch] periodic/security/550.ipfwlimit i o [2005/02/23] kern/77958 [smbfs] can't delete read-only files via o [2005/02/23] ports/77980 ports-bugs New Port: www/p5-POE-Component-Server-HTT o [2005/02/24] ports/78012 ports-bugs [NEW PORT] net/abills: Billing system fro o [2005/02/24] bin/78021 sem_open(3) doesn't mention fnctl.h inclu o [2005/02/24] docs/78041 doc docs for md need further explanation of t o [2005/02/25] kern/78057 ad0: FAILURE - READ_DMA status=51 error=4 o [2005/02/25] kern/78070 [patch] Potential null pointer dereferenc o [2005/02/25] kern/78072 [Patch] Potential memory leak in lge(4) o [2005/02/25] kern/78090 ipf filtering on bridged packets doesn't o [2005/02/26] kern/78114 phk [PATCH] Solaris/x86 label structures for o [2005/02/26] bin/78125 rees [patch] remove unused code from idmapd.c o [2005/02/26] bin/78131 geom gbde "destroy" not working. o [2005/02/27] docs/78138 doc Error in pre-installation section of inst o [2005/02/27] bin/78170 [patch] Fix signal handler in bootpd a [2005/02/28] docs/78174 markus Update for Bluetooth-related manpages o [2005/03/01] ports/78234 olgeni x11/eterm invalids compose character defi o [2005/03/01] ports/78235 ale lang/php4 segfaults with both xslt and Ze o [2005/03/01] docs/78240 doc Replace with around a # o [2005/03/02] docs/78275 doc Keyword size needs to be changed to lengt f [2005/03/02] ports/78293 edwin Proposition for the review of multimedia/ o [2005/03/02] bin/78304 Signal handler abuse in comsat(8) o [2005/03/03] ports/78337 ale Feature Request: cpdf for lang/php5-exten o [2005/03/03] kern/78342 jeff top -S shows potentially incorrect CPU us o [2005/03/03] usb/78371 usb Philips Wearable Audio Player (128) fails o [2005/03/04] kern/78388 vr network drivers cause watchdog timeout o [2005/03/04] conf/78419 /etc/termcap is a symbolic link o [2005/03/04] bin/78424 Internal IPs on router, natd/libalias bre o [2005/03/05] docs/78440 phantom POSIX semaphores don't work by default in o [2005/03/05] kern/78444 jeff [sched_ule] doesn't keep track of the sle o [2005/03/05] kern/78464 des Rename /proc/mtab to /proc/mounts f [2005/03/06] ports/78473 danfe New port: graphics/opencv (Open Source Co o [2005/03/06] kern/78474 [patch] swapped out procs not brought in o [2005/03/06] docs/78479 doc SO_NOSIGPIPE socket option undocumented o [2005/03/06] docs/78480 doc Networked printer setup unnecessarily com o [2005/03/06] ports/78490 portmgr Update port: Mk/bsd.port.mk add PORTEXAMP o [2005/03/07] docs/78520 doc error in man(5) lpd.conf, lpd.perms pages o [2005/03/07] kern/78526 problem with ST380011A Segate and FreeBSD o [2005/03/07] bin/78529 'df' shows wrong info about hard drive af o [2005/03/07] standards/78537phk times(2) not functioning per the Posix sp o [2005/03/07] usb/78543 usb [patch] Support for Trip-Lite USB 2 Seria o [2005/03/07] ports/78554 portmgr [patch] bsd.port.mk: allow install port w o [2005/03/07] bin/78562 Add numerical sorting option to join(1) o [2005/03/07] i386/78569 i386 seg fault compiling after install on AMD o [2005/03/08] ports/78596 portmgr bsd.port.mk does not match tradition or P o [2005/03/09] ports/78621 sobomax Invalid dependency of net/ser o [2005/03/09] bin/78646 [patch] libmap should canonicalize pathna o [2005/03/10] kern/78673 [patch] [nfs] nfs client open resets attr o [2005/03/11] ports/78712 perky [Update Ports] Rename ja-pycodec to ja-py o [2005/03/12] bin/78728 ntpd -- noisy when IPv4 or IPv6 interface o [2005/03/12] kern/78756 phantom [patch] src/lib/libc/nls/fr_FR.ISO8859-1. o [2005/03/13] kern/78758 sos [patch] Add support for re-sizing ATA dis o [2005/03/13] bin/78759 patch: verbosity for bin/chflags a [2005/03/13] ports/78760 lioux [PATCH] multimedia/kmplayer: Make TV view o [2005/03/13] bin/78763 pjd [PATCH] Added jail support to ps o [2005/03/13] bin/78768 pjd [Patch] Added jail support to top o [2005/03/13] bin/78785 [patch] ipfw verbosity locks machine if / o [2005/03/13] kern/78787 sysconf(_SC_CLK_TCK) may return incorrect o [2005/03/14] kern/78812 [workaround] logitech cordless mouse with o [2005/03/14] ports/78830 ports-bugs New port: print/latex-auto-greek Auto-swi o [2005/03/15] kern/78849 phk Problems with GBDE encrypted partitions o [2005/03/15] kern/78884 [patch] [nfs] nfs client cache negative l o [2005/03/15] ports/78898 ports-bugs new ports chinese/lumaqq: General QQ-like o [2005/03/16] conf/78906 [patch] Allow mixer_enable="NO" in rc.con o [2005/03/16] docs/78915 doc rfork()'s RFTHREAD is not documented o [2005/03/17] amd64/78954 amd64 kerberos 5 failed to build o [2005/03/17] kern/78957 time counter per process stops (syscall: o [2005/03/18] usb/78984 usb Creative MUVO umass failure o [2005/03/18] ports/78990 ache [update] {news,chinese}/tin: integrate pa o [2005/03/19] bin/79008 add option for pom(6) to specify EPOCH o [2005/03/19] ports/79009 emulation [patch] Some linux ports are incorrectly o [2005/03/19] ports/79010 portmgr [patch] bsd.port.mk - all-depends-tree ta o [2005/03/19] ports/79021 ports-bugs New port: linux_base-fedora o [2005/03/20] kern/79035 le [vinum] gvinum unable to create a striped o [2005/03/20] bin/79048 phk realloc() copies data even when the size o [2005/03/20] ports/79049 ports-bugs New port net-mgmt/netdump-server:RedHat s o [2005/03/20] standards/79055standards Add an IFS regression test for shells o [2005/03/20] standards/79056standards regex(3) regression tests o [2005/03/20] kern/79058 [panic] floppy umount crash on accidental p [2005/03/20] bin/79063 tjr grep(1) - strange behaviour (most likely o [2005/03/21] kern/79066 bktr eating about 10% CPU load once it wa o [2005/03/21] standards/79067standards /bin/sh should be more intelligent about o [2005/03/21] ports/79069 grog "make install" in instant-workstation fai o [2005/03/21] i386/79091 i386 [patch] Small optimization for i386/suppo o [2005/03/21] ports/79093 mi net/rdist6 ignore ssh transport o [2005/03/22] bin/79109 devfs.conf not honored at boot o [2005/03/22] kern/79117 isdn iavc(4) for AVM B1 PCI does not attach a [2005/03/22] ports/79123 portmgr [patch] bsd.port.mk - add SHA256 support o [2005/03/22] i386/79136 i386 disk controller not detected o [2005/03/22] kern/79138 rwatson close while sending on connected UNIX-dom o [2005/03/22] kern/79139 [patch] Support for more PCIe chipsets o [2005/03/22] i386/79143 i386 Broadcom NIC driver do not work for IPMI o [2005/03/23] docs/79156 doc buffersize knob for sound(4) is a tunable o [2005/03/23] kern/79164 [patch] QUIRK: Qware BeatZkey! Pro USB mp o [2005/03/24] conf/79196 [PATCH] configurable dummynet loading fr o [2005/03/25] bin/79228 [ PATCH ] extend /sbin/arp to be able to o [2005/03/25] bin/79232 WARNS6 clean libexec/comsat o [2005/03/25] ports/79235 ports-bugs [maintainer update] sysutils/dtc: v0.17.0 o [2005/03/26] kern/79245 pjd jls loops o [2005/03/26] kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o [2005/03/26] kern/79266 [patch] RELENG_4 pci CONF1_ENABLE_MSK dep o [2005/03/27] i386/79272 i386 "ata" detects and enables UDMA66 or UDMA1 o [2005/03/27] i386/79274 i386 Autoconfigure fails for O2Micro OZ6812/68 o [2005/03/28] bin/79296 "umount -a -t msdos" not work o [2005/03/28] i386/79317 i386 Freebsd Erasing NVRAM f [2005/03/30] ports/79346 barner New port: devel/gobo-eiffel. Libraries an o [2005/03/30] i386/79350 i386 "ata" unrequested increase in xDMAx speed o [2005/03/30] ports/79351 lofi Character passing error in security/pinen o [2005/03/30] kern/79352 [feature request] double tagged q-in-q ne o [2005/03/30] ports/79382 ume package information for cyrus-sasl2-sasla o [2005/03/31] ports/79398 portmgr [patch] bsd.port.mk: add USE_MAKESELF kno o [2005/03/31] conf/79415 Fix "Mothers Day" in calendar.french. o [2005/03/31] kern/79416 darrenr ipf in 4.11 breaks POLA p [2005/04/01] bin/79418 stefanf [patch] libedit sync from netbsd cvs o [2005/04/01] kern/79427 sound [sound] No sound on Compaq Armada 100S la f [2005/04/01] ports/79428 trevor fetchyahoo v2.8.6 broken; use v2.8.5 o [2005/04/02] kern/79441 problem writing on mounted msdos-fs at /m o [2005/04/03] kern/79498 sound [sound] sndfile-play (and many other play o [2005/04/03] ports/79509 portmgr add .desktop file facilities to bsd.port. o [2005/04/04] ports/79536 pat sysutils/wmmemload install problem from t o [2005/04/04] ports/79540 pat sysutils/wmcpuload feature o [2005/04/05] bin/79570 Dynamic OpenSSL engine load disabled o [2005/04/05] kern/79575 [PATCH] Fixes order of disks in 'mdconfig o [2005/04/06] bin/79607 grok and default to bzip2-compressed manu o [2005/04/07] ports/79611 ale Port build failure in mail/php4-imap 4.3. o [2005/04/07] kern/79635 82545GM reports the EEPROM Checksum Is No a [2005/04/07] ports/79637 cjh [PATCH] print/magicfilter: update to 2.3. s [2005/04/07] ports/79639 thierry biology/deft: patch for compilation on Fr o [2005/04/07] kern/79649 [patch] quirk: Gembird MP3 player o [2005/04/07] ports/79651 clement [patch] mail/ssmtp: add per-user smtp aut o [2005/04/07] ports/79655 emulation linux_base-8 fails to install as non-root o [2005/04/08] ports/79661 des emulators/doscmd outdated man info o [2005/04/08] kern/79678 sound [sound] sound works except recording from o [2005/04/08] bin/79690 [patch] mdmfs does not accept numeric uid o [2005/04/08] ports/79694 kuriyama net-mgmt/net-snmp: net-snmp-5-2-1.1 witho o [2005/04/08] kern/79698 des [PATCH] [ichwd] ICH watchdog driver broke o [2005/04/08] conf/79701 [PATCH] wcwidth(3) returns wrong value ab o [2005/04/09] kern/79705 mac_seeotheruids not blocking root o [2005/04/09] bin/79714 kgdb user I/O nits o [2005/04/09] conf/79715 MNT_NODEV should be removed from sys/moun o [2005/04/09] usb/79723 usb [usb] prepare for high speed isochronous o [2005/04/09] usb/79725 usb [patch] [usb] USB device speed is not dou o [2005/04/10] ports/79759 portmgr Improving the linuxolator part of bsd.por o [2005/04/10] ports/79760 lioux [PATCH:ADD_FEATURE] bsd.port.mk support f o [2005/04/12] i386/79840 i386 Partitioning and formating a new disk fai f [2005/04/13] ports/79862 daichi portupgrade-20041226_2 has faulty IGNORE o [2005/04/13] threads/79887threads [patch] freopen() isn't thread-safe o [2005/04/14] i386/79890 i386 burncd fails on a Pioneer DVD drive o [2005/04/14] usb/79893 usb New usbdevs/umass quirks derived from Lin o [2005/04/14] bin/79903 Request to add a new tool: getent(1). o [2005/04/15] kern/79944 virtual floppy controller of Virtual PC d o [2005/04/15] bin/79965 top messes up narrow terminals while disp o [2005/04/15] ports/79983 sobomax stund port does not have an rc script o [2005/04/16] kern/79998 bz [PATCH] Give sk(4) VLAN MTU capabilities o [2005/04/16] usb/80010 usb Add support for the AEI USB to LAN adapte o [2005/04/17] kern/80031 [Patch] Remove insque/remque from kernel o [2005/04/17] ports/80037 lioux maintainer-update: net/mldonkey-devel o [2005/04/17] ports/80043 ports-bugs New port: devel/metaEnv CWI MetaEnvironme o [2005/04/18] kern/80048 [patch] support for HP ML110 G2 SATA RAID p [2005/04/18] bin/80058 adduser -f exits silently if file has emp o [2005/04/18] docs/80070 doc [patch] Wrong dbm_close return value desc o [2005/04/18] i386/80081 i386 Problem loading a NDIS kernel module. o [2005/04/19] i386/80092 i386 PC Cards do not work at all on laptop Com o [2005/04/19] i386/80095 i386 ld-elf.so.1 crashes with executables prod o [2005/04/19] bin/80097 df reports incorrect stats with gmirror o [2005/04/19] ports/80111 ume patch to make WITH_KERBEROS4 working for o [2005/04/19] bin/80117 [patch] [sysinstall] smbfs install option s [2005/04/19] ports/80118 dinoex lang/gcc-objc doesn't compile on -current o [2005/04/19] ports/80121 jedgar update emulators/sim to 3.3.2 o [2005/04/20] ports/80132 portmgr [PATCH] bsd.port.mk -- Add support for -j o [2005/04/20] kern/80147 sound [panic] with the vibra16x when trying to o [2005/04/20] kern/80149 sound problems with an soundblaster-8 (original o [2005/04/20] kern/80151 sound [patch] Missing ESS ES1688 PCI-ID o [2005/04/20] kern/80152 sound [patch] SIMPLEX flag is not set properly o [2005/04/20] conf/80158 request configuration option for specifin o [2005/04/20] docs/80159 doc [patch] rtld(1) mentions "%m" but it's no f [2005/04/20] ports/80173 ports-bugs unixstat port broken under FreeBSD 5.3 (b o [2005/04/21] bin/80176 des fetch does not always work with https wit o [2005/04/21] ports/80183 seanc [PATCH] databases/memcached: update to 1. o [2005/04/21] docs/80186 imp [patch] Footnote is wrong in the /usr/src o [2005/04/22] ports/80227 sobomax net/ser does not have an rc script. It sh o [2005/04/22] kern/80234 sound [patch] add entry for Analog Devices AD19 o [2005/04/22] i386/80236 i386 atacontrol outputs minimal usage o [2005/04/22] bin/80242 [patch] jail(8) should be able to set ker s [2005/04/22] ports/80254 ports-bugs update net/poptop and rename to net/pptpd o [2005/04/22] ports/80255 ports-bugs New Port : print/lpr-wrapper A user level o [2005/04/22] bin/80256 /rescue/vi doesn't work without terminal o [2005/04/22] bin/80258 [PATCH] Comment why some Binaries are sta o [2005/04/22] i386/80265 i386 D-Link NIC with VIA Rhine II has no carr o [2005/04/23] kern/80269 [PATCH] libtacplus tac_get_av_value will f [2005/04/23] ports/80274 ports-bugs GDB console problem (ddd-3.3.10 with Free o [2005/04/23] kern/80283 [reboot] SMP problem o [2005/04/23] kern/80293 sysconf() does not support well-defined u p [2005/04/25] bin/80348 rs(1) handles command line arguments impr o [2005/04/26] ports/80352 ports-bugs New port: security/webfwlog Web-based fir p [2005/04/26] kern/80362 [PATCH] add preadv() and pwritev() system o [2005/04/26] ports/80363 ale Update www/pserv to 3.2 f [2005/04/26] ports/80377 girgen Postgresql8-server will not build with HI o [2005/04/27] usb/80383 usb [PATCH] Add quirk for uhid to ignore cert o [2005/04/27] ports/80394 sobomax net/stund does not honour PREFIX s [2005/04/27] kern/80396 anholt i915 AGP not supported o [2005/04/27] bin/80411 [patch] bin/df/df.c sign errors in calls o [2005/04/27] usb/80420 usb atapicam stops iPod functionality o [2005/04/27] bin/80421 [PATCH] whois(1) should query AfriNIC ser f [2005/04/29] ports/80461 thierry The print/pdfjam port requires bash but i o [2005/04/29] i386/80465 i386 pcm0:record:0: record interrupt timeout f [2005/04/30] ports/80484 thierry New port: security/synscan flexible, scri o [2005/04/30] kern/80487 [patch] quirk: United MP 5512 Portable MP o [2005/05/01] conf/80504 [patch] de_DE.ISO8859-1 libc message cata f [2005/05/01] ports/80515 ports-bugs emulators/vmware3: /usr/local/etc/rc.d/vm o [2005/05/02] ports/80523 bms [PATCH] net/ldapbrowser: update to 2.8.2 o [2005/05/02] bin/80530 man(1) should become Unicode aware o [2005/05/02] bin/80534 feature request: enumeration of filesyste o [2005/05/02] ports/80536 jmz textproc/ispell: ispell/spell seg faults o [2005/05/02] ports/80560 des [PATCH] lang/sbcl: ASDF-INSTALL requires o [2005/05/03] kern/80580 [panic] 4.11 router panic in lockmgr: loc p [2005/05/03] docs/80587 keramida [patch] accept(2) can return EINVAL for u o [2005/05/04] bin/80610 [patch] netstat, lost data due lu format o [2005/05/04] bin/80620 des [patch] fetch -U does not work o [2005/05/04] kern/80626 Out of memory ? then dead p [2005/05/04] kern/80627 pf pf_test6: kif == NULL ... o [2005/05/04] ports/80629 ports-bugs tuxracer segfaults on amd64 o [2005/05/05] kern/80632 sound pcm driver missing support for CMI8738 au o [2005/05/05] ports/80639 ports-bugs [NEW PORT] www/gwee: Tool to exploit comm o [2005/05/05] kern/80642 ipfw [patch] IPFW small patch - new RULE OPTIO o [2005/05/05] kern/80646 [patch] bge(4) doesn't work with vlans o [2005/05/06] bin/80687 [patch] Missing NULL termination after st s [2005/05/06] ports/80690 pav [UPDATE] editors/joe: update 2.8_5 to 2.9 o [2005/05/06] ports/80703 tobez [NEW PORT] mail/postfix-policyd: Greylist f [2005/05/06] ports/80705 gnome [PATCH] converters/libiconv: includes a p o [2005/05/07] bin/80732 [PATCH]: getty(8) and telnetd(8) ignore t o [2005/05/07] ports/80740 des [Patch] unbrake games/flightgear on 4.x o [2005/05/08] kern/80760 [PATCH] svr4.ko should depend on sysv(msg o [2005/05/08] usb/80773 usb "usbd_get_string()" could have taken a le o [2005/05/08] usb/80774 usb have "usbd_find_desc" in line with the ot o [2005/05/08] kern/80775 sysctl_handle_string should have a timeou o [2005/05/08] usb/80776 usb UDAV device driver shouldn't use usb_add_ o [2005/05/08] usb/80777 usb usb_rem_task() should wait for callback t o [2005/05/09] bin/80812 [ new util ] request to add new util: get o [2005/05/09] kern/80815 acpi ACPI(pci_link) problem in 5.4-STABLE: TIM o [2005/05/09] kern/80824 sound [sound] kldunload can't unload sound.ko f [2005/05/09] ports/80826 flz [NEW PORT] net/unison-devel: A user-level o [2005/05/09] ports/80832 mharo proftpd mod_ctrls enhancement o [2005/05/10] kern/80844 [patch] Increase compatibility of psm dri o [2005/05/10] usb/80854 usb suggestion for new iface-no-probe mechani o [2005/05/10] bin/80868 /bin/sh gives wrong line number of unterm o [2005/05/11] docs/80871 doc terminfo(5) man page source corrupted o [2005/05/11] ports/80875 obrien [PATCH] editors/hexedit: update to 1.2.10 o [2005/05/11] ports/80888 portmgr enhance ports/Makefile to do human langua o [2005/05/11] conf/80907 tmpmfs default change o [2005/05/12] bin/80924 fsck should show CTIME. o [2005/05/12] usb/80935 usb uvisor.c is not work with CLIE TH55. o [2005/05/12] ports/80943 ale [mnogosearch 3] lang/php4: update PHP for o [2005/05/12] ports/80944 lawrance [NEW PORT] www/mnogosearch-php: Mnogosear o [2005/05/12] ports/80946 ale [mnogosearch part 2] www/php4-mnogosearch o [2005/05/13] ports/80968 ijliao [NEW PORT] cad/gplcver: A Verilog HDL sim o [2005/05/13] ports/80979 x11 x11/xorg-clients: when hostname is not co o [2005/05/13] threads/80992threads abort() sometimes not caught by gdb depen o [2005/05/13] ports/80998 perky databases/py-bsddb: patch to support Berk o [2005/05/14] kern/80999 [freeze] artswrapper freezes system with o [2005/05/14] kern/81006 rc ipnat not working with tunnel interfaces o [2005/05/14] kern/81013 sound [patch] Intel ICH3 sound chip reverts to o [2005/05/14] kern/81015 [workaround] System locks up during PCI d o [2005/05/14] bin/81035 [patch] boot0cfg emits bogus error o [2005/05/15] conf/81042 pf [patch] /etc/pf.os doesn't match FreeBSD o [2005/05/15] ports/81070 ale [PATCH] www/php-screw: randomize CRYPTKEY o [2005/05/15] usb/81073 usb [patch] fix umass NO_GETMAXLUN quirk o [2005/05/15] i386/81082 i386 Failure to detect Pioneer CD drive on Int o [2005/05/16] amd64/81089 amd64 FreeBSD 5.4 released version can not use o [2005/05/16] ports/81093 ale lang/php4 - Slow serialize on FreeBSD f [2005/05/16] ports/81133 lioux [BUG:PATCH] make install does not respect o [2005/05/17] ports/81153 ports-bugs [NEW PORT] chinese/DFSongSd: Chinese (HKS o [2005/05/17] kern/81161 Images mounted through mdconfig on a read o [2005/05/17] bin/81165 /bin/sh -e bug o [2005/05/17] kern/81170 sound [sound] /dev/mixer misbehavior with enson o [2005/05/18] ports/81183 apache apache13-modperl can not compile with por o [2005/05/18] ports/81188 se [PATCH] update kplayer to 0.5.3 o [2005/05/18] usb/81191 usb Support for Curitel HX-550C USB modem to o [2005/05/18] ports/81200 ale [patch] Mk/bsd.php.mk: add math/pecl-big_ a [2005/05/18] ports/81206 portmgr new category proposal: net-im o [2005/05/19] bin/81230 [patch] mountd does not ignore SIGPIPE f [2005/05/19] ports/81252 olgeni [UPDATE PORT] net-mgmt/NeTraMet s [2005/05/19] kern/81273 [request] remove dependency of tool 'nets o [2005/05/20] ports/81285 cy misc/screen -- Add support for 256 colour o [2005/05/20] standards/81287standards [PATCH]: fingerd(8) might send a line not o [2005/05/20] bin/81300 [PATCH] add option to sockstat(1) to alwa o [2005/05/20] ports/81306 anholt graphics/dri-devel: Certain gl apps segfa o [2005/05/20] misc/81323 Error in installation packages "write fai o [2005/05/22] i386/81358 i386 [patch] [geode.c] add PC Engines WRAP sup o [2005/05/22] bin/81364 rexecd mangles the username p [2005/05/22] kern/81371 glebius [PATCH] ng_socket: 2nd "int error" hides o [2005/05/23] ports/81400 seanc [PATCH] www/mod_geoip: update to 1.2.7 o [2005/05/24] ports/81428 x11 [PATCH] x11-servers/mga_hal: also install o [2005/05/24] i386/81438 i386 Ataidle seems broken + problem with ATA w p [2005/05/24] kern/81449 jkim [PATCH] SMBIOS scan for loader f [2005/05/25] ports/81454 daichi portupgrade leaves temporary directory wh o [2005/05/25] bin/81465 /bin/host: resolver is not working proper f [2005/05/25] ports/81481 ports-bugs portmanage maybe fflush(3) before system( o [2005/05/26] bin/81495 hexdump(1) format option does not allow l o [2005/05/26] kern/81496 acd (atapicd) device lacks devstat o [2005/05/26] kern/81497 ad and da do not set interface type in de o [2005/05/26] threads/81534threads [PATCH] libc_r close() will fail on any f o [2005/05/27] kern/81568 ext2fs partitions in fstab automatically o [2005/05/28] kern/81588 phk [patch] Devices with SI_CHEAPCLONE flag d p [2005/05/28] kern/81590 updating zlib? (openssh 4.1 complains) o [2005/05/28] i386/81597 i386 My POS-460 system based on a Western Digi o [2005/05/28] ports/81598 jdp [PATCH] net/cvsup-mirror: add some instal o [2005/05/28] kern/81599 sound [sound] Via VT1612A Audio not working wel o [2005/05/29] bin/81611 natd runs with -same_ports by default o [2005/05/29] ports/81613 portmgr make package-recursive for port www/jakar o [2005/05/29] usb/81621 usb external hd hangs under load on ehci o [2005/05/30] usb/81656 usb umass problem with Minolta DiMage S414 Di o [2005/05/30] ports/81673 trevor update devel/cvsgraph from 1.4.0_1 to 1.5 o [2005/05/30] misc/81674 [request] Install root option of 4.11 boo o [2005/05/31] bin/81692 [patch] atacontrol support for disk APM a o [2005/05/31] ports/81697 sobomax zaptel cards are UNCONFIGURED without ztc o [2005/05/31] ports/81699 ale www/pserv's PHP support only works with p o [2005/05/31] ports/81705 ale www/pserv overwrites user's pserv.conf on o [2005/05/31] bin/81709 [patch] lam accepts -P but not -p o [2005/06/01] ports/81748 ahze Update to math/scigraphica 2.0 for gtk2 o [2005/06/01] ports/81751 bms [PATCH] net/tcpdump: fix build and unbrea o [2005/06/01] bin/81757 gad realtime processes are not marked with '< o [2005/06/01] bin/81759 phk 'gbde attach' does not notify user about o [2005/06/01] bin/81775 pppd(8) and tcpdump(8) no longer accept ' o [2005/06/01] docs/81776 doc ifconfig(8) man page not updated with car o [2005/06/01] kern/81778 pjd 'gmirror label' does not attach mirror as o [2005/06/01] bin/81779 pjd misleading error messages in geom(8) util o [2005/06/01] kern/81780 rwatson hard disk i/o error during reading in an o [2005/06/02] i386/81790 i386 Asus P4SP-MX + FreeBSD = hangs on reboot o [2005/06/02] kern/81792 glebius exclusive sleep mutex xl0 (network driver o [2005/06/02] ports/81795 obrien Update port: shells/bash - add knob to bu o [2005/06/02] i386/81803 i386 [patch] Unsupported ICH6 SMBus controller o [2005/06/03] bin/81837 [patch] Sort by directories first option o [2005/06/03] kern/81846 [patch] Quirks for Time DPA20B 1GB MP3 p s [2005/06/03] kern/81867 delphij [patch] ioctl collision between pcvt(4) a o [2005/06/03] bin/81874 [patch] TCP mode in systat overwrites loa o [2005/06/05] ports/81915 ale mysql-server.sh not ssh-friendly o [2005/06/05] conf/81924 [patch] Removal of duplicate fortunes o [2005/06/05] conf/81926 [patch] Whitespace cleanup to fortunes da o [2005/06/06] ports/81933 ports-bugs update ports: japanese/wikicker o [2005/06/06] ports/81935 lev subversion port does not build mod_dav_sv o [2005/06/07] conf/81977 Order in /etc/rc.d (ntpd need devfs) o [2005/06/07] ports/81982 pat PORT UPDATE: www/screem to 0.14.1 o [2005/06/07] ports/81983 danfe New port: sysutils/pfind Tool for searchi o [2005/06/07] bin/81987 [patch] memory leaks in libc/rpc o [2005/06/07] bin/81989 [PATCH] mount_msdosfs When a mask, but no o [2005/06/08] bin/82014 wachdog is fire shuttingdown. o [2005/06/08] kern/82026 emulation [ibcs2] module_register_init: MOD_LOAD (i o [2005/06/08] kern/82036 loading green_saver makes screen go blank o [2005/06/08] bin/82037 mount(8)/unmount(8)/fsck(8) mount point s o [2005/06/08] www/82038 ceri http://www.freebsd.org/send-pr.html anti- o [2005/06/08] conf/82051 calendar.birthday: Frank Lloyd Wright bir o [2005/06/09] bin/82058 [PATCH] Ability for pw groupmod to delete o [2005/06/09] ports/82066 sergei [PATCH] shells/zsh: fix default zsh-mime- o [2005/06/09] kern/82070 Not all dc(4) devices can be used: MII wi o [2005/06/10] docs/82114 doc Misisng ndisapi(9) manual page o [2005/06/11] ports/82138 portmgr [patch] timewaster: remove old versions f o [2005/06/11] ports/82151 perl [PATCH] mail/p5-Mail-SpamAssassin: instal f [2005/06/12] ports/82155 barner New port: devel/dynamic-classes C++ dyna o [2005/06/12] bin/82161 [patch] m4's eval does not handle INT_MIN o [2005/06/12] bin/82170 [patch] m4's eval does not work as docume o [2005/06/12] ports/82175 jmz Update port: x11/xloadimage o [2005/06/12] amd64/82178 amd64 missing 32bit subsystem o [2005/06/13] bin/82185 [patch] ndp command bug o [2005/06/13] kern/82188 [patch] ng_fec interface not running afte o [2005/06/13] kern/82189 [patch] ng_fec interface - problems with o [2005/06/13] ports/82190 ports-bugs UPDATE: security/openssh-portable - adds o [2005/06/13] ports/82197 ume [PATCH] sysutils/gkrellm: gkrellmd enhanc o [2005/06/13] ports/82200 ports-bugs [PATCH] sysutils/gkrelltop: gkrelltopd en p [2005/06/14] docs/82217 delphij [PATCH] Documentation fix for msgrcv(3) o [2005/06/14] ports/82218 ports-bugs [NEW PORT] japanese/guesswork: A PHP ligh o [2005/06/14] conf/82228 roberto [patch] order parsed ntpdate_hosts in /et p [2005/06/14] kern/82243 glebius [patch] csa sound driver suspend/resume o o [2005/06/15] bin/82269 [patch] cpan modules cause pkg_add spam o [2005/06/15] ports/82270 kris xglobe does not show markers o [2005/06/15] bin/82287 [patch] [routed] Fix varargs usage, remov o [2005/06/15] ports/82289 ports-bugs New Port: sysutils/p5-Sys-Mknod cpan perl o [2005/06/15] docs/82290 hmp [patch] update to handbook firewall PF se o [2005/06/15] ports/82297 lioux sysutils/vobcopy device detection bug o [2005/06/16] ports/82307 des FlightGear port broken in 5.4 s [2005/06/16] ports/82310 ports-bugs [new port] request: sysutils/initng o [2005/06/16] ports/82337 anholt games/enigma doesn't build because lang/l o [2005/06/17] gnu/82351 [patch] update (385-cl3) to version 385 o o [2005/06/17] gnu/82353 SGR disabled in share/tmac/troffrc -- dep o [2005/06/17] ports/82354 ports-bugs [NEW PORT] mail/mimetic: A GPL MIME libra f [2005/06/17] www/82364 jcamou Addition of Company o [2005/06/17] bin/82367 [PATCH] ifconfig ifname.tag does not auto o [2005/06/18] amd64/82380 amd64 buildworld error in libc p [2005/06/18] bin/82381 stefanf [patch] small bug in libedit might cause o [2005/06/18] ports/82394 max patch: ports/japanese/ircII: make friendl o [2005/06/18] amd64/82399 amd64 MSI K8N Neo4 Platinium is not supported o [2005/06/19] ports/82408 lioux [PATCH] update kmplayer to 0.9.0-pre4 o [2005/06/19] ports/82427 ports-bugs [NEW PORT] security/amavisd-milter: Milte o [2005/06/20] conf/82430 [patch] error with find "[procname]" in f o [2005/06/20] misc/82432 The position of /root o [2005/06/20] usb/82436 usb [patch] USL101 Host-to-Host bridge suppor o [2005/06/20] kern/82456 damien WITNESS warning/backtrace in if_ral o [2005/06/21] bin/82465 top(1) in 6-CURRENT shows incorrect user o [2005/06/21] ports/82466 lioux [PATCH] net/mldonkey-devel: polite ports o [2005/06/21] kern/82470 silby FreeBSD advertises wrong window scale in o [2005/06/21] docs/82481 doc tar/gtar man page mod request o [2005/06/21] gnu/82484 [patch] for misleading man cvs o [2005/06/21] ports/82496 trevor emulators/linux_base-suse-9.2 without fre o [2005/06/21] ports/82501 ports-bugs New port: www/referrercop Filters referre o [2005/06/22] ports/82507 ports-bugs [new port] www/quixote-session2: quixote o [2005/06/22] docs/82508 doc misleading man page for basename/dirname o [2005/06/22] ports/82527 ports-bugs New port: databases/pgmemcache Provides a o [2005/06/22] i386/82548 i386 VBE video driver incorrectly switches to/ o [2005/06/23] ports/82574 ports-bugs New port: print/php4-cpdf cpdf support fo o [2005/06/23] ports/82575 ports-bugs New port: print/php5-cpdf cpdf support fo f [2005/06/23] ports/82582 ports-bugs update www/xist to 2.10 o [2005/06/24] docs/82595 doc 25.5.3 Configuring a bridge section of th o [2005/06/24] amd64/82599 amd64 ports/misc/mtx wont compile on amd64 o [2005/06/24] ports/82617 seanc [patch] fix shared library installation i f [2005/06/24] ports/82618 ports-bugs multimedia/xmms uses 32bit int for ioctl o [2005/06/24] bin/82625 [PATCH] Enhancement to ping to ping throu o [2005/06/25] ports/82634 nectar heimdal port conflict with base heimdal o [2005/06/25] ports/82640 ports-bugs New port: lang/fpc2 f [2005/06/26] misc/82657 copyright infringement o [2005/06/26] ports/82661 portmgr [patch] Add support to filter MASTER_SITE f [2005/06/26] ports/82679 ahze Update port: math/scigraphica to 2.1.0 o [2005/06/26] sparc64/82681sparc64 dc state messages o [2005/06/26] kern/82682 [kern_acct.c] "Accounting resumed" while o [2005/06/26] i386/82683 i386 Illegal Instruction Core Dump in REL-5.4- o [2005/06/28] ports/82711 barner [MAINTAINER UPDATE] net/quagga: update to o [2005/06/28] ports/82715 des update port: lang/sbcl to 0.9.2 o [2005/06/28] kern/82724 ipfw [patch] Add setnexthop and defaultroute f o [2005/06/28] ports/82726 ports-bugs New port: databases/sqlplus Oracle SQL*Pl o [2005/06/28] conf/82738 [patch] add amd_program line to defaults/ o [2005/06/28] ports/82753 portmgr patch to add functionality to ports macro o [2005/06/29] docs/82779 doc [patch] Kill entry for ddb manpage o [2005/06/29] ports/82782 sobomax Update port: net/asterisk o [2005/06/29] ports/82786 knu Update port: sysutils/pdumpfs-clean to 1. f [2005/06/29] ports/82797 ports-bugs [PATCH] devel/argouml: update to 0.18.1 o [2005/06/29] kern/82800 ipforward not available as kernel module o [2005/06/30] ports/82821 ports-bugs New port: graphics/py-gdchart2: python li o [2005/06/30] conf/82823 [patch] no problem, but little addon for o [2005/06/30] usb/82839 usb [patch] add support for Aceeca Mez1000 de o [2005/07/01] ports/82843 ale [new port] sysutils/php4-pfpro: Trivial p s [2005/07/01] ports/82853 emulation [wish] working linux_base port for alpha o [2005/07/02] kern/82882 yar [ PATCH ] ip_mroute abends kernel when in o [2005/07/02] kern/82901 ECP mode fails on NetMos ppc card - "PWor o [2005/07/02] kern/82908 [ PATCH ] ip_carp should use ifnet_depart o [2005/07/03] kern/82926 ipw doesn't seem to do WPA, also leaves e o [2005/07/03] ports/82950 ports-bugs [NEW PORT] devel/subversion-ruby: Subvers o [2005/07/04] kern/82963 [patch] TCP MD5 disables rfc1323 options o [2005/07/04] kern/82978 FreeBSD hangs loading orm(4) only after r o [2005/07/04] kern/82980 realpath(3) treats regular files as direc o [2005/07/04] ports/82987 danfe [PATCH]: x11-wm/wmii o [2005/07/04] kern/82988 When building kernel with smb enabled, sm o [2005/07/05] ports/82998 anders [PATCH] www/pound: update to 1.9 o [2005/07/05] ports/83001 olgeni Erlang port is n/a for amd64 o [2005/07/05] kern/83011 nge vlans broken o [2005/07/05] i386/83018 i386 Installer will not boot o [2005/07/05] usb/83022 usb ALI USB 2.0 EHCI Controller is not detect o [2005/07/05] ports/83023 sergei [PATCH] shells/zsh: Teach zsh completion o [2005/07/06] bin/83039 Bug in cdcontrol(1) s [2005/07/06] ports/83040 pav [PATCH]: security/libtomcrypt o [2005/07/06] bin/83046 ipfw2 error o [2005/07/07] kern/83088 [patch] remove a few bogous semicolons o [2005/07/07] conf/83092 no '-' allowed in jail names in rc.conf o [2005/07/07] kern/83099 des [pam] pam_login_access change causes cyru o [2005/07/07] kern/83109 syscons does not always display colors co o [2005/07/07] ports/83113 ports-bugs new port: misc/ree - A tool to dump your o [2005/07/07] ports/83115 ports-bugs New port: games/exhaust - Redcode simulat o [2005/07/07] ports/83116 ports-bugs New port: games/exhaust-ma - Redcode simu o [2005/07/08] ports/83120 ports-bugs New port: games/exhaust-doc - Redcode sim o [2005/07/08] kern/83121 wrong SACK statistic in netstat -s o [2005/07/08] ia64/83124 ia64 gpt(8): Add support for setting, clearing o [2005/07/08] ports/83130 roam mail/vpopmail installation problem f [2005/07/08] ports/83135 ports-bugs sysutils/smartmontools -- Does not work w o [2005/07/08] ports/83143 fenner [PATCH] textproc/idnits: update to 1.74 o [2005/07/08] bin/83170 [ PATCH ] Allow 'install' to compare file o [2005/07/09] kern/83186 glebius [patch] pfsync in RELENG_5 does not work o [2005/07/09] kern/83187 glebius [patch] MFC suggestion for if_pfsync.c o [2005/07/09] kern/83192 [patch] Kernel allows processes to run 1 o [2005/07/09] kern/83198 [patch] Missing option in template NOTES o [2005/07/10] kern/83236 sos FreeBSD does not work with my ATAPI CDROM o [2005/07/11] kern/83247 [patch] if_cdce.c doesn't emit USB_EVENT_ o [2005/07/11] bin/83253 pw(8) does not take over skeleton directo o [2005/07/11] ports/83264 trevor [PATCH] emulators/linux_base-suse-9.2: Ad o [2005/07/11] bin/83277 des libfetch includes the leading / in FTP UR o [2005/07/11] bin/83278 des libfetch does one big CWD for FTP URLs ra o [2005/07/11] misc/83287 [patch] EXTPORTSDIR feature for src/relea o [2005/07/11] ports/83305 clement Update port: mail/perdition to 1.17 o [2005/07/12] ports/83306 lioux [patch] print/lilypond 2.4.6 o [2005/07/12] ports/83315 danfe [NEW PORT] devel/simian: simlarity analys o [2005/07/12] ports/83316 x11 xorg-libraries/sparc64: locale not suppor f [2005/07/12] ports/83334 pav www/trac port could use some more depende o [2005/07/12] usb/83353 usb [patch] ums driver limits number of butto o [2005/07/12] kern/83354 When two 3c905's are in a Vectra Vl dhcp o [2005/07/12] bin/83358 [ PATCH ] improper handling of malloc fai o [2005/07/12] bin/83361 [ PATCH ] Incorrect malloc failures handl f [2005/07/13] ports/83370 hq New port: print/pdfbox o [2005/07/13] ports/83373 jedgar [PATCH] databases/p5-Mysql port does not o [2005/07/13] ports/83396 kwm Updates to net/openh323 and devel/pwlib.. o [2005/07/13] www/83397 ceri [patch] Improvement to the GNATS webinter o [2005/07/14] bin/83424 [ PATCH ] improper handling of malloc fai o [2005/07/14] kern/83445 [PATCH] ndis won't compile with kernel pr o [2005/07/14] bin/83451 [ PATCH ] improper handling of malloc fai o [2005/07/14] ports/83453 bms [PATCH] security/opensc: update to 0.9.6 p [2005/07/14] bin/83468 brooks imported OpenBSD dhclient handles hostnam f [2005/07/14] ports/83481 ports-bugs New port: sysutils/graphicboot o [2005/07/15] bin/83487 dhclient - "dhclient: vr0: not found" wh o [2005/07/15] usb/83504 usb SpeedTouch USB stop working on recent cur f [2005/07/15] ports/83512 leeym [PATCH] devel/p5-CPANPLUS: update to 0.05 o [2005/07/15] ports/83530 portmgr Add 'quicksearch' parameter to ports sear o [2005/07/16] ports/83536 knu [FIX] databases/ruby-bdb f [2005/07/16] ports/83546 ports-bugs ftp/emirror port seems broken on 4.x o [2005/07/16] bin/83553 [ PATCH ] vidcontrol can't switch mode an o [2005/07/16] bin/83572 mergemaster deletes users when upgrading o [2005/07/16] ports/83573 danfe Update port: devel/rote fix build on 4.x o [2005/07/17] ports/83578 mbr update: audio/xmms-uade - 1.00 -> 1.02 o [2005/07/17] bin/83619 'diskinfo -t' fails with disks smaller th o [2005/07/17] docs/83621 doc [patch]: Minor omissions in /usr/src/UPDA o [2005/07/17] kern/83622 [ patch ] add network interfaces labeling o [2005/07/17] ports/83623 perky Update port: ftp/py-curl to 7.14.0 o [2005/07/17] ports/83630 perky Update port: devel/py-fam to 1.1.1 o [2005/07/17] ports/83634 perky Update port: devel/py-logging to 0.4.9.6 o [2005/07/18] ports/83644 clement add support for ndbm to apache2 f [2005/07/18] ports/83653 pav [NEW PORT] graphics/py-cgkit2: Python Com o [2005/07/19] kern/83697 [PATCH] support, docs added for full-dupl o [2005/07/19] kern/83702 ata CDRIOCGETPROGRESS ioctl does not work o [2005/07/19] ports/83705 perky Update port: www/py-websvcs is equal to n o [2005/07/19] ports/83707 ports-bugs [NEW PORT] math/p5-Statistics-R: Controls o [2005/07/19] ports/83710 portmgr Add INDEX-7 o [2005/07/19] ports/83716 portmgr Fix cosmetic bug in security-check target o [2005/07/19] ports/83718 portmgr Add bsd.tcl.mk for convinience for tcl/tk o [2005/07/19] kern/83738 [modules] kldload hwpmc.ko fails with 'li f [2005/07/19] ports/83742 pav REPOCOPY: mail/py-mimelib -> py-mimelib2 o [2005/07/19] ports/83748 anders Update port: security/pam-mysql to 0.6.0 s [2005/07/19] ports/83750 pav Update port: devel/bicyclerepair to 0.9 o [2005/07/20] kern/83765 Adaptec 1542-CP requires plug-and-play sw f [2005/07/20] ports/83775 novel [update] devel/p5-Tree-DAG_Node to 1.05 o [2005/07/20] kern/83778 [patch] [kame] JPv6 cannot use Jumbo Fram o [2005/07/20] ports/83783 seanc [update] devel/pmk to 0.9.3 o [2005/07/20] ports/83787 lioux Update port: devel/py-dateutil to 1.0 f [2005/07/20] ports/83788 vsevolod Update port: textproc/makefaq to 2.5 o [2005/07/20] ports/83789 portmgr new virtual category for ruby gems o [2005/07/20] ports/83801 lioux net/py-bittorrent-devel i18n broken o [2005/07/20] amd64/83806 amd64 Can not comple /usr/src/lib/msun/amd64/fe o [2005/07/20] kern/83807 [patch] if_sis: Wake On Lan support for F o [2005/07/20] i386/83809 i386 Problem with mutex or lock and if_xl. o [2005/07/20] ports/83812 sem new port, security/sguil-sensor, update t o [2005/07/20] ports/83816 perky Update port: irc/py-irclib to 0.4.5 a [2005/07/21] docs/83820 trhodes getino(3) manpage not installed o [2005/07/21] ports/83835 portmgr Remove OpenLDAP ver. 21 o [2005/07/21] ports/83838 ports-bugs [NEW PORT] print/latex-circ: A LaTeX pack o [2005/07/21] ports/83842 sem [NEW PORT] devel/cegui o [2005/07/21] ports/83843 ports-bugs ftp/fmirror does not support IPv6 o [2005/07/21] standards/83845standards [ patch ] add log2() and log2f() support o [2005/07/21] ports/83852 seanc [PATCH] mail/dbmail: update to 2.1.1 o [2005/07/21] usb/83863 usb Communication problem between opensc/open o [2005/07/22] ports/83894 ports-bugs Update port: devel/simpletest f [2005/07/22] ports/83902 novel [update] archivers/p5-Archive-Tar to 1.24 o [2005/07/22] ports/83910 markp [update] editors/mp to 3.3.14 o [2005/07/22] ports/83912 ports-bugs New Port: sysutils/psgconf modular system o [2005/07/22] standards/83919standards ls man page "sort by size" example out no o [2005/07/22] ports/83924 ports-bugs misc/compat4x: Bad system call (core dump a [2005/07/23] ports/83934 gioria net/delegate update to 8.11.5 o [2005/07/23] ports/83939 ports-bugs [New Port] games/cavezofphear - Boulder D o [2005/07/23] kern/83941 harti "/usr/src/share/mk/sys.mk", line 275: if- o [2005/07/23] ports/83946 se dns/ez-ipupdate: ez-ipupdate.sh does not o [2005/07/23] ports/83950 ports-bugs [NEW PORT] mail/squirrelmail-change_ldap- o [2005/07/23] ports/83954 lioux [unbreak] devel/alleyoop o [2005/07/23] ports/83957 ahze new port: gtkextra2 o [2005/07/23] ports/83964 sem new port: security/sguil-server, resubmis o [2005/07/24] bin/83970 philip [patch] adding a feature to moused: stop f [2005/07/24] ports/83979 hq update cad/impact port to version 1.6.1 o [2005/07/24] ports/83980 skv Update www/p5-Apache-DBI 0.94 -> 0.98, re o [2005/07/24] i386/83981 i386 Install dies with 6beta1 o [2005/07/24] ports/83984 ports-bugs Update www/p5-libapreq2 2.05 -> 2.06 o [2005/07/24] ports/83986 ports-bugs New port www/p5-Apache2-DebugFilter o [2005/07/24] ports/83987 ports-bugs New port www/p5-Apache2-Filter-HTTPHeader f [2005/07/24] ports/83988 ports-bugs [PATCH] security/amavisd-new: properly se o [2005/07/24] i386/83991 i386 cannot buildworld for RELENG_6 on machine o [2005/07/24] kern/83995 CFLAGS & COPTFLAGS ambiguous behaviour f [2005/07/24] ports/83996 novel [update] devel/p5-File-DirSync to 1.12 o [2005/07/24] ports/84000 knu [PATCH] japanese/rskkserv: Update to 2.95 o [2005/07/24] kern/84020 Couldn't load graphical screensaver modul o [2005/07/24] docs/84021 doc Missing manpage on RELENG_6 o [2005/07/25] conf/84030 [patch] /etc/rc.d/power_profile is not a o [2005/07/25] ports/84036 knu [PATCH] japanese/rskkserv: Convert start o [2005/07/25] kern/84040 6.0-BETA1 mpt driver not working under VM o [2005/07/25] bin/84041 [PATCH] fix for wall(1) error message o [2005/07/25] bin/84050 tcpdump is dumping hex instead of text du f [2005/07/25] ports/84053 garga mail/qmail: Big patch to prevent stale de o [2005/07/25] ports/84063 seanc [PATCH] net/p5-Geo-IP: update to 1.26 o [2005/07/25] ports/84079 trevor [update] mail/fetchyahoo to 2.8.7 o [2005/07/25] ports/84081 sergei [update] mail/maildirsync to 1.1 s [2005/07/25] bin/84084 qa [sysinstall] FreeBSD 4.11-R won't install f [2005/07/25] ports/84097 ports-bugs sysutils/xsysinfo and _nfiles o [2005/07/26] docs/84101 doc mt(1) manpage has erroneous synopsis, etc f [2005/07/26] ports/84110 pav [update] finance/aqmoney to 0.6.3 f [2005/07/26] ports/84129 leeym [PATCH] devel/p5-Term-ANSIColor: update t f [2005/07/26] ports/84140 ports-bugs www/flashplugin-mozilla causes www/firefo s [2005/07/26] ports/84143 skv Update www/p5-Apache-Peek 1.02 -> 1.04, r o [2005/07/26] ports/84151 ports-bugs New port devel/p5-Algorithm-LCS Fast (XS) o [2005/07/27] docs/84154 doc Handbook somewhat off in use of /boot/ker f [2005/07/27] ports/84155 ports-bugs security/lockdown does not build with .de o [2005/07/27] ports/84159 clsung [PATCH] lang/pugs: fix plist o [2005/07/27] bin/84162 (t)csh: builtins commands with redirectio f [2005/07/27] ports/84171 leeym [PATCH] www/p5-Apache-GopherHandler: upda o [2005/07/27] conf/84172 loader.conf(5) is missing an entry for "d f [2005/07/27] ports/84178 leeym [PATCH] devel/p5-Class-Hook: fix $VERSION f [2005/07/27] ports/84179 leeym [PATCH] databases/p5-DBD-LDAP: remove aut o [2005/07/27] ports/84183 petef [PATCH] graphics/p5-Graphics-ColorNames: o [2005/07/27] ports/84185 scrappy [PATCH] www/p5-Maypole-Component: fix $VE f [2005/07/28] ports/84197 ports-bugs games/quake2forge cannot be built without o [2005/07/28] kern/84199 dlinfo in libexec/elf-rtld/rtld.c does no p [2005/07/28] docs/84200 ceri dump(8) manpage has restore's description o [2005/07/28] ports/84201 mezz [patch] x11-fonts/webfonts: do not rename o [2005/07/28] bin/84208 qa [sysinstall] "Leave the MBR untouched" op o [2005/07/28] ports/84211 demon net-mgmt/mrtg mistakingly deems IPv6 perl o [2005/07/28] ports/84212 cy misc/screen port can't talk to TTYs o [2005/07/28] kern/84215 jail: wildcard ip (INADDR_ANY) should not o [2005/07/28] kern/84219 [patch] [ncurses] ncurses.h wchar_t confl o [2005/07/28] ports/84223 ports-bugs New port: www/skytemplate o [2005/07/28] kern/84225 gnn losing default route changing netmask on o [2005/07/28] ports/84229 leeym [PATCH] textproc/p5-Lingua-Ident: update f [2005/07/28] ports/84233 leeym [PATCH] www/p5-Apache-ParseFormData: upda f [2005/07/28] ports/84243 sem Fix of pkg-plist for palm/prc-tools port o [2005/07/28] ports/84249 sergei Update Port: security/snort to 2.4.0 f [2005/07/28] ports/84254 ports-bugs update port: textproc/redland to install o [2005/07/28] ports/84255 tobez [patch] lang/perl5.8 (5.8.7) and freebsd. p [2005/07/29] docs/84264 keramida [patch] ata(4) manpage disagrees with tun o [2005/07/29] docs/84265 doc [patch] chmod(1) manpage omits implicatio o [2005/07/29] docs/84266 doc security(8) manpage should have init(8)'s o [2005/07/29] docs/84267 doc chflags(1) manual doesn't say it's affect o [2005/07/29] docs/84268 doc chmod(1) manpage's BUGS entry is either w o [2005/07/29] docs/84271 ceri compress(1) doesn't warn about nasty link o [2005/07/29] ports/84272 edwin Patch audio/xmms-faad p [2005/07/29] docs/84273 keramida disktab(5) manual has bad SEE ALSO o [2005/07/29] ports/84280 ports-bugs [PATCH] net/tintin++-devel: update to 1.9 o [2005/07/29] ports/84283 sem mail/libspf2 needs update for mail/exim 4 o [2005/07/29] ports/84284 roam Update port: ftp/curlpp to 0.5.1 o [2005/07/29] bin/84298 [patch] allow mount(8) to recognize relat o [2005/07/29] ports/84299 knu A (possible) bug in ports/Mk/bsd.ruby.mk o [2005/07/29] ports/84304 vs graphics/ida: Install exiftran o [2005/07/29] kern/84311 sound [sound] 82801FB/FR/FW/FRW Intel High Defi o [2005/07/29] ports/84314 ports-bugs [New port] www/xshttpd o [2005/07/29] docs/84317 doc fdp-primer doesn't show class=USERNAME di o [2005/07/29] ports/84319 ports-bugs New port print/cups-magicolor. o [2005/07/29] ports/84323 ports-bugs linuxfdisk port builds, installs and work o [2005/07/30] ports/84329 ports-bugs New port: x11-fonts/proggy_fonts a monosp o [2005/07/30] ports/84337 anholt Update port: science/paraview to 2.0.3 o [2005/07/30] ports/84340 ports-bugs Request port update: /devel/fnccheck 1.2 o [2005/07/30] ports/84342 ports-bugs New port: security/klamav o [2005/07/31] ports/84369 ports-bugs new port, x11-toolkits/iwidgets, replacem o [2005/07/31] ports/84375 ports-bugs [Update Port] x11-themes/kde-windeco-crys o [2005/07/31] ports/84376 ports-bugs [Update Port] x11-themes/kde-style-comix o [2005/07/31] ports/84378 gnome [PATCH] www/firefox: Enable CJK Font Fami o [2005/07/31] ports/84379 gnome [PATCH] www/mozilla: Enable CJK Font Fami o [2005/07/31] ports/84382 ports-bugs Add cdb map lookups to mail/postfix o [2005/07/31] ports/84383 vsevolod [maintainer] net/ejabberd port reorganiza o [2005/07/31] kern/84386 Feature Request: PPPoA Authentication bui o [2005/07/31] ports/84387 ports-bugs [MAINTAINER] Update www/eventum to 1.6.0 s [2005/07/31] ports/84395 kde KDE: Lock Screen window change language e o [2005/07/31] docs/84408 doc dump(8) manpage doesn't require an option o [2005/07/31] docs/84409 doc vinum-object-naming.html -v/-U typo o [2005/08/01] ports/84414 danfe [NEW PORT] x11-fm/tdfsb - A 3D Filesystem f [2005/08/01] ports/84427 security/squidclam: squidclam not running o [2005/08/01] ports/84428 ports-bugs Update port: databases/gnats4 to 4.1.0 o [2005/08/01] ports/84429 roam Update port: ftp/curlpp to 0.5.2 o [2005/08/01] ports/84430 girgen [New Port] databases/pgcluster74-(server| o [2005/08/01] ports/84439 dd [update] net/http_ping to 20050629 o [2005/08/01] ports/84440 ports-bugs [patch] Fix irc/epic5 Makefile to remove o [2005/08/01] ports/84442 ports-bugs [update] misc/ringtonetools to 2.25 o [2005/08/01] ports/84462 ports-bugs New Port: audio/id3mtag Commandline masst o [2005/08/01] ports/84465 tobez Update port: mail/p5-Mail-Box v2.042 => v o [2005/08/02] docs/84467 doc bsdlabel(8) manpage uses archaic "pack" i o [2005/08/02] ports/84468 danfe [UPDATE]: x11-wm/wmii o [2005/08/02] kern/84471 sound [sound][patch] no sound ICH4 (Analog Devi o [2005/08/02] ports/84472 ports-bugs Upgraded Port: mail/dcc-dccd o [2005/08/02] ports/84474 ports-bugs new distfile location for net/gnome-vnc o [2005/08/02] ports/84476 ports-bugs update port: lang/t3x o [2005/08/02] ports/84478 ports-bugs update port: lang/alisp o [2005/08/02] docs/84485 doc [patch] apropos(1) manpage missing ENVIRO o [2005/08/02] ports/84487 ports-bugs New port: textproc/p5-Syntax-Highlight-Pe o [2005/08/02] ports/84489 portmgr Depreciated MACHINE_ARCH being used in bs o [2005/08/02] ports/84490 ports-bugs [PATCH]: New version x11/windowlab 1.26 - o [2005/08/02] ports/84491 ports-bugs [PATCH] security/vpnc - unbreak vpnc-disc o [2005/08/02] ports/84492 sem [maintainer update] sysutils/pv to 0.9.1 o [2005/08/02] bin/84494 rpcbind TCP cannot be told to bind to a s o [2005/08/02] ports/84495 ports-bugs [NEW PORT] mail/policyd-sf: Greylisting/s o [2005/08/02] ports/84497 ports-bugs security/tor startup script bug o [2005/08/02] ports/84499 lioux Update port: devel/codeville to 0.1.13 o [2005/08/02] ports/84501 ports-bugs update lang/oo2c o [2005/08/03] ports/84502 ports-bugs [New Port] mail/gmime2-sharp, slave to ma o [2005/08/03] kern/84503 Deadlock when filesystem is full o [2005/08/03] ports/84504 sem MAINTAINER UPDATE: net-mgmt/nagios to 2.0 o [2005/08/03] ports/84505 ports-bugs Updating Port: qSheff o [2005/08/03] ports/84506 sem MAINTAINER UPDATE: net-mgmt/nagios-plugin o [2005/08/03] kern/84507 sound [sound] fm801: Not every card supports va o [2005/08/03] docs/84509 doc Update some items at porters handbook abo o [2005/08/03] ports/84511 ports-bugs typo in mail/spamass-milter/pkg-message o [2005/08/03] ports/84512 ports-bugs [MAINTAINER] misc/gaim-guifications: upda o [2005/08/03] ports/84513 ports-bugs [NEW PORT] security/p5-Data-Password: Per o [2005/08/03] ports/84515 ports-bugs Update port: secuirty/openssh-portable to o [2005/08/03] ports/84517 sem remove port russian/nagios o [2005/08/03] docs/84519 doc [patch] mdoc(7) manpage needs more about o [2005/08/03] bin/84520 whatis(1) program burps on /bin/[ o [2005/08/03] ports/84521 ports-bugs New port: sysutils/nctop o [2005/08/03] ports/84523 gnome [PATCH] www/firefox: fix preference savin o [2005/08/03] ports/84530 ports-bugs [New Port] net-mgmt/ourmon: Network Monit o [2005/08/03] ports/84532 ports-bugs www/urchin5: minor software update o [2005/08/04] docs/84538 doc sk(4) driver supports Marvell 88E800x chi o [2005/08/04] ports/84541 sem [MAINTAINER UPDATE] Update textproc/stard o [2005/08/04] ports/84545 ports-bugs New port:lang/pecl-runkit A PECL extensio o [2005/08/04] ports/84546 ports-bugs New port: devel/BisonGen - General-purpos o [2005/08/04] docs/84549 doc [patch] errno(2) manpage uses "<...>" for o [2005/08/04] docs/84550 ru mdoc(7) manpage erroneously requires SYNO o [2005/08/04] ports/84551 ports-bugs maintainer-update of mail/mutt-devel o [2005/08/04] ports/84554 lawrance [PATCH]: Unbreak net/xprobe on 4.x o [2005/08/04] i386/84555 i386 boot2 unable to load kernel directly. o [2005/08/04] ports/84558 netchild [patch] sylpheed-claws 1.9.13 fails to bu o [2005/08/04] kern/84559 [patch] Intel 945GNT motherboard ethernet o [2005/08/04] ports/84560 ports-bugs [patch] unbreak gkrelltop on 4.x o [2005/08/04] ports/84561 ports-bugs [new port] audio/xmms2 o [2005/08/04] ports/84564 gnome [PATCH] irc/xchat2 on amd64 should --enab o [2005/08/05] bin/84569 rm -W sometime does not work f [2005/08/05] ports/84571 lawrance sysutils/rdiff-backup: update site in pkg o [2005/08/05] ports/84572 lawrance sysutils/rdiff-backup-devel: update site f [2005/08/05] ports/84577 hq Maintainer update: www/resin3 3.0.14 o [2005/08/05] ports/84578 gnome mozilla-devel build fails: gmake[2]: *** o [2005/08/05] ports/84580 olgeni [patch] lang/erlang-doc: Correct checksum o [2005/08/05] conf/84581 [patch] Teach config(8) to look for kerne o [2005/08/05] ports/84585 vsevolod New port: www/py-twistedWeb2 Twisted Web2 o [2005/08/05] ports/84586 ports-bugs [NEW PORT] devel/rubygem-stream: Interfac o [2005/08/05] ports/84587 ports-bugs [NEW PORT] devel/rubygem-rgl: Framework f r [2005/08/05] ports/84591 portmgr [PATCH] devel/preps-gui: Update to 2.0.4 o [2005/08/06] ports/84598 vsevolod x11-toolkits/qscintilla: update and add f o [2005/08/06] ports/84599 vsevolod devel/py-sip: update o [2005/08/06] ports/84600 vsevolod x11-toolkits/py-qt: update and improve po o [2005/08/06] ports/84601 vsevolod x11-toolkits/py-kde: add docs, improve po o [2005/08/06] ports/84603 ports-bugs [PATCH] ports update: net/unison-devel o [2005/08/06] ports/84604 ports-bugs New Port: devel/p5-Term-ReadPassword o [2005/08/06] ports/84605 ports-bugs Maintainer-Update of www/bricolage o [2005/08/06] ports/84606 ports-bugs Update port: audio/taglib to version 1.4 o [2005/08/06] ports/84607 mharo ftp/proftpd: IPv6 Always Enabled o [2005/08/06] usb/84608 usb Sony digital camera DSC-P100, rev 2.00/5. o [2005/08/06] ports/84609 nik [PATCH] games/rtcw: Unbreak PLIST f [2005/08/06] ports/84613 hq New port: java/javasvn o [2005/08/06] ports/84614 ports-bugs New port: java/eclipse-javasvn o [2005/08/06] ports/84615 ports-bugs Update port: devel/pear-HTML_QuickForm o [2005/08/06] ports/84616 ports-bugs Update port: databases/pecl-memcache o [2005/08/06] ports/84617 ports-bugs [NEW PORT] www/p5-WWW-Mixi: "Perl module o [2005/08/06] ports/84618 ports-bugs Update port: deskutils/vym p [2005/08/06] docs/84619 murray [patch] pcvt(4) manpage uses "their" for o [2005/08/06] docs/84620 doc [patch] xargs(1) manpage has "utility" an o [2005/08/06] docs/84621 jcamou handbook - document the correct use of rc o [2005/08/06] ports/84622 ports-bugs enhancement to make emacs-calc obey ${PRE o [2005/08/06] ports/84623 sergei devel/newfile: Add COMMENT= to template o [2005/08/06] ports/84624 ports-bugs [MAINTAINER UPDATE] games/tuxpaint: fix w o [2005/08/06] ports/84625 ports-bugs New port: lang/twelf A meta-logical frame o [2005/08/06] ports/84626 ports-bugs [UPDATE] games/asc: update to version 1.1 o [2005/08/06] ports/84627 sem new port: security/ipguard - Tool designe o [2005/08/06] ports/84628 gnome Update devel/anjuta from 1.2.2 to 1.2.3. o [2005/08/06] ports/84629 ports-bugs [NEW PORT] security/p5-Crypt-NULL: Perl i o [2005/08/06] ports/84630 lioux New upstream dnspython (1.3.4) is availab o [2005/08/07] ports/84633 ports-bugs [MAINTAINER] security/openvpn: rcNG-ify, o [2005/08/07] kern/84634 fjoe [patch] Utility to control GEOM uzip clas o [2005/08/07] ports/84636 ports-bugs [PATCH] devel/p5-Getargs-Long: update to o [2005/08/07] ports/84640 lawrance requesting removal of polish/sms and repl o [2005/08/07] ports/84641 lawrance [maintainer-update] comms/gnokii: update o [2005/08/07] ports/84642 ports-bugs New port: net/pear-Net_LDAP o [2005/08/07] ports/84643 ports-bugs New port: devel/pear-PHPDoc o [2005/08/07] docs/84645 doc intro(6) manpage should always be install o [2005/08/07] docs/84646 doc terminfo(5) manpage confuses man program. o [2005/08/07] ports/84647 lioux [PATCH] x11/rxvt, x11/rxvt-devel: fix ERA o [2005/08/07] ports/84650 ale customizable pid filename for databases/m o [2005/08/07] ports/84651 ports-bugs comms/java-commapi-freebsd lacks support o [2005/08/07] amd64/84652 amd64 kbdmap -r dumps core o [2005/08/07] ports/84653 ports-bugs New port: audio/emu10kx o [2005/08/07] ports/84655 ports-bugs [New port] sysutils/raincoat p [2005/08/07] docs/84660 murray Typo in bios(9) manual page o [2005/08/08] ports/84663 ports-bugs Update of net/throttled port o [2005/08/08] bin/84664 phk [patch] gctl_free() isn't called in fdisk o [2005/08/08] i386/84667 i386 annoying installation problem o [2005/08/08] docs/84670 doc [patch] tput(1) manpage missing ENVIRONME o [2005/08/08] docs/84671 ru [patch] mdoc(7) manpage has "options" typ o [2005/08/08] ports/84672 java Fix for the internal browser in java/ecli o [2005/08/08] misc/84674 Installer trying to install bad package t o [2005/08/08] www/84675 www Dangling symlinks o [2005/08/08] docs/84676 doc [patch] atacontrol manpage not current fo o [2005/08/08] ports/84678 trevor [PATCH] fix build of audio/festival on 6. o [2005/08/08] ports/84680 ports-bugs port textproc/py-pyx12 - Update to pyx12- o [2005/08/09] ports/84687 ports-bugs New port: www/selenium o [2005/08/09] ports/84689 gnome [PATCH] sysutils/system-tools-backends: t o [2005/08/09] ports/84690 ports-bugs [update] cad/admesh - use PLIST and respe o [2005/08/09] ports/84694 ports-bugs [PATCH] textproc/skim: s/bash/sh/g and co o [2005/08/09] ports/84695 sobomax [unbreak] net/l2tpd o [2005/08/09] ports/84696 ports-bugs [MAINTAINER UPDATE] www/phpmyfaq: upgrade o [2005/08/09] ports/84697 ports-bugs [maintainer-update] Postgis upgrade from o [2005/08/09] ports/84699 perky Update port: devel/libsigsegv to 2.2 o [2005/08/09] ports/84701 ports-bugs [NEW PORT] audio/cowbell: elegant id3 edi o [2005/08/09] ports/84702 ports-bugs [MAINTAINER] comms/qicosi: update to new o [2005/08/09] docs/84704 doc bsdlabel(8) manpage has bad -m descriptio o [2005/08/09] i386/84705 i386 fdisk(8) program warning about sector num o [2005/08/09] ports/84706 knu unbreak and update textproc/ruby-xslt to o [2005/08/09] ports/84707 knu unbreak and update textproc/ruby-rss.alt f [2005/08/09] ports/84709 pav Update port: devel/bison to version 2.0 o [2005/08/09] ports/84710 ports-bugs Update port: german/selfhtml to version 8 o [2005/08/09] ports/84711 krion rcNG script for net-mgmt/arpwatch o [2005/08/09] ports/84712 ports-bugs new port: archivers/ecm - Compresses CD i o [2005/08/09] ports/84715 hrs Upgrade ports/cad/alliance to version 5.0 o [2005/08/09] ports/84718 girgen [PATCH] databases/postgresql74-server: Ad o [2005/08/09] ports/84719 marcus [NEW PORT] devel/libnotify: desktop notif o [2005/08/09] ports/84720 girgen [PATCH] databases/postgresql80-server: Ad o [2005/08/09] ports/84721 marcus [NEW PORT] deskutils/notification-daemon: o [2005/08/09] ports/84722 vsevolod Update port: net/ejabberd fix fetch point o [2005/08/09] ports/84723 ports-bugs [UPDATE] chinese/auto-tw-l10n: upgrade to o [2005/08/09] ports/84724 ale New port for MPFR library and fix broken o [2005/08/10] ports/84725 ports-bugs Update Port: security/base to 1.1.4 o [2005/08/10] kern/84728 [sound] [patch] ac97 broken mixing capabi o [2005/08/10] ports/84729 ports-bugs Maintainer Update: games/ninix-aya to 3.4 o [2005/08/10] docs/84730 doc Section 20.4.13 error o [2005/08/10] ports/84735 ports-bugs Maintainer Update: games/pykawari to 8.2. f [2005/08/10] docs/84737 jcamou Broken URL in amd(8) o [2005/08/10] ports/84738 pav Update port: games/dsnake (misc fixes) o [2005/08/10] ports/84739 ports-bugs New Port: devel/p5-Danga-Socket o [2005/08/10] ports/84741 ports-bugs Make ports/cad/tkgate use Tcl/Tk 8.4 o [2005/08/10] ports/84742 phantom make ports/java/jdk14 use dynamic Motif l o [2005/08/10] ports/84743 nobutaka Allow user to disable some features in po o [2005/08/10] ports/84744 nobutaka Allow user to disable libcaca in ports/mu o [2005/08/10] ports/84745 netchild Make the skype script hide the anoying me o [2005/08/10] ports/84746 ports-bugs Fix ports/science/felt to not need Xaw3D o [2005/08/10] ports/84748 lesi Upgrade ports/x11-toolkits/Xaw3d to versi o [2005/08/10] ports/84749 ports-bugs databases/p5-Cache-Memcached does not dep o [2005/08/10] conf/84752 [patch] 100.clean-disks cleans file syste o [2005/08/10] ports/84756 ports-bugs nagios-plugins doesn't recognise dependan o [2005/08/10] ports/84757 ports-bugs new port: graphics/bmp2html - A bmp to ht o [2005/08/10] ports/84760 ports-bugs Update port: sysutils/e2fsprogs o [2005/08/10] kern/84761 shutdown() of non-connected socket should o [2005/08/10] ports/84762 ports-bugs Update port: chinese/vim-scdoc o [2005/08/10] docs/84764 doc [patch] hosts.equiv(5) manpage should SEE o [2005/08/10] docs/84765 doc [patch] ls(1) manpage doesn't describe bl o [2005/08/10] ports/84766 ports-bugs update port: devel/ocaml-equeue 2.1 o [2005/08/10] ports/84767 ports-bugs update port: www/ocaml-net to 1.1 o [2005/08/10] ports/84774 lioux net/azureus is now broken because of upgr o [2005/08/10] ports/84775 ports-bugs new port: databases/kmysqladmin f [2005/08/10] ports/84777 pav Update irc/ircd-hybrid to 7.1.1 o [2005/08/10] ports/84779 vsevolod New port: net/py-radix - a python radix t o [2005/08/11] ports/84782 ache [UPDATE] archivers/rar has been updated t o [2005/08/11] ports/84783 ports-bugs [Maintainer Update] games/fgkicker 0.9 o [2005/08/11] ports/84786 openoffice OpenOffice 1.1.5 fails to build when LC_A o [2005/08/11] ports/84788 barner New Port: math/proofgeneral o [2005/08/11] docs/84790 doc Error in SYSCALL_MODULE(9) manual page o [2005/08/11] ports/84791 alfred [PATCH] Add amd64 support to devel/st o [2005/08/11] ports/84796 ports-bugs new port: archivers/ppmd - A fast archive o [2005/08/11] kern/84797 [patch] State engine in the libutils prop o [2005/08/11] ports/84798 ports-bugs new port: security/bcrypt - A cross-platt o [2005/08/11] conf/84800 obrien [patch] setting CPUTYPE=nocona on an Inte o [2005/08/11] ports/84803 vanilla [UPDATE] chinese/gcin: upgradet to 1.0.2 o [2005/08/11] ports/84804 ports-bugs New port: games/kamikaze - bomberman game o [2005/08/11] docs/84806 doc mdoc(7) manpage has section ordering prob o [2005/08/11] docs/84807 jcamou [patch] sh(1) manpage built-in list omits o [2005/08/11] ports/84813 ports-bugs update port: lang/sketchy o [2005/08/11] ports/84815 jeh Update port: security/uvscan-dat fix fetc o [2005/08/11] ports/84817 ports-bugs [maintainer update] Reorganize www/nanobl o [2005/08/11] ports/84819 ports-bugs [MAINTAINER] math/coq: enable on ia64 o [2005/08/11] ports/84821 ports-bugs Upgrade: misc/lesspipe to 1.52 o [2005/08/11] kern/84823 [PATCH] bpf in non-blocking mode is broke o [2005/08/11] ports/84826 pav Update port: audio/moc Version update o [2005/08/11] misc/84827 operator error during make delete-old o [2005/08/12] ports/84831 ports-bugs [maintainer] www/quixote: update to 2.1 o [2005/08/12] misc/84833 include make.conf NO_* targets into delet o [2005/08/12] ports/84835 ports-bugs Update port: mail/postfix-policyd-weight o [2005/08/12] ports/84837 ports-bugs [maintainer-update]: x11-fm/emelfm2 updat f [2005/08/12] ports/84839 linimon Missing Dependency www/p5-MasonX-Maypole o [2005/08/12] ports/84840 ports-bugs patch: some lines in Mk/bsd.sites.mk are o [2005/08/12] ports/84848 ports-bugs new port: finance/ccard - A command line o [2005/08/12] docs/84849 doc [patch] fdisk(8) manpage doesn't warn fdi o [2005/08/12] docs/84850 doc [patch] strspn(3) manpage description is o [2005/08/12] ports/84852 ports-bugs new port: sysutils/vii - Execute a comma o [2005/08/12] ports/84853 ports-bugs [New port] games/linux-q3apoint o [2005/08/12] ports/84854 ports-bugs update port: audio/xmms-fc 0.5.3 -> 0.5.4 o [2005/08/12] ports/84855 ports-bugs new port: audio/bmp-fc - A Future Compose o [2005/08/13] ports/84856 ports-bugs update: audio/resid 0.15 -> 0.16, take ma o [2005/08/13] ports/84858 ports-bugs update: audio/sfront 0.88 -> 0.89, fix si o [2005/08/13] ports/84859 barner New Port: math/isabelle o [2005/08/13] ports/84864 ports-bugs Maintainer update port:net/evaq o [2005/08/13] ports/84866 ports-bugs update ports: www/tdiary o [2005/08/13] ports/84867 ports-bugs update ports: www/tdiary-devel o [2005/08/13] ports/84868 ports-bugs [MAINTAINER UPDATE] sysutils/samefile to o [2005/08/13] ports/84869 ports-bugs New port: textproc/regex-coach o [2005/08/13] ports/84873 ports-bugs [Maintainer Update] lang/ecl to version 0 o [2005/08/13] ports/84876 ports-bugs [NEW PORT] print/acroread7-esp: The Acrob o [2005/08/13] ports/84880 ports-bugs [NEW PORT] print/acroread7-nld: The Acrob o [2005/08/13] ports/84881 ports-bugs [NEW PORT] print/acroread7-dan: The Acrob o [2005/08/13] ports/84882 ports-bugs [NEW PORT] print/acroread7-nor: The Acrob o [2005/08/13] ports/84883 ports-bugs [NEW PORT] french/acroread7-fra: The Acro o [2005/08/13] ports/84884 ports-bugs [NEW PORT] german/acroread7-deu: The Acro o [2005/08/13] ports/84886 ports-bugs [NEW PORT] japanese/acroread7-jpn: The Ac o [2005/08/13] ports/84887 ports-bugs [NEW PORT] chinese/acroread7-cht: The Acr o [2005/08/13] ports/84888 ports-bugs [NEW PORT] chinese/acroread7-chs: The Acr o [2005/08/13] ports/84889 ports-bugs [NEW PORT] print/acroread7-ita: The Acrob o [2005/08/13] ports/84890 ports-bugs [NEW PORT] korean/acroread7-kor: The Acro o [2005/08/13] ports/84891 ports-bugs [NEW PORT] print/acroread7-ptb: The Acrob o [2005/08/13] ports/84892 ports-bugs [NEW PORT] print/acroread7-sve: The Acrob o [2005/08/13] ports/84893 ports-bugs [NEW PORT] print/acroread7-suo: The Acrob o [2005/08/14] ports/84895 ports-bugs [Update Port] multimedia/gcfilms Version o [2005/08/14] ports/84896 gnome [PATCH] www/mozilla-devel: fix Icon path o [2005/08/14] ports/84898 naddy [patch] audio/mpg321 - provide an user-ag o [2005/08/14] ports/84902 ports-bugs [maintainer update] New version of www/p5 o [2005/08/14] ports/84905 demon [PATCH] math/glpk: update to 4.8 o [2005/08/14] ports/84907 ports-bugs maintainer-update of mail/mutt-devel o [2005/08/14] ports/84909 vanilla [irc/irssi] Manpage states incorrect dire o [2005/08/14] ports/84910 ports-bugs New port: databases/p5-SQL-Abstract-Limit o [2005/08/14] bin/84911 [patch] ndisgen can't cope with .sys-file o [2005/08/14] ports/84912 ports-bugs New port: databases/DBIx-Class, SQL to OO o [2005/08/14] docs/84913 doc bsdlabel(8) manpage seems wrong about fsi o [2005/08/14] docs/84914 jcamou [patch] sh(1) manpage omits ways to escap o [2005/08/14] ports/84915 ports-bugs new port: www/bannerfilter - A squid redi o [2005/08/14] ports/84916 ports-bugs [PATCH] multimedia/transcode: Update to 1 o [2005/08/14] ports/84917 ports-bugs [patch] audio/id3lib - fix shared lib lin o [2005/08/14] ports/84918 ports-bugs [UPDATE] devel/allegro: update to version o [2005/08/14] ports/84919 ports-bugs [PATCH] multimedia/dvdrip: update to 0.52 o [2005/08/14] misc/84920 math programs reporting incorrect values o [2005/08/14] ports/84921 ports-bugs [UPDATE] games/fargoal: update port and a o [2005/08/14] ports/84923 ports-bugs [NEW PORT] games/annelid - Remake of the o [2005/08/14] ports/84924 ports-bugs [NEW PORT] games/duel - An overhead, Open o [2005/08/14] ports/84925 ports-bugs [NEW PORT] games/galaxyhack - AI script b o [2005/08/14] ports/84926 ports-bugs [MAINTAINER UPDATE] emulators/generator: o [2005/08/14] ports/84927 ports-bugs [MAINTAINER UPDATE] emulators/generator-c o [2005/08/14] ports/84928 ports-bugs [MAINTAINER] math/asymptote: update to 0. o [2005/08/14] ports/84929 ports-bugs [irc/bitlbee] Add WITH_MSN6_FEATURES flag o [2005/08/15] ports/84937 ports-bugs 4.11 & hylafax port doesn't work o [2005/08/15] ports/84938 ports-bugs x11/rxvt-unicode incorrectly handles inco o [2005/08/15] ports/84940 vsevolod new port: x11/tkXwin (Tcl/Tk library to d o [2005/08/15] ports/84941 vsevolod update port: net/tkabber-devel (fresh cvs o [2005/08/15] ports/84945 ports-bugs new port: graphics/exrtools - Utilities f p [2005/08/15] docs/84946 rwatson 'Mbuf' instead of 'mbuf' in libmemstat(3) 3086 problems total. From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 12:00:41 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 7A9FC16A41F for ; Mon, 15 Aug 2005 12:00:41 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EBFF43D45 for ; Mon, 15 Aug 2005 12:00:41 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7FC0f16017453 for ; Mon, 15 Aug 2005 12:00:41 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7FC0fTj017452; Mon, 15 Aug 2005 12:00:41 GMT (envelope-from gnats) Date: Mon, 15 Aug 2005 12:00:41 GMT Message-Id: <200508151200.j7FC0fTj017452@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Gleb Smirnoff Cc: Subject: Re: bin/82625: [PATCH] Enhancement to ping to ping through X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Gleb Smirnoff List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 12:00:41 -0000 The following reply was made to PR bin/82625; it has been noted by GNATS. From: Gleb Smirnoff To: Chris Hellberg Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: bin/82625: [PATCH] Enhancement to ping to ping through Date: Mon, 15 Aug 2005 15:52:20 +0400 Chris, can you please comment this change? I can't understand it: @@ -780,13 +853,21 @@ } pr_pack((char *)packet, cc, &from, tv); if ((options & F_ONCE && nreceived) || - (npackets && nreceived >= npackets)) + (totpackets && ntransmitted >= totpackets)) break; } -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 14:20:09 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 C34DD16A41F for ; Mon, 15 Aug 2005 14:20:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48EDB43D49 for ; Mon, 15 Aug 2005 14:20:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7FEK9Ma036810 for ; Mon, 15 Aug 2005 14:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7FEK9De036809; Mon, 15 Aug 2005 14:20:09 GMT (envelope-from gnats) Resent-Date: Mon, 15 Aug 2005 14:20:09 GMT Resent-Message-Id: <200508151420.j7FEK9De036809@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, Jimmy Olgeni Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BE5416A42C for ; Mon, 15 Aug 2005 14:13:33 +0000 (GMT) (envelope-from olgeni@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6652543D45 for ; Mon, 15 Aug 2005 14:13:33 +0000 (GMT) (envelope-from olgeni@FreeBSD.org) Received: from freefall.freebsd.org (olgeni@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7FEDX8Q036627 for ; Mon, 15 Aug 2005 14:13:33 GMT (envelope-from olgeni@freefall.freebsd.org) Received: (from olgeni@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7FEDXq2036626; Mon, 15 Aug 2005 14:13:33 GMT (envelope-from olgeni) Message-Id: <200508151413.j7FEDXq2036626@freefall.freebsd.org> Date: Mon, 15 Aug 2005 14:13:33 GMT From: Jimmy Olgeni To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/84952: "panic: sbappendstream 1" while using net/mpd X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jimmy Olgeni List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 14:20:10 -0000 >Number: 84952 >Category: kern >Synopsis: "panic: sbappendstream 1" while using net/mpd >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 Aug 15 14:20:08 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: FreeBSD 6.0-BETA2 i386 >Organization: >Environment: System: FreeBSD olgeni.olgeni 6.0-BETA2 FreeBSD 6.0-BETA2 #2: Sat Aug 13 22:03:12 CEST 2005 olgeni@olgeni.olgeni:/usr/obj/usr/src/sys/GENERIC i386 >Description: While downloading data on a net/mpd GRE link, the following panic will occur: #0 doadump () at pcpu.h:165 165 pcpu.h: No such file or directory. in pcpu.h (kgdb) bt #0 doadump () at pcpu.h:165 #1 0xc0631ea8 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:397 #2 0xc06321bd in panic (fmt=0xc085d9c7 "sbappendstream 1") at /usr/src/sys/kern/kern_shutdown.c:553 #3 0xc066e296 in sbappendstream_locked (sb=0xc27f2050, m=0xc222b600) at /usr/src/sys/kern/uipc_socket2.c:741 #4 0xc06c8880 in tcp_input (m=0xc222b600, off0=20) at /usr/src/sys/netinet/tcp_input.c:1280 #5 0xc06c1c91 in ip_input (m=0xc222b600) at /usr/src/sys/netinet/ip_input.c:776 #6 0xc06a0cd6 in netisr_processqueue (ni=0xc096f7b8) at /usr/src/sys/net/netisr.c:235 #7 0xc06a0eba in swi_net (dummy=0x0) at /usr/src/sys/net/netisr.c:348 #8 0xc061f9b8 in ithread_loop (arg=0xc1e33480) at /usr/src/sys/kern/kern_intr.c:545 #9 0xc061edec in fork_exit (callout=0xc061f89c , arg=0xc1e33480, frame=0xd58d3d38) at /usr/src/sys/kern/kern_fork.c:789 #10 0xc07dc2dc in fork_trampoline () at /usr/src/sys/i386/i386/exception.s:208 A similar panic ("sbdrop") occurs on recent RELENG_5. >How-To-Repeat: Running any verbose command over a ssh link ("find /") will panic the client side. >Fix: Using ppp over tcp between the same hosts does not trigger the panic. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 14:20:10 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 B545616A41F; Mon, 15 Aug 2005 14:20:10 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 840C343D46; Mon, 15 Aug 2005 14:20:10 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (glebius@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7FEKAVL036868; Mon, 15 Aug 2005 14:20:10 GMT (envelope-from glebius@freefall.freebsd.org) Received: (from glebius@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7FEKAFL036864; Mon, 15 Aug 2005 14:20:10 GMT (envelope-from glebius) Date: Mon, 15 Aug 2005 14:20:10 GMT From: Gleb Smirnoff Message-Id: <200508151420.j7FEKAFL036864@freefall.freebsd.org> To: chellberg@juniper.net, glebius@FreeBSD.org, freebsd-bugs@FreeBSD.org, glebius@FreeBSD.org Cc: Subject: Re: bin/82625: [PATCH] Enhancement to ping to ping through X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 14:20:10 -0000 Synopsis: [PATCH] Enhancement to ping to ping through State-Changed-From-To: open->patched State-Changed-By: glebius State-Changed-When: Mon Aug 15 14:16:37 GMT 2005 State-Changed-Why: Functionality committed. Responsible-Changed-From-To: freebsd-bugs->glebius Responsible-Changed-By: glebius Responsible-Changed-When: Mon Aug 15 14:16:37 GMT 2005 Responsible-Changed-Why: I find the functionality very useful. In the past I made this by hand or with shell scripts. I have committed slightly edited patch version. The submitted patch breaks '-c' switch used without sweep. Also, the patch had several style(9) and mdoc(7) problems. Please, next time clean your patch thoroughly. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=82625 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 14:40:14 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 A33AE16A41F for ; Mon, 15 Aug 2005 14:40:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2159D43D46 for ; Mon, 15 Aug 2005 14:40:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7FEeEmD038363 for ; Mon, 15 Aug 2005 14:40:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7FEeDN2038362; Mon, 15 Aug 2005 14:40:13 GMT (envelope-from gnats) Resent-Date: Mon, 15 Aug 2005 14:40:13 GMT Resent-Message-Id: <200508151440.j7FEeDN2038362@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, Vladimir Sharun Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2963316A41F for ; Mon, 15 Aug 2005 14:38:06 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CEEC43D5F for ; Mon, 15 Aug 2005 14:38:04 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id j7FEc3HM074053 for ; Mon, 15 Aug 2005 14:38:03 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j7FEc3HN074052; Mon, 15 Aug 2005 14:38:03 GMT (envelope-from nobody) Message-Id: <200508151438.j7FEc3HN074052@www.freebsd.org> Date: Mon, 15 Aug 2005 14:38:03 GMT From: Vladimir Sharun To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/84953: NFS locking issue in RELENG_6/i386/SMP X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 14:40:14 -0000 >Number: 84953 >Category: misc >Synopsis: NFS locking issue in RELENG_6/i386/SMP >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 Aug 15 14:40:13 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Vladimir Sharun >Release: FreeBSD6 >Organization: UkrNet ISP >Environment: FreeBSD krokodil.ukr.net 6.0-BETA2 FreeBSD 6.0-BETA2 #5: Sun Aug 7 19:15:28 EEST 2005 root@krokodil.ukr.net:/usr/obj/usr/src/sys/FISH.MP i386 >Description: While setting a lock via fcntl on NFSv3 mount point, we stuck in uninterruptible wait (ps axc show D state for process. Mounting NFS share without rpcbind/rpc.statd/rpc.lockd gaves errno 45 EOPNOTSUPP Operation not supported >How-To-Repeat: #include #include #include int main() { int lockfd; char* tempfile="/mnt/nfs/testfile"; lockfd=open(tempfile,O_CREAT); printf("Open errno: %d\n",errno); if (flock(lockfd, LOCK_SH|LOCK_NB)==-1) { printf("ERROR shared lock: %d\n",errno); } if (flock(lockfd, LOCK_EX|LOCK_NB)==-1) { printf("ERROR exclusive lock: %d\n",errno); } close(lockfd); } >Fix: Rollback to RELENG_5 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 14:42:09 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 9C85016A41F; Mon, 15 Aug 2005 14:42:09 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B3C443D46; Mon, 15 Aug 2005 14:42:09 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (glebius@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7FEg9u4038534; Mon, 15 Aug 2005 14:42:09 GMT (envelope-from glebius@freefall.freebsd.org) Received: (from glebius@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7FEg9Nu038530; Mon, 15 Aug 2005 14:42:09 GMT (envelope-from glebius) Date: Mon, 15 Aug 2005 14:42:09 GMT From: Gleb Smirnoff Message-Id: <200508151442.j7FEg9Nu038530@freefall.freebsd.org> To: glebius@FreeBSD.org, freebsd-bugs@FreeBSD.org, glebius@FreeBSD.org Cc: Subject: Re: kern/84952: "panic: sbappendstream 1" while using net/mpd X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 14:42:09 -0000 Synopsis: "panic: sbappendstream 1" while using net/mpd Responsible-Changed-From-To: freebsd-bugs->glebius Responsible-Changed-By: glebius Responsible-Changed-When: Mon Aug 15 14:41:52 GMT 2005 Responsible-Changed-Why: Take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=84952 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 14:50:26 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 5CA8516A41F for ; Mon, 15 Aug 2005 14:50:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC09043D48 for ; Mon, 15 Aug 2005 14:50:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7FEoPi5038727 for ; Mon, 15 Aug 2005 14:50:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7FEoP6p038726; Mon, 15 Aug 2005 14:50:25 GMT (envelope-from gnats) Resent-Date: Mon, 15 Aug 2005 14:50:25 GMT Resent-Message-Id: <200508151450.j7FEoP6p038726@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, Alexander Leidinger Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E39716A41F for ; Mon, 15 Aug 2005 14:49:32 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 463E643D46 for ; Mon, 15 Aug 2005 14:49:32 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id j7FEnWxu076069 for ; Mon, 15 Aug 2005 14:49:32 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j7FEnW9Q076068; Mon, 15 Aug 2005 14:49:32 GMT (envelope-from nobody) Message-Id: <200508151449.j7FEnW9Q076068@www.freebsd.org> Date: Mon, 15 Aug 2005 14:49:32 GMT From: Alexander Leidinger To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: kern/84954: [CARDBUS] cbb alloc res fail (with hw.cardbus.debug=1 output) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 14:50:26 -0000 >Number: 84954 >Category: kern >Synopsis: [CARDBUS] cbb alloc res fail (with hw.cardbus.debug=1 output) >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 15 14:50:25 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Alexander Leidinger >Release: 7-current as of Aug 24 >Organization: >Environment: Tested with i386 -current from Jul 23 to Aug 14. >Description: I've bought a D-Link DFE-690TXD. When I insert it, I get: ---snip--- TUPLE: LINKTARGET [3]: 43 49 53 Manufacturer ID: 49010000 Functions: Network Adaptor, Multi-Functioned Function Extension: 0102 Function Extension: 0280969800 Function Extension: 0200e1f505 Function Extension: 040600e04c390010 TUPLE: Unknown(0x1c) [2]: 02 ff cardbus0: Opening BAR: type=IO, bar=10, len=0100 cardbus0: Opening BAR: type=MEM, bar=14, len=0200 CIS reading done cardbus0: Non-prefetchable memory at 88000000-880001ff cbb alloc res fail cardbus0: Can't get memory for IO ports found-> vendor=0x1186, dev=0x1340, revid=0x10 bus=2, slot=0, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0000, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0xa8 (5040 ns), mingnt=0x20 (8000 ns), maxlat=0x40 (16000 ns) intpin=a, irq=255 powerspec 2 supports D0 D1 D2 D3 current D0 cbb alloc res fail rl0: couldn't map ports/memory cbb alloc res fail rl0: couldn't map ports/memory cardbus0: at device 0.0 (no driver attached) pci2:0:0: Transition from D0 to D3 ---snip--- This is the first time I use the cardbus slot of my laptop (the onboard NIC has a broken connector), so I don't know if this is a recent regression or if the slot never worked. This is not a hardware problem (Windows can use the card as expected). A complete verbose dmesg (with -current as of Jul 23) is available at http://www.Leidinger.net/FreeBSD/dmesg.laptop.bz2 (7k). >How-To-Repeat: Inserting the network card. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 15:26:08 2005 Return-Path: X-Original-To: freebsd-bugs@FreeBSD.org 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 E126916A41F; Mon, 15 Aug 2005 15:26:08 +0000 (GMT) (envelope-from chellberg@juniper.net) Received: from up-smtp.jnpr.net (ixe-nat1.juniper.net [193.110.54.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43CC243D53; Mon, 15 Aug 2005 15:26:08 +0000 (GMT) (envelope-from chellberg@juniper.net) Received: from bottom.jnpr.net ([172.26.192.135]) by up-smtp.jnpr.net with Microsoft SMTPSVC(6.0.3790.211); Mon, 15 Aug 2005 16:25:59 +0100 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1250" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Date: Mon, 15 Aug 2005 16:25:59 +0100 Message-ID: <5472C55F92A5714F866035BCB529912C02E2FA5B@bottom.jnpr.net> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: bin/82625: [PATCH] Enhancement to ping to ping through Thread-Index: AcWhpJJMLFDokKh3SZK+ozF+XPuAgQACONsg From: "Chris Hellberg" To: "Gleb Smirnoff" , X-OriginalArrivalTime: 15 Aug 2005 15:25:59.0627 (UTC) FILETIME=[A39C49B0:01C5A1AD] Cc: Subject: RE: bin/82625: [PATCH] Enhancement to ping to ping through X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 15:26:09 -0000 Gleb, do you still need some code comments for this patch? =20 --=20 No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.338 / Virus Database: 267.10.3/66 - Release Date: 8/08/2005 =20 From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 16:00:31 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 41D0316A41F for ; Mon, 15 Aug 2005 16:00:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6135943D5A for ; Mon, 15 Aug 2005 16:00:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7FG0TFv046305 for ; Mon, 15 Aug 2005 16:00:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7FG0Tb2046296; Mon, 15 Aug 2005 16:00:29 GMT (envelope-from gnats) Resent-Date: Mon, 15 Aug 2005 16:00:29 GMT Resent-Message-Id: <200508151600.j7FG0Tb2046296@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, Nick Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EB5016A41F for ; Mon, 15 Aug 2005 15:56:22 +0000 (GMT) (envelope-from root@turing.morons.org) Received: from turing.morons.org (turing.morons.org [209.237.229.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id D30FF43D49 for ; Mon, 15 Aug 2005 15:56:21 +0000 (GMT) (envelope-from root@turing.morons.org) Received: by turing.morons.org (Postfix, from userid 0) id B937DA92F; Mon, 15 Aug 2005 08:57:15 -0700 (PDT) Message-Id: <20050815155715.B937DA92F@turing.morons.org> Date: Mon, 15 Aug 2005 08:57:15 -0700 (PDT) From: Nick Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/84957: fire_saver.ko causes high CPU usage by swi5 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Nick Johnson List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 16:00:31 -0000 >Number: 84957 >Category: kern >Synopsis: fire_saver.ko causes high CPU usage by swi5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 15 16:00:28 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Nick Johnson >Release: FreeBSD 5.4-STABLE i386 >Organization: morons.org >Environment: System: FreeBSD turing.morons.org 5.4-STABLE FreeBSD 5.4-STABLE #2: Mon Aug 15 08:31:15 PDT 2005 root@turing.morons.org:/usr/src/sys/i386/compile/TURING i386 >Description: I noticed, surprisingly high user CPU usage (circa 35%) when the machine was completely idle. top -S showed that all of that 35% was going to swi5: clock sio. This was also driving the system load at idle up to 0.40 After mucking about with various kernel configuration options I noticed that after rebooting the usage of swi5 was reasonable for several minutes and then jumped up to 35%. It was then that I thought of checking to see if I had configured a screen saver to load, and sure enough, I had fire_saver.ko loaded. Unloading fire_saver.ko sent the usage of swi5 back down to 0%. I suspect somewhere in fire_saver.ko one might find ugliness. >How-To-Repeat: Load fire_saver.ko. Wait for it to start. top -S >Fix: kldunload fire_saver.ko >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 18:22:11 2005 Return-Path: X-Original-To: freebsd-bugs@freefall.freebsd.org Delivered-To: freebsd-bugs@freefall.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20C0616A421 for ; Mon, 15 Aug 2005 18:22:11 +0000 (GMT) (envelope-from Walsh@up.com) Received: from up.com (dpg231.neoplus.adsl.tpnet.pl [83.24.140.231]) by mx1.FreeBSD.org (Postfix) with SMTP id 9541443D5F for ; Mon, 15 Aug 2005 18:22:00 +0000 (GMT) (envelope-from Walsh@up.com) From: "Iwan Walsh" To: "Garnet Brunson" Message-ID: <001901c5a1c6$24a02a00$698aa8c0@flying> Date: Mon, 15 Aug 2005 13:21:24 -0500 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="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: =?iso-8859-1?q?McDonald=27s_bomber_j=C4iled?= X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 18:22:11 -0000 Hello, some acquaintance will see me and then theyll tell my husband I was = = outKoroviev - hes the devil!has been sitting on this platform and = sleeping, but when the full moonthree pm come. Berlioz.sounds - over = him. But before then he wont rise.will not see Yeshua, you will never = leave your refuge. Hundreds of arms were raised, the spectators = held the bills up to theabout the world and about power. Well, so, = if its more comforting, consider me that, Woland replied `He casts = no shadow! Rimsky cried out desperately in his mind. Heeven moaned, = began talking to himself, got up. The storm raged more andshe had = received from Azazello, and Margarita did not take her eyes from itsthe = same company. Here the girls story was interrupted - the valerian = had not done muchscored by deep wrinkles running parallel to the sharp = eyebrows. The skin ofparchment and was horrified. I said decidedly = nothing of whats written From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 18:22:16 2005 Return-Path: X-Original-To: freebsd-bugs@freebsd.org 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 1280A16A41F for ; Mon, 15 Aug 2005 18:22:16 +0000 (GMT) (envelope-from Jeh@gallerysink.com) Received: from gallerysink.com (dpg231.neoplus.adsl.tpnet.pl [83.24.140.231]) by mx1.FreeBSD.org (Postfix) with SMTP id 303A843D72 for ; Mon, 15 Aug 2005 18:22:01 +0000 (GMT) (envelope-from Jeh@gallerysink.com) From: "Jehoiakim Chester" To: "Barrett Blanco" Message-ID: <001901c5a1c6$24a02a00$698aa8c0@flying> Date: Mon, 15 Aug 2005 13:21:24 -0500 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="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: =?iso-8859-1?q?McDonald=27s_bomber_j=C4iled?= X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 18:22:16 -0000 Hello, some acquaintance will see me and then theyll tell my husband I was = = outKoroviev - hes the devil!has been sitting on this platform and = sleeping, but when the full moonthree pm come. Berlioz.sounds - over = him. But before then he wont rise.will not see Yeshua, you will never = leave your refuge. Hundreds of arms were raised, the spectators = held the bills up to theabout the world and about power. Well, so, = if its more comforting, consider me that, Woland replied `He casts = no shadow! Rimsky cried out desperately in his mind. Heeven moaned, = began talking to himself, got up. The storm raged more andshe had = received from Azazello, and Margarita did not take her eyes from itsthe = same company. Here the girls story was interrupted - the valerian = had not done muchscored by deep wrinkles running parallel to the sharp = eyebrows. The skin ofparchment and was horrified. I said decidedly = nothing of whats written From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 19:36:37 2005 Return-Path: X-Original-To: freebsd-bugs@FreeBSD.org 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 BA38A16A41F for ; Mon, 15 Aug 2005 19:36:37 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F8B843D49 for ; Mon, 15 Aug 2005 19:36:36 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.3/8.13.3) with ESMTP id j7FJaYS3015084 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 15 Aug 2005 23:36:34 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.3/8.13.1/Submit) id j7FJaXNq015083; Mon, 15 Aug 2005 23:36:33 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Mon, 15 Aug 2005 23:36:33 +0400 From: Gleb Smirnoff To: Chris Hellberg Message-ID: <20050815193633.GQ96031@cell.sick.ru> Mail-Followup-To: Gleb Smirnoff , Chris Hellberg , freebsd-bugs@FreeBSD.org References: <5472C55F92A5714F866035BCB529912C02E2FA5B@bottom.jnpr.net> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <5472C55F92A5714F866035BCB529912C02E2FA5B@bottom.jnpr.net> User-Agent: Mutt/1.5.6i Cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/82625: [PATCH] Enhancement to ping to ping through X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 19:36:37 -0000 On Mon, Aug 15, 2005 at 04:25:59PM +0100, Chris Hellberg wrote: C> Gleb, do you still need some code comments for this patch? Well, I understood what for this change was. The problem with it was that it broke bare '-c' option (without sweeping). That's why a little bit changed your patch. If you aren't happy with committed version, please let met know. Thanks! -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 21:20:26 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 AD4B616A41F for ; Mon, 15 Aug 2005 21:20:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D5ED43D70 for ; Mon, 15 Aug 2005 21:20:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7FLKF3D093726 for ; Mon, 15 Aug 2005 21:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7FLKFLS093725; Mon, 15 Aug 2005 21:20:15 GMT (envelope-from gnats) Resent-Date: Mon, 15 Aug 2005 21:20:15 GMT Resent-Message-Id: <200508152120.j7FLKFLS093725@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, rick@cis.uoguelph.ca Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8F4116A41F for ; Mon, 15 Aug 2005 21:15:41 +0000 (GMT) (envelope-from rick@snowhite.cis.uoguelph.ca) Received: from mailhub.cs.uoguelph.ca (mailhub.cs.uoguelph.ca [131.104.96.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9609343D45 for ; Mon, 15 Aug 2005 21:15:41 +0000 (GMT) (envelope-from rick@snowhite.cis.uoguelph.ca) Received: from snowhite.cis.uoguelph.ca (snowhite.cis.uoguelph.ca [131.104.48.1]) by mailhub.cs.uoguelph.ca (8.13.1/8.13.1) with ESMTP id j7FLFet0003569 for ; Mon, 15 Aug 2005 17:15:40 -0400 Received: (from rick@localhost) by snowhite.cis.uoguelph.ca (8.9.3/8.9.3) id RAA81254; Mon, 15 Aug 2005 17:15:58 -0400 (EDT) Message-Id: <200508152115.RAA81254@snowhite.cis.uoguelph.ca> Date: Mon, 15 Aug 2005 17:15:58 -0400 (EDT) From: rick@cis.uoguelph.ca To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/84964: nfs4 mount doesn't handle NFS4ERR_GRACE X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: rick@cis.uoguelph.ca List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 21:20:26 -0000 >Number: 84964 >Category: kern >Synopsis: nfs4 mount doesn't handle NFS4ERR_GRACE >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 15 21:20:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD6.0-BETA2 i386 >Organization: University of Guelph >Environment: System: FreeBSD nfsv4-darwin.cis.uoguelph.ca 6.0-BETA2 FreeBSD 6.0-BETA2 #3: Wed Aug 10 16:23:11 EDT 2005 root@nfsv4-darwin:/usr/src/sys/compile/NEWNFS i386 >Description: If I attempt to create a directory on an nfs4 mount point shortly after the server (Solaris10 in this case) has been started, the message unknown error: 10013 (which is NFS4ERR_GRACE) is replied. After the server's grace period is over, unknown error: 10011 (which is NFS4ERR_EXPIRED) is reported. >How-To-Repeat: # mount -t nfs4 :/export /mnt # mkdir /mnt/xxx - done shortly after has been started. >Fix: Work around: umount, then wait until after the grace period is over on the server and do the mount again. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 21:30:15 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 9B8D716A424 for ; Mon, 15 Aug 2005 21:30:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1906243D45 for ; Mon, 15 Aug 2005 21:30:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7FLUEhw094009 for ; Mon, 15 Aug 2005 21:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7FLUEM4094008; Mon, 15 Aug 2005 21:30:14 GMT (envelope-from gnats) Resent-Date: Mon, 15 Aug 2005 21:30:14 GMT Resent-Message-Id: <200508152130.j7FLUEM4094008@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, rick@cis.uoguelph.ca Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E18B616A41F for ; Mon, 15 Aug 2005 21:24:13 +0000 (GMT) (envelope-from rick@snowhite.cis.uoguelph.ca) Received: from dargo.cs.uoguelph.ca (dargo.cs.uoguelph.ca [131.104.96.159]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48FD643D49 for ; Mon, 15 Aug 2005 21:24:13 +0000 (GMT) (envelope-from rick@snowhite.cis.uoguelph.ca) Received: from snowhite.cis.uoguelph.ca (snowhite.cis.uoguelph.ca [131.104.48.1]) by dargo.cs.uoguelph.ca (8.13.1/8.13.1) with ESMTP id j7FLOC3l009489 for ; Mon, 15 Aug 2005 17:24:12 -0400 Received: (from rick@localhost) by snowhite.cis.uoguelph.ca (8.9.3/8.9.3) id RAA81476; Mon, 15 Aug 2005 17:24:28 -0400 (EDT) Message-Id: <200508152124.RAA81476@snowhite.cis.uoguelph.ca> Date: Mon, 15 Aug 2005 17:24:28 -0400 (EDT) From: rick@cis.uoguelph.ca To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/84965: nfs4 mount generates NFS4ERR_BAD_SEQID X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: rick@cis.uoguelph.ca List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 21:30:15 -0000 >Number: 84965 >Category: kern >Synopsis: nfs4 mount generates NFS4ERR_BAD_SEQID >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 15 21:30:14 GMT 2005 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 6.0-BETA2 i386 >Organization: University of Guelph >Environment: System: FreeBSD nfsv4-darwin.cis.uoguelph.ca 6.0-BETA2 FreeBSD 6.0-BETA2 #3: Wed Aug 10 16:2:11 EDT 2005 root@nfsv4-darwin:/usr/src/sys/compile/NEWNFS i386 >Description: While running the connectathon general tests against a Solaris10 server mounted via nfs4, the message unknown error: 10026 appears, which is NFS4ERR_BAD_SEQID >How-To-Repeat: Run connectathon general tests on an nfs4 mount against a Solaris10 server. (You need to comment out the "./stat" lines in runtests.wrk, since you can't execute them, in order to get the test to run. You also need to add "sh" in front of the lines that have large.sh in them, so the shell file will run. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 15 21:42:43 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 0F23D16A41F for ; Mon, 15 Aug 2005 21:42:43 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EAD043D55 for ; Mon, 15 Aug 2005 21:42:42 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7FLggg1095690 for ; Mon, 15 Aug 2005 21:42:42 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7FLgg8t095689; Mon, 15 Aug 2005 21:42:42 GMT (envelope-from gnats) Resent-Date: Mon, 15 Aug 2005 21:42:42 GMT Resent-Message-Id: <200508152142.j7FLgg8t095689@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, rick@cis.uoguelph.ca Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DAD216A41F for ; Mon, 15 Aug 2005 21:32:40 +0000 (GMT) (envelope-from rick@snowhite.cis.uoguelph.ca) Received: from ccshst09.cs.uoguelph.ca (ccshst09.cs.uoguelph.ca [131.104.96.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 132B343D48 for ; Mon, 15 Aug 2005 21:32:39 +0000 (GMT) (envelope-from rick@snowhite.cis.uoguelph.ca) Received: from snowhite.cis.uoguelph.ca (snowhite.cis.uoguelph.ca [131.104.48.1]) by ccshst09.cs.uoguelph.ca (8.13.1/8.13.1) with ESMTP id j7FLWcsV006634 for ; Mon, 15 Aug 2005 17:32:38 -0400 Received: (from rick@localhost) by snowhite.cis.uoguelph.ca (8.9.3/8.9.3) id RAA81650; Mon, 15 Aug 2005 17:32:57 -0400 (EDT) Message-Id: <200508152132.RAA81650@snowhite.cis.uoguelph.ca> Date: Mon, 15 Aug 2005 17:32:57 -0400 (EDT) From: rick@cis.uoguelph.ca To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/84968: programs on nfs4 mounts won't execute X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: rick@cis.uoguelph.ca List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2005 21:42:43 -0000 >Number: 84968 >Category: kern >Synopsis: programs on nfs4 mounts won't execute >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 15 21:42:42 GMT 2005 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 6.0-BETA2 i386 >Organization: University of Guelph >Environment: System: FreeBSD nfsv4-darwin.cis.uoguelph.ca 6.0-BETA2 FreeBSD 6.0-BETA2 #3: Wed Aug 10 16:23:11 EDT 2005 root@nfsv4-darwin:/usr/src/sys/compile/NEWNFS i386 >Description: Any executable file on an nfs4 mounted file system will not execute. Reports "Permission Denied" >How-To-Repeat: # mount -t nfs4 :/export /mnt - then try and run any executable (a.out or shell file) under /mnt >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 02:40:16 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 6651916A41F for ; Tue, 16 Aug 2005 02:40:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79F3D43D46 for ; Tue, 16 Aug 2005 02:40:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7G2eFV3034880 for ; Tue, 16 Aug 2005 02:40:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7G2eFjJ034879; Tue, 16 Aug 2005 02:40:15 GMT (envelope-from gnats) Resent-Date: Tue, 16 Aug 2005 02:40:15 GMT Resent-Message-Id: <200508160240.j7G2eFjJ034879@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, Marcus Grando Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9896016A41F; Tue, 16 Aug 2005 02:37:53 +0000 (GMT) (envelope-from marcus@marcus.grupos.com.br) Received: from mail.grupos.com.br (mail.grupos.com.br [200.203.183.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 375D443D45; Tue, 16 Aug 2005 02:37:50 +0000 (GMT) (envelope-from marcus@marcus.grupos.com.br) Received: from corp.grupos.com.br (unknown [150.162.166.55]) by mail.grupos.com.br (Postfix) with ESMTP id 17E6D11E17E; Mon, 15 Aug 2005 23:37:49 -0300 (BRT) Received: from marcus.grupos.com.br (unknown [150.162.166.51]) by corp.grupos.com.br (Postfix) with ESMTP id E4D8B55D8; Mon, 15 Aug 2005 23:37:48 -0300 (BRT) Received: from marcus.grupos.com.br (localhost [127.0.0.1]) by marcus.grupos.com.br (8.13.4/8.13.4) with ESMTP id j7G2bmrE000777; Mon, 15 Aug 2005 23:37:48 -0300 (BRT) (envelope-from marcus@marcus.grupos.com.br) Received: (from root@localhost) by marcus.grupos.com.br (8.13.4/8.13.4/Submit) id j7G2bl6s000776; Mon, 15 Aug 2005 23:37:47 -0300 (BRT) (envelope-from marcus) Message-Id: <200508160237.j7G2bl6s000776@marcus.grupos.com.br> Date: Mon, 15 Aug 2005 23:37:47 -0300 (BRT) From: Marcus Grando To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: wollman@FreeBSD.org Subject: misc/84972: Update tzdata to 2005k X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcus Grando List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 02:40:16 -0000 >Number: 84972 >Category: misc >Synopsis: Update tzdata to 2005k >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Aug 16 02:40:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Marcus Grando >Release: FreeBSD 6.0-BETA2 i386 >Organization: Grupos Internet S/A >Environment: System: FreeBSD marcus.grupos.com.br 6.0-BETA2 FreeBSD 6.0-BETA2 #10: Mon Aug 15 19:47:41 BRT 2005 root@marcus.grupos.com.br:/usr/obj/usr/src/sys/MARCUS i386 >Description: - Update tzdata to 2005k >How-To-Repeat: >Fix: --- zoneinfo.patch begins here --- diff -ruN zoneinfo.orig/africa zoneinfo/africa --- zoneinfo.orig/africa Fri Nov 16 15:23:22 2001 +++ zoneinfo/africa Thu Jul 14 15:13:38 2005 @@ -1,10 +1,10 @@ -# @(#)africa 7.36 +# @(#)africa 7.38 # This data is by no means authoritative; if you think you know better, # go ahead and edit the file (and please send any changes to # tz@elsie.nci.nih.gov for general use in the future). -# From Paul Eggert (1999-03-22): +# From Paul Eggert (1999-03-22): # # A good source for time zone historical data outside the U.S. is # Thomas G. Shanks, The International Atlas (5th edition), @@ -28,7 +28,7 @@ # # Previous editions of this database used WAT, CAT, SAT, and EAT # for +0:00 through +3:00, respectively, -# but Mark R V Murray reports that +# but Mark R V Murray reports that # `SAST' is the official abbreviation for +2:00 in the country of South Africa, # `CAT' is commonly used for +2:00 in countries north of South Africa, and # `WAT' is probably the best name for +1:00, as the common phrase for @@ -287,7 +287,7 @@ 2:00 - SAST # Liberia -# From Paul Eggert (2001-07-17): +# From Paul Eggert (2001-07-17): # In 1972 Liberia was the last country to switch # from a UTC offset that was not a multiple of 15 or 20 minutes. # Howse reports that it was in honor of their president's birthday. @@ -317,7 +317,7 @@ Rule Libya 1986 only - Apr 4 0:00 1:00 S Rule Libya 1986 only - Oct 3 0:00 0 - Rule Libya 1987 1989 - Apr 1 0:00 1:00 S -Rule Libya 1987 1990 - Oct 1 0:00 0 - +Rule Libya 1987 1989 - Oct 1 0:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Africa/Tripoli 0:52:44 - LMT 1920 1:00 Libya CE%sT 1959 diff -ruN zoneinfo.orig/antarctica zoneinfo/antarctica --- zoneinfo.orig/antarctica Mon Apr 28 15:51:19 2003 +++ zoneinfo/antarctica Thu Jul 14 15:13:38 2005 @@ -1,4 +1,4 @@ -# @(#)antarctica 7.23 +# @(#)antarctica 7.25 # From Paul Eggert (1999-11-15): # To keep things manageable, we list only locations occupied year-round; see @@ -90,19 +90,19 @@ # # Brazil - year-round base -# Ferraz, King George Island, since 1983/4 +# Comandante Ferraz, King George Island, -6205+05824, since 1983/4 # Chile - year-round bases and towns # Escudero, South Shetland Is, -621157-0585735, since 1994 -# Frei, King George Island, -6214-05848, since 1969-03-07 -# O'Higgins, Antarctic Peninsula, -6319-05704, since 1948-02 -# Prat, -6230-05941 -# Villa Las Estrellas (a town), King George Island, since 1984-04-09 +# Presidente Eduadro Frei, King George Island, -6214-05848, since 1969-03-07 +# General Bernardo O'Higgins, Antarctic Peninsula, -6319-05704, since 1948-02 +# Capitan Arturo Prat, -6230-05941 +# Villa Las Estrellas (a town), around the Frei base, since 1984-04-09 # These locations have always used Santiago time; use TZ='America/Santiago'. # China - year-round bases -# Great Wall, King George Island, since 1985-02-20 -# Zhongshan, Larsemann Hills, Prydz Bay, since 1989-02-26 +# Great Wall, King George Island, -6213-05858, since 1985-02-20 +# Zhongshan, Larsemann Hills, Prydz Bay, -6922+07623, since 1989-02-26 # France - year-round bases # @@ -145,19 +145,19 @@ # Germany - year-round base -# Georg von Neumayer +# Georg von Neumayer, -7039-00815 # India - year-round base -# Dakshin Gangotri +# Dakshin Gangotri, -7005+01200 # Japan - year-round bases -# Dome Fuji -# Syowa +# Dome Fuji, -7719+03942 +# Syowa, -690022+0393524 # # From Hideyuki Suzuki (1999-02-06): # In all Japanese stations, +0300 is used as the standard time. [See] # [reference in Japanese] -# and information from KAMO Hiroyasu . +# and information from KAMO Hiroyasu. # # Syowa station, which is the first antarctic station of Japan, # was established on 1957-01-29. Since Syowa station is still the main @@ -171,7 +171,7 @@ # # S Korea - year-round base -# King Sejong, King George Island, since 1988 +# King Sejong, King George Island, -6213-05847, since 1988 # New Zealand - claims # Balleny Islands (never inhabited) @@ -202,7 +202,8 @@ # Russia - year-round bases # Bellingshausen, King George Island, -621159-0585337, since 1968-02-22 # Mirny, Davis coast, -6633+09301, since 1956-02 -# Molodezhnaya, Alasheyev Bay, year-round from 1962-02 to 1999-07-01 +# Molodezhnaya, Alasheyev Bay, -6740+04551, +# year-round from 1962-02 to 1999-07-01 # Novolazarevskaya, Queen Maud Land, -7046+01150, # year-round from 1960/61 to 1992 @@ -234,8 +235,8 @@ 6:00 - VOST # Vostok time # S Africa - year-round bases -# Marion Island -# Sanae +# Marion Island, -4653+03752 +# Sanae, -7141-00250 # UK # @@ -270,7 +271,7 @@ # # Palmer, Anvers Island, since 1965 (moved 2 miles in 1968) # -# From Ethan Dicks (1996-10-06): +# From Ethan Dicks (1996-10-06): # It keeps the same time as Punta Arenas, Chile, because, just like us # and the South Pole, that's the other end of their supply line.... # I verified with someone who was there that since 1980, diff -ruN zoneinfo.orig/asia zoneinfo/asia --- zoneinfo.orig/asia Sun Oct 17 21:03:52 2004 +++ zoneinfo/asia Thu Jul 14 15:13:38 2005 @@ -1,10 +1,10 @@ -# @(#)asia 7.77 +# @(#)asia 7.83 # This data is by no means authoritative; if you think you know better, # go ahead and edit the file (and please send any changes to # tz@elsie.nci.nih.gov for general use in the future). -# From Paul Eggert (1999-03-22): +# From Paul Eggert (1999-03-22): # # A good source for time zone historical data outside the U.S. is # Thomas G. Shanks, The International Atlas (5th edition), @@ -107,7 +107,7 @@ 3:00 - BAKT 1957 Mar # Baku Time 4:00 RussiaAsia BAK%sT 1991 Mar 31 2:00s 3:00 1:00 BAKST 1991 Aug 30 # independence - 3:00 RussiaAsia AZ%sT 1992 Sep lastSun 2:00s + 3:00 RussiaAsia AZ%sT 1992 Sep lastSat 23:00 4:00 - AZT 1996 # Azerbaijan time 4:00 EUAsia AZ%sT 1997 4:00 Azer AZ%sT @@ -137,8 +137,12 @@ # British Indian Ocean Territory # Whitman and the 1995 CIA time zone map say 5:00, but the # 1997 and later maps say 6:00. Assume the switch occurred in 1996. +# We have no information as to when standard time was introduced; +# assume it occurred in 1907, the same year as Mauritius (which +# then contained the Chagos Archipelago). # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone Indian/Chagos 5:00 - IOT 1996 # BIOT Time +Zone Indian/Chagos 4:49:40 - LMT 1907 + 5:00 - IOT 1996 # BIOT Time 6:00 - IOT # Brunei @@ -186,7 +190,7 @@ # CHINA 8 H AHEAD OF UTC ALL OF CHINA, INCL TAIWAN # CHINA 9 H AHEAD OF UTC APR 17 - SEP 10 -# From Paul Eggert (1995-12-19): +# From Paul Eggert (1995-12-19): # Shanks writes that China has had a single time zone since 1980 May 1, # observing summer DST from 1986 through 1991; this contradicts Devine's # note about Time magazine, though apparently _something_ happened in 1986. @@ -325,19 +329,19 @@ Link Asia/Nicosia Europe/Nicosia # Georgia -# From Paul Eggert (1994-11-19): +# From Paul Eggert (1994-11-19): # Today's _Economist_ (p 60) reports that Georgia moved its clocks forward # an hour recently, due to a law proposed by Zurab Murvanidze, # an MP who went on a hunger strike for 11 days to force discussion about it! # We have no details, but we'll guess they didn't move the clocks back in fall. # -# From Mathew Englander , quoting AP (1996-10-23 13:05-04): +# From Mathew Englander, quoting AP (1996-10-23 13:05-04): # Instead of putting back clocks at the end of October, Georgia # will stay on daylight savings time this winter to save energy, # President Eduard Shevardnadze decreed Wednesday. # # From the BBC via Joseph S. Myers (2004-06-27): -# +# # Georgia moved closer to Western Europe on Sunday... The former Soviet # republic has changed its time zone back to that of Moscow. As a result it # is now just four hours ahead of Greenwich Mean Time, rather than five hours @@ -472,12 +476,33 @@ # Thursday night of Shahrivar, but I can't give exact dates.... # I have also changed the abbreviations to what is considered correct # here in Iran, IRST for regular time and IRDT for daylight saving time. - -# From Paul Eggert (2003-03-15) +# +# From Roozbeh Pournader (2005-04-05): +# The text of the Iranian law, in effect since 1925, clearly mentions +# that the true solar year is the measure, and there is no arithmetic +# leap year calculation involved. There has never been any serious +# plan to change that law.... +# +# From Paul Eggert (2005-04-05): # Go with Shanks before September 1991, and with Pournader thereafter. -# I used Ed Reingold's cal-persia in GNU Emacs 21.2 to check Persian dates. -# The Persian calendar is based on the sun, and dates after around 2050 -# are approximate; stop after 2037 when 32-bit time_t's overflow. +# I used Ed Reingold's cal-persia in GNU Emacs 21.2 to check Persian dates, +# stopping after 2037 when 32-bit time_t's overflow. +# That cal-persia used Birashk's approximation, which disagrees with the solar +# calendar predictions for the year 2025, so I corrected those dates by hand. +# +# From Oscar van Vlijmen (2005-03-30), writing about future +# discrepancies between cal-persia and the Iranian calendar: +# For 2091 solar-longitude-after yields 2091-03-20 08:40:07.7 UT for +# the vernal equinox and that gets so close to 12:00 some local +# Iranian time that the definition of the correct location needs to be +# known exactly, amongst other factors. 2157 is even closer: +# 2157-03-20 08:37:15.5 UT. But the Gregorian year 2025 should give +# no interpretation problem whatsoever. By the way, another instant +# in the near future where there will be a discrepancy between +# arithmetical and astronomical Iranian calendars will be in 2058: +# vernal equinox on 2058-03-20 09:03:05.9 UT. The Java version of +# Reingold's/Dershowitz' calculator gives correctly the Gregorian date +# 2058-03-21 for 1 Farvardin 1437 (astronomical). # # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Iran 1978 1980 - Mar 21 0:00 1:00 D @@ -515,10 +540,10 @@ Rule Iran 2020 only - Sep 21 0:00 0 S Rule Iran 2021 2023 - Mar 22 0:00 1:00 D Rule Iran 2021 2023 - Sep 22 0:00 0 S -Rule Iran 2024 2025 - Mar 21 0:00 1:00 D -Rule Iran 2024 2025 - Sep 21 0:00 0 S -Rule Iran 2026 2027 - Mar 22 0:00 1:00 D -Rule Iran 2026 2027 - Sep 22 0:00 0 S +Rule Iran 2024 only - Mar 21 0:00 1:00 D +Rule Iran 2024 only - Sep 21 0:00 0 S +Rule Iran 2025 2027 - Mar 22 0:00 1:00 D +Rule Iran 2025 2027 - Sep 22 0:00 0 S Rule Iran 2028 2029 - Mar 21 0:00 1:00 D Rule Iran 2028 2029 - Sep 21 0:00 0 S Rule Iran 2030 2031 - Mar 22 0:00 1:00 D @@ -539,7 +564,7 @@ # Iraq # -# From Jonathan Lennox (2000-06-12): +# From Jonathan Lennox (2000-06-12): # An article in this week's Economist ("Inside the Saddam-free zone", p. 50 in # the U.S. edition) on the Iraqi Kurds contains a paragraph: # "The three northern provinces ... switched their clocks this spring and @@ -638,8 +663,9 @@ Rule Zion 1988 only - Apr 9 0:00 1:00 D Rule Zion 1988 only - Sep 3 0:00 0 S -# From Ephraim Silverberg -# (1997-03-04, 1998-03-16, 1998-12-28, 2000-01-17 and 2000-07-25): +# From Ephraim Silverberg +# (1997-03-04, 1998-03-16, 1998-12-28, 2000-01-17, 2000-07-25, 2004-12-22, +# and 2005-02-17): # According to the Office of the Secretary General of the Ministry of # Interior, there is NO set rule for Daylight-Savings/Standard time changes. @@ -690,13 +716,13 @@ # time, Haim Ramon. The official announcement regarding 1996-1998 # (with the dates for 1997-1998 no longer being relevant) can be viewed at: # -# ftp://ftp.huji.ac.il/pub/tz/announcements/1996-1998.ramon.ps.gz +# ftp://ftp.cs.huji.ac.il/pub/tz/announcements/1996-1998.ramon.ps.gz # # The dates for 1997-1998 were altered by his successor, Rabbi Eli Suissa. # # The official announcements for the years 1997-1999 can be viewed at: # -# ftp://ftp.huji.ac.il/pub/tz/announcements/YYYY.ps.gz +# ftp://ftp.cs.huji.ac.il/pub/tz/announcements/YYYY.ps.gz # # where YYYY is the relevant year. @@ -716,12 +742,12 @@ # # The official announcement for the start date of 2000 can be viewed at: # -# ftp://ftp.huji.ac.il/pub/tz/announcements/2000-start.ps.gz +# ftp://ftp.cs.huji.ac.il/pub/tz/announcements/2000-start.ps.gz # # The official announcement for the end date of 2000 and the dates # for the years 2001-2004 can be viewed at: # -# ftp://ftp.huji.ac.il/pub/tz/announcements/2000-2004.ps.gz +# ftp://ftp.cs.huji.ac.il/pub/tz/announcements/2000-2004.ps.gz # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Zion 2000 only - Apr 14 2:00 1:00 D @@ -735,52 +761,80 @@ Rule Zion 2004 only - Apr 7 1:00 1:00 D Rule Zion 2004 only - Sep 22 1:00 0 S -# From Paul Eggert (2000-07-25): -# Here are guesses for rules after 2004. -# They are probably wrong, but they are more likely than no DST at all. -# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S -Rule Zion 2005 max - Apr 1 1:00 1:00 D -Rule Zion 2005 max - Oct 1 1:00 0 S +# The proposed law agreed upon by the Knesset Interior Committee on +# 2005-02-14 is that, for 2005 and beyond, DST starts at 02:00 the +# last Friday before April 2nd (i.e. the last Friday in March or April +# 1st itself if it falls on a Friday) and ends at 02:00 on the Saturday +# night _before_ the fast of Yom Kippur. +# +# Those who can read Hebrew can view the announcement at: +# +# ftp://ftp.cs.huji.ac.il/pub/tz/announcements/2005+beyond.ps + +# From Paul Eggert (2005-02-22): +# I used Ephraim Silverberg's dst-israel.el program +# (2005-02-20) +# along with Ed Reingold's cal-hebrew in GNU Emacs 21.4, +# to generate the transitions in this list. +# (I replaced "lastFri" with "Fri>=26" by hand.) +# The spring transitions below all correspond to the following Rule: +# +# Rule Zion 2005 max - Mar Fri>=26 2:00 1:00 D +# +# but older zic implementations (e.g., Solaris 8) do not support +# "Fri>=26" to mean April 1 in years like 2005, so for now we list the +# springtime transitions explicitly. + +# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S +Rule Zion 2005 only - Apr 1 2:00 1:00 D +Rule Zion 2005 only - Oct 9 2:00 0 S +Rule Zion 2006 2010 - Mar Fri>=26 2:00 1:00 D +Rule Zion 2006 only - Oct 1 2:00 0 S +Rule Zion 2007 only - Sep 16 2:00 0 S +Rule Zion 2008 only - Oct 5 2:00 0 S +Rule Zion 2009 only - Sep 27 2:00 0 S +Rule Zion 2010 only - Sep 12 2:00 0 S +Rule Zion 2011 only - Apr 1 2:00 1:00 D +Rule Zion 2011 only - Oct 2 2:00 0 S +Rule Zion 2012 2015 - Mar Fri>=26 2:00 1:00 D +Rule Zion 2012 only - Sep 23 2:00 0 S +Rule Zion 2013 only - Sep 8 2:00 0 S +Rule Zion 2014 only - Sep 28 2:00 0 S +Rule Zion 2015 only - Sep 20 2:00 0 S +Rule Zion 2016 only - Apr 1 2:00 1:00 D +Rule Zion 2016 only - Oct 9 2:00 0 S +Rule Zion 2017 2021 - Mar Fri>=26 2:00 1:00 D +Rule Zion 2017 only - Sep 24 2:00 0 S +Rule Zion 2018 only - Sep 16 2:00 0 S +Rule Zion 2019 only - Oct 6 2:00 0 S +Rule Zion 2020 only - Sep 27 2:00 0 S +Rule Zion 2021 only - Sep 12 2:00 0 S +Rule Zion 2022 only - Apr 1 2:00 1:00 D +Rule Zion 2022 only - Oct 2 2:00 0 S +Rule Zion 2023 2032 - Mar Fri>=26 2:00 1:00 D +Rule Zion 2023 only - Sep 24 2:00 0 S +Rule Zion 2024 only - Oct 6 2:00 0 S +Rule Zion 2025 only - Sep 28 2:00 0 S +Rule Zion 2026 only - Sep 20 2:00 0 S +Rule Zion 2027 only - Oct 10 2:00 0 S +Rule Zion 2028 only - Sep 24 2:00 0 S +Rule Zion 2029 only - Sep 16 2:00 0 S +Rule Zion 2030 only - Oct 6 2:00 0 S +Rule Zion 2031 only - Sep 21 2:00 0 S +Rule Zion 2032 only - Sep 12 2:00 0 S +Rule Zion 2033 only - Apr 1 2:00 1:00 D +Rule Zion 2033 only - Oct 2 2:00 0 S +Rule Zion 2034 2037 - Mar Fri>=26 2:00 1:00 D +Rule Zion 2034 only - Sep 17 2:00 0 S +Rule Zion 2035 only - Oct 7 2:00 0 S +Rule Zion 2036 only - Sep 28 2:00 0 S +Rule Zion 2037 only - Sep 13 2:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Jerusalem 2:20:56 - LMT 1880 2:20:40 - JMT 1918 # Jerusalem Mean Time? 2:00 Zion I%sT -# From Ephraim Silverberg (2003-03-23): -# -# Minister of Interior Poraz has announced that he will respect the law -# passed in July 2000 (proposed at the time jointly by himself and -# then-MK David Azulai [Shas]) fixing the dates for 2000-2004. Hence, -# the dates for 2003 and 2004 remain unchanged.... -# -# As far as 2005 and beyond, no dates have been set. However, the -# minister has mentioned that he wishes to propose to move Israel's -# timezone in 2005 from GMT+2 to GMT+3 and upon that have DST during -# the summer months (i.e. GMT+4). However, no legislation in this -# direction is expected until the latter part of 2004 which is a long -# time off in terms of Israeli politics. - -# (2004-09-20): -# The latest rumour, however, is that in 2005, when the clock changes to -# Daylight Saving Time (date as yet unknown), the move will be a two-hour leap -# forward (from UTC+0200 to UTC+0400) and then, in the fall, the clock will -# move back only an hour to UTC+0300 thus effectively moving Israel's timezone -# from UTC+0200 to UTC+0300. However, no actual draft has been put before the -# Knesset (Israel's Parliament) though the intention is to do so this -# month [2004-09]. - -# (2004-09-26): -# Even though the draft law for the above did pass the Ministerial Committee -# for Legislative Matters three months ago, it was voted down in today's -# Cabinet meeting. The current suggestion is to keep the current timezone at -# UTC+0200 but have an extended period of Daylight Saving Time (UTC+0300) from -# the beginning of Passover holiday in the spring to after the Tabernacle -# holiday in the fall (i.e. the dates of which are governed by the Hebrew -# calendar but this means at least 184 days of DST). However, this is only a -# suggestion that was raised in today's cabinet meeting and has not yet been -# drafted. - ############################################################################### @@ -789,7 +843,7 @@ # `9:00' and `JST' is from Guy Harris. -# From Paul Eggert (1995-03-06): +# From Paul Eggert (1995-03-06): # Today's _Asahi Evening News_ (page 4) reports that Japan had # daylight saving between 1948 and 1951, but ``the system was discontinued # because the public believed it would lead to longer working hours.'' @@ -878,7 +932,7 @@ # Kazakhstan # From Paul Eggert (1996-11-22): -# Andrew Evtichov (1996-04-13) writes that Kazakhstan +# Andrew Evtichov (1996-04-13) writes that Kazakhstan # stayed in sync with Moscow after 1990, and that Aqtobe (formerly Aktyubinsk) # and Aqtau (formerly Shevchenko) are the largest cities in their zones. # Guess that Aqtau and Aqtobe diverged in 1995, since that's the first time @@ -894,6 +948,13 @@ # - Qyzylorda switched from +5:00 to +6:00 on 1992-01-19 02:00. # - Oral switched from +5:00 to +4:00 in spring 1989. # +# +# From Kazakhstan Embassy's News Bulletin #11 (2005-03-21): +# +# The Government of Kazakhstan passed a resolution March 15 abolishing +# daylight saving time citing lack of economic benefits and health +# complications coupled with a decrease in productivity. +# # # Zone NAME GMTOFF RULES FORMAT [UNTIL] # @@ -902,7 +963,8 @@ 5:00 - ALMT 1930 Jun 21 # Alma-Ata Time 6:00 RussiaAsia ALM%sT 1991 6:00 - ALMT 1992 - 6:00 RussiaAsia ALM%sT + 6:00 RussiaAsia ALM%sT 2005 Mar 15 + 6:00 - ALMT # Qyzylorda (aka Kyzylorda, Kizilorda, Kzyl-Orda, etc.) Zone Asia/Qyzylorda 4:21:52 - LMT 1924 May 2 4:00 - KIZT 1930 Jun 21 # Kizilorda Time @@ -912,7 +974,8 @@ 5:00 RussiaAsia KIZ%sT 1991 5:00 - KIZT 1991 Dec 16 # independence 5:00 - QYZT 1992 Jan 19 2:00 - 6:00 RussiaAsia QYZ%sT + 6:00 RussiaAsia QYZ%sT 2005 Mar 15 + 6:00 - QYZT # Aqtobe (aka Aktobe, formerly Akt'ubinsk) Zone Asia/Aqtobe 3:48:40 - LMT 1924 May 2 4:00 - AKTT 1930 Jun 21 # Aktyubinsk Time @@ -921,7 +984,8 @@ 6:00 - AKTT 1982 Apr 1 5:00 RussiaAsia AKT%sT 1991 5:00 - AKTT 1991 Dec 16 # independence - 5:00 RussiaAsia AQT%sT # Aqtobe Time + 5:00 RussiaAsia AQT%sT 2005 Mar 15 # Aqtobe Time + 5:00 - AQTT # Mangghystau # Aqtau was not founded until 1963, but it represents an inhabited region, # so include time stamps before 1963. @@ -933,7 +997,8 @@ 5:00 RussiaAsia SHE%sT 1991 5:00 - SHET 1991 Dec 16 # independence 5:00 RussiaAsia AQT%sT 1995 Mar lastSun 2:00 # Aqtau Time - 4:00 RussiaAsia AQT%sT + 4:00 RussiaAsia AQT%sT 2005 Mar 15 + 4:00 - AQTT # West Kazakhstan Zone Asia/Oral 3:25:24 - LMT 1924 May 2 # or Ural'sk 4:00 - URAT 1930 Jun 21 # Ural'sk time @@ -943,7 +1008,8 @@ 5:00 RussiaAsia URA%sT 1989 Mar 26 2:00 4:00 RussiaAsia URA%sT 1991 4:00 - URAT 1991 Dec 16 # independence - 4:00 RussiaAsia ORA%sT # Oral Time + 4:00 RussiaAsia ORA%sT 2005 Mar 15 # Oral Time + 4:00 - ORAT # Kyrgyzstan (Kirgizstan) # Transitions through 1991 are from Shanks. @@ -1116,7 +1182,7 @@ # # [The province of Selenge is omitted from the above lists.] -# From Ganbold Ts., Ulaanbaatar (2004-04-17): +# From Ganbold Ts., Ulaanbaatar (2004-04-17): # Daylight saving occurs at 02:00 local time last Saturday of March. # It will change back to normal at 02:00 local time last Saturday of # September.... As I remember this rule was changed in 2001. @@ -1216,7 +1282,7 @@ # Palestine -# From Amos Shapir (1998-02-15): +# From Amos Shapir (1998-02-15): # # From 1917 until 1948-05-15, all of Palestine, including the parts now # known as the Gaza Strip and the West Bank, was under British rule. @@ -1478,7 +1544,7 @@ 5:00 - UZT # Vietnam -# From Paul Eggert (1993-11-18): +# From Paul Eggert (1993-11-18): # Saigon's official name is Thanh-Pho Ho Chi Minh, but it's too long. # We'll stick with the traditional name for now. # From Shanks: diff -ruN zoneinfo.orig/australasia zoneinfo/australasia --- zoneinfo.orig/australasia Tue Oct 14 18:03:21 2003 +++ zoneinfo/australasia Thu Jul 14 15:13:38 2005 @@ -1,4 +1,4 @@ -# @(#)australasia 7.69 +# @(#)australasia 7.72 # This file also includes Pacific islands. # Notes are at the end of this file @@ -38,7 +38,7 @@ 8:00 - WST # Queensland # -# From Alex Livingston (1996-11-01): +# From Alex Livingston (1996-11-01): # I have heard or read more than once that some resort islands off the coast # of Queensland chose to keep observing daylight-saving time even after # Queensland ceased to. @@ -199,9 +199,11 @@ -10:00 Cook CK%sT # Cocos -# From USNO (1989): +# These islands were ruled by the Ross family from about 1830 to 1978. +# We don't know when standard time was introduced; for now, we guess 1900. # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone Indian/Cocos 6:30 - CCT # Cocos Islands Time +Zone Indian/Cocos 6:27:40 - LMT 1900 + 6:30 - CCT # Cocos Islands Time # Fiji # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S @@ -381,11 +383,11 @@ -11:00 - BST 1983 Nov 30 # B=Bering -11:00 - SST # S=Samoa -# W Samoa +# Samoa Zone Pacific/Apia 12:33:04 - LMT 1879 Jul 5 -11:26:56 - LMT 1911 -11:30 - SAMT 1950 # Samoa Time - -11:00 - WST # W Samoa Time + -11:00 - WST # Samoa Time # Solomon Is # excludes Bougainville, for which see Papua New Guinea @@ -434,6 +436,17 @@ # uninhabited # Midway +# +# From Mark Brader (2005-01-23): +# [Fallacies and Fantasies of Air Transport History, by R.E.G. Davies, +# published 1994 by Paladwr Press, McLean, VA, USA; ISBN 0-9626483-5-3] +# reproduced a Pan American Airways timeables from 1936, for their weekly +# "Orient Express" flights between San Francisco and Manila, and connecting +# flights to Chicago and the US East Coast. As it uses some time zone +# designations that I've never seen before:.... +# Fri. 6:30A Lv. HONOLOLU (Pearl Harbor), H.I. H.L.T. Ar. 5:30P Sun. +# " 3:00P Ar. MIDWAY ISLAND . . . . . . . . . M.L.T. Lv. 6:00A " +# Zone Pacific/Midway -11:49:28 - LMT 1901 -11:00 - NST 1956 Jun 3 -11:00 1:00 NDT 1956 Sep 2 @@ -475,7 +488,7 @@ # go ahead and edit the file (and please send any changes to # tz@elsie.nci.nih.gov for general use in the future). -# From Paul Eggert (1999-10-29): +# From Paul Eggert (1999-10-29): # A good source for time zone historical data outside the U.S. is # Thomas G. Shanks, The International Atlas (5th edition), # San Diego: ACS Publications, Inc. (1999). @@ -632,13 +645,13 @@ # From Paul Eggert (1995-12-19): # Shanks reports 2:00 for all autumn changes in Australia and New Zealand. -# Mark Prior writes that his newspaper +# Mark Prior writes that his newspaper # reports that NSW's fall 1995 change will occur at 2:00, # but Robert Elz says it's been 3:00 in Victoria since 1970 # and perhaps the newspaper's `2:00' is referring to standard time. # For now we'll continue to assume 2:00s for changes since 1960. -# From Eric Ulevik (1998-01-05): +# From Eric Ulevik (1998-01-05): # # Here are some URLs to Australian time legislation. These URLs are stable, # and should probably be included in the data file. There are probably more @@ -903,7 +916,7 @@ # From Arthur David Olson: # New South Wales and subjurisdictions have their own ideas of a fun time. -# Based on law library research by John Mackin (john@basser.cs.su.oz), +# Based on law library research by John Mackin, # who notes: # In Australia, time is not legislated federally, but rather by the # individual states. Thus, while such terms as ``Eastern Standard Time'' @@ -923,7 +936,7 @@ # Lawlink NSW: Daylight Saving in New South Wales # -# From Eric Ulevik (1999-05-26): +# From Eric Ulevik (1999-05-26): # DST will start in NSW on the last Sunday of August, rather than the usual # October in 2000. [See: Matthew Moore, # @@ -1057,7 +1070,7 @@ # From Paul Eggert (1995-12-19); # Shanks reports 2:00 for all autumn changes in Australia and New Zealand. -# Robert Uzgalis writes that the New Zealand Daylight +# Robert Uzgalis writes that the New Zealand Daylight # Savings Time Order in Council dated 1990-06-18 specifies 2:00 standard # time on both the first Sunday in October and the third Sunday in March. # As with Australia, we'll assume the tradition is 2:00s, not 2:00. @@ -1136,7 +1149,7 @@ # Micronesia -# Alan Eugene Davis writes (1996-03-16), +# Alan Eugene Davis writes (1996-03-16), # ``I am certain, having lived there for the past decade, that "Truk" # (now properly known as Chuuk) ... is in the time zone GMT+10.'' # @@ -1244,10 +1257,10 @@ # October to March, which has won approval in principle from the Tongan # Government. -# From Steffen Thorsen [straen@thorsen.priv.no] (1999-09-09): +# From Steffen Thorsen (1999-09-09): # * Tonga will introduce DST in November # -# I was given this link by John Letts : +# I was given this link by John Letts: # # http://news.bbc.co.uk/hi/english/world/asia-pacific/newsid_424000/424764.stm # @@ -1257,7 +1270,7 @@ # of UTC as well, but as far as I know Fiji will only be 13 hours ahead # (12 + 1 hour DST). -# From Arthur David Olson [arthur_david_olson@nih.gov] (1999-09-20): +# From Arthur David Olson (1999-09-20): # According to (1999-10-29): +# From Paul Eggert (1999-10-29): # A good source for time zone historical data outside the U.S. is # Thomas G. Shanks, The International Atlas (5th edition), # San Diego: ACS Publications, Inc. (1999). @@ -55,7 +55,7 @@ # A reliable and entertaining source about time zones, especially in Britain, # Derek Howse, Greenwich time and longitude, Philip Wilson Publishers (1997). -# From Peter Ilieve (1994-12-04), +# From Peter Ilieve (1994-12-04), # The original six [EU members]: Belgium, France, (West) Germany, Italy, # Luxembourg, the Netherlands. # Plus, from 1 Jan 73: Denmark, Ireland, United Kingdom. @@ -81,7 +81,7 @@ # Britain (United Kingdom) and Ireland (Eire) -# From Peter Ilieve (1994-07-06): +# From Peter Ilieve (1994-07-06): # # On 17 Jan 1994 the Independent, a UK quality newspaper, had a piece about # historical vistas along the Thames in west London. There was a photo @@ -102,7 +102,7 @@ # # [This yields GMTOFF = -0:01:15 for London LMT in the 18th century.] -# From Paul Eggert (1993-11-18): +# From Paul Eggert (1993-11-18): # # Howse writes that Britain was the first country to use standard time. # The railways cared most about the inconsistencies of local mean time, @@ -168,12 +168,12 @@ # known as "British" Summer Time in all parts of the United Kingdom. # Date: 4 Jan 89 08:57:25 GMT (Wed) -# From: Jonathan Leffler +# From: Jonathan Leffler # [British Summer Time] is fixed annually by Act of Parliament. # If you can predict what Parliament will do, you should be in # politics making a fortune, not computing. -# From Chris Carrier <72157.3334@CompuServe.COM> (1996-06-14): +# From Chris Carrier (1996-06-14): # I remember reading in various wartime issues of the London Times the # acronym BDST for British Double Summer Time. Look for the published # time of sunrise and sunset in The Times, when BDST was in effect, and @@ -204,15 +204,15 @@ # and follows the more usual convention of putting the location name first, # so we use `BDST'. -# Peter Ilieve (1998-04-19) described at length +# Peter Ilieve (1998-04-19) described at length # the history of summer time legislation in the United Kingdom. -# Since 1998 Joseph S. Myers has been updating +# Since 1998 Joseph S. Myers has been updating # and extending this list, which can be found in # # History of legal time in Britain # -# From Joseph S. Myers (1998-01-06): +# From Joseph S. Myers (1998-01-06): # # The legal time in the UK outside of summer time is definitely GMT, not UTC; # see Lord Tanlaw's speech @@ -255,6 +255,35 @@ # "Timeball on the ballast office is down. Dunsink time." # -- James Joyce, Ulysses +# From Joseph S. Myers (2005-01-26): +# Irish laws are available online at www.irishstatutebook.ie. These include +# various relating to legal time, for example: +# +# ZZA13Y1923.html ZZA12Y1924.html ZZA8Y1925.html ZZSIV20PG1267.html +# +# ZZSI71Y1947.html ZZSI128Y1948.html ZZSI23Y1949.html ZZSI41Y1950.html +# ZZSI27Y1951.html ZZSI73Y1952.html +# +# ZZSI11Y1961.html ZZSI232Y1961.html ZZSI182Y1962.html +# ZZSI167Y1963.html ZZSI257Y1964.html ZZSI198Y1967.html +# ZZA23Y1968.html ZZA17Y1971.html +# +# ZZSI67Y1981.html ZZSI212Y1982.html ZZSI45Y1986.html +# ZZSI264Y1988.html ZZSI52Y1990.html ZZSI371Y1992.html +# ZZSI395Y1994.html ZZSI484Y1997.html ZZSI506Y2001.html +# +# [These are all relative to the root, e.g., the first is +# .] +# +# (These are those I found, but there could be more. In any case these +# should allow various updates to the comments in the europe file to cover +# the laws applicable in Ireland.) +# +# (Note that the time in the Republic of Ireland since 1968 has been defined +# in terms of standard time being GMT+1 with a period of winter time when it +# is GMT, rather than standard time being GMT with a period of summer time +# being GMT+1.) + # From Paul Eggert (1999-03-28): # Clive Feather (, 1997-03-31) # reports that Folkestone (Cheriton) Shuttle Terminal uses Concession Time @@ -507,7 +536,7 @@ # Previous editions of this database used abbreviations like MET DST # for Central European Summer Time, but this didn't agree with common usage. -# From Markus Kuhn (1996-07-12): +# From Markus Kuhn (1996-07-12): # The official German names ... are # # Mitteleuropaeische Zeit (MEZ) = UTC+01:00 @@ -623,7 +652,7 @@ # pp 8-9. # LMT before 1892 was 0:17:30, according to the official journal of Belgium: # Moniteur Belge, Samedi 30 Avril 1892, N.121. -# Thanks to Pascal Delmoitie for these references. +# Thanks to Pascal Delmoitie for these references. # The 1918 rules are listed for completeness; they apply to unoccupied Belgium. # Assume Brussels switched to WET in 1918 when the armistice took effect. # @@ -682,7 +711,7 @@ # Bulgaria # -# From Plamen Simenov via Steffen Thorsen (1999-09-09): +# From Plamen Simenov via Steffen Thorsen (1999-09-09): # A document of Government of Bulgaria (No.94/1997) says: # EET --> EETDST is in 03:00 Local time in last Sunday of March ... # EETDST --> EET is in 04:00 Local time in last Sunday of October @@ -754,6 +783,11 @@ 0:00 - WET 1981 0:00 EU WE%sT # +# From Paul Eggert (2004-10-31): +# During World War II, Germany maintained secret manned weather stations in +# East Greenland and Franz Josef Land, but we don't know their time zones. +# My source for this is Wilhelm Dege's book mentioned under Svalbard. +# # From Paul Eggert (1996-11-22): # Greenland joined the EU as part of Denmark, obtained home rule on 1979-05-01, # and left the EU on 1985-02-01. It therefore should have been using EU @@ -840,12 +874,12 @@ -4:00 Thule A%sT # Estonia -# From Peter Ilieve (1994-10-15): +# From Peter Ilieve (1994-10-15): # A relative in Tallinn confirms the accuracy of the data for 1989 onwards # [through 1994] and gives the legal authority for it, # a regulation of the Government of Estonia, No. 111 of 1989.... # -# From Peter Ilieve (1996-10-28): +# From Peter Ilieve (1996-10-28): # [IATA SSIM (1992/1996) claims that the Baltic republics switch at 01:00s, # but a relative confirms that Estonia still switches at 02:00s, writing:] # ``I do not [know] exactly but there are some little different @@ -855,7 +889,7 @@ # human physiology. It seems that Estonia maybe will not change to # summer time next spring.'' -# From Peter Ilieve (1998-11-04), heavily edited: +# From Peter Ilieve (1998-11-04), heavily edited: # # The 1998-09-22 Estonian time law # @@ -904,11 +938,11 @@ # Finland # -# From Hannu Strang (25 Sep 1994 06:03:37 UTC): +# From Hannu Strang (25 Sep 1994 06:03:37 UTC): # Well, here in Helsinki we're just changing from summer time to regular one, # and it's supposed to change at 4am... # -# From Paul Eggert (25 Sep 1994): +# From Paul Eggert (25 Sep 1994): # Shanks says Finland has switched at 02:00 standard time since 1981. # Go with Strang instead. # @@ -985,7 +1019,7 @@ # Dole, Morez, St-Claude, and Collognes (Haute-Savioe). Rule France 1941 only - May 5 0:00 2:00 M # Midsummer # Shanks says this transition occurred at Oct 6 1:00, -# but go with Denis.Excoffier@ens.fr (1997-12-12), +# but go with Denis Excoffier (1997-12-12), # who quotes the Ephemerides Astronomiques for 1998 from Bureau des Longitudes # as saying 5/10/41 22hUT. Rule France 1941 only - Oct 6 0:00 1:00 S @@ -1019,7 +1053,7 @@ # Germany -# From Markus Kuhn (1998-09-29): +# From Markus Kuhn (1998-09-29): # The German time zone web site by the Physikalisch-Technische # Bundesanstalt contains DST information back to 1916. # [See tz-link.htm for the URL.] @@ -1134,7 +1168,7 @@ # Iceland # -# From Adam David (1993-11-06): +# From Adam David (1993-11-06): # The name of the timezone in Iceland for system / mail / news purposes is GMT. # # (1993-12-05): @@ -1161,7 +1195,7 @@ # might be a reference to the Julian calendar as opposed to Gregorian, or it # might mean something else (???). # -# From Paul Eggert (1999-10-29): +# From Paul Eggert (1999-10-29): # The Iceland Almanak, Shanks and Whitman disagree on many points. # We go with the Almanak, except for one claim from Shanks, namely that # Reykavik was 21W57 from 1837 to 1908, local mean time before that. @@ -1277,7 +1311,7 @@ # Latvia -# From Liene Kanepe (1998-09-17): +# From Liene Kanepe (1998-09-17): # I asked about this matter Scientific Secretary of the Institute of Astronomy # of The University of Latvia Dr. paed Mr. Ilgonis Vilks. I also searched the @@ -1364,7 +1398,7 @@ # IATA SSIM (1992/1996) says Lithuania uses W-Eur rules, but since it is # known to be wrong about Estonia and Latvia, assume it's wrong here too. -# From Marius Gedminas (1998-08-07): +# From Marius Gedminas (1998-08-07): # I would like to inform that in this year Lithuanian time zone # (Europe/Vilnius) was changed. @@ -1471,7 +1505,7 @@ # on 1991-08-27 (the 1992-01-19 date is that of a Russian decree). # In early 1992 there was large-scale interethnic violence in the area # and it's possible that some Russophones continued to observe Moscow time. -# But moldavizolit@tirastel.md and mk@tirastel.md separately reported via +# But [two people] separately reported via # Jesper Norgaard that as of 2001-01-24 Tiraspol was like Chisinau. # The Tiraspol entry has therefore been removed for now. @@ -1633,7 +1667,7 @@ # says that the Germans were # expelled on 1942-05-14. However, small parties of Germans did return, # and according to Wilhelm Dege's book "War North of 80" (1954) -# +# # the German armed forces at the Svalbard weather station code-named # Haudegen did not surrender to the Allies until September 1945. # @@ -1682,7 +1716,7 @@ # says the autumn 1995 switch was at 02:00. # Stick with W-Eur for now. # -# From Marcin.Kasperski@softax.com.pl (1999-06-10): +# From Marcin Kasperski (1999-06-10): # According to my colleagues someone recently decided, that Poland would # follow European Union regulations, so - I think - the matter is not # worth further discussion. @@ -1695,11 +1729,11 @@ # Portugal # -# From Rui Pedro Salgueiro (1992-11-12): +# From Rui Pedro Salgueiro (1992-11-12): # Portugal has recently (September, 27) changed timezone # (from WET to MET or CET) to harmonize with EEC. # -# Martin Bruckmann (1996-02-29) reports via Peter Ilieve +# Martin Bruckmann (1996-02-29) reports via Peter Ilieve # that Portugal is reverting to 0:00 by not moving its clocks this spring. # The new Prime Minister was fed up with getting up in the dark in the winter. # @@ -1829,25 +1863,25 @@ # Russia -# From Paul Eggert (1999-11-12): +# From Paul Eggert (1999-11-12): # Except for Moscow after 1919-07-01, I invented the time zone abbreviations. # Moscow time zone abbreviations after 1919-07-01, and Moscow rules after 1991, # are from Andrey A. Chernov. The rest is from Shanks, except we follow # Chernov's report that 1992 DST transitions were Sat 23:00, not Sun 02:00s. # -# From Stanislaw A. Kuzikowski (1994-06-29): +# From Stanislaw A. Kuzikowski (1994-06-29): # But now it is some months since Novosibirsk is 3 hours ahead of Moscow! # I do not know why they have decided to make this change; # as far as I remember it was done exactly during winter->summer switching # so we (Novosibirsk) simply did not switch. # -# From Andrey A. Chernov (1996-10-04): +# From Andrey A. Chernov (1996-10-04): # `MSK' and `MSD' were born and used initially on Moscow computers with # UNIX-like OSes by several developer groups (e.g. Demos group, Kiae group).... # The next step was the UUCP network, the Relcom predecessor # (used mainly for mail), and MSK/MSD was actively used there. # -# From Chris Carrier <72157.3334@CompuServe.COM> (1996-10-30): +# From Chris Carrier (1996-10-30): # According to a friend of mine who rode the Trans-Siberian Railroad from # Moscow to Irkutsk in 1995, public air and rail transport in Russia ... # still follows Moscow time, no matter where in Russia it is located. @@ -2035,7 +2069,7 @@ 1:00 - CET 1941 Apr 18 23:00 1:00 C-Eur CE%sT 1945 May 8 2:00s 1:00 1:00 CEST 1945 Sep 16 2:00s -# Metod Kozelj reports that the legal date of +# Metod Kozelj reports that the legal date of # transition to EU rules was 1982-11-27, for all of Yugoslavia at the time. # Shanks doesn't give as much detail, so go with Kozelj. 1:00 - CET 1982 Nov 27 @@ -2309,7 +2343,7 @@ 3:00 Russia MSK/MSD 1990 3:00 - MSK 1990 Jul 1 2:00 2:00 - EET 1992 -# From Paul Eggert (1999-11-12): +# From Paul Eggert (1999-11-12): # The _Economist_ (1994-05-28, p 45) reports that central Crimea switched # from Kiev to Moscow time sometime after the January 1994 elections. # Shanks says ``date of change uncertain'', but implies that it happened @@ -2339,8 +2373,7 @@ # ... # Date: Wed, 28 Jan 87 16:56:27 -0100 -# From: seismo!mcvax!cgcha!wtho (Tom Hofmann) -# Message-Id: <8701281556.AA22174@cgcha.uucp> +# From: Tom Hofmann # ... # # ...the European time rules are...standardized since 1981, when @@ -2359,11 +2392,11 @@ # # Tom Hofmann, Scientific Computer Center, CIBA-GEIGY AG, # 4002 Basle, Switzerland -# UUCP: ...!mcvax!cernvax!cgcha!wtho +# ... # ... # Date: Wed, 4 Feb 87 22:35:22 +0100 -# From: seismo!mcvax!cwi.nl!dik (Dik T. Winter) +# From: Dik T. Winter # ... # # The information from Tom Hofmann is (as far as I know) not entirely correct. @@ -2389,8 +2422,7 @@ # # ... # dik t. winter, cwi, amsterdam, nederland -# INTERNET : dik@cwi.nl -# BITNET/EARN: dik@mcvax +# ... # From Bob Devine (1988-01-28): # ... diff -ruN zoneinfo.orig/factory zoneinfo/factory --- zoneinfo.orig/factory Thu Jan 21 19:55:55 1999 +++ zoneinfo/factory Thu Jul 14 15:13:38 2005 @@ -5,4 +5,4 @@ # Also useful for the "comp.sources" version. # Zone NAME GMTOFF RULES FORMAT -Zone Factory 0 - "Local time zone must be set--use tzsetup" +Zone Factory 0 - "Local time zone must be set--see zic manual page" diff -ruN zoneinfo.orig/leapseconds zoneinfo/leapseconds --- zoneinfo.orig/leapseconds Tue Jul 5 12:48:53 2005 +++ zoneinfo/leapseconds Thu Jul 14 15:13:39 2005 @@ -1,4 +1,4 @@ -# @(#)leapseconds 7.17 +# @(#)leapseconds 7.20 # Allowance for leapseconds added to each timezone file. @@ -45,55 +45,48 @@ Leap 1998 Dec 31 23:59:60 + S Leap 2005 Dec 31 23:59:60 + S -# -# -# -# INTERNATIONAL EARTH ROTATION AND REFERENCE SYSTEMS SERVICE (IERS) -# +# INTERNATIONAL EARTH ROTATION AND REFERENCE SYSTEMS SERVICE (IERS) +# # SERVICE INTERNATIONAL DE LA ROTATION TERRESTRE ET DES SYSTEMES DE REFERENCE -# +# # SERVICE DE LA ROTATION TERRESTRE -# OBSERVATOIRE DE PARIS +# OBSERVATOIRE DE PARIS # 61, Av. de l'Observatoire 75014 PARIS (France) # Tel. : 33 (0) 1 40 51 22 26 # FAX : 33 (0) 1 40 51 22 91 -# e-mail : services.iers@obspm.fr +# ... # http://hpiers.obspm.fr/eop-pc -# -# Paris, 4 July 2005 -# -# Bulletin C 30 -# -# To authorities responsible -# for the measurement and -# distribution of time -# -# +# +# Paris, 4 July 2005 +# +# Bulletin C 30 +# +# To authorities responsible +# for the measurement and +# distribution of time +# +# # UTC TIME STEP # on the 1st of January 2006 -# -# -# A positive leap second will be introduced at the end of December 2005. -# The sequence of dates of the UTC second markers will be: -# -# 2005 December 31, 23h 59m 59s -# 2005 December 31, 23h 59m 60s -# 2006 January 1, 0h 0m 0s -# -# The difference between UTC and the International Atomic Time TAI is: -# -# from 1999 January 1, 0h UTC, to 2006 January 1 0h UTC : UTC-TAI = - 32s -# from 2006 January 1, 0h UTC, until further notice : UTC-TAI = - 33s -# -# Leap seconds can be introduced in UTC at the end of the months of December -# or June, depending on the evolution of UT1-TAI. Bulletin C is mailed every -# six months, either to announce a time step in UTC or to confirm that there -# will be no time step at the next possible date. -# -# -# -# Daniel GAMBIS -# Head -# Earth Orientation Center of IERS -# Observatoire de Paris, France -# +# +# A positive leap second will be introduced at the end of December 2005. +# The sequence of dates of the UTC second markers will be: +# +# 2005 December 31, 23h 59m 59s +# 2005 December 31, 23h 59m 60s +# 2006 January 1, 0h 0m 0s +# +# The difference between UTC and the International Atomic Time TAI is: +# +# from 1999 January 1, 0h UTC, to 2006 January 1 0h UTC : UTC-TAI = - 32s +# from 2006 January 1, 0h UTC, until further notice : UTC-TAI = - 33s +# +# Leap seconds can be introduced in UtC at the end of the months of December +# or June, depending on the evolution of UT1-TAI. Bulletin C is mailed every +# six months, either to announce a time step in UTC or to confirm that there +# will be no time step at the next possible date. +# +# Daniel GAMBIS +# Head +# Earth Orientation Center of IERS +# Observatoire de Paris, France diff -ruN zoneinfo.orig/northamerica zoneinfo/northamerica --- zoneinfo.orig/northamerica Thu Dec 2 21:01:25 2004 +++ zoneinfo/northamerica Thu Jul 14 15:13:39 2005 @@ -1,11 +1,11 @@ -# @(#)northamerica 7.70 +# @(#)northamerica 7.75 # also includes Central America and the Caribbean # This data is by no means authoritative; if you think you know better, # go ahead and edit the file (and please send any changes to # tz@elsie.nci.nih.gov for general use in the future). -# From Paul Eggert (1999-03-22): +# From Paul Eggert (1999-03-22): # A reliable and entertaining source about time zones is # Derek Howse, Greenwich time and longitude, Philip Wilson Publishers (1997). @@ -24,12 +24,16 @@ # His proposal was adopted by the railroads on 1883-11-18 at 12:00, # and the most of the country soon followed suit. -# From Paul Eggert (1995-12-19): +# From Paul Eggert (2005-04-16): +# That 1883 transition occurred at 12:00 new time, not at 12:00 old time. +# See p 46 of David Prerau, Seize the daylight, Thunder's Mouth Press (2005). + +# From Paul Eggert (1995-12-19): # A good source for time zone historical data in the US is # Thomas G. Shanks, The American Atlas (5th edition), # San Diego: ACS Publications, Inc. (1991). # Make sure you have the errata sheet; the book is somewhat useless without it. -# It is the source for the US and Puerto Rico entries below. +# It is the source for most of the pre-1991 US and Puerto Rico entries below. # From Paul Eggert (2001-03-06): # Daylight Saving Time was first suggested as a joke by Benjamin Franklin @@ -48,7 +52,8 @@ # to push people into bed earlier, and get them up earlier, to make # them healthy, wealthy and wise in spite of themselves. # -# -- Robertson Davies, The Diary of Samuel Marchbanks (1947), XIX, Sunday +# -- Robertson Davies, The diary of Samuel Marchbanks, +# Clarke, Irwin (1947), XIX, Sunday # # For more about the first ten years of DST in the United States, see # Robert Garland's @@ -78,7 +83,7 @@ # Time' instead of the old familiar 'Eastern War Time.' Peace is wonderful." # (August 1945) by way of confirmation. -# From Joseph Gallant , citing +# From Joseph Gallant citing # George H. Douglas, _The Early Days of Radio Broadcasting_ (1987): # At 7 P.M. (Eastern War Time) [on 1945-08-14], the networks were set # to switch to London for Attlee's address, but the American people @@ -208,6 +213,13 @@ # Pennsylvania, Rhode Island, South Carolina, eastern Tennessee, # Vermont, Virginia, West Virginia +# From Dave Cantor (2004-11-02): +# Early this summer I had the occasion to visit the Mount Washington +# Observatory weather station atop (of course!) Mount Washington [, NH].... +# One of the staff members said that the station was on Eastern Standard Time +# and didn't change their clocks for Daylight Saving ... so that their +# reports will always have times which are 5 hours behind UTC. + # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER Rule NYC 1920 only - Mar lastSun 2:00 1:00 D Rule NYC 1920 only - Oct lastSun 2:00 0 S @@ -215,7 +227,7 @@ Rule NYC 1921 1954 - Sep lastSun 2:00 0 S Rule NYC 1955 1966 - Oct lastSun 2:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone America/New_York -4:56:02 - LMT 1883 Nov 18 12:00 +Zone America/New_York -4:56:02 - LMT 1883 Nov 18 12:03:58 -5:00 US E%sT 1920 -5:00 NYC E%sT 1942 -5:00 US E%sT 1946 @@ -241,7 +253,7 @@ Rule Chicago 1922 1954 - Sep lastSun 2:00 0 S Rule Chicago 1955 1966 - Oct lastSun 2:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone America/Chicago -5:50:36 - LMT 1883 Nov 18 12:00 +Zone America/Chicago -5:50:36 - LMT 1883 Nov 18 12:09:24 -6:00 US C%sT 1920 -6:00 Chicago C%sT 1936 Mar 1 2:00 -5:00 - EST 1936 Nov 15 2:00 @@ -250,7 +262,7 @@ -6:00 Chicago C%sT 1967 -6:00 US C%sT # Oliver County, ND switched from mountain to central time on 1992-10-25. -Zone America/North_Dakota/Center -6:45:12 - LMT 1883 Nov 18 12:00 +Zone America/North_Dakota/Center -6:45:12 - LMT 1883 Nov 18 12:14:48 -7:00 US M%sT 1992 Oct 25 02:00 -6:00 US C%sT @@ -269,7 +281,7 @@ Rule Denver 1965 1966 - Apr lastSun 2:00 1:00 D Rule Denver 1965 1966 - Oct lastSun 2:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone America/Denver -6:59:56 - LMT 1883 Nov 18 12:00 +Zone America/Denver -6:59:56 - LMT 1883 Nov 18 12:00:04 -7:00 US M%sT 1920 -7:00 Denver M%sT 1942 -7:00 US M%sT 1946 @@ -289,7 +301,7 @@ Rule CA 1950 1961 - Sep lastSun 2:00 0 S Rule CA 1962 1966 - Oct lastSun 2:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone America/Los_Angeles -7:52:58 - LMT 1883 Nov 18 12:00 +Zone America/Los_Angeles -7:52:58 - LMT 1883 Nov 18 12:07:02 -8:00 US P%sT 1946 -8:00 CA P%sT 1967 -8:00 US P%sT @@ -355,10 +367,26 @@ -11:00 US B%sT 1983 Oct 30 2:00 -10:00 US AH%sT 1983 Nov 30 -10:00 US HA%sT +# The following switches don't quite make our 1970 cutoff. +# # Shanks writes that part of southwest Alaska (e.g. Aniak) # switched from -11:00 to -10:00 on 1968-09-22 at 02:00, # and another part (e.g. Akiak) made the same switch five weeks later. -# These switches don't quite make our 1970 cutoff. +# +# From David Flater (2004-11-09): +# In e-mail, 2004-11-02, Ray Hudson, historian/liaison to the Unalaska +# Historic Preservation Commission, provided this information, which +# suggests that Unalaska deviated from statutory time from early 1967 +# possibly until 1983: +# +# Minutes of the Unalaska City Council Meeting, January 10, 1967: +# "Except for St. Paul and Akutan, Unalaska is the only important +# location not on Alaska Standard Time. The following resolution was +# made by William Robinson and seconded by Henry Swanson: Be it +# resolved that the City of Unalaska hereby goes to Alaska Standard +# Time as of midnight Friday, January 13, 1967 (1 A.M. Saturday, +# January 14, Alaska Standard Time.) This resolution was passed with +# three votes for and one against." # Hawaii # @@ -400,7 +428,7 @@ # Shanks says the 1944 experiment came to an end on 1944-03-17. # Go with the Arizona State Library instead. -Zone America/Phoenix -7:28:18 - LMT 1883 Nov 18 12:00 +Zone America/Phoenix -7:28:18 - LMT 1883 Nov 18 11:31:42 -7:00 US M%sT 1944 Jan 1 00:01 -7:00 - MST 1944 Apr 1 00:01 -7:00 US M%sT 1944 Oct 1 00:01 @@ -422,9 +450,9 @@ # Lemhi, Lincoln, Madison, Minidoka, Oneida, Owyhee, Payette, Power, # Teton, Twin Falls, Valley, Washington counties) and eastern Oregon # switched four weeks late in 1974. -# +# # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone America/Boise -7:44:49 - LMT 1883 Nov 18 12:00 +Zone America/Boise -7:44:49 - LMT 1883 Nov 18 12:15:11 -8:00 US P%sT 1923 May 13 2:00 -7:00 US M%sT 1974 -7:00 - MST 1974 Feb 3 2:00 @@ -468,7 +496,7 @@ Rule Indianapolis 1941 1954 - Sep lastSun 2:00 0 S Rule Indianapolis 1946 1954 - Apr lastSun 2:00 1:00 D # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone America/Indianapolis -5:44:38 - LMT 1883 Nov 18 12:00 +Zone America/Indianapolis -5:44:38 - LMT 1883 Nov 18 12:15:22 -6:00 US C%sT 1920 -6:00 Indianapolis C%sT 1942 -6:00 US C%sT 1946 @@ -488,7 +516,7 @@ Rule Marengo 1954 1960 - Apr lastSun 2:00 1:00 D Rule Marengo 1954 1960 - Sep lastSun 2:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone America/Indiana/Marengo -5:45:23 - LMT 1883 Nov 18 12:00 +Zone America/Indiana/Marengo -5:45:23 - LMT 1883 Nov 18 12:14:37 -6:00 US C%sT 1951 -6:00 Marengo C%sT 1961 Apr 30 2:00 -5:00 - EST 1969 @@ -509,7 +537,7 @@ Rule Starke 1957 1958 - Sep lastSun 2:00 0 S Rule Starke 1959 1961 - Oct lastSun 2:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone America/Indiana/Knox -5:46:30 - LMT 1883 Nov 18 12:00 +Zone America/Indiana/Knox -5:46:30 - LMT 1883 Nov 18 12:13:30 -6:00 US C%sT 1947 -6:00 Starke C%sT 1962 Apr 29 2:00 -5:00 - EST 1963 Oct 27 2:00 @@ -518,7 +546,7 @@ # # Switzerland County, Indiana, last observed DST in 1972. # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone America/Indiana/Vevay -5:40:16 - LMT 1883 Nov 18 12:00 +Zone America/Indiana/Vevay -5:40:16 - LMT 1883 Nov 18 12:19:44 -6:00 US C%sT 1954 Apr 25 2:00 -5:00 - EST 1969 -5:00 US E%sT 1973 @@ -535,7 +563,7 @@ Rule Louisville 1950 1955 - Sep lastSun 2:00 0 S Rule Louisville 1956 1960 - Oct lastSun 2:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone America/Louisville -5:43:02 - LMT 1883 Nov 18 12:00 +Zone America/Louisville -5:43:02 - LMT 1883 Nov 18 12:16:58 -6:00 US C%sT 1921 -6:00 Louisville C%sT 1942 -6:00 US C%sT 1946 @@ -572,7 +600,7 @@ # Federal Register 65, 160 (2000-08-17), page 50154-50158. # # -Zone America/Kentucky/Monticello -5:39:24 - LMT 1883 Nov 18 12:00 +Zone America/Kentucky/Monticello -5:39:24 - LMT 1883 Nov 18 12:20:36 -6:00 US C%sT 1946 -6:00 - CST 1968 -6:00 US C%sT 2000 Oct 29 2:00 @@ -681,7 +709,7 @@ ################################################################################ -# From Paul Eggert (1999-10-29): +# From Paul Eggert (1999-10-29): # A good source for time zone historical data outside the US is # Thomas G. Shanks, The International Atlas (5th edition), # San Diego: ACS Publications, Inc. (1999). @@ -709,7 +737,7 @@ # Canada -# From Alain LaBont (1994-11-14): +# From Alain LaBont (1994-11-14): # I post here the time zone abbreviations standardized in Canada # for both English and French in the CAN/CSA-Z234.4-89 standard.... # @@ -738,7 +766,7 @@ # T: de Terre-Neuve # Y: du Yukon Yukon # -# From Paul Eggert (1994-11-22): +# From Paul Eggert (1994-11-22): # Alas, this sort of thing must be handled by localization software. # Unless otherwise specified, the data for Canada are all from Shanks. @@ -1123,7 +1151,7 @@ # Matthews and Vincent (1998) write that Denare Beach and Creighton # are like Winnipeg, in violation of Saskatchewan law. -# From W. Jones (1992-11-06): +# From W. Jones (1992-11-06): # The. . .below is based on information I got from our law library, the # provincial archives, and the provincial Community Services department. # A precise history would require digging through newspaper archives, and @@ -1241,7 +1269,7 @@ # From Paul Eggert (1999-10-29): # Dawson switched to PST in 1973. Inuvik switched to MST in 1979. -# Mathew Englander (1996-10-07) gives the following refs: +# Mathew Englander (1996-10-07) gives the following refs: # * 1967. Paragraph 28(34)(g) of the Interpretation Act, S.C. 1967-68, # c. 7 defines Yukon standard time as UTC-9. This is still valid; # see Interpretation Act, R.S.C. 1985, c. I-21, s. 35(1). @@ -1404,7 +1432,7 @@ # Shanks reports that Baja was at -8:00 in 1922/1923. # Shanks says the 1930 transition in Baja was 1930-11-16. # Shanks reports no DST during summer 1931. -# Shanks reports a transition at 1032-03-30 23:00, not 1932-04-01. +# Shanks reports a transition at 1932-03-30 23:00, not 1932-04-01. # Shanks does not report transitions for Baja in 1945 or 1948. # Shanks reports southern Mexico transitions on 1981-12-01, not 12-23. # Shanks says Quintana Roo switched to -6:00 on 1982-12-02, and to -5:00 @@ -1420,7 +1448,7 @@ # Shanks gives 1942-04-01 instead of 1942-04-24, and omits the 1981 # and 1988 DST experiments. Go with spin.com.mx. -# From Alan Perry (1996-02-15): +# From Alan Perry (1996-02-15): # A guy from our Mexico subsidiary finally found the Presidential Decree # outlining the timezone changes in Mexico. # @@ -1850,6 +1878,26 @@ -6:00 Guat C%sT # Haiti +# From Gwillim Law (2005-04-15): +# Risto O. Nykanen wrote me that Haiti is now on DST. +# I searched for confirmation, and I found a +# press release +# on the Web page of the Haitian Consulate in Chicago (2005-03-31), +# . Translated from French, it says: +# +# "The Prime Minister's Communication Office notifies the public in general +# and the press in particular that, following a decision of the Interior +# Ministry and the Territorial Collectivities [I suppose that means the +# provinces], Haiti will move to Eastern Daylight Time in the night from next +# Saturday the 2nd to Sunday the 3rd. +# +# "Consequently, the Prime Minister's Communication Office wishes to inform +# the population that the country's clocks will be set forward one hour +# starting at midnight. This provision will hold until the last Saturday in +# October 2005. +# +# "Port-au-Prince, March 31, 2005" + # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Haiti 1983 only - May 8 0:00 1:00 D Rule Haiti 1984 1987 - Apr lastSun 0:00 1:00 D @@ -1857,6 +1905,8 @@ # Shanks says AT is 2:00, but IATA SSIM (1991/1997) says 1:00s. Go with IATA. Rule Haiti 1988 1997 - Apr Sun>=1 1:00s 1:00 D Rule Haiti 1988 1997 - Oct lastSun 1:00s 0 S +Rule Haiti 2005 only - Apr Sun>=1 0:00 1:00 D +Rule Haiti 2005 only - Oct lastSun 0:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Port-au-Prince -4:49:20 - LMT 1890 -4:49 - PPMT 1917 Jan 24 12:00 # P-a-P MT @@ -1908,11 +1958,28 @@ # Nicaragua seems to be back at -6:00 but I have not been able to find when # they changed from -5:00. # +# From Steffen Thorsen (2005-04-12): +# I've got reports from 8 different people that Nicaragua just started +# DST on Sunday 2005-04-10, in order to save energy because of +# expensive petroleum. The exact end date for DST is not yet +# announced, only "September" but some sites also say "mid-September". +# Some background information is available on the President's official site: +# http://www.presidencia.gob.ni/Presidencia/Files_index/Secretaria/Notas%20de%20Prensa/Presidente/2005/ABRIL/Gobierno-de-nicaragua-adelanta-hora-oficial-06abril.htm +# The Decree, no 23-2005 is available here: +# http://www.presidencia.gob.ni/buscador_gaceta/BD/DECRETOS/2005/Decreto%2023-2005%20Se%20adelanta%20en%20una%20hora%20en%20todo%20el%20territorio%20nacional%20apartir%20de%20las%2024horas%20del%2009%20de%20Abril.pdf +# +# From Paul Eggert (2005-04-12): +# The decree doesn't say anything about daylight saving, but for now let's +# assume that it is daylight saving and that they'll switch back on the +# 2nd Sunday in September. +# # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Nic 1979 1980 - Mar Sun>=16 0:00 1:00 D Rule Nic 1979 1980 - Jun Mon>=23 0:00 0 S Rule Nic 1992 only - Jan 1 4:00 1:00 D Rule Nic 1992 only - Sep 24 0:00 0 S +Rule Nic 2005 only - Apr 10 0:00 1:00 D +Rule Nic 2005 only - Sep 11 0:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Managua -5:45:08 - LMT 1890 -5:45:12 - MMT 1934 Jun 23 # Managua Mean Time? @@ -1920,7 +1987,7 @@ -5:00 - EST 1975 Feb 16 -6:00 Nic C%sT 1993 Jan 1 4:00 -5:00 - EST 1998 Dec - -6:00 - CST + -6:00 Nic C%sT # Panama # Zone NAME GMTOFF RULES FORMAT [UNTIL] diff -ruN zoneinfo.orig/southamerica zoneinfo/southamerica --- zoneinfo.orig/southamerica Thu Dec 2 21:01:25 2004 +++ zoneinfo/southamerica Thu Jul 14 15:13:40 2005 @@ -1,10 +1,10 @@ -# @(#)southamerica 7.55 +# @(#)southamerica 7.60 # This data is by no means authoritative; if you think you know better, # go ahead and edit the file (and please send any changes to # tz@elsie.nci.nih.gov for general use in the future). -# From Paul Eggert (1999-07-07): +# From Paul Eggert (1999-07-07): # A good source for time zone historical data outside the U.S. is # Thomas G. Shanks, The International Atlas (5th edition), # San Diego: ACS Publications, Inc. (1999). @@ -58,7 +58,7 @@ # From U. S. Naval Observatory (1988-01-199): # ARGENTINA 3 H BEHIND UTC -# From Hernan G. Otero (1995-06-26): +# From Hernan G. Otero (1995-06-26): # I am sending modifications to the Argentine time zone table... # AR was chosen because they are the ISO letters that represent Argentina. @@ -86,7 +86,7 @@ Rule Arg 1974 only - May 1 0:00 0 - Rule Arg 1988 only - Dec 1 0:00 1:00 S # -# From Hernan G. Otero (1995-06-26): +# From Hernan G. Otero (1995-06-26): # These corrections were contributed by InterSoft Argentina S.A., # obtaining the data from the: # Talleres de Hidrografia Naval Argentina @@ -96,7 +96,7 @@ Rule Arg 1989 1993 - Mar Sun>=1 0:00 0 - Rule Arg 1989 1992 - Oct Sun>=15 0:00 1:00 S # -# From Hernan G. Otero (1995-06-26): +# From Hernan G. Otero (1995-06-26): # From this moment on, the law that mandated the daylight saving # time corrections was derogated and no more modifications # to the time zones (for daylight saving) are now made. @@ -113,7 +113,7 @@ # Argentina decided not to become one of the countries that go on or off DST. # So Buenos Aires should be -3 hours from GMT at all times. # -# From Fabian L. Arce Jofre (2000-04-04): +# From Fabian L. Arce Jofre (2000-04-04): # The law that claimed DST for Argentina was derogated by President Fernando # de la Rua on March 2, 2000, because it would make people spend more energy # in the winter time, rather than less. The change took effect on March 3. @@ -374,7 +374,7 @@ # Brazil -# From Paul Eggert (1993-11-18): +# From Paul Eggert (1993-11-18): # The mayor of Rio recently attempted to change the time zone rules # just in his city, in order to leave more summer time for the tourist trade. # The rule change lasted only part of the day; @@ -532,7 +532,7 @@ # adopted by same states, minus AL, SE. Rule Brazil 1996 only - Oct 6 0:00 1:00 S Rule Brazil 1997 only - Feb 16 0:00 0 - -# From Daniel C. Sobral (1998-02-12): +# From Daniel C. Sobral (1998-02-12): # In 1997, the DS began on October 6. The stated reason was that # because international television networks ignored Brazil's policy on DS, # they bought the wrong times on satellite for coverage of Pope's visit. @@ -942,9 +942,16 @@ # A decree was issued in Paraguay (no. 16350) on 2002-02-26 that changed the # dst method to be from the first Sunday in September to the first Sunday in # April. -Rule Para 2002 max - Apr Sun>=1 0:00 0 - -Rule Para 2002 max - Sep Sun>=1 0:00 1:00 S - +Rule Para 2002 2004 - Apr Sun>=1 0:00 0 - +Rule Para 2002 2003 - Sep Sun>=1 0:00 1:00 S +# +# From Jesper Norgaard Welen (2005-01-02): +# There are several sources that claim that Paraguay made +# a timezone rule change in autumn 2004. +# From Steffen Thorsen (2005-01-05): +# Decree 1,867 (2004-03-05) +Rule Para 2004 max - Oct Sun>=15 0:00 1:00 S +Rule Para 2005 max - Mar Sun>=8 0:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Asuncion -3:50:40 - LMT 1890 @@ -957,7 +964,7 @@ # # # From Evelyn C. Leeper via Mark Brader (2003-10-26): -# When we were in Peru in 1985-1986, they apparently switched over +# When we were in Peru in 1985-1986, they apparently switched over # sometime between December 29 and January 3 while we were on the Amazon. # # From Paul Eggert (2003-11-02): @@ -1003,7 +1010,7 @@ -4:00 - AST # Uruguay -# From Paul Eggert (1993-11-18): +# From Paul Eggert (1993-11-18): # Uruguay wins the prize for the strangest peacetime manipulation of the rules. # From Shanks: # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S @@ -1056,8 +1063,12 @@ # From Eduardo Cota (2004-09-20): # The uruguayan government has decreed a change in the local time.... # http://www.presidencia.gub.uy/decretos/2004091502.htm -Rule Uruguay 2004 only - Sep Sun>=15 0:00 1:00 S -Rule Uruguay 2005 only - Mar Sun>=8 0:00 0 - +Rule Uruguay 2004 only - Sep 19 0:00 1:00 S +# From Steffen Thorsen (2005-03-11): +# Uruguay's DST was scheduled to end on Sunday, 2005-03-13, but in order to +# save energy ... it was postponed two weeks.... +# http://www.presidencia.gub.uy/_Web/noticias/2005/03/2005031005.htm +Rule Uruguay 2005 only - Mar 27 2:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Montevideo -3:44:44 - LMT 1898 Jun 28 -3:44:44 - MMT 1920 May 1 # Montevideo MT diff -ruN zoneinfo.orig/yearistype.sh zoneinfo/yearistype.sh --- zoneinfo.orig/yearistype.sh Wed Oct 25 17:33:50 2000 +++ zoneinfo/yearistype.sh Thu Jul 14 15:13:40 2005 @@ -1,6 +1,6 @@ #! /bin/sh -: '@(#)yearistype.sh 7.7' +: '@(#)yearistype.sh 7.8' case $#-$1 in 2-|2-0*|2-*[!0-9]*) @@ -9,7 +9,7 @@ esac case $#-$2 in - 2-even) + 2-even) case $1 in *[24680]) exit 0 ;; *) exit 1 ;; @@ -19,7 +19,7 @@ *[02468][048]|*[13579][26]) exit 1 ;; *) exit 0 ;; esac ;; - 2-odd) + 2-odd) case $1 in *[13579]) exit 0 ;; *) exit 1 ;; @@ -29,7 +29,7 @@ *[02468][048]|*[13579][26]) exit 0 ;; *) exit 1 ;; esac ;; - 2-*) + 2-*) echo "$0: wild type - $2" >&2 ;; esac diff -ruN zoneinfo.orig/zone.tab zoneinfo/zone.tab --- zoneinfo.orig/zone.tab Sun Oct 17 21:03:52 2004 +++ zoneinfo/zone.tab Thu Jul 14 15:13:40 2005 @@ -1,11 +1,11 @@ -# @(#)zone.tab 1.30 +# @(#)zone.tab 1.31 # # TZ zone descriptions # -# From Paul Eggert (1996-08-05): +# From Paul Eggert (1996-08-05): # # This file contains a table with the following columns: -# 1. ISO 3166 2-character country code. See /usr/share/misc/iso3166. +# 1. ISO 3166 2-character country code. See the file `iso3166.tab'. # 2. Latitude and longitude of the zone's principal location # in ISO 6709 sign-degrees-minutes-seconds format, # either +-DDMM+-DDDMM or +-DDMMSS+-DDDMMSS, --- zoneinfo.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 06:00:30 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 52FFF16A41F for ; Tue, 16 Aug 2005 06:00:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB22943D48 for ; Tue, 16 Aug 2005 06:00:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7G60Td4063642 for ; Tue, 16 Aug 2005 06:00:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7G60Tl8063639; Tue, 16 Aug 2005 06:00:29 GMT (envelope-from gnats) Resent-Date: Tue, 16 Aug 2005 06:00:29 GMT Resent-Message-Id: <200508160600.j7G60Tl8063639@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, Alexander Botero-Lowry Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3407F16A41F for ; Tue, 16 Aug 2005 05:54:51 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 076D943D45 for ; Tue, 16 Aug 2005 05:54:51 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id j7G5sofY093188 for ; Tue, 16 Aug 2005 05:54:50 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j7G5sorW093187; Tue, 16 Aug 2005 05:54:50 GMT (envelope-from nobody) Message-Id: <200508160554.j7G5sorW093187@www.freebsd.org> Date: Tue, 16 Aug 2005 05:54:50 GMT From: Alexander Botero-Lowry To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: gnu/84976: System ncruses does not have wide character functions X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 06:00:30 -0000 >Number: 84976 >Category: gnu >Synopsis: System ncruses does not have wide character functions >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 16 06:00:29 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Alexander Botero-Lowry >Release: FreeBD 6.0Beta1 >Organization: >Environment: FreeBSD Laptop 6.0-BETA1 FreeBSD 6.0-BETA1 #1: Sun Jul 31 23:21:29 EDT 2005 root@Laptop:/usr/src/sys/i386/compile/LAPTOP i386 >Description: > nm /usr/lib/libncurses*.a | grep waddwstr > ncruses in the default system seems to lack wide character support. >How-To-Repeat: Compile a program that uses wide chracter support using the base system ncurses. >Fix: I suppose --enable-widec in the configuration portion of make World for ncurses... >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 07:00:27 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 8BEF716A420 for ; Tue, 16 Aug 2005 07:00:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D8C143D49 for ; Tue, 16 Aug 2005 07:00:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7G70RdG072356 for ; Tue, 16 Aug 2005 07:00:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7G70RUR072355; Tue, 16 Aug 2005 07:00:27 GMT (envelope-from gnats) Date: Tue, 16 Aug 2005 07:00:27 GMT Message-Id: <200508160700.j7G70RUR072355@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Jan Mikkelsen" Cc: Subject: Re: kern/84102: FreeBSD 6.0 BETA 1 install Panic's in VMWARE Workstation 5.0.0 build-13124 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jan Mikkelsen List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 07:00:27 -0000 The following reply was made to PR kern/84102; it has been noted by GNATS. From: "Jan Mikkelsen" To: Cc: Subject: Re: kern/84102: FreeBSD 6.0 BETA 1 install Panic's in VMWARE Workstation 5.0.0 build-13124 Date: Tue, 16 Aug 2005 16:50:38 +1000 I see this too: Vmware 3.2.1, FreeBSD 6.0 Beta 2. Full stack trace: panic: Duplicate free of item 0xc1b0c4a4 from zone 0xc143f000(g_bio) cpuid = 0 KDB: enter: panic [thread pid 3 tid 100021 ] Stopped at kdb_enter+0x2b: nop db> where Tracing pid 3 tid 100021 td 0xc1833300 kdb_enter(c0856274) at kdb_enter+0x2b panic(c0870cfb,c1b0c4a4,c143f000,c0850ced,c0870cdf) at panic+0x127 uma_dbg_free(c143f000,0,c1b0c4a4) at uma_dbg_free+0x110 uma_zfree_arg(c143f000,c1b0c4a4,0) at uma_zfree_arg+0x66 g_destroy_bio(c1b0c4a4) at g_destroy_bio+0x13 g_vfs_done(c1b0c4a4) at g_vfs_done+0x5a biodone(c1b0c4a4,ca0bccc4,0,c0850cb0,1e4) at biodone+0x57 g_io_schedule_up(c1833300) at g_io_schedule_up+0xb5 g_up_procbody(0,ca0bcd38,0,c05fed08,0) at g_up_procbody+0x5a fork_exit(c05fed08,0,ca0bcd38) at fork_exit+0xa0 fork_trampoline() at fork_trampoline+0x8 --- trap 0x1, eip = 0, esp = 0xca0bcd6c, ebp = 0 --- From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 09:20:13 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 0849616A41F for ; Tue, 16 Aug 2005 09:20:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 930C943D49 for ; Tue, 16 Aug 2005 09:20:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7G9KCDf094020 for ; Tue, 16 Aug 2005 09:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7G9KCWt094018; Tue, 16 Aug 2005 09:20:12 GMT (envelope-from gnats) Resent-Date: Tue, 16 Aug 2005 09:20:12 GMT Resent-Message-Id: <200508160920.j7G9KCWt094018@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, Robert Millan Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ACBA16A41F for ; Tue, 16 Aug 2005 09:16:56 +0000 (GMT) (envelope-from rmh@khazad.dyndns.org) Received: from khazad.dyndns.org (99.Red-83-55-56.pooles.rima-tde.net [83.55.56.99]) by mx1.FreeBSD.org (Postfix) with ESMTP id A67CF43D46 for ; Tue, 16 Aug 2005 09:16:54 +0000 (GMT) (envelope-from rmh@khazad.dyndns.org) Received: from rmh by bombadil with local (Exim 4.52) id 1E4Xbv-0000Sa-AN; Mon, 15 Aug 2005 07:34:11 +0200 Message-Id: Date: Mon, 15 Aug 2005 07:34:11 +0200 From: Robert Millan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: 323154-forwarded@bugs.debian.org Subject: kern/84981: [PATCH] header protection for X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Robert Millan List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 09:20:13 -0000 >Number: 84981 >Category: kern >Synopsis: [PATCH] header protection for >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 16 09:20:11 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Robert Millan >Release: GNU/kFreeBSD 5.3-1 i686 >Organization: >Environment: System: GNU/kFreeBSD bombadil 5.3-1 #0 Sun Aug 14 12:51:55 CEST 2005 i686 GNU/kFreeBSD >Description: This patch implements header protection in by modifiing the generator script in sys/kern/makesyscalls.sh. Please could you apply and re-generate sys/syscall.h ? Thanks! >How-To-Repeat: >Fix: diff -ur sys/kern/makesyscalls.sh~ sys/kern/makesyscalls.sh --- sys/kern/makesyscalls.sh~ 2003-12-23 04:50:43.000000000 +0100 +++ sys/kern/makesyscalls.sh 2005-08-14 15:05:41.000000000 +0200 @@ -13,6 +13,7 @@ sysproto="../sys/sysproto.h" sysproto_h=_SYS_SYSPROTO_H_ syshdr="../sys/syscall.h" +syshdr_h=_SYS_SYSCALL_H_ sysmk="../sys/syscall.mk" syssw="init_sysent.c" syscallprefix="SYS_" @@ -72,6 +73,7 @@ sysarg = \"$sysarg\" sysnames = \"$sysnames\" syshdr = \"$syshdr\" + syshdr_h = \"$syshdr_h\" sysmk = \"$sysmk\" compat = \"$compat\" compat4 = \"$compat4\" @@ -137,6 +139,8 @@ printf "const char *%s[] = {\n", namesname > sysnames printf " * created from%s\n */\n\n", $0 > syshdr + printf "#ifndef %s\n", syshdr_h > syshdr + printf "#define\t%s\n\n", syshdr_h > syshdr printf "# created from%s\nMIASM = ", $0 > sysmk @@ -486,6 +490,7 @@ printf("};\n") > sysnames printf("#define\t%sMAXSYSCALL\t%d\n", syscallprefix, syscall) \ > syshdr + printf("\n#endif /* !%s */\n", syshdr_h) > syshdr } ' cat $sysinc $sysent >> $syssw >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 09:50:23 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 9650016A420 for ; Tue, 16 Aug 2005 09:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99C2743D55 for ; Tue, 16 Aug 2005 09:50:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7G9oMjv096239 for ; Tue, 16 Aug 2005 09:50:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7G9oMJZ096235; Tue, 16 Aug 2005 09:50:22 GMT (envelope-from gnats) Resent-Date: Tue, 16 Aug 2005 09:50:22 GMT Resent-Message-Id: <200508160950.j7G9oMJZ096235@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, Andriy Gapon Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0355916A41F for ; Tue, 16 Aug 2005 09:41:43 +0000 (GMT) (envelope-from avg@topspin.kiev.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC40743D5A for ; Tue, 16 Aug 2005 09:41:40 +0000 (GMT) (envelope-from avg@topspin.kiev.ua) Received: from oddity.topspin.kiev.ua (oddity-e.topspin.kiev.ua [212.40.38.87]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id MAA11931 for ; Tue, 16 Aug 2005 12:41:38 +0300 (EEST) (envelope-from avg@topspin.kiev.ua) Received: from oddity.topspin.kiev.ua (localhost [127.0.0.1]) by oddity.topspin.kiev.ua (8.13.3/8.13.1) with ESMTP id j7G9gQok054915 for ; Tue, 16 Aug 2005 12:42:26 +0300 (EEST) (envelope-from avg@oddity.topspin.kiev.ua) Received: (from avg@localhost) by oddity.topspin.kiev.ua (8.13.3/8.13.1/Submit) id j7G9gPJe054914; Tue, 16 Aug 2005 12:42:25 +0300 (EEST) (envelope-from avg) Message-Id: <200508160942.j7G9gPJe054914@oddity.topspin.kiev.ua> Date: Tue, 16 Aug 2005 12:42:25 +0300 (EEST) From: Andriy Gapon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/84983: udf filesystem: stat-ting files could randomly fail X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 09:50:23 -0000 >Number: 84983 >Category: kern >Synopsis: udf filesystem: stat-ting files could randomly fail >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 Aug 16 09:50:21 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Andriy Gapon >Release: FreeBSD 5.4-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD 5.4-RELEASE-p3 #3: Sat Jul 9 17:02:15 EEST 2005 i386 >Description: Sometimes stat(2) on files located on UDF fs unexpectedly fails, at the same time "udf: invalid FID fragment" kernel messages are produced. umount+mount in such situation usually cures the problem, but sometimes I have to do kldunload udf in between. The symptom very much looks like use of unitialized variable/memory. Brief search for a culprit made me suspect udf_node.diroff field. This is how udf_node structures are allocated: udf_vfsops.c: struct udf_node *unode; ... unode = uma_zalloc(udf_zone_node, M_WAITOK); i.e. there is no M_ZERO while allocating udf_node and diroff field does not seem to be initialized explicitely: $ fgrep diroff *.[ch] udf.h: long diroff; udf_vnops.c: if (nameiop != LOOKUP || node->diroff == 0 || node->diroff > fsize) { udf_vnops.c: offset = node->diroff; udf_vnops.c: node->diroff = ds->offset + ds->off; as you can see diroff could be used before it is assigned and it is used in udf_lookup() function as follows: if (nameiop != LOOKUP || node->diroff == 0 || node->diroff > fsize) { offset = 0; numdirpasses = 1; } else { offset = node->diroff; numdirpasses = 2; nchstats.ncs_2passes++; } lookloop: ds = udf_opendir(node, offset, fsize, udfmp); as you can see, if diroff belongs to interval (0, fsize] and nameiop is LOOKUP, then offset variable will be assigned with its (random) value that, in turn, would be passed down to udf_opendir and, thus, directory stream would contain incorrect (arbitrary) data. >How-To-Repeat: because of probabalistic nature of the bug, there is no definite recipe of reproducing it. you could try to do a lot of operations (ls, stat) on files on UDF fs and see if eventually directory udf_node will be allocated with "good" junk at diroff position. for me, this happens from time to time on its own. >Fix: if my theory is correct, then the following patch should fix the problem by adding proper initialization to diroff field of udf_node: --- lookup.patch begins here --- --- sys/fs/udf/udf_vfsops.c.orig Mon Aug 15 21:06:50 2005 +++ sys/fs/udf/udf_vfsops.c Mon Aug 15 21:07:07 2005 @@ -648,6 +648,7 @@ return (error); } + unode->diroff = 0; unode->i_vnode = vp; unode->hash_id = ino; unode->i_devvp = udfmp->im_devvp; --- lookup.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 11:00:42 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 E18CD16A41F for ; Tue, 16 Aug 2005 11:00:41 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 559EB43D5D for ; Tue, 16 Aug 2005 11:00:40 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GB0dCe011829 for ; Tue, 16 Aug 2005 11:00:39 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GB0diB011811; Tue, 16 Aug 2005 11:00:39 GMT (envelope-from gnats) Resent-Date: Tue, 16 Aug 2005 11:00:39 GMT Resent-Message-Id: <200508161100.j7GB0diB011811@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, "Wojciech A. Koszek" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A54CD16A41F for ; Tue, 16 Aug 2005 10:57:47 +0000 (GMT) (envelope-from dunstan@freebsd.czest.pl) Received: from freebsd.czest.pl (silver.iplus.pl [80.48.250.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C47343D49 for ; Tue, 16 Aug 2005 10:57:45 +0000 (GMT) (envelope-from dunstan@freebsd.czest.pl) Received: from freebsd.czest.pl (freebsd.czest.pl [80.48.250.4]) by freebsd.czest.pl (8.12.10/8.12.9) with ESMTP id j7GBCdGW059964 for ; Tue, 16 Aug 2005 11:12:40 GMT (envelope-from dunstan@freebsd.czest.pl) Received: (from dunstan@localhost) by freebsd.czest.pl (8.12.10/8.12.9/Submit) id j7GBCd7T059963; Tue, 16 Aug 2005 11:12:39 GMT (envelope-from dunstan) Message-Id: <200508161112.j7GBCd7T059963@freebsd.czest.pl> Date: Tue, 16 Aug 2005 11:12:39 GMT From: "Wojciech A. Koszek" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/84987: [PATCH] if_ef: BUG: if_attach called without if_alloc'd input() X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Wojciech A. Koszek" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 11:00:42 -0000 >Number: 84987 >Category: kern >Synopsis: [PATCH] if_ef: BUG: if_attach called without if_alloc'd input() >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 16 11:00:38 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Wojciech A. Koszek >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD laptop.freebsd.czest.pl 7.0-CURRENT FreeBSD 7.0-CURRENT #18: Tue Aug 16 12:29:31 CEST 2005 dunstan@laptop.freebsd.czest.pl:/usr/obj/usr/src/sys/LAPTOP i386 >Description: if_ef causes panic on -CURRENT. My analisis: if_ef.c uses correct logic (with if_alloc(), passes correct pointer to ether_ifattach()). if_findindex() from src/sys/net/if.c seems to contain small bug, and returns the same index more then once. Without posting very ugly hack coded in order to see what happens, this is what I got on -CURRENT: if_findindex, checking unit = 1 unit(1) <= if_index(2) ifaddr_byindex(1) != NULL if_findindex, checking unit = 2 unit(2) <= if_index(2) ifaddr_byindex(2) != NULL if_findindex, checking unit = 3 if_findindex, unit == 3 if_alloc, Allocated if_index: 3 ^^^ Ok if_findindex, checking unit = 1 unit(1) <= if_index(3) ifaddr_byindex(1) != NULL if_findindex, checking unit = 2 unit(2) <= if_index(3) ifaddr_byindex(2) != NULL if_findindex, checking unit = 3 unit(3) <= if_index(3) if_findindex, unit == 3 if_alloc, Allocated if_index: 3 ^^^ if_findindex, checking unit = 1 unit(1) <= if_index(3) ifaddr_byindex(1) != NULL if_findindex, checking unit = 2 unit(2) <= if_index(3) ifaddr_byindex(2) != NULL if_findindex, checking unit = 3 unit(3) <= if_index(3) if_findindex, unit == 3 if_alloc, Allocated if_index: 3 ^^^ [..] unit(2) <= if_index(3) ifaddr_byindex(2) != NULL if_findindex, checking unit = 3 unit(3) <= if_index(3) if_findindex, unit == 3 if_alloc, Allocated if_index: 3 ^^^ This is why: if (ifp->if_index == 0 || ifp != ifnet_byindex(ifp->if_index)) panic ("%s: BUG: if_attach called without if_alloc'd input()\n", ifp->if_xname); Reports problem (second condition is true). >How-To-Repeat: kldload /boot/kernel/if_ef.ko >Fix: Patch [diff.0.if.c] corrects this problem. Needs review. --- diff.0.if.c begins here --- diff -upr /usr/src/sys/net/if.c src/sys/net/if.c --- /usr/src/sys/net/if.c Sun Aug 14 14:38:50 2005 +++ src/sys/net/if.c Tue Aug 16 12:28:02 2005 @@ -370,7 +370,7 @@ found: name, unit, devname); } for (unit = 1; ; unit++) { - if (unit <= if_index && ifaddr_byindex(unit) != NULL) + if (unit <= if_index || ifaddr_byindex(unit) != NULL) continue; if (resource_string_value(name, unit, "ether", &p) == 0 || resource_string_value(name, unit, "dev", &p) == 0) --- diff.0.if.c ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 11:51:44 2005 Return-Path: X-Original-To: freebsd-bugs@FreeBSD.org 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 B6DED16A41F; Tue, 16 Aug 2005 11:51:44 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2.pacific.net.au [61.8.0.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26FE543D45; Tue, 16 Aug 2005 11:51:43 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.0.86]) by mailout2.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j7GBpghK018802; Tue, 16 Aug 2005 21:51:42 +1000 Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j7GBpdCQ028141; Tue, 16 Aug 2005 21:51:40 +1000 Date: Tue, 16 Aug 2005 21:51:39 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Colin King In-Reply-To: <200508141821.j7EILm0s036397@mercury.m202.net> Message-ID: <20050816204608.W47571@delplex.bde.org> References: <200508141821.j7EILm0s036397@mercury.m202.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-bugs@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: misc/84920: math programs reporting incorrect values X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 11:51:44 -0000 On Sun, 14 Aug 2005, Colin King wrote: >> Description: > Both of these program are giving me incorrect results when subtracting > floating-point numbers, so I'm assuming that it is either something > wrong with libm, libc, or gcc. Both of which programs? >> How-To-Repeat: > Go to either one of these programs and type an expression that uses > at least one floating point number and a subtraction. For example, I > used 30.00-29.05 as my expression. In e, the result is 0.949999.... In > KDE's kcalc, the result is 0.9500000000000001776356839400250464677811, > or 0.9500000000000002 after rounding. This seems to more or less correct if the programs use plain double precision floating point (*). 1/5 is not exactly representable in base 2 floating point, so 29.05 is not exactly representable. Its best approximation in IEEE double precision is 29.050000000000000711..., and subtracting this from 30 is likely to increase the relative error; the result is 0.94999999999999928946... The bug may be that the programs use long double precision and LDBL_DIG is broken on i386's. Long double precision is actually configured to be almost the same as double precision on i386's to avoid other precision bugs. Thus programs that naively trust LDBL_DIG might show garbage digits that should be avoided by rounding. DBL_DIG is 15, and the value of the approximation to 29.05 shows that it is necessary to round to DBL_DIG-1 digits to eliminate garbage digits even when there are no roundoff errors: 29.05 is represented as 29.050000000000000711..., rounding this to DBL_DIG digits gives 29.050000000000001, rounding this to DBL_DIG-1 digits gives 29.05000000000000, Similarly for the difference: (30.00 - 29.05) is represented as 0.94999999999999928946... rounding this to DBL_DIG digits gives 0.949999999999999 rounding this to DBL_DIG-1 digits gives 0.95000000000000 Your "0.9500000000000002 after rounding" has DBL_DIG+1 digits. I generated the above approximations using gcc and checked them using gp. gcc calculated 29.05 at compile time and the difference at run time. gcc was relatively recently "fixed" so that evaluation of constant expressions at compile time matches the corresponding evaluation at runtime even when you don't want it to (e.g., "long double x = 29.05LL;" gives only double precision accuracy). OTOH, calculation programs use by nature runtime evaluation for most constants. gp uses multiple (arbitrary) precision with a default of 28 digits and I used my library functions for it to convert to double precision. The above may explain the behaviour of "e" (?). The behaviour of kcalc seems to be unrelated. The magic number 0.9500000000000001776356839400250464677811 for kcalc is precisely 30.00 - 29.05 in 55-bit or 56-bit precision. This can't be related to libm, libc or gcc. It might be from calculating things correctly using multiple (56-bit) precision and then printing the values using a silly number of digits. Well, it might be related to libc -- if you have a floating point number with 56 bits of precision, then the number can be represented as a long double with 64 bits of precision, and libc is now supposed to be able to print such numbers perfectly with any number of digits. DBL_DIG+1 is about right for 56 bits of precision, so perhaps the only bug in kcalc here is that it rounds 0.9500000000000001776... to 1 more digit than it should (DBL_DIG+1) instead of (DBL_DIG+1 - 1). (*) Calculating programs should not use C floating point with any precision except in special cases; they should use multiple precision and keep track of precisons so as not to print garbage digits... Bruce From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 12:00:45 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 83D3A16A41F for ; Tue, 16 Aug 2005 12:00:45 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 982D543D77 for ; Tue, 16 Aug 2005 12:00:38 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GC0Zn7019914 for ; Tue, 16 Aug 2005 12:00:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GC0ZRk019913; Tue, 16 Aug 2005 12:00:35 GMT (envelope-from gnats) Date: Tue, 16 Aug 2005 12:00:35 GMT Message-Id: <200508161200.j7GC0ZRk019913@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Bruce Evans Cc: Subject: Re: misc/84920: math programs reporting incorrect values X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bruce Evans List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 12:00:45 -0000 The following reply was made to PR misc/84920; it has been noted by GNATS. From: Bruce Evans To: Colin King Cc: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/84920: math programs reporting incorrect values Date: Tue, 16 Aug 2005 21:51:39 +1000 (EST) On Sun, 14 Aug 2005, Colin King wrote: >> Description: > Both of these program are giving me incorrect results when subtracting > floating-point numbers, so I'm assuming that it is either something > wrong with libm, libc, or gcc. Both of which programs? >> How-To-Repeat: > Go to either one of these programs and type an expression that uses > at least one floating point number and a subtraction. For example, I > used 30.00-29.05 as my expression. In e, the result is 0.949999.... In > KDE's kcalc, the result is 0.9500000000000001776356839400250464677811, > or 0.9500000000000002 after rounding. This seems to more or less correct if the programs use plain double precision floating point (*). 1/5 is not exactly representable in base 2 floating point, so 29.05 is not exactly representable. Its best approximation in IEEE double precision is 29.050000000000000711..., and subtracting this from 30 is likely to increase the relative error; the result is 0.94999999999999928946... The bug may be that the programs use long double precision and LDBL_DIG is broken on i386's. Long double precision is actually configured to be almost the same as double precision on i386's to avoid other precision bugs. Thus programs that naively trust LDBL_DIG might show garbage digits that should be avoided by rounding. DBL_DIG is 15, and the value of the approximation to 29.05 shows that it is necessary to round to DBL_DIG-1 digits to eliminate garbage digits even when there are no roundoff errors: 29.05 is represented as 29.050000000000000711..., rounding this to DBL_DIG digits gives 29.050000000000001, rounding this to DBL_DIG-1 digits gives 29.05000000000000, Similarly for the difference: (30.00 - 29.05) is represented as 0.94999999999999928946... rounding this to DBL_DIG digits gives 0.949999999999999 rounding this to DBL_DIG-1 digits gives 0.95000000000000 Your "0.9500000000000002 after rounding" has DBL_DIG+1 digits. I generated the above approximations using gcc and checked them using gp. gcc calculated 29.05 at compile time and the difference at run time. gcc was relatively recently "fixed" so that evaluation of constant expressions at compile time matches the corresponding evaluation at runtime even when you don't want it to (e.g., "long double x = 29.05LL;" gives only double precision accuracy). OTOH, calculation programs use by nature runtime evaluation for most constants. gp uses multiple (arbitrary) precision with a default of 28 digits and I used my library functions for it to convert to double precision. The above may explain the behaviour of "e" (?). The behaviour of kcalc seems to be unrelated. The magic number 0.9500000000000001776356839400250464677811 for kcalc is precisely 30.00 - 29.05 in 55-bit or 56-bit precision. This can't be related to libm, libc or gcc. It might be from calculating things correctly using multiple (56-bit) precision and then printing the values using a silly number of digits. Well, it might be related to libc -- if you have a floating point number with 56 bits of precision, then the number can be represented as a long double with 64 bits of precision, and libc is now supposed to be able to print such numbers perfectly with any number of digits. DBL_DIG+1 is about right for 56 bits of precision, so perhaps the only bug in kcalc here is that it rounds 0.9500000000000001776... to 1 more digit than it should (DBL_DIG+1) instead of (DBL_DIG+1 - 1). (*) Calculating programs should not use C floating point with any precision except in special cases; they should use multiple precision and keep track of precisons so as not to print garbage digits... Bruce From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 13:32:19 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 6540A16A41F; Tue, 16 Aug 2005 13:32:19 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23A6C43D45; Tue, 16 Aug 2005 13:32:19 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (glebius@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GDWJBM034141; Tue, 16 Aug 2005 13:32:19 GMT (envelope-from glebius@freefall.freebsd.org) Received: (from glebius@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GDWIKf034137; Tue, 16 Aug 2005 13:32:18 GMT (envelope-from glebius) Date: Tue, 16 Aug 2005 13:32:18 GMT From: Gleb Smirnoff Message-Id: <200508161332.j7GDWIKf034137@freefall.freebsd.org> To: glebius@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org Cc: Subject: Re: kern/84954: [CARDBUS] cbb alloc res fail (with hw.cardbus.debug=1 output) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 13:32:19 -0000 Synopsis: [CARDBUS] cbb alloc res fail (with hw.cardbus.debug=1 output) Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: glebius Responsible-Changed-When: Tue Aug 16 13:31:53 GMT 2005 Responsible-Changed-Why: Probably related to recent Warner's changes. http://www.freebsd.org/cgi/query-pr.cgi?pr=84954 From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 14:50:23 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 8F03816A41F for ; Tue, 16 Aug 2005 14:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DCA943D45 for ; Tue, 16 Aug 2005 14:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GEoNPo044973 for ; Tue, 16 Aug 2005 14:50:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GEoNqJ044972; Tue, 16 Aug 2005 14:50:23 GMT (envelope-from gnats) Date: Tue, 16 Aug 2005 14:50:23 GMT Message-Id: <200508161450.j7GEoNqJ044972@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Gleb Smirnoff Cc: Subject: Re: kern/75634: The proxy arp wrong functionality X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Gleb Smirnoff List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 14:50:23 -0000 The following reply was made to PR kern/75634; it has been noted by GNATS. From: Gleb Smirnoff To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/75634: The proxy arp wrong functionality Date: Tue, 16 Aug 2005 18:42:22 +0400 Adding to Audit-Trail: ----- Forwarded message from Haidukov Alexander ----- Excuse for bad English. In shortly: I have em0 and em1 interfases on my router. em0: xxx.xxx.xxx.2 (The real IP from xxx.xxx.xxx.0/28 IP range) em1: 192.168.0.1 (192.168.0.0/24 my internal net IP range) Internet<---->[em0<---->em1]<---->[Windows] Router 1. On external interface of my router, i setup "proxy arp" use the following commands: #arp -s xxx.xxx.xxx.3 AAA.AAA.AAA.AAA pub Where AAA.AAA.AAA.AAA is MAC on external interface of my router. 2. On internal host with run Windows 2000 AS (192.168.0.2) I add the additional IP (xxx.xxx.xxx.3) from my real IP range. In this case, windows host show the error message (like it): Address conflict. Host with MAC AAA.AAA.AAA.AAA have a my IP. The local interface will be disabled. If I try setup real IP to Windows machine first, and "proxy arp" to my router second all work properly. ----- End forwarded message ----- -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 14:51:00 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 A502316A420; Tue, 16 Aug 2005 14:51:00 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64DCB43D46; Tue, 16 Aug 2005 14:51:00 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (glebius@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GEp0hq045095; Tue, 16 Aug 2005 14:51:00 GMT (envelope-from glebius@freefall.freebsd.org) Received: (from glebius@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GEp0al045091; Tue, 16 Aug 2005 14:51:00 GMT (envelope-from glebius) Date: Tue, 16 Aug 2005 14:51:00 GMT From: Gleb Smirnoff Message-Id: <200508161451.j7GEp0al045091@freefall.freebsd.org> To: sanek@sw.ru, glebius@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/75634: The proxy arp wrong functionality X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 14:51:00 -0000 Synopsis: The proxy arp wrong functionality State-Changed-From-To: closed->open State-Changed-By: glebius State-Changed-When: Tue Aug 16 14:50:24 GMT 2005 State-Changed-Why: Feedback was misfiled. Feedback attached to Audit-Trail. Reopen PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=75634 From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 14:51:34 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 2DA7B16A41F; Tue, 16 Aug 2005 14:51:34 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E176143D46; Tue, 16 Aug 2005 14:51:33 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (glebius@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GEpX07045180; Tue, 16 Aug 2005 14:51:33 GMT (envelope-from glebius@freefall.freebsd.org) Received: (from glebius@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GEpXGK045176; Tue, 16 Aug 2005 14:51:33 GMT (envelope-from glebius) Date: Tue, 16 Aug 2005 14:51:33 GMT From: Gleb Smirnoff Message-Id: <200508161451.j7GEpXGK045176@freefall.freebsd.org> To: glebius@FreeBSD.org, freebsd-bugs@FreeBSD.org, glebius@FreeBSD.org Cc: Subject: Re: kern/75634: The proxy arp wrong functionality X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 14:51:34 -0000 Synopsis: The proxy arp wrong functionality Responsible-Changed-From-To: freebsd-bugs->glebius Responsible-Changed-By: glebius Responsible-Changed-When: Tue Aug 16 14:51:06 GMT 2005 Responsible-Changed-Why: I can reproduce it. I'm going to work on this. http://www.freebsd.org/cgi/query-pr.cgi?pr=75634 From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 14:59:14 2005 Return-Path: X-Original-To: freebsd-bugs@FreeBSD.org 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 D75DF16A422; Tue, 16 Aug 2005 14:59:14 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5163343D46; Tue, 16 Aug 2005 14:59:14 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.3/8.13.3) with ESMTP id j7GEurt1031082; Tue, 16 Aug 2005 08:56:53 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 16 Aug 2005 08:57:08 -0600 (MDT) Message-Id: <20050816.085708.41687719.imp@bsdimp.com> To: glebius@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200508161332.j7GDWIKf034137@freefall.freebsd.org> References: <200508161332.j7GDWIKf034137@freefall.freebsd.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Tue, 16 Aug 2005 08:56:53 -0600 (MDT) Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/84954: [CARDBUS] cbb alloc res fail (with hw.cardbus.debug=1 output) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 14:59:15 -0000 Actually, these aren't related to my recent changes. The problem is that netchild has a laptop without a pci bridge (well, with cbb on bus 0). This means we use a fairly lame default address. In these cases, one has to manually set a better one. Set hw.cardbus.start_address to something else. Figure that out by trial and error. Warner From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 15:00:27 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 AC0BD16A41F for ; Tue, 16 Aug 2005 15:00:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04F1E43D55 for ; Tue, 16 Aug 2005 15:00:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GF0Qn7045296 for ; Tue, 16 Aug 2005 15:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GF0QJ5045292; Tue, 16 Aug 2005 15:00:26 GMT (envelope-from gnats) Resent-Date: Tue, 16 Aug 2005 15:00:26 GMT Resent-Message-Id: <200508161500.j7GF0QJ5045292@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, Divacky Roman Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 028E616A41F for ; Tue, 16 Aug 2005 14:50:43 +0000 (GMT) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (eva.fit.vutbr.cz [147.229.10.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6365B43D46 for ; Tue, 16 Aug 2005 14:50:41 +0000 (GMT) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (localhost [127.0.0.1]) by eva.fit.vutbr.cz (envelope-from xdivac02@eva.fit.vutbr.cz) (8.13.4/8.13.3) with ESMTP id j7GEobpJ014800 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Tue, 16 Aug 2005 16:50:38 +0200 (CEST) Received: (from xdivac02@localhost) by eva.fit.vutbr.cz (8.13.4/8.13.3/Submit) id j7GEobRi014799; Tue, 16 Aug 2005 16:50:37 +0200 (CEST) Message-Id: <200508161450.j7GEobRi014799@eva.fit.vutbr.cz> Date: Tue, 16 Aug 2005 16:50:37 +0200 (CEST) From: Divacky Roman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/84991: gcc4.x cleanup of usr.bin/find X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Divacky Roman List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 15:00:27 -0000 >Number: 84991 >Category: bin >Synopsis: gcc4.x cleanup of usr.bin/find >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Aug 16 15:00:26 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Divacky Roman >Release: FreeBSD 7.0-CURRENT i386 >Organization: home >Environment: FreeBSD witten 7.0-CURRENT FreeBSD 7.0-CURRENT #55: Tue Aug 16 12:59:09 CEST 2005 root@witten:/usr/obj/usr/src/sys/NEOLOGISM i386 >Description: gcc4.x (tested with gcc41) cleanup of usr.bin/find >How-To-Repeat: apply the patch >Fix: Index: function.c =================================================================== RCS file: /home/ncvs/src/usr.bin/find/function.c,v retrieving revision 1.53 diff -u -r1.53 function.c --- function.c 25 Jan 2005 14:07:25 -0000 1.53 +++ function.c 11 Aug 2005 13:12:47 -0000 @@ -818,7 +818,7 @@ static int first = 1; struct statfs sb; static int val_type, val_flags; - char *p, save[2]; + char *p, save[2] = {0, 0}; if ((plan->flags & F_MTMASK) == F_MTUNKNOWN) return 0; Index: getdate.y =================================================================== RCS file: /home/ncvs/src/usr.bin/find/getdate.y,v retrieving revision 1.3 diff -u -r1.3 getdate.y --- getdate.y 14 Jun 2003 13:00:21 -0000 1.3 +++ getdate.y 11 Aug 2005 13:12:47 -0000 @@ -857,6 +857,7 @@ time_t tod; time_t nowtime; + bzero (&gmt, sizeof(struct tm)); yyInput = p; if (now == NULL) { struct tm *gmt_ptr; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 15:00:30 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 5F9B316A41F for ; Tue, 16 Aug 2005 15:00:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4FDD43D55 for ; Tue, 16 Aug 2005 15:00:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GF0RBs045366 for ; Tue, 16 Aug 2005 15:00:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GF0RDG045365; Tue, 16 Aug 2005 15:00:27 GMT (envelope-from gnats) Resent-Date: Tue, 16 Aug 2005 15:00:27 GMT Resent-Message-Id: <200508161500.j7GF0RDG045365@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, Divacky Roman Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64CF216A42F for ; Tue, 16 Aug 2005 14:51:37 +0000 (GMT) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (eva.fit.vutbr.cz [147.229.10.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id C58CC43D46 for ; Tue, 16 Aug 2005 14:51:36 +0000 (GMT) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (localhost [127.0.0.1]) by eva.fit.vutbr.cz (envelope-from xdivac02@eva.fit.vutbr.cz) (8.13.4/8.13.3) with ESMTP id j7GEpYUI014970 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Tue, 16 Aug 2005 16:51:34 +0200 (CEST) Received: (from xdivac02@localhost) by eva.fit.vutbr.cz (8.13.4/8.13.3/Submit) id j7GEpX1I014969; Tue, 16 Aug 2005 16:51:33 +0200 (CEST) Message-Id: <200508161451.j7GEpX1I014969@eva.fit.vutbr.cz> Date: Tue, 16 Aug 2005 16:51:33 +0200 (CEST) From: Divacky Roman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/84992: gcc4.x cleanup of usr.bin/hexdump X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Divacky Roman List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 15:00:30 -0000 >Number: 84992 >Category: bin >Synopsis: gcc4.x cleanup of usr.bin/hexdump >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Aug 16 15:00:26 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Divacky Roman >Release: FreeBSD 7.0-CURRENT i386 >Organization: home >Environment: FreeBSD witten 7.0-CURRENT FreeBSD 7.0-CURRENT #55: Tue Aug 16 12:59:09 CEST 2005 root@witten:/usr/obj/usr/src/sys/NEOLOGISM i386 >Description: gcc4.x (tested with gcc41) cleanup of usr.bin/hexdump >How-To-Repeat: apply the patch >Fix: Index: conv.c =================================================================== RCS file: /home/ncvs/src/usr.bin/hexdump/conv.c,v retrieving revision 1.8 diff -u -r1.8 conv.c --- conv.c 16 Jul 2004 11:07:07 -0000 1.8 +++ conv.c 11 Aug 2005 13:22:00 -0000 @@ -103,7 +103,7 @@ if (odmode && MB_CUR_MAX > 1) { oclen = 0; retry: - clen = mbrtowc(&wc, p, bufsize, &pr->mbstate); + clen = mbrtowc(&wc, (const char *)p, bufsize, &pr->mbstate); if (clen == 0) clen = 1; else if (clen == (size_t)-1 || (clen == (size_t)-2 && @@ -118,7 +118,7 @@ * can complete it. */ oclen = bufsize; - bufsize = peek(p = peekbuf, MB_CUR_MAX); + bufsize = peek(p = (u_char *)peekbuf, MB_CUR_MAX); goto retry; } clen += oclen; Index: parse.c =================================================================== RCS file: /home/ncvs/src/usr.bin/hexdump/parse.c,v retrieving revision 1.13 diff -u -r1.13 parse.c --- parse.c 22 Jul 2004 13:14:42 -0000 1.13 +++ parse.c 11 Aug 2005 13:22:00 -0000 @@ -54,7 +54,7 @@ void addfile(char *name) { - unsigned char *p; + char *p; FILE *fp; int ch; char buf[2048 + 1]; @@ -79,7 +79,7 @@ void add(const char *fmt) { - unsigned const char *p, *savep; + const char *p, *savep; static FS **nextfs; FS *tfs; FU *tfu, **nextfu; @@ -156,7 +156,7 @@ { FU *fu; int bcnt, cursize; - unsigned char *fmt; + char *fmt; int prec; /* figure out the data block size needed for each format unit */ @@ -210,7 +210,7 @@ enum { NOTOKAY, USEBCNT, USEPREC } sokay; PR *pr, **nextpr; FU *fu; - unsigned char *p1, *p2, *fmtp; + char *p1, *p2, *fmtp; char savech, cs[3]; int nconv, prec; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 15:00:30 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 A439216A41F for ; Tue, 16 Aug 2005 15:00:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2B1543D5C for ; Tue, 16 Aug 2005 15:00:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GF0SlW045386 for ; Tue, 16 Aug 2005 15:00:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GF0ScC045385; Tue, 16 Aug 2005 15:00:28 GMT (envelope-from gnats) Resent-Date: Tue, 16 Aug 2005 15:00:28 GMT Resent-Message-Id: <200508161500.j7GF0ScC045385@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, Divacky Roman Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BAB416A41F for ; Tue, 16 Aug 2005 14:53:18 +0000 (GMT) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (eva.fit.vutbr.cz [147.229.10.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90F2C43D46 for ; Tue, 16 Aug 2005 14:53:17 +0000 (GMT) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (localhost [127.0.0.1]) by eva.fit.vutbr.cz (envelope-from xdivac02@eva.fit.vutbr.cz) (8.13.4/8.13.3) with ESMTP id j7GErE4F015206 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Tue, 16 Aug 2005 16:53:14 +0200 (CEST) Received: (from xdivac02@localhost) by eva.fit.vutbr.cz (8.13.4/8.13.3/Submit) id j7GErEH9015205; Tue, 16 Aug 2005 16:53:14 +0200 (CEST) Message-Id: <200508161453.j7GErEH9015205@eva.fit.vutbr.cz> Date: Tue, 16 Aug 2005 16:53:14 +0200 (CEST) From: Divacky Roman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/84993: gcc4.x cleanup of usr.bin/tar X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Divacky Roman List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 15:00:30 -0000 >Number: 84993 >Category: bin >Synopsis: gcc4.x cleanup of usr.bin/tar >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Aug 16 15:00:27 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Divacky Roman >Release: FreeBSD 7.0-CURRENT i386 >Organization: home >Environment: FreeBSD witten 7.0-CURRENT FreeBSD 7.0-CURRENT #55: Tue Aug 16 12:59:09 CEST 2005 root@witten:/usr/obj/usr/src/sys/NEOLOGISM i386 >Description: gcc4.x (tested with gcc41) cleanup of usr.bin/tar >How-To-Repeat: apply the patch >Fix: Index: getdate.y =================================================================== RCS file: /home/ncvs/src/usr.bin/tar/getdate.y,v retrieving revision 1.4 diff -u -r1.4 getdate.y --- getdate.y 23 Apr 2005 18:38:32 -0000 1.4 +++ getdate.y 11 Aug 2005 13:32:44 -0000 @@ -717,6 +717,7 @@ time_t nowtime; long tzone; + bzero (&gmt, sizeof(struct tm)); yyInput = p; (void)time (&nowtime); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 15:00:31 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 2934016A420 for ; Tue, 16 Aug 2005 15:00:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C6AD43D58 for ; Tue, 16 Aug 2005 15:00:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GF0T4m045400 for ; Tue, 16 Aug 2005 15:00:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GF0T2W045399; Tue, 16 Aug 2005 15:00:29 GMT (envelope-from gnats) Resent-Date: Tue, 16 Aug 2005 15:00:29 GMT Resent-Message-Id: <200508161500.j7GF0T2W045399@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, Divacky Roman Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD8B516A428 for ; Tue, 16 Aug 2005 14:53:41 +0000 (GMT) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (eva.fit.vutbr.cz [147.229.10.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F4FE43D45 for ; Tue, 16 Aug 2005 14:53:40 +0000 (GMT) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (localhost [127.0.0.1]) by eva.fit.vutbr.cz (envelope-from xdivac02@eva.fit.vutbr.cz) (8.13.4/8.13.3) with ESMTP id j7GErbOO015301 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Tue, 16 Aug 2005 16:53:37 +0200 (CEST) Received: (from xdivac02@localhost) by eva.fit.vutbr.cz (8.13.4/8.13.3/Submit) id j7GErb1o015300; Tue, 16 Aug 2005 16:53:37 +0200 (CEST) Message-Id: <200508161453.j7GErb1o015300@eva.fit.vutbr.cz> Date: Tue, 16 Aug 2005 16:53:37 +0200 (CEST) From: Divacky Roman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/84994: gcc4.x cleanup of usr.bin/wc X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Divacky Roman List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 15:00:31 -0000 >Number: 84994 >Category: bin >Synopsis: gcc4.x cleanup of usr.bin/wc >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Aug 16 15:00:28 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Divacky Roman >Release: FreeBSD 7.0-CURRENT i386 >Organization: home >Environment: FreeBSD witten 7.0-CURRENT FreeBSD 7.0-CURRENT #55: Tue Aug 16 12:59:09 CEST 2005 root@witten:/usr/obj/usr/src/sys/NEOLOGISM i386 >Description: gcc4.x (tested with gcc41) cleanup of usr.bin/wc >How-To-Repeat: apply the patch >Fix: Index: wc.c =================================================================== RCS file: /home/ncvs/src/usr.bin/wc/wc.c,v retrieving revision 1.21 diff -u -r1.21 wc.c --- wc.c 27 Dec 2004 22:27:56 -0000 1.21 +++ wc.c 11 Aug 2005 13:35:48 -0000 @@ -214,7 +214,7 @@ if (!domulti || MB_CUR_MAX == 1) { clen = 1; wch = (unsigned char)*p; - } else if ((clen = mbrtowc(&wch, p, len, &mbs)) == + } else if ((clen = mbrtowc(&wch, (const char *)p, len, &mbs)) == (size_t)-1) { if (!warned) { errno = EILSEQ; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 15:00:31 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 4190116A41F for ; Tue, 16 Aug 2005 15:00:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA36A43D46 for ; Tue, 16 Aug 2005 15:00:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GF0T20045413 for ; Tue, 16 Aug 2005 15:00:29 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GF0Ta5045412; Tue, 16 Aug 2005 15:00:29 GMT (envelope-from gnats) Resent-Date: Tue, 16 Aug 2005 15:00:29 GMT Resent-Message-Id: <200508161500.j7GF0Ta5045412@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, Divacky Roman Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52ADF16A41F for ; Tue, 16 Aug 2005 14:54:18 +0000 (GMT) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (eva.fit.vutbr.cz [147.229.10.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AEFE43D48 for ; Tue, 16 Aug 2005 14:54:16 +0000 (GMT) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (localhost [127.0.0.1]) by eva.fit.vutbr.cz (envelope-from xdivac02@eva.fit.vutbr.cz) (8.13.4/8.13.3) with ESMTP id j7GEsEAo015410 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Tue, 16 Aug 2005 16:54:14 +0200 (CEST) Received: (from xdivac02@localhost) by eva.fit.vutbr.cz (8.13.4/8.13.3/Submit) id j7GEsELq015409; Tue, 16 Aug 2005 16:54:14 +0200 (CEST) Message-Id: <200508161454.j7GEsELq015409@eva.fit.vutbr.cz> Date: Tue, 16 Aug 2005 16:54:14 +0200 (CEST) From: Divacky Roman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/84995: gcc4.x cleanup of usr.bin/window X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Divacky Roman List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 15:00:31 -0000 >Number: 84995 >Category: bin >Synopsis: gcc4.x cleanup of usr.bin/window >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Aug 16 15:00:29 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Divacky Roman >Release: FreeBSD 7.0-CURRENT i386 >Organization: home >Environment: FreeBSD witten 7.0-CURRENT FreeBSD 7.0-CURRENT #55: Tue Aug 16 12:59:09 CEST 2005 root@witten:/usr/obj/usr/src/sys/NEOLOGISM i386 >Description: gcc4.x (tested with gcc41) cleanup of usr.bin/window >How-To-Repeat: apply the patch >Fix: Index: wwgets.c =================================================================== RCS file: /home/ncvs/src/usr.bin/window/wwgets.c,v retrieving revision 1.5 diff -u -r1.5 wwgets.c --- wwgets.c 17 May 2001 09:38:49 -0000 1.5 +++ wwgets.c 11 Aug 2005 13:40:05 -0000 @@ -43,15 +43,21 @@ #include "ww.h" #include "char.h" -wwgets(buf, n, w) -char *buf; -int n; -register struct ww *w; +static void +rub(unsigned char c, struct ww *w) +{ + int i; + + for (i = isctrl(c) ? strlen(unctrl(c)) : 1; --i >= 0;) + (void) wwwrite(w, "\b \b", 3); +} + +void +wwgets(char *buf, int n, struct ww *w) { register char *p = buf; register int c; char uc = w->ww_unctrl; - static void rub(); w->ww_unctrl = 0; for (;;) { @@ -101,14 +107,4 @@ } *p = 0; w->ww_unctrl = uc; -} - -static void -rub(c, w) -struct ww *w; -{ - register i; - - for (i = isctrl(c) ? strlen(unctrl(c)) : 1; --i >= 0;) - (void) wwwrite(w, "\b \b", 3); } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 15:20:28 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 26EED16A41F for ; Tue, 16 Aug 2005 15:20:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9F2043D46 for ; Tue, 16 Aug 2005 15:20:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GFKRwV050376 for ; Tue, 16 Aug 2005 15:20:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GFKRXk050375; Tue, 16 Aug 2005 15:20:27 GMT (envelope-from gnats) Date: Tue, 16 Aug 2005 15:20:27 GMT Message-Id: <200508161520.j7GFKRXk050375@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Stefan Farfeleder Cc: Subject: Re: kern/84981: [PATCH] header protection for X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Stefan Farfeleder List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 15:20:28 -0000 The following reply was made to PR kern/84981; it has been noted by GNATS. From: Stefan Farfeleder To: bug-followup@freebsd.org Cc: Subject: Re: kern/84981: [PATCH] header protection for Date: Tue, 16 Aug 2005 17:11:04 +0200 OTOH including more than once doesn't cause any harm. Stefan From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 17:20:14 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 DD2B516A41F for ; Tue, 16 Aug 2005 17:20:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3422143D49 for ; Tue, 16 Aug 2005 17:20:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GHKEe1065749 for ; Tue, 16 Aug 2005 17:20:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GHKEYN065748; Tue, 16 Aug 2005 17:20:14 GMT (envelope-from gnats) Resent-Date: Tue, 16 Aug 2005 17:20:14 GMT Resent-Message-Id: <200508161720.j7GHKEYN065748@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, Michael Voucko Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B14A16A41F for ; Tue, 16 Aug 2005 17:15:14 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D9A143D45 for ; Tue, 16 Aug 2005 17:15:14 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id j7GHFDVW034362 for ; Tue, 16 Aug 2005 17:15:13 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j7GHFDLf034335; Tue, 16 Aug 2005 17:15:13 GMT (envelope-from nobody) Message-Id: <200508161715.j7GHFDLf034335@www.freebsd.org> Date: Tue, 16 Aug 2005 17:15:13 GMT From: Michael Voucko To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/85001: Inquiry for being added to the hardware vendors page X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 17:20:15 -0000 >Number: 85001 >Category: misc >Synopsis: Inquiry for being added to the hardware vendors page >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Aug 16 17:20:13 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Michael Voucko >Release: >Organization: s3 smart security solutions >Environment: >Description: EagleEye by s3 smart security solutions
s3 smart security solutions offers FreeBSD based anti-spam and -virus email gateway appliances. For these appliances FreeBSD as reliable foundation is complemented by SpamAssassin and ClamAV to obtain the best spam- and virus-protection available in the Open Source area. A simple web-frontend allows for plug and play of the appliance and guarantees ease of use for long-term deployment. Available versions span from mid-size to high performance versions which can be extended with clustering capabilities for high availability of your email system. For more information, please visit our web site or send e-mail to info@s3-solutions.de. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 17:46:55 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 EAAD716A41F; Tue, 16 Aug 2005 17:46:55 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A84BB43D45; Tue, 16 Aug 2005 17:46:55 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from freefall.freebsd.org (brooks@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GHktNr068208; Tue, 16 Aug 2005 17:46:55 GMT (envelope-from brooks@freefall.freebsd.org) Received: (from brooks@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GHktfp068204; Tue, 16 Aug 2005 17:46:55 GMT (envelope-from brooks) Date: Tue, 16 Aug 2005 17:46:55 GMT From: Brooks Davis Message-Id: <200508161746.j7GHktfp068204@freefall.freebsd.org> To: brooks@FreeBSD.org, freebsd-bugs@FreeBSD.org, brooks@FreeBSD.org Cc: Subject: Re: kern/84987: [PATCH] if_ef: BUG: if_attach called without if_alloc'd input() X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 17:46:56 -0000 Synopsis: [PATCH] if_ef: BUG: if_attach called without if_alloc'd input() Responsible-Changed-From-To: freebsd-bugs->brooks Responsible-Changed-By: brooks Responsible-Changed-When: Tue Aug 16 17:46:00 GMT 2005 Responsible-Changed-Why: I'll take this one. It think the fix is correct, but want to test it my self before commit. http://www.freebsd.org/cgi/query-pr.cgi?pr=84987 From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 18:56:32 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 4DEEE16A420; Tue, 16 Aug 2005 18:56:32 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09DA943D48; Tue, 16 Aug 2005 18:56:32 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from freefall.freebsd.org (ade@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GIuVaP075695; Tue, 16 Aug 2005 18:56:31 GMT (envelope-from ade@freefall.freebsd.org) Received: (from ade@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GIuVMF075691; Tue, 16 Aug 2005 18:56:31 GMT (envelope-from ade) Date: Tue, 16 Aug 2005 18:56:31 GMT From: Ade Lovett Message-Id: <200508161856.j7GIuVMF075691@freefall.freebsd.org> To: ade@FreeBSD.org, ade@FreeBSD.org, freebsd-bugs@FreeBSD.org, ade@FreeBSD.org Cc: Subject: Re: kern/84903: Incorrect initialization of nswbuf X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 18:56:32 -0000 Synopsis: Incorrect initialization of nswbuf State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Tue Aug 16 18:55:22 GMT 2005 State-Changed-Why: Fixed in revision 1.223 of sys/vm/vnode_pager.c et al. Subsequently MFC'd to RELENG_6 (1.221.2.2) and RELENG_5 (1.196.2.8) Responsible-Changed-From-To: freebsd-bugs->ade Responsible-Changed-By: ade Responsible-Changed-When: Tue Aug 16 18:55:22 GMT 2005 Responsible-Changed-Why: Fixed in revision 1.223 of sys/vm/vnode_pager.c et al. Subsequently MFC'd to RELENG_6 (1.221.2.2) and RELENG_5 (1.196.2.8) http://www.freebsd.org/cgi/query-pr.cgi?pr=84903 From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 19:58:00 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 8C6AB16A41F; Tue, 16 Aug 2005 19:58:00 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BDE143D45; Tue, 16 Aug 2005 19:58:00 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GJw0xR083169; Tue, 16 Aug 2005 19:58:00 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GJw0no083165; Tue, 16 Aug 2005 19:58:00 GMT (envelope-from linimon) Date: Tue, 16 Aug 2005 19:58:00 GMT From: Mark Linimon Message-Id: <200508161958.j7GJw0no083165@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-www@FreeBSD.org Cc: Subject: Re: www/85001: Inquiry for being added to the hardware vendors page X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 19:58:00 -0000 Synopsis: Inquiry for being added to the hardware vendors page Responsible-Changed-From-To: freebsd-bugs->freebsd-www Responsible-Changed-By: linimon Responsible-Changed-When: Tue Aug 16 19:57:45 GMT 2005 Responsible-Changed-Why: Reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=85001 From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 20:55:34 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 50DF416A423; Tue, 16 Aug 2005 20:55:34 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CF3343D48; Tue, 16 Aug 2005 20:55:34 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from freefall.freebsd.org (jhb@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GKtXST090603; Tue, 16 Aug 2005 20:55:33 GMT (envelope-from jhb@freefall.freebsd.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GKtWsR090599; Tue, 16 Aug 2005 20:55:32 GMT (envelope-from jhb) Date: Tue, 16 Aug 2005 20:55:32 GMT From: John Baldwin Message-Id: <200508162055.j7GKtWsR090599@freefall.freebsd.org> To: dunstan@freebsd.czest.pl, jhb@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/80760: [PATCH] svr4.ko should depend on sysv(msg|sem). X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 20:55:34 -0000 Synopsis: [PATCH] svr4.ko should depend on sysv(msg|sem). State-Changed-From-To: open->closed State-Changed-By: jhb State-Changed-When: Tue Aug 16 20:55:00 GMT 2005 State-Changed-Why: This bug is only fixex in 6.x and forward, but the submitter states that it can be closed. http://www.freebsd.org/cgi/query-pr.cgi?pr=80760 From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 16 21:20:04 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 7D26016A420 for ; Tue, 16 Aug 2005 21:20:04 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E22D43D46 for ; Tue, 16 Aug 2005 21:20:03 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7GLK3Uu095560 for ; Tue, 16 Aug 2005 21:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7GLK3S0095559; Tue, 16 Aug 2005 21:20:03 GMT (envelope-from gnats) Resent-Date: Tue, 16 Aug 2005 21:20:03 GMT Resent-Message-Id: <200508162120.j7GLK3S0095559@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, Ted Nolan Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F6E916A41F for ; Tue, 16 Aug 2005 21:14:12 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C57043D46 for ; Tue, 16 Aug 2005 21:14:12 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id j7GLECwR060017 for ; Tue, 16 Aug 2005 21:14:12 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j7GLEClQ060016; Tue, 16 Aug 2005 21:14:12 GMT (envelope-from nobody) Message-Id: <200508162114.j7GLEClQ060016@www.freebsd.org> Date: Tue, 16 Aug 2005 21:14:12 GMT From: Ted Nolan To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/85011: /sbin/restore on 5.4 will not read Solaris-sparc dumps, whereas 4.x restore will X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Aug 2005 21:20:04 -0000 >Number: 85011 >Category: misc >Synopsis: /sbin/restore on 5.4 will not read Solaris-sparc dumps, whereas 4.x restore will >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 Aug 16 21:20:02 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Ted Nolan >Release: 5.4-RELEASE >Organization: SRI International >Environment: FreeBSD snooze.tnolan.com 5.4-RELEASE FreeBSD 5.4-RELEASE #1: Tue Jul 19 11:29:06 EDT 2005 ted@snooze.tnolan.com:/usr/src/sys/i386/compile/SNOOZE i386 >Description: I have a Sun Ultra10 (sparc based) running SunOS 5.9. I used to be able to read dumps taken by ufsdump on this machine on FreeBSD 4.x. I cannot do so on FreeBSD 5.4. 4.X restore says Note: Doing Quad swapping", but this string does not appear in the 5.4 src for restore at all. I realize that Solaris compatability is not essential, but it was nice! >How-To-Repeat: Take a Solaris ufsdump file to a FreeBSD 5.4 machine, try any operation on it and watch it fail with "Tape is not a dump tape". >Fix: A workaround is to copy "restore" from a 4.X box and run it on 5.X. So far this seems to work. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 17 00:38:08 2005 Return-Path: X-Original-To: freebsd-bugs@freebsd.org 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 0DAC216A43D; Wed, 17 Aug 2005 00:38:08 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2.pacific.net.au [61.8.0.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D24343D45; Wed, 17 Aug 2005 00:38:07 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.0.87]) by mailout2.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j7H0c1o7020458; Wed, 17 Aug 2005 10:38:01 +1000 Received: from epsplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailproxy2.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j7H0bwkw015401; Wed, 17 Aug 2005 10:37:59 +1000 Date: Wed, 17 Aug 2005 10:37:58 +1000 (EST) From: Bruce Evans X-X-Sender: bde@epsplex.bde.org To: Andriy Gapon In-Reply-To: <200508160942.j7G9gPJe054914@oddity.topspin.kiev.ua> Message-ID: <20050817101317.U988@epsplex.bde.org> References: <200508160942.j7G9gPJe054914@oddity.topspin.kiev.ua> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-bugs@freebsd.org, FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/84983: udf filesystem: stat-ting files could randomly fail X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Aug 2005 00:38:08 -0000 On Tue, 16 Aug 2005, Andriy Gapon wrote: > System: > FreeBSD 5.4-RELEASE-p3 #3: Sat Jul 9 17:02:15 EEST 2005 i386 > >> Description: > Sometimes stat(2) on files located on UDF fs unexpectedly fails, at the same > time "udf: invalid FID fragment" kernel messages are produced. > umount+mount in such situation usually cures the problem, but sometimes > I have to do kldunload udf in between. > The symptom very much looks like use of unitialized variable/memory. Indeed. > Brief search for a culprit made me suspect udf_node.diroff field. > This is how udf_node structures are allocated: > > udf_vfsops.c: struct udf_node *unode; > ... > unode = uma_zalloc(udf_zone_node, M_WAITOK); > > i.e. there is no M_ZERO while allocating udf_node and diroff field does > not seem to be initialized explicitely: > > $ fgrep diroff *.[ch] > udf.h: long diroff; > udf_vnops.c: if (nameiop != LOOKUP || node->diroff == 0 || node->diroff > fsize) { > udf_vnops.c: offset = node->diroff; > udf_vnops.c: node->diroff = ds->offset + ds->off; > > as you can see diroff could be used before it is assigned and it is used in > udf_lookup() function as follows: > > if (nameiop != LOOKUP || node->diroff == 0 || node->diroff > fsize) { > offset = 0; > numdirpasses = 1; > } else { > offset = node->diroff; > numdirpasses = 2; > nchstats.ncs_2passes++; > } > > lookloop: > ds = udf_opendir(node, offset, fsize, udfmp); > > as you can see, if diroff belongs to interval (0, fsize] and nameiop is LOOKUP, > then offset variable will be assigned with its (random) value that, in turn, > would be passed down to udf_opendir and, thus, directory stream would contain > incorrect (arbitrary) data. > >> How-To-Repeat: > because of probabalistic nature of the bug, there is no definite recipe of > reproducing it. you could try to do a lot of operations (ls, stat) on files > on UDF fs and see if eventually directory udf_node will be allocated with > "good" junk at diroff position. > for me, this happens from time to time on its own. > >> Fix: > > if my theory is correct, then the following patch should fix the problem by > adding proper initialization to diroff field of udf_node: > > --- lookup.patch begins here --- > --- sys/fs/udf/udf_vfsops.c.orig Mon Aug 15 21:06:50 2005 > +++ sys/fs/udf/udf_vfsops.c Mon Aug 15 21:07:07 2005 > @@ -648,6 +648,7 @@ > return (error); > } > > + unode->diroff = 0; > unode->i_vnode = vp; > unode->hash_id = ino; > unode->i_devvp = udfmp->im_devvp; This is fixed accidentally in in -current. I sent essentially the above fix together with fixes for many other bugs in udf to the udf maintainer 4 months ago: % Date: Tue, 19 Apr 2005 21:24:34 +1000 (EST) % From: Bruce Evans % To: scottl@freebsd.org % Subject: Re: lots of bugs in udf % % On Sun, 10 Apr 2005, Bruce Evans wrote: % % > ... % > Here is my work-in-progress patch: % % Here is a better patch with some other bugs fixed: % % % Index: udf_vfsops.c % % =================================================================== % % RCS file: /home/ncvs/src/sys/fs/udf/udf_vfsops.c,v % % retrieving revision 1.18 % % diff -u -2 -r1.18 udf_vfsops.c % % --- udf_vfsops.c 23 Jun 2004 19:36:09 -0000 1.18 % % +++ udf_vfsops.c 19 Apr 2005 09:38:36 -0000 % % @@ -654,4 +654,5 @@ % % unode->i_dev = udfmp->im_dev; % % unode->udfmp = udfmp; % % + unode->diroff = 0; % % vp->v_data = unode; % % VREF(udfmp->im_devvp); % % unode->diroff was not initialized, so udf_lookup() tended to use garbage % offsets and fail after vnodes were recycled. % % The second pass in udf_lookup() should hide this problem, but doesn't % always because the second pass is not attempted after a bad fid. If % the stale offset is for a file in the same directory, then the fid is % not bad and the second pass works. % % This was fixed as an undocumented side effect of rev.1.28. uma_zalloc() % now M_ZEROs everything, although this is less needed than before because % changes associated with rev.1.28 removed fields from the struct, leaving % only 5 fields so they are very easy to initialized explicitly. A similar % change was made to ffs. It may be more needed there. I prefer the old % code. % % [... description of other bugs and fixes deleted] Bruce From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 17 00:40:24 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 4D4E116A41F for ; Wed, 17 Aug 2005 00:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D99943D46 for ; Wed, 17 Aug 2005 00:40:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7H0eNRl022294 for ; Wed, 17 Aug 2005 00:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7H0eNXi022293; Wed, 17 Aug 2005 00:40:23 GMT (envelope-from gnats) Date: Wed, 17 Aug 2005 00:40:23 GMT Message-Id: <200508170040.j7H0eNXi022293@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Bruce Evans Cc: Subject: Re: kern/84983: udf filesystem: stat-ting files could randomly fail X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bruce Evans List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Aug 2005 00:40:24 -0000 The following reply was made to PR kern/84983; it has been noted by GNATS. From: Bruce Evans To: Andriy Gapon Cc: FreeBSD-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Subject: Re: kern/84983: udf filesystem: stat-ting files could randomly fail Date: Wed, 17 Aug 2005 10:37:58 +1000 (EST) On Tue, 16 Aug 2005, Andriy Gapon wrote: > System: > FreeBSD 5.4-RELEASE-p3 #3: Sat Jul 9 17:02:15 EEST 2005 i386 > >> Description: > Sometimes stat(2) on files located on UDF fs unexpectedly fails, at the same > time "udf: invalid FID fragment" kernel messages are produced. > umount+mount in such situation usually cures the problem, but sometimes > I have to do kldunload udf in between. > The symptom very much looks like use of unitialized variable/memory. Indeed. > Brief search for a culprit made me suspect udf_node.diroff field. > This is how udf_node structures are allocated: > > udf_vfsops.c: struct udf_node *unode; > ... > unode = uma_zalloc(udf_zone_node, M_WAITOK); > > i.e. there is no M_ZERO while allocating udf_node and diroff field does > not seem to be initialized explicitely: > > $ fgrep diroff *.[ch] > udf.h: long diroff; > udf_vnops.c: if (nameiop != LOOKUP || node->diroff == 0 || node->diroff > fsize) { > udf_vnops.c: offset = node->diroff; > udf_vnops.c: node->diroff = ds->offset + ds->off; > > as you can see diroff could be used before it is assigned and it is used in > udf_lookup() function as follows: > > if (nameiop != LOOKUP || node->diroff == 0 || node->diroff > fsize) { > offset = 0; > numdirpasses = 1; > } else { > offset = node->diroff; > numdirpasses = 2; > nchstats.ncs_2passes++; > } > > lookloop: > ds = udf_opendir(node, offset, fsize, udfmp); > > as you can see, if diroff belongs to interval (0, fsize] and nameiop is LOOKUP, > then offset variable will be assigned with its (random) value that, in turn, > would be passed down to udf_opendir and, thus, directory stream would contain > incorrect (arbitrary) data. > >> How-To-Repeat: > because of probabalistic nature of the bug, there is no definite recipe of > reproducing it. you could try to do a lot of operations (ls, stat) on files > on UDF fs and see if eventually directory udf_node will be allocated with > "good" junk at diroff position. > for me, this happens from time to time on its own. > >> Fix: > > if my theory is correct, then the following patch should fix the problem by > adding proper initialization to diroff field of udf_node: > > --- lookup.patch begins here --- > --- sys/fs/udf/udf_vfsops.c.orig Mon Aug 15 21:06:50 2005 > +++ sys/fs/udf/udf_vfsops.c Mon Aug 15 21:07:07 2005 > @@ -648,6 +648,7 @@ > return (error); > } > > + unode->diroff = 0; > unode->i_vnode = vp; > unode->hash_id = ino; > unode->i_devvp = udfmp->im_devvp; This is fixed accidentally in in -current. I sent essentially the above fix together with fixes for many other bugs in udf to the udf maintainer 4 months ago: % Date: Tue, 19 Apr 2005 21:24:34 +1000 (EST) % From: Bruce Evans % To: scottl@freebsd.org % Subject: Re: lots of bugs in udf % % On Sun, 10 Apr 2005, Bruce Evans wrote: % % > ... % > Here is my work-in-progress patch: % % Here is a better patch with some other bugs fixed: % % % Index: udf_vfsops.c % % =================================================================== % % RCS file: /home/ncvs/src/sys/fs/udf/udf_vfsops.c,v % % retrieving revision 1.18 % % diff -u -2 -r1.18 udf_vfsops.c % % --- udf_vfsops.c 23 Jun 2004 19:36:09 -0000 1.18 % % +++ udf_vfsops.c 19 Apr 2005 09:38:36 -0000 % % @@ -654,4 +654,5 @@ % % unode->i_dev = udfmp->im_dev; % % unode->udfmp = udfmp; % % + unode->diroff = 0; % % vp->v_data = unode; % % VREF(udfmp->im_devvp); % % unode->diroff was not initialized, so udf_lookup() tended to use garbage % offsets and fail after vnodes were recycled. % % The second pass in udf_lookup() should hide this problem, but doesn't % always because the second pass is not attempted after a bad fid. If % the stale offset is for a file in the same directory, then the fid is % not bad and the second pass works. % % This was fixed as an undocumented side effect of rev.1.28. uma_zalloc() % now M_ZEROs everything, although this is less needed than before because % changes associated with rev.1.28 removed fields from the struct, leaving % only 5 fields so they are very easy to initialized explicitly. A similar % change was made to ffs. It may be more needed there. I prefer the old % code. % % [... description of other bugs and fixes deleted] Bruce From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 17 02:52:26 2005 Return-Path: X-Original-To: freebsd-bugs@freebsd.org 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 05E3B16A41F; Wed, 17 Aug 2005 02:52:26 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailout1.pacific.net.au (mailout1.pacific.net.au [61.8.0.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67BFD43D48; Wed, 17 Aug 2005 02:52:25 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.0.86]) by mailout1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j7H2qOdM023628; Wed, 17 Aug 2005 12:52:24 +1000 Received: from epsplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j7H2qKmF021120; Wed, 17 Aug 2005 12:52:22 +1000 Date: Wed, 17 Aug 2005 12:52:20 +1000 (EST) From: Bruce Evans X-X-Sender: bde@epsplex.bde.org To: Divacky Roman In-Reply-To: <200508161451.j7GEpX1I014969@eva.fit.vutbr.cz> Message-ID: <20050817111104.C1553@epsplex.bde.org> References: <200508161451.j7GEpX1I014969@eva.fit.vutbr.cz> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-bugs@freebsd.org, FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/84992: gcc4.x cleanup of usr.bin/hexdump X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Aug 2005 02:52:26 -0000 On Tue, 16 Aug 2005, Divacky Roman wrote: >> Description: > gcc4.x (tested with gcc41) cleanup of usr.bin/hexdump >> How-To-Repeat: > apply the patch >> Fix: > > Index: conv.c > =================================================================== > RCS file: /home/ncvs/src/usr.bin/hexdump/conv.c,v > retrieving revision 1.8 > diff -u -r1.8 conv.c > --- conv.c 16 Jul 2004 11:07:07 -0000 1.8 > +++ conv.c 11 Aug 2005 13:22:00 -0000 > @@ -103,7 +103,7 @@ > if (odmode && MB_CUR_MAX > 1) { > oclen = 0; > retry: > - clen = mbrtowc(&wc, p, bufsize, &pr->mbstate); > + clen = mbrtowc(&wc, (const char *)p, bufsize, &pr->mbstate); Adding casts is a cleandown. p should have type "char *" to begin with. If p actually needs to be "unsigned char *" then it is unclear that mbrtowc() can handle it correctly and casting it to "char *" breaks the warning about this. The possible critical differences between unsigned chars and signed chars are especially clear in hexdump. hexdump wants to print raw bytes so it should use unsigned chars just like it already does except without the type mismatches from passes pointers to string functions that want signed chars. Signed chars may have any number of padding bits that wouldn't be printed right if the bytes are accessed as signed chars. The padding bits may contain any number of trap representations which would abort the program before it prints anything. Signed chars must have a single sign bit, but it may be anywhere and may be printed weirdly. See section 6.2.6.2 of the draft C99 standard. It is clear that string functions can't in general handle arrays of unsigned chars via type punning as above, since the unsigned chars may have trap representations when punned to signed chars -- explicit conversion at the level of chars is required, although it might not work right for hexdump since the conversion might lose bits (it _must_ lose any trap bits). What is unclear is whether the problems can actually occur, even in theory. Note that the above code is only executed in the odmode case due to the "hd" mode wanting to be rawer. > if (clen == 0) > clen = 1; > else if (clen == (size_t)-1 || (clen == (size_t)-2 && > @@ -118,7 +118,7 @@ > * can complete it. > */ > oclen = bufsize; > - bufsize = peek(p = peekbuf, MB_CUR_MAX); > + bufsize = peek(p = (u_char *)peekbuf, MB_CUR_MAX); > goto retry; > } > clen += oclen; Similarly, in the reverse direction. peek() wants unsigned chars so using possibly-signed chars for its buffers is nonsense. It is unclear if peek() actually needs unsigned chars. > Index: parse.c > =================================================================== > RCS file: /home/ncvs/src/usr.bin/hexdump/parse.c,v > retrieving revision 1.13 > diff -u -r1.13 parse.c > --- parse.c 22 Jul 2004 13:14:42 -0000 1.13 > +++ parse.c 11 Aug 2005 13:22:00 -0000 > @@ -54,7 +54,7 @@ > void > addfile(char *name) > { > - unsigned char *p; > + char *p; > FILE *fp; > int ch; > char buf[2048 + 1]; > @@ -79,7 +79,7 @@ > void > add(const char *fmt) > { > - unsigned const char *p, *savep; > + const char *p, *savep; > static FS **nextfs; > FS *tfs; > FU *tfu, **nextfu; Changing the basic type to plain char gives bugs even on normal machines (2's complement with 8-bit chars). The data will have been read using read(2) or passed on the command line via char **argv so it naturally has type char, but hexdump depends critically on the reverse of the bogus casts above -- it puns the plain chars to unsigned chars to get rid of the sign bit. Here p points into the format string so the type pun is more bogus than for file data, but it is intentional -- p had type plain "char *" in rev.1.1, but it was changed to "unsigned char *" in rev.1.3 to work around many sign extension bugs that occur in practice. The first one in add() is the well-known bug of using isspace() on a possibly-signed char. This gives undefined behaviour if the value is negative but different from EOF, and bogus defined behaviour if the value is EOF. The format string can be specified on the command line so it is easy for users who use more than the ASCII character set to put a negative char in it. [... Similarly to undo most of the work-arounds in rev.1.3]. Bruce From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 17 03:00:46 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 DE2ED16A42A for ; Wed, 17 Aug 2005 03:00:46 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EAA643D45 for ; Wed, 17 Aug 2005 03:00:46 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7H30kis039667 for ; Wed, 17 Aug 2005 03:00:46 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7H30kV5039666; Wed, 17 Aug 2005 03:00:46 GMT (envelope-from gnats) Date: Wed, 17 Aug 2005 03:00:46 GMT Message-Id: <200508170300.j7H30kV5039666@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Bruce Evans Cc: Subject: Re: bin/84992: gcc4.x cleanup of usr.bin/hexdump X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bruce Evans List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Aug 2005 03:00:47 -0000 The following reply was made to PR bin/84992; it has been noted by GNATS. From: Bruce Evans To: Divacky Roman Cc: FreeBSD-gnats-submit@freebsd.org, freebsd-bugs@freebsd.org Subject: Re: bin/84992: gcc4.x cleanup of usr.bin/hexdump Date: Wed, 17 Aug 2005 12:52:20 +1000 (EST) On Tue, 16 Aug 2005, Divacky Roman wrote: >> Description: > gcc4.x (tested with gcc41) cleanup of usr.bin/hexdump >> How-To-Repeat: > apply the patch >> Fix: > > Index: conv.c > =================================================================== > RCS file: /home/ncvs/src/usr.bin/hexdump/conv.c,v > retrieving revision 1.8 > diff -u -r1.8 conv.c > --- conv.c 16 Jul 2004 11:07:07 -0000 1.8 > +++ conv.c 11 Aug 2005 13:22:00 -0000 > @@ -103,7 +103,7 @@ > if (odmode && MB_CUR_MAX > 1) { > oclen = 0; > retry: > - clen = mbrtowc(&wc, p, bufsize, &pr->mbstate); > + clen = mbrtowc(&wc, (const char *)p, bufsize, &pr->mbstate); Adding casts is a cleandown. p should have type "char *" to begin with. If p actually needs to be "unsigned char *" then it is unclear that mbrtowc() can handle it correctly and casting it to "char *" breaks the warning about this. The possible critical differences between unsigned chars and signed chars are especially clear in hexdump. hexdump wants to print raw bytes so it should use unsigned chars just like it already does except without the type mismatches from passes pointers to string functions that want signed chars. Signed chars may have any number of padding bits that wouldn't be printed right if the bytes are accessed as signed chars. The padding bits may contain any number of trap representations which would abort the program before it prints anything. Signed chars must have a single sign bit, but it may be anywhere and may be printed weirdly. See section 6.2.6.2 of the draft C99 standard. It is clear that string functions can't in general handle arrays of unsigned chars via type punning as above, since the unsigned chars may have trap representations when punned to signed chars -- explicit conversion at the level of chars is required, although it might not work right for hexdump since the conversion might lose bits (it _must_ lose any trap bits). What is unclear is whether the problems can actually occur, even in theory. Note that the above code is only executed in the odmode case due to the "hd" mode wanting to be rawer. > if (clen == 0) > clen = 1; > else if (clen == (size_t)-1 || (clen == (size_t)-2 && > @@ -118,7 +118,7 @@ > * can complete it. > */ > oclen = bufsize; > - bufsize = peek(p = peekbuf, MB_CUR_MAX); > + bufsize = peek(p = (u_char *)peekbuf, MB_CUR_MAX); > goto retry; > } > clen += oclen; Similarly, in the reverse direction. peek() wants unsigned chars so using possibly-signed chars for its buffers is nonsense. It is unclear if peek() actually needs unsigned chars. > Index: parse.c > =================================================================== > RCS file: /home/ncvs/src/usr.bin/hexdump/parse.c,v > retrieving revision 1.13 > diff -u -r1.13 parse.c > --- parse.c 22 Jul 2004 13:14:42 -0000 1.13 > +++ parse.c 11 Aug 2005 13:22:00 -0000 > @@ -54,7 +54,7 @@ > void > addfile(char *name) > { > - unsigned char *p; > + char *p; > FILE *fp; > int ch; > char buf[2048 + 1]; > @@ -79,7 +79,7 @@ > void > add(const char *fmt) > { > - unsigned const char *p, *savep; > + const char *p, *savep; > static FS **nextfs; > FS *tfs; > FU *tfu, **nextfu; Changing the basic type to plain char gives bugs even on normal machines (2's complement with 8-bit chars). The data will have been read using read(2) or passed on the command line via char **argv so it naturally has type char, but hexdump depends critically on the reverse of the bogus casts above -- it puns the plain chars to unsigned chars to get rid of the sign bit. Here p points into the format string so the type pun is more bogus than for file data, but it is intentional -- p had type plain "char *" in rev.1.1, but it was changed to "unsigned char *" in rev.1.3 to work around many sign extension bugs that occur in practice. The first one in add() is the well-known bug of using isspace() on a possibly-signed char. This gives undefined behaviour if the value is negative but different from EOF, and bogus defined behaviour if the value is EOF. The format string can be specified on the command line so it is easy for users who use more than the ASCII character set to put a negative char in it. [... Similarly to undo most of the work-arounds in rev.1.3]. Bruce From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 17 07:40:12 2005 Return-Path: X-Original-To: freebsd-bugs@freebsd.org 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 BECF116A41F for ; Wed, 17 Aug 2005 07:40:12 +0000 (GMT) (envelope-from ralf.neeb@web.de) Received: from fmmailgate05.web.de (fmmailgate05.web.de [217.72.192.243]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2829F43D45 for ; Wed, 17 Aug 2005 07:40:11 +0000 (GMT) (envelope-from ralf.neeb@web.de) Received: by fmmailgate05.web.de (8.12.10/8.12.10/webde Linux 0.7) with SMTP id j7H7ctQn019060 for ; Wed, 17 Aug 2005 09:40:10 +0200 Received: from [195.27.163.196] by freemailng1301.web.de with HTTP; Wed, 17 Aug 2005 09:40:08 +0200 Date: Wed, 17 Aug 2005 09:40:08 +0200 Message-Id: <1117548482@web.de> MIME-Version: 1.0 From: Ralf Neeb To: freebsd-bugs@freebsd.org Precedence: fm-user Organization: http://freemail.web.de/ Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Subject: netstat is not working - netstat: kvm not available X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Aug 2005 07:40:12 -0000 Hi, I cvsup'ed my machine recently to tag=3DRELENG=5F5 built the world built the k= ernel installed kernel installed world as described in the freebsd handbook. So I'm DEFINITELY sure that my kernel and my userland (world) are in sync.= Now, if I'm trying to run netstat -r I receive the following error: netstat: kvm not available Routing tables rt=5Ftables: symbol not in namelist Does anyone has an idea for fixing this problem=3F uname -a tells me the following: FreeBSD blubb.com 5.4-STABLE FreeBSD 5.4-STABLE #0: Tue Aug 16 12:13:05 CE= ST 200 5 root@blubb.com:/usr/obj/usr/src/sys/OWNKERNEL i386 If you need any further information please contact me directly, because I'= m not subscribed on the mailinglist. TIA, Ralf =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F Mit der Gruppen-SMS von WEB.DE FreeMail k=F6nnen Sie eine SMS an alle=20 Freunde gleichzeitig schicken: http://freemail.web.de/features/=3Fmc=3D021179 From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 17 18:10:05 2005 Return-Path: X-Original-To: freebsd-bugs@freebsd.org 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 0E9B016A41F for ; Wed, 17 Aug 2005 18:10:05 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5CA243D48 for ; Wed, 17 Aug 2005 18:10:04 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id j7HIA4Ep010436; Wed, 17 Aug 2005 11:10:04 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id j7HIA3Nn010434; Wed, 17 Aug 2005 11:10:03 -0700 Date: Wed, 17 Aug 2005 11:10:03 -0700 From: Brooks Davis To: Ralf Neeb Message-ID: <20050817181003.GB16558@odin.ac.hmc.edu> References: <1117548482@web.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="V0207lvV8h4k8FAm" Content-Disposition: inline In-Reply-To: <1117548482@web.de> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu Cc: freebsd-bugs@freebsd.org Subject: Re: netstat is not working - netstat: kvm not available X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Aug 2005 18:10:05 -0000 --V0207lvV8h4k8FAm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 17, 2005 at 09:40:08AM +0200, Ralf Neeb wrote: >=20 > Hi, >=20 > I cvsup'ed my machine recently to tag=3DRELENG_5 built the world built th= e kernel > installed kernel installed world as described in the freebsd handbook. > So I'm DEFINITELY sure that my kernel and my userland (world) are in sync. >=20 > Now, if I'm trying to run netstat -r I receive the following error: >=20 > netstat: kvm not available > Routing tables > rt_tables: symbol not in namelist >=20 > Does anyone has an idea for fixing this problem? >=20 > uname -a tells me the following: >=20 > FreeBSD blubb.com 5.4-STABLE FreeBSD 5.4-STABLE #0: Tue Aug 16 12:13:05 C= EST 200 > 5 root@blubb.com:/usr/obj/usr/src/sys/OWNKERNEL i386 Deleting options from your custom kernel will cause problems like this. You need to add back: device mem Work is underway to remove this dependency, but I don't know when we'll commit it. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --V0207lvV8h4k8FAm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFDA317XY6L6fI4GtQRAgqTAJ0cKPWHCYKZugqH79B4yAmf7qeceACfQqrw qF5K8j6TeT0E51MNJAkwy7w= =xj1D -----END PGP SIGNATURE----- --V0207lvV8h4k8FAm-- From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 17 18:20:16 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 B74F316A41F for ; Wed, 17 Aug 2005 18:20:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0756E43D58 for ; Wed, 17 Aug 2005 18:20:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7HIKF8M062627 for ; Wed, 17 Aug 2005 18:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7HIKFAR062626; Wed, 17 Aug 2005 18:20:15 GMT (envelope-from gnats) Resent-Date: Wed, 17 Aug 2005 18:20:15 GMT Resent-Message-Id: <200508171820.j7HIKFAR062626@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, Oliver Lehmann Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEB6D16A41F; Wed, 17 Aug 2005 18:10:44 +0000 (GMT) (envelope-from olivleh1@kartoffel.salatschuessel.net) Received: from kartoffel.salatschuessel.net (p5084D72A.dip.t-dialin.net [80.132.215.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id B441643D45; Wed, 17 Aug 2005 18:10:42 +0000 (GMT) (envelope-from olivleh1@kartoffel.salatschuessel.net) Received: from kartoffel.salatschuessel.net (localhost [127.0.0.1]) by kartoffel.salatschuessel.net (8.13.4/8.13.4) with ESMTP id j7HIAewQ001906; Wed, 17 Aug 2005 20:10:40 +0200 (CEST) (envelope-from olivleh1@kartoffel.salatschuessel.net) Received: (from olivleh1@localhost) by kartoffel.salatschuessel.net (8.13.4/8.13.3/Submit) id j7HIAdLA001905; Wed, 17 Aug 2005 20:10:39 +0200 (CEST) (envelope-from olivleh1) Message-Id: <200508171810.j7HIAdLA001905@kartoffel.salatschuessel.net> Date: Wed, 17 Aug 2005 20:10:39 +0200 (CEST) From: Oliver Lehmann To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Oliver Lehmann Subject: bin/85049: rbootd spams console X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Oliver Lehmann List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Aug 2005 18:20:16 -0000 >Number: 85049 >Category: bin >Synopsis: rbootd spams console >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Aug 17 18:20:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Oliver Lehmann >Release: FreeBSD 6.0-BETA2 amd64 >Organization: >Environment: System: FreeBSD kartoffel.salatschuessel.net 6.0-BETA2 FreeBSD 6.0-BETA2 #1: Mon Aug 15 21:40:51 CEST 2005 olivleh1@kartoffel.salatschuessel.net:/usr/obj/amd64-athlon64-6.0/usr/src/sys/KARTOFFEL amd64 >Description: after upgrading from 5.4 to 6.0 rboot keeps spamming my console/syslog until I kill it (which is not a solution since I need it from time to time) Aug 17 05:40:00 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:00 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:00 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:00 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:01 gurke rbootd[564]: bpf: short packet dropped (0 of 122 bytes) Aug 17 05:40:01 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:01 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:01 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:01 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:02 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:02 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:02 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:02 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:02 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:02 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:03 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:03 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:03 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:03 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:04 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:04 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:04 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:04 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:04 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:04 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:04 gurke rbootd[564]: bpf: short packet dropped (0 of 66 bytes) Aug 17 05:40:04 gurke rbootd[564]: bpf: short packet dropped (0 of 136 bytes) Aug 17 05:40:05 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:05 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:05 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:05 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:05 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:05 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:06 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:06 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:06 gurke rbootd[564]: bpf: short packet dropped (0 of 1494 bytes) Aug 17 05:40:06 gurke rbootd[564]: bpf: short packet dropped (0 of 595 bytes) Aug 17 05:40:06 gurke kernel: fxp1: Microcode loaded, int_delay: 1000 usec bundle_max: 6 Aug 17 05:40:06 gurke kernel: fxp1: promiscuous mode disabled Aug 17 05:40:06 gurke rbootd[564]: going down on signal 15 >How-To-Repeat: The ipfw config regarding to the local interfaces: 02000 count ip from any to any // ==== fxp0 fxp1 lo0 ============= allow everything going through LAN 02002 allow ip from me to me via lo0 02004 allow ip from 10.0.0.0/8 to 10.0.0.0/8 { recv fxp0 or recv fxp1 } { xmit fxp0 or xmit fxp1 } 02006 deny log ip from any to any { recv fxp0 or recv fxp1 } { xmit fxp0 or xmit fxp1 } 02008 allow ip from 10.0.0.0/8 to any in { via fxp0 or via fxp1 } 02010 allow ip from any to 10.0.0.0/8 out { via fxp0 or via fxp1 } 02012 deny log ip from any to any { via fxp0 or via fxp1 } [.... other stuff regarding tun0, ep1 and fxp2 I don't want to post here ....] 60000 count ip from any to any // ================================ log+deny everything 60002 deny log ip from any to any 65535 deny ip from any to any --- GURKE begins here --- # # GENERIC -- Generic kernel configuration file for FreeBSD/i386 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ../../conf/NOTES and NOTES files. # If you are in doubt as to the purpose or necessity of a line, check first # in NOTES. # # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.413.2.13 2005/04/02 16:37:58 scottl Exp $ machine i386 #cpu I486_CPU cpu I586_CPU cpu I686_CPU ident GURKE # To statically compile in device wiring instead of /boot/device.hints #hints "GENERIC.hints" # Default places to look for devices. options SCHED_4BSD # 4BSD scheduler options INET # InterNETworking options INET6 # IPv6 communications protocols options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support options UFS_ACL # Support for access control lists options UFS_DIRHASH # Improve performance on big directories options MD_ROOT # MD is a potential root device options NFSCLIENT # Network Filesystem Client #options NFSSERVER # Network Filesystem Server #options NFS_ROOT # NFS usable as /, requires NFSCLIENT #options MSDOSFS # MSDOS Filesystem options CD9660 # ISO 9660 Filesystem options PROCFS # Process filesystem (requires PSEUDOFS) options PSEUDOFS # Pseudo-filesystem framework options GEOM_GPT # GUID Partition Tables. options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!] options COMPAT_FREEBSD4 # Compatible with FreeBSD4 options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI options KTRACE # ktrace(1) support options SYSVSHM # SYSV-style shared memory options SYSVMSG # SYSV-style message queues options SYSVSEM # SYSV-style semaphores options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions options KBD_INSTALL_CDEV # install a CDEV entry in /dev options AHC_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~128k to driver. options AHD_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~215k to driver. options ADAPTIVE_GIANT # Giant mutex is adaptive. # To make an SMP kernel, the next two lines are needed #options SMP # Symmetric MultiProcessor Kernel #device apic # I/O APIC # Bus support. Do not remove isa, even if you have no isa slots device isa #device eisa device pci # Floppy drives device fdc # ATA and ATAPI devices device ata device atadisk # ATA disk drives #device ataraid # ATA RAID drives device atapicd # ATAPI CDROM drives #device atapifd # ATAPI floppy drives #device atapist # ATAPI tape drives options ATA_STATIC_ID # Static device numbering # SCSI Controllers #device ahb # EISA AHA1742 family #device ahc # AHA2940 and onboard AIC7xxx devices #device ahd # AHA39320/29320 and onboard AIC79xx devices #device amd # AMD 53C974 (Tekram DC-390(T)) #device isp # Qlogic family #device mpt # LSI-Logic MPT-Fusion #device ncr # NCR/Symbios Logic #device sym # NCR/Symbios Logic (newer chipsets + those of `ncr') #device trm # Tekram DC395U/UW/F DC315U adapters #device adv # Advansys SCSI adapters #device adw # Advansys wide SCSI adapters #device aha # Adaptec 154x SCSI adapters #device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60. #device bt # Buslogic/Mylex MultiMaster SCSI adapters #device ncv # NCR 53C500 #device nsp # Workbit Ninja SCSI-3 #device stg # TMC 18C30/18C50 # SCSI peripherals #device scbus # SCSI bus (required for SCSI) #device ch # SCSI media changers #device da # Direct Access (disks) #device sa # Sequential Access (tape etc) #device cd # CD #device pass # Passthrough device (direct SCSI access) #device ses # SCSI Environmental Services (and SAF-TE) # RAID controllers interfaced to the SCSI subsystem #device amr # AMI MegaRAID #device arcmsr # Areca SATA II RAID #device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID #device ciss # Compaq Smart RAID 5* #device dpt # DPT Smartcache III, IV - See NOTES for options #device hptmv # Highpoint RocketRAID 182x #device iir # Intel Integrated RAID #device ips # IBM (Adaptec) ServeRAID #device mly # Mylex AcceleRAID/eXtremeRAID #device twa # 3ware 9000 series PATA/SATA RAID # RAID controllers #device aac # Adaptec FSA RAID #device aacp # SCSI passthrough for aac (requires CAM) #device ida # Compaq Smart RAID device mlx # Mylex DAC960 family #device pst # Promise Supertrak SX6000 #device twe # 3ware ATA RAID # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc # AT keyboard controller device atkbd # AT keyboard #device psm # PS/2 mouse device vga # VGA video card driver device splash # Splash screen and screen saver support # syscons is the default console driver, resembling an SCO console device sc # Enable this for the pcvt (VT220 compatible) console driver #device vt #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor device agp # support several AGP chipsets # Floating point support - do not disable. device npx # Power management support (see NOTES for more options) #device apm # Add suspend/resume support for the i8254. device pmtimer # PCCARD (PCMCIA) support # PCMCIA and cardbus bridge support #device cbb # cardbus (yenta) bridge #device pccard # PC Card (16-bit) bus #device cardbus # CardBus (32-bit) bus # Serial (COM) ports device sio # 8250, 16[45]50 based serial ports # Parallel port device ppc device ppbus # Parallel port bus (required) device lpt # Printer #device plip # TCP/IP over parallel #device ppi # Parallel port interface device #device vpo # Requires scbus and da # If you've got a "dumb" serial or parallel PCI card that is # supported by the puc(4) glue driver, uncomment the following # line to enable it (connects to the sio and/or ppc drivers): #device puc # PCI Ethernet NICs. #device de # DEC/Intel DC21x4x (``Tulip'') #device em # Intel PRO/1000 adapter Gigabit Ethernet Card #device ixgb # Intel PRO/10GbE Ethernet Card #device txp # 3Com 3cR990 (``Typhoon'') #device vx # 3Com 3c590, 3c595 (``Vortex'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support #device bfe # Broadcom BCM440x 10/100 Ethernet #device bge # Broadcom BCM570xx Gigabit Ethernet #device dc # DEC/Intel 21143 and various workalikes device fxp # Intel EtherExpress PRO/100B (82557, 82558) #device lge # Level 1 LXT1001 gigabit ethernet #device nge # NatSemi DP83820 gigabit ethernet #device pcn # AMD Am79C97x PCI 10/100 (precedence over 'lnc') #device re # RealTek 8139C+/8169/8169S/8110S #device rl # RealTek 8129/8139 #device sf # Adaptec AIC-6915 (``Starfire'') #device sis # Silicon Integrated Systems SiS 900/SiS 7016 #device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet #device ste # Sundance ST201 (D-Link DFE-550TX) #device ti # Alteon Networks Tigon I/II gigabit Ethernet #device tl # Texas Instruments ThunderLAN #device tx # SMC EtherPower II (83c170 ``EPIC'') #device vge # VIA VT612x gigabit ethernet #device vr # VIA Rhine, Rhine II #device wb # Winbond W89C840F #device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. pccard NICs included. device cs # Crystal Semiconductor CS89x0 NIC # 'device ed' requires 'device miibus' #device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards #device ex # Intel EtherExpress Pro/10 and Pro/10+ device ep # Etherlink III based cards #device fe # Fujitsu MB8696x based cards #device ie # EtherExpress 8/16, 3C507, StarLAN 10 etc. #device lnc # NE2100, NE32-VL Lance Ethernet cards #device sn # SMC's 9000 series of Ethernet chips #device xe # Xircom pccard Ethernet # ISA devices that use the old ISA shims #device le # Wireless NIC cards #device wlan # 802.11 support #device an # Aironet 4500/4800 802.11 wireless NICs. #device awi # BayStack 660 and others #device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs. #device wl # Older non 802.11 Wavelan wireless NIC. # Pseudo devices. device loop # Network loopback device mem # Memory and kernel memory devices device io # I/O device device random # Entropy device device ether # Ethernet support device sl # Kernel SLIP device ppp # Kernel PPP device tun # Packet tunnel. device pty # Pseudo-ttys (telnet etc) device md # Memory "disks" device gif # IPv6 and IPv4 tunneling device faith # IPv6-to-IPv4 relaying (translation) # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! # Note that 'bpf' is required for DHCP. device bpf # Berkeley packet filter # USB support #device uhci # UHCI PCI->USB interface #device ohci # OHCI PCI->USB interface #device ehci # EHCI PCI->USB interface (USB 2.0) #device usb # USB Bus (required) #device udbp # USB Double Bulk Pipe devices #device ugen # Generic #device uhid # "Human Interface Devices" #device ukbd # Keyboard #device ulpt # Printer #device umass # Disks/Mass storage - Requires scbus and da #device ums # Mouse #device urio # Diamond Rio 500 MP3 player #device uscanner # Scanners # USB Ethernet, requires mii #device aue # ADMtek USB Ethernet #device axe # ASIX Electronics USB Ethernet #device cdce # Generic USB over Ethernet #device cue # CATC USB Ethernet #device kue # Kawasaki LSI USB Ethernet #device rue # RealTek RTL8150 USB Ethernet # FireWire support #device firewire # FireWire bus code #device sbp # SCSI over FireWire (Requires scbus and da) #device fwe # Ethernet over FireWire (non-standard!) options IPFIREWALL options DUMMYNET options HZ=1000 device smb device smbus device intpm --- GURKE ends here --- >Fix: no idea >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 17 20:30:20 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 7ECFD16A41F for ; Wed, 17 Aug 2005 20:30:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 123F243D46 for ; Wed, 17 Aug 2005 20:30:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7HKUJWh076648 for ; Wed, 17 Aug 2005 20:30:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7HKUJBg076647; Wed, 17 Aug 2005 20:30:19 GMT (envelope-from gnats) Resent-Date: Wed, 17 Aug 2005 20:30:19 GMT Resent-Message-Id: <200508172030.j7HKUJBg076647@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, Dmitrij Tejblum Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB1B416A41F for ; Wed, 17 Aug 2005 20:22:56 +0000 (GMT) (envelope-from tejblum@yt64.yandex.ru) Received: from yt64.yandex.ru (yt64.yandex.ru [213.180.209.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id F14F243D46 for ; Wed, 17 Aug 2005 20:22:55 +0000 (GMT) (envelope-from tejblum@yt64.yandex.ru) Received: from yt64.yandex.ru (localhost [127.0.0.1]) by yt64.yandex.ru (8.13.3/8.13.3) with ESMTP id j7HKQ6jo070976 for ; Thu, 18 Aug 2005 00:26:06 +0400 (MSD) (envelope-from tejblum@yt64.yandex.ru) Received: (from tejblum@localhost) by yt64.yandex.ru (8.13.3/8.13.3/Submit) id j7HKQ5JX070975; Thu, 18 Aug 2005 00:26:05 +0400 (MSD) (envelope-from tejblum) Message-Id: <200508172026.j7HKQ5JX070975@yt64.yandex.ru> Date: Thu, 18 Aug 2005 00:26:05 +0400 (MSD) From: Dmitrij Tejblum To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/85052: [patch] ip_fastforward.c mishandle broadcast packets X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dmitrij Tejblum List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Aug 2005 20:30:20 -0000 >Number: 85052 >Category: kern >Synopsis: [patch] ip_fastforward.c mishandle broadcast packets >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 Aug 17 20:30:18 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Dmitrij Tejblum >Release: FreeBSD 5.4-STABLE i386 >Organization: OOO Yandex >Environment: Network with several routers with fastforwarding enabled. >Description: Fastforwarding may forward broadcast packets under some circumstances. It does not appear to be useful. Comments in this file suggest that it is not intended. It looks like ip_forward() (in ip_input.c) does not forward packets with M_BCAST. >How-To-Repeat: On a router with fastforwarding enabled: ifconfig vlanNNN create ifconfig vlanNNN vlandev em0 vlan NNN ifconfig vlanNNN up #note: no IP address assigned Now, suppose we have the network 10.20.30.0/24 in vlan NNN. Broadcast packet to 10.20.30.255, received by the router, will be forwarded to the vlan NNN (via other routers). I.e. we have a loop. Moreover, since M_BCAST is not cleared, the packet is forwarded as a broadcast, and it result in a broadcast storm. >Fix: Index: ip_fastfwd.c =================================================================== RCS file: /home/ncvs/src/sys/netinet/ip_fastfwd.c,v retrieving revision 1.17.2.7 diff -u -r1.17.2.7 ip_fastfwd.c --- ip_fastfwd.c 31 Mar 2005 17:03:45 -0000 1.17.2.7 +++ ip_fastfwd.c 17 Aug 2005 10:41:21 -0000 @@ -157,8 +157,6 @@ struct mbuf *m0 = NULL; struct route ro; struct sockaddr_in *dst = NULL; - struct in_ifaddr *ia = NULL; - struct ifaddr *ifa = NULL; struct ifnet *ifp; struct in_addr odest, dest; u_short sum, ip_len; @@ -324,21 +322,10 @@ return 0; /* - * Or is it for a local IP broadcast address on this host? + * No L2 broadcast or multicast. */ - if ((m->m_flags & M_BCAST) && - (m->m_pkthdr.rcvif->if_flags & IFF_BROADCAST)) { - TAILQ_FOREACH(ifa, &m->m_pkthdr.rcvif->if_addrhead, ifa_link) { - if (ifa->ifa_addr->sa_family != AF_INET) - continue; - ia = ifatoia(ifa); - if (ia->ia_netbroadcast.s_addr == ip->ip_dst.s_addr) - return 0; - if (satosin(&ia->ia_broadaddr)->sin_addr.s_addr == - ip->ip_dst.s_addr) - return 0; - } - } + if (m->m_flags & (M_BCAST|M_MCAST)) + return 0; ipstat.ips_total++; /* >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Wed Aug 17 21:26:23 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 F01C516A41F; Wed, 17 Aug 2005 21:26:23 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC4F543D49; Wed, 17 Aug 2005 21:26:23 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from freefall.freebsd.org (alfred@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7HLQNf9084019; Wed, 17 Aug 2005 21:26:23 GMT (envelope-from alfred@freefall.freebsd.org) Received: (from alfred@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7HLQN26084015; Wed, 17 Aug 2005 21:26:23 GMT (envelope-from alfred) Date: Wed, 17 Aug 2005 21:26:23 GMT From: Alfred Perlstein Message-Id: <200508172126.j7HLQN26084015@freefall.freebsd.org> To: alfred@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-threads@freebsd.org Cc: Subject: Re: threads/84778: libpthread busy loop/hang with Java when handling signals and Runtime.exec X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Aug 2005 21:26:24 -0000 Synopsis: libpthread busy loop/hang with Java when handling signals and Runtime.exec Responsible-Changed-From-To: freebsd-bugs->freebsd-threads@freebsd.org Responsible-Changed-By: alfred Responsible-Changed-When: Wed Aug 17 21:25:24 GMT 2005 Responsible-Changed-Why: By request of PR author move responsible party to freebsd-threads@freebsd.org http://www.freebsd.org/cgi/query-pr.cgi?pr=84778 From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 00:57:01 2005 Return-Path: X-Original-To: freebsd-bugs@freebsd.org 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 EC9BF16A41F for ; Thu, 18 Aug 2005 00:57:01 +0000 (GMT) (envelope-from efrenba@dhl.co.cu) Received: from dhl.co.cu (DHLMAIL.dhl.co.cu [200.55.156.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53DB443D46 for ; Thu, 18 Aug 2005 00:56:54 +0000 (GMT) (envelope-from efrenba@dhl.co.cu) Received: from WorldClient by dhl.co.cu (MDaemon.PRO.v8.0.2.R) with ESMTP id md50000031049.msg for ; Wed, 17 Aug 2005 20:57:44 -0500 Received: from [7.96.160.4] via WorldClient with HTTP; Wed, 17 Aug 2005 20:57:43 -0500 Date: Wed, 17 Aug 2005 20:57:43 -0500 From: "Efren Bravo" To: freebsd-bugs@freebsd.org MIME-Version: 1.0 Content-Type: text/plain Message-ID: X-Mailer: WorldClient 8.0.2 X-Authenticated-Sender: efrenba@dhl.co.cu X-Spam-Processed: dhl.co.cu, Wed, 17 Aug 2005 20:57:44 -0500 (not processed: message from valid local sender) X-Return-Path: efrenba@dhl.co.cu X-MDaemon-Deliver-To: freebsd-bugs@freebsd.org X-MDAV-Processed: dhl.co.cu, Wed, 17 Aug 2005 20:57:45 -0500 Subject: Problem, freeBSD & my motherboard X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 00:57:02 -0000 Hello, I've downloaded the last weekend 5.4-RELEASE-i386-disc1.iso and 5.4-RELEASE-i386-disc2.iso. Several errors were raised when the installer was running: ata0-master: Failure - ATA-IDENTIFY timed out ata0-master: Failure - ATA-IDENTIFY timed out ata0-master: Failure - ATA-IDENTIFY timed out atapi ... I don't remember the rest.... My hdd is a Segate ST340014A (40Gb barracuda7200.7) with two partitions where in the partition one I've WinXP and I would want to install freeBDS on the second partition but it's not able to find the hdd. My Motherboard is: http://www.biostar.com.tw/products/mainboard/board.php?name=U8668-D%20v7.x I think that the problems is in fBSD that it's not able to communicate itself with IDE slots. In this case what can I do? In the freebsd-questions@freebsd.org list they told me that I should write you, that maybe you can help me and in the stable@freebsd.org no one answered me. I hope you can give me some suggestion Thank you.... From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 01:11:50 2005 Return-Path: X-Original-To: freebsd-bugs@freebsd.org 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 6F6AD16A41F for ; Thu, 18 Aug 2005 01:11:50 +0000 (GMT) (envelope-from efrenba@dhl.co.cu) Received: from dhl.co.cu (DHLMAIL.dhl.co.cu [200.55.156.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0359F43D46 for ; Thu, 18 Aug 2005 01:11:45 +0000 (GMT) (envelope-from efrenba@dhl.co.cu) Received: from WorldClient by dhl.co.cu (MDaemon.PRO.v8.0.2.R) with ESMTP id md50000031052.msg for ; Wed, 17 Aug 2005 21:12:39 -0500 Received: from [7.96.160.4] via WorldClient with HTTP; Wed, 17 Aug 2005 21:12:36 -0500 Date: Wed, 17 Aug 2005 21:12:36 -0500 From: "Efren Bravo" To: freebsd-bugs@freebsd.org MIME-Version: 1.0 Content-Type: text/plain Message-ID: X-Mailer: WorldClient 8.0.2 X-Authenticated-Sender: efrenba@dhl.co.cu X-Spam-Processed: dhl.co.cu, Wed, 17 Aug 2005 21:12:39 -0500 (not processed: message from valid local sender) X-Return-Path: efrenba@dhl.co.cu X-MDaemon-Deliver-To: freebsd-bugs@freebsd.org X-MDAV-Processed: dhl.co.cu, Wed, 17 Aug 2005 21:12:40 -0500 Subject: Problem, freeBSD & my motherboard X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 01:11:50 -0000 Hello, I've downloaded the last weekend 5.4-RELEASE-i386-disc1.iso and 5.4-RELEASE-i386-disc2.iso. Several errors were raised when the installer was running: ata0-master: Failure - ATA-IDENTIFY timed out ata0-master: Failure - ATA-IDENTIFY timed out ata0-master: Failure - ATA-IDENTIFY timed out atapi ... I don't remember the rest.... My hdd is a Segate ST340014A (40Gb barracuda7200.7) with two partitions where in the partition one I've WinXP and I would want to install freeBDS on the second partition but it's not able to find the hdd. My Motherboard is: http://www.biostar.com.tw/products/mainboard/board.php?name=U8668-D%20v7.x I think that the problems is in fBSD that it's not able to communicate itself with IDE slots. In this case what can I do? In the freebsd-questions@freebsd.org list they told me that I should write you, that maybe you can help me and in the stable@freebsd.org no one answered me. I hope you can give me some suggestion Thank you.... From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 06:55:22 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 55EFF16A41F; Thu, 18 Aug 2005 06:55:22 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11D7343D45; Thu, 18 Aug 2005 06:55:22 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7I6tLAV057107; Thu, 18 Aug 2005 06:55:21 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7I6tLfR057103; Thu, 18 Aug 2005 06:55:21 GMT (envelope-from linimon) Date: Thu, 18 Aug 2005 06:55:21 GMT From: Mark Linimon Message-Id: <200508180655.j7I6tLfR057103@freefall.freebsd.org> To: linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: kern/85005: Network interrupt after shutdown method has been called [relates to kern/62889?] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 06:55:22 -0000 Old Synopsis: Network interrupt after shutdown method has been called [kern/62889] New Synopsis: Network interrupt after shutdown method has been called [relates to kern/62889?] Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Aug 18 06:53:44 GMT 2005 Responsible-Changed-Why: Rescue this PR from the 'pending' category. http://www.freebsd.org/cgi/query-pr.cgi?pr=85005 From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 11:40:14 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 14EFB16A420 for ; Thu, 18 Aug 2005 11:40:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 538A243D48 for ; Thu, 18 Aug 2005 11:40:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7IBeDep098513 for ; Thu, 18 Aug 2005 11:40:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7IBeDRW098512; Thu, 18 Aug 2005 11:40:13 GMT (envelope-from gnats) Resent-Date: Thu, 18 Aug 2005 11:40:13 GMT Resent-Message-Id: <200508181140.j7IBeDRW098512@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, "Wojciech A. Koszek" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A732F16A420 for ; Thu, 18 Aug 2005 11:34:11 +0000 (GMT) (envelope-from dunstan@freebsd.czest.pl) Received: from freebsd.czest.pl (silver.iplus.pl [80.48.250.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8D4243D69 for ; Thu, 18 Aug 2005 11:34:05 +0000 (GMT) (envelope-from dunstan@freebsd.czest.pl) Received: from freebsd.czest.pl (freebsd.czest.pl [80.48.250.4]) by freebsd.czest.pl (8.12.10/8.12.9) with ESMTP id j7IBn4GW083543 for ; Thu, 18 Aug 2005 11:49:04 GMT (envelope-from dunstan@freebsd.czest.pl) Received: (from dunstan@localhost) by freebsd.czest.pl (8.12.10/8.12.9/Submit) id j7IBn4s2083542; Thu, 18 Aug 2005 11:49:04 GMT (envelope-from dunstan) Message-Id: <200508181149.j7IBn4s2083542@freebsd.czest.pl> Date: Thu, 18 Aug 2005 11:49:04 GMT From: "Wojciech A. Koszek" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/85086: [PATCH] Locking fixes for ef(4) (+removes mem. leak) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Wojciech A. Koszek" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 11:40:14 -0000 >Number: 85086 >Category: kern >Synopsis: [PATCH] Locking fixes for ef(4) (+removes mem. leak) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Aug 18 11:40:12 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Wojciech A. Koszek >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD laptop.freebsd.czest.pl 7.0-CURRENT FreeBSD 7.0-CURRENT #18: Tue Aug 16 12:29:31 CEST 2005 dunstan@laptop.freebsd.czest.pl:/usr/obj/usr/src/sys/LAPTOP i386 >Description: Patch against FreeBSD 7.0-CURRENT, kern.osreldate: 700002. Makes ef(4) MPSAFE, fixes memory leak, removes one unused macro and one unused variable. Brings also corrections which David Brooks has sent me. >How-To-Repeat: >Fix: --- diff.locking.if_ef.c begins here --- (c) 2005 Wojciech A. Koszek dunstan@FreeBSD.czest.pl diff -upr /usr/src/sys/net/if_ef.c src/sys/net/if_ef.c --- /usr/src/sys/net/if_ef.c Sun Aug 14 14:38:51 2005 +++ src/sys/net/if_ef.c Thu Aug 18 12:57:07 2005 @@ -39,6 +39,9 @@ #include #include #include +#include +#include +#include #include #include @@ -83,8 +86,6 @@ #define EFDEBUG(format, args...) #endif -#define EFERROR(format, args...) printf("%s: "format, __func__ ,## args) - struct efnet { struct ifnet *ef_ifp; struct ifnet *ef_pifp; @@ -98,7 +99,12 @@ struct ef_link { }; static SLIST_HEAD(ef_link_head, ef_link) efdev = {NULL}; -static int efcount; +static struct mtx ef_mtx; + +#define EF_MTX_INIT() mtx_init(&ef_mtx, "efmtx", NULL, MTX_DEF) +#define EF_MTX_DESTROY() mtx_destroy(&ef_mtx) +#define EF_LOCK() mtx_lock(&ef_mtx) +#define EF_UNLOCK() mtx_unlock(&ef_mtx) extern int (*ef_inputp)(struct ifnet*, struct ether_header *eh, struct mbuf *m); extern int (*ef_outputp)(struct ifnet *ifp, struct mbuf **mp, @@ -156,14 +162,10 @@ static int ef_detach(struct efnet *sc) { struct ifnet *ifp = sc->ef_ifp; - int s; - - s = splimp(); - + ether_ifdetach(ifp); if_free(ifp); - splx(s); return 0; } @@ -177,11 +179,10 @@ ef_ioctl(struct ifnet *ifp, u_long cmd, { struct efnet *sc = ifp->if_softc; struct ifaddr *ifa = (struct ifaddr*)data; - int s, error; + int error; EFDEBUG("IOCTL %ld for %s\n", cmd, ifp->if_xname); error = 0; - s = splimp(); switch (cmd) { case SIOCSIFFLAGS: error = 0; @@ -198,7 +199,6 @@ ef_ioctl(struct ifnet *ifp, u_long cmd, error = ether_ioctl(ifp, cmd, data); break; } - splx(s); return error; } @@ -355,12 +355,14 @@ ef_input(struct ifnet *ifp, struct ether * Check if interface configured for the given frame */ efp = NULL; + EF_LOCK(); SLIST_FOREACH(efl, &efdev, el_next) { if (efl->el_ifp == ifp) { efp = efl->el_units[ft]; break; } } + EF_UNLOCK(); if (efp == NULL) { EFDEBUG("Can't find if for %d\n", ft); return EPROTONOSUPPORT; @@ -477,7 +479,7 @@ ef_clone(struct ef_link *efl, int ft) efp->ef_pifp = ifp; efp->ef_frametype = ft; eifp = efp->ef_ifp = if_alloc(IFT_ETHER); - if (ifp == NULL) + if (eifp == NULL) return (ENOSPC); snprintf(eifp->if_xname, IFNAMSIZ, "%sf%d", ifp->if_xname, efp->ef_frametype); @@ -500,7 +502,8 @@ ef_load(void) IFNET_RLOCK(); TAILQ_FOREACH(ifp, &ifnet, if_link) { - if (ifp->if_type != IFT_ETHER) continue; + if (ifp->if_type != IFT_ETHER) + continue; EFDEBUG("Found interface %s\n", ifp->if_xname); efl = (struct ef_link*)malloc(sizeof(struct ef_link), M_IFADDR, M_WAITOK | M_ZERO); @@ -508,7 +511,7 @@ ef_load(void) error = ENOMEM; break; } - + efl->el_ifp = ifp; #ifdef ETHER_II error = ef_clone(efl, ETHER_FT_EII); @@ -526,31 +529,37 @@ ef_load(void) error = ef_clone(efl, ETHER_FT_SNAP); if (error) break; #endif - efcount++; + EF_LOCK(); SLIST_INSERT_HEAD(&efdev, efl, el_next); + EF_UNLOCK(); } IFNET_RUNLOCK(); if (error) { - if (efl) + EF_LOCK(); + if (efl != NULL) SLIST_INSERT_HEAD(&efdev, efl, el_next); SLIST_FOREACH(efl, &efdev, el_next) { for (d = 0; d < EF_NFT; d++) - if (efl->el_units[d]) { - if (efl->el_units[d]->ef_pifp != NULL) - if_free(efl->el_units[d]->ef_pifp); + efp = efl->el_units[d]; + if (efp != NULL) { + if (efp->ef_ifp != NULL) { + if_free(efp->ef_ifp); + } free(efl->el_units[d], M_IFADDR); } - free(efl, M_IFADDR); } + EF_UNLOCK(); return error; } + EF_LOCK(); SLIST_FOREACH(efl, &efdev, el_next) { for (d = 0; d < EF_NFT; d++) { efp = efl->el_units[d]; - if (efp) + if (efp != NULL) ef_attach(efp); } } + EF_UNLOCK(); ef_inputp = ef_input; ef_outputp = ef_output; EFDEBUG("Loaded\n"); @@ -566,14 +575,19 @@ ef_unload(void) ef_inputp = NULL; ef_outputp = NULL; - SLIST_FOREACH(efl, &efdev, el_next) { + EF_LOCK(); + while ((efl = SLIST_FIRST(&efdev)) != NULL) { + SLIST_REMOVE_HEAD(&efdev, el_next); for (d = 0; d < EF_NFT; d++) { efp = efl->el_units[d]; - if (efp) { + if (efp != NULL) { ef_detach(efp); + free(efp, M_IFADDR); } } + free(efl, M_IFADDR); } + EF_UNLOCK(); EFDEBUG("Unloaded\n"); return 0; } @@ -581,15 +595,21 @@ ef_unload(void) static int if_ef_modevent(module_t mod, int type, void *data) { + int error = 0; + switch ((modeventtype_t)type) { - case MOD_LOAD: - return ef_load(); - case MOD_UNLOAD: - return ef_unload(); - default: - return EOPNOTSUPP; + case MOD_LOAD: + EF_MTX_INIT(); + error = ef_load(); + break; + case MOD_UNLOAD: + error = ef_unload(); + EF_MTX_DESTROY(); + break; + default: + error = EOPNOTSUPP; } - return 0; + return (error); } static moduledata_t if_ef_mod = { --- diff.locking.if_ef.c ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 12:10:17 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 5583F16A41F for ; Thu, 18 Aug 2005 12:10:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DD2E43D5A for ; Thu, 18 Aug 2005 12:10:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7ICAElj003833 for ; Thu, 18 Aug 2005 12:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7ICAE8M003832; Thu, 18 Aug 2005 12:10:14 GMT (envelope-from gnats) Resent-Date: Thu, 18 Aug 2005 12:10:14 GMT Resent-Message-Id: <200508181210.j7ICAE8M003832@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, Bob Ippolito Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5BD816A41F for ; Thu, 18 Aug 2005 12:02:10 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73EDF43D46 for ; Thu, 18 Aug 2005 12:02:10 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id j7IC2ALa052717 for ; Thu, 18 Aug 2005 12:02:10 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j7IC2Aj1052716; Thu, 18 Aug 2005 12:02:10 GMT (envelope-from nobody) Message-Id: <200508181202.j7IC2Aj1052716@www.freebsd.org> Date: Thu, 18 Aug 2005 12:02:10 GMT From: Bob Ippolito To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/85087: send-pr should prefer to use HTTP, rather than mail X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 12:10:17 -0000 >Number: 85087 >Category: misc >Synopsis: send-pr should prefer to use HTTP, rather than mail >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Aug 18 12:10:14 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Bob Ippolito >Release: FreeBSD 5.4-RELEASE i386 >Organization: >Environment: FreeBSD go.mochibot.com 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun May 8 10:21:06 UTC 2005 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: I had attempted to send-pr last week, but it never went through. It turns out that the freebsd.org MTA won't accept mail from my server: Aug 11 23:45:57 go sm-mta[38236]: j7BCiYG9019787: to=, ctladdr= (1001/1001), delay=18:01:22, xdelay=00:00:01, mailer=esmtp, pri=3362068, relay=mx1.freebsd.org. [216.136.204.125], dsn=4.2.0, stat=Deferred: 450 Client host rejected: cannot find your hostname, [216.200.21.218] >How-To-Repeat: Use send-pr from a machine where the MTA is misconfigured, the reverse DNS isn't correct, etc. >Fix: If send-pr could post via http://www.freebsd.org/send-pr.html, this problem would go away. It's a lot more likely that HTTP would go through. This shouldn't be too hard to do with the existing shell script infrastructure via curl, or a similar utility. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 14:00:38 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 B9FE616A41F for ; Thu, 18 Aug 2005 14:00:38 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F81B43D45 for ; Thu, 18 Aug 2005 14:00:38 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7IE0cE1013530 for ; Thu, 18 Aug 2005 14:00:38 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7IE0c5j013524; Thu, 18 Aug 2005 14:00:38 GMT (envelope-from gnats) Date: Thu, 18 Aug 2005 14:00:38 GMT Message-Id: <200508181400.j7IE0c5j013524@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Giorgos Keramidas Cc: Subject: Re: misc/85087: send-pr should prefer to use HTTP, rather than mail X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Giorgos Keramidas List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 14:00:38 -0000 The following reply was made to PR misc/85087; it has been noted by GNATS. From: Giorgos Keramidas To: Bob Ippolito Cc: bug-followup@freebsd.org Subject: Re: misc/85087: send-pr should prefer to use HTTP, rather than mail Date: Thu, 18 Aug 2005 16:54:40 +0300 On 2005-08-18 12:02, Bob Ippolito wrote: > > I had attempted to send-pr last week, but it never went through. It > turns out that the freebsd.org MTA won't accept mail from my server: > > Aug 11 23:45:57 go sm-mta[38236]: j7BCiYG9019787: > to=, ctladdr= > (1001/1001), delay=18:01:22, xdelay=00:00:01, mailer=esmtp, > pri=3362068, relay=mx1.freebsd.org. [216.136.204.125], dsn=4.2.0, > stat=Deferred: 450 Client host rejected: cannot find your hostname, > [216.200.21.218] The problem is one that can be solved by properly configuring your DNS setup. There is a very good reason why the MX of FreeBSD.org refuses to accept email from unresolvable addresses. It saves us from a ton of spam mail :-) > Use send-pr from a machine where the MTA is misconfigured, the reverse > DNS isn't correct, etc. That's not a send-pr bug, neither an MX bug in FreeBSD.org, IMHO. > If send-pr could post via http://www.freebsd.org/send-pr.html, this > problem would go away. It's a lot more likely that HTTP would go > through. > > This shouldn't be too hard to do with the existing shell script > infrastructure via curl, or a similar utility. Only this is not possible either. The web-based bug submission form includes an image that is human-readable, but cannot easily be handled by a script. You should really look into fixing your DNS problems. Posting email from an address that doesn't resolve properly these days is a bit silly, since many servers use DNS queries to filter out most of the "naive spammers who don't have valid forward & backward resolution set up correctly". You'll have problems with other mail servers too, until you fix your DNS setup. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 14:30:26 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 C4CE116A41F for ; Thu, 18 Aug 2005 14:30:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DC1443D5C for ; Thu, 18 Aug 2005 14:30:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7IEULH4018652 for ; Thu, 18 Aug 2005 14:30:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7IEULHe018650; Thu, 18 Aug 2005 14:30:21 GMT (envelope-from gnats) Resent-Date: Thu, 18 Aug 2005 14:30:21 GMT Resent-Message-Id: <200508181430.j7IEULHe018650@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, Sergey Matveychuk Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DF1316A420 for ; Thu, 18 Aug 2005 14:24:47 +0000 (GMT) (envelope-from sem@ciam.ru) Received: from mail.ciam.ru (mail.ciam.ru [213.147.57.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B38A43D48 for ; Thu, 18 Aug 2005 14:24:46 +0000 (GMT) (envelope-from sem@ciam.ru) Received: from sem-home ([213.85.81.137] helo=test.sem-home.ciam.ru) by mail.ciam.ru with esmtpa (Exim 4.x) id 1E5lK0-000BnA-W2 for FreeBSD-gnats-submit@freebsd.org; Thu, 18 Aug 2005 18:24:45 +0400 Received: from sem by test.sem-home.ciam.ru with local (Exim 4.52 (FreeBSD)) id 1E5lKy-0004a6-JH for FreeBSD-gnats-submit@freebsd.org; Thu, 18 Aug 2005 18:25:44 +0400 Message-Id: Date: Thu, 18 Aug 2005 18:25:44 +0400 From: Sergey Matveychuk Sender: Sergey Matveychuk To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/85090: [patch] add memalign() and posix_memalign() functions X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sergey Matveychuk List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 14:30:27 -0000 >Number: 85090 >Category: bin >Synopsis: [patch] add memalign() and posix_memalign() functions >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Aug 18 14:30:20 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Sergey Matveychuk >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD test.sem-home.ciam.ru 7.0-CURRENT FreeBSD 7.0-CURRENT #34: Sat Aug 13 16:02:55 MSD 2005 root@test.sem-home.ciam.ru:/usr/obj/usr/src/sys/CURRENT i386 >Description: Add memalign() and posix_memalign() functions. >How-To-Repeat: >Fix: --- memalign.patch begins here --- Index: include/stdlib.h =================================================================== RCS file: /home/ncvs/src/include/stdlib.h,v retrieving revision 1.57 diff -u -r1.57 stdlib.h --- include/stdlib.h 9 Jan 2005 03:55:12 -0000 1.57 +++ include/stdlib.h 18 Aug 2005 07:05:11 -0000 @@ -98,6 +98,7 @@ int mblen(const char *, size_t); size_t mbstowcs(wchar_t * __restrict , const char * __restrict, size_t); int mbtowc(wchar_t * __restrict, const char * __restrict, size_t); +void *memalign(size_t, size_t); void qsort(void *, size_t, size_t, int (*)(const void *, const void *)); int rand(void); @@ -157,7 +158,7 @@ * research can be done. */ #if __POSIX_VISIBLE /* >= ??? */ -/* int posix_memalign(void **, size_t, size_t); (ADV) */ +int posix_memalign(void **, size_t, size_t); /* (ADV) */ int rand_r(unsigned *); /* (TSF) */ int setenv(const char *, const char *, int); void unsetenv(const char *); Index: lib/libc/stdlib/Makefile.inc =================================================================== RCS file: /home/ncvs/src/lib/libc/stdlib/Makefile.inc,v retrieving revision 1.48 diff -u -r1.48 Makefile.inc --- lib/libc/stdlib/Makefile.inc 12 May 2004 08:13:40 -0000 1.48 +++ lib/libc/stdlib/Makefile.inc 18 Aug 2005 07:05:11 -0000 @@ -41,5 +41,6 @@ MLINKS+=strtol.3 strtoll.3 strtol.3 strtoq.3 strtol.3 strtoimax.3 MLINKS+=strtoul.3 strtoull.3 strtoul.3 strtouq.3 strtoul.3 strtoumax.3 MLINKS+=malloc.3 calloc.3 malloc.3 free.3 malloc.3 malloc.conf.5 \ - malloc.3 realloc.3 malloc.3 reallocf.3 + malloc.3 realloc.3 malloc.3 reallocf.3 malloc.3 memalign.3 \ + malloc.3 posix_memalign.3 MLINKS+=tsearch.3 tdelete.3 tsearch.3 tfind.3 tsearch.3 twalk.3 Index: lib/libc/stdlib/malloc.3 =================================================================== RCS file: /home/ncvs/src/lib/libc/stdlib/malloc.3,v retrieving revision 1.63 diff -u -r1.63 malloc.3 --- lib/libc/stdlib/malloc.3 20 Jan 2005 09:17:04 -0000 1.63 +++ lib/libc/stdlib/malloc.3 18 Aug 2005 07:05:11 -0000 @@ -54,6 +54,10 @@ .Fn realloc "void *ptr" "size_t size" .Ft void * .Fn reallocf "void *ptr" "size_t size" +.Ft void * +.Fn memalign "size_t alignment" "size_t size" +.Ft int +.Fn posix_memalign "void **ptr" "size_t alignment" "size_t size" .Ft void .Fn free "void *ptr" .Ft const char * @@ -148,6 +152,27 @@ for realloc causing memory leaks in libraries. .Pp The +.Fn memalign +function allocates +.Fa size +bytes aligned on a boundary specified by +.Fa alignment +which must be a power of two. +.Pp +The +.Fn posix_memalign +function allocates +.Fa size +bytes aligned on a boundary specified by +.Fa alignment +and places the address of the allocated memory in +.Fa ptr . +The value of +.Fa alignment +must be a power of two and a multiple of +.Fn sizeof "void *" . +.Pp +The .Fn free function causes the allocated memory referenced by .Fa ptr @@ -264,9 +289,10 @@ is flawed. .Sh RETURN VALUES The -.Fn malloc -and +.Fn malloc , .Fn calloc +and +.Fn memalign functions return a pointer to the allocated memory if successful; otherwise a .Dv NULL @@ -276,6 +302,30 @@ .Er ENOMEM . .Pp The +.Fn memalign +function returns a +.Dv NULL +and sets +.Va errno +to +.Er EINVAL +if the value of the +.Fa alignment +parameter is not a power of two. +.Pp +The +.Fn posix_memalign +function returns zero on success, +.Er EINVAL +if the +.Fa alignment +parameter was not a power of two, or was not a multiple of +.Fn sizeof "void *" . +Note that +.Va errno +is not set. +.Pp +The .Fn realloc and .Fn reallocf @@ -363,7 +413,9 @@ If .Fn malloc , .Fn calloc , -.Fn realloc +.Fn realloc , +.Fn memalign , +.Fn posix_memalign or .Fn free detect an error or warning condition, @@ -493,8 +545,22 @@ .Fn reallocf function first appeared in .Fx 3.0 . +.Pp +The +.Fn memalign +and +.Fn posix_memalign +functions first appeared in +.Fx 7.0 . .Sh AUTHORS .An Poul-Henning Kamp Aq phk@FreeBSD.org +.Pp +The +.Fn memalign +and +.Fn posix_memalign +functions were added by +.An Sergey Matveychuk Aq sem@FreeBSD.org .Sh BUGS The messages printed in case of problems provide no detail about the actual values. Index: lib/libc/stdlib/malloc.c =================================================================== RCS file: /home/ncvs/src/lib/libc/stdlib/malloc.c,v retrieving revision 1.90 diff -u -r1.90 malloc.c --- lib/libc/stdlib/malloc.c 27 Feb 2005 17:16:16 -0000 1.90 +++ lib/libc/stdlib/malloc.c 18 Aug 2005 07:05:11 -0000 @@ -1164,3 +1164,38 @@ return (pubrealloc(ptr, size, " in realloc():")); } +#define POWEROF2(x) ((((x)-1)&(x))==0) + +void * +memalign(size_t alignment, size_t size) +{ + + if(!POWEROF2(alignment)) + { + errno = EINVAL; + return(NULL); + } + return (pubrealloc(NULL, (size+alignment-1) & ~(alignment-1), + " in memalign():")); +} + +int +posix_memalign(void **ptr, size_t alignment, size_t size) +{ + void *p1; + int err; + + if (alignment % sizeof(void *) || !POWEROF2(alignment)) + return(EINVAL); + + p1 = pubrealloc(NULL, (size+alignment-1) & ~(alignment-1), + " in posix_memalign():"); + if(p1) { + *ptr = p1; + return (0); + } else { + err = errno; + errno = 0; + return (err); + } +} --- memalign.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 18:40:21 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 87F6A16A41F for ; Thu, 18 Aug 2005 18:40:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CB0343D45 for ; Thu, 18 Aug 2005 18:40:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7IIeLcN049584 for ; Thu, 18 Aug 2005 18:40:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7IIeLWw049583; Thu, 18 Aug 2005 18:40:21 GMT (envelope-from gnats) Date: Thu, 18 Aug 2005 18:40:21 GMT Message-Id: <200508181840.j7IIeLWw049583@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Bob Ippolito Cc: Subject: Re: misc/85087: send-pr should prefer to use HTTP, rather than mail X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bob Ippolito List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 18:40:21 -0000 The following reply was made to PR misc/85087; it has been noted by GNATS. From: Bob Ippolito To: Giorgos Keramidas Cc: bug-followup@freebsd.org Subject: Re: misc/85087: send-pr should prefer to use HTTP, rather than mail Date: Thu, 18 Aug 2005 08:31:14 -1000 On Aug 18, 2005, at 3:54 AM, Giorgos Keramidas wrote: > On 2005-08-18 12:02, Bob Ippolito wrote: > >> >> I had attempted to send-pr last week, but it never went through. It >> turns out that the freebsd.org MTA won't accept mail from my server: >> >> Aug 11 23:45:57 go sm-mta[38236]: j7BCiYG9019787: >> to=, ctladdr= >> (1001/1001), delay=18:01:22, xdelay=00:00:01, mailer=esmtp, >> pri=3362068, relay=mx1.freebsd.org. [216.136.204.125], dsn=4.2.0, >> stat=Deferred: 450 Client host rejected: cannot find your hostname, >> [216.200.21.218] >> > > The problem is one that can be solved by properly configuring your DNS > setup. There is a very good reason why the MX of FreeBSD.org > refuses to > accept email from unresolvable addresses. It saves us from a ton of > spam mail :-) Users do not necessarily have control over their reverse DNS. Yes, I could go and fix my reverse DNS for this particular server, but I don't have a pressing need to and it's not really worth the administration hassle just to report FreeBSD issues. These machines are not on the internet to send or receive mail, and there's no other practical reason for reverse DNS to be set up properly. Bugs should be easy to report, and this isn't making it easy. Knowing that send-pr isn't going to work from any servers sitting in that colo, and that send-pr doesn't have an easy way to ship reports to a machine that does, I'm unlikely to report bugs at all... especially if they have attachments that I do not have on my workstation. The PR that was lost in the MTA queue due to this issue was actually an enhancement for a port, and this kind of response is really not encouraging me to bother with contributing to FreeBSD. I'm not saying that you should relax the MTA rules, I'm saying that there should be an alternate path for send-pr. One without an image- based captcha, of course. -bob From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 18:43:49 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 93F8516A41F; Thu, 18 Aug 2005 18:43:49 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53F1043D48; Thu, 18 Aug 2005 18:43:49 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (glebius@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7IIhnx3049752; Thu, 18 Aug 2005 18:43:49 GMT (envelope-from glebius@freefall.freebsd.org) Received: (from glebius@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7IIhns6049748; Thu, 18 Aug 2005 18:43:49 GMT (envelope-from glebius) Date: Thu, 18 Aug 2005 18:43:49 GMT From: Gleb Smirnoff Message-Id: <200508181843.j7IIhns6049748@freefall.freebsd.org> To: glebius@FreeBSD.org, freebsd-bugs@FreeBSD.org, scottl@FreeBSD.org Cc: Subject: Re: kern/84983: [patch] udf filesystem: stat-ting files could randomly fail X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 18:43:49 -0000 Synopsis: [patch] udf filesystem: stat-ting files could randomly fail Responsible-Changed-From-To: freebsd-bugs->scottl Responsible-Changed-By: glebius Responsible-Changed-When: Thu Aug 18 18:43:25 GMT 2005 Responsible-Changed-Why: Assign to UDF maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=84983 From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 18:50:12 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 C35DB16A420 for ; Thu, 18 Aug 2005 18:50:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E15443D46 for ; Thu, 18 Aug 2005 18:50:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7IIoCN1049893 for ; Thu, 18 Aug 2005 18:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7IIoCFC049892; Thu, 18 Aug 2005 18:50:12 GMT (envelope-from gnats) Date: Thu, 18 Aug 2005 18:50:12 GMT Message-Id: <200508181850.j7IIoCFC049892@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Giorgos Keramidas Cc: Subject: Re: misc/85087: send-pr should prefer to use HTTP, rather than mail X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Giorgos Keramidas List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 18:50:13 -0000 The following reply was made to PR misc/85087; it has been noted by GNATS. From: Giorgos Keramidas To: Bob Ippolito Cc: bug-followup@freebsd.org Subject: Re: misc/85087: send-pr should prefer to use HTTP, rather than mail Date: Thu, 18 Aug 2005 21:41:42 +0300 On 2005-08-18 08:31, Bob Ippolito wrote: >On Aug 18, 2005, at 3:54 AM, Giorgos Keramidas wrote: >>On 2005-08-18 12:02, Bob Ippolito wrote: >>> I had attempted to send-pr last week, but it never went through. It >>> turns out that the freebsd.org MTA won't accept mail from my server: >>> >>> Aug 11 23:45:57 go sm-mta[38236]: j7BCiYG9019787: >>> to=, ctladdr= >>> (1001/1001), delay=18:01:22, xdelay=00:00:01, mailer=esmtp, >>> pri=3362068, relay=mx1.freebsd.org. [216.136.204.125], dsn=4.2.0, >>> stat=Deferred: 450 Client host rejected: cannot find your hostname, >>> [216.200.21.218] >>> >> >> The problem is one that can be solved by properly configuring your DNS >> setup. There is a very good reason why the MX of FreeBSD.org >> refuses to >> accept email from unresolvable addresses. It saves us from a ton of >> spam mail :-) > > Users do not necessarily have control over their reverse DNS. The ISP/provider of the addresses does though. > Yes, I could go and fix my reverse DNS for this particular server, but > I don't have a pressing need to and it's not really worth the > administration hassle just to report FreeBSD issues. These machines > are not on the internet to send or receive mail, and there's no other > practical reason for reverse DNS to be set up properly. You don't need a real forward & reverse address for *all* of your machines. Just the one that acts as a mail gateway. If it's too much trouble, you can always use the send-pr "save" facility and copy the bug report to a machine that *can* send messages. > Bugs should be easy to report, and this isn't making it easy. I'm honestly sorry that you think it is difficult in the first place. Unblocking all the broken DNS setups out there just for the sake of the bugs database is probably more dangerous though. The spam messages that reach the lists, for example, would probably increase a lot. > Knowing that send-pr isn't going to work from any servers sitting in > that colo, and that send-pr doesn't have an easy way to ship reports > to a machine that does, I'm unlikely to report bugs at all... It does. You can save the bug report *after* completing it as usual with send-pr, and then move the report "template" to another machine. Send that template to the address specified in the mail headers of the PR template, and all will work fine. > especially if they have attachments that I do not have on my > workstation. The PR that was lost in the MTA queue due to this issue > was actually an enhancement for a port, and this kind of response is > really not encouraging me to bother with contributing to FreeBSD. I know what you are saying. I'm just very reluctant to ask postmaster@ about removing the DNS restriction, since it's there for a good reason. > I'm not saying that you should relax the MTA rules, I'm saying that > there should be an alternate path for send-pr. One without an image- > based captcha, of course. That path would be then eligible for spammer attacks. The bugs database has been attacked more than once by annoying trolls posting garbage as "bug reports". We can't have that, so it's not a good idea to remove the captcha. If FreeBSD really means something to you, is it too much to ask that you either use the web interface (with the existing captcha parts) or set up your DNS properly, so that email can be sent directly? - Giorgos From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 19:00:37 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 74E2616A41F for ; Thu, 18 Aug 2005 19:00:37 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1F8143D58 for ; Thu, 18 Aug 2005 19:00:35 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7IJ0ZfC050155 for ; Thu, 18 Aug 2005 19:00:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7IJ0Z9b050146; Thu, 18 Aug 2005 19:00:35 GMT (envelope-from gnats) Resent-Date: Thu, 18 Aug 2005 19:00:35 GMT Resent-Message-Id: <200508181900.j7IJ0Z9b050146@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, Marcus Grando Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A01B16A41F for ; Thu, 18 Aug 2005 19:00:16 +0000 (GMT) (envelope-from root@marcus.grupos.com.br) Received: from mail.grupos.com.br (mail.grupos.com.br [200.203.183.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 812D843D48 for ; Thu, 18 Aug 2005 19:00:15 +0000 (GMT) (envelope-from root@marcus.grupos.com.br) Received: from corp.grupos.com.br (unknown [150.162.166.55]) by mail.grupos.com.br (Postfix) with ESMTP id C6EDC11E2F5 for ; Thu, 18 Aug 2005 16:00:13 -0300 (BRT) Received: from marcus.grupos.com.br (unknown [150.162.166.51]) by corp.grupos.com.br (Postfix) with ESMTP id A592D5612 for ; Thu, 18 Aug 2005 16:00:13 -0300 (BRT) Received: from marcus.grupos.com.br (localhost [127.0.0.1]) by marcus.grupos.com.br (8.13.4/8.13.4) with ESMTP id j7IJ0DqG047353 for ; Thu, 18 Aug 2005 16:00:13 -0300 (BRT) (envelope-from root@marcus.grupos.com.br) Received: (from root@localhost) by marcus.grupos.com.br (8.13.4/8.13.4/Submit) id j7IJ0Ci6047352; Thu, 18 Aug 2005 16:00:12 -0300 (BRT) (envelope-from root) Message-Id: <200508181900.j7IJ0Ci6047352@marcus.grupos.com.br> Date: Thu, 18 Aug 2005 16:00:12 -0300 (BRT) From: Marcus Grando To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: conf/85096: Does not include empty dirs in ports.tgz X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcus Grando List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 19:00:37 -0000 >Number: 85096 >Category: conf >Synopsis: Does not include empty dirs in ports.tgz >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Aug 18 19:00:35 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Marcus Grando >Release: FreeBSD 6.0-BETA2 i386 >Organization: Grupos Internet S/A >Environment: System: FreeBSD marcus.grupos.com.br 6.0-BETA2 FreeBSD 6.0-BETA2 #11: Wed Aug 17 10:07:10 BRT 2005 root@marcus.grupos.com.br:/usr/obj/usr/src/sys/MARCUS i386 >Description: - Does not include empty dirs in ports.tgz >How-To-Repeat: >Fix: --- release::Makefile.patch begins here --- --- release/Makefile.orig Mon Jul 11 13:06:30 2005 +++ release/Makefile Thu Aug 18 15:47:05 2005 @@ -651,8 +651,10 @@ @rm -rf ${RD}/dists/ports/ports* @mkdir -p ${RD}/dists/ports @echo rolling ports/ports tarball - @tar --exclude CVS --exclude 'ports/distfiles/*' \ + @find ports -type d -empty | grep -v distfiles > empty.dirs + @tar --exclude CVS --exclude 'ports/distfiles/*' -X empty.dirs \ -czf ${RD}/dists/ports/ports.tgz -C /usr ports + @rm empty.dirs @cp ${.CURDIR}/scripts/ports-install.sh ${RD}/dists/ports/install.sh @(cd ${RD}/dists/ports; \ rm -f CHECKSUM.MD5; \ --- release::Makefile.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 19:50:27 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 35F1C16A41F for ; Thu, 18 Aug 2005 19:50:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4AAB43D45 for ; Thu, 18 Aug 2005 19:50:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7IJoQZj060208 for ; Thu, 18 Aug 2005 19:50:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7IJoQWt060207; Thu, 18 Aug 2005 19:50:26 GMT (envelope-from gnats) Date: Thu, 18 Aug 2005 19:50:26 GMT Message-Id: <200508181950.j7IJoQWt060207@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Sergey Matveychuk Cc: Subject: Re: bin/85090: [patch] add memalign() and posix_memalign() functions X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sergey Matveychuk List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 19:50:27 -0000 The following reply was made to PR bin/85090; it has been noted by GNATS. From: Sergey Matveychuk To: bug-followup@FreeBSD.org, sem@FreeBSD.org Cc: Subject: Re: bin/85090: [patch] add memalign() and posix_memalign() functions Date: Thu, 18 Aug 2005 23:45:34 +0400 .Dd should be bumped in man page. I did not know about this. -- Sem. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 20:41:45 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 B334016A420; Thu, 18 Aug 2005 20:41:45 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7363D43D45; Thu, 18 Aug 2005 20:41:45 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from freefall.freebsd.org (cperciva@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7IKfjGV068041; Thu, 18 Aug 2005 20:41:45 GMT (envelope-from cperciva@freefall.freebsd.org) Received: (from cperciva@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7IKfjSc068037; Thu, 18 Aug 2005 20:41:45 GMT (envelope-from cperciva) Date: Thu, 18 Aug 2005 20:41:45 GMT From: Colin Percival Message-Id: <200508182041.j7IKfjSc068037@freefall.freebsd.org> To: marcus@corp.grupos.com.br, cperciva@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: conf/85096: Does not include empty dirs in ports.tgz X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 20:41:45 -0000 Synopsis: Does not include empty dirs in ports.tgz State-Changed-From-To: open->closed State-Changed-By: cperciva State-Changed-When: Thu Aug 18 20:41:23 GMT 2005 State-Changed-Why: Submitter agrees that this PR can be closed. http://www.freebsd.org/cgi/query-pr.cgi?pr=85096 From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 21:20:16 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 3DCEA16A41F for ; Thu, 18 Aug 2005 21:20:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D22F943D46 for ; Thu, 18 Aug 2005 21:20:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7ILKFfg073585 for ; Thu, 18 Aug 2005 21:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7ILKFuZ073584; Thu, 18 Aug 2005 21:20:15 GMT (envelope-from gnats) Date: Thu, 18 Aug 2005 21:20:15 GMT Message-Id: <200508182120.j7ILKFuZ073584@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Stefan Farfeleder Cc: Subject: Re: bin/85090: [patch] add memalign() and posix_memalign() functions X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Stefan Farfeleder List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 21:20:16 -0000 The following reply was made to PR bin/85090; it has been noted by GNATS. From: Stefan Farfeleder To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/85090: [patch] add memalign() and posix_memalign() functions Date: Thu, 18 Aug 2005 23:17:24 +0200 - memalign() should be inside __BSD_VISIBLE. - Do we really need memalign()? It looks rather obsolete. From owner-freebsd-bugs@FreeBSD.ORG Thu Aug 18 22:30:20 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 A49E816A41F for ; Thu, 18 Aug 2005 22:30:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21F0843D60 for ; Thu, 18 Aug 2005 22:30:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7IMUG5H082565 for ; Thu, 18 Aug 2005 22:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7IMUGYL082564; Thu, 18 Aug 2005 22:30:16 GMT (envelope-from gnats) Resent-Date: Thu, 18 Aug 2005 22:30:16 GMT Resent-Message-Id: <200508182230.j7IMUGYL082564@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, Toby Peterson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF02C16A41F for ; Thu, 18 Aug 2005 22:27:50 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7876643D45 for ; Thu, 18 Aug 2005 22:27:50 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id j7IMRoCY082831 for ; Thu, 18 Aug 2005 22:27:50 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j7IMRoxZ082828; Thu, 18 Aug 2005 22:27:50 GMT (envelope-from nobody) Message-Id: <200508182227.j7IMRoxZ082828@www.freebsd.org> Date: Thu, 18 Aug 2005 22:27:50 GMT From: Toby Peterson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: bin/85099: POSIX violation in split(1) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2005 22:30:20 -0000 >Number: 85099 >Category: bin >Synopsis: POSIX violation in split(1) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Aug 18 22:30:16 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Toby Peterson >Release: HEAD >Organization: Apple Computer, Inc. >Environment: n/a >Description: split(1) violates the POSIX specification, in that it will use prefixes x-z by default. POSIX only allows x. >How-To-Repeat: Run split, observe that i'll create 3 times more files than POSIX allows. >Fix: Index: split.1 =================================================================== RCS file: /home/ncvs/src/usr.bin/split/split.1,v retrieving revision 1.15 diff -u -r1.15 split.1 --- split.1 17 Jan 2005 07:44:29 -0000 1.15 +++ split.1 18 Aug 2005 22:25:59 -0000 @@ -111,8 +111,8 @@ If the .Ar name argument is not specified, the file is split into lexically ordered -files named with prefixes in the range of -.Dq Li x-z +files named with the prefix +.Dq Li x and with suffixes as above. .Sh ENVIRONMENT The @@ -139,12 +139,10 @@ command appeared in .At v3 . .Sh BUGS -For historical reasons, if you specify -.Ar name , +For historical reasons, .Nm can only create 676 separate files. -The default naming convention allows 2028 separate files. The .Fl a option can be used to work around this limitation. Index: split.c =================================================================== RCS file: /home/ncvs/src/usr.bin/split/split.c,v retrieving revision 1.15 diff -u -r1.15 split.c --- split.c 11 Jul 2004 14:44:23 -0000 1.15 +++ split.c 18 Aug 2005 22:25:59 -0000 @@ -319,15 +319,8 @@ if ((maxfiles *= 26) <= 0) errx(EX_USAGE, "suffix is too long (max %ld)", i); - /* - * Hack to increase max files; original code wandered through - * magic characters. - */ if (fnum == maxfiles) { - if (!defname || fname[0] == 'z') - errx(EX_DATAERR, "too many files"); - ++fname[0]; - fnum = 0; + errx(EX_DATAERR, "too many files"); } /* Generate suffix of sufflen letters */ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 01:20:13 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 3128416A41F for ; Fri, 19 Aug 2005 01:20:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5ADB43D48 for ; Fri, 19 Aug 2005 01:20:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7J1KCeU004969 for ; Fri, 19 Aug 2005 01:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7J1KCXG004968; Fri, 19 Aug 2005 01:20:12 GMT (envelope-from gnats) Resent-Date: Fri, 19 Aug 2005 01:20:12 GMT Resent-Message-Id: <200508190120.j7J1KCXG004968@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, Arthur Hartwig Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A0B416A41F for ; Fri, 19 Aug 2005 01:14:13 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF5CE43D46 for ; Fri, 19 Aug 2005 01:14:12 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id j7J1ECRu008152 for ; Fri, 19 Aug 2005 01:14:12 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j7J1ECPl008149; Fri, 19 Aug 2005 01:14:12 GMT (envelope-from nobody) Message-Id: <200508190114.j7J1ECPl008149@www.freebsd.org> Date: Fri, 19 Aug 2005 01:14:12 GMT From: Arthur Hartwig To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: kern/85106: The ICH7 smb interface is not recognised X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 01:20:13 -0000 >Number: 85106 >Category: kern >Synopsis: The ICH7 smb interface is not recognised >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Aug 19 01:20:12 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Arthur Hartwig >Release: 5.4 >Organization: Nokia >Environment: FreeBSD oz-net-11.iprg.nokia.com 5.4-RELEASE FreeBSD 5.4-RELEASE #8: Thu Aug 18 16:46:30 EST 2005 hartwig@oz-net-11.iprg.nokia.com:/usr/obj/usr/src/sys/oz-net-11 i386 >Description: The ICH7 SMB interface is not recognised >How-To-Repeat: Boot FreeBSD 5.4 with ichsmb support on any motherboard with Intel 945 or 955 chipset. >Fix: In dev/ichsmb/ichsmb_pci.c, in the section /* PCI unique identifiers */ add #define ID_82801GB 0x27da8086 and in the function ichsmb_pci_probe add another case labvl and code Case ID_82801GB: device_set_desc(dev, "Intel 82801GB (ICH7) SMBus controller"); break; I have tested this using a couple of programs to see what devices exist on the SMBus and dumping the data in the SPD eeproms on the two DRAM sticks on a Gigabyte GA-8I945P-G motherboard which uses the Intel 945 chipset which includes the ICH7. The ICH6 SMB is also unrecognised. Its PCI ID is 0x266A8086 and chip code is 82801FB and the driver will probably work with the ICH6 SMB by just changing it to recognise the ICH6 as described above for the ICH7. I am not able to test the ICH6 SMB. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 04:00:42 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 A8C3C16A41F for ; Fri, 19 Aug 2005 04:00:42 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7380443D46 for ; Fri, 19 Aug 2005 04:00:42 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7J40gnL022785 for ; Fri, 19 Aug 2005 04:00:42 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7J40gYO022784; Fri, 19 Aug 2005 04:00:42 GMT (envelope-from gnats) Date: Fri, 19 Aug 2005 04:00:42 GMT Message-Id: <200508190400.j7J40gYO022784@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Andrey V. Elsukov" Cc: Subject: Re: kern/84836: Fatal trap on 6.0-BETA2 when use SC_PIXEL_MODE, SHED_ULE, VESA_800x600 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Andrey V. Elsukov" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 04:00:42 -0000 The following reply was made to PR kern/84836; it has been noted by GNATS. From: "Andrey V. Elsukov" To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/84836: Fatal trap on 6.0-BETA2 when use SC_PIXEL_MODE, SHED_ULE, VESA_800x600 Date: Fri, 19 Aug 2005 07:59:56 +0400 This is a multi-part message in MIME format. --------------060902090904070000040501 Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Andrey V. Elsukov wrote: >>Environment: FreeBSD 6.0-BETA2, 5.4-STABLE. >>Fix: i have make a patch. -- WBR, Andrey V. Elsukov --------------060902090904070000040501 Content-Type: text/plain; name="scvidctl.c.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="scvidctl.c.diff" --- src/sys/dev/syscons/scvidctl.c.orig Thu Aug 18 19:38:24 2005 +++ src/sys/dev/syscons/scvidctl.c Thu Aug 18 19:38:29 2005 @@ -412,6 +412,7 @@ scp->yoff = (scp->ypixel/fontsize - ysize)/2; scp->font = font; scp->font_size = fontsize; + scp->font_width = 8; /* allocate buffers */ sc_alloc_scr_buffer(scp, TRUE, TRUE); --------------060902090904070000040501-- From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 04:06:59 2005 Return-Path: X-Original-To: FreeBSD-bugs@FreeBSD.org 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 9AD2716A41F for ; Fri, 19 Aug 2005 04:06:59 +0000 (GMT) (envelope-from bu7cher@yandex.ru) Received: from mail.rdu.kirov.ru (ns.rdu.kirov.ru [217.9.151.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB51943D46 for ; Fri, 19 Aug 2005 04:06:58 +0000 (GMT) (envelope-from bu7cher@yandex.ru) Received: from kirov.so-cdu.ru (kirov [172.21.81.1]) by mail.rdu.kirov.ru (Postfix) with ESMTP id A824A115644 for ; Fri, 19 Aug 2005 08:06:57 +0400 (MSD) Received: from kirov.so-cdu.ru (localhost [127.0.0.1]) by rdu.kirov.ru (Postfix) with SMTP id 96E8315C37 for ; Fri, 19 Aug 2005 08:06:57 +0400 (MSD) Received: by rdu.kirov.ru (Postfix, from userid 1014) id 38C4715C3B; Fri, 19 Aug 2005 08:06:57 +0400 (MSD) Received: from [172.21.81.52] (elsukov.kirov.so-cdu.ru [172.21.81.52]) by rdu.kirov.ru (Postfix) with ESMTP id 10D6415383 for ; Fri, 19 Aug 2005 08:06:57 +0400 (MSD) Message-ID: <43055ACD.8050300@yandex.ru> Date: Fri, 19 Aug 2005 08:06:37 +0400 From: "Andrey V. Elsukov" User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD-bugs@FreeBSD.org References: <200508120846.j7C8kesM082593@rdu.kirov.ru> In-Reply-To: <200508120846.j7C8kesM082593@rdu.kirov.ru> Content-Type: multipart/mixed; boundary="------------030000050404010505050303" Cc: Subject: Re: kern/84836: Fatal trap on 6.0-BETA2 when use SC_PIXEL_MODE, SHED_ULE, VESA_800x600 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 04:06:59 -0000 This is a multi-part message in MIME format. --------------030000050404010505050303 Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Andrey V. Elsukov wrote: >>Environment: FreeBSD 6.0-BETA2, 5.4-STABLE. >>Fix: i have make a patch. -- WBR, Andrey V. Elsukov --------------030000050404010505050303 Content-Type: text/plain; name="scvidctl.c.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="scvidctl.c.diff" --- src/sys/dev/syscons/scvidctl.c.orig Thu Aug 18 19:38:24 2005 +++ src/sys/dev/syscons/scvidctl.c Thu Aug 18 19:38:29 2005 @@ -412,6 +412,7 @@ scp->yoff = (scp->ypixel/fontsize - ysize)/2; scp->font = font; scp->font_size = fontsize; + scp->font_width = 8; /* allocate buffers */ sc_alloc_scr_buffer(scp, TRUE, TRUE); --------------030000050404010505050303-- From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 06:40:19 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 937B416A41F for ; Fri, 19 Aug 2005 06:40:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 065EC43D48 for ; Fri, 19 Aug 2005 06:40:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7J6eI4F048023 for ; Fri, 19 Aug 2005 06:40:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7J6eIJb048022; Fri, 19 Aug 2005 06:40:18 GMT (envelope-from gnats) Resent-Date: Fri, 19 Aug 2005 06:40:18 GMT Resent-Message-Id: <200508190640.j7J6eIJb048022@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, dirk.meyer@dinoex.sub.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D514716A41F for ; Fri, 19 Aug 2005 06:38:37 +0000 (GMT) (envelope-from dm@home.dinoex.sub.de) Received: from uucp.dinoex.sub.de (uucp.dinoex.sub.de [194.45.71.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B7D943D5F for ; Fri, 19 Aug 2005 06:38:34 +0000 (GMT) (envelope-from dm@home.dinoex.sub.de) Received: from home.dinoex.sub.de (dm@home.dinoex.sub.de [194.45.71.22]) by uucp.dinoex.sub.de (8.13.4/8.13.3) with ESMTP id j7J6cS0i020759 for ; Fri, 19 Aug 2005 08:38:28 +0200 (CEST) (envelope-from dm@home.dinoex.sub.de) Received: (from dm@localhost) by home.dinoex.sub.de (8.13.4/8.13.3/Submit) id j7J6cU01087272; Fri, 19 Aug 2005 08:38:30 +0200 (CEST) (envelope-from dm) Message-Id: <200508190638.j7J6cU01087272@home.dinoex.sub.de> Date: Fri, 19 Aug 2005 08:38:30 +0200 (CEST) From: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/85115: byacc generates uncompileable file X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dirk.meyer@dinoex.sub.org List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 06:40:19 -0000 >Number: 85115 >Category: bin >Synopsis: byacc generates uncompileable file >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 19 06:40:18 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 5.4-STABLE 6.0-BETA1 >Organization: privat >Environment: byacc >Description: when ports/lang/objc compiled This reults into a compiler error: byacc -d yacc.ym byacc: 6 shift/reduce conflicts byacc: 48 reduce/reduce conflicts cp -p y.tab.h yacc.h cp -p y.tab.c yacc.m /data/image/usr/ports/current/objc/work/bin/objc -c -DNDEBUG -O2 -I. -noI -I../../include/objcrt -I../../include/objpak -I../oclib yacc.m yacc.m:6: fatal: syntax error "static" Portable Object Compiler 3.1.33 (c) 1997, 98, 99, 2000, 01, 02. Distributed under the terms of the GNU LGPL. *** Error code 1 byacc generates some incorectd lines: #include #ifndef lint #ifdef __unused __unused #endif static char const yyrcsid[] = "$FreeBSD: src/usr.bin/yacc/skeleton.c,v 1.37 2003/02/12 18:03:55 davidc Exp $"; #endif >How-To-Repeat: build ports/lang/objc >Fix: Please check and see why byacc generates "__unused" Workaround: CFLAGS += -Dlint to avoid the lines generated. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 11:50:05 2005 Return-Path: X-Original-To: freebsd-bugs@freebsd.org 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 E651F16A41F; Fri, 19 Aug 2005 11:50:05 +0000 (GMT) (envelope-from kernel@real-sys.net) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A70043D48; Fri, 19 Aug 2005 11:50:03 +0000 (GMT) (envelope-from kernel@real-sys.net) Received: from [212.227.126.203] (helo=mrvnet.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1E65Nq-0006Un-00; Fri, 19 Aug 2005 13:50:02 +0200 Received: from [172.23.4.130] (helo=config3.kundenserver.de) by mrvnet.kundenserver.de with esmtp (Exim 3.35 #1) id 1E65Nq-0001An-00; Fri, 19 Aug 2005 13:50:02 +0200 Received: from www-data by config3.kundenserver.de with local (Exim 3.35 #1 (Debian)) id 1E65Nq-0001Qn-00; Fri, 19 Aug 2005 13:50:02 +0200 To: From: Message-Id: <27643936$11244517544305c5aac8a032.64403189@config3.schlund.de> X-Binford: 6100 (more power) X-Originating-From: 27643936 X-Mailer: Webmail X-Routing: FR X-Received: from config3 by 213.36.52.200 with HTTP id 27643936 for freebsd-bugs@FreeBSD.org; Fri, 19 Aug 2005 13:48:01 +0200 Content-Type: text/plain; charset="iso-8859-1" Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-Priority: 3 Date: Fri, 19 Aug 2005 13:48:01 +0200 X-Provags-ID: kundenserver.de abuse@kundenserver.de ident:@172.23.4.130 Cc: sound@FreeBSD.org Subject: 82801FB/FR/FW/FRW Intel High Deficition Audio Controller X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 11:50:06 -0000 I got a problem with this driver. It's not recognized. Indeed, If I load all the sound drivers or if I compile a new kernel with the generic drivers, that's the same. pciconf -lv gives me this information : hdr=0x00 vendor = 'Intel Corporation' device = '82801FB/FR/FW/FRW Intel High Deficition Audio Controller' class = multimedia That's too bad that I can't get audio (and by the way watching movies or more) on my new laptop. Thanks in advance From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 12:21:43 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 9589216A41F; Fri, 19 Aug 2005 12:21:43 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 544F843D46; Fri, 19 Aug 2005 12:21:43 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7JCLh9O092111; Fri, 19 Aug 2005 12:21:43 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7JCLh0E092107; Fri, 19 Aug 2005 12:21:43 GMT (envelope-from flz) Date: Fri, 19 Aug 2005 12:21:43 GMT From: Florent Thoumie Message-Id: <200508191221.j7JCLh0E092107@freefall.freebsd.org> To: flz@FreeBSD.org, freebsd-bugs@FreeBSD.org, krion@FreeBSD.org Cc: Subject: Re: bin/82269: [patch] cpan modules cause pkg_add spam X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 12:21:43 -0000 Synopsis: [patch] cpan modules cause pkg_add spam Responsible-Changed-From-To: freebsd-bugs->krion Responsible-Changed-By: flz Responsible-Changed-When: Fri Aug 19 12:21:18 GMT 2005 Responsible-Changed-Why: Bug krion with pkg_install PRs. http://www.freebsd.org/cgi/query-pr.cgi?pr=82269 From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 12:22:16 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 DE0DB16A41F; Fri, 19 Aug 2005 12:22:16 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B54043D48; Fri, 19 Aug 2005 12:22:16 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7JCMGFX092161; Fri, 19 Aug 2005 12:22:16 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7JCMGjQ092157; Fri, 19 Aug 2005 12:22:16 GMT (envelope-from flz) Date: Fri, 19 Aug 2005 12:22:16 GMT From: Florent Thoumie Message-Id: <200508191222.j7JCMGjQ092157@freefall.freebsd.org> To: flz@FreeBSD.org, freebsd-bugs@FreeBSD.org, krion@FreeBSD.org Cc: Subject: Re: bin/75742: [patch] pkg_add does not honour prefix for dependency packages X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 12:22:17 -0000 Synopsis: [patch] pkg_add does not honour prefix for dependency packages Responsible-Changed-From-To: freebsd-bugs->krion Responsible-Changed-By: flz Responsible-Changed-When: Fri Aug 19 12:22:06 GMT 2005 Responsible-Changed-Why: Bug krion with pkg_install PRs. http://www.freebsd.org/cgi/query-pr.cgi?pr=75742 From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 12:23:39 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 8C1C016A41F; Fri, 19 Aug 2005 12:23:39 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A8B843D46; Fri, 19 Aug 2005 12:23:39 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7JCNdq9092217; Fri, 19 Aug 2005 12:23:39 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7JCNdcx092213; Fri, 19 Aug 2005 12:23:39 GMT (envelope-from flz) Date: Fri, 19 Aug 2005 12:23:39 GMT From: Florent Thoumie Message-Id: <200508191223.j7JCNdcx092213@freefall.freebsd.org> To: flz@FreeBSD.org, freebsd-bugs@FreeBSD.org, krion@FreeBSD.org Cc: Subject: Re: bin/52826: Feature Request: Adding Timestamps to pkg info upon pkg_add X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 12:23:39 -0000 Synopsis: Feature Request: Adding Timestamps to pkg info upon pkg_add Responsible-Changed-From-To: freebsd-bugs->krion Responsible-Changed-By: flz Responsible-Changed-When: Fri Aug 19 12:23:23 GMT 2005 Responsible-Changed-Why: Bug krion with pkg_install PRs. http://www.freebsd.org/cgi/query-pr.cgi?pr=52826 From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 12:26:54 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 7B31516A422; Fri, 19 Aug 2005 12:26:54 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3583A43D45; Fri, 19 Aug 2005 12:26:54 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7JCQsek092315; Fri, 19 Aug 2005 12:26:54 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7JCQrVW092311; Fri, 19 Aug 2005 12:26:53 GMT (envelope-from flz) Date: Fri, 19 Aug 2005 12:26:53 GMT From: Florent Thoumie Message-Id: <200508191226.j7JCQrVW092311@freefall.freebsd.org> To: tbridges@sandvine.com, flz@FreeBSD.org, freebsd-bugs@FreeBSD.org, krion@FreeBSD.org Cc: Subject: Re: bin/43596: pkg_add does not propogate 'remote' to dependent installs X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 12:26:54 -0000 Synopsis: pkg_add does not propogate 'remote' to dependent installs State-Changed-From-To: open->feedback State-Changed-By: flz State-Changed-When: Fri Aug 19 12:25:17 GMT 2005 State-Changed-Why: I didn't remember such a behavior 3 years back. I'm quite sure it's not a problem anymore now. Could you confirm the problem doesn't exists with current pkg_install ? Responsible-Changed-From-To: freebsd-bugs->krion Responsible-Changed-By: flz Responsible-Changed-When: Fri Aug 19 12:25:17 GMT 2005 Responsible-Changed-Why: Bug krion with pkg_install PRs. http://www.freebsd.org/cgi/query-pr.cgi?pr=43596 From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 12:35:00 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 7C5F816A41F; Fri, 19 Aug 2005 12:35:00 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F0C043D46; Fri, 19 Aug 2005 12:35:00 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7JCZ0Vv093825; Fri, 19 Aug 2005 12:35:00 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7JCZ01p093821; Fri, 19 Aug 2005 12:35:00 GMT (envelope-from flz) Date: Fri, 19 Aug 2005 12:35:00 GMT From: Florent Thoumie Message-Id: <200508191235.j7JCZ01p093821@freefall.freebsd.org> To: flz@FreeBSD.org, freebsd-bugs@FreeBSD.org, krion@FreeBSD.org Cc: Subject: Re: bin/43368: pkg_create fails if target directory does not exist X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 12:35:00 -0000 Synopsis: pkg_create fails if target directory does not exist Responsible-Changed-From-To: freebsd-bugs->krion Responsible-Changed-By: flz Responsible-Changed-When: Fri Aug 19 12:32:54 GMT 2005 Responsible-Changed-Why: Bug krion with pkg_install PRs. http://www.freebsd.org/cgi/query-pr.cgi?pr=43368 From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 12:37:09 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 E9B2916A41F; Fri, 19 Aug 2005 12:37:09 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6FAC43D48; Fri, 19 Aug 2005 12:37:09 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7JCb9qR093896; Fri, 19 Aug 2005 12:37:09 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7JCb9WE093892; Fri, 19 Aug 2005 12:37:09 GMT (envelope-from flz) Date: Fri, 19 Aug 2005 12:37:09 GMT From: Florent Thoumie Message-Id: <200508191237.j7JCb9WE093892@freefall.freebsd.org> To: flz@FreeBSD.org, freebsd-bugs@FreeBSD.org, krion@FreeBSD.org Cc: Subject: Re: bin/42609: pkg_info -qg doesn't handle missing files well X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 12:37:10 -0000 Synopsis: pkg_info -qg doesn't handle missing files well Responsible-Changed-From-To: freebsd-bugs->krion Responsible-Changed-By: flz Responsible-Changed-When: Fri Aug 19 12:36:50 GMT 2005 Responsible-Changed-Why: Bug krion with pkg_install PRs. http://www.freebsd.org/cgi/query-pr.cgi?pr=42609 From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 12:40:03 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 EAC0016A41F; Fri, 19 Aug 2005 12:40:03 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9BBC43D46; Fri, 19 Aug 2005 12:40:03 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7JCe366093964; Fri, 19 Aug 2005 12:40:03 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7JCe3aq093960; Fri, 19 Aug 2005 12:40:03 GMT (envelope-from flz) Date: Fri, 19 Aug 2005 12:40:03 GMT From: Florent Thoumie Message-Id: <200508191240.j7JCe3aq093960@freefall.freebsd.org> To: flz@FreeBSD.org, freebsd-bugs@FreeBSD.org, krion@FreeBSD.org Cc: Subject: Re: bin/42018: pkg_info with PKG_PATH searches through tarred pkgs X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 12:40:04 -0000 Synopsis: pkg_info with PKG_PATH searches through tarred pkgs Responsible-Changed-From-To: freebsd-bugs->krion Responsible-Changed-By: flz Responsible-Changed-When: Fri Aug 19 12:39:52 GMT 2005 Responsible-Changed-Why: Bug krion with pkg_install PRs. http://www.freebsd.org/cgi/query-pr.cgi?pr=42018 From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 12:41:09 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 4F3E216A41F; Fri, 19 Aug 2005 12:41:09 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F116143D45; Fri, 19 Aug 2005 12:41:08 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7JCf8O1094142; Fri, 19 Aug 2005 12:41:08 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7JCf8SQ094138; Fri, 19 Aug 2005 12:41:08 GMT (envelope-from flz) Date: Fri, 19 Aug 2005 12:41:08 GMT From: Florent Thoumie Message-Id: <200508191241.j7JCf8SQ094138@freefall.freebsd.org> To: flz@FreeBSD.org, freebsd-bugs@FreeBSD.org, krion@FreeBSD.org Cc: Subject: Re: bin/37715: "pkg_info -g package_name_version" fail to checksum if the file is a symbolic link. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 12:41:09 -0000 Synopsis: "pkg_info -g package_name_version" fail to checksum if the file is a symbolic link. Responsible-Changed-From-To: freebsd-bugs->krion Responsible-Changed-By: flz Responsible-Changed-When: Fri Aug 19 12:40:52 GMT 2005 Responsible-Changed-Why: Bug krion with pkg_install PRs. http://www.freebsd.org/cgi/query-pr.cgi?pr=37715 From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 12:57:16 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 5B73B16A420; Fri, 19 Aug 2005 12:57:16 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17A9943D53; Fri, 19 Aug 2005 12:57:16 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from freefall.freebsd.org (vs@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7JCvF0Y094608; Fri, 19 Aug 2005 12:57:15 GMT (envelope-from vs@freefall.freebsd.org) Received: (from vs@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7JCvBZs094602; Fri, 19 Aug 2005 12:57:11 GMT (envelope-from vs) Date: Fri, 19 Aug 2005 12:57:11 GMT From: Volker Stolz Message-Id: <200508191257.j7JCvBZs094602@freefall.freebsd.org> To: ssa@avtf.org, vs@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/58893: OPIE implementation bug X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 12:57:16 -0000 Synopsis: OPIE implementation bug State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Fri Aug 19 12:54:46 GMT 2005 State-Changed-Why: This patch mentions the issues in bin/44808 and bin/61701. While only the former contains more details and a patch on this issue, I'll use this opportunity to coalesce those three PRs into just two. Thanks for your submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=58893 From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 14:50:12 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 0C22916A41F for ; Fri, 19 Aug 2005 14:50:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5640C43D46 for ; Fri, 19 Aug 2005 14:50:11 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7JEoBG2008596 for ; Fri, 19 Aug 2005 14:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7JEoBvx008595; Fri, 19 Aug 2005 14:50:11 GMT (envelope-from gnats) Resent-Date: Fri, 19 Aug 2005 14:50:11 GMT Resent-Message-Id: <200508191450.j7JEoBvx008595@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, Dave Baukus Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1ED8016A41F for ; Fri, 19 Aug 2005 14:45:10 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD18943D45 for ; Fri, 19 Aug 2005 14:45:09 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id j7JEj9tv097276 for ; Fri, 19 Aug 2005 14:45:09 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j7JEXrtI095180; Fri, 19 Aug 2005 14:33:53 GMT (envelope-from nobody) Message-Id: <200508191433.j7JEXrtI095180@www.freebsd.org> Date: Fri, 19 Aug 2005 14:33:53 GMT From: Dave Baukus To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: kern/85123: Improper serialization in iir_ioctl() allows iir_intr() to reference freed memory - CRASH X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 14:50:12 -0000 >Number: 85123 >Category: kern >Synopsis: Improper serialization in iir_ioctl() allows iir_intr() to reference freed memory - CRASH >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 19 14:50:10 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Dave Baukus >Release: bsd4.10 --> Bug still exists in TOB >Organization: Chiaro Networks >Environment: FreeBSD krakatoa.chiaro.com 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Wed Jul 13 16:46:34 CDT 2005 root@krakatoa.chiaro.com:/usr/src/sys/compile/KRAKATOA i386 >Description: In sys/dev/iir/iir_ctrl.c::iir_ioctl() there is the following code: switch (cmd) { case GDT_IOCTL_GENERAL: { gdt_ucmd_t *ucmd; struct gdt_softc *gdt; int lock; ucmd = (gdt_ucmd_t *)cmdarg; gdt = gdt_minor2softc(ucmd->io_node); if (gdt == NULL) return (ENXIO); lock = splcam(); TAILQ_INSERT_TAIL(&gdt->sc_ucmd_queue, ucmd, links); ucmd->complete_flag = FALSE; splx(lock); gdt_next(gdt); if (!ucmd->complete_flag) (void) tsleep((void *)ucmd, PCATCH | PRIBIO, "iirucw", 0); break; } If the command is not complete and tsleep() fails (by a pending signal) before iir_intr() can process the request then the memory malloced by the ioctl() system call will be freed, but the request is still referenced by the driver. Therefore, iir_intr() will process the request by accessing freed memory. If INVARIANTS are enabled (as we have here) then iir_intr() ends up passing a length of 0xdeadcode to bcopy: >From iir_intr(): case GDT_GCF_IOCTL: .. .. .. } else { cnt = ucmd->u.raw.sdlen; if (cnt != 0) bcopy(gccb->gc_scratch, ucmd->data, cnt); if (ucmd->u.raw.sense_len != 0) bcopy(gccb->gc_scratch, ucmd->data, cnt); } >From one of my crashes: (kgdb) set $UCMD=(gdt_ucmd_t *)$SCBS->gc_ucmd (kgdb) p *$UCMD $219 = {io_node = 0xc0de, service = 0xdead, timeout = 0xc05076a0, status = 0x1, info = 0x0, BoardNode = 0xc0ded8b2,CommandIndex = 0xc0dedead, pCode = 0xdead, u = {cache = {DeviceNo = 0xc0de, BlockNo = 0xc0dedead, BlockCnt = 0xc0dedead, DestAddr = 0xc0dedead}, ioctl = {param_size = 0xc0de, subfunc = 0xc0dedead, channel = 0xc0dedead, p_param = 0xc0dedead}, raw = {reserved = 0xc0de, direction = 0xc0dedead, mdisc_time = 0xc0dedead, mcon_time = 0xc0dedead, sdata = 0xc0dedead, sdlen = 0xc0dedead, clen = 0xc0dedead, cmd = "­ÞÞÀ­ÞÞÀ­ÞÞÀ", target = 0xad, lun = 0xde, bus = 0x1, priority = 0x0, sense_len = 0x0, sense_data = 0x0, link_p = 0x10}}, data = "\001\000\0013", '\000' , complete_flag = 0xcb16c400, links = { tqe_next = 0xcb9f9000, tqe_prev = 0x0}} =============== So the system crashes. I may be wrong on the entire sequence of events. Clearly, however, the tsleep() code is broken in iir_ioctl(); this is the only way I can explain the 2 system crashes I have seen in iir_intr() where bcopy() is called with some permutation of 0xdeadcode as the length. >How-To-Repeat: We have a raid status program that periodically polls the raid controler. Perhaps under load the hole I explained above can be exploited. 2 crashes in a year - its a small hole but its there. >Fix: Check the return of tsleep() and cleanup if it fails. Or loop until complete (ucmd->complete_flag) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Fri Aug 19 21:00:35 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 5BB8B16A41F for ; Fri, 19 Aug 2005 21:00:35 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D330C43D49 for ; Fri, 19 Aug 2005 21:00:34 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7JL0Y68059402 for ; Fri, 19 Aug 2005 21:00:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7JL0Y5H059401; Fri, 19 Aug 2005 21:00:34 GMT (envelope-from gnats) Resent-Date: Fri, 19 Aug 2005 21:00:34 GMT Resent-Message-Id: <200508192100.j7JL0Y5H059401@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, Garry Belka Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0729A16A421 for ; Fri, 19 Aug 2005 20:51:05 +0000 (GMT) (envelope-from garry@NetworkPhysics.COM) Received: from NetworkPhysics.COM (fw.networkphysics.com [205.158.104.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id A919043D45 for ; Fri, 19 Aug 2005 20:51:04 +0000 (GMT) (envelope-from garry@NetworkPhysics.COM) Received: from focus5.fractal.networkphysics.com (focus5.fractal.networkphysics.com [10.10.0.112]) by NetworkPhysics.COM (8.12.10/8.12.10) with ESMTP id j7JKo1gb027018 for ; Fri, 19 Aug 2005 13:51:04 -0700 (PDT) (envelope-from garry@NetworkPhysics.COM) Received: (from garry@localhost) by focus5.fractal.networkphysics.com (8.13.1/8.13.1/Submit) id j7INPEnG075206; Thu, 18 Aug 2005 16:25:14 -0700 (PDT) (envelope-from garry) Message-Id: <200508182325.j7INPEnG075206@focus5.fractal.networkphysics.com> Date: Thu, 18 Aug 2005 16:25:14 -0700 (PDT) From: Garry Belka To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/85137: [patch] pseudofs: a panic due to sleep with held mutex X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2005 21:00:35 -0000 >Number: 85137 >Category: kern >Synopsis: [patch] pseudofs: a panic due to sleep with held mutex >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Aug 19 21:00:33 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Garry Belka >Release: FreeBSD 5.4-RELEASE i386 >Organization: Network Physics >Environment: System: FreeBSD tempo.fractal.networkphysics.com NP-5.4-20050728 FreeBSD NP-5.4-20050728 #1: Thu Jul 28 15:28:58 PDT 2005 garry@focus5.fractal.networkphysics.com:/u1/k5/bb/FreeBSD/sys/i386/compile/NPUNI i386 >Description: We saw several panics of the same kind on different systems running 5.4-STABLE. The panic was in propagate_priority() and was ultimately traced to vget() call in pfs_vncache_alloc(). vget() is called under global pfs mutex. When vget() sleeps, propagate_priority() in a different thread comes across a sleeping thread that owns a blocked mutex, and that causes a panic. >How-To-Repeat: We saw these panics once every several days per machine in intensive testing scenario under our load. I do not know how to reproduce it easily. >Fix: a tentative patch for 5.4-STABLE is attached. In addition to a fix for panic, it includes changes to switch to LIST_*() macros instead of directly manipulating queue pointers. I'd be most interested to hear opinion of people experienced with vfs whether this patch is suitable or what problems they see with it. In order to apply it to 6.0, I think it might be sufficient to uncomment XXX-- comments, but I hadn't checked that: the patch also includes some 6.0 fixes from Isilon backported to 5.4, and some of those depend on other 6.0 vfs changes and will fail on 5.4 so they are partially commented out to make it work on 5.4. --- pseudofs_vncache.patch begins here --- diff -Naur ../../b54/sys/fs/pseudofs/pseudofs_internal.h sys/fs/pseudofs/pseudofs_internal.h --- ../../b54/sys/fs/pseudofs/pseudofs_internal.h 2001-10-01 04:26:33.000000000 +0000 +++ sys/fs/pseudofs/pseudofs_internal.h 2005-08-05 20:50:42.000000000 +0000 @@ -43,9 +43,10 @@ struct pfs_node *pvd_pn; pid_t pvd_pid; struct vnode *pvd_vnode; - struct pfs_vdata*pvd_prev, *pvd_next; + LIST_ENTRY(pfs_vdata) pvd_link; }; + /* * Vnode cache */ diff -Naur ../../b54/sys/fs/pseudofs/pseudofs_vncache.c sys/fs/pseudofs/pseudofs_vncache.c --- ../../b54/sys/fs/pseudofs/pseudofs_vncache.c 2004-08-15 21:58:02.000000000 +0000 +++ sys/fs/pseudofs/pseudofs_vncache.c 2005-08-05 20:50:42.000000000 +0000 @@ -38,6 +38,7 @@ #include #include #include +#include #include #include @@ -45,7 +46,8 @@ static MALLOC_DEFINE(M_PFSVNCACHE, "pfs_vncache", "pseudofs vnode cache"); static struct mtx pfs_vncache_mutex; -static struct pfs_vdata *pfs_vncache; +static LIST_HEAD(, pfs_vdata) pfs_vncache_list = + LIST_HEAD_INITIALIZER(&pfs_vncache_list); static eventhandler_tag pfs_exit_tag; static void pfs_exit(void *arg, struct proc *p); @@ -106,6 +108,7 @@ struct pfs_node *pn, pid_t pid) { struct pfs_vdata *pvd; + struct vnode *vnp; int error; /* @@ -113,10 +116,10 @@ * XXX linear search is not very efficient. */ mtx_lock(&pfs_vncache_mutex); - for (pvd = pfs_vncache; pvd; pvd = pvd->pvd_next) { + LIST_FOREACH(pvd, &pfs_vncache_list, pvd_link) { if (pvd->pvd_pn == pn && pvd->pvd_pid == pid && pvd->pvd_vnode->v_mount == mp) { - if (vget(pvd->pvd_vnode, 0, curthread) == 0) { + if (vget(pvd->pvd_vnode, LK_NOWAIT, curthread) == 0) { ++pfs_vncache_hits; *vpp = pvd->pvd_vnode; mtx_unlock(&pfs_vncache_mutex); @@ -127,6 +130,20 @@ return (0); } /* XXX if this can happen, we're in trouble */ + /* the vnode is being cleaned. + * need to wait until it's gone + */ + vnp = pvd->pvd_vnode; + vhold(vnp); + mtx_unlock(&pfs_vncache_mutex); + /*XXX-- VOP_LOCK(vnp, LK_EXCLUSIVE, curthread); */ + if (vget(vnp, 0, curthread) == 0) { + /* XXX shouldn't happen. */ + vrele(vnp); + } + /*XXX-- VOP_UNLOCK(vnp, 0, curthread); */ + vdrop(vnp); + mtx_lock(&pfs_vncache_mutex); break; } } @@ -135,8 +152,6 @@ /* nope, get a new one */ MALLOC(pvd, struct pfs_vdata *, sizeof *pvd, M_PFSVNCACHE, M_WAITOK); - if (++pfs_vncache_entries > pfs_vncache_maxentries) - pfs_vncache_maxentries = pfs_vncache_entries; error = getnewvnode("pseudofs", mp, pfs_vnodeop_p, vpp); if (error) { FREE(pvd, M_PFSVNCACHE); @@ -176,12 +191,13 @@ if ((pn->pn_flags & PFS_PROCDEP) != 0) (*vpp)->v_vflag |= VV_PROCDEP; pvd->pvd_vnode = *vpp; + mtx_lock(&pfs_vncache_mutex); - pvd->pvd_prev = NULL; - pvd->pvd_next = pfs_vncache; - if (pvd->pvd_next) - pvd->pvd_next->pvd_prev = pvd; - pfs_vncache = pvd; + + LIST_INSERT_HEAD(&pfs_vncache_list, pvd, pvd_link); + if (++pfs_vncache_entries > pfs_vncache_maxentries) + pfs_vncache_maxentries = pfs_vncache_entries; + mtx_unlock(&pfs_vncache_mutex); (*vpp)->v_vnlock->lk_flags |= LK_CANRECURSE; vn_lock(*vpp, LK_RETRY | LK_EXCLUSIVE, curthread); @@ -199,15 +215,10 @@ mtx_lock(&pfs_vncache_mutex); pvd = (struct pfs_vdata *)vp->v_data; KASSERT(pvd != NULL, ("pfs_vncache_free(): no vnode data\n")); - if (pvd->pvd_next) - pvd->pvd_next->pvd_prev = pvd->pvd_prev; - if (pvd->pvd_prev) - pvd->pvd_prev->pvd_next = pvd->pvd_next; - else - pfs_vncache = pvd->pvd_next; + LIST_REMOVE(pvd, pvd_link); + --pfs_vncache_entries; mtx_unlock(&pfs_vncache_mutex); - --pfs_vncache_entries; FREE(pvd, M_PFSVNCACHE); vp->v_data = NULL; return (0); @@ -222,6 +233,8 @@ struct pfs_vdata *pvd; struct vnode *vnp; + if (LIST_EMPTY(&pfs_vncache_list)) + return; mtx_lock(&Giant); /* * This is extremely inefficient due to the fact that vgone() not @@ -237,16 +250,18 @@ * this particular case would be a BST sorted by PID. */ mtx_lock(&pfs_vncache_mutex); - pvd = pfs_vncache; - while (pvd != NULL) { + restart: + LIST_FOREACH(pvd, &pfs_vncache_list, pvd_link) { if (pvd->pvd_pid == p->p_pid) { vnp = pvd->pvd_vnode; + vhold(vnp); mtx_unlock(&pfs_vncache_mutex); + /*XXX-- VOP_LOCK(vnp, LK_EXCLUSIVE, curthread); */ vgone(vnp); + /*XXX-- VOP_UNLOCK(vnp, 0, curthread); */ + vdrop(vnp); mtx_lock(&pfs_vncache_mutex); - pvd = pfs_vncache; - } else { - pvd = pvd->pvd_next; + goto restart; } } mtx_unlock(&pfs_vncache_mutex); @@ -267,16 +282,19 @@ pn->pn_flags |= PFS_DISABLED; /* XXX see comment above nearly identical code in pfs_exit() */ mtx_lock(&pfs_vncache_mutex); - pvd = pfs_vncache; - while (pvd != NULL) { + restart: + LIST_FOREACH(pvd, &pfs_vncache_list, pvd_link) { if (pvd->pvd_pn == pn) { vnp = pvd->pvd_vnode; + vhold(vnp); mtx_unlock(&pfs_vncache_mutex); + /*XXX-- VOP_LOCK(vnp, LK_EXCLUSIVE, curthread); */ vgone(vnp); + /*XXX-- VOP_UNLOCK(vnp, 0, curthread); */ + vdrop(vnp); + mtx_lock(&pfs_vncache_mutex); - pvd = pfs_vncache; - } else { - pvd = pvd->pvd_next; + goto restart; } } mtx_unlock(&pfs_vncache_mutex); --- pseudofs_vncache.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 20 06:00:37 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 7326716A41F for ; Sat, 20 Aug 2005 06:00:37 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E779743D45 for ; Sat, 20 Aug 2005 06:00:36 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7K60auX032170 for ; Sat, 20 Aug 2005 06:00:36 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7K60a2o032165; Sat, 20 Aug 2005 06:00:36 GMT (envelope-from gnats) Resent-Date: Sat, 20 Aug 2005 06:00:36 GMT Resent-Message-Id: <200508200600.j7K60a2o032165@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, Helge Oldach Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F3C516A41F for ; Sat, 20 Aug 2005 05:59:22 +0000 (GMT) (envelope-from hmo@sep.oldach.net) Received: from sep.oldach.net (sep.oldach.net [194.180.25.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6ACAE43D48 for ; Sat, 20 Aug 2005 05:59:21 +0000 (GMT) (envelope-from hmo@sep.oldach.net) Received: from sep.oldach.net (localhost [127.0.0.1]) by sep.oldach.net (8.13.3/8.13.3/hmo26jun05) with ESMTP id j7K5xFqs007497 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 20 Aug 2005 07:59:15 +0200 (CEST) (envelope-from hmo@sep.oldach.net) Received: (from hmo@localhost) by sep.oldach.net (8.13.3/8.13.3/Submit/hmo26jun05) id j7K5xEGB007496; Sat, 20 Aug 2005 07:59:14 +0200 (CEST) (envelope-from hmo) Message-Id: <200508200559.j7K5xEGB007496@sep.oldach.net> Date: Sat, 20 Aug 2005 07:59:14 +0200 (CEST) From: Helge Oldach To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: misc/85143: fix usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.feiertag X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Helge Oldach List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Aug 2005 06:00:37 -0000 >Number: 85143 >Category: misc >Synopsis: fix usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.feiertag >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Aug 20 06:00:36 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Helge Oldach >Release: FreeBSD 4.11-STABLE i386 >Organization: >Environment: System: FreeBSD localhost 4.11-STABLE FreeBSD 4.11-STABLE #2175: Wed Aug 3 00:33:32 CEST 2005 toor@localhost:/usr/obj/usr/src/sys/GENERIC i386 >Description: Add January, 27 - official holiday ("Gedenktag für die Opfer des Nationalsozialismus") in Germany since 1996. It was the day of the liberation of the Concentration Camp Auschwitz-Birkenau by the Red Army in 1945. See http://en.wikipedia.org/wiki/Auschwitz >How-To-Repeat: >Fix: --- usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.feiertag~ Wed Aug 17 07:06:15 2005 +++ usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.feiertag Sat Aug 20 07:52:30 2005 @@ -38,7 +38,7 @@ /* Gedenktage - nicht arbeitsfreie Feiertage :-( */ 06/17 Arbeiteraufstand am 17. Juni 1953 -/* ??/?? Befreiung des KZs Auschwitz */ +01/27 Gedenktag für die Opfer des Nationalsozialismus /* Jahreszeiten */ 03/20* Frühlingsanfang >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 20 06:10:14 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 ADFA516A41F for ; Sat, 20 Aug 2005 06:10:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DB4C43D55 for ; Sat, 20 Aug 2005 06:10:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7K6AEO0036734 for ; Sat, 20 Aug 2005 06:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7K6AEhL036733; Sat, 20 Aug 2005 06:10:14 GMT (envelope-from gnats) Resent-Date: Sat, 20 Aug 2005 06:10:14 GMT Resent-Message-Id: <200508200610.j7K6AEhL036733@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, J Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 166D116A41F for ; Sat, 20 Aug 2005 06:05:03 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6D8343D48 for ; Sat, 20 Aug 2005 06:05:02 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id j7K652nL019086 for ; Sat, 20 Aug 2005 06:05:02 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id j7K652ZL019085; Sat, 20 Aug 2005 06:05:02 GMT (envelope-from nobody) Message-Id: <200508200605.j7K652ZL019085@www.freebsd.org> Date: Sat, 20 Aug 2005 06:05:02 GMT From: J To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: misc/85144: Asus K8S-MX mobo, integ LAN not recognized, SATA neither X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Aug 2005 06:10:14 -0000 >Number: 85144 >Category: misc >Synopsis: Asus K8S-MX mobo, integ LAN not recognized, SATA neither >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Aug 20 06:10:13 GMT 2005 >Closed-Date: >Last-Modified: >Originator: J >Release: 5.3 release >Organization: none >Environment: >Description: >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 20 08:32:10 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 2AF8B16A41F; Sat, 20 Aug 2005 08:32:10 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DACFE43D48; Sat, 20 Aug 2005 08:32:09 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7K8W9Th051791; Sat, 20 Aug 2005 08:32:09 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7K8W9R0051787; Sat, 20 Aug 2005 08:32:09 GMT (envelope-from linimon) Date: Sat, 20 Aug 2005 08:32:09 GMT From: Mark Linimon Message-Id: <200508200832.j7K8W9R0051787@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-i386@FreeBSD.org Cc: Subject: Re: i386/85144: Asus K8S-MX mobo, integ LAN not recognized, SATA neither X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Aug 2005 08:32:10 -0000 Synopsis: Asus K8S-MX mobo, integ LAN not recognized, SATA neither Responsible-Changed-From-To: freebsd-bugs->freebsd-i386 Responsible-Changed-By: linimon Responsible-Changed-When: Sat Aug 20 08:31:45 GMT 2005 Responsible-Changed-Why: may be i386-specific http://www.freebsd.org/cgi/query-pr.cgi?pr=85144 From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 20 09:42:44 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 B24BC16A420; Sat, 20 Aug 2005 09:42:44 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3709543D48; Sat, 20 Aug 2005 09:42:44 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (glebius@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7K9gi8k059023; Sat, 20 Aug 2005 09:42:44 GMT (envelope-from glebius@freefall.freebsd.org) Received: (from glebius@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7K9gh0V059019; Sat, 20 Aug 2005 09:42:43 GMT (envelope-from glebius) Date: Sat, 20 Aug 2005 09:42:43 GMT From: Gleb Smirnoff Message-Id: <200508200942.j7K9gh0V059019@freefall.freebsd.org> To: pbl@tsua.net, glebius@FreeBSD.org, freebsd-bugs@FreeBSD.org, glebius@FreeBSD.org Cc: Subject: Re: conf/77929: [patch] periodic/security/550.ipfwlimit ignores logamount X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Aug 2005 09:42:44 -0000 Synopsis: [patch] periodic/security/550.ipfwlimit ignores logamount State-Changed-From-To: open->patched State-Changed-By: glebius State-Changed-When: Sat Aug 20 09:42:05 GMT 2005 State-Changed-Why: Committed, thanks! Responsible-Changed-From-To: freebsd-bugs->glebius Responsible-Changed-By: glebius Responsible-Changed-When: Sat Aug 20 09:42:05 GMT 2005 Responsible-Changed-Why: MFC reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=77929 From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 20 11:23:41 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 F1D9816A41F; Sat, 20 Aug 2005 11:23:40 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B22B243D45; Sat, 20 Aug 2005 11:23:40 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (glebius@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7KBNekM071029; Sat, 20 Aug 2005 11:23:40 GMT (envelope-from glebius@freefall.freebsd.org) Received: (from glebius@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7KBNemc071025; Sat, 20 Aug 2005 11:23:40 GMT (envelope-from glebius) Date: Sat, 20 Aug 2005 11:23:40 GMT From: Gleb Smirnoff Message-Id: <200508201123.j7KBNemc071025@freefall.freebsd.org> To: glebius@FreeBSD.org, freebsd-bugs@FreeBSD.org, kientzle@FreeBSD.org Cc: Subject: Re: bin/84993: gcc4.x cleanup of usr.bin/tar X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Aug 2005 11:23:41 -0000 Synopsis: gcc4.x cleanup of usr.bin/tar Responsible-Changed-From-To: freebsd-bugs->kientzle Responsible-Changed-By: glebius Responsible-Changed-When: Sat Aug 20 11:23:03 GMT 2005 Responsible-Changed-Why: For author's review. http://www.freebsd.org/cgi/query-pr.cgi?pr=84993 From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 20 11:27:32 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 A710816A420; Sat, 20 Aug 2005 11:27:32 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6532243D45; Sat, 20 Aug 2005 11:27:32 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from freefall.freebsd.org (glebius@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7KBRWPH071125; Sat, 20 Aug 2005 11:27:32 GMT (envelope-from glebius@freefall.freebsd.org) Received: (from glebius@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7KBRWxW071121; Sat, 20 Aug 2005 11:27:32 GMT (envelope-from glebius) Date: Sat, 20 Aug 2005 11:27:32 GMT From: Gleb Smirnoff Message-Id: <200508201127.j7KBRWxW071121@freefall.freebsd.org> To: Ted.Nolan@sri.com, glebius@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/85011: /sbin/restore on 5.4 will not read Solaris-sparc dumps, whereas 4.x restore will X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Aug 2005 11:27:32 -0000 Synopsis: /sbin/restore on 5.4 will not read Solaris-sparc dumps, whereas 4.x restore will State-Changed-From-To: open->feedback State-Changed-By: glebius State-Changed-When: Sat Aug 20 11:26:16 GMT 2005 State-Changed-Why: Some changes to re-add support for old tapes were commited to 5-STABLE _after_ 5.4-RELEASE. Can you please update your system and say whether SunOS tapes are readable in 5.4-STABLE? http://www.freebsd.org/cgi/query-pr.cgi?pr=85011 From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 20 19:00:45 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 6F0A216A41F for ; Sat, 20 Aug 2005 19:00:45 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72DFE43D53 for ; Sat, 20 Aug 2005 19:00:44 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7KJ0i22022555 for ; Sat, 20 Aug 2005 19:00:44 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7KJ0iwu022550; Sat, 20 Aug 2005 19:00:44 GMT (envelope-from gnats) Resent-Date: Sat, 20 Aug 2005 19:00:44 GMT Resent-Message-Id: <200508201900.j7KJ0iwu022550@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, hampi@rootshell.be Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 861B616A41F for ; Sat, 20 Aug 2005 18:50:34 +0000 (GMT) (envelope-from hampi@rootshell.be) Received: from mail20.bluewin.ch (mail20.bluewin.ch [195.186.19.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9A3743D45 for ; Sat, 20 Aug 2005 18:50:33 +0000 (GMT) (envelope-from hampi@rootshell.be) Received: from twelvegates.homeip.net (83.77.209.32) by mail20.bluewin.ch (Bluewin 7.2.063) id 42D281C400605C6E for FreeBSD-gnats-submit@freebsd.org; Sat, 20 Aug 2005 18:50:30 +0000 Received: from goofy.here (localhost [127.0.0.1]) by twelvegates.homeip.net (8.13.4/8.13.4) with ESMTP id j7KIoWo9000895 for ; Sat, 20 Aug 2005 20:50:32 +0200 (CEST) (envelope-from idefix@goofy.here) Received: (from idefix@localhost) by goofy.here (8.13.4/8.13.4/Submit) id j7KIoWON000894; Sat, 20 Aug 2005 20:50:32 +0200 (CEST) (envelope-from idefix) Message-Id: <200508201850.j7KIoWON000894@goofy.here> Date: Sat, 20 Aug 2005 20:50:32 +0200 (CEST) From: Hanspeter Roth To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/85163: Giving up on 2 buffers with readonly mounted ext2fs X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: hampi@rootshell.be List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Aug 2005 19:00:45 -0000 >Number: 85163 >Category: kern >Synopsis: Giving up on 2 buffers with readonly mounted ext2fs >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Aug 20 19:00:43 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Hanspeter Roth >Release: FreeBSD 6.0-BETA2 i386 >Organization: >Environment: System: FreeBSD goofy.here 6.0-BETA2 FreeBSD 6.0-BETA2 #0: Wed Aug 3 08:22:24 UTC 2005 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 USB-disk with two ext2fs slices >Description: If an ext2fs slice on a USB-disk is mounted readonly during reboot FreeBSD has 2 buffers remaining. >How-To-Repeat: boot Linux fsck -f /dev/sda1 fsck -f /dev/sda2 boot FreeBSD 6.0-BETA2 mount -r -t ext2fs /dev/da0s1 /mnt reboot Syncing disks, buffers remaining... 2 2 2 2 ... Giving up on 2 buffers boot Linux fsck /dev/sda1 /dev/sda1 was not cleanly unmounted, check forced. >Fix: >Release-Note: >Audit-Trail: >Unformatted: