From owner-freebsd-bugs Sun Mar 17 1:35:59 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 45ACB37B402; Sun, 17 Mar 2002 01:35:58 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2H9ZwM95481; Sun, 17 Mar 2002 01:35:58 -0800 (PST) (envelope-from cjc) Date: Sun, 17 Mar 2002 01:35:58 -0800 (PST) From: Message-Id: <200203170935.g2H9ZwM95481@freefall.freebsd.org> To: rhooper@toybox.ca, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org, cjc@FreeBSD.org Subject: Re: misc/35992: /etc/rc has no way to force fsck -y at next boot, corrupt filesystems with soft updates required manual intervention Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: /etc/rc has no way to force fsck -y at next boot, corrupt filesystems with soft updates required manual intervention State-Changed-From-To: open->analyzed State-Changed-By: cjc State-Changed-When: Sun Mar 17 01:34:42 PST 2002 State-Changed-Why: Added documentation for the rc.early(8) script to -CURRENT. Responsible-Changed-From-To: freebsd-bugs->cjc Responsible-Changed-By: cjc Responsible-Changed-When: Sun Mar 17 01:34:42 PST 2002 Responsible-Changed-Why: I'll MFC to -STABLE in a few days. http://www.freebsd.org/cgi/query-pr.cgi?pr=35992 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 1:50: 6 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3894B37B402 for ; Sun, 17 Mar 2002 01:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2H9o1I97257; Sun, 17 Mar 2002 01:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EFB4837B400 for ; Sun, 17 Mar 2002 01:42:33 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2H9gXw96285; Sun, 17 Mar 2002 01:42:33 -0800 (PST) (envelope-from nobody) Message-Id: <200203170942.g2H9gXw96285@freefall.freebsd.org> Date: Sun, 17 Mar 2002 01:42:33 -0800 (PST) From: Hendrik Scholz To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/36000: contrib/amd uses mktemp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36000 >Category: bin >Synopsis: contrib/amd uses mktemp >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 Mar 17 01:50:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Hendrik Scholz >Release: 5.0 current x86 >Organization: >Environment: FreeBSD deimos.raisdorf.net 5.0-CURRENT FreeBSD 5.0-CURRENT #6: Sun Mar 17 19:26:49 EST 2002 hscholz@deimos.raisdorf.net:/usr/src/sys/i386/compile/DEIMOS5 i386 >Description: mk-amd-map(8) from amd(8) uses mktemp() to get a unique filename for a temporary file. It cannot be ported to mkstemp() because it later on does a dbm_open(), so it should be better to add O_EXCL to the dbm_open() flags so it would return an error if the file already exists. >How-To-Repeat: look at src/contrib/amd/mk-amd-map/mk-amd-map.c there is mktemp(maptmp); around line 290 and at line 310 there is: db = dbm_open(maptmp, O_RDWR|O_CREAT, 0444); Errors produced by dbm_open() are handled. >Fix: --- mk-amd-map.c.orig Sun Mar 17 19:34:33 2002 +++ mk-amd-map.c Sun Mar 17 19:34:51 2002 @@ -307,7 +307,7 @@ } #endif /* not HAVE_DB_SUFFIX */ - db = dbm_open(maptmp, O_RDWR|O_CREAT, 0444); + db = dbm_open(maptmp, O_RDWR|O_CREAT|O_EXCL, 0444); if (!db) { fprintf(stderr, "cannot initialize temporary database: %s", maptmp); exit(1); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 2:10:24 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C94BA37B41D for ; Sun, 17 Mar 2002 02:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HAA2q03299; Sun, 17 Mar 2002 02:10:02 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Mar 2002 02:10:02 -0800 (PST) Message-Id: <200203171010.g2HAA2q03299@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: kern/35985: swap double mount Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/35985; it has been noted by GNATS. From: "Crist J. Clark" To: Jan Srzednicki Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: kern/35985: swap double mount Date: Sun, 17 Mar 2002 02:03:13 -0800 On Sat, Mar 16, 2002 at 08:53:35PM -0000, Jan Srzednicki wrote: [snip] > [21:46] spitfire:~(60)# swapinfo > Device 1K-blocks Used Avail Capacity Type > /dev/ad0s1b 153472 5036 148436 3% Interleaved > /dev/rad6s1b 204672 4968 199704 2% Interleaved > /dev/rad4s1b 348032 4972 343060 1% Interleaved > /dev/rad4s1b 348032 1580 346452 0% Interleaved > Total 1054208 16556 1037652 2% > > Aaargh! /dev/rad4s1b is mounted as swap twice! > I thing the system should never allow this to happen. It isn't supposed to. swapon(2) (the system call, not the command) should return EBUSY when a device is in use. Can you give more detailed information about how the system got into this state? -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 2:17:38 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D72BD37B419; Sun, 17 Mar 2002 02:17:35 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HAHZK03930; Sun, 17 Mar 2002 02:17:35 -0800 (PST) (envelope-from cjc) Date: Sun, 17 Mar 2002 02:17:35 -0800 (PST) From: Message-Id: <200203171017.g2HAHZK03930@freefall.freebsd.org> To: winfried@dream.vg, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35985: swap double mount Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: swap double mount State-Changed-From-To: open->feedback State-Changed-By: cjc State-Changed-When: Sun Mar 17 02:17:04 PST 2002 State-Changed-Why: Need more information from submitter on how to reproduce the problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=35985 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 2:23:39 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CB6A637B405; Sun, 17 Mar 2002 02:23:37 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HANbR04487; Sun, 17 Mar 2002 02:23:37 -0800 (PST) (envelope-from cjc) Date: Sun, 17 Mar 2002 02:23:37 -0800 (PST) From: Message-Id: <200203171023.g2HANbR04487@freefall.freebsd.org> To: cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org, darrenr@FreeBSD.org Subject: Re: kern/34665: ipfilter rcmd proxy "hangs". Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: ipfilter rcmd proxy "hangs". Responsible-Changed-From-To: freebsd-bugs->darrenr Responsible-Changed-By: cjc Responsible-Changed-When: Sun Mar 17 02:23:10 PST 2002 Responsible-Changed-Why: Over to author/maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=34665 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 2:26:56 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C677137B400; Sun, 17 Mar 2002 02:26:54 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HAQsN04899; Sun, 17 Mar 2002 02:26:54 -0800 (PST) (envelope-from cjc) Date: Sun, 17 Mar 2002 02:26:54 -0800 (PST) From: Message-Id: <200203171026.g2HAQsN04899@freefall.freebsd.org> To: cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: conf/34729: treat smbfs as network file system in /etc/rc Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: treat smbfs as network file system in /etc/rc Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: cjc Responsible-Changed-When: Sun Mar 17 02:26:25 PST 2002 Responsible-Changed-Why: Over to the SMBFS man. http://www.freebsd.org/cgi/query-pr.cgi?pr=34729 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 2:38:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 45C0E37B400; Sun, 17 Mar 2002 02:38:11 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HAcB306041; Sun, 17 Mar 2002 02:38:11 -0800 (PST) (envelope-from cjc) Date: Sun, 17 Mar 2002 02:38:11 -0800 (PST) From: Message-Id: <200203171038.g2HAcB306041@freefall.freebsd.org> To: ecsd@transbay.net, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/34949: 4.5 mfsroot floppy default system to install is 4.3, not 4.5 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: 4.5 mfsroot floppy default system to install is 4.3, not 4.5 State-Changed-From-To: feedback->closed State-Changed-By: cjc State-Changed-When: Sun Mar 17 02:37:58 PST 2002 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=34949 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 3: 0: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D425F37B416 for ; Sun, 17 Mar 2002 03:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HB05N08370; Sun, 17 Mar 2002 03:00:05 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Mar 2002 03:00:05 -0800 (PST) Message-Id: <200203171100.g2HB05N08370@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: kern/35985: swap double mount Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/35985; it has been noted by GNATS. From: "Crist J. Clark" To: Jan Srzednicki Cc: bug-followup@freebsd.org Subject: Re: kern/35985: swap double mount Date: Sun, 17 Mar 2002 03:00:02 -0800 On Sun, Mar 17, 2002 at 11:09:25AM +0100, Jan Srzednicki wrote: > On Sun, 17 Mar 2002, Crist J. Clark wrote: > > > It isn't supposed to. swapon(2) (the system call, not the command) > > should return EBUSY when a device is in use. Can you give more > > detailed information about how the system got into this state? > > By running disklabel from /stand/sysinstall (to partition the second slice > on the disk) while this swap device was already mounted (it is on the > first slice). Cool. It does do that. Weird. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 3: 0:49 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35A1537B405; Sun, 17 Mar 2002 03:00:48 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HB0mi08656; Sun, 17 Mar 2002 03:00:48 -0800 (PST) (envelope-from cjc) Date: Sun, 17 Mar 2002 03:00:48 -0800 (PST) From: Message-Id: <200203171100.g2HB0mi08656@freefall.freebsd.org> To: winfried@dream.vg, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35985: swap double mount Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: swap double mount State-Changed-From-To: feedback->analyzed State-Changed-By: cjc State-Changed-When: Sun Mar 17 03:00:08 PST 2002 State-Changed-Why: The problem is easily reproduced as described. http://www.freebsd.org/cgi/query-pr.cgi?pr=35985 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 4:10:52 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 16DB237B439 for ; Sun, 17 Mar 2002 04:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HCA3130813; Sun, 17 Mar 2002 04:10:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F91837B435 for ; Sun, 17 Mar 2002 04:00:06 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HC06q18059; Sun, 17 Mar 2002 04:00:06 -0800 (PST) (envelope-from nobody) Message-Id: <200203171200.g2HC06q18059@freefall.freebsd.org> Date: Sun, 17 Mar 2002 04:00:06 -0800 (PST) From: Yoshikazu GOTO To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/36002: compile is stopped without DDB define Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36002 >Category: kern >Synopsis: compile is stopped without DDB define >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Mar 17 04:10:02 PST 2002 >Closed-Date: >Last-Modified: >Originator: Yoshikazu GOTO >Release: -current >Organization: >Environment: >Description: >How-To-Repeat: >Fix: *** subr_witness.c.orig Sun Mar 17 20:59:15 2002 --- subr_witness.c Sun Mar 17 20:37:47 2002 *************** *** 126,133 **** --- 126,135 ---- static int isitmydescendant(struct witness *parent, struct witness *child); static int dup_ok(struct witness *); static int blessed(struct witness *, struct witness *); + #if defined(DDB) static void witness_display_list(void(*prnt)(const char *fmt, ...), struct witness_list *list); + #endif static void witness_displaydescendants(void(*)(const char *fmt, ...), struct witness *); static void witness_leveldescendents(struct witness *parent, int level); *************** *** 138,144 **** --- 140,148 ---- static void witness_child_free(struct witness_child_list_entry *wcl); static struct lock_list_entry *witness_lock_list_get(void); static void witness_lock_list_free(struct lock_list_entry *lle); + #if defined(DDB) static void witness_display(void(*)(const char *fmt, ...)); + #endif static struct lock_instance *find_instance(struct lock_list_entry *lock_list, struct lock_object *lock); *************** *** 402,407 **** --- 406,412 ---- mtx_unlock(&all_mtx); } + #if defined(DDB) static void witness_display_list(void(*prnt)(const char *fmt, ...), struct witness_list *list) *************** *** 427,433 **** witness_displaydescendants(prnt, w); } } ! static void witness_display(void(*prnt)(const char *fmt, ...)) { --- 432,440 ---- witness_displaydescendants(prnt, w); } } ! #endif ! ! #if defined(DDB) static void witness_display(void(*prnt)(const char *fmt, ...)) { *************** *** 459,464 **** --- 466,472 ---- prnt("%s\n", w->w_name); } } + #endif void witness_lock(struct lock_object *lock, int flags, const char *file, int line) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 4:30:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B21AF37B41B for ; Sun, 17 Mar 2002 04:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HCU1P33359; Sun, 17 Mar 2002 04:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D310C37B404 for ; Sun, 17 Mar 2002 04:24:23 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HCONi32538; Sun, 17 Mar 2002 04:24:23 -0800 (PST) (envelope-from nobody) Message-Id: <200203171224.g2HCONi32538@freefall.freebsd.org> Date: Sun, 17 Mar 2002 04:24:23 -0800 (PST) From: Arjan Knepper To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/36003: Cyclades Cyclom YeP causes panics on FreeBSD with SMP kernels Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36003 >Category: i386 >Synopsis: Cyclades Cyclom YeP causes panics on FreeBSD with SMP kernels >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 Mar 17 04:30:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Arjan Knepper >Release: FreeBSD 4.5-STABLE >Organization: JAK++ Software Development B.V. >Environment: FreeBSD fax.xxxx.xx 4.5-STABLE FreeBSD 4.5-STABLE #0: Fri Feb 15 21:34:34 CET 2002 apk@fax.xxxx.xx:/usr/obj/usr/src/sys/DUAL i386 >Description: Using a DELL 2550 with 2xPIII933 CPU's and 3 Cyclades Cyclom YeP boards. A panic occurs when there is (heavy) io on the cyclades boards. >How-To-Repeat: Perform some io on serveral cy-ports simultanious. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 5:37:18 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id D229D37B404; Sun, 17 Mar 2002 05:37:10 -0800 (PST) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 17 Mar 2002 13:37:03 +0000 (GMT) Date: Sun, 17 Mar 2002 13:37:02 +0000 From: David Malone To: cjc@FreeBSD.org Cc: rhooper@toybox.ca, freebsd-bugs@FreeBSD.org Subject: Re: misc/35992: /etc/rc has no way to force fsck -y at next boot, corrupt filesystems with soft updates required manual intervention Message-ID: <20020317133702.GA33770@walton.maths.tcd.ie> References: <200203170935.g2H9ZwM95481@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203170935.g2H9ZwM95481@freefall.freebsd.org> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > Added documentation for the rc.early(8) script to -CURRENT. The main bug here is that fsck -p didn't detect the problem. Is a copy of the currupted filesystem still available? David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 5:50:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7097737B42A for ; Sun, 17 Mar 2002 05:50:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HDo3V46881; Sun, 17 Mar 2002 05:50:03 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Mar 2002 05:50:03 -0800 (PST) Message-Id: <200203171350.g2HDo3V46881@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Malone Subject: Re: i386/36003: Cyclades Cyclom YeP causes panics on FreeBSD with SMP kernels Reply-To: David Malone Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/36003; it has been noted by GNATS. From: David Malone To: Arjan Knepper Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: i386/36003: Cyclades Cyclom YeP causes panics on FreeBSD with SMP kernels Date: Sun, 17 Mar 2002 13:40:42 +0000 On Sun, Mar 17, 2002 at 04:24:23AM -0800, Arjan Knepper wrote: > >Description: > Using a DELL 2550 with 2xPIII933 CPU's and 3 Cyclades Cyclom YeP boards. A panic occurs when there is (heavy) io on the cyclades boards. Can you post the panic message? It would be even better if you could get a back trace from a debugging kernel - see the handbook for details. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 6:10:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AF2FA37B420 for ; Sun, 17 Mar 2002 06:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HEA1R54011; Sun, 17 Mar 2002 06:10:01 -0800 (PST) (envelope-from gnats) Received: from t-mta7.odn.ne.jp (mfep7.odn.ne.jp [143.90.131.185]) by hub.freebsd.org (Postfix) with ESMTP id C3F6C37B41D for ; Sun, 17 Mar 2002 06:04:07 -0800 (PST) Received: from localhost ([61.123.169.100]) by t-mta7.odn.ne.jp with ESMTP id <20020317140405649.EVJU.32433.t-mta7.odn.ne.jp@mta7.odn.ne.jp>; Sun, 17 Mar 2002 23:04:05 +0900 Message-Id: <20020317.230404.74754606.m@fjts.org> Date: Sun, 17 Mar 2002 23:04:04 +0900 (JST) From: Masaharu FUJITA To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/36007: [PATCH] USB memory card reader/writer RD5 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36007 >Category: kern >Synopsis: [PATCH] USB memory card reader/writer RD5 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Mar 17 06:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Masaharu FUJITA >Release: FreeBSD 5.0-CURRENT-20020101-JPSNAP i386 >Organization: >Environment: System: FreeBSD air.fjts.net 5.0-CURRENT-20020101-JPSNAP FreeBSD 5.0-CURRENT-20020101-JPSNAP #2: Sun Mar 3 22:08:14 JST 2002 fujita@air.fjts.net:/usr/src/sys/i386/compile/AIR i386 >Description: Patch for use USB memory card reader/writer RD5. >How-To-Repeat: >Fix: --- scsi_da.c.orig Mon Dec 10 06:38:33 2001 +++ scsi_da.c Sun Mar 17 14:43:37 2002 @@ -342,6 +342,13 @@ */ {T_DIRECT, SIP_MEDIA_REMOVABLE, "MINOLTA", "DIMAGE 2330*", "*"}, /*quirks*/ DA_Q_NO_6_BYTE + }, + { + /* + * General Flash Disk Drive. + */ + {T_DIRECT, SIP_MEDIA_REMOVABLE, "General", "Flash Disk Drive","*"}, + /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE } }; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 6:40:35 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 707F137B42B for ; Sun, 17 Mar 2002 06:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HEe3p62059; Sun, 17 Mar 2002 06:40:03 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Mar 2002 06:40:03 -0800 (PST) Message-Id: <200203171440.g2HEe3p62059@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Alexander S. Usov" Subject: Re[2]: bin/35929: A small bug in renice Reply-To: "Alexander S. Usov" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35929; it has been noted by GNATS. From: "Alexander S. Usov" To: "Crist J. Clark" Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re[2]: bin/35929: A small bug in renice Date: Sun, 17 Mar 2002 16:31:24 +0200 Hello Crist, Saturday, March 16, 2002, 9:40:39 PM, you wrote: >> >Description: >> renice 10 -j pid works a little strange: >> ===%renice 10 -j $$ >> 0: old priority 0, new priority 10 >> 62742: old priority 0, new priority 10 CJC> Nothing too surprising here. '-j' is not a valid flag to renice(8). It CJC> is being interpreted as an integer. atoi(3) return a value of 0 for CJC> "-j". IMHO "renice: illegal option -j" looks better :) -- Best regards, Alexander To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 6:50:24 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BCBF37B42B for ; Sun, 17 Mar 2002 06:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HEo1o68835; Sun, 17 Mar 2002 06:50:01 -0800 (PST) (envelope-from gnats) Received: from hpdi.ath.cx (pc2-nthf5-0-cust237.not.cable.ntl.com [80.4.35.237]) by hub.freebsd.org (Postfix) with ESMTP id B10F437B41E; Sun, 17 Mar 2002 06:43:10 -0800 (PST) Received: (from hitenp@hpdi.ath.cx) by hpdi.ath.cx (8.11.6/8.11.6) id g2HEe3400609; Sun, 17 Mar 2002 14:40:03 GMT (envelope-from hitenp@hpdi.ath.cx) Message-Id: <200203171440.g2HEe3400609@hpdi.ath.cx> Date: Sun, 17 Mar 2002 14:40:03 GMT From: Hiten Pandya Reply-To: Hiten Pandya To: FreeBSD-gnats-submit@FreeBSD.org Cc: re@FreeBSD.org, phk@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/36008: [PATCH] Critical PERFMON fix for DEVFS users Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36008 >Category: kern >Synopsis: [PATCH] Critical PERFMON fix for DEVFS users >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 Mar 17 06:50:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Hiten Pandya >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD hpdi.ath.cx 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sat Mar 16 19:06:14 GMT 2002 hitenp@hpdi.ath.cx:/c1/obj/data/dev/src/sys/CURRENT5 i386 >Description: This PR has be opened to address a pretty critical issue. The PERFMON driver is kinda broken for people using DEVFS because of some device initialisation error. I myself use 5.0-CURRENT with DEVFS, and have found out that the PERFMON driver was not loading even though I had the PERFMON option in my kernel configuration. The following warnings are seen when PERFMON was enabled with DEVFS: -- DMESG output -- Preloaded elf module "/boot/kernel/acpi.ko" at 0xc03be0a8. Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 730807620 Hz CPU: Pentium III/Pentium III Xeon/Celeron (730.81-MHz 686-class CPU) Origin =3D "GenuineIntel" Id =3D 0x683 Stepping =3D 3 Features=3D0x387fbff WARNING: Driver mistake: make_dev(perfmon) called before SI_SUB_DRIVERS -- DMESG output -- The last line is of pretty much interest, as it shouws that the perfmon driver failed to load because the Device subsystem i.e. DEVFS was not initialised. A discussion about this was held on the current@ list, and Terry suggested me a fix, which I have turned into a patch, and it does the following (also commented in the code for clarity): o Split the perfmon_init() function into perfmon_init_dev(); o perfmon_init_dev() is passed as a helper function SYSINIT() as follows (wrapped to 80 columns): SYSINIT(cpu, SI_SUB_DRIVERS, SI_ORDER_ANY, perfmon_init_dev, NULL); o The above SYSINIT is used to initialise the perfmon driver, after the DEVFS subsystem has loaded, by using SI_SUB_DRIVERS, and also making it a low priority task, by using SI_ORDER_ANY. I have tested my patch, and it has also been approved by Terry. I have CC'ed this PR to phk@, who maintains the DEVFS subsystem I beleive, and re@ because of the neccessary changes which needs to go into the: 5.0 Developer pre-release (-CURRENT code slush is over!) I hope this patch makes it way through. I would surely not mind any comments, compliments, or rants on it. ;) BTW, I haven't tested this patch on -STABLE, as my area of interest is -CURRENT. :-) References: - Message-ID: 3C8D44BE.260E044B@mindspring.com (Re: warnings in my bootup (dmesg.boot)) posted to current@FreeBSD.org Thank You, Regards, -- Hiten Pandya -- >How-To-Repeat: Compile a -CURRENT kernel which has the following two options in it: options PERFMON # Perfmon driver for the i686 options DEVFS # The Device Filesystem It will produce a dmesg(1) output similar to the one which I have provided above. >Fix: Apply the following patch, which will resolve the issue, as commented in the patch itself: Index: perfmon.c =================================================================== RCS file: /home/ncvs/src/sys/i386/i386/perfmon.c,v retrieving revision 1.26 diff -u -r1.26 perfmon.c --- perfmon.c 2001/12/18 00:27:15 1.26 +++ perfmon.c 2002/03/16 19:42:03 @@ -58,6 +58,16 @@ static d_open_t perfmon_open; static d_ioctl_t perfmon_ioctl; +/* + * XXX perfmon_init_dev(void *) is a split from the perfmon_init() funtion. + * This solves a problem for DEVFS users. It loads the "perfmon" driver after + * the DEVFS subsystem has been kicked into action. The SI_ORDER_ANY is to + * assure that it is the most lowest priority task which, guarantees the + * above. + */ +static void perfmon_init_dev __P((void *)); +SYSINIT(cpu, SI_SUB_DRIVERS, SI_ORDER_ANY, perfmon_init_dev, NULL); + #define CDEV_MAJOR 2 /* We're really a minor of mem.c */ static struct cdevsw perfmon_cdevsw = { /* open */ perfmon_open, @@ -105,6 +115,12 @@ break; } #endif /* SMP */ +} + +static void +perfmon_init_dev(dummy) + void *dummy; +{ make_dev(&perfmon_cdevsw, 32, UID_ROOT, GID_KMEM, 0640, "perfmon"); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 7:10:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AFCC337B419 for ; Sun, 17 Mar 2002 07:10:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HFA6G74565; Sun, 17 Mar 2002 07:10:06 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Mar 2002 07:10:06 -0800 (PST) Message-Id: <200203171510.g2HFA6G74565@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Arjan Knepper Subject: Re: i386/36003: Cyclades Cyclom YeP causes panics on FreeBSD with SMP kernels Reply-To: Arjan Knepper Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/36003; it has been noted by GNATS. From: Arjan Knepper To: David Malone Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: i386/36003: Cyclades Cyclom YeP causes panics on FreeBSD with SMP kernels Date: Sun, 17 Mar 2002 16:11:22 +0100 GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-freebsd". (kgdb) symbol-file kernel.debug Reading symbols from kernel.debug...done. (kgdb) exec-file /var/crash/kernel.1 (kgdb) core-file /var/crash/vmcore.1 SMP 2 cpus IdlePTD at phsyical address 0x0038d000 initial pcb at physical address 0x002ef400 panicstr: rslock: cpu: 0, addr: 0xc0313428, lock: 0x00000001 panic messages: --- panic: rslock: cpu: 0, addr: 0xc0313428, lock: 0x00000001 mp_lock = 00000002; cpuid = 0; lapic.id = 01000000 boot() called on cpu#0 syncing disks... 41 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 giving up on 2 buffers Uptime: 5m42s dumping to dev #da/0x20001, offset 1048704 dump 511 510 509 508 507 506 505 504 503 502 501 500 499 498 497 496 495 494 493 492 491 490 489 488 487 486 485 484 483 482 481 480 479 478 477 476 475 474 473 472 471 470 469 468 467 466 465 464 463 462 461 460 459 458 457 456 455 454 453 452 451 450 449 448 447 446 445 444 443 442 441 440 439 438 437 436 435 434 433 432 431 430 429 428 427 426 425 424 423 422 421 420 419 418 417 416 415 414 413 412 411 410 409 408 407 406 405 404 403 402 401 400 399 398 397 396 395 394 393 392 391 390 389 388 387 386 385 384 383 382 381 380 379 378 377 376 375 374 373 372 371 370 369 368 367 366 365 364 363 362 361 360 359 358 357 356 355 354 353 352 351 350 349 348 347 346 345 344 343 342 341 340 339 338 337 336 335 334 333 332 331 330 329 328 327 326 325 324 323 322 321 320 319 318 317 316 315 314 313 312 311 310 309 308 307 306 305 304 303 302 301 300 299 298 297 296 295 294 293 292 291 290 289 288 287 286 285 284 283 282 281 280 279 278 277 276 275 274 273 272 271 270 269 268 267 266 265 264 263 262 261 260 259 258 257 256 255 254 253 252 251 250 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 231 230 229 228 227 226 225 224 223 222 221 220 219 218 217 216 215 214 213 212 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 194 193 192 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 175 174 173 172 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 156 155 154 153 152 151 150 149 148 147 146 145 144 143 142 141 140 139 138 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 dumpsys () at ../../kern/kern_shutdown.c:474 474 if (dumping++) { (kgdb) whr ere #0 dumpsys () at ../../kern/kern_shutdown.c:474 #1 0xc016df04 in boot (howto=256) at ../../kern/kern_shutdown.c:313 #2 0xc016e324 in poweroff_wait (junk=0xc0273fca, howto=0) at ../../kern/kern_shutdown.c:582 #3 0xc0273fca in bsl1 () #4 0xc0263920 in Xfastintr4 () #5 0xc0280d54 in splx (ipl=3223420601) at ../../i386/isa/ipl_funcs.c:237 #6 0xc0217eb9 in ffs_read (ap=0xd78e0e98) at ../../ufs/ufs/ufs_readwrite.c:347 #7 0xc021f0c6 in ufs_readdir (ap=0xd78e0ee8) at vnode_if.h:334 #8 0xc021fb41 in ufs_vnoperate (ap=0xd78e0ee8) at ../../ufs/ufs/ufs_vnops.c:2423 #9 0xc01a246f in getdirentries (p=0xd4783560, uap=0xd78e0f80) at vnode_if.h:769 #10 0xc0275a01 in syscall2 (frame={tf_fs = -1070530513, tf_es = 135200815, tf_ds = -1078001617, tf_edi = -1077936728, tf_esi = 6, tf_ebp = -1077938660, tf_isp = -678555692, tf_ebx = 0, tf_edx = 135369472, tf_ecx = 135274496, tf_eax = 196, tf_trapno = 0, tf_err = 2, tf_eip = 134630220, tf_cs = 31, tf_eflags = 582, tf_esp = -1077938704, tf_ss = 47}) at ../../i386/i386/trap.c:1157 #11 0xc026333b in Xint0x80_syscall () #12 0x80649b5 in ?? () #13 0x804b1ee in ?? () #14 0x8048772 in ?? () #15 0x8048df3 in ?? () #16 0x8048135 in ?? () (kgdb) up 10 #10 0xc0275a01 in syscall2 (frame={tf_fs = -1070530513, tf_es = 135200815, tf_ds = -1078001617, tf_edi = -1077936728, tf_esi = 6, tf_ebp = -1077938660, tf_isp = -678555692, tf_ebx = 0, tf_edx = 135369472, tf_ecx = 135274496, tf_eax = 196, tf_trapno = 0, tf_err = 2, tf_eip = 134630220, tf_cs = 31, tf_eflags = 582, tf_esp = -1077938704, tf_ss = 47}) at ../../i386/i386/trap.c:1157 1157 error = (*callp->sy_call)(p, args); (kgdb) quit fax3/sys/compile/DUAL2# exit David Malone wrote: >On Sun, Mar 17, 2002 at 04:24:23AM -0800, Arjan Knepper wrote: > >>>Description: >>> >>Using a DELL 2550 with 2xPIII933 CPU's and 3 Cyclades Cyclom YeP boards. A panic occurs when there is (heavy) io on the cyclades boards. >> > >Can you post the panic message? It would be even better if you could >get a back trace from a debugging kernel - see the handbook for details. > > David. > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 8: 4:54 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from studer.bol.com.br (studer.bol.com.br [200.221.24.21]) by hub.freebsd.org (Postfix) with ESMTP id 477AE37B42F for ; Sun, 17 Mar 2002 08:04:51 -0800 (PST) Received: from bol.com.br (200.221.24.79) by studer.bol.com.br (5.1.071) id 3C0EEF6E012E806D for freebsd-bugs@FreeBSD.ORG; Sun, 17 Mar 2002 13:04:25 -0300 Date: Sun, 17 Mar 2002 13:04:26 -0300 Message-Id: Subject: changed a freebsd source code MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="_=__=_XaM3_Boundary.1016381066.2A.139949.42.17334.52.42.101010.12193" From: "flagbh" To: freebsd-bugs@FreeBSD.ORG X-XaM3-API-Version: 2.4.3.4.4 X-SenderIP: 200.188.185.104 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --_=__=_XaM3_Boundary.1016381066.2A.139949.42.17334.52.42.101010.12193 Content-Type: text/plain;charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable __________________________________________________________________________ Quer ter seu pr=F3prio endere=E7o na Internet? Garanta j=E1 o seu e ainda ganhe cinco e-mails personalizados. Dom=EDniosBOL - http://dominios.bol.com.br --_=__=_XaM3_Boundary.1016381066.2A.139949.42.17334.52.42.101010.12193 Content-Type: application/octet-stream; name="changed_code.txt" Content-Transfer-Encoding: base64 LyoNCkhpLCBJIG1hZGUgYSBzbGlnaHR5IGltcHJvdmVtZW50IG9uIHRoZSBjb2RlIG9mIHBy aW1lLmMgDQp3aGljaCBpcyBhdDoNCmZ0cDovL2Z0cC5mcmVlYnNkLm9yZy9wdWIvRnJlZUJT RC9kZXZlbG9wbWVudC9GcmVlQlNELUNWUy9zcmMvY29udHJpYi90b3AvcHJpbWUuYyUyQ3YN Cg0KVGhlIGFmZmVjdGVkIHBhcnQgaXMgbm93IDEuMTQgZmFzdGVyDQoqLw0KDQojaW5jbHVk ZSA8bWF0aC5oPg0KDQptYWluKGFyZ2MsIGFyZ3YpDQoNCmludCBhcmdjOw0KY2hhciAqYXJn dltdOw0KDQp7DQogICAgZG91YmxlIGksIGo7DQogICAgaW50IGY7DQogICAgZG91YmxlIGs7 IC8vbmV3IHZhcmlhYmxlCQ0KDQogICAgaWYgKGFyZ2MgPCAyKQ0KICAgIHsNCiAgICAgICAg ZXhpdCgxKTsNCiAgICB9DQoNCiAgICBpID0gYXRvaShhcmd2WzFdKTsNCiAgICB3aGlsZSAo aSsrKQ0KICAgIHsNCiAgICAgICAgZj0xOw0KICAgICAgICBmb3IgKGo9MjsgajxpOyBqKysp DQogICAgICAgIHsNCiAgICAgICAgICAgIC8vc3RhcnQgb2YgYWZmZWN0ZWQgcGFydA0KDQoJ ICAgIGsgPSBpL2o7IC8vbmV3IGxpbmUJDQoNCiAgICAgICAgICAgIGlmIChrPT1mbG9vcihr KSkgICAgICAvL2NoYW5nZWQgbGluZSwgdGhlIG9sZCB3YXM6LyogaWYgKChpL2opPT1mbG9v cihpL2opKSAqLw0KCSAgICAvL2VuZCBvZiBhZmZlY3RlZCBwYXJ0IAkJIAkNCiAgICAgICAg ICAgIHsNCiAgICAgICAgICAgICAgICBmPTA7DQogICAgICAgICAgICAgICAgYnJlYWs7DQog ICAgICAgICAgICB9DQogICAgICAgIH0NCiAgICAgICAgaWYgKGYpDQogICAgICAgIHsNCiAg ICAgICAgICAgIHByaW50ZigiJS4wZlxuIiwgaSk7DQogICAgICAgICAgICBleGl0KDApOw0K ICAgICAgICB9DQogICAgfQ0KfQ== --_=__=_XaM3_Boundary.1016381066.2A.139949.42.17334.52.42.101010.12193-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 8:10: 6 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E179837B426 for ; Sun, 17 Mar 2002 08:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HGA2585711; Sun, 17 Mar 2002 08:10:02 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Mar 2002 08:10:02 -0800 (PST) Message-Id: <200203171610.g2HGA2585711@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Alexander S. Usov" Subject: Re[2]: bin/35929: A small bug in renice Reply-To: "Alexander S. Usov" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/35929; it has been noted by GNATS. From: "Alexander S. Usov" To: Maxim Konovalov Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re[2]: bin/35929: A small bug in renice Date: Sun, 17 Mar 2002 18:03:41 +0200 Hello Maxim, Friday, March 15, 2002, 10:36:35 PM, you wrote: MK> Could you please try a patch below (mostly from NetBSD): It doesn't match my version of renice.c (FreeBSD 4.5-STABLE) -- Best regards, Alexander To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 8:12:14 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B54E737B420; Sun, 17 Mar 2002 08:12:12 -0800 (PST) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HGCCO86253; Sun, 17 Mar 2002 08:12:12 -0800 (PST) (envelope-from dwmalone) Date: Sun, 17 Mar 2002 08:12:12 -0800 (PST) From: Message-Id: <200203171612.g2HGCCO86253@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, cjc@FreeBSD.org Subject: Re: conf/33545: Add variables to rc.conf for rc.firewall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Add variables to rc.conf for rc.firewall Responsible-Changed-From-To: freebsd-bugs->cjc Responsible-Changed-By: dwmalone Responsible-Changed-When: Sun Mar 17 08:10:25 PST 2002 Responsible-Changed-Why: Firewalling and rc scripts? Sounds like a job for Crist! http://www.freebsd.org/cgi/query-pr.cgi?pr=33545 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 8:18:35 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2FBD37B42F; Sun, 17 Mar 2002 08:18:32 -0800 (PST) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HGIWb87272; Sun, 17 Mar 2002 08:18:32 -0800 (PST) (envelope-from dwmalone) Date: Sun, 17 Mar 2002 08:18:32 -0800 (PST) From: Message-Id: <200203171618.g2HGIWb87272@freefall.freebsd.org> To: sjr@home.net, dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/6612: bsd.man.mk can't handle man pages with ":"s Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: bsd.man.mk can't handle man pages with ":"s State-Changed-From-To: feedback->open State-Changed-By: dwmalone State-Changed-When: Sun Mar 17 08:12:28 PST 2002 State-Changed-Why: This is still a problem - we probably need someone to test the mentioned OpenBSD patch and then import it. http://www.freebsd.org/cgi/query-pr.cgi?pr=6612 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 10:10:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 97F6837B47A for ; Sun, 17 Mar 2002 10:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HIA1j08485; Sun, 17 Mar 2002 10:10:01 -0800 (PST) (envelope-from gnats) Received: from melchior.cuivre.fr.eu.org (melchior.enst.fr [137.194.161.6]) by hub.freebsd.org (Postfix) with ESMTP id B9F4C37B47A for ; Sun, 17 Mar 2002 10:04:47 -0800 (PST) Received: from melusine.cuivre.fr.eu.org (melusine.enst.fr [137.194.160.34]) by melchior.cuivre.fr.eu.org (Postfix) with ESMTP id 2406A7BEA for ; Sun, 17 Mar 2002 19:04:44 +0100 (CET) Received: by melusine.cuivre.fr.eu.org (Postfix, from userid 1000) id 6A9D42C3D1; Sun, 17 Mar 2002 19:04:43 +0100 (CET) Message-Id: <20020317180443.6A9D42C3D1@melusine.cuivre.fr.eu.org> Date: Sun, 17 Mar 2002 19:04:43 +0100 (CET) From: Thomas Quinot Reply-To: Thomas Quinot To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: i386/36015: [patch] boot2.c deobfuscation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36015 >Category: i386 >Synopsis: [patch] boot2.c deobfuscation >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Mar 17 10:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Thomas Quinot >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD melusine.cuivre.fr.eu.org 4.5-STABLE FreeBSD 4.5-STABLE #1: Thu Jan 31 22:48:26 CET 2002 thomas@melusine.cuivre.fr.eu.org:/usr2/obj/usr2/src/sys/MELUSINE i386 >Description: The code in boot2.c is rather obscure. >How-To-Repeat: Look at the sources. >Fix: The following patches clarifies the stream of control at the beginning of main() by making autoboot a two-state variable (instead of a 3-state), with no functional at all. Magical numeric values for ioctrl are replaced with #define'd macros. Hard-coded tick values for calls to keyhit are replaced by static expressions in terms of multiples of a SECOND #define. This change introduces a functional difference: the first time-out will be 1 tick shorter. Index: sys/boot/i386/boot2/boot2.c =================================================================== RCS file: /home/ncvs/src/sys/boot/i386/boot2/boot2.c,v retrieving revision 1.37 diff -u -r1.37 boot2.c --- sys/boot/i386/boot2/boot2.c 13 Mar 2002 11:03:36 -0000 1.37 +++ sys/boot/i386/boot2/boot2.c 15 Mar 2002 12:46:54 -0000 @@ -37,6 +37,11 @@ #include "boot2.h" #include "lib.h" +#define IO_KEYBOARD 1 +#define IO_SERIAL 2 + +#define SECOND 18 /* Circa that many ticks in a second. */ + #define RBX_ASKNAME 0x0 /* -a */ #define RBX_SINGLE 0x1 /* -s */ #define RBX_DFLTROOT 0x5 /* -r */ @@ -136,7 +141,7 @@ static struct bootinfo bootinfo; static int ls; static uint32_t fs_off; -static uint8_t ioctrl = 0x1; +static uint8_t ioctrl = IO_KEYBOARD; void exit(int); static void load(const char *); @@ -279,34 +284,39 @@ bootinfo.bi_memsizes_valid++; for (i = 0; i < N_BIOS_GEOM; i++) bootinfo.bi_bios_geom[i] = drvinfo(i); - autoboot = 2; + + /* Process configuration file */ + + autoboot = 1; readfile(PATH_CONFIG, cmd, sizeof(cmd)); if (*cmd) { printf("%s: %s", PATH_CONFIG, cmd); if (parse(cmd)) autoboot = 0; - *cmd = 0; } - if (autoboot && !*kname) { - if (autoboot == 2) { - memcpy(kname, PATH_BOOT3, sizeof(PATH_BOOT3)); - if (!keyhit(0x37)) { - load(kname); - autoboot = 1; - } - } - if (autoboot == 1) + + /* Try to exec stage 3 boot loader. If interrupted by a keypress, * + * or in case of failure, try to load a kernel directly instaed. */ + + if (autoboot) { + memcpy(kname, PATH_BOOT3, sizeof(PATH_BOOT3)); + if (!keyhit(3 * SECOND)) { + load(kname); memcpy(kname, PATH_KERNEL, sizeof(PATH_KERNEL)); + } } + + /* Present the user with the boot2 prompt. */ + for (;;) { printf(" \n>> FreeBSD/i386 BOOT\n" "Default: %u:%s(%u,%c)%s\n" "boot: ", dsk.drive & DRV_MASK, dev_nm[dsk.type], dsk.unit, 'a' + dsk.part, kname); - if (ioctrl & 0x2) + if (ioctrl & IO_SERIAL) sio_flush(); - if (!autoboot || keyhit(0x5a)) + if (!autoboot || keyhit(5 * SECOND)) getstr(cmd, sizeof(cmd)); else putchar('\n'); @@ -445,9 +455,9 @@ opts |= 1 << RBX_DUAL | 1 << RBX_SERIAL; opts &= ~(1 << RBX_PROBEKBD); } - ioctrl = opts & 1 << RBX_DUAL ? 0x3 : - opts & 1 << RBX_SERIAL ? 0x2 : 0x1; - if (ioctrl & 0x2) + ioctrl = opts & 1 << RBX_DUAL ? (IO_SERIAL | IO_KEYBOARD) : + opts & 1 << RBX_SERIAL ? IO_SERIAL : IO_KEYBOARD; + if (ioctrl & IO_SERIAL) sio_init(); } else { for (q = arg--; *q && *q != '('; q++); @@ -790,9 +800,9 @@ static int xputc(int c) { - if (ioctrl & 0x1) + if (ioctrl & IO_KEYBOARD) putc(c); - if (ioctrl & 0x2) + if (ioctrl & IO_SERIAL) sio_putc(c); return c; } @@ -801,9 +811,9 @@ xgetc(int fn) { for (;;) { - if (ioctrl & 0x1 && getc(1)) + if (ioctrl & IO_KEYBOARD && getc(1)) return fn ? 1 : getc(0); - if (ioctrl & 0x2 && sio_ischar()) + if (ioctrl & IO_SERIAL && sio_ischar()) return fn ? 1 : sio_getc(); if (fn) return 0; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 10:20:15 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F1CB37B480 for ; Sun, 17 Mar 2002 10:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HIK0M09966; Sun, 17 Mar 2002 10:20:00 -0800 (PST) (envelope-from gnats) Received: from melchior.cuivre.fr.eu.org (melchior.enst.fr [137.194.161.6]) by hub.freebsd.org (Postfix) with ESMTP id B6F3B37B444 for ; Sun, 17 Mar 2002 10:10:43 -0800 (PST) Received: from melusine.cuivre.fr.eu.org (melusine.enst.fr [137.194.160.34]) by melchior.cuivre.fr.eu.org (Postfix) with ESMTP id A4DBF7BE7 for ; Sun, 17 Mar 2002 19:10:42 +0100 (CET) Received: by melusine.cuivre.fr.eu.org (Postfix, from userid 1000) id 5405D2C3D2; Sun, 17 Mar 2002 19:10:42 +0100 (CET) Message-Id: <20020317181042.5405D2C3D2@melusine.cuivre.fr.eu.org> Date: Sun, 17 Mar 2002 19:10:42 +0100 (CET) From: Thomas Quinot Reply-To: Thomas Quinot To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: i386/36016: [patch] boot2 inconditionnally allows user interruption Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36016 >Category: i386 >Synopsis: [patch] boot2 inconditionnally allows user interruption >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Mar 17 10:20:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Thomas Quinot >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD melusine.cuivre.fr.eu.org 4.5-STABLE FreeBSD 4.5-STABLE #1: Thu Jan 31 22:48:26 CET 2002 thomas@melusine.cuivre.fr.eu.org:/usr2/obj/usr2/src/sys/MELUSINE i386 >Description: boot2 inconditionnally allows user interruption of the boot process, and the manual choice of a boot device and boot image. In some situations (eg lab machines accessible to students) it may be desirable to prevent such user interference in the boot process. Modern BIOSes offer password protection on changes to the boot device settings; loader(8) allows a password to be set that protects access to the command line. Unfortunately boot2 currently has no provision to disallow user interruption. >How-To-Repeat: Press a key while boot2 is initially disaplying its twiddling /|\-. You can then boot from any device (including floppies). >Fix: The following patch (against -CURRENT) adds a '-n' option that can be specified in /boot.config. When this option is used, no user entry is taken into account by boot2 (neither on the system console nor on the serial console). --- /users/thomas/projects/FreeBSD/src/sys/boot/i386/boot2/boot2.c.orig Fri Mar 15 00:49:06 2002 +++ /users/thomas/projects/FreeBSD/src/sys/boot/i386/boot2/boot2.c.optn Fri Mar 15 13:45:23 2002 @@ -55,2 +55,3 @@ #define RBX_PROBEKBD 0x1e /* -P */ +#define RBX_NOINTR 0x1f /* -n */ @@ -63,3 +64,3 @@ #define ARGS 0x900 -#define NOPT 13 +#define NOPT 14 #define NDEV 5 @@ -105,3 +106,3 @@ -static const char optstr[NOPT] = "DhaCcdgmPprsv"; +static const char optstr[NOPT] = "DhaCcdgmnPprsv"; static const unsigned char flags[NOPT] = { @@ -115,2 +116,3 @@ RBX_MUTE, + RBX_NOINTR, RBX_PROBEKBD, @@ -780,2 +782,4 @@ + if (opts & 1 << RBX_NOINTR) + return 0; t0 = 0; @@ -805,2 +809,4 @@ { + if (opts & 1 << RBX_NOINTR) + return 0; for (;;) { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 11:36:23 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from toybox.ca (matchbox.toybox.ca [216.191.236.11]) by hub.freebsd.org (Postfix) with ESMTP id C42DE37B43B; Sun, 17 Mar 2002 11:36:12 -0800 (PST) Received: from cpe001057001952.cpe.net.cable.rogers.com ([24.103.226.50] helo=litebrite) by toybox.ca with asmtp (Exim 3.35 #2) id 16mgSE-000OVh-00; Sun, 17 Mar 2002 14:36:30 -0500 Message-ID: <033201c1cdeb$10697580$1e02070a@litebrite> From: "Roy Hooper" To: "David Malone" , Cc: References: <200203170935.g2H9ZwM95481@freefall.freebsd.org> <20020317133702.GA33770@walton.maths.tcd.ie> Subject: Re: misc/35992: /etc/rc has no way to force fsck -y at next boot, corrupt filesystems with soft updates required manual intervention Date: Sun, 17 Mar 2002 14:36:38 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Sorry to say that it is not. If I encounter it again, i'll dd it up and gzip it (and open a new bug). I didn't think -p isn't supposed to actually examine the filesystem beyond the clean flag. As such the question is really how did the filesystem get corrupt yet keep the clean flag at the next boot? Perhaps a double hard-cold-reset could cause that -- that is exactly what happened at one point, possibly during an fsck. Perhaps when routines like dscheck detect errors, the dirty flag can be forced to be set and cause unmount to refuse to clear it? Roy -- Roy Hooper Project Manager & Senior UNIX Consultant Decisive Technologies Inc. ----- Original Message ----- From: "David Malone" To: Cc: ; Sent: Sunday, March 17, 2002 8:37 AM Subject: Re: misc/35992: /etc/rc has no way to force fsck -y at next boot, corrupt filesystems with soft updates required manual intervention > > Added documentation for the rc.early(8) script to -CURRENT. > > The main bug here is that fsck -p didn't detect the problem. Is a > copy of the currupted filesystem still available? > > David. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 17: 6:33 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from toybox.ca (matchbox.toybox.ca [216.191.236.11]) by hub.freebsd.org (Postfix) with ESMTP id AA3D937B400; Sun, 17 Mar 2002 17:05:58 -0800 (PST) Received: from cpe001057001952.cpe.net.cable.rogers.com ([24.103.226.50] helo=litebrite) by toybox.ca with asmtp (Exim 3.35 #2) id 16mlbL-000Pfe-00; Sun, 17 Mar 2002 20:06:15 -0500 Message-ID: <040601c1ce19$4383a610$1e02070a@litebrite> From: "Roy Hooper" To: "David Malone" , Cc: References: <200203170935.g2H9ZwM95481@freefall.freebsd.org> <20020317133702.GA33770@walton.maths.tcd.ie> Subject: Re: misc/35992: /etc/rc has no way to force fsck -y at next boot, corrupt filesystems with soft updates required manual intervention Date: Sun, 17 Mar 2002 20:07:22 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org From: "David Malone" To: Cc: ; Sent: Sunday, March 17, 2002 8:37 AM Subject: Re: misc/35992: /etc/rc has no way to force fsck -y at next boot, corrupt filesystems with soft updates required manual intervention > > Added documentation for the rc.early(8) script to -CURRENT. > > The main bug here is that fsck -p didn't detect the problem. Is a > copy of the currupted filesystem still available? I found this fsck log in the nightly security check... It does look like -p did indeed fail when I rebooted it. In the past it didn't detect it at all and just skipped the fsck. > /dev/ad0s1a: > FILESYSTEM CLEAN; SKIPPING CHECKS > /dev/ad0s1a: > clean, 36824 free > (48 frags, 4597 blocks, 0.1% fragmentation) > /dev/ad2s1a: > FILESYSTEM CLEAN; SKIPPING CHECKS > /dev/ad2s1a: > clean, 3010055 free > (0 frags, 3010055 blocks, 0.0% fragmentation) > /dev/ad0s1f: > FILESYSTEM CLEAN; SKIPPING CHECKS > /dev/ad0s1f: > clean, 128623 free > (231 frags, 16049 blocks, 0.2% fragmentation) > /dev/ad0s1g: > FILESYSTEM CLEAN; SKIPPING CHECKS > /dev/ad0s1g: > clean, 2816761 free > (55929 frags, 345104 blocks, 1.6% fragmentation) > /dev/ad0s1e: > FILESYSTEM CLEAN; SKIPPING CHECKS > /dev/ad0s1e: > clean, 124323 free > (99 frags, 15528 blocks, 0.1% fragmentation) > File system preen failed, trying fsck -y . . . > ** /dev/ad0s1a > ** Last Mounted on / > ** Root file system > ** Phase 1 - Check Blocks and Sizes > ** Phase 2 - Check Pathnames > ** Phase 3 - Check Connectivity > ** Phase 4 - Check Reference Counts > ** Phase 5 - Check Cyl groups > 2851 files, 27671 used, 36824 free > (48 frags, 4597 blocks, 0.1% fragmentation) > ** /dev/ad0s1f > ** Last Mounted on /tmp > ** Phase 1 - Check Blocks and Sizes > ** Phase 2 - Check Pathnames > ** Phase 3 - Check Connectivity > ** Phase 4 - Check Reference Counts > ** Phase 5 - Check Cyl groups > 213 files, 376 used, 128623 free > (231 frags, 16049 blocks, 0.2% fragmentation) > PARTIALLY ALLOCATED INODE I=806704 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806705 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806706 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806707 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806708 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806709 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806710 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806711 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806712 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806713 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806714 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806716 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806717 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806718 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806719 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806720 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806721 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806722 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806723 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806724 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806725 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806726 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806727 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806728 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806729 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806730 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806731 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806732 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806733 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806734 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806735 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806736 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806737 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806738 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806739 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806740 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806741 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806742 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806743 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806744 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806745 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806746 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806747 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806748 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806749 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806750 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806751 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > PARTIALLY ALLOCATED INODE I=806752 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > CLEAR? yes > > UNALLOCATED > I=806716 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libalias.so.2.4 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806717 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libc.so.3.1 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806718 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libc_r.so.3.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806719 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libcalendar.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806720 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libcom_err.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806721 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libcurses.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806722 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libdialog.so.3.1 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806723 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libedit.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806724 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libf2c.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806725 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libftpio.so.4.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806726 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libg++.so.4.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806727 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libgmp.so.3.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806728 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libgnuregex.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806729 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libipx.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806730 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libkvm.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806731 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libm.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806732 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libmp.so.3.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806733 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libmytinfo.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806734 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libncurses.so.3.1 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806735 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libopie.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806736 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libpcap.so.2.2 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806737 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libreadline.so.3.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806738 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/librpcsvc.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806739 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libscrypt.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806740 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libscsi.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806741 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libskey.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806742 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libss.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806743 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libstdc++.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806744 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libtelnet.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806745 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libtermcap.so.2.1 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806746 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libutil.so.2.2 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806747 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libvgl.so.1.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806748 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libxpg4.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806749 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libz.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806750 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libcrypt.so.2.0 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806751 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/compat/aout/libtermlib.so.2.1 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806752 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/libln.a > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806752 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/libl.a > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806752 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/libfl.a > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806704 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/libkadm5clnt_p.a > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806705 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/libkadm5clnt.so.3 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806706 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/libkadm5clnt.so > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806707 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/libkadm5srv.a > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806708 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/libkadm5srv_p.a > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806709 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/libkadm5srv.so.3 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806710 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/libkadm5srv.so > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806711 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/libgssapi.a > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806712 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/libgssapi_p.a > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806713 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/libgssapi.so.3 > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > UNALLOCATED > I=806714 OWNER=root MODE=0 > SIZE=0 MTIME=Dec 31 19:00 1969 > NAME=/lib/libgssapi.so > > UNEXPECTED SOFT UPDATE INCONSISTENCY > > REMOVE? yes > > FREE BLK COUNT(S) WRONG IN SUPERBLK > > SALVAGE? yes > > SUMMARY INFORMATION BAD > > SALVAGE? yes > > BLK(S) MISSING IN BIT MAPS > > SALVAGE? yes > > 125424 files, 668897 used, 2818403 free > (55835 frags, 345321 blocks, 1.6% fragmentation) > > ***** FILE SYSTEM WAS MODIFIED ***** > ** /dev/ad0s1e > ** Last Mounted on /var > ** Phase 1 - Check Blocks and Sizes > ** Phase 2 - Check Pathnames > ** Phase 3 - Check Connectivity > ** Phase 4 - Check Reference Counts > ** Phase 5 - Check Cyl groups > 252 files, 4676 used, 124323 free > (99 frags, 15528 blocks, 0.1% fragmentation) > ** /dev/ad2s1a > ** Last Mounted on /stage01 > ** Phase 1 - Check Blocks and Sizes > ** Phase 2 - Check Pathnames > ** Phase 3 - Check Connectivity > ** Phase 4 - Check Reference Counts > ** Phase 5 - Check Cyl groups > 962 files, 735620 used, 3010055 free > (0 frags, 3010055 blocks, 0.0% fragmentation) > [1] 101 > Sat Mar 16 20:41:58 EST 2002 -- Roy Hooper Project Manager & Senior UNIX Consultant Decisive Technologies Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 17:40: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 341DA37B405 for ; Sun, 17 Mar 2002 17:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I1e1K96988; Sun, 17 Mar 2002 17:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9417937B400 for ; Sun, 17 Mar 2002 17:37:49 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I1bnv96646; Sun, 17 Mar 2002 17:37:49 -0800 (PST) (envelope-from nobody) Message-Id: <200203180137.g2I1bnv96646@freefall.freebsd.org> Date: Sun, 17 Mar 2002 17:37:49 -0800 (PST) From: David Yeske To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/36032: hard coded variables in src/release/Makefile Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36032 >Category: misc >Synopsis: hard coded variables in src/release/Makefile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Mar 17 17:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: David Yeske >Release: HEAD >Organization: >Environment: FreeBSD aurora 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Mon Mar 4 10:49:57 PST 2002 root@aurora:/home/obj/usr/src/sys/GENERIC i386 >Description: some variables in src/release/Makefile are hard coded >How-To-Repeat: >Fix: http://pigseye.kennesaw.edu/~dyeske/freebsd/release.patch >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 17:55:27 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id E183937B416 for ; Sun, 17 Mar 2002 17:55:24 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id MAA22688; Mon, 18 Mar 2002 12:55:19 +1100 Date: Mon, 18 Mar 2002 12:55:17 +1100 (EST) From: Bruce Evans X-X-Sender: To: Arjan Knepper Cc: Subject: Re: i386/36003: Cyclades Cyclom YeP causes panics on FreeBSD with SMP kernels In-Reply-To: <200203171510.g2HFA6G74565@freefall.freebsd.org> Message-ID: <20020318124134.I777-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, 17 Mar 2002, Arjan Knepper wrote: > ... > #3 0xc0273fca in bsl1 () > #4 0xc0263920 in Xfastintr4 () > #5 0xc0280d54 in splx (ipl=3223420601) at ../../i386/isa/ipl_funcs.c:237 > #6 0xc0217eb9 in ffs_read (ap=0xd78e0e98) at > ../../ufs/ufs/ufs_readwrite.c:347 Can you provide a more detailed trace of these frames? gcc can't do it by default because some of the functions are missing frame pointers. Part of the problem is obvious: Xfastintr4() calls s_lock() which detects reentrancy and calls bsl1() to panic. I can't see how the reentrancy can happen. The other parts of the trace are mysterious. ffs_read() doesn't call splx() directly, so there must be another interrupt between ffs_read() and splx(), but I would have expected more traces of it to show. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 18:10:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BA45737B405 for ; Sun, 17 Mar 2002 18:10:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I2A6v06074; Sun, 17 Mar 2002 18:10:06 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Mar 2002 18:10:06 -0800 (PST) Message-Id: <200203180210.g2I2A6v06074@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Gilbert Subject: Re: kern/35873: recent -STABLE dhclient doesn't see wireless card Reply-To: David Gilbert Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/35873; it has been noted by GNATS. From: David Gilbert To: freebsd-gnats-submit@FreeBSD.org, dgilbert@velocet.ca Cc: Subject: Re: kern/35873: recent -STABLE dhclient doesn't see wireless card Date: Sun, 17 Mar 2002 21:08:56 -0500 I see that dhclient was recently upgraded, but I just confirmed that a 4.5-RELEASE kernel (with the same 4.5-STABLE binaries) doesn't exhibit this behaviour. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 22:40: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CF02637B41D for ; Sun, 17 Mar 2002 22:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I6e1a63540; Sun, 17 Mar 2002 22:40:01 -0800 (PST) (envelope-from gnats) Received: from descent.robbins.dropbear.id.au (078.b.004.mel.iprimus.net.au [210.50.37.78]) by hub.freebsd.org (Postfix) with ESMTP id 60A1C37B421 for ; Sun, 17 Mar 2002 22:32:38 -0800 (PST) Received: (from tim@localhost) by descent.robbins.dropbear.id.au (8.11.6/8.11.6) id g2I6WCE00274; Mon, 18 Mar 2002 17:32:12 +1100 (EST) (envelope-from tim) Message-Id: <200203180632.g2I6WCE00274@descent.robbins.dropbear.id.au> Date: Mon, 18 Mar 2002 17:32:12 +1100 (EST) From: "Tim J. Robbins" Reply-To: "Tim J. Robbins" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/36038: sendfile(2) on smbfs fails, exposes kernel memory to userspace Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36038 >Category: kern >Synopsis: sendfile(2) on smbfs fails, exposes kernel memory to userspace >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Mar 17 22:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Tim J. Robbins >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD descent.robbins.dropbear.id.au 4.5-STABLE FreeBSD 4.5-STABLE #7: Mon Mar 18 16:43:16 EST 2002 tim@descent.robbins.dropbear.id.au:/usr/obj/usr/src/sys/DESCENT i386 >Description: sendfile(2) on a file on a smbfs mount usually fails with errno == EFAULT. However, in certain situations it can accidentally leak what appears to be random kernel memory. >How-To-Repeat: This simple program uses sendfile() to copy the specified files to standard output (which must be a socket): #include #include #include #include #include #include int main(int argc, char *argv[]) { const char *fn; int fd; while ((fn = *++argv) != NULL) { if ((fd = open(fn, O_RDONLY)) < 0) err(1, "open %s", fn); if (sendfile(fd, STDOUT_FILENO, 0, 0, NULL, NULL, 0) < 0) err(1, "sendfile %s", fn); close(fd); } return(0); } When run from inetd, it never gives the actual contents of the file like it should (and does on other filesystems). It often gets EFAULT, other times it dumps random garbage. A more complicated program demonstrating this problem is thttpd (in ports), which uses sendfile(2) to serve static pages. It does not work if the pages it should serve are on smbfs. >Fix: Not known. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 17 23:20:57 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F69C37B435 for ; Sun, 17 Mar 2002 23:20:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I7K4J75063; Sun, 17 Mar 2002 23:20:04 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Mar 2002 23:20:04 -0800 (PST) Message-Id: <200203180720.g2I7K4J75063@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Greenman Subject: Re: kern/36038: sendfile(2) on smbfs fails, exposes kernel memory to userspace Reply-To: David Greenman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/36038; it has been noted by GNATS. From: David Greenman To: "Tim J. Robbins" Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: kern/36038: sendfile(2) on smbfs fails, exposes kernel memory to userspace Date: Sun, 17 Mar 2002 23:12:28 -0800 >sendfile(2) on a file on a smbfs mount usually fails with errno == EFAULT. >However, in certain situations it can accidentally leak what appears to >be random kernel memory. After a quick look at this, it appears that md_get_uio() (located in kern/sysbr_mchain.c) doesn't support UIO_NOCOPY, which sendfile() requires. This function (and it's children) appear to be only used by smbfs. -DG David Greenman Co-founder, The FreeBSD Project - http://www.freebsd.org President, TeraSolutions, Inc. - http://www.terasolutions.com President, Download Technologies, Inc. - http://www.downloadtech.com Pave the road of life with opportunities. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 0:51:14 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B39CE37B4A5 for ; Mon, 18 Mar 2002 00:50:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I8o1V97173; Mon, 18 Mar 2002 00:50:01 -0800 (PST) (envelope-from gnats) Received: from descent.robbins.dropbear.id.au (060.c.001.mel.iprimus.net.au [203.134.131.60]) by hub.freebsd.org (Postfix) with ESMTP id 5DAE437B404 for ; Mon, 18 Mar 2002 00:47:50 -0800 (PST) Received: (from tim@localhost) by descent.robbins.dropbear.id.au (8.11.6/8.11.6) id g2I8kgg04914; Mon, 18 Mar 2002 19:46:42 +1100 (EST) (envelope-from tim) Message-Id: <200203180846.g2I8kgg04914@descent.robbins.dropbear.id.au> Date: Mon, 18 Mar 2002 19:46:42 +1100 (EST) From: "Tim J. Robbins" Reply-To: "Tim J. Robbins" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/36041: mount_smbfs can't cope without password database Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36041 >Category: bin >Synopsis: mount_smbfs can't cope without password database >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 Mar 18 00:50:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Tim J. Robbins >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD descent.robbins.dropbear.id.au 4.5-STABLE FreeBSD 4.5-STABLE #7: Mon Mar 18 16:43:16 EST 2002 tim@descent.robbins.dropbear.id.au:/usr/obj/usr/src/sys/DESCENT i386 >Description: mount_smbfs assumes an entry for the current effective user id exists in the password database, and proceeds to deference a NULL pointer if there is not one. This stops mount_smbfs working from an install disk without password databases and is also sloppy coding practice. >How-To-Repeat: Try to use mount_smbfs without a password database, or check ctx.c. Credit goes to David Yeske for discovering this bug. >Fix: This patch causes it to fail gracefully if there isn't a password database entry for the current user. The superuser is a special case, and it uses the name "root" when an entry does not exist. Index: ctx.c =================================================================== RCS file: /home/ncvs/src/contrib/smbfs/lib/smb/ctx.c,v retrieving revision 1.1.1.2 diff -u -r1.1.1.2 ctx.c --- ctx.c 2001/12/26 15:35:09 1.1.1.2 +++ ctx.c 2002/03/18 08:35:45 @@ -64,7 +64,9 @@ int minlevel, int maxlevel, int sharetype) { int opt, error = 0; + uid_t euid; const char *arg, *cp; + struct passwd *pwd; bzero(ctx,sizeof(*ctx)); error = nb_ctx_create(&ctx->ct_nb); @@ -92,8 +94,14 @@ ctx->ct_sh.ioc_group = SMBM_ANY_GROUP; nb_ctx_setscope(ctx->ct_nb, ""); - smb_ctx_setuser(ctx, getpwuid(geteuid())->pw_name); - endpwent(); + euid = geteuid(); + if ((pwd = getpwuid(euid)) != NULL) { + smb_ctx_setuser(ctx, pwd->pw_name); + endpwent(); + } else if (euid == 0) + smb_ctx_setuser(ctx, "root"); + else + return 0; if (argv == NULL) return 0; for (opt = 1; opt < argc; opt++) { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 1:51:35 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C464837B402; Mon, 18 Mar 2002 01:51:31 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I9pVY14218; Mon, 18 Mar 2002 01:51:31 -0800 (PST) (envelope-from cjc) Date: Mon, 18 Mar 2002 01:51:31 -0800 (PST) From: Message-Id: <200203180951.g2I9pVY14218@freefall.freebsd.org> To: kondo@ysyslab.co.jp, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org, cjc@FreeBSD.org Subject: Re: misc/14511: chapss Y2K problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: chapss Y2K problem State-Changed-From-To: feedback->analyzed State-Changed-By: cjc State-Changed-When: Mon Mar 18 01:49:37 PST 2002 State-Changed-Why: Fixed in -CURRENT. Responsible-Changed-From-To: freebsd-bugs->cjc Responsible-Changed-By: cjc Responsible-Changed-When: Mon Mar 18 01:49:37 PST 2002 Responsible-Changed-Why: I've been working in chpass(8). Looking at fixing some old PRs. Will handle MFC to -STABLE. http://www.freebsd.org/cgi/query-pr.cgi?pr=14511 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 2: 1:28 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D6BE37B400; Mon, 18 Mar 2002 02:01:27 -0800 (PST) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IA1Rb16955; Mon, 18 Mar 2002 02:01:27 -0800 (PST) (envelope-from schweikh) Date: Mon, 18 Mar 2002 02:01:27 -0800 (PST) From: Message-Id: <200203181001.g2IA1Rb16955@freefall.freebsd.org> To: schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org, schweikh@FreeBSD.org Subject: Re: bin/22612: crontab -e failures Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: crontab -e failures Responsible-Changed-From-To: freebsd-bugs->schweikh Responsible-Changed-By: schweikh Responsible-Changed-When: Mon Mar 18 02:00:46 PST 2002 Responsible-Changed-Why: I'll take a look at this. http://www.freebsd.org/cgi/query-pr.cgi?pr=22612 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 2:35:52 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4818B37B404; Mon, 18 Mar 2002 02:35:51 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IAZpa30577; Mon, 18 Mar 2002 02:35:51 -0800 (PST) (envelope-from cjc) Date: Mon, 18 Mar 2002 02:35:51 -0800 (PST) From: Message-Id: <200203181035.g2IAZpa30577@freefall.freebsd.org> To: dgilbert@velocet.ca, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35873: recent -STABLE dhclient doesn't see wireless card Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: recent -STABLE dhclient doesn't see wireless card State-Changed-From-To: open->closed State-Changed-By: cjc State-Changed-When: Mon Mar 18 02:35:27 PST 2002 State-Changed-Why: Submitter reports bug has been fixed. Requests PR closed. http://www.freebsd.org/cgi/query-pr.cgi?pr=35873 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 4: 6:46 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id A538F37B41B; Mon, 18 Mar 2002 04:06:41 -0800 (PST) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 18 Mar 2002 12:06:37 +0000 (GMT) Date: Mon, 18 Mar 2002 12:06:36 +0000 From: David Malone To: Roy Hooper Cc: cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/35992: /etc/rc has no way to force fsck -y at next boot, corrupt filesystems with soft updates required manual intervention Message-ID: <20020318120636.GA47234@walton.maths.tcd.ie> References: <200203170935.g2H9ZwM95481@freefall.freebsd.org> <20020317133702.GA33770@walton.maths.tcd.ie> <040601c1ce19$4383a610$1e02070a@litebrite> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <040601c1ce19$4383a610$1e02070a@litebrite> User-Agent: Mutt/1.3.25i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Mar 17, 2002 at 08:07:22PM -0500, Roy Hooper wrote: > > > Added documentation for the rc.early(8) script to -CURRENT. > > > > The main bug here is that fsck -p didn't detect the problem. Is a > > copy of the currupted filesystem still available? > > I found this fsck log in the nightly security check... It does look like -p > did indeed fail when I rebooted it. In the past it didn't detect it at all > and just skipped the fsck. I wonder if fsck marked the disk as clean at some stage when there was still an inconsistancy - that might explain it. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 4:30: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6647837B419 for ; Mon, 18 Mar 2002 04:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ICU3L84249; Mon, 18 Mar 2002 04:30:03 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Mar 2002 04:30:03 -0800 (PST) Message-Id: <200203181230.g2ICU3L84249@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Tarjei.Jensen@kvaerner.com Subject: Re: misc/35150: FreeBSD 4.5 won't install ... out of inodes Reply-To: Tarjei.Jensen@kvaerner.com Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/35150; it has been noted by GNATS. From: Tarjei.Jensen@kvaerner.com To: freebsd-gnats-submit@FreeBSD.org, budden@nps.navy.mil Cc: Subject: Re: misc/35150: FreeBSD 4.5 won't install ... out of inodes Date: Mon, 18 Mar 2002 12:29:44 -0000 I had the same problem, just so nobody think the original poster is alone with the problem. Just re-iterate the problem: I just tried to install FreeBSD 4.5 on a 1,2GB harddisk. I tried to install user, ports and Linux support. How I fixed it: Since the install failed because the system ran out of inodes on the /usr partition during the Linux support install, I changed the inode size to 2K by adding "-i 2048" to the newfs parameter list in the options page in sysinstall. Perhaps the install program should be a bit smarter with regards to inode sizes on the various partitions? Or perhaps the install program should let newfs decide on its own how big the various parameters should be? Perhaps this is such a showstopper that a new iso should be issued? greetings, To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 6:30: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CBD037B405 for ; Mon, 18 Mar 2002 06:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IEU1l21468; Mon, 18 Mar 2002 06:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C0FEC37B400 for ; Mon, 18 Mar 2002 06:21:24 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IELOA17062; Mon, 18 Mar 2002 06:21:24 -0800 (PST) (envelope-from nobody) Message-Id: <200203181421.g2IELOA17062@freefall.freebsd.org> Date: Mon, 18 Mar 2002 06:21:24 -0800 (PST) From: max To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/36048: stallo of shell Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36048 >Category: misc >Synopsis: stallo of shell >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 Mar 18 06:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: max >Release: 4.4 >Organization: none >Environment: FreeBSD genocide.freebsd 4.4-RELEASE FreeBSD 4.4-RELEASE #1: Mon Mar 11 00:02:17 CET 2002 genocide@:/usr/obj/usr/src/sys/GENOCIDE i386 >Description: if you digit from shell: ee /etc/rc.conf |grep search_me You must see that the shell is in crash.the correct example of this cmd is: cat /etc/rc.conf |grep search_me Escuse me for my english. Massimiliano >How-To-Repeat: if you digit from shell: ee /etc/rc.conf |grep search_me You must see that the shell is in crash.the correct example of this cmd is: cat /etc/rc.conf |grep search_me Escuse me for my english. Massimiliano >Fix: i don't know >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 6:45: 5 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from spitfire.velocet.net (spitfire.velocet.net [216.138.223.227]) by hub.freebsd.org (Postfix) with ESMTP id 596BC37B402 for ; Mon, 18 Mar 2002 06:44:57 -0800 (PST) Received: from office.tor.velocet.net (trooper.velocet.net [216.138.242.2]) by spitfire.velocet.net (Postfix) with ESMTP id 8A857FB4591 for ; Mon, 18 Mar 2002 09:44:56 -0500 (EST) Received: (from dgilbert@localhost) by office.tor.velocet.net (8.11.6/8.9.3) id g2IEiuG02498; Mon, 18 Mar 2002 09:44:56 -0500 (EST) (envelope-from dgilbert) From: David Gilbert MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15509.64872.448780.692766@trooper.velocet.net> Date: Mon, 18 Mar 2002 09:44:56 -0500 To: freebsd-bugs@FreeBSD.org Subject: Re: kern/35873: recent -STABLE dhclient doesn't see wireless card In-Reply-To: <200203181035.g2IAZpa30577@freefall.freebsd.org> References: <200203181035.g2IAZpa30577@freefall.freebsd.org> X-Mailer: VM 7.00 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I'd like to point out that I did not say that. To be more clear: 4.5-STABLE kernel with 4.5-STABLE userland exhibits the bug. 4.5-RELEASE kernel with 4.5-STABLE userland does not. The bug remains in 4.5-STABLE, but is likely a kernel change, not a userland change. Another fellow in our group with a toshiba laptop (mine is a Fujitsu) has a modem card. He observes each keypress producing the previous keypresses character with -STABLE. This would would seem to be an interrupt delivery fuckup (I've see that problem before). ... I'm guessing they're related. Dave. -- ============================================================================ |David Gilbert, Velocet Communications. | Two things can only be | |Mail: dgilbert@velocet.net | equal if and only if they | |http://daveg.ca | are precisely opposite. | =========================================================GLO================ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 7:18:42 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 26B5E37B841; Mon, 18 Mar 2002 07:16:16 -0800 (PST) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IFGGU45505; Mon, 18 Mar 2002 07:16:16 -0800 (PST) (envelope-from jhb) Date: Mon, 18 Mar 2002 07:16:16 -0800 (PST) From: Message-Id: <200203181516.g2IFGGU45505@freefall.freebsd.org> To: msch@snafu.de, jhb@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/35088: USB-Mouse configuration with sysinstall Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: USB-Mouse configuration with sysinstall State-Changed-From-To: open->closed State-Changed-By: jhb State-Changed-When: Mon Mar 18 07:14:50 PST 2002 State-Changed-Why: Sysinstall does not need to configure USB mice. Sysinstall already runs usbd automatically if the system supports USB. The default ubsd.conf file runs moused when a USB mouse is attached automatically, so USB mice work fine out of the box by merely plugging in the mouse. http://www.freebsd.org/cgi/query-pr.cgi?pr=35088 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 7:23:39 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.svzserv.kemerovo.su (mail.svzserv.kemerovo.su [213.184.65.66]) by hub.freebsd.org (Postfix) with ESMTP id 5940337B988; Mon, 18 Mar 2002 07:21:29 -0800 (PST) Received: from D00015.dialonly.kemerovo.su (www2.svzserv.kemerovo.su [213.184.65.86]) by mail.svzserv.kemerovo.su (8.11.6/8.11.6) with ESMTP id g2IFKct52918; Mon, 18 Mar 2002 22:20:43 +0700 (NKZ) (envelope-from eugen@d00015.dialonly.kemerovo.su) Received: (from eugen@localhost) by D00015.dialonly.kemerovo.su (8.11.6/8.11.6) id g2IFHtw00476; Mon, 18 Mar 2002 22:17:55 +0700 (KRAT) (envelope-from eugen) Date: Mon, 18 Mar 2002 22:17:54 +0700 From: Eugene Grosbein To: Matthew Dillon Cc: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/35969: kernel option PPP_DEFLATE often procudes kernel panics; PPP_BSDCOMP sometimes procudes stalled connections Message-ID: <20020318221754.A428@grosbein.pp.ru> References: <200203160808.g2G880k17109@D00015.dialonly.kemerovo.su> <200203160820.g2G8K1s38158@freefall.freebsd.org> <20020317125834.A419@grosbein.pp.ru> <200203170647.g2H6lQ621576@apollo.backplane.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200203170647.g2H6lQ621576@apollo.backplane.com>; from dillon@apollo.backplane.com on Sat, Mar 16, 2002 at 10:47:26PM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, Mar 16, 2002 at 10:47:26PM -0800, Matthew Dillon wrote: > :Now it does not panic. > :So it's possible that last commit to src/sys/net/if_ppp.c broke something: > : > :revision 1.67.2.2 > :date: 2002/02/13 00:43:10; author: dillon; state: Exp; lines: +4 -3 > :MFC remove the MFREE() mbuf macro and cleanup twists in related code. > > Hmm. That change should not have made any difference, but it's easy > to test... upgrade your system to 2002.02.13.00.50.00 (just after > my commit) and see if the bug comes back. If it does I will run through > that entire commit. I perused it just now and did not see anything > specifically wrong. I was wrong, your commit wasn't the cause of the panics. Now I believe I've isolated the moment of breakage. The system updated (or downgraded) to tag=RELENG_4 date=2002.02.22.00.00.00 does not panic using PPP_DEFLATE but suffers from stalled connections. One have to send USR2 to pppd to revive PPP link. man pppd says: SIGUSR2 This signal causes pppd to renegotiate compression. This can be useful to re-enable compression after it has been disabled as a result of a fatal decom- pression error. (Fatal decompression errors gener- ally indicate a bug in one or other implementa- tion.) The system updated to tag=RELENG_4 date=2002.02.22.03.00.00 quickly panics if PPP_DEFLATE is used. It seems it panics due to corrupted kernel area. There was the only commit to RELENG_4 during this period, it patched src/lib/libz/infblock.c and src/sys/net/zlib.c The latter file is used by kernel ppp driver. I'd like to investigate this further but I'm definitly not a kernel hacker. The only workaround I've found is using 'nodeflate' option of pppd. This effectivly disables usage of deflate compression and eliminates panics even for kernel built from sources after 2002.02.22.03.00.00 Eugene Grosbein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 9:51:34 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 81B8B37B404; Mon, 18 Mar 2002 09:51:32 -0800 (PST) Received: (from brooks@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IHpWB82363; Mon, 18 Mar 2002 09:51:32 -0800 (PST) (envelope-from brooks) Date: Mon, 18 Mar 2002 09:51:32 -0800 (PST) From: Message-Id: <200203181751.g2IHpWB82363@freefall.freebsd.org> To: nsayer@quack.kfu.com, brooks@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/32124: Cannot set 128 bit wep key on prism2 (wi0) cards Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Cannot set 128 bit wep key on prism2 (wi0) cards State-Changed-From-To: feedback->closed State-Changed-By: brooks State-Changed-When: Mon Mar 18 09:51:06 PST 2002 State-Changed-Why: Fixed in current and stable. http://www.freebsd.org/cgi/query-pr.cgi?pr=32124 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 10:36:48 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from athene.akon-ag.de (athene.publity.de [213.61.128.140]) by hub.freebsd.org (Postfix) with ESMTP id 9A2B737B402; Mon, 18 Mar 2002 10:36:44 -0800 (PST) Received: from warpgondel ([192.168.4.138]) by athene.akon-ag.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id TAA14982; Mon, 18 Mar 2002 19:36:42 +0100 Message-ID: <027e01c1ceab$b4734ff0$8a04a8c0@warpgondel> From: "Oliver Fischer" To: , References: <200203152150.g2FLo1p84313@freefall.freebsd.org> Subject: Re: misc/35934: Only root can Date: Mon, 18 Mar 2002 19:35:38 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I found a solution for the problem. I updated to FreeBSD 4.5. BYe Oliver To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 10:40: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1FA6D37B405 for ; Mon, 18 Mar 2002 10:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IIe3J94581; Mon, 18 Mar 2002 10:40:03 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Mar 2002 10:40:03 -0800 (PST) Message-Id: <200203181840.g2IIe3J94581@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Oliver Fischer" Subject: Re: misc/35934: Only root can Reply-To: "Oliver Fischer" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/35934; it has been noted by GNATS. From: "Oliver Fischer" To: , Cc: Subject: Re: misc/35934: Only root can Date: Mon, 18 Mar 2002 19:35:38 +0100 I found a solution for the problem. I updated to FreeBSD 4.5. BYe Oliver To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 10:52:40 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7298537B425; Mon, 18 Mar 2002 10:52:35 -0800 (PST) Received: (from ceri@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IIqZF96941; Mon, 18 Mar 2002 10:52:35 -0800 (PST) (envelope-from ceri) Date: Mon, 18 Mar 2002 10:52:35 -0800 (PST) From: Message-Id: <200203181852.g2IIqZF96941@freefall.freebsd.org> To: plexus@snafu.de, ceri@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/35934: Only root can Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Only root can State-Changed-From-To: open->closed State-Changed-By: ceri State-Changed-When: Mon Mar 18 10:51:58 PST 2002 State-Changed-Why: Submitter reports problem no longer exists. http://www.freebsd.org/cgi/query-pr.cgi?pr=35934 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 11: 0:43 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B9BA937B440 for ; Mon, 18 Mar 2002 11:00:16 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IJ0GP98333 for freebsd-bugs@freebsd.org; Mon, 18 Mar 2002 11:00:16 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 18 Mar 2002 11:00:16 -0800 (PST) Message-Id: <200203181900.g2IJ0GP98333@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: open PR's (mis)filed to gnats-admin and in limbo Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/12/22] pending/33099gnats-adminRe: These ports are not user:group safe- o [2002/01/26] pending/34296gnats-adminRe: Problem Report misc/34194: 'make rele o [2002/03/08] pending/35672gnats-admin[Patch] OpenSSH doesn't install o [2002/03/08] pending/35690gnats-adminpatch: sort master sites for x11-servers o [2002/03/11] pending/35780gnats-admin o [2002/03/11] pending/35808gnats-adminRe: Update port: www/moinmoin o [2002/03/12] pending/35822gnats-admin o [2002/03/12] pending/35832gnats-adminRe: www/mozilla 0.9.9,1 broken o [2002/03/16] pending/35970gnats-adminRe: kern/35969: kernel option PPP_DEFLATE o [2002/03/16] pending/35975gnats-adminRe: docs/35949: [PATCH] rtprio(1) man pag o [2002/03/16] pending/35979gnats-adminRe: gnu/35892: GCC dies allocating arrays o [2002/03/16] pending/35999gnats-admin o [2002/03/17] pending/36011gnats-adminRe: [PATCH] Critical PERFMON fix for DEVF 13 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/03/09] pending/35721gnats-adminUpdate port: textproc/py2html 1 problem total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 11: 5: 7 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0547C37B416 for ; Mon, 18 Mar 2002 11:00:27 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IJ0Mx98385 for freebsd-bugs@freebsd.org; Mon, 18 Mar 2002 11:00:22 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 18 Mar 2002 11:00:22 -0800 (PST) Message-Id: <200203181900.g2IJ0Mx98385@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1998/05/13] kern/6630 phk [PATCH] Fix for Cyrix I8254 bug o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 f [1999/02/20] kern/10172 [panics] Kernel (esp kern/sys_pipe.c) die o [1999/05/31] kern/11966 ru TCP copies send and receive socket buffer s [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch f [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde o [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG o [1999/08/10] i386/13059 imp Install aborts with panic:aha0: Invalid C f [1999/09/12] kern/13709 panic: sched_sync: fsync failed o [1999/10/30] kern/14614 dillon VM DoS attack (with exploit attached) f [1999/11/22] i386/15040 Installation problems with 3.x FreeBSD f [1999/12/05] kern/15281 Please fix handling Ross(?) host to PCI b o [2000/01/17] misc/16157 green "fire" screensave kills network performan o [2000/02/14] kern/16708 wpaul 3Com 3c900-Combo Ehternet card make kerne o [2000/02/18] i386/16802 An user math program have the system on K o [2000/03/15] i386/17391 jhb FreeBSD boot loader does not recognize ke o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy f [2000/03/28] alpha/17642 alpha FreeBSD/alpha 4.0 RELEASE installation fa o [2000/05/09] misc/18466 dillon install via nfs or ftp media silently tru s [2000/05/17] misc/18641 paul FreeBSD V4.0 crashes when using ifconfig f [2000/05/29] kern/18874 peter 32bit NFS servers export wrong negative v o [2000/06/13] kern/19247 jasone uthread_sigaction.c does not do anything o [2000/06/14] misc/19257 Detection of connected ports on a Cyclom a [2000/07/01] conf/19629 dougb /etc/rc.sysctl can't set all syctls s [2000/07/05] kern/19722 rwatson FreeBSD box responds to broadcast IP o [2000/07/12] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/30] i386/20308 yokota vidcontrol VESA_800x600 causes a kernel p f [2000/07/31] kern/20310 groudier Symbios 53c875j drivers don't work o [2000/08/03] kern/20375 APM doesn't work properly! Suspend/resum o [2000/08/05] kern/20429 yokota setting flags 0x1 in atkbd0 locks keyboar o [2000/08/08] i386/20495 yokota 4.1-STABLE and 4.1-RELEASE: keyboard does o [2000/08/28] kern/20895 groudier sym driver doesn't work for SYM53C895A o [2000/09/04] misc/21025 msmith BTX loader 1.00 gets 1Gb of memory from B f [2000/09/04] i386/21042 mdodd Keyboard driver problems with PS/2 Model o [2000/09/12] kern/21220 msmith mlx0: I/O error - attempt to write beyond o [2000/09/14] kern/21272 wpaul USB interrupts seem to be turned off o [2000/09/14] kern/21278 gibbs ahc driver wedges on stressed SMP system o [2000/09/17] kern/21323 msmith Lock up at boot on Acer507DX with pci.c 1 f [2000/09/19] kern/21397 joerg Floppy drive doesn't work on Compaq ProLi f [2000/10/05] i386/21772 No interrupts for 39160 PCI adapter in PR o [2000/11/01] kern/22494 wpaul Fatal trap 12: page fault while in kernel f [2000/11/02] kern/22557 fatal kernel trap 0x2(memory management) f [2000/11/03] bin/22595 brian telnetd tricked into using arbitrary peer o [2000/11/18] kern/22953 keu driver throws 'usb error on rx: IOERR o [2000/11/20] gnu/22972 obrien Internal Compiler Error o [2000/11/25] misc/23103 lacks many ISO C99 features (NAN f [2000/11/27] i386/23145 brian pppoe-test-program panics the server o [2000/11/29] kern/23173 read hangs in linux emulation f [2000/12/09] kern/23411 SMP Kernel Freezes Machines on Dual Proce a [2000/12/14] kern/23547 msmith only one logical device on Mylex AcceleRA f [2000/12/14] i386/23548 4.x causes Thinkpad 560X disk to spin up/ o [2001/01/17] kern/24418 jasone read/write in thread library (-lc_r) does f [2001/01/30] kern/24740 cy filesystem corruption CFP1080 CAM SCSI ca a [2001/02/02] kern/24811 Networking in FreeBSD 4.2-RELEASE doesn't f [2001/02/20] kern/25235 OS Hungs up when using with a Battery of f [2001/02/23] i386/25328 4.x stable kernel crash: page fault f [2001/02/27] misc/25407 Error while booting 4.2 : ahc0 Signaled A o [2001/03/09] kern/25632 n_hibma USB modem (umodem) may destroy the cfreel o [2001/03/20] kern/25950 obrien Bad drives on asr look zero-length and pa o [2001/03/24] kern/26048 obrien 4.3-RC: SMP and asr driver don't work to f [2001/03/30] kern/26223 Linux /compat/linux/dev devices doesn't w f [2001/03/30] kern/26224 dillon VFS Panic/SMP/CFLOW(HEAVY network)/Heavy o [2001/04/02] bin/26305 mjacob Cannnot restore partions with FreeBSD 4.x f [2001/04/12] kern/26510 kernel panic while booting on Intel STL2 o [2001/04/13] kern/26549 IPsec policies for more than one pair of f [2001/04/20] i386/26736 System freeze booting from (i386) 4.3 flo f [2001/04/25] kern/26840 dillon process doing mmap() over nfs hangs in vm o [2001/05/02] ports/27036 sobomax All Ports using Mesa3 are required with - f [2001/05/02] i386/27042 4.3-RELEASE installation from CDROM fails f [2001/05/02] kern/27048 Bus support (I believe) broken in freeBSD f [2001/05/03] kern/27059 groudier (symbios) SCSI subsystem hangs under heav a [2001/05/10] kern/27250 bp unionfs filesystem panics in large number o [2001/05/11] kern/27275 kernel bug ? f [2001/05/17] conf/27408 rc.network hangs at rpc.umntall if stale o [2001/06/07] bin/27939 rlogin uses wrong IP address for remote h o [2001/06/08] kern/27985 Recent -STABLE crashes when accessing dc o [2001/06/09] kern/27987 New ATA Driver failure with VIA Southbrid a [2001/06/09] i386/27991 ssh 1 and 2 login with keys is not possib o [2001/06/09] bin/28002 ru SHARED=symlinks is broken f [2001/06/14] kern/28162 RELENG_4 (4.2, 4.3) Panics when system ha f [2001/06/14] kern/28163 in_pcballoc Panic in RELENG_4 with large o [2001/06/25] kern/28402 kernel panic caused by softupdates (may b o [2001/06/25] kern/28418 dwmalone XFree86 4.X panics FreeBSD 4.3-STABLE on o [2001/06/27] kern/28465 Enabling softupdates on a clean but activ o [2001/06/27] kern/28466 When soft updates is enabled, cpl is not o [2001/06/30] i386/28550 Boot: Fatal Trap 12: page fault while in f [2001/06/30] i386/28558 makedev return non-zero status after inst o [2001/07/02] kern/28630 Look like hung up a kernel after few minu f [2001/07/04] kern/28703 dillon Kernel reboot during tape backup of nfs m o [2001/07/05] kern/28751 n_hibma USB Mouse doesn't seem to work! o [2001/07/14] kern/28966 pirzyk math libraries in linux emulation do not o [2001/07/14] kern/28974 PPPoE software fails when SOCK_RAW employ o [2001/07/15] ports/28995 max deMime produces blank line in header part f [2001/07/17] i386/29045 Heavy disk usage causes panic in ffs_blkf f [2001/07/19] i386/29096 freebsd 4.2/4.3 hangs after probing devic o [2001/07/21] kern/29121 msdos fs causes kernel panic when writing o [2001/07/24] bin/29191 NFS file locking fails from Solaris 8 cli o [2001/07/24] misc/29200 dcs Syntax errors in /boot/device.hints cause o [2001/07/30] ports/29325 ports Dbview contains an error, because of whic o [2001/08/13] ports/29681 portmgr bsd.port.mk cannot handle some module's P o [2001/08/14] conf/29699 Setting NO_MAILWRAPPER results in a syst o [2001/08/15] kern/29741 ptrace(pid);ptrace(ppid) makes pid and pp o [2001/08/15] kern/29742 PCCARD Modems don't work on cardbus bridg o [2001/08/15] kern/29743 TI-1450 interrupt storm o [2001/08/18] kern/29844 setpgrp does not behave as manual says o [2001/08/18] kern/29847 n_hibma USB usbd_probe_and_attach() is broken and f [2001/08/31] kern/30238 3Com 509-Combo ISA NIC don`t work o [2001/09/03] ports/30292 kde QT/KDE 1.x needs to be removed o [2001/09/03] kern/30300 -current hang caught and crash-dump'd. o [2001/09/04] ports/30331 portmgr Conflict between bsd.port.mk MAKEFILE var o [2001/09/09] i386/30458 Workstation sometimes hangs when connecte f [2001/09/12] i386/30527 does not like scsi on atrend 6260 dual PI o [2001/09/19] i386/30670 4.3 and 4.4 mfsroot floppies reboot Dell o [2001/09/20] i386/30693 On new install bootup does endless usb0: f [2001/09/21] i386/30705 msmith Installation fails on system with Mylex A o [2001/09/23] kern/30771 Panic when mounting drive a [2001/09/24] i386/30802 gibbs repeat of i386/22760. Adaptec SCSI contro o [2001/09/27] bin/30869 dump does not dump all files of a filesys o [2001/09/28] i386/30898 Inspiron 8100 keyboard unusable off mains o [2001/09/29] kern/30921 ACER mechanic ps/2 keyboard don´t work an o [2001/09/30] ports/30935 taoka pips sc880 - needs to have syvr4 support o [2001/10/01] i386/30961 On lsdev -> error & BTX halted =( o [2001/10/04] kern/31042 murray Device name conflict o [2001/10/12] kern/31233 Kernel panics after upgrading to 4.4-STAB o [2001/10/13] ports/31254 obrien I cannot compile Java src files using gcj o [2001/10/14] misc/31266 System can be crashed with "ls -al /flopp o [2001/10/15] bin/31304 joe fix crunchgen to work with more contrib-k o [2001/10/17] conf/31327 Fixes and improvements for rc.diskless* s o [2001/10/24] kern/31468 Spontaneous crashes, possible related to o [2001/10/25] kern/31493 BTX halted with big disk and 4.4R f [2001/10/31] i386/31671 4.4 installer hangs at " Mounting root fr o [2001/11/02] kern/31710 kernel reboots; looks like an unintended o [2001/11/12] ports/31948 steve open-motif: having USE_MOTIF in /etc/make o [2001/11/16] bin/32040 brian 4.4-Release "set mtu" in ppp is broken wi f [2001/11/20] i386/32127 Proliant 1600 kernel panics after SMP is o [2001/11/22] kern/32184 Kernel crashes in ufs code o [2001/11/23] i386/32237 4.4-RELEASE keyboard doesnt work after bo f [2001/11/30] kern/32418 silby kernel table full o [2001/12/04] ports/32506 des Apache mod_auth_pam doesn't works o [2001/12/07] conf/32583 jkh System becomes unusable after performing o [2001/12/09] ports/32664 obrien open-motif-devel-2.1.30 registers itself o [2001/12/11] kern/32713 usb mouse detaches from hub and doesnt re o [2001/12/11] ports/32714 kde KDE build failure: Qt's uic core dumps o [2001/12/12] alpha/32757 alpha fatal kernel trap using generic kernel fo o [2001/12/14] i386/32830 FreeBSD 4.4 install fails on Thinkpad 750 a [2001/12/14] kern/32831 sos HP Colorado IDE tape drive get wedged eas o [2001/12/16] bin/32895 imp rebooting between Win98SE and 4.4-2001121 f [2001/12/22] i386/33089 re GENERIC bloat causes 'make world' to brea o [2001/12/25] misc/33169 system freeze after cron daily security c o [2001/12/26] kern/33219 bp smbfs case senstitive problem o [2001/12/27] misc/33261 dwmalone FreeBSD base system does not install tcpd o [2001/12/27] gnu/33262 mp gdb does not handle pending signals corre f [2001/12/30] conf/33345 pnpinfo not finding info for pnp pci mode f [2002/01/04] i386/33525 root access without password f [2002/01/04] misc/33567 RELENG_4 won't makeworld; bsd.dep.mk, Mak o [2002/01/05] i386/33574 kernel hangs on page fault during boot pr f [2002/01/07] kern/33637 dillon Panic: vm_page_unwire: invalid wire count o [2002/01/07] bin/33670 dwmalone default inetd install allows for unlimite f [2002/01/08] misc/33688 Downloading some files with ftp hangs the o [2002/01/14] ports/33887 kris security/snort port cannot find its rule o [2002/01/16] kern/33951 pthread_cancel is ignored o [2002/01/16] kern/33952 Bogus error message from correct phreads f [2002/01/16] ports/33964 ade games/flightgear broken (uncompilable) o [2002/01/16] kern/33970 random freeze on IDE Raid 0 (Highpoint HP o [2002/01/17] misc/33997 Reboot Fails on Server o [2002/01/17] i386/34018 response to request from ipv6 client does o [2002/01/18] bin/34028 brian userland ppp o [2002/01/18] i386/34051 Install menu crashes o [2002/01/19] kern/34067 n_hibma Reproducable crash on usb ugen o [2002/01/19] kern/34071 pcn-driver is sort-of-broken in 4.5RC2 (a a [2002/01/21] ports/34123 mharo sudo coredumps on ^C in password prompt & o [2002/01/21] i386/34144 installation,mounting root from ufs:/dev/ o [2002/01/25] bin/34274 green 4.5-RC Interoperability issue: sshd o [2002/01/27] ports/34357 portmgr ports needs a resume function. o [2002/01/29] ports/34433 obrien devel/gdb51 port doesn't build f [2002/01/30] kern/34447 DLink DFE 500 rev E1 + dhclient dc0 crash o [2002/01/30] kern/34470 bde Modem gets sio1 interrupt-level buffer o f [2002/01/31] ports/34493 ade linux-realplayer has a security vulnerabi o [2002/01/31] bin/34502 ssh can crash the 4.5 system f [2002/02/02] ports/34552 ports lame don't compile a [2002/02/02] ports/34553 ports fetchmail can lose mail in POP3+UIDL mode o [2002/02/03] i386/34576 cannot load freebsd o [2002/02/06] ports/34669 www "download" links in WWW ports listing are f [2002/02/06] misc/34675 iedowse Restore asking for another volume - on la o [2002/02/06] kern/34680 Kernel panics when checking-out a tree (d o [2002/02/07] kern/34711 frequent system stall under moderate scsi f [2002/02/11] kern/34830 frequent panic . 4.3-STABLE f [2002/02/11] ports/34863 ade port apache13-fp broken o [2002/02/15] i386/34977 IPFW UID/GID Based Filtering doesn't work o [2002/02/18] kern/35082 IBM Intellistation will not reboot with S o [2002/02/18] i386/35096 Network card dies copying files > 200MB w o [2002/02/20] misc/35150 FreeBSD 4.5 won't install ... out of inod o [2002/02/20] misc/35151 High NFSD load in FreeBSD 4.5R f [2002/02/26] kern/35354 4.4/4.5 FreeBSD causes hard lock after 20 o [2002/02/28] kern/35435 danny rl driver generates large amount of colli o [2002/03/01] ports/35462 obrien patch to rsync-2.5.2 o [2002/03/01] kern/35466 xe driver can not read CIS tuples f [2002/03/05] ports/35576 ade ssmtp package INSTALL script broken o [2002/03/06] i386/35615 sound ES1978 Maestro 2E sound card locks up mac o [2002/03/07] conf/35626 wollman Summer time rules for Estionia changed ag o [2002/03/07] kern/35640 heavy collision rate hangs vr network int o [2002/03/08] ports/35698 cjh print/cjk-lyx need to be updated o [2002/03/09] docs/35723 doc le(4) page doesn't warn about likely syst o [2002/03/09] i386/35726 Won't let me use ifconfig on the interfac o [2002/03/14] i386/35902 Right after i configure the ip settings, o [2002/03/15] i386/35950 ACPI missing prevents install from floppi o [2002/03/17] kern/36008 [PATCH] Critical PERFMON fix for DEVFS us o [2002/03/18] ports/36051 ports MIME-tools-5.410 no longer on CPAN 209 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable a [1997/04/01] bin/3170 sheldonh vi freaks and dump core if user doesn't e f [1997/05/04] i386/3502 mdodd Merge of if_ix* and if_ie* broke EE/16 su o [1997/05/06] bin/3524 imp rlogin doesn't read $HOSTALIASES for non- o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f f [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/12] kern/4284 paul le0 goes OACTIVE after some time o [1997/08/22] bin/4357 bug in adduser script causes duplicate UI s [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/16] kern/4782 dillon Under certain conditions, several krsh's o [1997/12/14] bin/5297 make incompatibility with System V style o [1998/01/27] kern/5587 des session id gets dropped o [1998/02/28] kern/5877 bmilekic sb_cc counts control data as well as data o [1998/03/19] kern/6066 paul lnc driver does not work correctly with A a [1998/04/07] kern/6238 cg Sound-driver patch for MAD16 (OPTi 928,92 a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty s [1998/06/02] bin/6830 make(1) exhibits confusing and non-standa s [1998/06/23] bin/7033 Same process notified multiple times o [1998/06/24] i386/7057 mdodd 3Com 3C509 locks up, or has >1000ms rtt u s [1998/07/05] kern/7169 cannot use accton on a append-only file o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol s [1998/07/14] kern/7281 [STABLE] Multicast kludge does not work c s [1998/08/10] kern/7556 sl_compress_init() will fail if called an f [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio f [1998/10/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/11/10] bin/8646 peter Implement rlogind -a option f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console o [1998/11/29] conf/8903 dillon /etc/rc can do NFS mounts before the netw o [1998/12/21] kern/9163 adrian [patch] squid does not join a multicast g s [1999/01/07] bin/9379 pppd does not go through all interfaces l s [1999/01/08] kern/9391 if_addmulti doesn't check for retifma == o [1999/01/13] kern/9478 assar support for running a script from kldload s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/15] kern/10107 dillon interlock situation with exec_map and a p f [1999/02/25] bin/10264 davidn passwd(1) tryis NIS even with `-l' switch o [1999/02/28] bin/10312 ken pciconf -l generates output incompatible s [1999/03/02] bin/10353 ypserv gets segmentation violation o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/16] bin/10633 fenner [patch] tcpslice timezone problem and upd a [1999/03/24] kern/10778 ru "ipforward_rt" is not cleared when routin o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec s [1999/04/08] misc/11024 getpwnam(3) uses incorrect #define to lim s [1999/04/28] conf/11376 NFS mount may be happening too soon in /e o [1999/05/03] kern/11462 imp CS network interface driver (for CS89XX b o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 imp CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] misc/11525 dwmalone [PATCH] Networking patches to increase # s [1999/05/07] gnu/11562 tar verification doesn't work o [1999/05/13] kern/11697 tegge Disk failure hangs system o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go o [1999/05/28] kern/11922 deischen missing reentrant interfaces for getpwnam o [1999/07/07] kern/12551 mks ASIC output is shifted following a short o [1999/07/20] bin/12727 billf Game patches from NetBSD o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of o [1999/09/13] kern/13740 jlemon wrong IP statistics s [1999/09/16] conf/13775 multi-user boot may hang in NIS environme s [1999/09/17] i386/13787 lnc driver isn't really the lnc driver o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/27] kern/13997 rwatson RLIMIT_NPROC works unadequately for jails s [1999/10/04] i386/14135 lpt1 nolonger exists after 3.2-RELEASE o [1999/10/12] kern/14285 dillon NFS client appears to lose data o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" o [1999/10/26] kern/14549 mdodd 3C509 broken in 3.3 o [1999/10/27] kern/14566 yokota Non-kernel programs have little/no contro a [1999/11/04] kern/14712 iedowse root has access to NFS mounted directorie s [1999/11/12] kern/14848 Frame Relay support, corrected a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested o [1999/11/17] i386/14946 mjacob rmt - remote magtape protocol s [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c o [1999/12/23] misc/15662 markm [PATCH] perl5 Sys::Hostname fails if no P o [1999/12/26] kern/15707 dillon bad trap in mprotect o [2000/01/01] kern/15825 dillon Softupdates gets behind, runs the system s [2000/01/02] i386/15845 Driver for RealTek 8029 f [2000/01/03] bin/15877 tobez Perl 5.00503 interpreter crashes with a s o [2000/01/12] kern/16090 mdodd No buffer space available a [2000/01/22] kern/16299 tmm nfs.ko can be unloaded when nfsd is runni o [2000/01/24] ports/16343 reg bsd.port.mk cannot override make.conf. o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P o [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/23] conf/16948 qa Sysinstall/disklabel: bad partition table o [2000/02/25] misc/16991 jhb booting install disk and USB s [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm o [2000/03/10] misc/17310 wpaul NIS host name resolving may loop forever o [2000/03/13] bin/17360 green [PATCH] Cleanup bug in pam_ssh o [2000/03/16] kern/17422 bde 4.0-STABLE: top: nlist failed o [2000/03/20] kern/17504 ken Another Micropolis Synchronize Cache Prob f [2000/03/20] misc/17517 wpaul 100/10baseT card resets under load s [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg f [2000/03/21] kern/17542 greid random static with GUS PnP o [2000/03/24] misc/17584 groudier fatal SCSI error with a Symbios 53c875 co o [2000/03/27] i386/17626 green sshd cores when I scp to it o [2000/03/28] alpha/17637 billf misconfigured syscons bell causes panic o o [2000/03/29] i386/17662 gibbs cam_xpt.c incorrectly disables tagged que o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit o [2000/04/04] i386/17800 bde [PATCH] problem with statclock initializa f [2000/04/06] kern/17829 The dc driver is seriously broken o [2000/04/07] bin/17843 ftpd fails to set cwd with mode 700 NFS m f [2000/04/10] kern/17905 dillon 4.0-SNAP keep on crashing every 3 days o [2000/04/11] i386/17926 yokota psm device problems with apm resume o [2000/04/12] kern/17961 n_hibma Fatal Trap 12. Page fault while in kernel o [2000/04/12] kern/17965 wpaul vr (MII-bus version in 4.0 ONLY) driver l o [2000/04/14] kern/18012 adrian vnode_free_list corruption, "free vnode i o [2000/04/17] misc/18065 mdodd FREEBSD 4.0 crashes on boot Compaq Prolia o [2000/04/23] ports/18180 jmz xdm authorization fails with XDM-AUTHORIZ s [2000/04/23] bin/18181 Getty can fail to observe :de: specificat f [2000/04/23] i386/18185 gibbs Adaptec 3950U2 errors during boot/probe o [2000/04/24] kern/18200 mdodd 3com 3c509b recognized twice during boot f [2000/04/25] kern/18209 green rlimits are never checked in exec() if ex o [2000/04/28] kern/18285 the system froze when use scon -s 50 o [2000/05/02] kern/18345 cg sbc / pcm not fully recognizing AWE64 o [2000/05/02] kern/18348 yokota tags o [2000/07/19] kern/20040 msmith Toshiba 2775 hangs after pcib0 driver is o [2000/07/25] misc/20172 byacc 1.9 fails to generate $default tran f [2000/07/27] kern/20217 darrenr IPF default block and inclusion in rc.net o [2000/07/27] kern/20234 green panic(): lockmgr: pid 259, not exclusive o [2000/07/29] conf/20282 qa sysinstall does not recover some /etc fil f [2000/07/31] kern/20335 yokota S3Trio64V+ is detected as CGA by syscons a [2000/08/02] bin/20373 Setting breakpoints in shared objects bro o [2000/08/08] ports/20490 tg Termios timeout parameters, VMIN, VTIME, f [2000/08/09] i386/20507 yokota Mouse freezes in 4.0-release after some u o [2000/08/10] misc/20521 mjacob /etc/rmt several problems o [2000/08/10] kern/20523 Support for PCI multiport cards for sio d o [2000/08/13] kern/20572 marcel cannot safely remove COMPAT_43 from the k o [2000/08/14] kern/20609 dillon panic: vm_fault: fault on nofault entry, o [2000/08/15] bin/20633 fdisk doesn't handle LBA correctly f [2000/08/17] kern/20689 groudier Newbusified version of ncr driver does no o [2000/08/18] kern/20708 imp Adaptec 1542 ISA SCSI Controller not dete f [2000/08/22] bin/20779 assar junk pointer error causes kpasswd to fail o [2000/08/26] misc/20861 jasone libc_r does not honor socket timeouts o [2000/08/28] gnu/20912 mp gdb does not recognise old executables. f [2000/08/30] bin/20952 markm ftpd doesn't honor account expiration tim o [2000/08/31] kern/20958 mdodd ep0 lockup with ifconfig showing OACTIVE o [2000/09/07] misc/21089 vi silently corrupt open file on SIGINT w f [2000/09/08] kern/21139 ken IBM DNES drives need 'quirk table' entry. o [2000/09/11] bin/21208 tar does not support 2.5 GB file o [2000/09/11] kern/21209 groudier scsi ncr driver installs instead of scsi a [2000/09/13] bin/21248 kris openssl dumps core with blank passwords o [2000/09/13] bin/21251 NIS problem - ypbind does loop in CLNT_BR o [2000/09/14] gnu/21260 buffer overrun in uux o [2000/09/14] ports/21264 markm tn3270 port receives segmentation fault o [2000/09/14] gnu/21276 libI77 is unable to handle files >2Gbytes o [2000/09/15] bin/21292 ifconfig warn but does duplicate IP addre o [2000/09/15] kern/21304 wpaul dc0 watchdog timeouts on NetGear FA310TX o [2000/09/15] kern/21305 roger bktr driver dosn't send signals in contin s [2000/09/18] misc/21384 greid pcm driver has static in recorded audio o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites o [2000/09/20] gnu/21433 g++ optimiser produces bad code on right o [2000/09/21] kern/21461 imp ISA PnP resource allocator problem o [2000/09/21] kern/21463 emulationLinux compatability mode should not allow o [2000/09/26] i386/21559 BTX loader sometime show registers f [2000/09/27] bin/21603 green Can't change user passwords on 4.1.1-STAB o [2000/09/28] kern/21642 Compaq Netelligent 10/100 card (TI Thunde f [2000/10/02] misc/21701 qa Keymap selection menu broken on initial i o [2000/10/02] docs/21708 jlemon kqueue/kevent man pages isn't specific ab o [2000/10/02] ports/21714 sobomax audio problem with nil o [2000/10/05] kern/21771 murray Fix for sppp and Cronyx drivers update f [2000/10/06] kern/21791 Hang on FIN_WAIT_2 a [2000/10/06] kern/21808 [patches] msdosfs incorrectly handles vno o [2000/10/15] misc/21998 green ident only for outgoing connections o [2000/10/19] kern/22142 securelevel does not affect mount o [2000/10/22] bin/22212 skeyaccess(3) doesn't for primary group o [2000/10/24] misc/22284 Change (SunOS) NIS passwd error o [2000/10/25] bin/22291 getcwd() fails on recently-modified NFS-m o [2000/10/30] kern/22417 gibbs advansys wide scsi driver does not suppor a [2000/10/30] ports/22421 ports New port: Enhydra 3.1 beta 1 o [2000/10/31] i386/22441 pmap_growkernel() is not effective at ker o [2000/11/05] bin/22614 billf pam_ssh dumps core o [2000/11/05] kern/22624 Interrupt conflict btw. vga and Ethernet o [2000/11/06] gnu/22635 Why don't you use truncate(2) in libI77 o [2000/11/13] kern/22826 emulationMemory limits have no effect in linux com o [2000/11/14] bin/22846 Routed does not reflect preference of Int f [2000/11/15] kern/22862 ncr probe fails with CACHE TEST FAILED: ? o [2000/11/15] kern/22866 Packets send on INET6 sockets compatible o [2000/11/18] kern/22943 emulationProblem with linux emulation o [2000/11/18] i386/22944 isa_dmainit fails on machines with 512MB a [2000/11/18] kern/22947 jon IBM 10/100 EtherJet Cardbus (Xircom X3201 f [2000/11/18] kern/22951 failed drive causes panic with HPT370 RAI f [2000/11/22] i386/23039 disklabel editor couldn't create partitio o [2000/11/23] gnu/23058 ncurses: tgoto_internal() ugliness o [2000/11/24] misc/23069 jkh Compat22 does not work until you reboot o [2000/11/25] bin/23098 ambrisko If installing on a serial console, enable o [2000/11/26] ports/23125 mbr Successful emulation of StarOffice depend f [2000/11/30] conf/23192 FTP REALLY slow on internal NIC aswel (12 a [2000/11/30] bin/23203 opie doesn't know that ssh connections ar o [2000/12/04] bin/23269 green OpenSSH TIS Authentication support has br o [2000/12/07] bin/23352 [SECURITY] buffer overflow in opieftpd f [2000/12/07] misc/23364 gethostbyaddr takes longer or locks up an a [2000/12/07] misc/23376 tobez The version of CGI.pm bundled with perl i o [2000/12/08] kern/23400 IPsec transport mode precludes filtering o [2000/12/11] kern/23468 imp xe Driver causes kernel panic when Xircom o [2000/12/11] bin/23489 tcsh fails to do file completion on non-E o [2000/12/12] kern/23515 get error in messages system log "Dec 11 o [2000/12/13] kern/23535 imp 4.x kernels seem to no longer support Ada o [2000/12/14] misc/23561 emulationLinux compatibility mode does not support o [2000/12/16] gnu/23593 obrien [patch] possible fix to awk(1) o [2000/12/18] ports/23638 kuriyama Add turbine-pool.jar to Cocoon CLASSPATH o [2000/12/22] kern/23771 bridge/firewall doesn't work as in bridge o [2000/12/26] bin/23866 dwmalone patch for pointing out current date o [2001/01/02] kern/24032 markm rndcontrol and pccardd use of interupt ha o [2001/01/03] kern/24059 n_hibma USB support broken in SMP kernel o [2001/01/04] kern/24070 n_hibma uhci USB driver disables port on reatachi o [2001/01/04] kern/24074 mdodd Properties of token-ring protocol must be f [2001/01/05] kern/24085 syncing on shutdown leaves filesystem dir o [2001/01/06] kern/24100 imp Having a 3c589 PCMCIA/PCCARD inserted pre o [2001/01/06] docs/24125 wes connect(2) can yield EWOULDBLOCK/EAGAIN f [2001/01/09] i386/24210 compaq dl360 hangs with smp kernel f [2001/01/10] conf/24238 First physical interface always has IPv6 o [2001/01/12] bin/24271 dumpon should check its argument more o [2001/01/16] misc/24391 cannot kill amd after interface disappear o [2001/01/19] bin/24461 pirzyk Being able to increase the YP timeout wit o [2001/01/19] bin/24472 libc_r does not honor SO_SNDTIMEO/SO_RCVT o [2001/01/22] kern/24559 aio_suspend() had Bus error when using -l s [2001/01/23] misc/24590 timezone function not compatible witn Sin o [2001/01/25] kern/24629 ng_socket failes to declare connected dat o [2001/01/25] bin/24632 libc_r delicate deviation from libc in ha o [2001/01/25] misc/24641 jasone pthread_rwlock_rdlock can deadlock o [2001/01/28] bin/24691 map-mbone segfaults at getsockname o [2001/01/29] ports/24711 portmgr ${MAKEFILE} causing trouble with ports o [2001/01/30] i386/24737 Socks5 clients die with leaving zombie pr o [2001/02/01] ports/24778 portmgr "update" target not available in categori o [2001/02/06] gnu/24903 Patch to remove 32bit limit from tar f [2001/02/06] i386/24916 SCSI timeout errors with adv0 driver (Adv o [2001/02/09] kern/24982 stack gap usage o [2001/02/10] i386/24997 /boot/loader cannot handle extended dos p o [2001/02/11] ports/25007 max telnetx problem on 4.x o [2001/02/12] kern/25037 top doesn't show CPU states (shows zeroes o [2001/02/12] kern/25038 murray dhcp client could not set hostname on boo o [2001/02/13] kern/25067 adrian able to mount a pathname > 80 char. but u o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ a [2001/02/19] kern/25201 imp pccard event and syscons beep duration de o [2001/02/19] kern/25213 peter Bus abstraction interface doesn't allow p o [2001/02/21] kern/25248 bde sys/user.h needs sys/param.h, but doesn't f [2001/02/21] kern/25261 gibbs ahc0 no active SCB errors when booting of o [2001/02/21] ports/25272 rse Using eperl as cgi/nph binary executor ca o [2001/02/23] bin/25337 rwatson dmesg -a should be restricted o [2001/02/25] ports/25374 okazaki A new port math/atlas highly optimized BL o [2001/02/28] bin/25461 qa sysinstall's fdisk and disklabel don't wo f [2001/03/01] kern/25476 [PATCH] The syscall oldgetkerninfo can re o [2001/03/03] kern/25511 ioctl(fd, FIONREAD, &c) on a FIFO (not PI o [2001/03/04] ports/25522 portmgr FORBIDDEN ports doesn't return error for o [2001/03/05] bin/25542 /bin/sh: null char in quoted string o [2001/03/07] misc/25585 sed.test 8.16 puts bugged sed into infini o [2001/03/07] bin/25586 green Password expiration doesn't work after up o [2001/03/13] kern/25781 Statclocks cannot be disables on ServerWo o [2001/03/14] misc/25801 imp change IP-address on pccard (3Com) fails o [2001/03/15] bin/25826 nfsd -t -h adr1 -h adr2 doesn't work o [2001/03/16] misc/25851 qa Security hole in anonymous FTP setup scri o [2001/03/17] bin/25886 cgetset(3) doesn't get cleared when switc f [2001/03/18] i386/25889 FDISK lost a partition ! o [2001/03/19] bin/25929 Can't use MAKEDEV in fixit mount o [2001/03/20] kern/25949 msmith camcontrol doesn't find new drives or RAI o [2001/03/20] i386/25958 msmith Xfree86's savage and vesa drivers can pan o [2001/03/22] kern/25986 silby Socket would hang at LAST_ACK forever. o [2001/03/22] misc/26002 n_hibma Poor read/write performance on uhci USB c o [2001/03/22] kern/26013 Linksys (rev 3) USB 100TX NIC causes infi o [2001/03/23] ports/26036 dima acroread4 produces invalid postscript in o [2001/03/25] kern/26078 Jails cannot connect to the main server a o [2001/03/26] bin/26093 markm pam_unix rejects authenticating accounts o [2001/03/27] kern/26142 Unlink fails on NFS mounted filesystem f [2001/03/27] kern/26161 Kernel Panic on Dual Processor System dur o [2001/03/28] kern/26171 emulationnot work Linux-emulator, but hi is work i o [2001/03/31] i386/26261 silo overflow problem in sio driver f [2001/04/01] conf/26275 darrenr ipfilter_enable in rc.conf does not load o [2001/04/02] bin/26307 libc_r aborts when using the KDE media pl o [2001/04/03] kern/26309 PPPoE client panics in kernel - fxp probl o [2001/04/03] misc/26320 mountd breaks IRIX automounter f [2001/04/04] kern/26356 Large copy of files to the machine causes a [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- o [2001/04/06] kern/26384 dc driver hangs in dc_rxeof o [2001/04/08] kern/26430 cg -CURRENT panics on cat /dev/dsp or cat /d o [2001/04/09] ports/26464 mbr Citrix client no longer reads files in lo o [2001/04/10] misc/26486 setnetgrent hangs when netgroup contains o [2001/04/12] kern/26506 sendto() syscall returns EINVAL in jail e o [2001/04/14] kern/26567 Mouse driver will not properly restart if o [2001/04/14] kern/26568 Mouse driver will die if you move mouse a o [2001/04/16] kern/26613 ethernet vr0 hangs o [2001/04/19] kern/26704 AHA-2940[UW] gives MPARERR on cold boot ( o [2001/04/23] ports/26797 assar arla-0.34.6 causes kernel panic/page faul o [2001/04/23] bin/26809 /etc not saved on upgrade o [2001/04/25] bin/26842 dd dump with h flag takes a very long time o [2001/04/25] ports/26848 sobomax jre port core dumps a [2001/04/25] bin/26869 sheldonh vi(1) crashes in viewing a file with long o [2001/04/27] misc/26897 qa 4.3R sysinstall fails to create swap part o [2001/04/28] kern/26920 imp PCI autoconfiguration of USB, dc ether, a f [2001/04/29] kern/26953 adter the installation is over it's make o [2001/04/30] i386/26985 jkh floppy install 4.3 via FTP hangs o [2001/04/30] bin/26996 green sshd fails when / mounted read-only o [2001/05/01] kern/27020 FreeBSD 4.3RC compiled with an SMP kernel o [2001/05/02] ports/27052 portmgr libtool port broken in 4.3 RELEASE o [2001/05/04] bin/27086 green OpenSSH does not set X11 forwarding f [2001/05/04] kern/27087 FreeBSD 4.3-RELEASE does not recognize Gi a [2001/05/08] ports/27202 dougb mail/pine sucks rocks when saving over NF o [2001/05/09] bin/27230 nectar Users after NIS lines in /etc/passwd o [2001/05/09] kern/27237 Watchdog Timeouts under EXCESSIVE load o [2001/05/09] kern/27242 SIGHUP propagation failure to processes o o [2001/05/10] i386/27247 Panic on install - "page fault syncing di a [2001/05/10] kern/27262 process won't be terminated after CPUTIME a [2001/05/15] ports/27358 znerd Naming scheme for JDK ports (java) o [2001/05/16] misc/27400 4.3 install hangs because it is looking f o [2001/05/17] ports/27419 jhb E-FancyLauncer clones itself over and ove o [2001/05/20] kern/27474 Interactive use of user PPP and ipfilter o [2001/05/21] misc/27498 grog vinum crashed after 'vinum dumpconfig' o [2001/05/21] kern/27522 des linprocfs:/proc/stat does not handle SMP o [2001/05/22] kern/27543 des /proc/cpuinfo does not handle SMP hosts o [2001/05/23] docs/27605 doc Cross-document references () o [2001/05/27] kern/27694 cg Panic in csa(4) f [2001/05/29] i386/27729 qa the ls120 device "afd" does not show up u o [2001/06/01] misc/27810 rpc.statd can loop o [2001/06/04] ports/27875 ports invoked on boot, SIGHUP is delivered and o [2001/06/04] ports/27883 bp shares mounted by the smbfs-1.4.1 port ar f [2001/06/05] misc/27893 sos can't burn audio cds on LG CD-RW CED-8083 o [2001/06/05] misc/27896 Error in /etc/exports invalidates entire o [2001/06/07] ports/27925 portmgr index is not updated when it html manpage o [2001/06/07] ports/27926 portmgr bsd.port.mk does not handle MLINKS with h o [2001/06/07] ports/27929 jmz make extract on x11/XFree86-4 port fails o [2001/06/09] bin/27988 [PATCH] let pam_ssh.so explicitly start s o [2001/06/09] kern/27995 src/sys/pci if_pcn.c revision 1.21 resp. o [2001/06/12] misc/28095 [PATCH] pax may descend into directories o [2001/06/12] kern/28100 Hang after device probe on EISA machine o [2001/06/12] ports/28102 assar Recent changes to 4.3-STABLE break arla-0 o [2001/06/14] ports/28155 portmgr DESTDIR is used incorrectly in bsd.port.m o [2001/06/15] kern/28173 Problem with Touchpad on Inspiron 5000e o [2001/06/15] ports/28179 nbm vsftpd port creates a user without a warn o [2001/06/15] misc/28188 Cron is being started to early in /etc/rc o [2001/06/16] kern/28218 A peer of TCP socket cannot detect termin o [2001/06/16] bin/28221 eric dialog(1) segfaults (due to the bug in li o [2001/06/17] bin/28223 su doesn't look at login.conf all the tim o [2001/06/17] bin/28224 ftpd doesn't honor invalid shelll in logi o [2001/06/17] i386/28231 /boot/loader can't load kernel on Xyberna o [2001/06/20] bin/28311 markm ftpd and sshd do not honor expired pw ent f [2001/06/22] misc/28339 roam Slow Disk performance on 4.3 (about half o [2001/06/23] ports/28378 jedgar p5-Net-IRC-0.70_1 eats irc text with col o [2001/06/23] bin/28381 Can't turn off telnet autologin o [2001/06/24] ports/28398 ports ja-dvips cannot find tex.pro o [2001/06/25] kern/28417 arplookup uses potentially unprotected st o [2001/06/26] bin/28424 mtree fails to report directory hierarchy o [2001/06/26] kern/28434 cs0's promiscuous mode does not work o [2001/06/27] misc/28442 hot rebuild on Compaq Intergrated Smart A o [2001/06/28] ports/28491 kiri www/w3-4 port: mismatch between pkg-plist f [2001/06/28] kern/28497 dmesg corrupted buffer/output o [2001/06/28] kern/28498 /var/log/messages incorrect o [2001/06/29] misc/28508 problems with backup to Tandberg SLR40 st o [2001/06/30] i386/28536 writing to corrupted msdosfs causes kerne o [2001/06/30] bin/28552 EUC support of wcstombs(3) is broken for o [2001/07/01] i386/28592 Please support boot from ATA RAID-0 devic f [2001/07/02] misc/28629 maxim ftpd REST command does not support restar o [2001/07/04] kern/28692 cg ICH sound driver hangs kernel o [2001/07/04] kern/28713 luigi NEW IPFW FEATURE [PATCHES]: Dynamic rule o [2001/07/05] misc/28737 D-Link DFE530TX - vr0: Watchdog Timeouts; o [2001/07/06] kern/28768 The system doesn't get connects on one of o [2001/07/06] bin/28773 [PATCH] Bug in pw, no $ in username o [2001/07/07] bin/28798 mikeh mail(1) with a pager (more) requires fg/C o [2001/07/07] i386/28802 3com Performance Pro modem conflicts with o [2001/07/09] kern/28840 gibbs Possible interrupt masking trouble in sys o [2001/07/09] bin/28852 cracauer behavior of /bin/sh with -e option looks o [2001/07/09] kern/28856 3COM PCI FaxModem with shared IRQ causes o [2001/07/11] ports/28889 lioux qpopper-4.0.3 error: Insufficient room to o [2001/07/12] i386/28928 wpaul dual starfire nic doesn't seem to work (a o [2001/07/13] bin/28935 dwmalone syslogd -u doesn't treat * as "all levels o [2001/07/15] i386/28985 Installing FreeBSD 4.3 on a Dell Optiplex o [2001/07/16] bin/29026 traceroute -s option allows any IP addres o [2001/07/17] bin/29049 green multi-user with star o [2001/09/15] misc/30590 /etc/hosts.equiv and ~/.rhosts interactio 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 a [2001/09/17] ports/30638 ports SQL-Ledger port update o [2001/09/18] kern/30653 brooks KAME option MAX_GIF_NEST missing from /us o [2001/09/18] bin/30654 Added ability for newsyslog to archive lo f [2001/09/18] ports/30663 ports NEW PORT: devel/libCxClient o [2001/09/21] misc/30708 DHCP and multiple interfaces o [2001/09/21] kern/30712 fatal kernel trap during ufs_rename o [2001/09/21] ports/30728 portmgr pkg_add causes install of multiple versio o [2001/09/22] kern/30744 UDMA ICRC error results in kernel panic o [2001/09/23] kern/30755 It is impossible to mount CD-ROM in some o [2001/09/23] ports/30767 jmz silly links break XFree-4 port if /usr/X1 o [2001/09/24] i386/30784 4.4 does not install KDE or Gnome+Sawfish o [2001/09/24] kern/30798 contigfree() doesn't o [2001/09/25] kern/30820 sound PCM sound fails o [2001/09/25] ports/30823 ports New port: KinterbasDB, Python module to a o [2001/09/26] bin/30837 Sysinstall doesn't set the schg flag on t o [2001/09/27] gnu/30876 tar ignores complaints from gzip o [2001/09/30] ports/30947 ports mail/mahogany fails to build, conflicts w o [2001/09/30] kern/30948 ls'ing mounted brand new floppy locks up o [2001/09/30] kern/30952 kernel panics with 3C905[BC] cards / xl d o [2001/10/01] kern/30958 QUOTA with 0 bytes in quota.user hangs up o [2001/10/01] bin/30959 newfs -i x dumps core for small values of f [2001/10/01] bin/30966 fenner TCPdump repeating on Radius accounting pa o [2001/10/01] kern/30971 peter NFS client modification time resolution i o [2001/10/02] i386/30991 pcm in PNP-OS mode vs. non-PNP-OS mode po o [2001/10/02] bin/30993 xxgdb cannot open source file o [2001/10/04] bin/31029 cjc syslogd remote logging back down o [2001/10/04] i386/31035 Smart Array & SMP hangs on Proliant 1600 o [2001/10/04] bin/31045 routed dumps core o [2001/10/04] kern/31046 Linux OpenGL programs do not work under t o [2001/10/04] kern/31047 Linux programs do not dump core in linux o [2001/10/06] kern/31084 imp xe driver device probe fails in CIS tuple o [2001/10/06] kern/31085 kernel panic on tftp only pxeboot o [2001/10/07] kern/31102 lge + Pentium III data transmission probl o [2001/10/07] kern/31103 nfs read i/o error when nfs-mounting onto o [2001/10/07] ports/31113 portmgr bsd.ports.subdir.mk: remove NOCLEANDEPEND a [2001/10/08] ports/31143 ports gd does not compile, uses nonexistent ftg o [2001/10/08] kern/31147 Kernel panics (double fault) in some "net o [2001/10/09] misc/31175 4.4 wikk not detect ethernet cards on HP o [2001/10/09] ports/31184 ports Latex2html problem o [2001/10/10] ports/31191 ports netsaint - plugins sometimes not found o [2001/10/10] kern/31203 Cardbus xl driver broken on -CURRENT o [2001/10/11] ports/31216 znerd New port: devel/plist-builder o [2001/10/12] kern/31238 `hpijs' process hangs unkillably in `devb o [2001/10/14] docs/31265 dwmalone crontab(1) doesn't decribe format of allo o [2001/10/14] conf/31280 /etc/rc.network NFS server startup broken o [2001/10/15] bin/31306 sysinstall fails to create non-root parti o [2001/10/17] bin/31339 make's .if processing buggy o [2001/10/18] ports/31352 ports Netsaint check_by_ssh: fcntl(0, F_SETFL, o [2001/10/18] misc/31363 sysinstall "partition editor" silently co o [2001/10/21] kern/31398 cg newpcm does not play back the tail of sou o [2001/10/21] ports/31414 ports gd won't compile on 4.3 f [2001/10/21] ports/31422 ache Does pkg_delete have to erase /usr/local/ f [2001/10/24] kern/31471 Specific IPFW's FWD rule crashes the kern o [2001/10/24] i386/31481 FreeBSD does Not find disk drives with Co o [2001/10/25] kern/31492 Panic in sysctl_remove_oid. o [2001/10/25] ports/31494 ache mod_perl fixes for apache13 port o [2001/10/26] ports/31511 obrien g++30 produces binaries which SIGBUS when o [2001/10/26] kern/31515 Use of USB Keyboard crashes 4.4 during in o [2001/10/26] ports/31527 dwcjr "reject_unknown_client" configuration pro a [2001/10/27] kern/31530 Fatal trap 12 when reading from DVD. o [2001/10/29] kern/31597 pcm_addchan incorrectly adds vchans to PC o [2001/10/29] ports/31605 kde kmail cannot decrpyt/encrypt/verify gnupg o [2001/10/30] conf/31631 "MAC address" can't be acquired properly. o [2001/10/31] kern/31659 n_hibma USB controller driver will die after some o [2001/10/31] bin/31661 jasone pthread_kill signal handler doesn't get s o [2001/10/31] misc/31670 Wide-Ultra 10k SCSI 3 drive is not recogn o [2001/10/31] bin/31678 A bug in handling an error reading a CD-R f [2001/11/01] ports/31688 znerd JDK 1.3.1 Update for Sun's Java Communica f [2001/11/01] ports/31689 znerd JDK 1.3.1 update for FreeBSD/Java Commapi f [2001/11/01] bin/31692 2872-or-less-byte ftp binary transfer fro o [2001/11/01] ports/31699 ports The graphics/gd2 port conflicts with grap f [2001/11/03] misc/31736 DMA mode not possible switching to PIO mo o [2001/11/03] kern/31746 failed connect(2) seems to cause problems o [2001/11/04] ports/31767 ports Fix glide3 includes for DRI compile o [2001/11/05] kern/31768 darrenr Use of fastroute in IPFilter reboots the o [2001/11/05] i386/31771 brian PPP compares CHAP81 response case sensiti o [2001/11/05] kern/31790 problem with NFS and jail() o [2001/11/05] ports/31793 billf snmpd loops on udp.ipv6UdpTable.ipv6UdpEn o [2001/11/06] kern/31804 Clearing PME mode kills network performan o [2001/11/07] ports/31819 jmz ports/ispell install doesn't work o [2001/11/07] bin/31835 dhclient doesn't close FD's before spawni o [2001/11/07] bin/31837 sysinstall change mountpoint o [2001/11/07] kern/31839 mdodd ex0 panic if NIC not cabled a [2001/11/07] ports/31840 portmgr package naming inadequation (gnome vs gtk o [2001/11/07] i386/31845 Toshiba Satellite 2105CDS won't boot Free o [2001/11/08] bin/31860 read wont timeout on sockets if using thr o [2001/11/08] misc/31864 system header file attempts to redefine a o [2001/11/09] ports/31893 des gnats-3.113.1 conflicts with /usr/bin/sen o [2001/11/12] gnu/31929 GNU Tar shipped with FreeBSD handles rela o [2001/11/12] kern/31940 nge gigabit adapter link reset and slow t o [2001/11/13] i386/31967 reboot/shutdown hangs on Sony VAIO 505 w/ o [2001/11/14] kern/31979 Setup and boot locks Compaq Armada E500 l f [2001/11/17] ports/32063 znerd patch for /usr/ports/java/linux-jdk about o [2001/11/17] bin/32072 setuid w/o immutable flag o [2001/11/18] kern/32098 semctl() does not propagate permissions o [2001/11/19] kern/32118 21143 with dc driver will not select 10ba o [2001/11/19] ports/32121 jmz xf86cfg 4.1.0 writes bad "Chipset" value a [2001/11/21] ports/32164 skv New port: p5-XML-SAX-Simple-0.01 f [2001/11/21] bin/32175 green ssh-keygen -p core dumps o [2001/11/22] misc/32194 Adaptec SCSI RAID 2100 fails by reboot o [2001/11/22] bin/32205 brian PPP login fails in LCP negotiation on opt o [2001/11/23] ports/32223 znerd Port databases/mysql-jdbc-mm is quite out o [2001/11/23] kern/32226 time of day clock runs fast (approx twice o [2001/11/23] ports/32234 portmgr Perl ports not $LOCALBASE clean o [2001/11/24] kern/32256 System crash/reboot when deleting file on o [2001/11/24] bin/32261 dump creates a dump file much larger than o [2001/11/26] alpha/32289 alpha memory management fault o [2001/11/26] bin/32295 pthread dont dequeue signals o [2001/11/26] misc/32297 sound Scratchy sound, bad hiss with ALS4000 bas f [2001/11/27] kern/32331 system panic in quotaoff o [2001/11/27] kern/32338 Network to disk write performance low und o [2001/11/28] kern/32353 if kern.maxproc > 512 sybase ASE 11.9.2( o [2001/11/28] gnu/32365 obrien gcc optimiser bug with -O -march=i686 o [2001/11/29] bin/32374 vi -r doesn't work, file contained unexpe o [2001/11/29] ports/32382 znerd 'ant' doesn't work if JAVA_HOME not set o [2001/12/01] bin/32432 /etc/rc.diskless2 borken in stable. o [2001/12/03] ports/32465 ports emulators/vmware2 doesn't build o [2001/12/03] ports/32471 ports amavis-perl only usable for sendmail o [2001/12/03] ports/32476 skv New port: oracle7-client o [2001/12/03] ports/32477 skv New port: p5-DBD-Oracle-1.12 o [2001/12/04] ports/32524 kde Port build failed: x11-toolkits/qt23 o [2001/12/05] ports/32529 kde Konqueror 2.2.2 refuses to follow some li o [2001/12/06] kern/32556 sound system crashes when unloading sound modul o [2001/12/06] ports/32558 olgeni www/sitecopy is broken o [2001/12/07] ports/32589 dirk mod_php4 configure script fails o [2001/12/07] bin/32591 assar The memory block doubly freed in Heimdal o [2001/12/08] kern/32600 luigi [PATCH] incorrect handling of parent rule o [2001/12/08] bin/32619 des libfetch does not use RFC 1738's definito o [2001/12/08] misc/32631 imp installing 4.4 "mounting root from ufs:/d f [2001/12/08] ports/32637 ports Can't make install ja-mozilla-jlp-0.9.6, a [2001/12/09] ports/32639 ports freeamp: preference AllowMultipleInstance o [2001/12/09] ports/32663 kde kdelibs2 port potentially conflicts with o [2001/12/10] kern/32668 peter NFS directory removal problems manifested f [2001/12/10] bin/32686 wosch locate command dumps a core file with bro o [2001/12/11] misc/32699 Tulip ether card EN2242 (if_dc.c) use wro o [2001/12/11] ports/32700 assar inode changes for large o [2001/12/11] kern/32716 system hangs when running vid (usb webcam o [2001/12/11] bin/32717 brian ppp(8) change mss to wrong size o [2001/12/12] bin/32759 [PATCH] make(1) System V include behaviou o [2001/12/12] misc/32760 Please MFC /usr/include/malloc.h to -STAB f [2001/12/12] bin/32791 ru FreeBSD's man(1) utility vulnerable to ol o [2001/12/13] kern/32797 Problem with IPX and netgraph(4) o [2001/12/13] ports/32800 dec gated dies on ppp interface up/down o [2001/12/13] kern/32809 yet another panic while syncing disks aft o [2001/12/13] bin/32817 tobez Base system includes outdated CGI module o [2001/12/14] kern/32827 small SO_RCVTIMEO values are taken to be o [2001/12/14] ports/32832 kde Kmail 1.3.2 / kde 2.2.1 / PGP 6.5.8 - kma o [2001/12/14] ports/32844 kde exiting konq term emulator causes crash o [2001/12/16] ports/32903 ports Kernel panic when returning from single m o [2001/12/16] ports/32922 trevor ports/devel/bin86 won't build with umask o [2001/12/16] misc/32924 dmlb raylink driver having problems receiving o [2001/12/18] ports/32963 skv New port: p5-Class-ISA-0.32 o [2001/12/18] ports/32965 skv New port: p5-Class-BlackHole-0.03 o [2001/12/18] ports/32966 skv New port: p5-Ima-DBI-0.26 o [2001/12/18] ports/32967 skv New port: p5-Class-WhiteHole-0.03 o [2001/12/18] ports/32968 skv New port: p5-Class-DBI-0.36 o [2001/12/18] ports/32970 skv New port: p5-XML-DBMS-1.01.3 o [2001/12/18] ports/32974 skv New port: p5-Math-SimpleVariable-0.03 o [2001/12/18] ports/32975 skv New port: p5-Math-LinearCombination-0.03 o [2001/12/19] ports/33001 skv New port: p5-PodParser-1.18 o [2001/12/19] ports/33002 skv New port: p5-Pod-POM-0.11 o [2001/12/21] kern/33074 joe USB printer support does not detect print o [2001/12/21] ports/33080 ume grkrellmvolume interferes with the abilit o [2001/12/21] ports/33082 ports audio/mxv fails to compile o [2001/12/22] kern/33085 jlemon Samba's NMBD cannot find alias interface o [2001/12/22] bin/33087 ume No automatic ipf setup for IPv6 o [2001/12/22] ports/33093 jdp cvsup SNAP_16_1e breaks by SIGILL during o [2001/12/24] kern/33138 pnp problem in 4.3, 4.4, 4.5 o [2001/12/24] kern/33143 Kernel panic in uhci_abort_xfer_end o [2001/12/24] bin/33155 green [PATCH] sshd can leave hanging processes o [2001/12/25] ports/33170 ache zip -T [zip file] fails with message abou o [2001/12/26] kern/33201 net/net_osdep.c:if_name is broken o [2001/12/26] kern/33206 sound Soundcard f [2001/12/26] misc/33213 ume rarpd fails to init IPv6 enabled interfac o [2001/12/27] kern/33234 luigi dummynet localhost pipe causes machine to o [2001/12/27] bin/33235 find terminates with "find: fts_read: Per o [2001/12/29] misc/33315 pthread_key_create does not zero out the o [2001/12/30] kern/33344 memory leak in device resource config loa o [2001/12/30] kern/33346 jhb Kernel panic with SMP kernel o [2001/12/30] kern/33353 panic at odd times...idle, under no load, o [2001/12/30] misc/33370 Post configuration issue o [2002/01/01] ports/33440 portmgr Ports can not resume an interrupted downl o [2002/01/02] kern/33464 dillon soft update inconsistencies after system o [2002/01/02] ports/33482 ports New port for gimp-print o [2002/01/03] bin/33515 amd incorrectly handles multi-homed nfs s o [2002/01/03] ports/33519 portmgr make index fails if PERL_VERSION is 5.6.1 o [2002/01/03] ports/33522 jkh Cvsupit out of date, RELENG_4 or RELENG_4 o [2002/01/04] pending/33532sound Playing audio on some soundcards with pcm o [2002/01/04] kern/33535 invalid kernel diagnostic while writing d o [2002/01/04] bin/33537 savecore cannot save kernel core if it's f [2002/01/04] gnu/33551 cvs chokes on OpenBSD repositories f [2002/01/05] kern/33578 FreeBSD panics when accessing encrypted D o [2002/01/06] ports/33614 ports port devel/pike is out of date ! o [2002/01/07] ports/33650 kde py-numeric, koffice, others are hard code o [2002/01/07] kern/33653 DSL PPPoE connection error on 4.5-PRERELE o [2002/01/07] misc/33672 sheldonh telnetd and mount_mfs signal handlers cal f [2002/01/08] ports/33680 okazaki /usr/ports/graphics/aalib fails to compil o [2002/01/08] kern/33712 joe Duplicate make_dev panic in ugen.c + patc o [2002/01/09] misc/33723 select(2) implementation in threaded (-lc o [2002/01/09] kern/33738 argv == NULL is not handled correctly by f [2002/01/11] misc/33785 alfred Accept Filtering Stops Answering o [2002/01/11] ports/33795 ports [PATCH] quakeserver questionable file own o [2002/01/12] conf/33810 /etc/ttys: document how to make console i o [2002/01/13] kern/33833 Correct kernel config for 4.4-RELEASE is o [2002/01/13] kern/33839 joe usb0: host controller halted (involving A o [2002/01/13] ports/33848 ports CUPS doesn't find parallel port o [2002/01/14] bin/33881 adduser additions: selectable crypt schem o [2002/01/15] ports/33924 ports firebird-devel build fails - can not appl o [2002/01/15] ports/33925 ports update port www/cgi-lib o [2002/01/15] ports/33927 ports ja-dvipdfm port requires texmf/dvips/base o [2002/01/15] ports/33929 doc Section 15.15 of the FreeBSD Porter's Han o [2002/01/15] ports/33931 mbr trouble installing StarOffice 5.2 over li o [2002/01/16] kern/33940 quotactl allows compromise gid-quotas o [2002/01/16] ports/33972 ports stow upgraded (fixes serious bug re delet o [2002/01/16] kern/33974 Can not record anything with emu10k1 on 4 f [2002/01/17] kern/33978 can't kill process o [2002/01/17] i386/33986 sound SMP and audio causes hard lockups (random o [2002/01/17] ports/34006 ports new port: x11/fspanel o [2002/01/17] bin/34007 pkg_create -b forgets to include install o [2002/01/17] kern/34017 The siginfo_t passed to the signal handli o [2002/01/18] kern/34020 programs fail that poll(2) on fifos o [2002/01/18] pending/34021 Request to add ukrainian whois server to o [2002/01/18] bin/34030 miibus.ko can be loaded into the kernel w o [2002/01/18] pending/34031 hang with linux emulation in 4.5-RC o [2002/01/18] i386/34033 Suspend doesn't work on Dell Latitude CPx o [2002/01/18] ports/34056 ports vmware2 complains of missing file o [2002/01/19] bin/34072 semenu corrupted transfers on mounted ntfs parti f [2002/01/19] misc/34073 3com 3c980c runs "bursty" / freezes-unfre o [2002/01/20] i386/34092 reboot hangs the system (IBM PC Server 31 o [2002/01/21] ports/34110 des linux-opera TP3 doesn't work o [2002/01/21] gnu/34128 sdiff "e" doesn't work with some editors o [2002/01/21] ports/34153 andreas The apsfilter configure script adds bzip2 o [2002/01/23] kern/34205 joe detect USB memory device, But can not use o [2002/01/23] ports/34212 cpiazza Segmentation fault in audio/gmixer f [2002/01/23] ports/34214 znerd New Port: lang/kawa Java Based Scheme Imp o [2002/01/24] kern/34228 Dual processor machine hangs at reboot o [2002/01/24] gnu/34246 joe CVS doesn't rebuild CVSROOT/options o [2002/01/25] kern/34266 SMP does not work on CPQ0579 System board o [2002/01/25] i386/34267 semenu FreeBSD hangs and reboots when overloaded o [2002/01/25] bin/34269 tcpdump -v incorectly identifies packets o [2002/01/25] misc/34270 man -k could be used to execute any comma f [2002/01/26] kern/34306 gibbs 4.5-RC panics on boot with half-supported o [2002/01/26] ports/34308 ports perl build fails due to locales (*.ISO885 o [2002/01/26] ports/34318 se ports/games/rt2-demo-files/do-install has o [2002/01/27] ports/34332 nik print/jadetext fails to build with TeX er o [2002/01/29] ports/34409 kuriyama prc-tools from ports fails to compile on f [2002/01/29] i386/34422 crash system wnen kill pppd with reattach o [2002/01/30] ports/34436 ports /usr/libexec/ld-elf.so.1: Shared object " o [2002/01/30] misc/34458 green 4.5S/sshd forwarding problems o [2002/01/30] ports/34467 portmgr bsd.port.mk is broken WRT USE_AUTOCONF_VE o [2002/01/31] ports/34480 jmz system hangs after killing xinit o [2002/02/01] i386/34536 accept() blocks other threads o [2002/02/01] bin/34539 [PATCH] fsck(8) doesn't account for negat o [2002/02/01] kern/34544 Kernel crash on fclose() of /dev/kbd1 whe o [2002/02/02] ports/34558 sobomax wxgtk-devel port broken o [2002/02/02] misc/34568 turning printer on and off hangs the comp o [2002/02/03] ports/34584 ports New port: mail/nocc (A webmail system bas o [2002/02/03] bin/34586 burncd -t blank blanks CD o [2002/02/03] i386/34588 read-prefetch on VIA 686B IDE causes hang o [2002/02/03] ports/34593 anders minicom-2.00.0 does not build when autoco a [2002/02/03] bin/34601 sheldonh bc(1)'s multi-line file parsing problem o [2002/02/04] kern/34619 TCP - FINs with different sequence number o [2002/02/05] ports/34636 ports XmHTML does not build: debug.c:113: initi f [2002/02/06] ports/34661 ade lang/gcl fails to compile o [2002/02/06] kern/34672 NEWCARD panic. o [2002/02/06] kern/34677 burncd does not work with USB CDRW o [2002/02/06] bin/34682 fenner scanf/sscanf doesn't understand %lld o [2002/02/06] i386/34684 sysinstall core-dumped o [2002/02/07] ports/34691 ports new port for sfs - the self-certifying fi o [2002/02/07] ports/34692 portmgr typing error in bsd.port.mk o [2002/02/07] bin/34725 sos burncd cannot write audio file as the 1st o [2002/02/07] bin/34727 ``/bin/mkdir -p /'' fails o [2002/02/08] ports/34730 ports new port qmail-scanner - a virus-scanning o [2002/02/08] ports/34734 ports There is no pngquant port o [2002/02/08] bin/34741 pkg_info -R gives empty output o [2002/02/09] kern/34764 cisco aironet driver freezes with toshiba o [2002/02/09] kern/34765 Unloading the ipl.ko module will panic th o [2002/02/10] kern/34801 TCP window size bug (afflicting IP Filter o [2002/02/10] bin/34811 sh: "jobs" is not pipeable o [2002/02/11] ports/34829 ports new port: pisg 0.36 o [2002/02/11] misc/34842 VmWare port + NIS causes "broadcast storm o [2002/02/12] ports/34872 ports New Port: KOggTag is a KDE-based tag edit f [2002/02/12] ports/34887 ade Apache modules installed from ports with o [2002/02/12] ports/34893 deischen RUS-CERT Advisory 2002-02:01: Temporary f o [2002/02/12] kern/34895 Linuxulator linux_fcntl64() doesn't handl o [2002/02/13] i386/34902 FTP session causes server reboot o [2002/02/13] ports/34907 sf 4.5/ports/ftp/wget+ipv6 hangs top make o [2002/02/14] ports/34943 ports ports/mail/ecartis o [2002/02/15] ports/34990 kde Kde coredump on halt o [2002/02/16] kern/35004 [PATCH] Fix for pcm driver lockups a [2002/02/17] ports/35050 ports Failure of port drm-kmod to correctly ini o [2002/02/17] kern/35061 After printing to HP Deskjet 656c USB pri a [2002/02/18] bin/35076 maxim sh builtin test command sets real uid to o [2002/02/18] kern/35081 zebra routing problem - kernel bug??? o [2002/02/18] bin/35087 TAR does not recurse directories if it ru o [2002/02/18] misc/35104 Files end up being no bigger than 8192 by o [2002/02/19] misc/35116 keyinfo reports root's keyinfo o [2002/02/19] ports/35121 ports msgfmt in multiple ports causes conflicts o [2002/02/20] kern/35136 VLAN & bridging & MTU o [2002/02/20] misc/35145 cannot open /etc/termcap and no terminal o [2002/02/21] ports/35179 kris elm-2.5.5_1: bounce command doesn't work o [2002/02/21] ports/35183 portmgr postgresql-7.1 repo copy request o [2002/02/22] ports/35209 nakai icewm 1.0.9 crashes o [2002/02/22] bin/35214 dump program hangs while exiting o [2002/02/22] ports/35218 ports WRKDIRPREFIX while /usr/obj exists o [2002/02/23] kern/35248 panic: ffs_valloc: dup alloc o [2002/02/23] misc/35267 after cvsup src-all for 4.5, /stand/sysin o [2002/02/24] ports/35276 nik print/jadetex port doesn't build o [2002/02/24] ports/35288 ports ports/afterstep has resources leak o [2002/02/25] bin/35307 standard include files are not standard c o [2002/02/25] ports/35308 dirk mod_php4 port will not configure (version o [2002/02/25] bin/35309 umount -f does not work for ufs floppy o [2002/02/25] misc/35310 SSHing with expired password does not bri o [2002/02/25] ports/35320 znerd linux-jdk-1.4 JVM fails when running Tomc o [2002/02/25] bin/35321 standard include files do not comply to s o [2002/02/25] ports/35325 ports gtk_set_locale patch for ports/x11-fonts/ o [2002/02/25] bin/35329 Linking against libc_r.* provokes nasty l o [2002/02/26] misc/35350 Can't boot on ASUS TXP4 o [2002/02/26] kern/35351 emu10k1: no posibility to record sound. K o [2002/02/26] ports/35353 green cfs strips eighth bit of file name on "ou o [2002/02/26] ports/35364 ports cdb port forgets uint32.h o [2002/02/26] ports/35369 knu japanese/rskkserv won't start up o [2002/02/27] ports/35386 ports doxygen port will not configure o [2002/02/27] ports/35388 ports xsane_create_secure_file fails if file ex o [2002/02/27] kern/35396 poll(2) doesn't set POLLERR for failed co o [2002/02/28] kern/35399 poll(2) botches revents on dropped socket o [2002/02/28] kern/35408 es137x.c warning causes buildkernel failu o [2002/02/28] kern/35425 System hang while boot on specific SMP mo f [2002/02/28] ports/35426 dirk lang/php4 does not patch o [2002/02/28] kern/35429 select(2)/poll(2)/kevent(2) can't/don't n o [2002/02/28] docs/35430 doc [Maintainer Update] Filtering-Bridges Art o [2002/02/28] ports/35432 knu sysutils/portupgrade: portsclean does not o [2002/02/28] ports/35434 ports Apache 1.3.23 + mod_ssl 2.8.7 and PHP 4.1 o [2002/02/28] kern/35442 Problem transmitting runts in if_sis driv o [2002/03/01] alpha/35455 alpha Unable to compile ISA NIC devices into ke o [2002/03/01] kern/35461 trap 12 when booting with Maxtor 160G dis o [2002/03/02] kern/35482 dc driver uses wrong case to read MAC fro o [2002/03/03] misc/35506 innetgr() doesn't match wildcard fields i o [2002/03/03] kern/35511 sis(4) multicast filtering doesn't pass s o [2002/03/03] ports/35515 steve open-motif-2.1.30_2 installation deletes o [2002/03/03] ports/35517 ports New port: MySQL 4.0 o [2002/03/04] bin/35538 ssh can hang waiting for EOF on stdin o [2002/03/05] ports/35570 ports aureal-kmod ports has invalid Makefile o [2002/03/06] docs/35620 doc make release fails in documentation for R o [2002/03/07] bin/35622 sigaltstack is missing in libc_r o [2002/03/07] ports/35631 ports SKIP and IPSEC together cause kernel pani o [2002/03/07] ports/35632 ports o [2002/03/07] kern/35645 Layer 2 switching using default router of o [2002/03/07] misc/35662 send-pr and/or web pr query system screws o [2002/03/08] kern/35669 NFSROOT breaks without a gateway o [2002/03/08] docs/35678 doc docproj Makefiles for web are broken for o [2002/03/08] docs/35683 doc Fix amd info o [2002/03/08] kern/35691 Realtek NIC driver does not work with Rea f [2002/03/08] ports/35695 ade net/fugu broken o [2002/03/09] kern/35703 /proc/curproc/file returns unknown o [2002/03/09] ports/35704 ports XFree86-4 Font server port fails on Wraph o [2002/03/09] kern/35720 Patch to vr(4) to fix network load proble o [2002/03/09] docs/35724 doc www; Handbook missing link to important H o [2002/03/10] i386/35742 USB 2.0 attached device cannot be fdisk'd o [2002/03/10] kern/35756 USB reattach of Sony DSC-S75 fails, USB s o [2002/03/11] ports/35768 ports New port: 'Flasher' monitors log or mail o [2002/03/11] misc/35774 [SECURITY] Suboptimal auditing possibilit o [2002/03/11] ports/35775 ports mail/postfix: not started at boot time on o [2002/03/11] ports/35777 des www/linux-opera does not install with lin o [2002/03/11] ports/35778 ports www/linux-netscape47-navigator does not i o [2002/03/12] alpha/35815 alpha Can't install 4.5 for Alpha from the 4.5- a [2002/03/12] i386/35816 cjc no one can change password, because "pass o [2002/03/12] ports/35830 gnome www/mozilla 0.9.9,1 broken o [2002/03/12] bin/35842 rm -f nonexistent file successful but rm o [2002/03/13] bin/35843 maxim [PATCH] MD5 auth implemented in routed is o [2002/03/13] ports/35850 dirk mod_php4 doesn`t compile when apache2 ins o [2002/03/13] gnu/35878 /usr/bin/strip resets ABI type to FreeBSD o [2002/03/13] conf/35880 rc files could be a bit more jail friendl o [2002/03/14] kern/35887 ipfw(8) limit feature does not work prope o [2002/03/14] ports/35893 knu portupgrade fails on freetype2 o [2002/03/14] ports/35907 gnome Attempts to build mozilla fail (on curren o [2002/03/15] bin/35921 Wrong path reduction of dot-dot paths in o [2002/03/15] misc/35924 signal.h does not check for _POSIX_REALTI o [2002/03/15] bin/35925 fixit floppy cannot be mounted on USB dri o [2002/03/15] docs/35940 doc red(1) manual doesn't explain red(1). o [2002/03/16] kern/35969 peter kernel option PPP_DEFLATE often procudes o [2002/03/16] ports/35980 gnome www/mozilla{,-headers}: installs incorrec a [2002/03/16] kern/35985 swap double mount o [2002/03/16] kern/35986 Wrong bpf-header preceading packet when u o [2002/03/16] kern/35989 720KB floppies unusable o [2002/03/16] ports/35990 ports [Maintainer Update Port] Boa Web Server ( o [2002/03/16] ports/35994 ports math/atlas does not build on some machine o [2002/03/16] ports/35996 gnome gnumeric port fails on missing libxml o [2002/03/17] kern/36002 compile is stopped without DDB define o [2002/03/17] i386/36003 Cyclades Cyclom YeP causes panics on Free o [2002/03/17] i386/36016 [patch] boot2 inconditionnally allows use o [2002/03/17] kern/36038 sendfile(2) on smbfs fails, exposes kerne o [2002/03/18] bin/36041 mount_smbfs can't cope without password d o [2002/03/18] misc/36048 stallo of shell o [2002/03/18] ports/36049 ports Mozilla 0.9.9 TrueType support broken o [2002/03/18] ports/36054 ports snmpd daemon from ucd-snmp-4.2.3 crashes 870 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1995/01/11] i386/105 Distributed libm (msun) has non-standard s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/11/20] kern/831 one minor complaint about the kernel visu a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases a [1996/07/07] bin/1375 eivind Extraneous warning from mv(1) [PATCH] s [1996/10/13] misc/1791 tegge syslimits.h does not allow overriding def f [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/12/02] bin/2137 tegge vm statistics are bad s [1996/12/14] bin/2216 [PATCH] Ada specs not being compiled into o [1996/12/24] kern/2273 dufault support for POSIX.4 / POSIX.1a RT-schedul s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po a [1996/12/27] misc/2302 brandon new crypt() including SHS and an extendab o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/28] bin/2603 dufault Added POSIX.4/POSIX.1b constants in unist a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d s [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/03/10] bin/2934 cracauer sh(1) has problems with $ENV s [1997/03/10] bin/2938 hoek Add -b, -l, and -f options to du(1) f [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO f [1997/04/07] ports/3225 dinoex [PATCH] uucpd.c should normalize host nam o [1997/04/14] bin/3284 mikeh [PATCH] symorder(1): -t option doesn´t wo a [1997/05/08] gnu/3552 the -L option of tar does not work proper f [1997/05/16] bin/3608 jkoshy Telnet in linemode will break apart long o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) f [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/24] kern/3944 paul if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 jlemon nonworking t/tcp server side o [1997/07/18] bin/4116 davidn 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 f [1997/08/07] kern/4243 file locking doesn't work for pipe o [1997/08/08] misc/4249 wpaul ypchsh doesn't care about changing a user o [1997/08/13] kern/4297 dufault SIGEV_NONE and SIGEV_SIGNAL go in signal. o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/14] ports/4304 portmgr Recommendation re. Ports Collection o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 roberto find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta f [1997/09/13] kern/4528 processes hang if the mount_portal proces o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 qa Can't fixit with an NFS-mounted CD. o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/10/15] gnu/4771 diff to correct misleading total bytes in o [1997/10/24] kern/4845 Boot complains about disk slices in FAT p f [1997/11/08] bin/4975 quotaon while server very busy causes loc 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/11/30] i386/5182 bde [PATCH] A patch support high speed serial s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with o [1998/01/11] bin/5483 Login(1) clears utmp entry s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 jkoshy Trouble with LD_PRELOAD environment varia o [1998/01/31] bin/5609 gad lpd cannot send long files to HP's JetDir o [1998/02/09] kern/5689 phk sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] bin/5712 mikeh /bin/chio code cleaup and option added o [1998/02/14] bin/5745 nik [PATCH] Add /usr/local/share/mk to defaul o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT a [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/03/11] gnu/5982 no error exit code from tar on child fail f [1998/03/28] bin/6161 assar 2.2.6 kerberos servers are awfully visibl f [1998/03/31] bin/6183 quota hangups a [1998/03/31] kern/6184 No error if resulting file pos in lseek i a [1998/04/16] misc/6320 mike Sometimes nohup isn't good enough. o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 joe Kernel version strings need to relate to f [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/12] misc/6612 bsd.man.mk can't handle man pages with ": o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje 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 s [1998/06/01] kern/6820 jesper cd9660_mount NULL pointer deref for no CD f [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/22] bin/7023 portmgr bsd.port.(%|subdir.).mk patches for size s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b s [1998/06/28] i386/7100 integrate pcvt configuration into the /et s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % f [1998/07/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, s [1998/07/10] misc/7232 qa Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel o [1998/07/12] bin/7265 A warning flag is added to ln(1). f [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m a [1998/07/19] bin/7324 Suggestions for minor modifications to ad s [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace s [1998/08/18] bin/7669 libalias does not IRC DCC packets under c o [1998/08/19] gnu/7687 description of default baud rate for cu c s [1998/08/22] kern/7722 Changes to acct format o [1998/09/03] bin/7828 Add a command line option to cp to make i o [1998/09/08] bin/7860 gad Extra option to pr(1). s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/16] misc/7946 asami ccdconfig gives confusing error when give o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re s [1998/09/21] kern/8015 nbm [patch] Some sysctl descriptions for the o [1998/09/27] ports/8063 portmgr [PATCH] Add multiple CDROM support to bsd o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) f [1998/10/12] bin/8295 order of options in printcap causes some f [1998/10/16] kern/8349 [PATCH] Changer definition for SureStore o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/27] i386/8474 repquota does not pick up NIS information 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/03] bin/8553 /usr/libexec/mail.local doesn't handle "> f [1998/11/08] kern/8604 ps u gets confused about process start ti o [1998/11/27] i386/8867 qa /stand/sysinstall core dumps (signal 11) o [1998/12/16] ports/9107 portmgr Addition to bsd.port.mk for searching mul a [1998/12/18] bin/9123 kris pax can't read tar archives that contain f [1998/12/28] misc/9220 ache nvi: catalog: mistake in Russian error me o [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy a [1999/01/05] bin/9333 jkoshy timestamp dump's progress f [1999/01/08] kern/9392 Alternate system clock OR kernel stats cl o [1999/01/19] kern/9570 dfr ed(4) irq config enhancement o [1999/01/22] kern/9619 Restarting mountd kills existing mounts f [1999/01/25] kern/9679 fix for uninterruptible open in portal fi f [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. f [1999/01/28] kern/9748 error in queue handling of at_shutdown() a [1999/01/28] bin/9770 kris An openpty(3) auxiliary program o [1999/01/29] i386/9777 cg Generic AD1816 sound suport in Luigi's pc o [1999/01/31] ports/9840 portmgr patch allows ports to fetch their sources o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s o [1999/02/01] conf/9874 idle-timeout facilities in /etc/login.con o [1999/02/09] i386/9991 new driver for National Instruments GPIB o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/02/25] docs/10240 wosch We need a script which check if our web m f [1999/02/26] bin/10283 Race condition in rc.network o [1999/03/02] bin/10358 yar ftp(1) has problems with long pathnames f [1999/03/05] ports/10396 asami SPIN is in the wrong category f [1999/03/07] i386/10465 mdodd Must disable ex0 to install. o [1999/03/15] i386/10608 add Opti Viper-M PCI ID f [1999/03/15] kern/10609 adjtime bug (tv_sec > 2147) and enhanceme o [1999/03/15] bin/10611 timed enhancement o [1999/03/17] kern/10641 groudier Default sync rate in ncr SCSI driver is s o [1999/03/19] gnu/10670 cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re o [1999/03/19] ports/10682 portmgr List mirror sites in MASTER_SITE_BACKUP - o [1999/04/03] bin/10931 biff b o [1999/04/05] ports/10965 ports lcc-3.6 unable to compile anything o [1999/04/08] kern/11020 popen does not honor ISO 9899 syntax o [1999/04/08] bin/11036 markm Perl does not honor -DNOMAN o [1999/04/10] conf/11058 Recent change to rc script causes hang on o [1999/04/11] bin/11085 Per-host configuration for syslog.conf o [1999/04/11] bin/11092 readlink(1) from OpenBSD o [1999/04/13] bin/11114 make(1) does not work as documented with o [1999/04/14] ports/11134 hoek existense of /usr/obj/usr/ports/shells/ba o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 a [1999/04/16] bin/11168 davidn pw(8) usermod does not recognize -w flag f [1999/04/20] bin/11236 mountd fails to properly check for kernel o [1999/04/20] bin/11248 Shuffle o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi o [1999/05/19] kern/11789 obrien ELF machine definition missing for ARM o [1999/05/28] bin/11914 wosch makewhatis during installworld uses /usr/ o [1999/05/29] bin/11929 symorder doesn't work on elf format objec f [1999/05/30] kern/11945 mjacob tape problems on -stable, mt bl(ocksize), f [1999/05/31] kern/11968 kldload should call module entry point be f [1999/06/01] i386/11979 Vaio 505DX touchpad not detected as Glide o [1999/06/03] kern/12014 alfred Fix SysV Semaphore handling o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor o [1999/06/07] kern/12071 [PATCH] large scale IP aliasing o [1999/06/08] i386/12088 Enhancement to ed driver for Linksys 10/1 o [1999/06/16] bin/12244 realpath() fails when there is no permiss o [1999/06/18] bin/12280 jdp LD_IGNORE_MISSING_OBJECTS not honored for o [1999/06/21] conf/12324 qa Sysinstall's fdisk partition editor is mi o [1999/06/21] ports/12325 portmgr Adds refetch functionallity to bsd.port.m s [1999/06/23] bin/12358 ken Patch: "camcontrol help" should go to std f [1999/06/24] i386/12383 make release warns about /dev entries mak o [1999/06/26] bin/12398 fsck in free(): warning: pointer to wrong a [1999/06/28] conf/12432 dougb empty amd_flags causes start failure in r o [1999/07/06] 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/08] ports/12566 billf a guide to pyrotechnics o [1999/07/20] kern/12723 des Unnecessary use of magic numbers in F_[SG o [1999/07/25] bin/12801 nvi infinite recursion with options "left o [1999/08/03] bin/12939 add flag to quota to suppress NFS quota c o [1999/08/04] ports/12952 portmgr make _PORT_USE touch cookies by variable, f [1999/08/04] kern/12966 wpaul receiver lockups in vr0 driver f [1999/08/05] 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/09] bin/13043 minigzip -c option support. f [1999/08/10] kern/13062 lnc ethernet xmit underflow problem o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/11] bin/13072 billf Extensions to biff(1) o [1999/08/11] bin/13073 billf Extensions to mesg(1) o [1999/08/12] bin/13108 authunix_create_default includes egid twi o [1999/08/13] bin/13128 billf pkg_delete doesn't handle absolute pathna o [1999/08/15] kern/13161 alfred mounting on top of a mounted file system f [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque o [1999/08/21] bin/13309 billf Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for ' cannot be used in "via" o [2000/05/30] kern/18909 dwmalone select(2) timeout limited to 100000000 se o [2000/06/01] ports/18960 portmgr Add USE_APACHE to bsd.port.mk for Apache o [2000/06/01] bin/18961 green sshd does not print before motd o [2000/06/03] bin/18992 brian log packets blocked by filter rules o [2000/06/03] misc/18997 markm Kerberos5 CFLAGS needed f [2000/06/04] conf/19001 Delayed fsck + mount of insignificant fil o [2000/06/06] ports/19051 asami New target for bsd.port.mk : fetchdepends f [2000/06/06] bin/19057 offer of patch to uname that produces pre o [2000/06/07] ports/19112 portmgr files with names something,v in patches d o [2000/06/09] kern/19156 jkh Enable the doFS.sh to run in arbitrary lo o [2000/06/11] kern/19213 SC_DFLT_FONT compile option breaks kernel f [2000/06/13] conf/19236 sanpei not-existing PCMCI cards in pccard.conf.s o [2000/06/13] bin/19239 login allows users to login remotely with o [2000/06/13] misc/19246 portmgr Poor error message when fetching files wi o [2000/06/13] ports/19253 dirk mod_php4 has pkg dependency when not usin o [2000/06/14] ports/19270 portmgr Ports build mechanism doesn't check wheth o [2000/06/15] gnu/19327 Fix to build 'a.out' binary. o [2000/06/19] misc/19391 emulationEvilness with Linux Terminus, causes X to o [2000/06/20] bin/19404 /usr/bin/error should be included in the o [2000/06/20] misc/19406 setenv() allocates memory which is not fr a [2000/06/21] bin/19422 mikeh users can overflow argv to make ps segfau o [2000/06/22] ports/19448 markm filename input broken o [2000/06/23] misc/19467 green OpenSSH (as an rsync tunnel) blocks forev o [2000/06/24] kern/19490 faith0 network device has high number of o [2000/06/26] kern/19535 adrian procfs_rlimit tidyup s [2000/06/28] conf/19573 des Dot Files for Optional Shells o [2000/06/29] ports/19591 ports ssh2 port ignores 'ignorenologin' from lo o [2000/06/30] ports/19594 trevor update port: qrash o [2000/07/01] bin/19635 add -c for grand total to df(1), like du( o [2000/07/02] gnu/19642 kbyanc patch to merge OpenBSD changes to patch(1 o [2000/07/02] ports/19650 asami python package causes segmentation fault o [2000/07/03] bin/19683 green mount displays incorrect mount point on f a [2000/07/03] kern/19686 yokota splash screen fails o [2000/07/05] kern/19720 kbyanc more sysctl signed-ness patches o [2000/07/06] gnu/19733 mp GDB 4.18 is not GDB 4.18 o [2000/07/07] kern/19756 Inability to use linux extended partition o [2000/07/07] bin/19772 df output wrong for union-mounts o [2000/07/08] kern/19782 dirk mkisofs 1.12.1 (i386-unknown-freebsd4.0) f [2000/07/09] misc/19798 cg 4DWAVE doesn't work. o [2000/07/10] kern/19827 yokota psm flag bit9(NOIDPROBE) doesn't work cor o [2000/07/10] misc/19837 ambrisko Run Fit it floppy from serial port o [2000/07/12] ports/19868 portmgr modify ports/Mk/bsd.port.mk to remove ALL o [2000/07/12] kern/19871 alfred select on named pipes always returns 'ava o [2000/07/14] kern/19913 des add SYN+FIN counter o [2000/07/15] kern/19966 new syscons screensaver o [2000/07/18] gnu/20004 FBSD4 gcc __attribute__(constructor) not o [2000/07/18] misc/20024 jake [PATCH] queue(3) concatenation macros o [2000/07/19] bin/20042 "rsh -t" doesn't timeout if rcmd(3) never o [2000/07/20] bin/20054 ftpd: rotating _PATH_FTPDSTATFILE losts x o [2000/07/23] docs/20121 jim Better user ppp documentation in man page o [2000/07/24] misc/20139 msmith Simple typo in src/share/examples/ppi/ppi o [2000/07/24] ports/20145 dburr improving the devel/SN port o [2000/07/24] misc/20159 strftime() can't produce ISO8601 format t o [2000/07/24] misc/20166 billf Corrections & additions to games/quiz/dat o [2000/07/26] bin/20204 ps more doesn't handle 8-bit characters prop o [2000/07/27] kern/20214 dec kernel routing bug for nexthop is routed o [2000/07/28] misc/20254 jhb BTX loader 1.00 can not recognize floppy o [2000/07/28] ports/20270 reg libtool needlessly runs ldconfig after in o [2000/07/29] kern/20297 cg Joystick is not enabled with es1370 based o [2000/07/31] misc/20326 marcel [PATCH] installkernel fails if DESTDIR is o [2000/07/31] misc/20333 ftp login fails on unix password when s/k o [2000/08/01] kern/20352 yokota Configuring a synaptics touchpad o [2000/08/02] ports/20359 demon New port: Apache-mod_perl_guide o [2000/08/02] bin/20371 dhclient inserts bogus configurations o [2000/08/03] kern/20384 n_hibma Phase errors with Zip650 CD on USB o [2000/08/03] kern/20389 ken "device pass" required for CD ripping o [2000/08/03] bin/20391 jhb sysinstall should check debug.boothowto s o [2000/08/04] kern/20410 sio support for high speed NS16550A, ST16 o [2000/08/05] conf/20436 Can't make only cd0 under 4.1-STABLE o [2000/08/07] misc/20457 davidn pw command doesn't generate random passwo o [2000/08/09] ports/20499 obrien [PATCH] conserver port doesn't like MD5 c o [2000/08/09] bin/20501 mjacob extra flag to dump to offline autoloaders a [2000/08/10] ports/20520 olgeni New port: lang/mercury o [2000/08/10] docs/20528 doc sysconf(3) manpage doesn't mention posix. s [2000/08/10] kern/20529 billf gigabit cards fail to link o [2000/08/11] i386/20537 msmith HP NetRAID controller error when rebootin a [2000/08/14] ports/20601 ports DESTDIR and /etc/shells a [2000/08/14] ports/20610 patrick New port of cgoban2 o [2000/08/15] bin/20613 des fetch -T n is not timeout correctly when o [2000/08/16] i386/20660 wpaul if_wi provides 802.11 src and dst, not et o [2000/08/17] ports/20678 portmgr make SORTED_MASTER_SITES_CMD variable ove o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE s [2000/08/22] conf/20774 dougb 'NFS access cache time=2' is not a daemon o [2000/08/23] ports/20795 msmith FBSD 4.x: Citrix client with drive mappin o [2000/08/23] bin/20799 davidn top's problem o [2000/08/23] i386/20803 mdodd ep0 driver finds additional "shadow" ep c o [2000/08/23] kern/20804 deadlocking when using vnode disk file an o [2000/08/24] bin/20824 ftpd returns, "ad0s1a: not a plain file." o [2000/08/24] misc/20830 lile kernel link problems with Olicom token ri f [2000/08/25] i386/20845 Cyclades cy driver incompatible with Cycl o [2000/08/26] kern/20878 wpaul Patch to add support for the 3c556B MiniP o [2000/08/26] bin/20881 kris There's no reason not to build DNSsec-DSA o [2000/08/27] bin/20889 dwmalone syslogd.c still uses depreciated domain A o [2000/08/28] bin/20908 qa /stand/sysinstall too limited in selectio o [2000/08/29] misc/20920 yokota window(1) interferes with screensaver o [2000/08/29] kern/20927 ume dmesg output: looutput: mbuf allocation f o [2000/08/30] bin/20944 ru natd enhancements, default config file an o [2000/09/02] bin/20996 kris permissions on /usr/bin/opiepasswd o [2000/09/02] bin/21008 gad Fix for lpr's handling of lots of jobs in o [2000/09/04] bin/21024 pow() ERANGE bug o [2000/09/05] conf/21059 marcel `make -jN buildkernel' can't keep source o [2000/09/05] conf/21066 Proposed change in rc scripts o [2000/09/05] misc/21070 marcel default setting of ${SUP} in Makefile.inc o [2000/09/06] bin/21074 davidn chkgrp vs group(5) inconsistency f [2000/09/06] bin/21075 dwmalone top: can't allocate sufficient memory o [2000/09/06] bin/21080 mjacob dump doesn't use eject tape device correc o [2000/09/09] bin/21142 [PATCH] avoid errors from "make objlink" o [2000/09/09] kern/21156 yokota [PATCH] inconsistency in scmouse vs xterm s [2000/09/10] bin/21178 ken voltag selector, and unload support for c o [2000/09/12] kern/21222 dillon wrong behavior of concurrent mmap()s on N o [2000/09/12] kern/21229 Proper value for vfs.nfs.access_cache_tim o [2000/09/16] bin/21312 more incorrectly redraws screen on xterm f [2000/09/16] ports/21313 mbr vmwarIPv6 and vmware2 panic: Fatal trap 1 o [2000/09/16] bin/21315 Shells often behave oddly when executing o [2000/09/22] misc/21494 yar ftpd can't handle /etc/chroot entries wit o [2000/09/24] bin/21519 sys/dir.h should be deprecated some more o [2000/09/24] bin/21531 csh/tcsh provide no way to see/adjust new f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q o [2000/09/28] ports/21621 portmgr Update port: devel/libtool to 1.3.5 f [2000/09/28] kern/21623 wpaul Chipset SiS630E / NIC SiS 900 o [2000/09/29] misc/21644 /usr/include/sys/mman.h uses a type defin 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] misc/21675 Better and more disktab entries for MO dr o [2000/10/02] conf/21695 ifconfig_XXX_aliasY in rc.conf; Y must be o [2000/10/02] misc/21715 The freebsd mail list digifier loses MIME o [2000/10/02] ports/21719 nbm New Port: Courier Mail Suite o [2000/10/04] bin/21751 ken libcam's cam_real_open_device() may lose o [2000/10/04] kern/21754 n_hibma Sound stops working when NetGear USB Devi o [2000/10/05] ports/21765 portmgr I cat't make ports using pw_gid) != typeof(group->g o [2000/10/26] conf/22308 mounting NFS during boot blocks if host m o [2000/10/26] misc/22332 request to add vtys to /etc/ttys o [2000/10/27] bin/22351 sed(1) fails with backslash on buffer bou o [2000/10/29] ports/22399 msmith PIB 1.2 still looks for MD5 info in files o [2000/10/30] ports/22412 taoka two extraneous ports and one name change o [2000/10/31] bin/22442 greid [PATCH] Increase speed of split(1) s [2000/11/01] docs/22470 doc man 3 msgrcv's BUGS section needs updatin o [2000/11/02] ports/22550 obrien Patch for conserver for log file rotation o [2000/11/04] kern/22602 CDRoms checked during shutdown (umount) o [2000/11/04] bin/22612 schweikh crontab -e failures o [2000/11/06] conf/22645 Cannot override "ignore" in /etc/mail.rc o [2000/11/07] misc/22660 termcap kterm entry tc=xterm is wrong a [2000/11/08] misc/22696 luigi picobsd build with router configuration c o [2000/11/08] ports/22698 portmgr Ports' rc.d files should use rc.conf o [2000/11/09] bin/22730 fenner tcpslice doesn't handle long file offsets f [2000/11/14] conf/22859 darrenr rc.network should start ipf/ipnat AFTER p o [2000/11/14] bin/22860 yar [PATCH] adduser & friends with '$' in use o [2000/11/14] docs/22861 dd newsyslog man page is misleading and inco o [2000/11/15] kern/22868 getsockname may return an incorrect addre o [2000/11/15] misc/22873 markm Perl's core'h conflicts with ncurses.h o [2000/11/16] i386/22900 patch: Adds Brand ID support to src/sys/i o [2000/11/17] misc/22914 bootinst messages are not updated s [2000/11/17] conf/22916 green Ssh/sshd binaries lacks kerberos support o [2000/11/17] bin/22933 green Typographical error in ssh.1 f [2000/11/20] ports/22995 grog Update port: x11-servers/x2x (fix ports/2 o [2000/11/23] conf/23063 ru [PATCH] for static ARP tables in rc.netwo o [2000/11/24] bin/23082 dwmalone ntpd has only one reference-clock parser o [2000/11/25] bin/23097 Enhance WEP some more including ability t o [2000/11/27] misc/23148 getopt(3) works non-intuitively? o [2000/11/29] bin/23178 'talk' not doing right thing o [2000/11/29] bin/23180 Certain KOI8 characters are treated as "w o [2000/12/01] bin/23204 length of salt in crypt() is not the same a [2000/12/02] ports/23232 ports gettext/xview port collision o [2000/12/02] bin/23233 kris Reincorporate /usr/bin/error in the FreeB a [2000/12/03] bin/23254 fenner yacc accepts bad grammer o [2000/12/04] ports/23287 portmgr allow system-local patches for ports o [2000/12/05] kern/23304 POSIX clock_gettime, clock_getres return f [2000/12/05] kern/23314 aic driver fails to detect Adaptec 1520B f [2000/12/07] misc/23362 fenner tcpdump wrong on sppp CISCO_HDLC encoded o [2000/12/07] misc/23366 mmap() non conforming o [2000/12/07] gnu/23367 some src/gnu Makefiles are missing $FreeB o [2000/12/09] conf/23402 sysinstall upgrade ought to check partiti o [2000/12/11] bin/23472 mp gdb weirdness on programs compiled with - a [2000/12/12] ports/23499 ports [NEW PORT]: Two LaTeX macro package ports o [2000/12/13] kern/23520 sb0 old style audio support in 4.2-RELEAS o [2000/12/13] misc/23539 marcel make installworld from nfs mounted /usr/s o [2000/12/14] kern/23546 tanimura [PATCH] csa DMA-interrupt problem o [2000/12/14] ports/23560 portmgr linux-jdk/Makefile assumes default `patch o [2000/12/15] i386/23562 telnetd doesn't show message in file spec o [2000/12/15] ports/23581 portmgr Updates to bsd.port.mk to detect changing o [2000/12/17] gnu/23598 Merge libgcc_r with libgcc o [2000/12/17] ports/23602 portmgr Recursive distclean for bsd.port.mk w/pat o [2000/12/18] bin/23635 mike [PATCH] whois enhancement - smarter whois f [2000/12/20] kern/23692 GENERIC kernel config on 4.2 changes defa o [2000/12/22] misc/23766 /etc/periodic/daily/440.status-mailq does o [2000/12/24] kern/23814 .au sound files < 528 bytes actual data d o [2000/12/24] ports/23822 ports mtree entries for German X11 man pages a [2000/12/28] bin/23912 sheldonh underflow of cnt in vs_paint() by O_NUMBE o [2000/12/29] bin/23944 Patch for ftpd to add a cd after the chro o [2001/01/04] bin/24066 mp gdb can't detach from programs linked wit o [2001/01/06] ports/24120 portmgr "/usr/ports/Mk/bsd.port.mk", line 626: In o [2001/01/07] misc/24132 mp gdb output is wrong (same as #13427 ?) o [2001/01/07] kern/24141 sound emu10k1 has trouble playing non-44.1KHz s o [2001/01/10] ports/24214 portmgr [PATCH] verbose 'make index' o [2001/01/11] ports/24259 steve port of open-motif on make install compla o [2001/01/12] ports/24292 portmgr update-patches target in ports/Mk/bsd.por o [2001/01/12] ports/24299 ports Configure the synaptics touchpad. a [2001/01/14] misc/24324 phantom Greek console support o [2001/01/15] ports/24361 asami wrong filemodes o [2001/01/16] misc/24384 4.1 Cant add entry to neighbour discovery o [2001/01/16] bin/24390 Replacing old dir-symlinks when using /bi o [2001/01/16] kern/24393 Patch to msdosfs to handle a kind of inco o [2001/01/18] bin/24435 Changing slice type causes Auto-partition o [2001/01/20] bin/24485 [PATCH] to make cron(8) handle clock jump o [2001/01/20] ports/24493 msmith Pib maker function unable to launch xterm a [2001/01/21] kern/24512 jesper Sent ICMP unreach when packet not for us o [2001/01/21] misc/24513 peter new options for pppd o [2001/01/21] conf/24515 Fix for find(1) warning in /etc/rc o [2001/01/21] bin/24521 green ssh-agent exits when authenticating DSA v o [2001/01/22] kern/24528 Bad tracking of Modem status o [2001/01/23] bin/24592 cjc dmesg.boot Gets Overwritten without Reboo o [2001/01/25] ports/24651 mharo portlint gives a bogus warning o [2001/01/26] ports/24658 jkh Enhancement to src/release/Makefile a [2001/01/26] ports/24660 ports New port: Xerces-C 1.3.0 o [2001/01/26] alpha/24663 alpha Console output gets scribbled into /var/l o [2001/01/27] gnu/24681 gcc 2.95.3 cannot compile rince.c from IO o [2001/01/27] ports/24687 ports QUAKE FORGE & SVGALIB a [2001/01/30] ports/24736 ports New port: SGI's open inventor (graphics/i o [2001/01/30] bin/24742 send adduser.message before dirs are crea o [2001/01/30] ports/24743 chuckr a2ps port installs files in / o [2001/01/30] misc/24746 green SSH terminal hangs on large paste of data o [2001/01/30] ports/24749 dirk mysql323-server pkg-install script doesn' o [2001/01/31] bin/24757 ftpd not RFC compliant o [2001/02/01] docs/24786 doc missing FILES descriptions in sa(4) o [2001/02/02] docs/24797 phk when using MALLOC_DEFINE sys/param.h and o [2001/02/03] kern/24827 yokota Erratic Intellimouse Explorer in 4.1 and o [2001/02/03] bin/24828 [PATCH] ntpd compilation and additional r f [2001/02/04] gnu/24844 gdb does not support Linux threads a [2001/02/05] docs/24869 keramida Some text elf.5 is duplicated o [2001/02/05] kern/24882 ktrace not syncing .out file before panic o [2001/02/06] kern/24900 Server logs:indfcntl(8, F_SETFL, 4): Inap o [2001/02/06] kern/24902 IPC Message Queue number to big o [2001/02/06] misc/24907 qa Options screen at MenuMedia menu problem o [2001/02/07] ports/24940 demon prolem with Tnm::icmp echo command due to o [2001/02/08] bin/24953 green adduser ignores passwd_format in login.co o [2001/02/08] kern/24959 jesper proper TCP_NOPUSH/TCP_CORK compatibility o [2001/02/08] i386/24963 perfmon(4) doesn't work on SMP systems o [2001/02/09] ports/24983 asami Emacs ports have misleading names o [2001/02/10] ports/24987 nbm New port: Courier mail server. o [2001/02/11] bin/25012 tar(1) as root does not preserve ownershi o [2001/02/11] bin/25013 mv(1) cannot move unresolvable symlinks a o [2001/02/11] bin/25015 cp: options -i and -f do not work as docu a [2001/02/11] docs/25016 ru symlink(7) manpage says symlinks have no o [2001/02/11] bin/25017 cp -pRP does not preserve symlink ownersh o [2001/02/11] kern/25018 lstat(2) returns bogus permissions on sym o [2001/02/12] ports/25031 ache www/apache: dbmmanage fails verifying md5 f [2001/02/13] bin/25059 des dlopen(..,RTLD_GLOBAL) doesn't work for s o [2001/02/13] bin/25070 newsyslog(8) should send signals only onc o [2001/02/13] bin/25085 msmith mlxcontrol utility fails silently if devi o [2001/02/15] misc/25109 Fujitsu MO device MCC3064AP could't be c o [2001/02/19] misc/25218 peter mailwrapper invokes sendmail when resourc o [2001/02/20] bin/25241 luigi ipfw shouldn't show dynamics rules when s f [2001/02/21] bin/25263 green openssh and /etc/login.access does not wo o [2001/02/21] bin/25273 add fs type feature to vnconfig(8) to all f [2001/02/21] kern/25275 X server freezes system randomly on pentu f [2001/02/22] bin/25278 dd bs accepts -s -c but not -sc o [2001/02/22] alpha/25284 alpha PC164 won't reboot with graphics console o [2001/02/23] ports/25313 wosch Script source displayed at http://www.nl. o [2001/02/26] misc/25378 kris update contrib/libgmp to newer version (3 o [2001/02/26] kern/25386 cg Incorrect mixer registers (line & synth) o [2001/02/26] docs/25405 wosch misleading warning from catman(1), etc. a [2001/02/27] ports/25419 ports Difficulties installing print/teTeX port o [2001/02/27] kern/25445 kernel statistics are displayed in wrong a [2001/02/28] ports/25448 ports mpmf20 fails to correctly display the dir f [2001/02/28] gnu/25459 Dumpvalue.pm says SYNOPSYS instead of SYN o [2001/02/28] bin/25462 daemon(3) fails if called by a session le f [2001/02/28] i386/25463 PS/2 mouse sync problems with KVM switch o [2001/03/01] bin/25477 billf pam_radius fix to allow null passwords fo o [2001/03/02] ports/25490 wosch [PATCH] fix various bugs in stat(1) a [2001/03/02] conf/25495 phantom missing et_EE.ISO_8859-15 locale a [2001/03/02] misc/25499 buffer paste functionality from keyboard o [2001/03/03] kern/25517 ARP cache timeout behavior can be improve o [2001/03/04] kern/25521 Laptop with FreeBSD4.2 freezes in battery f [2001/03/04] conf/25527 jdp `man ldconfig' does not reflect its behav o [2001/03/04] ports/25531 portmgr INSTALL_* macros fail for non-root users a [2001/03/05] ports/25560 ports New port: ftp/kbear: An ftp client for KD o [2001/03/05] ports/25564 obrien Port ups-debug doesn't build on the alpha o [2001/03/06] bin/25572 sshd core dump o [2001/03/06] ports/25576 jmz XFree86-4 port installs manual pages with s [2001/03/07] bin/25584 arp.c - better printed ether address s [2001/03/07] bin/25587 des Add Solaris-like functionality to truss(1 o [2001/03/07] bin/25598 patch to let ftpd output message when cha s [2001/03/09] bin/25627 Cannot append hash after .elif in Makefil o [2001/03/09] misc/25635 gad lpr -# didn't work on network printer a [2001/03/11] ports/25708 dougb pine4 port hard-code /usr/local/include a [2001/03/11] ports/25710 ports New port: news/slrn-pl, slrn with polish o [2001/03/11] bin/25723 green OpenSSH on 4.2 excessively regenerates RS o [2001/03/12] bin/25724 quota(1) outputs wrong limits about NFS q o [2001/03/12] kern/25733 mismatch between error reporting in smbus o [2001/03/12] bin/25736 ac -d option probrem with overdays logon o [2001/03/12] ports/25763 shige XV fails to refresh properly on image dis o [2001/03/13] kern/25777 atime not updated on exec o [2001/03/13] ports/25779 portmgr (patch) make fetch-list should list all m o [2001/03/14] gnu/25794 markm [PATCH] make perl use a decent random num f [2001/03/14] ports/25815 portmgr [PATCH] Port build collision fix. o [2001/03/15] conf/25829 IPSec config in rc.network doesn't allow o [2001/03/16] kern/25866 more than 256 ptys, up to 1302 ptys. o [2001/03/17] ports/25878 tegge error during compilation of linuxthreads o [2001/03/18] kern/25909 4.x kernel freezes on P3-Asus CUSL2-C mot o [2001/03/18] kern/25910 cg Kernel sound driver may die if a program o [2001/03/19] misc/25917 green Paste thrue SSH Secure Shell v.2.4.0 (bui f [2001/03/19] kern/25923 vm_map.h defines a macro called "min_offs o [2001/03/21] misc/25984 bsd.prog.mk doesn't link C++ programs pro f [2001/03/22] docs/26003 rwatson getgroups(2) lists NGROUPS_MAX but not sy o [2001/03/22] bin/26005 MIME quoted-printable encoding added to v a [2001/03/22] docs/26006 des Changing zone(9) man page o [2001/03/22] kern/26016 VMWare is crash on SMP machine f [2001/03/23] misc/26035 System hangs when playing mp3 on PCI Maes o [2001/03/27] conf/26145 [PATCH] There is no make.conf equivalent f [2001/03/27] misc/26153 sed G does not double space o [2001/03/28] ports/26192 ports apel appeared both in xemacs/site-package o [2001/03/29] bin/26201 telnet SRA password exchange trap when no a [2001/04/01] ports/26274 ports New port: Perl/TK Jabber client o [2001/04/01] kern/26277 ppc driver doesn't work with port 0x3BC p o [2001/04/02] docs/26286 doc *printf(3) etc should gain format string a [2001/04/02] ports/26297 ports New port: devel/florist o [2001/04/02] ports/26303 adrian Wrong permission on Squid24's errors dire a [2001/04/03] ports/26313 ports New Port: german/eagle: A tool for design o [2001/04/03] kern/26316 Booting FreeBSD on VMware2 with 2 or 3 et o [2001/04/03] misc/26323 Quota system create zero-length files o [2001/04/03] kern/26324 dillon Defaults for NFS mounts over TCP are slow o [2001/04/04] kern/26348 [pcvt] scon -s, page fault in HP mode o [2001/04/04] bin/26359 [PATCH] a minor nit in how netstat detect o [2001/04/05] misc/26373 Rpc.statd implements the SM_NOTIFY call b o [2001/04/06] bin/26375 markm PAMized su allows non-wheel members to su o [2001/04/06] kern/26385 VMWare reboots entire system after starti f [2001/04/08] kern/26437 Kernel Panics on SMP box when subjected t o [2001/04/09] kern/26454 cg mixer volume settings on Maestro-2E (Diam o [2001/04/09] bin/26468 pkg_delete clears dependencies after runn o [2001/04/10] conf/26488 incomplete named sandbox information a [2001/04/13] docs/26532 green ".Ql ?" becomes "`'?" through nroff (and a [2001/04/13] kern/26534 Add an option to ipfw to log gid/uid of w o [2001/04/13] kern/26547 "lnc" problem with shared memory mode wit o [2001/04/13] i386/26562 /dev/lpt0 returns EBUSY when attempting t o [2001/04/14] kern/26563 ioctl(SNDCTL_DSP_SPEED) returns -1 when f o [2001/04/14] kern/26584 kernel boot messages aren't logged correc o [2001/04/15] bin/26602 RELENG_4 ssh/sshd modifies the 'erase' ch f [2001/04/16] kern/26608 when boot Freebsd 4.2 Release from the c o [2001/04/16] kern/26618 unmount(2) can't unmount a filesystem who a [2001/04/16] ports/26628 ports New port: audio/qtecasound, well done o [2001/04/17] misc/26636 If /etc/ttys goes empty, init(8) never re a [2001/04/17] misc/26646 srand() provides only 8-bit table o [2001/04/17] misc/26649 diskless client can't share root with ser o [2001/04/17] misc/26653 RTL8012 ethernet not listed in LINT or ha o [2001/04/17] misc/26658 update to src/usr.bin/calendar/calendars/ o [2001/04/18] misc/26678 Correction of: misc/26521 o [2001/04/18] bin/26686 Freeze at boot from 4.3-RC4 floopies - US o [2001/04/18] misc/26695 CHANGE REQUEST: kill(all) -l output o [2001/04/19] misc/26720 Both .cshrc and .profile should have the o [2001/04/20] kern/26740 rwatson [PATCH] jail improvement f [2001/04/22] misc/26763 darrenr installing ipfilter sample files to share o [2001/04/22] kern/26787 dd sysctl change request o [2001/04/23] kern/26798 cvsup 4.3-RC -> 4.3-STABLE causes problem o [2001/04/23] kern/26800 wpaul Support for Netgear MA-301 wireless o [2001/04/23] ports/26801 ports cyrus port should add periodic file to pr 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/24] ports/26825 ports port xmms-avi won't compile libavixmms.so o [2001/04/25] bin/26854 Better fix for ESS Technology Maestro-2E o [2001/04/26] misc/26879 mkfilter not installed, yet referred to v s [2001/04/26] ports/26882 kde KDE should use ca-roots port for SSL cert a [2001/04/26] ports/26884 ports new port for visualworks 5i.3 o [2001/04/26] kern/26885 keichii add if_xe as kernel module o [2001/04/27] ports/26904 jim New port(?): net/everybuddy-i18n (i18n pa o [2001/04/28] bin/26919 qa sysinstall' fdisk can ONLY set bootable f o [2001/04/29] docs/26943 doc [patch] description of :C modifier is mis o [2001/04/30] i386/26994 obrien AMD Athlon Thunderbird not known to ident o [2001/05/01] kern/27008 kernel function sysbeep(xxx, 0) does prod o [2001/05/01] ports/27019 marcel patch supplied in PR ports/26976 breaks l o [2001/05/02] misc/27039 new syscons screensaver a [2001/05/02] docs/27040 dougb rc(8) and syscons(4) talk about rc.conf.l f [2001/05/02] misc/27041 modify src/release/Makefile to make anoth f [2001/05/03] bin/27063 darrenr /sbin/ipfs missing f [2001/05/03] conf/27070 darrenr save/restore IP Filter's state tables at o [2001/05/04] ports/27075 sobomax Port java/javavmwrapper installs no man p o [2001/05/04] ports/27079 sobomax Improvements for javavmwrapper? o [2001/05/06] bin/27163 cracauer sh trap TSTP () deadly hangs o [2001/05/06] ports/27167 ports ETHOberonV4 won't run a [2001/05/07] ports/27182 mharo Teach portlint to recognize RUN_DEPENDS=$ o [2001/05/07] ports/27187 jmz add linux ioctl handler to dri xf86-403 c o [2001/05/07] bin/27188 fix of rsh non-interactive mode behaviour o [2001/05/07] misc/27190 Day light savings in Mexico. o [2001/05/08] ports/27200 greid new port: bed (binary editor) o [2001/05/08] i386/27216 qa Can not get to shell prompt from serial c o [2001/05/09] kern/27232 On NFSv3 mounted filesystems, stat return o [2001/05/10] bin/27258 getty didn't check if if= isn't empty o [2001/05/11] bin/27268 fdisk does not recognize Linux extended p o [2001/05/11] kern/27269 Cannot mount linux extended (logical) par o [2001/05/11] bin/27270 cg sys/soundcard.h fails to define AFMT_S16_ o [2001/05/12] bin/27281 vidcontrol(1) does not have error codes f [2001/05/12] bin/27283 brian netstat -i missing IPv4 input packet coun o [2001/05/12] bin/27289 green SSH don't do correct diagnostic when no r o [2001/05/12] ports/27291 jim Bluefish port doesn't build mo files o [2001/05/12] bin/27294 paul pkg_update disregards suffixes (portrevis o [2001/05/13] i386/27306 mp hw watchpoints work unreliable under gdb o [2001/05/14] bin/27319 obrien df displays amd pid processes o [2001/05/15] kern/27342 change-request o [2001/05/17] kern/27403 lpt driver doesn't handle flags anymore o [2001/05/17] bin/27423 change request o [2001/05/18] kern/27429 'dependant' is a misspelling o [2001/05/18] bin/27433 ps binary does not do what the man page s o [2001/05/20] misc/27471 Linux emulation is missing code needed to o [2001/05/20] ports/27473 jmz when I install the package XFree86-4.0.3_ f [2001/05/22] ports/27542 sobomax xmps should not require gnome a [2001/05/23] ports/27569 ports bootup error problem with Apache 2 o [2001/05/23] kern/27571 bp Changing policy of shadowing files and di o [2001/05/23] bin/27604 change truncate to support low case size o [2001/05/24] i386/27627 machdep.tsc_freq does not exists on machi o [2001/05/25] misc/27633 Mapping for serbian keyboards, follows IS o [2001/05/25] docs/27653 doc Updates to send-pr.html to support MIME o [2001/05/26] docs/27654 doc Update to PR 27653 o [2001/05/26] kern/27660 Kernel does not return error if adding du o [2001/05/26] misc/27677 miss BIND name server library o [2001/05/27] bin/27687 fsck wrapper is not properly passing opti o [2001/05/27] bin/27697 assar trouble compiling libroken o [2001/05/31] gnu/27803 Enhancement to sort(1) a [2001/05/31] ports/27805 ports New port: SQL-Ledger Accounting o [2001/06/01] misc/27816 rpcgen -b generates server code which doe o [2001/06/01] misc/27829 kris 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/27834 Cannot warm-reboot Compaq AP400 due to SC o [2001/06/02] kern/27835 execve() doesn't conform to execve(2) spe o [2001/06/02] ports/27838 keichii dot.emacs is 600 s [2001/06/02] docs/27843 alex [PATCH] make.conf WITH_* variables aren't o [2001/06/02] kern/27849 dfr AGP RELEASE ioctl frees memory o [2001/06/04] misc/27872 "Load Config" (sysinstall) hangs Compaq D o [2001/06/06] ports/27903 peter Update: www/transproxy o [2001/06/06] docs/27915 doc man 5 passwd does not properly explain th o [2001/06/06] docs/27919 n_hibma missing usb man pages o [2001/06/06] docs/27921 markm manpage skey(1) should be skey(7) o [2001/06/07] alpha/27930 NE2000 not supported on FreeBSD Alpha 4.x o [2001/06/07] ports/27931 ports devel/pth vs. native pthreads conflict fi o [2001/06/07] alpha/27933 alpha Time jitter under load on FreeBSD 4.3 alp a [2001/06/07] ports/27936 mi Update /usr/ports/deskutils/xmdiary 3.0.1 a [2001/06/08] ports/27956 ports New port:A messenging client supporting A a [2001/06/08] conf/27959 imp Add cygwin termcap entry o [2001/06/08] bin/27972 losing information with talk o [2001/06/10] i386/28023 sendmail tries to get the netgraph.ko mod a [2001/06/11] conf/28078 /stand/sysinstall skips distro selection a [2001/06/11] conf/28081 murray /stand/sysinstall errs out if /cdrom/ alr a [2001/06/12] ports/28115 ports New Port - textproc/htmldoc o [2001/06/13] ports/28121 sobomax New port: 3D modelling and animation syst o [2001/06/13] ports/28138 tg python os.statvfs module is not functiona a [2001/06/15] bin/28171 des [PATCH] to support a HTTP_REFERER env var a [2001/06/15] gnu/28189 [PATCH] fix for detecting empty CVS commi o [2001/06/16] kern/28206 bp UMAPFS module should depend on NULLFS - p o [2001/06/17] misc/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't c o [2001/06/17] kern/28247 pirzyk ATM/HARP driver for IDT and ForeLE ATM ca o [2001/06/18] misc/28255 picobsd documentation still references ol s [2001/06/18] kern/28260 UIO_MAXIOV needs to be made public a [2001/06/19] ports/28272 ports Update port: net/libsocket++ o [2001/06/20] bin/28294 dump of vinum based file systems by devic o [2001/06/20] kern/28297 change request for sys/i386/conf/NOTES o [2001/06/21] ports/28332 dwcjr Gimp manual port 1-2 years out of date, m o [2001/06/21] bin/28333 rtprio/idprio setuid problems s [2001/06/22] i386/28346 n_hibma USB ethernet dongle detach requires "ifco a [2001/06/23] ports/28363 ports New port: audacity-0.95 - a graphical wav o [2001/06/23] bin/28364 lex(1) generated files fail to compile cl o [2001/06/23] ports/28365 wosch Typical use of portchecheckout breaks int o [2001/06/23] docs/28371 phk malloc(2) man page correction o [2001/06/26] ports/28432 obrien [patch] comms/conserver fails with MD5 pa o [2001/06/26] bin/28435 [patch] allow newsyslog to signal process o [2001/06/27] bin/28449 cracauer sh(1) aborts on certain input a [2001/06/27] misc/28455 GNU readline should be updated to 4.2 o [2001/06/27] misc/28456 german keymap with dead keys o [2001/06/27] ports/28471 keith no iso8859 font o [2001/06/28] misc/28494 n_hibma ugen usable only from "attach" or by usbd o [2001/06/29] ports/28521 ports inconsistency: daemontools and serialmail o [2001/06/29] misc/28529 runetype.h doesn't have C++ 'extern "C"' f [2001/06/30] ports/28551 ports ports/mail/faces doesn't build (linking w o [2001/06/30] docs/28555 doc [PATCH] style(9) isn't explicit about boo o [2001/06/30] kern/28566 bp Mount_null loopbacks can hang startx temp o [2001/07/01] bin/28620 ru xinstall has no way to pass options to st o [2001/07/02] ports/28644 jmz Make error when rebuilding xdvi o [2001/07/03] ports/28678 wosch portcheckout doesn't allow flexible build o [2001/07/03] ports/28680 portmgr pkg_update complains about missing REQUIR o [2001/07/03] kern/28681 ATAPI MO drive support o [2001/07/03] ports/28682 portmgr Some port install builds fail if silent ( o [2001/07/04] docs/28699 doc strptime(3) %d format specifier not compl o [2001/07/05] ports/28717 billf net/net-snmp stop enumerate interfaces wh a [2001/07/05] ports/28758 roam New port: security/apg o [2001/07/06] ports/28771 ports opendx server fails to start o [2001/07/07] bin/28789 /usr/bin/last does not filter for uucp co o [2001/07/07] ports/28803 obrien ports/comms/conserver does not support ## o [2001/07/08] ports/28810 lioux qpopper 4.0.3 + PAM modification; HAVE_SH o [2001/07/08] bin/28820 tar and cpio cannot deal with files > 2GB o [2001/07/10] ports/28887 brian [PATCH] sandbox for httptunnel! o [2001/07/10] kern/28888 Acer 8000 NIC not detected correctly o [2001/07/11] misc/28890 merge.c compares int i against size_t siz o [2001/07/13] misc/28938 small PicoBSD - An update to the build script t a [2001/07/13] docs/28949 phk the mknod(8) man page stills refers to bl o [2001/07/14] bin/28972 dwmalone gamma returns same result as lgamma o [2001/07/14] i386/28975 mjacob RocketPort problems o [2001/07/14] misc/28980 Fujitsu/Siemens Lifebook E-6540 stalls wh o [2001/07/15] bin/28988 We need more simple message digesting too f [2001/07/15] docs/28994 dd New article for docproj "Checkpoint VPN-1 o [2001/07/16] ports/29009 dburr fsgs port installs cfg file with wrong pa o [2001/07/18] bin/29062 markm krb4 and krb5 multiply defined version sy o [2001/07/18] bin/29071 relay patch for rwhod o [2001/07/19] misc/29077 At loading notebook pccardd not correctly o [2001/07/19] docs/29088 phk jail(8) man page has innacurate instructi o [2001/07/19] misc/29089 Some kind of fsbn0 error... o [2001/07/19] bin/29090 add `no_rip_out' option to routed o [2001/07/20] misc/29103 make (1) dump core while processing ^C fr o [2001/07/21] bin/29119 menu of fdisk editor in 4.3R does not lis o [2001/07/22] docs/29143 doc List of man pages that need to be written o [2001/07/22] ports/29154 nik TeX resource settings from MAKE_ENV in pr o [2001/07/23] ports/29163 jmz XFree86-4 port should register XFree86-4- o [2001/07/23] bin/29164 maxim [PATCH] lack of 'Do not fragment' flag in f [2001/07/23] docs/29166 tomsoft Flaw in growfs(8) manpage o [2001/07/23] conf/29167 rc.pccard doesn't check /var/run/pccardd. o [2001/07/23] kern/29169 mjacob FC loop that 'goes away' never times out o [2001/07/23] bin/29175 tmm [PATCH] rpcgen(1) and inetdflag/pmflag su o [2001/07/23] bin/29177 [PATCH] rpc client create functions with o [2001/07/24] ports/29199 sobomax jdk12beta port should register open-motif o [2001/07/25] ports/29219 bp smbfs-1.4.1 don't compile o [2001/07/25] ports/29223 portmgr cyrus-imapd and postfix master.8 manpage o [2001/07/25] kern/29233 VIA 82C686 AC97 codec gets probed as 'chi o [2001/07/26] docs/29245 doc top(1) manpage doesn't understand SMP o [2001/07/26] ports/29248 jmz XFree86 4.1 hangs with an i815 chip while o [2001/07/27] kern/29264 Recovery from LIPs on FCAL using isp not o [2001/07/27] ports/29267 nbm Update the svscan.sh startup script for d a [2001/07/28] misc/29292 sos The functional addtion to burncd(8) o [2001/07/29] ports/29297 ports NEW PORT: System Maintenance Aid written o [2001/07/29] ports/29298 cpiazza Installation of documentation for vcdgear o [2001/07/29] alpha/29299 alpha FreeBSD 4.3 Alpha + Tekram SCSI adapter p o [2001/07/29] kern/29307 NIC Initialization fails on dual CPU syst o [2001/07/29] misc/29312 sound Using mixer on pcm misbehaves with onboar f [2001/07/29] kern/29318 mjacob Exabyte 8200 needs SA_QUIRK_1FM and SA_QU o [2001/07/30] gnu/29331 still documented broken options in gcc ma f [2001/07/30] ports/29332 ports Refiling New Port: ripem-2.1 o [2001/07/30] ports/29343 ports new postgresql7 port feature o [2001/07/31] ports/29346 ports New port: misc/afbackup-beta o [2001/07/31] kern/29355 adrian [patch] lchflags support o [2001/08/01] bin/29361 startslip can't load if_sl.ko o [2001/08/01] bin/29363 [PATCH] newsyslog can support time as ext o [2001/08/02] ports/29392 portmgr Small built-time glitch in Makefile for a o [2001/08/02] kern/29395 reaction on ctrl-alt-del - poweroff, halt o [2001/08/03] kern/29423 [PATCH] kernel security hooks implementat o [2001/08/07] kern/29499 dwmalone it is not possible to send creditionals f [2001/08/07] ports/29514 ports new port submission: games/xlogical (SDL o [2001/08/07] bin/29516 markm telnet from an non FreeBSD host still use o [2001/08/07] ports/29519 ports X11 ports generate undef pthread refs wit o [2001/08/07] ports/29528 dburr Update misc/tvguide to 0.9.0 o [2001/08/07] misc/29529 dcs Boot prompt "?" command doesn't list "boo f [2001/08/08] kern/29538 joerg Mounting /dev/fd0 never completes o [2001/08/08] misc/29550 duplicate pings jinside of vmware 2.0 f [2001/08/09] docs/29571 doc [PATCH] No man page for pgrp kernel funct o [2001/08/09] bin/29581 proposed gethostbyXXXX_r() implementation f [2001/08/09] ports/29590 ports [new port] www/parser-bin One more server o [2001/08/11] kern/29621 n_hibma Missing man page for ulpt o [2001/08/11] ports/29638 green [patch] upgrade security/cfs a [2001/08/12] i386/29639 murray entry for zip 250 drives in /etc/disktab o [2001/08/13] bin/29675 lint fails on stdio.h f [2001/08/13] ports/29691 portmgr New port variable USE_COMPAT_LIB - bsd.po o [2001/08/14] kern/29698 linux ipcs doesn'work o [2001/08/15] kern/29727 amr_enquiry3 structure in amrreg.h (amr d o [2001/08/15] ports/29732 sobomax linking error f [2001/08/16] kern/29777 n_hibma kernel uscanner.c contains wrong vendor a f [2001/08/17] docs/29807 dd [PATCH] XFREE86_VERSION is undocumented f [2001/08/17] ports/29836 ports New port: cyrus-imspd f [2001/08/18] bin/29850 markm ftpd.c doesn't check via PAM/pam_acct_mgm o [2001/08/18] ports/29851 kuriyama ports/textproc/cocoon has a checksum erro f [2001/08/18] ports/29856 portmgr make extract of cyrus did an install of c o [2001/08/19] conf/29870 rc.diskless2 uses /usr/sbin/mtree before o [2001/08/19] kern/29875 CURRENT driver for Tekram DC395X and DC31 o [2001/08/19] ports/29883 markm Update textproc/par to 1.53 o [2001/08/20] misc/29893 qa suggestions for 4.4 sysinstall o [2001/08/20] bin/29897 markm pam_unix patch, which uses loginclass pas a [2001/08/20] docs/29902 www Mozilla package URL problems o [2001/08/20] kern/29915 kernel panics on interaction with mlock a o [2001/08/21] ports/29929 ports wginstall.pl script chokes on calculated o [2001/08/22] bin/29961 ru A4 paper size for groff knob for /etc/mak o [2001/08/22] kern/29962 sent broadcast packets get spurious 4 byt a [2001/08/23] docs/30008 doc This document should be translated, comme o [2001/08/23] ports/30012 dirk mod_php4 does not build on 4.4 with apach o [2001/08/24] kern/30052 dc(4) driver queues outgoing pkts indefin o [2001/08/25] docs/30082 jkoshy Dead URL on website o [2001/08/27] ports/30148 portmgr devel/libtool: shared libs with compaq-cc o [2001/08/28] kern/30160 Kernel panic when flash disk is removed a f [2001/08/28] ports/30166 ports ports/net/nettest2001 o [2001/08/28] kern/30179 FreeBSD 5.0 install hangs: deviceTry: mak o [2001/08/29] misc/30186 getaddrinfo does not handle incorrect ser o [2001/08/29] kern/30200 yokota Bug in psm in 4.4-RC o [2001/08/29] ports/30201 msmith editors/wordperfect in ports is not usabl o [2001/08/29] i386/30206 PS/2 server 85 can't boot kern.flp o [2001/08/29] misc/30213 Fatal Errors of Server Programe o [2001/08/30] misc/30224 No irq - PCI wi card doesn't allow interu o [2001/08/30] ports/30225 nectar mozilla 0.93 build problem o [2001/09/01] bin/30247 sh cannot redirect to /dev/fd/1 or from / f [2001/09/01] ports/30249 ports SmallEiffel update to -0.75 o [2001/09/01] docs/30253 bp [PATCH] mount_unionfs(8) and mount_nullfs o [2001/09/01] kern/30257 apm enabled kernel panics (4.4-RC) o [2001/09/02] ports/30264 greid Update port: graphics/xawtv o [2001/09/02] ports/30272 grog [PATCH] instant-workstation RUN_DEPENDS b o [2001/09/03] ports/30298 chuckr [PATCH] a2ps-4.13 can't cope with ENOMEM o [2001/09/03] conf/30301 Default printcap "mx" config too small o [2001/09/04] misc/30320 n_hibma USB mouse does not work after return'ing o [2001/09/04] bin/30321 strftime(3) '%s' format does not work pro o [2001/09/05] bin/30334 mount_nfs ignores acregmin, acregmax, axd o [2001/09/05] conf/30341 be keymap: wrong Capslock behaviour with o [2001/09/05] bin/30360 vmstat returns impossible data o [2001/09/06] bin/30392 sh: incorrect value of $? in here-documen o [2001/09/07] misc/30412 rtdl/dlopen() fails to merge common varia o [2001/09/07] kern/30422 WDT hardware watchdog driver & daemon o [2001/09/07] bin/30424 Generalization of vipw to lock pwdb while o [2001/09/08] conf/30441 Can't set interface arguments for dhcp co o [2001/09/08] docs/30442 doc remove broken referemce to gettime(9) fro o [2001/09/08] docs/30443 keramida remove broken reference to kerberos(1) fr o [2001/09/08] docs/30444 keramida remove broken references to gated(8) and o [2001/09/09] i386/30461 sound no audio cd with cmi8330 o [2001/09/09] bin/30464 jasone pthread mutex attributes -- pshared f [2001/09/09] bin/30471 brian periodic script output to a file always a o [2001/09/10] bin/30484 rpc.rstatd consumed lots of open file des o [2001/09/10] bin/30496 `host` does not work properly with top-le o [2001/09/10] ports/30499 portmgr libtool-1.4.1 port diffs o [2001/09/11] i386/30503 imp stray pccard card insertion events after o [2001/09/11] kern/30510 no apm for VIA KT133A chipset o [2001/09/11] ports/30511 kde Problem getting opengl/mesa to work with o [2001/09/11] misc/30517 using sysinstall with install.cfg has no o [2001/09/12] misc/30526 inserting a Sony Ninja-ATA pcmcia style c o [2001/09/12] misc/30536 sos burncd(8) doesn't wait long enough for CD o [2001/09/12] kern/30540 [PATCH] spelling and grammar fixes in a c o [2001/09/12] kern/30541 imp [PATCH] old pccard beep depends on value o [2001/09/12] bin/30542 [PATCH] add -q option to shut up killall s [2001/09/12] bin/30543 ru [PATCH] use err() instead of just exit() o [2001/09/12] bin/30546 [PATCH] /etc/rc pedantry o [2001/09/13] docs/30556 doc vnconfig man page incorrect; functionalit o [2001/09/13] ports/30557 ports bitchx fails to build when WITH_TCL=yes i o [2001/09/13] kern/30570 boot loader don't reacts on USB keyboard o [2001/09/14] ports/30573 nakai /usr/X11R6/bin/xfce_setup does not create o [2001/09/16] kern/30608 kern.ps_showallproc=0 doesn't limit queri f [2001/09/16] ports/30615 ports The 'bcwipe' port installs Linux binaries o [2001/09/16] docs/30618 keramida ediff man page incomplete o [2001/09/16] ports/30623 sobomax Update of the audio/glame port o [2001/09/17] ports/30625 ports [PATCH] vmware2 patch for -current with K o [2001/09/17] kern/30634 kevent.data value incorrect for UDP socke o [2001/09/17] bin/30639 apmd crashes on SIGHUP (under certain con o [2001/09/17] bin/30640 apmd does not terminate properly on SIGTE o [2001/09/18] misc/30647 "make release" in src/release/ creates po o [2001/09/18] bin/30661 FreeBSD-current fails to do partial NFS f o [2001/09/20] misc/30683 [PATCH] loader(8) fails to load module wh a [2001/09/20] bin/30685 cjc Patch for usr.bin/hexdump o [2001/09/20] ports/30698 ports New port: news/pl-slrn o [2001/09/20] i386/30700 sound Applications cannot synchronize sound usi o [2001/09/20] ports/30701 ports setiathome port misuses the 'nobody' user o [2001/09/21] ports/30707 ports midnight commander can't handle correctly o [2001/09/22] ports/30732 obrien bash2 - pkg-plist fix and sample files ad a [2001/09/22] bin/30737 murray sysinstall leaks file descriptors on rest o [2001/09/23] ports/30754 nakai x11/dgs port overwrites a number of files o [2001/09/23] ports/30777 portmgr add a 'make pkg-plist' make target in por o [2001/09/23] misc/30778 termcap problem with wyse-60 terminal o [2001/09/24] ports/30788 sobomax compile works, install fails of graphics/ o [2001/09/24] kern/30794 sound ESS Solo-1 does not work after suspend/re o [2001/09/24] i386/30808 sound t4dwave on Acer Alladin M5451 interrupt p o [2001/09/24] docs/30809 doc fdisk(8) cleanup o [2001/09/25] bin/30812 giant termcap database update o [2001/09/25] ports/30813 jmz Xfree86-4 port creates libfreetype.so.6 w o [2001/09/25] bin/30819 /bin/mv results in warnings when /bin/cp o [2001/09/25] kern/30836 wpaul Chipset SiS735 / NIC SiS 900 f [2001/09/26] ports/30845 ports New port: textproc/xerces-c: Xerces C++ X o [2001/09/26] ports/30848 roam courier imapd won't compile with vpopmail o [2001/09/26] ports/30849 ports news/nntpcache fails compiling authinfo_p o [2001/09/26] bin/30854 bootpd/bootpgw change - skip ARP modifica o [2001/09/26] misc/30857 intr_machdep.c allows access out of array f [2001/09/26] ports/30859 ports A New Port f [2001/09/26] i386/30860 While install after "Mounting root from u o [2001/09/27] bin/30863 bootpd/dovend.c Win95 compatibility impro o [2001/09/27] ports/30870 ports httpd in free(): warning: recursive call o [2001/09/27] docs/30873 doc ``ip'' man page does not specify byte ord o [2001/09/28] bin/30887 dump allways saves files with modified c- o [2001/09/29] bin/30907 green [PATCH] ssh configuration oddities o [2001/09/29] ports/30923 obrien small fix for devel/gindent port o [2001/09/30] ports/30929 brian [net/pppoa] use usbd to initialize USB AD o [2001/09/30] ports/30936 taoka pips-sc880 installed script contains inco o [2001/09/30] conf/30938 Improving behavior of /etc/periodic/daily o [2001/09/30] kern/30951 Optimize page queue scan on miss of speci o [2001/10/01] alpha/30970 alpha Ensoniq 1371 (Creative chipset) does not o [2001/10/01] bin/30972 peter nfsd and mountd are in the wrong location o [2001/10/01] ports/30979 ports New port for "txfonts" TeX's font package o [2001/10/02] ports/30983 portmgr [PATCH] Some staroffice cdrom fixes o [2001/10/02] ports/30986 obrien vim6 LITE=YES packing list incorrect o [2001/10/03] ports/31013 obrien John The Ripper Package Lists Bad Path o [2001/10/03] ports/31026 ports New Port: Internet Message Support Protoc o [2001/10/04] bin/31034 regularly add original address logging fo f [2001/10/04] ports/31037 ports NEW PORT: Krusader o [2001/10/04] kern/31043 Missing Ptrace functionality in Linuxulat o [2001/10/04] kern/31048 linprocfs:/proc/meminfo cannot handle mul o [2001/10/04] bin/31052 fenner Traceroute needs update o [2001/10/05] ports/31061 portmgr New port: security/gnupg-devel o [2001/10/06] bin/31088 tobez Make whereis.pl use strict, and a couple a [2001/10/06] ports/31093 ports new port "flyway" o [2001/10/06] ports/31096 znerd New port for jakarta-tomcat 4 o [2001/10/07] misc/31097 main thread will accept() failure when so o [2001/10/07] ports/31101 roam Update port: mail/vpopmail various requir o [2001/10/07] docs/31109 doc replace gif images w/ png ones due to pat o [2001/10/08] bin/31135 /bin/df reporting 'NaNB' as a Size. o [2001/10/08] ports/31142 portmgr patch-libtool target in bsd.port.mk break f [2001/10/09] ports/31159 cpiazza gmixer 0.98c dumps core with some mixers o [2001/10/09] docs/31164 doc man page for strftime is incorrect o [2001/10/10] bin/31199 tunefs error is incorrect when enabling s o [2001/10/10] conf/31200 Modification of rc.diskless1 needs change o [2001/10/10] bin/31201 [patch] add free_space(chunk) to libdisk o [2001/10/10] bin/31205 mux [PATCH] WARNSify and add a new option to o [2001/10/10] docs/31210 peter cvs info page missing -R a [2001/10/11] misc/31218 matusita How to build release from selected date a [2001/10/11] conf/31219 Missing cons25u entry in termcap o [2001/10/11] ports/31222 ports ports:astro/SETIsupport(version is wrong) o [2001/10/11] misc/31225 "make release" fails if TERMCAP environme o [2001/10/11] ports/31229 ports new port: astro/linux-setiathome-i686 o [2001/10/13] kern/31255 select with zero timeout returns 0 even w o [2001/10/14] docs/31264 jdp cvsup(1) "base" option and keyword descri a [2001/10/14] docs/31271 doc rl(4) discourages vender openness by disp o [2001/10/15] ports/31282 ports NEW PORT: aolserver+ad f [2001/10/15] ports/31288 ports LPRng-3.7.9 port (LPRng) update o [2001/10/15] misc/31297 yokota New screen blanker module for syscons o [2001/10/18] i386/31353 'shutdown -p' does not work on SMP Tyan T a [2001/10/18] conf/31358 sheldonh Need to load NFS client LKM. o [2001/10/19] kern/31367 General boot fault during mounting root w o [2001/10/19] ports/31369 adrian New KMerlin Port o [2001/10/19] docs/31370 fenner typo in tcpdump manpage o [2001/10/19] misc/31380 NFS rootfs mount failure message too cryp o [2001/10/20] bin/31387 When getuid()=0, mailwrapper should drop o [2001/10/20] ports/31389 portmgr tidy readme templates + port readme enhan o [2001/10/21] ports/31399 jkh sysinstall (4.4REL) hangs on pkg_add of c o [2001/10/21] i386/31427 minor incorrect code in sys/i386/i386/pma o [2001/10/22] bin/31432 umount(8) and unmount(2) don't corespond o [2001/10/22] kern/31445 sound cat sound.au > /dev/audio fails for sound a [2001/10/23] kern/31455 n_hibma [PATCH] ohci driver probrem when send dat o [2001/10/23] kern/31456 Register number definition for AMD PCnet o [2001/10/23] ports/31461 ports New ports: deskutils/mcal & gmcal - a lib o [2001/10/23] ports/31462 peter rdist6 does not like accounts with '.' in o [2001/10/24] bin/31476 ifconfig's lladdr is ethernet specific o [2001/10/25] ports/31486 kuriyama ports/palm/prc-tools-gcc does not build m f [2001/10/25] ports/31487 dinoex licq-qt-gui plugin does not parse local a f [2001/10/25] misc/31489 Conflict Between BPF and ssh2 protocol in o [2001/10/25] kern/31490 Panic in sysctl_sysctl_next_ls on empy no o [2001/10/26] ports/31517 ports New Port: kdetheme-qnix o [2001/10/26] ports/31518 ports GD 1.8.4 port fails to build TTF support o [2001/10/26] kern/31521 cg pcm0 plays too fast on Intel 82801BA (ICH o [2001/10/27] i386/31535 Can't reboot system: Tyan Thunder K7+ Dua o [2001/10/28] conf/31555 rc.syscons does not run standalone f [2001/10/28] ports/31579 kde kdessl of kde-2.2.1 wants to link to libs o [2001/10/29] bin/31588 change request to allow mount(1) to set t a [2001/10/29] ports/31591 kde kdeinit crashes when I close KDE2 session o [2001/10/29] kern/31624 writev may return undocumented ECONNRESET o [2001/10/30] ports/31630 ports Port se-ispell install the dictionary in o [2001/10/30] bin/31632 ip6fw error under DNS dislabled environme o [2001/10/30] docs/31640 doc Avoiding uppercase program names in manpa o [2001/10/30] ports/31644 jmacd Update: devel/prcs o [2001/10/30] kern/31647 socket calls can return undocumented EINV o [2001/10/30] ports/31652 obrien default make package fails for editors/vi o [2001/10/30] docs/31653 doc Chapter 14 of the Handbook lacks content o [2001/10/31] ports/31669 ports New port: graphics/xawtv_applet o [2001/10/31] ports/31674 ports port math/plplot doesn't build a TCL enab o [2001/10/31] ports/31684 ports ports/comms/hylafax fixes o [2001/11/01] i386/31686 Problem with the timestamp option when fl o [2001/11/02] kern/31708 VM system / fsync / flushing delayed inde o [2001/11/02] kern/31711 Enhancements and bug fixes to Aironet dri o [2001/11/02] ports/31712 ports Add the Linux to flash Cisco/Aironet card o [2001/11/02] i386/31716 FreeBSD uses broken tsc timecounter by de o [2001/11/03] ports/31744 ports New port: emulators/minix (2.0.0) o [2001/11/05] gnu/31772 New option in dialog(1) o [2001/11/05] ports/31773 ports New port: audio/cplay, audioplayer for th s [2001/11/06] ports/31809 kde [UPDATE] qt23 port to qt-2.3.2 o [2001/11/08] ports/31858 ports New port: pike 7.2.234 (current CVS versi o [2001/11/08] ports/31862 portmgr [PATCH] 'make search' problem if /usr/obj o [2001/11/09] misc/31890 new syscons font o [2001/11/10] bin/31906 No method available to unwind atexit(3) s o [2001/11/11] ports/31910 greid comms/sms_client o [2001/11/12] ports/31926 ports New port security/drweb-qmail: Qmail mess o [2001/11/12] bin/31933 pw can interpret numeric name as userid d a [2001/11/12] ports/31943 dirk mysql323-server port hostname look up fai o [2001/11/12] ports/31944 portmgr bsd.port.mk: USE_XPM (implied by USE_MOTI a [2001/11/12] ports/31945 ports new port: devel/xbkregex library o [2001/11/13] kern/31971 microuptime() went backwards when apm is f [2001/11/14] ports/31975 ade "Error in backend/storage/lmgr/proc.c: Pr o [2001/11/14] misc/31981 (mis)feature in getnetent parsing -- comm 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 f [2001/11/14] ports/31996 ports Build of db3 fails at ./configure o [2001/11/15] i386/32014 ppi locks up system during boot o [2001/11/15] ports/32015 kuriyama ports/palm/pilrc bugs o [2001/11/15] docs/32020 doc loader.8 manpage missing tunables o [2001/11/15] ports/32022 znerd New port: Jakarta Tomcat 4.0.1 o [2001/11/15] ports/32034 ports [NEW PORT] ncurses-ada -- an Ada 95 bindi o [2001/11/16] ports/32037 ports New port: pm-lib o [2001/11/16] ports/32039 greid UPDATE devel/asmutils 0.14 -> 0.15 o [2001/11/16] docs/32041 doc Add point about net.inet.tcp.portange.{fi o [2001/11/16] ports/32046 ports Port cleanup: x11-fonts/webfonts a [2001/11/16] ports/32048 ports New port: palm/hdunix (1.0) o [2001/11/16] docs/32054 doc inconsistency between index.3 and rindex. o [2001/11/17] ports/32056 ports New Port: emulators/adamem o [2001/11/17] conf/32067 Problems with spanish keyboard in console o [2001/11/18] ports/32076 ports WISH: merge icon patch to blackbox port o [2001/11/18] bin/32092 crypt pickups the wrong password format o [2001/11/18] ports/32097 nik scr2png doesn't make with other LOCALBASE o [2001/11/19] conf/32108 Proposed Firewall (IPv4) configuration sc o [2001/11/19] ports/32114 portmgr WRKDIRs should be moved to a central loca a [2001/11/19] misc/32119 phantom Support for the modern greek language a [2001/11/19] misc/32120 PR misc/24324 errata o [2001/11/19] ports/32122 jmz xf86cfg graphics-mode fails on Samsung Sy o [2001/11/20] bin/32126 getopt(3) not Unix-98 conformant a [2001/11/20] misc/32133 phantom Bug in greek locale fixed f [2001/11/20] misc/32144 murray unattended install with sysinstall doesn' o [2001/11/20] ports/32145 jmz XFree86 doesn't ldconfig itself o [2001/11/20] ports/32147 kris mindguard port dumps core o [2001/11/21] kern/32169 kernel option to enable PCI devices on ma o [2001/11/21] ports/32174 portmgr Autoconf patch for bsd.port.mk a [2001/11/22] misc/32193 phantom Termcap ACS support for greek ISO-8859-7 o [2001/11/22] ports/32202 ports ports/devel/py-htmlkit distribution does o [2001/11/22] ports/32207 ade libiconv cannot be built by a pleb o [2001/11/23] misc/32210 System hangs while kernel waiting for SCS o [2001/11/23] docs/32229 ceri Omission from Handbook Chapter 17.8 (DHCP a [2001/11/23] ports/32231 ports Update port devel/fam o [2001/11/23] ports/32232 dirk Update and bugfix port: www/mod_php4 a [2001/11/23] misc/32233 Fix /usr/src/sbin/mount_msdosfs/iso72dos o [2001/11/23] ports/32243 sobomax ports/py-wxPython fails to compile o [2001/11/24] i386/32251 bugfix and new feature for apmd o [2001/11/24] ports/32258 scrappy converters/p5-Convert-ASN1 out of date o [2001/11/24] ports/32259 scrappy Update security/p5-IO-Socket-SSL request o [2001/11/25] misc/32265 dwmalone Adding calendar.french o [2001/11/25] ports/32272 petef port upgrade to latest blender version o [2001/11/25] ports/32273 kde kdm doesn't set paths from login.conf o [2001/11/25] ports/32282 petef fvwm 2.4.3 generate error wrt 'Help' key o [2001/11/25] ports/32283 nbm Port upgrade: www/zope from 2.4.2 to 2.4. o [2001/11/26] ports/32285 vanilla a new port for application gimp-print o [2001/11/26] conf/32288 After install: /etc/rc complains if crypt o [2001/11/26] bin/32299 peter nm coredumps on sendmail in -current o [2001/11/26] i386/32301 dfr Fix for agpgart for the AMD-751 and relat o [2001/11/26] ports/32317 petef Request for linux-qt port o [2001/11/26] bin/32318 cjc no userland tool available to test resolv a [2001/11/26] docs/32323 doc man page `named(8)' do not have link for f [2001/11/27] ports/32328 ports Port update: mc-4.5.55 o [2001/11/27] bin/32342 vmstat.c: certain variables appear to hav o [2001/11/27] ports/32345 ports New port: devel/hmake o [2001/11/28] ports/32361 ports port doesn't work, www/mod_log_mysql o [2001/11/28] ports/32362 ports postgresql7 port should install more *.h a [2001/11/29] conf/32375 murray sysinstall doesn't respect User generated f [2001/11/29] ports/32391 shige psgml-emacs20 breaks emacs's standard htm o [2001/11/30] misc/32400 rwhod - option to specify hostname o [2001/11/30] ports/32405 dirk Japanese encoding translation support for o [2001/11/30] bin/32411 shutdown's absolute-time handling could b o [2001/12/01] docs/32425 doc Document cvs update `P file' output o [2001/12/01] bin/32433 Cannot specify files beginning with + on o [2001/12/02] ports/32444 dirk www/mod_php4: ctype support o [2001/12/02] ports/32445 portmgr CONFIGURE_TARGET default setting is bogus a [2001/12/02] misc/32448 phantom Cyrillic ISO 8859-5 fonts a [2001/12/02] misc/32449 phantom Cyrillic ISO 8859-5 keymaps a [2001/12/02] misc/32450 phantom Ukrainian ISO 8859-5 locale files o [2001/12/02] docs/32460 keramida named.conf(5) types and two bad markups. o [2001/12/03] docs/32468 doc broken link in handbook: sysutils/mkisofs o [2001/12/03] kern/32478 scsi/NIC drivers fail when using SMP kern o [2001/12/03] misc/32480 Missing graphic characters in syscons fon o [2001/12/03] misc/32490 umass support for ATAPI [with patch] o [2001/12/04] bin/32501 quot(8) is stupid regarding the filesyste o [2001/12/04] ports/32502 dima port update palm/pilot-link to 0.9.6 o [2001/12/04] ports/32508 ports www/flashplugin-mozilla has malloc bug o [2001/12/04] ports/32517 green Update port: emulators/snes9x to 1.39 o [2001/12/05] docs/32542 rwatson tuning(7) inaccurate o [2001/12/05] ports/32546 znerd Remove fully-qualified lib symlinks from a [2001/12/06] docs/32561 maxim missed functions in pthread(3) o [2001/12/06] ports/32565 ports New port: QScheme scheme interpretor o [2001/12/07] ports/32572 kde net/kio_fish: konq has no icons for fish: s [2001/12/07] docs/32578 doc A _really_ petty change to the front page o [2001/12/07] ports/32582 greid Update port: audio/tempest_for_eliza o [2001/12/07] ports/32585 nbm x11-wm/pwm/pkg-descr refers to "screensho o [2001/12/07] bin/32588 grog operator should backup vinum vols o [2001/12/07] ports/32596 keichii update port: chinese/auto-tw-l10n o [2001/12/08] ports/32604 portmgr Many ports which depends on apache don't f [2001/12/08] misc/32605 nsouch SMBus driver broken o [2001/12/09] ports/32651 ache a small patch to obtain socks5 support to o [2001/12/09] kern/32652 joe A new ioctl to uscanner s [2001/12/09] ports/32653 joe Added patches to improve USB scanner supp f [2001/12/09] bin/32657 sed file handing is non-standard o [2001/12/09] kern/32659 dillon VM and VNODE leak with vm.swap_idle_enabl o [2001/12/09] gnu/32661 dd send-pr uses $LOGNAME for From and Reply o [2001/12/09] docs/32662 dd arp(8) uses "this host" with two differen o [2001/12/10] i386/32666 imp mbufs leaks in dev/ed o [2001/12/10] bin/32667 systat waste too much time reading input o [2001/12/10] kern/32671 imp Patch to generate usbdevs.h automatically o [2001/12/10] docs/32674 doc no man page for the ntp_adjtime system ca a [2001/12/10] bin/32675 kris openssl dhparam hangs when using /dev/ran o [2001/12/10] kern/32677 pciconf -l opens /dev/pci for read/write o [2001/12/10] misc/32680 [PATCH] Allows users to start jails by ho o [2001/12/10] ports/32690 keichii Uodate port: chinese/rxvt from 2.7.5 to 2 o [2001/12/11] ports/32704 obrien update ical to use tk8.3 o [2001/12/12] ports/32743 ports Update port: games/nethack3-gnome/games/n o [2001/12/12] ports/32762 ache Update for archivers/xpk o [2001/12/13] kern/32799 ucom and uplcom drivers ported from NetBS o [2001/12/13] bin/32808 dwmalone [PATCH] tcpd.h lacks prototype for hosts_ o [2001/12/13] kern/32812 roger bktr driver missing tuner for eeprom dete o [2001/12/14] bin/32828 phk w incorrectly handles stale utmp slots wi o [2001/12/15] ports/32864 trevor Update port: x11-wm/swm to 1.3.2 (fix por o [2001/12/15] docs/32877 darrenr typo in ipfs.8 o [2001/12/15] kern/32880 ambrisko Update aironet driver to correct signal s o [2001/12/15] ports/32883 ports New port: deskutils/nag - Horde's task li f [2001/12/16] ports/32899 anders mail/nbsmtp causes segfaults while a comm o [2001/12/16] gnu/32902 Incremental tar archiving using GNU style o [2001/12/16] kern/32912 msmith options misssing TCBHASHSIZE o [2001/12/16] ports/32917 portmgr installing ports may fail if $GREP_OPTION o [2001/12/17] ports/32926 lioux [NEW PORT] djvulibre-3.5.2--a Mozilla plu o [2001/12/17] bin/32935 /bin/sh buildin echo command have invalid o [2001/12/17] ports/32936 mharo ports/security/keyprint only supports S/K o [2001/12/18] conf/32976 assar Kerberos5 config files not installed by d o [2001/12/18] docs/32979 assar manpages are not installed for k5admin an o [2001/12/18] ports/32986 ports new port: graphics/transcode o [2001/12/18] ports/32999 ports New ports: devel/ORBacus4 o [2001/12/19] kern/33004 n_hibma Patch for USB (uhci) o [2001/12/19] misc/33007 n_hibma umass device timeout after successive use o [2001/12/19] ports/33008 will New Port: x11-wm/kwinacqua o [2001/12/19] misc/33013 cg mixer does not have treble/bass for Sound o [2001/12/19] kern/33014 installkernel without buildkernel gives c o [2001/12/19] conf/33018 Patch for RC (add multiple SSHD configura a [2001/12/19] ports/33023 ports failed to make install ports/textproc/p5- a [2001/12/20] i386/33031 phantom /usr/src/share/mklocale/zh_TW.Big5.src ty o [2001/12/20] ports/33038 keith update port: chinese/ttfm for bento error o [2001/12/20] ports/33039 keith update port: chinese/moefonts-cid for pkg o [2001/12/20] ports/33049 mharo proftpd file permission error. o [2001/12/21] bin/33066 rwatson sysinstall does not write to new disks as a [2001/12/22] ports/33094 okazaki converters/mule-ucs, add emacs21 support s [2001/12/22] ports/33095 dirk update cdrtools to 1.11a13pre3 (1.10.p11. o [2001/12/22] i386/33097 sound Crystal 4237b mixer problems o [2001/12/22] ports/33100 ports New port: security/py-cryptkit o [2001/12/23] ports/33108 portmgr Generate an error if WRKDIRPREFIX == /usr o [2001/12/23] ports/33109 ports Xercec-C++ port proposals o [2001/12/23] kern/33117 empty struct md_coredump in pcb.h and use o [2001/12/23] ports/33118 keith update port: chinese/moefonts-cid for Ado o [2001/12/23] ports/33122 greid update port: www/dillo from 0.5.0 to 0.6. o [2001/12/23] kern/33124 jhb kthread_create doesnt mark kthreads as kt o [2001/12/23] bin/33133 keyinit outputs wrong next login password o [2001/12/23] ports/33134 keith update port: chinese/ghostscript6 for Ado o [2001/12/23] ports/33135 ports New port: devel/kprof - A profiling tool o [2001/12/24] ports/33159 ports New port: graphics/py-graphviz o [2001/12/25] ports/33168 ports new port: mail/mavbiff o [2001/12/25] ports/33176 ports fix minor build problem with ac-archive o [2001/12/25] gnu/33182 mp gdb seg faults when given handle SIGALRM f [2001/12/26] ports/33192 znerd java/jdbcpool: update to 0.99 o [2001/12/26] ports/33196 portmgr duplicate lines in /usr/ports/INDEX o [2001/12/26] kern/33202 msmith sys/dev/mly/mly.c minor mly_printf cosmet o [2001/12/26] kern/33203 dillon "got bad cookie" errors on NFS client o [2001/12/26] ports/33207 ports LPRng port update o [2001/12/26] ports/33208 ports ifhp port update o [2001/12/26] ports/33209 ports LPRngTool port o [2001/12/26] ports/33212 tobez perl5 port fails to register dependency o o [2001/12/26] misc/33220 phantom Greek locale MFC plea o [2001/12/26] ports/33224 me Build breaks on CURRENT due to 0 o [2002/02/01] ports/34523 ports man pages of nwclient602 install to wrong o [2002/02/01] docs/34529 doc [patch] Grammar nits in usbd.conf(5) and a [2002/02/01] ports/34534 dinoex licq-qt-gui-1.0.3, builds fine, but when f [2002/02/01] i386/34537 The second NIC card could not get configu o [2002/02/01] gnu/34538 mp_set_memory_functions not extern "C"'d o [2002/02/01] docs/34547 keramida [patch] edits of FAQ Introduction o [2002/02/02] ports/34550 ports ghostscript-gnu-nox11 portversion 6.51 fa o [2002/02/02] ports/34551 billf net/net-snmp is not LOCALBASE clean o [2002/02/02] ports/34565 ports graphics/blender port is broke o [2002/02/02] ports/34567 ports New port: IMCom command-line Jabber clien o [2002/02/02] ports/34570 ports Broken "Makefile" in /usr/port/misc/afbac o [2002/02/03] docs/34577 doc Some man pages still advise using "confli o [2002/02/03] docs/34583 doc DECLARE_MODULE(9) man page is broken. o [2002/02/03] kern/34591 ICMP bandwidth limiting does not indicate o [2002/02/03] misc/34596 slow gettimeofday in FreeBSD 4.5 o [2002/02/03] ports/34597 eivind [PATCH] Update ports/mail/isync to 0.8 o [2002/02/03] ports/34600 kevlo Update port: textproc/xerces to 2.0.0 o [2002/02/04] misc/34621 billf i have a patch for (lol) /usr/games/fish o [2002/02/04] docs/34626 doc Copyright on "Index of /mail/current" pag o [2002/02/04] bin/34628 pkg-routines ignore the recorded md5 chec o [2002/02/04] bin/34629 des fetch(1) cannot download RH 7.2 ISOs from o [2002/02/05] ports/34635 ports games/flightgear o [2002/02/05] kern/34637 LINT is wrong -- NMBCLUSTERS doesn't auto o [2002/02/05] misc/34642 Windows 2000 will not dual boot with Free o [2002/02/05] ports/34650 nbm UPDATE/FIX : database/phppgadmin 2.3 -> 2 o [2002/02/05] docs/34654 doc Update UIDs for porters handbook o [2002/02/06] ports/34659 reg Proposed change to Mozilla port's Makefil o [2002/02/06] kern/34665 darrenr ipfilter rcmd proxy "hangs". o [2002/02/06] misc/34673 Second call to select() waits ~100ms befo o [2002/02/06] bin/34676 obrien dhclient always in -q quiet mode (PATCH E o [2002/02/07] gnu/34709 [patch] Inaccurate GDB documentation o [2002/02/07] kern/34712 [patch] SCSI quirk for USB Memorybird o [2002/02/07] ports/34714 ache unzip(1) breaks filenames in non-ASCII ch o [2002/02/07] ports/34717 portmgr bsd.port.mk: extraneous quotes in PTHREAD o [2002/02/07] ports/34718 portmgr make fetch-list includes things make fetc o [2002/02/07] bin/34728 DHCP hostname set as Hexadecimal string o [2002/02/08] conf/34729 sheldonh treat smbfs as network file system in /et o [2002/02/08] conf/34733 green useless/invalid lomac option added by sys o [2002/02/08] ports/34737 ports New port: graphics/lodju o [2002/02/08] ports/34742 obrien bash2 missing build dependency on autocon o [2002/02/08] docs/34743 doc nfsd(8) lacking signal explanation o [2002/02/08] bin/34744 dd Add -a (same as -PpR) flag to cp(1) o [2002/02/08] kern/34747 Please add USB floppy entry o [2002/02/09] misc/34757 Difficulty in starting x-server o [2002/02/09] misc/34759 Phantasia does not accept [enter] key o [2002/02/09] ports/34760 ports New port: net/dstumbler a curses based ap a [2002/02/09] ports/34770 dougb Update port: graphics/xpdf to 1.00 (fix p o [2002/02/09] conf/34776 rc.diskless1 creates insufficiently sized o [2002/02/09] ports/34779 ports Update port: ja-kdevelop, ja-kdenetwork, o [2002/02/10] misc/34788 dwmalone dmesg issues with console output o [2002/02/10] kern/34789 joe PNY brand USB flash readers need 10 byte o [2002/02/10] ports/34792 ports New port: acfax o [2002/02/10] ports/34796 jmz wrong path in /etc/XF86Config (purely cos o [2002/02/10] ports/34797 ports xmame links with wrong libusb a [2002/02/10] ports/34804 ports .asmailrc -- the user config file for por o [2002/02/10] ports/34809 ports german/bbbike update o [2002/02/10] ports/34812 ports [MAINTAINER UPDATE] database/firebird-dev o [2002/02/10] bin/34813 [PATCH] sed dumps core on "unusual" scrip o [2002/02/10] ports/34815 lioux new port: freenet, the anonymous internet o [2002/02/11] kern/34820 FreeBSD should be able to beep after shut o [2002/02/11] ports/34827 billf [patch] net/ethereal has a changed master o [2002/02/11] bin/34832 /usr/share/man/cat3/setkey.3.gz linked to o [2002/02/11] bin/34834 "fix" of du(1) and -h o [2002/02/11] ports/34835 ports [PATCH] ghostscript-gnu fails to compile o [2002/02/11] ports/34840 ports New port: DansGuardian -- fast web conten o [2002/02/11] ports/34841 dirk Adding cyrus to mod_php o [2002/02/11] bin/34843 fenner `tcpdump port echo' filters for port 4 in f [2002/02/11] misc/34847 oversight in LINT documentation line o [2002/02/11] misc/34850 scp cannot talk to ssh2 sites that have S o [2002/02/11] kern/34854 /src/sys/dev/sound doesn't work correctly o [2002/02/12] ports/34870 ports new port: lang/pnetlib o [2002/02/12] bin/34874 Netstat output to small o [2002/02/12] ports/34876 ports Update port: net/cricket to 1.0.3 o [2002/02/12] ports/34878 sysinstall o [2002/02/12] kern/34880 Impossibility of grouping IP into a pipe f [2002/02/13] ports/34901 gnome sodipodi-0.24.1 core dumps o [2002/02/13] ports/34908 ports libpng port makes bad dynamic library on o [2002/02/13] docs/34909 doc Porters Handbook or portlint problem o [2002/02/13] ports/34910 ports New port submission: mbrowse o [2002/02/13] bin/34919 portmap can not exclusively bind to 127.0 o [2002/02/13] misc/34924 kscd crash on startup signal 11 o [2002/02/13] ports/34925 billf [PATCH] Fix build of net-snmp o [2002/02/14] ports/34928 ports New port for cppunit o [2002/02/14] misc/34935 New locale (Cyrillic Windows Codepage 125 o [2002/02/14] kern/34942 Attempt to play -> "pcm0: play interrupt o [2002/02/14] alpha/34948 alpha Promise TX2 ATA133 controller doesnt work o [2002/02/14] kern/34952 Mouse cursor invisible with USB mice and o [2002/02/15] bin/34955 [PATCH] ps(1) is out of touch with realit o [2002/02/15] kern/34963 identify procs belonging to the same jail o [2002/02/15] kern/34965 4.4, 4.5 freeze at boot time on ASUS P2B o [2002/02/15] ports/34970 kris patch for ports/security/pks o [2002/02/15] ports/34974 kde Incorrect mouse config in kde 2.2.2 o [2002/02/15] ports/34975 ports mplayer don't compile with divx codec o [2002/02/15] ports/34976 ports New port: graphics/sinek o [2002/02/15] ports/34978 mharo security/p5-Crypt-RSA missing required mo o [2002/02/15] ports/34981 ports new port: misc/bibletime: biblestudy appl o [2002/02/15] ports/34985 ports New port: net/ldapdiff A utility to patch o [2002/02/15] ports/34987 portmgr bsd.port.mk: silence awk's warning o [2002/02/15] ports/34988 portmgr bsd.port.mk: use ECHO_CMD instead of ECHO o [2002/02/15] ports/34991 ports New port: durep (displays disk usage in a o [2002/02/16] ports/34997 ports xf86cfg core dumps o [2002/02/16] ports/34999 ports New Port: QScheme scheme interpretor o [2002/02/16] ports/35006 ports New port archivers/arj: ARJ32 v 3.10 file o [2002/02/16] ports/35007 ports New port archivers/arj: ARJ32 v 3.10 russ o [2002/02/16] kern/35010 pcm0 fails to attach with Intel 82801BA ( o [2002/02/16] docs/35011 doc There are no commands called "diskless" o o [2002/02/16] ports/35014 ports lame port does not depend on Gtk so far. o [2002/02/16] bin/35018 brian enhancing daily/460.status-mail-rejects o [2002/02/16] ports/35023 ports openmotif,openmotif-devel -> openmotif2.2 o [2002/02/17] ports/35037 ports New port: sysutils/cfengine-devel o [2002/02/17] ports/35038 ports cleanup pkg-plist for x11-toolkits/Xaw3d o [2002/02/17] ports/35046 ports mail/imp: update php.ini to permit attach o [2002/02/17] ports/35047 ports www/horde-devel: adding syntax highlighti o [2002/02/17] ports/35048 ports devel/chora: fix wrong date display + add o [2002/02/17] ports/35049 ports mail/imp-devel: fix a warning when buildi o [2002/02/17] ports/35051 ports Repocopy request: www/horde-devel -> www/ o [2002/02/17] ports/35060 ports New port: deskmenu (GTK root menu applica o [2002/02/17] ports/35062 ports New Port: audio/xmms-mailnotify 0.2.0 o [2002/02/17] kern/35064 ACPI not work with Epox 8KHA+ motherboard o [2002/02/17] bin/35070 math(3) references section "3m", etc. o [2002/02/18] i386/35077 Identify Intel 82845 chipset o [2002/02/18] i386/35078 Uninitialized pointer dereference in func f [2002/02/18] ports/35079 znerd Allow JDK version to be overridden in jav o [2002/02/18] ports/35080 znerd Allow JDK version to be overridden in jav o [2002/02/18] ports/35084 kde kdegraphics package on ftp.freebsd.org is o [2002/02/18] ports/35090 ports stuffit-5.2.0.611 fails to register man p o [2002/02/18] ports/35092 ports Xterm termcap should have color capabilit o [2002/02/18] bin/35099 sobomax ldd in -STABLE fails on libc. o [2002/02/18] ports/35100 ports Upgrade aolserver from 3.4 to 3.4.2 o [2002/02/18] i386/35101 cvusupit and other packages won't extract o [2002/02/18] ports/35102 ports New port: Ultima IV engine o [2002/02/18] docs/35105 brian [PATCH] handbook User-ppp chapter o [2002/02/18] ports/35106 ports Update port: mail/p5-MIME-Lite to 2.117 o [2002/02/19] kern/35107 Add new usb ethernet adapter: corega FEth 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/19] ports/35117 ports Undefined symbol "ldap_get_dn" when tryin o [2002/02/19] ports/35122 mharo ports/security/p5-Crypt-RSA update o [2002/02/19] i386/35124 No mouse with FreeBSD 4.5 with ECS K7S5a o [2002/02/19] ports/35128 ports Canon Powershot A20 support for s20sh f [2002/02/19] misc/35130 bmah Example dd command for making 4.x install o [2002/02/19] ports/35131 ports New port: unittest framework for c o [2002/02/20] docs/35140 doc How to enable DPMS support in XFree86-4 i o [2002/02/20] ports/35144 roger openh323 won't compile on -stable (fix in o [2002/02/20] ports/35146 ports New port: A Unit testing framework for Ad o [2002/02/20] bin/35148 ppp/nat-problems after cvs update 4.3 -> o [2002/02/20] ports/35154 ports [MAINTAINER UPDATE]: emulators/xmame o [2002/02/20] gnu/35156 obrien suggestion: hard link /usr/bin/awk to /us o [2002/02/20] ports/35157 ports ports/sysutils/httplog has a checksum err o [2002/02/20] ports/35165 ports New port: textproc/smart an information r o [2002/02/20] ports/35166 ports [NEW PORT} xine-mms o [2002/02/20] ports/35168 nsayer x11/mgapdesk port broken o [2002/02/20] ports/35169 dima palm/pilot-link: changes to support p5-PD o [2002/02/20] ports/35170 ports New port: p5-PDA-Pilot: experimental Perl o [2002/02/20] kern/35171 Moused needs to be enabled to run a USB m o [2002/02/21] misc/35172 Please update am-utils(amd) into newer ve o [2002/02/21] kern/35175 ptrace(PT_DETACH, ....) doesn't do signal o [2002/02/21] ports/35177 chuckr math/gnuplot missing WITHOUT_X11 option o [2002/02/21] conf/35178 ipfilter for IPV6 not availlable in rc.* o [2002/02/21] i386/35182 APMD does not set close on exec for /dev/ o [2002/02/21] ports/35187 ports New port: xmlada - an xml processing libr o [2002/02/21] ports/35188 ports Update port: www/apache2 o [2002/02/21] ports/35190 ports New Port: autoproject o [2002/02/21] ports/35192 billf ports/net/net-snmp garbles /usr/local/sha o [2002/02/21] ports/35193 ports New port: astro/nightfall o [2002/02/21] kern/35195 msync performance on large files o [2002/02/21] ports/35197 dirk [PATCH] fix "auto-crash" build failure on o [2002/02/21] ports/35198 ports New port: biology/crimap o [2002/02/21] ports/35199 ports New ports: japanese/phpgroupware o [2002/02/21] bin/35201 link and unlink are not SUSv2-compliant a o [2002/02/22] ports/35204 dirk www/mod_php4 with xslt is not LOCALBASE c o [2002/02/22] ports/35205 ports New port: russian/mtc - Multifile text En o [2002/02/22] ports/35221 kde kdenetwork2 won't compile o [2002/02/22] docs/35222 doc mailing list archive URL regexp suboptima o [2002/02/22] bin/35226 mtree - strange behaviour on some filenam o [2002/02/23] kern/35234 World access to /dev/pass? (for scanner) o [2002/02/23] conf/35240 Update to etc/services o [2002/02/23] conf/35242 Change to etc/periodic/weekly/330.catman o [2002/02/23] ports/35244 ports proper fix for x11-fm/endeavour's strcase f [2002/02/23] misc/35245 brian unwanted stealth behaviour (inbound icmp o [2002/02/23] ports/35249 ports no man page for latex2html o [2002/02/23] conf/35262 Generation of boot block for headless ope o [2002/02/23] ports/35265 nobutaka Port /usr/ports/graphics/xine is broken o [2002/02/23] ports/35266 lioux New port: LimeWire o [2002/02/23] kern/35269 possible panics with 4:1 filesystem ratio o [2002/02/23] ports/35270 ports converters/p5-Convert-TNEF has wrong pkg- o [2002/02/24] ports/35272 nbm ports/mail/vqadmin missing source tarball o [2002/02/24] docs/35280 doc [PATCH] null-modem cable pinout in 'Seria o [2002/02/24] ports/35285 ports New port textproc/prosper: a LaTeX class o [2002/02/24] ports/35286 ports new port: misc/ncdialog (new cdialog by T o [2002/02/24] kern/35289 Brooktree device doesnt properly signal a o [2002/02/24] ports/35298 ports New port: biology/primer3 o [2002/02/24] ports/35303 ports New port: gimp-print, print drivers for C o [2002/02/25] ports/35318 obrien Update: editors/vim Fix for fetching last o [2002/02/25] kern/35324 Plug and Play probe fails to configure Di o [2002/02/25] ports/35328 ports emulators/bochs doesn't compile on -curre o [2002/02/25] ports/35330 ports New port: biology/wise o [2002/02/25] ports/35331 ports New port: JESS is a nice visualization pl o [2002/02/25] ports/35332 ports New port: biology/flip s [2002/02/25] bin/35333 send-pr(1) vim syntax highlighting suppor o [2002/02/25] ports/35334 ports Please add md2k driver to print/ghostscri o [2002/02/26] docs/35343 doc Old broken Unix docco Makefiles o [2002/02/26] ports/35344 obrien chinese/lunar: add big5 output messages o [2002/02/26] docs/35345 doc Restore old yacc documentation o [2002/02/26] ports/35346 dburr upgrade to opennap-0.44 o [2002/02/26] ports/35355 ports New port: databases/gbib o [2002/02/26] kern/35356 joe Dead code uhci_reset() in /sys/dev/usb/uh o [2002/02/26] ports/35362 ports x11-fonts/tkfont: use tk83 o [2002/02/26] ports/35365 ports fix bento error of textproc/pspell-ispell o [2002/02/26] ports/35368 ports New port: devel/p5-VCS f [2002/02/27] ports/35372 ports pgp6 ports fails to compile on alpha plat f [2002/02/27] ports/35374 ade Is gnomecontrolcenter-1.4.0.4_2 missing d o [2002/02/27] ports/35375 kde x11/kdebase2 creates files not listed in o [2002/02/27] ports/35376 cy New port : multi-gnome-terminal : tabbed o [2002/02/27] kern/35377 process gets unkillable (-9) in "ttywai" o [2002/02/27] docs/35378 doc Handbook has inaccurate description of f o [2002/02/27] misc/35381 incorrect floating-point display of large o [2002/02/27] ports/35382 ports Updated port: DansGuardin Content Filter o [2002/02/27] ports/35383 ports new port DarwinStreamingServer o [2002/02/27] ports/35385 ports port update: security/ssh2 o [2002/02/27] kern/35392 atapi tape driver does not maintain devic o [2002/02/27] bin/35393 Patch to add STANDARDS section to strerro o [2002/02/28] misc/35400 sysinstall could improve manipulation of o [2002/02/28] ports/35406 ports New port submission o [2002/02/28] ports/35417 ports Update port: textproc/wv to 0.7.1 o [2002/02/28] ports/35418 trevor Update port: x11-wm/evilwm to 0.9.44.1 o [2002/02/28] ports/35419 ports autoconf port packinglist is incomplete ( o [2002/02/28] docs/35436 doc PAO isn't very latest-and-greatest these o [2002/02/28] ports/35437 ports Update port: databases/p5-CDB_File to 0.9 o [2002/02/28] ports/35438 ports new port: net/driftnet o [2002/02/28] ports/35440 ports Update port: databases/p5-BerkeleyDB (ins o [2002/03/01] ports/35447 ports Update port: databases/p5-SQL-Statement t o [2002/03/01] ports/35448 ports Update port: databases/p5-DBD-CSV to 0.20 o [2002/03/01] i386/35449 [PATCH] another small fix for doscmd o [2002/03/01] bin/35451 PATCH: pkg_add -r able to save local copy o [2002/03/01] ports/35452 ports Maintainer's update: japanese/samba o [2002/03/01] bin/35454 mtree can't handle symlinks referencing f o [2002/03/01] ports/35456 portmgr [PATCH] Add a distfiles-list target o [2002/03/01] conf/35457 dual boot problem from 2 different SCSI d o [2002/03/01] ports/35459 knu portupgrade doesn't clean up dependencies o [2002/03/01] kern/35463 [patch] wi(4) doesn't comprehend standard o [2002/03/02] ports/35476 ports port version upgrade and ogg library fix o [2002/03/02] ports/35479 ports New Port: A small stand-alone program for o [2002/03/02] ports/35481 ports New port: console text editor looks like o [2002/03/02] ports/35487 ports New port: gtkgrepmail (A gtk front-end to o [2002/03/02] ports/35488 portmgr Mk/bsd.port.mk: dump only last 100 lines o [2002/03/02] docs/35491 green sshd(8) has an incorrect path o [2002/03/02] bin/35505 [PATCH] Feature enhancement for sed(1) o [2002/03/03] kern/35512 ATA/ATAPI CD driver: impossible to set cd o [2002/03/03] ports/35514 portmgr Use the value of hw.machine_arch instead o [2002/03/03] ports/35516 ports ports/irc/ninja tar-file on master site n o [2002/03/03] ports/35520 ports New port devel/whups: a web-based bug tra a [2002/03/03] bin/35521 nsupdate fails if destination dns is not o [2002/03/03] ports/35522 ports xhtml port uses SGMLDECL in catalog chain o [2002/03/03] docs/35523 doc manpage fixes for df(1) and ls(1) o [2002/03/03] bin/35524 [patch] update man-page of burncd(8) to t o [2002/03/03] ports/35525 ports update-port: graphics/jpeg2ps-letter o [2002/03/03] i386/35526 No mouse recognized in Compaq Presario la o [2002/03/04] docs/35530 doc New cvsup and www mirror in Romania f [2002/03/04] ports/35533 ade libgda depends on scrollkeeper a [2002/03/04] ports/35536 dougb pine5 port build (a) broken (b) doesn't f o [2002/03/04] ports/35540 ports ruby-racc-runtime checksums need updating o [2002/03/04] misc/35542 bde BDECFLAGS needs -U__STRICT_ANSI__ o [2002/03/04] conf/35545 Enhanced periodic scripts o [2002/03/04] ports/35546 olgeni security/nessus compilation error due to o [2002/03/04] ports/35547 ports [patch] www/links: add -width option o [2002/03/04] ports/35549 ports new port editors/texmacs doesn't build on o [2002/03/05] ports/35551 ports new port: graphics/xmms-jess o [2002/03/05] ports/35553 ports new port: x11/electricsheep o [2002/03/05] docs/35563 doc [Patch] Stop asking people to give us the o [2002/03/05] ports/35565 des audio/mpg123 fails to write to WAV files o [2002/03/05] ports/35566 ports new ports: Lire a multiple log files anal o [2002/03/05] ports/35567 ports update port: databases/dbconnect o [2002/03/05] bin/35568 make declares target out of date, but $? o [2002/03/05] ports/35578 ports mail/faces: make NAS default since xfaces o [2002/03/05] ports/35580 ports Starup script in /usr/local/etc/rc.d is i o [2002/03/06] ports/35587 ports Postfix port is interactive o [2002/03/06] ports/35588 ports audio/ripit patch to make use of new acdX o [2002/03/06] ports/35589 ports New port: security/p5-Digest o [2002/03/06] ports/35594 ports Bug: misc/kwatch fails to build if autoco o [2002/03/06] ports/35596 ports Maintainer update: make py-omniorb builda o [2002/03/06] i386/35599 install o [2002/03/06] ports/35600 nbm update databases/phpmyadmin to upstream v o [2002/03/06] docs/35602 doc dump(8)/restore(8) pages don't explain "a o [2002/03/06] docs/35603 doc grep(1) page is missing info on zfgrep, z o [2002/03/06] docs/35604 doc arp(4) page mentions 10Mb/s but not 100Mb o [2002/03/06] docs/35605 doc chmod(1) page misleads by use of "regardl o [2002/03/06] docs/35606 doc date(1) page doesn't say which clock(s) i o [2002/03/06] docs/35607 doc dump(1) page needs discussion of scary er o [2002/03/06] docs/35608 doc mt(1) page uses "setmark" without explana o [2002/03/06] docs/35609 doc mt(1) page needs explanation of "long era o [2002/03/06] docs/35610 doc sscanf(3) page has obsolete "this release o [2002/03/06] docs/35612 doc ps(1) page "state" description doesn't me o [2002/03/06] bin/35616 Patch to bring printf(1) up to POSIX.2 (1 o [2002/03/06] ports/35617 ports mail/faces: add USE_SOX, WITHOUT_AUDIO kn o [2002/03/06] bin/35621 Patch to add P1003.1-2001 -t option to un o [2002/03/07] ports/35624 ports New port: japanese/p5-Date-Japanese-Era o [2002/03/07] bin/35628 luigi ifpw(8) doesn't set RED parameters for du o [2002/03/07] ports/35634 ports audio/rplay: install daemon startup as rc o [2002/03/07] kern/35635 [patch] missing dep in libiconv prevents o [2002/03/07] kern/35636 dd [PATCH] can't input russian chars using w o [2002/03/07] ports/35638 ports tn3270 dumps core unconditionally o [2002/03/07] ports/35639 ports executable name conflicts: ploticus and s o [2002/03/07] docs/35642 doc lo(4) page maybe should document optional o [2002/03/07] ports/35643 ports Update port: print/lout to 3.25, want to o [2002/03/07] docs/35644 doc lo(4) page presumes familiarity with prin o [2002/03/07] docs/35646 doc cp(1) page needs a "Bugs" section. o [2002/03/07] docs/35647 doc www; combine query-by-number and multi-fi o [2002/03/07] docs/35648 doc rc.conf; add note about "flags" to both f o [2002/03/07] docs/35649 doc mount_smbfs(8) page: "See ./examples/dot. o [2002/03/07] docs/35651 doc mount(8) man page contains references to o [2002/03/07] docs/35652 doc bsd.README seriously obsolete o [2002/03/07] ports/35654 ports new port: graphics/xmms-infinity o [2002/03/07] ports/35657 jmz The language in Brazil is portuguese, not o [2002/03/07] ports/35658 znerd java/jdk13 creates too small src.jar o [2002/03/07] ports/35659 ports x11-fonts/webfonts extract fails o [2002/03/07] ports/35661 ports new port: mycb o [2002/03/07] ports/35666 portmgr new bsd.port.mk support for GCC 2.95 and o [2002/03/08] ports/35667 ports net/pppload patch so it doesn't show wron o [2002/03/08] ports/35668 ports Link sqsh with readline o [2002/03/08] ports/35670 ports /usr/ports/databases/sqsh - bogus depende o [2002/03/08] bin/35671 wrong comments in rc.diskless1 o [2002/03/08] ports/35682 ports apache13-ssl needs update o [2002/03/08] docs/35684 doc INSTALL.TXT, .HTM have obsolete FIPS info o [2002/03/08] docs/35686 doc blackhole(4) page seems to contradict its o [2002/03/08] docs/35687 doc /etc/nsmb.conf missing mention of readers o [2002/03/08] docs/35688 doc fdisk(8) page extraneous "being", etc. o [2002/03/08] ports/35694 ports Port of scons is way out of date o [2002/03/08] docs/35696 doc mount_smbfs(8) references a nonexistent n o [2002/03/08] kern/35699 [PATCH] msdosfs: differrent masks for dir o [2002/03/08] kern/35700 a small code update o [2002/03/09] ports/35708 ports New port: audio/abcmidi utilities for abc o [2002/03/09] ports/35709 ports new port: www/galeon-devel o [2002/03/09] ports/35710 portmgr Request repocopy: devel/automake -> devel o [2002/03/09] docs/35711 doc the "gnats page" should move to its own s o [2002/03/09] ports/35715 gnome Gnome-based builds fail due to lack of co o [2002/03/09] bin/35717 which(1) returns wrong exit status for m o [2002/03/09] bin/35718 which(1) command does not handle file nam o [2002/03/09] bin/35719 which(1) ignore empty components of $PATH o [2002/03/09] pending/35721gnats-adminUpdate port: textproc/py2html o [2002/03/09] ports/35722 ports xmame does not build, wishes it would :-) o [2002/03/09] misc/35727 man(1) program should not display (old) d o [2002/03/09] ports/35728 ports update port: chinese/zhcon o [2002/03/10] docs/35732 doc adduser(8) page has obsolete reference an o [2002/03/10] ports/35737 ports New port: audio/abcselect - extract part o [2002/03/10] ports/35739 ports Maintainer update of mail/imp3: chasing n o [2002/03/10] ports/35740 ports Maintainer update of mail/imp: chasing ne o [2002/03/10] ports/35741 ports New port: www/p5-CGI-SpeedyCGI - Speed up o [2002/03/10] ports/35747 ports Update ICI port to version 3.0.1 o [2002/03/10] ports/35748 ports new port: www/smarty o [2002/03/10] ports/35752 ports New port: devel/cvsbook: a free book abou o [2002/03/10] ports/35753 ports New Port: biology/act o [2002/03/10] ports/35754 ports Fix/Update ifhp port (re: 1 unfetchable d f [2002/03/10] ports/35755 ports Update to sysutils/LPRng port o [2002/03/10] ports/35758 ports New port: security/fwanalog - a firewall o [2002/03/10] ports/35762 ports Speak Freely hangs while reading from aud o [2002/03/11] misc/35764 Icewm does not display APM status properl o [2002/03/11] ports/35766 ports New Port: emulators/hercules 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] misc/35770 Why there is no /usr/local/bin in PATH va o [2002/03/11] bin/35773 [patch] nfsd does not compile with -DDEBU o [2002/03/11] ports/35776 gnome New option for mozilla port o [2002/03/11] ports/35779 kde bug: x11-toolkits/qt23 does not know zh_C o [2002/03/11] ports/35784 ports reposting pic2fig port as a diff against o [2002/03/11] docs/35800 obrien [PATCH] removal of -kthread in gcc man pa o [2002/03/11] ports/35809 ports graphics/tcm build fails after bison buil o [2002/03/11] bin/35812 strings(1) does'n print russian character o [2002/03/11] kern/35813 Add another Askey ISA modem o [2002/03/12] ports/35819 demon Update russian/apache13-modssl to apache- o [2002/03/12] docs/35823 doc [PATCH] Little Restructuring of the Devel o [2002/03/12] ports/35827 ports Updated new port: news/newscache 0.99.22 o [2002/03/12] ports/35833 ports ports/chinese/arphicttf and CJK depend on o [2002/03/12] ports/35837 ports kde2 build failure o [2002/03/12] bin/35838 Change to size of WID_IF in usr.bin/netst o [2002/03/12] ports/35839 ports MD5 mismatch in emulators/sim o [2002/03/12] ports/35840 gnome [PATCH] Fix build of devel/libgtop on -CU o [2002/03/12] ports/35841 ports pkgdep missing from pptpclient o [2002/03/13] kern/35846 timeout in wi_cmd 11, machine hangs for a o [2002/03/13] ports/35849 ports Update port: java/linux-ibm-jdk13 o [2002/03/13] ports/35853 znerd New port: java/jboss o [2002/03/13] ports/35856 ports Repo copy print/gnomeprint to print/libgn s [2002/03/13] misc/35858 des Test PR o [2002/03/13] ports/35859 ports New port: Network traffic accounting daem o [2002/03/13] kern/35861 brooks if_vlan module is compiled with ZERO vlan o [2002/03/13] ports/35862 gnome [PATCH] Unbreak nautilus-config o [2002/03/13] ports/35864 ports ports with invalid dependencies to glib13 o [2002/03/13] misc/35865 pam_krb5 crashes in pam_sm_setcred() o [2002/03/13] ports/35869 ports www/horde2: upgrade to Horde 2.1 RC1. o [2002/03/13] ports/35870 ports mail/turba: upgrade from 1.0 to 1.1 RC1. o [2002/03/13] ports/35871 ports mail/imp3: upgrade from 3.0 to 3.1 RC1. o [2002/03/13] ports/35872 ports Port devel/ocamlweb broken o [2002/03/13] kern/35876 bus_dmamem_free does not call contigfree o [2002/03/13] ports/35879 portmgr autoconf-2.52_2 creates empty case/esac s o [2002/03/13] ports/35882 ports Perl Expect module send_slow hangs on EOF o [2002/03/13] kern/35883 probe for ATI Rage128 Pro o [2002/03/13] conf/35884 gshapiro more DNS-based blocking for freebsd.mc o [2002/03/14] bin/35886 [patch] Enhancement: custom time format f o [2002/03/14] gnu/35892 GCC dies allocating arrays of (LONG_MAX/2 o [2002/03/14] bin/35894 bbraun popen.c in cron won't build without LOGIN o [2002/03/14] ports/35897 ports upgrading the linux_base port runs into t o [2002/03/14] ports/35898 ade Update net/fugu to 1.1.8 with fix for por o [2002/03/14] kern/35900 Changing RealTek 8139 MAC address fails f [2002/03/14] ports/35901 ports [SHAR] New port: editors/scribus. This PR o [2002/03/14] ports/35905 ports Update port: print/ghostscript-afpl to 7. o [2002/03/14] ports/35906 ports Update port: print/ghostscript-gnu to 6.5 f [2002/03/14] ports/35909 ports Fix/update to Open Scene Graph (osg) port o [2002/03/14] ports/35913 ports New port: The high perfomance Python adap o [2002/03/14] ports/35916 ports add port libexif o [2002/03/14] ports/35917 ports o [2002/03/14] misc/35918 Xset , XTGA and Xhtml Damaged o [2002/03/14] ports/35919 ports CompuPic 5.1.1016 o [2002/03/15] ports/35927 portmgr Permission sought to commit this automake o [2002/03/15] bin/35929 A small bug in renice o [2002/03/15] docs/35932 doc Insufficient description of ``log_in_vain o [2002/03/15] ports/35937 ports New port: taipan-0.9 o [2002/03/15] docs/35939 doc ipfw(8) needs explicit statement about no o [2002/03/15] docs/35941 doc cd(4) manual doesn't mention "target" use o [2002/03/15] docs/35942 doc at(1) manual doesn't describe at.allow an o [2002/03/15] docs/35943 doc at(1) config files are misplaced in /var/ o [2002/03/15] docs/35944 doc cd(9) manual refers to non-existent scsic o [2002/03/15] ports/35945 ports sysutils/webmin is not LOCALBASE clean o [2002/03/15] ports/35946 ports The /usr/local/lib/RealPlayer8/postinstal o [2002/03/15] docs/35947 doc disklabel(8) manual missing "2" in exampl o [2002/03/15] docs/35948 doc disklabel(8) manual uses archaic "pack" a o [2002/03/15] docs/35949 doc [PATCH] rtprio(1) man page uses incorrect o [2002/03/15] docs/35951 doc disklabel(8) manual confuses partitions a o [2002/03/15] docs/35953 doc hosts.equiv(5) manual is confusing or wro o [2002/03/15] docs/35955 doc pw(8) manual doesn't explain the "-F" opt o [2002/03/15] ports/35966 nakai Update port: x11-wm/qvwm to 1.1.12 o [2002/03/15] docs/35967 doc rc.conf(5) manual missing "dumpdir" and " o [2002/03/16] ports/35971 gnome [PATCH] Update devel/gnomevfs to 1.0.5 o [2002/03/16] kern/35978 improve kobj method dispatch o [2002/03/16] ports/35982 ports [MAINTAINER UPDATE] databases/firebird - o [2002/03/16] kern/35988 Seimens SpeedStream PCI/PCMCI Adaptor for o [2002/03/16] ports/35991 portmgr Portuguese category requested for new por a [2002/03/16] misc/35992 cjc /etc/rc has no way to force fsck -y at ne o [2002/03/16] kern/35993 sys/dev/amr/amr.c - Compiler warnings und o [2002/03/16] ports/35995 ports New port: ophoto o [2002/03/16] ports/35998 ports Port update: devel/pcsc-lite o [2002/03/17] bin/36000 contrib/amd uses mktemp o [2002/03/17] ports/36004 ports Update: japanese/eb, japanese/ndtpd o [2002/03/17] ports/36006 ports New port: net/smokeping - Latency logging o [2002/03/17] kern/36007 [PATCH] USB memory card reader/writer RD5 o [2002/03/17] ports/36009 dirk cdrtools-1.10_1 missing mkisofs o [2002/03/17] docs/36010 doc [PATCH] rename COMx: to COMx o [2002/03/17] ports/36014 tg I can't build xlockmore. o [2002/03/17] i386/36015 [patch] boot2.c deobfuscation o [2002/03/17] ports/36017 ports Port update o [2002/03/17] docs/36019 doc [NEW ARTICLE] - Java and Jakarta Tomcat o o [2002/03/17] ports/36020 jmz Update port: print/musixtex T.98 -> T.104 o [2002/03/17] ports/36024 sobomax port update: OpenJIT 1.1.16 for JDK 1.3.1 o [2002/03/17] ports/36026 steve Update port: x11-toolkits/open-motif to 2 o [2002/03/17] ports/36027 ports patch fails for java/netrexx o [2002/03/17] ports/36028 gnome cannot build gnomevfs with gettext WANT_F o [2002/03/17] ports/36029 ports [MAINTAINER UPDATE] Correct ldap.secret p o [2002/03/17] ports/36030 portmgr PREFIX=/usr causes some problems o [2002/03/17] ports/36031 gnome [PATCH] Add GNOME2 version of print/libgn o [2002/03/17] misc/36032 hard coded variables in src/release/Makef o [2002/03/17] ports/36033 wjv Update port: x11-toolkits/py-anygui o [2002/03/17] ports/36034 ports new port databases/pg-crypto o [2002/03/17] ports/36035 cjh Update port: audio/soribada o [2002/03/17] ports/36036 cjh Update port: korean/hanterm o [2002/03/18] ports/36039 ports upgrade tinyproxy port o [2002/03/18] ports/36040 ports Update port: www/apache2 (revised) o [2002/03/18] docs/36042 doc [PATCH] There's not a good description of o [2002/03/18] ports/36044 ports Memory leak in gtk pixmap engine o [2002/03/18] ports/36045 ports Maintainer-update of mail/mutt-devel o [2002/03/18] ports/36046 ports vim/vim-lite use libiconv without proper o [2002/03/18] ports/36047 ports New port java/jbuilder-personal o [2002/03/18] ports/36052 ports update port irc/blackened from v1.8.0 to o [2002/03/18] ports/36053 ports [MAINTAINER] update database/gigabase fro o [2002/03/18] docs/36055 doc [PATCH] adding some help-yourself-info to 2052 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 11:30:16 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B4C5137B416 for ; Mon, 18 Mar 2002 11:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IJU3P08539; Mon, 18 Mar 2002 11:30:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8470E37B405 for ; Mon, 18 Mar 2002 11:24:57 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IJOvY07536; Mon, 18 Mar 2002 11:24:57 -0800 (PST) (envelope-from nobody) Message-Id: <200203181924.g2IJOvY07536@freefall.freebsd.org> Date: Mon, 18 Mar 2002 11:24:57 -0800 (PST) From: Claes Nästén To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/36056: atapicd driver won't boot with cdr-cdroms when not specifying pio mode Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36056 >Category: kern >Synopsis: atapicd driver won't boot with cdr-cdroms when not specifying pio mode >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Mar 18 11:30:03 PST 2002 >Closed-Date: >Last-Modified: >Originator: Claes Nästén >Release: 4.5 >Organization: >Environment: >Description: FreeBSD won't boot on systems with atapi cd burners when using autodetect in the bios settings. It'll work, however if you set the device as an CD and the pio mode ... looking at the dmesg it'll say that it uses pio4 tough. This, happens on my Asus A7V133-VM (1Ghz AMD Duron w 256Mb ram) and a Hewlett-Packard CD-Writer Plus 8200 running as Secondary Master... still, I had the same problem on my Abit VP6 with an Intel P3 933Mhz with the same burner. >How-To-Repeat: Just set the bios to autodetect, and this will happen >Fix: Set the device to cd and the pio mode to 0 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 12:20:21 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 22CE837B404 for ; Mon, 18 Mar 2002 12:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IKK1N23323; Mon, 18 Mar 2002 12:20:01 -0800 (PST) (envelope-from gnats) Received: from univie.ac.at (adslle.cc.univie.ac.at [131.130.102.11]) by hub.freebsd.org (Postfix) with ESMTP id 6F54637B405 for ; Mon, 18 Mar 2002 12:18:04 -0800 (PST) Received: (from le@localhost) by univie.ac.at (8.11.6/8.11.6) id g2IKHxF00907; Mon, 18 Mar 2002 21:17:59 +0100 (CET) (envelope-from le) Message-Id: <200203182017.g2IKHxF00907@univie.ac.at> Date: Mon, 18 Mar 2002 21:17:59 +0100 (CET) From: Lukas Ertl Reply-To: Lukas Ertl To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/36057: atacontrol, apm, kernel panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36057 >Category: kern >Synopsis: atacontrol, apm, kernel panic >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 Mar 18 12:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Lukas Ertl >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD korben 4.5-STABLE FreeBSD 4.5-STABLE #6: Mon Mar 18 20:09:18 CET 2002 le@korben:/usr/src/sys/compile/KORBEN i386 >Description: Resuming from suspend mode after issueing "atacontrol detach" results in a kernel panic on my Thinkpad T20. My laptop (Thinkpad T20) has a DVD drive and a floppy drive, which share one slot; if you want to use either of them, you have to remove the other one. With the arrive of atacontrol in STABLE I thought, I finally could hotswap them instead of rebooting. So if I say "atacontrol detach 1", then remove the DVD drive, some stupid Thinkpad hardware starts beeping, because it misses the drive. To stop the beep, I go into suspend mode via "zzz". After resuming I get a kernel panic: [root@korben crash]# gdb -k /usr/src/sys/compile/KORBEN/kernel.debug vmcore.0 GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-freebsd"... IdlePTD at phsyical address 0x003b9000 initial pcb at physical address 0x00318fa0 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0x70 fault code = supervisor read, page not present instruction pointer = 0x8:0xc016dc28 stack pointer = 0x10:0xc02d79ec frame pointer = 0x10:0xc02d7a10 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = Idle interrupt mask = net tty bio cam trap number = 12 panic: page fault syncing disks... Fatal trap 12: page fault while in kernel mode fault virtual address = 0x30 fault code = supervisor read, page not present instruction pointer = 0x8:0xc020b9cc stack pointer = 0x10:0xc02d7810 frame pointer = 0x10:0xc02d7818 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = Idle interrupt mask = net tty bio cam trap number = 12 panic: page fault Uptime: 1m52s dumping to dev #ad/0x30001, offset 524416 dump ata0: resetting devices .. done 255 254 253 252 251 250 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 231 230 229 228 227 226 225 224 223 222 221 220 219 218 217 216 215 214 213 212 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 194 193 192 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 175 174 173 172 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 156 155 154 153 152 151 150 149 148 147 146 145 144 143 142 141 140 139 138 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 dumpsys () at ../../kern/kern_shutdown.c:487 487 if (dumping++) { (kgdb) where #0 dumpsys () at ../../kern/kern_shutdown.c:487 #1 0xc016ac03 in boot (howto=260) at ../../kern/kern_shutdown.c:316 #2 0xc016b028 in poweroff_wait (junk=0xc02cf4ec, howto=-1070796785) at ../../kern/kern_shutdown.c:595 #3 0xc0289616 in trap_fatal (frame=0xc02d77d0, eva=48) at ../../i386/i386/trap.c:966 #4 0xc02892e9 in trap_pfault (frame=0xc02d77d0, usermode=0, eva=48) at ../../i386/i386/trap.c:859 #5 0xc0288ea7 in trap (frame={tf_fs = -1070792688, tf_es = 16, tf_ds = 16, tf_edi = -1070401056, tf_esi = 0, tf_ebp = -1070761960, tf_isp = -1070761988, tf_ebx = -1070675684, tf_edx = 6834240, tf_ecx = 2, tf_eax = 0, tf_trapno = 12, tf_err = 0, tf_eip = -1071597108, tf_cs = 8, tf_eflags = 66182, tf_esp = 0, tf_ss = 0}) at ../../i386/i386/trap.c:458 #6 0xc020b9cc in acquire_lock (lk=0xc02ec91c) at ../../ufs/ffs/ffs_softdep.c:266 #7 0xc020ffee in softdep_fsync_mountdev (vp=0xcd150b40) at ../../ufs/ffs/ffs_softdep.c:4024 #8 0xc02141e2 in ffs_fsync (ap=0xc02d788c) at ../../ufs/ffs/ffs_vnops.c:134 #9 0xc0212ea3 in ffs_sync (mp=0xc1261600, waitfor=2, cred=0xc0a3c900, p=0xc032f9e0) at vnode_if.h:558 #10 0xc019a447 in sync (p=0xc032f9e0, uap=0x0) at ../../kern/vfs_syscalls.c:569 #11 0xc016a99e in boot (howto=256) at ../../kern/kern_shutdown.c:235 #12 0xc016b028 in poweroff_wait (junk=0xc02cf4ec, howto=-1070796785) at ../../kern/kern_shutdown.c:595 #13 0xc0289616 in trap_fatal (frame=0xc02d79ac, eva=112) at ../../i386/i386/trap.c:966 #14 0xc02892e9 in trap_pfault (frame=0xc02d79ac, usermode=0, eva=112) at ../../i386/i386/trap.c:859 #15 0xc0288ea7 in trap (frame={tf_fs = 16, tf_es = 16, tf_ds = 16, tf_edi = 0, tf_esi = -1055110912, tf_ebp = -1070761456, tf_isp = -1070761512, tf_ebx = 0, tf_edx = 503, tf_ecx = -1055159488, tf_eax = 4194304, tf_trapno = 12, tf_err = 0, tf_eip = -1072243672, tf_cs = 8, tf_eflags = 66118, tf_esp = 496, tf_ss = -1055110868}) at ../../i386/i386/trap.c:458 #16 0xc016dc28 in tsleep (ident=0xc11c4900, priority=16, wmesg=0xc02a4246 "atacmd", timo=1000) at ../../kern/kern_synch.c:436 #17 0xc0135630 in ata_command (atadev=0xc11c492c, command=236 'ì', lba=0, count=0, feature=0, flags=2) at ../../dev/ata/ata-all.c:1048 #18 0xc013418b in ata_getparam (atadev=0xc11c492c, command=236) at ../../dev/ata/ata-all.c:428 #19 0xc0134e52 in ata_reinit (ch=0xc11c4900) at ../../dev/ata/ata-all.c:845 #20 0xc0133db1 in ata_resume (dev=0xc11c9c00) at ../../dev/ata/ata-all.c:275 #21 0xc0121e12 in DEVICE_RESUME (dev=0xc11c9c00) at device_if.c:105 #22 0xc017380a in bus_generic_resume (dev=0xc11b4c00) at ../../kern/subr_bus.c:1936 #23 0xc0121e12 in DEVICE_RESUME (dev=0xc11b4c00) at device_if.c:105 #24 0xc017380a in bus_generic_resume (dev=0xc11b3500) at ../../kern/subr_bus.c:1936 #25 0xc0121e12 in DEVICE_RESUME (dev=0xc11b3500) at device_if.c:105 #26 0xc017380a in bus_generic_resume (dev=0xc11b3680) at ../../kern/subr_bus.c:1936 #27 0xc0121e12 in DEVICE_RESUME (dev=0xc11b3680) at device_if.c:105 #28 0xc017380a in bus_generic_resume (dev=0xc11b3800) at ../../kern/subr_bus.c:1936 #29 0xc0121e12 in DEVICE_RESUME (dev=0xc11b3800) at device_if.c:105 #30 0xc017380a in bus_generic_resume (dev=0xc0a3c880) at ../../kern/subr_bus.c:1936 #31 0xc0121e12 in DEVICE_RESUME (dev=0xc0a3c880) at device_if.c:105 #32 0xc02788db in apm_resume () at ../../i386/apm/apm.c:596 #33 0xc0278f94 in apm_processevent () at ../../i386/apm/apm.c:980 #34 0xc0278766 in apm_do_suspend () at ../../i386/apm/apm.c:481 #35 0xc0278b1d in apm_timeout (dummy=0x0) at ../../i386/apm/apm.c:738 #36 0xc0170a85 in softclock () at ../../kern/kern_timeout.c:131 It doesn't matter if I attach the drive again before I go into suspend/resume, the kernel still panics. I still have the debug kernel here, if you need more information. >How-To-Repeat: On a Thinkpad T20: boot with the DVD installed, issue "atacontrol detach 1", suspend via "zzz" or function keys, resume again -> panic. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 12:41:23 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from s096-n062.tele2.cz (s096-n062.tele2.cz [213.246.96.62]) by hub.freebsd.org (Postfix) with ESMTP id 11F8237B47D; Mon, 18 Mar 2002 12:40:29 -0800 (PST) Received: from localhost (plusik@localhost) by s096-n062.tele2.cz (8.11.6/8.11.6) with ESMTP id g2IKcQP00414; Mon, 18 Mar 2002 21:38:30 +0100 (CET) (envelope-from plusik@pohoda.cz) X-Authentication-Warning: s096-n062.tele2.cz: plusik owned process doing -bs Date: Mon, 18 Mar 2002 21:38:25 +0100 (CET) From: Tomas Pluskal X-X-Sender: plusik@s096-n062.tele2.cz To: freebsd-questions@FreeBSD.ORG, Subject: slow ATAPI ZIP ? Message-ID: <20020318213656.Y410-200000@s096-n062.tele2.cz> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-2076576370-1016483905=:410" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-2076576370-1016483905=:410 Content-Type: TEXT/PLAIN; charset=US-ASCII -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, I've 2 IDE controllers in my computer (1 on the mainboard and 1 added PCI card). Both are ATA-100. FreeBSD finds them OK and all connected devices work. On the second controller I have 1 HDD (1st IDE channel) and ATAPI ZIP drive (2nd IDE channel) and none of them works with DMA. Even when I set dma with sysctl, it falls back to PIO mode. I am not sure about the ZIP drive, but I am sure the HDD supports UDMA (it's WD Caviar 15GB). The HDD is quite fast even when in PIO mode (about 3 MB/s), but the ZIP drive is extremely slow (about 50KB/s), which is annoying. In M$ Windows it works normally (at least 10x faster). Maybe the kernel sets bad PIO mode for the ZIP drive, but I don't know how to change it ? This is dmesg report about ata devices (full dmesg included as attachment): atapci0: port 0xb000-0xb00f,0xac00-0xac03,0xa800-0xa807,0xa400-0xa403,0xa000-0xa007 irq 11 at device 8.0 on pci0 ata2: at 0xa000 on atapci0 ata3: at 0xa800 on atapci0 atapci1: port 0xbc00-0xbc0f at device 17.1 on pci0 ata0: at 0x1f0 irq 14 on atapci1 ata1: at 0x170 irq 15 on atapci1 ad0: 38166MB [77545/16/63] at ata0-master WDMA2 ad6: 14669MB [29805/16/63] at ata3-master UDMA66 acd0: CD-RW at ata1-master using PIO4 acd1: CDROM at ata1-slave using PIO4 afd0: 96MB [32/64/96] at ata2-master using PIO0 Is there a possibility to make the ZIP drive faster ? Thx Tomas Pluskal -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8llBBqlO9Q2aZisoRAq+ZAKCEu/dkMBbvkxfe5Il+D3VmUwJBAQCfZo2F 4VcX22K82VqzmjzbE3tHuWI= =JIiu -----END PGP SIGNATURE----- --0-2076576370-1016483905=:410 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=dmesg Content-Transfer-Encoding: BASE64 Content-ID: <20020318213825.D410@s096-n062.tele2.cz> Content-Description: Content-Disposition: attachment; filename=dmesg Q29weXJpZ2h0IChjKSAxOTkyLTIwMDIgVGhlIEZyZWVCU0QgUHJvamVjdC4N CkNvcHlyaWdodCAoYykgMTk3OSwgMTk4MCwgMTk4MywgMTk4NiwgMTk4OCwg MTk4OSwgMTk5MSwgMTk5MiwgMTk5MywgMTk5NA0KCVRoZSBSZWdlbnRzIG9m IHRoZSBVbml2ZXJzaXR5IG9mIENhbGlmb3JuaWEuIEFsbCByaWdodHMgcmVz ZXJ2ZWQuDQpGcmVlQlNEIDQuNS1SRUxFQVNFICMxOTogTW9uIE1hciAxMSAw OTo0NToxMyBDRVQgMjAwMg0KICAgIHJvb3RAczA5Ni1uMDYyLnRlbGUyLmN6 Oi91c3Ivc3JjL3N5cy9jb21waWxlL1BMVVNJSw0KVGltZWNvdW50ZXIgImk4 MjU0IiAgZnJlcXVlbmN5IDExOTMxODIgSHoNCkNQVTogQU1EIEF0aGxvbih0 bSkgWFAgMTYwMCsgKDE0MTAuMzUtTUh6IDY4Ni1jbGFzcyBDUFUpDQogIE9y aWdpbiA9ICJBdXRoZW50aWNBTUQiICBJZCA9IDB4NjYyICBTdGVwcGluZyA9 IDINCiAgRmVhdHVyZXM9MHgzODNmOWZmPEZQVSxWTUUsREUsUFNFLFRTQyxN U1IsUEFFLE1DRSxDWDgsU0VQLE1UUlIsUEdFLE1DQSxDTU9WLFBBVCxQU0Uz NixNTVgsRlhTUixTU0U+DQogIEFNRCBGZWF0dXJlcz0weGMwNDgwMDAwPDxi MTk+LEFNSUUsRFNQLDNETm93IT4NCnJlYWwgbWVtb3J5ICA9IDUzNjgwNTM3 NiAoNTI0MjI0SyBieXRlcykNCmF2YWlsIG1lbW9yeSA9IDUxODcxMzM0NCAo NTA2NTU2SyBieXRlcykNClByZWxvYWRlZCBlbGYga2VybmVsICJrZXJuZWwi IGF0IDB4YzAzOGIwMDAuDQpWRVNBOiB2Mi4wLCA2NTUzNmsgbWVtb3J5LCBm bGFnczoweDEsIG1vZGUgdGFibGU6MHhjMDMxZjI0MiAoMTAwMDAyMikNClZF U0E6IEFUSSBSMjAwDQpQZW50aXVtIFBybyBNVFJSIHN1cHBvcnQgZW5hYmxl ZA0KbWQwOiBNYWxsb2MgZGlzaw0KVXNpbmcgJFBJUiB0YWJsZSwgNiBlbnRy aWVzIGF0IDB4YzAwZmRmMTANCmFwbTA6IDxBUE0gQklPUz4gb24gbW90aGVy Ym9hcmQNCmFwbTogZm91bmQgQVBNIEJJT1MgdjEuMiwgY29ubmVjdGVkIGF0 IHYxLjINCm5weDA6IDxtYXRoIHByb2Nlc3Nvcj4gb24gbW90aGVyYm9hcmQN Cm5weDA6IElOVCAxNiBpbnRlcmZhY2UNCnBjaWIwOiA8SG9zdCB0byBQQ0kg YnJpZGdlPiBvbiBtb3RoZXJib2FyZA0KcGNpMDogPFBDSSBidXM+IG9uIHBj aWIwDQpwY2liMTogPFBDSSB0byBQQ0kgYnJpZGdlICh2ZW5kb3I9MTEwNiBk ZXZpY2U9YjA5OSk+IGF0IGRldmljZSAxLjAgb24gcGNpMA0KcGNpMTogPFBD SSBidXM+IG9uIHBjaWIxDQpwY2kxOiA8QVRJIG1vZGVsIDUxNGMgZ3JhcGhp Y3MgYWNjZWxlcmF0b3I+IGF0IDAuMCBpcnEgMTENCmF0YXBjaTA6IDxDTUQg NjQ5IEFUQTEwMCBjb250cm9sbGVyPiBwb3J0IDB4YjAwMC0weGIwMGYsMHhh YzAwLTB4YWMwMywweGE4MDAtMHhhODA3LDB4YTQwMC0weGE0MDMsMHhhMDAw LTB4YTAwNyBpcnEgMTEgYXQgZGV2aWNlIDguMCBvbiBwY2kwDQphdGEyOiBh dCAweGEwMDAgb24gYXRhcGNpMA0KYXRhMzogYXQgMHhhODAwIG9uIGF0YXBj aTANCmVkMDogPE5FMjAwMCBQQ0kgRXRoZXJuZXQgKFJlYWxUZWsgODAyOSk+ IHBvcnQgMHhiNDAwLTB4YjQxZiBpcnEgMTAgYXQgZGV2aWNlIDkuMCBvbiBw Y2kwDQplZDA6IGFkZHJlc3MgMDA6MDA6ZTg6NzU6Nzc6ZmYsIHR5cGUgTkUy MDAwICgxNiBiaXQpIA0KYmt0cjA6IDxCcm9va1RyZWUgODc4PiBtZW0gMHhl ZjAwMDAwMC0weGVmMDAwZmZmIGlycSAxMSBhdCBkZXZpY2UgMTAuMCBvbiBw Y2kwDQppaWNiYjA6IDxJMkMgZ2VuZXJpYyBiaXQtYmFuZ2luZyBkcml2ZXI+ IG9uIGJ0aTJjMA0KaWljYnVzMDogPFBoaWxpcHMgSTJDIGJ1cz4gb24gaWlj YmIwIG1hc3Rlci1vbmx5DQpzbWJ1czA6IDxTeXN0ZW0gTWFuYWdlbWVudCBC dXM+IG9uIGJ0aTJjMA0KYmt0cjA6IFdhcm5pbmcgLSBjYXJkIHZlbmRvciAw eDEwMDIgKG1vZGVsIDB4MDAwMykgdW5rbm93bi4NCmJrdHIwOiBQaW5uYWNs ZS9NaXJvIFRWLCBUZW1pYyBOVFNDIHR1bmVyLg0KcGNpMDogPHVua25vd24g Y2FyZD4gKHZlbmRvcj0weDEwOWUsIGRldj0weDA4NzgpIGF0IDEwLjEgaXJx IDExDQpwY20wOiA8QXVkaW9QQ0kgRVMxMzcwPiBwb3J0IDB4YjgwMC0weGI4 M2YgaXJxIDExIGF0IGRldmljZSAxMS4wIG9uIHBjaTANCmlzYWIwOiA8UENJ IHRvIElTQSBicmlkZ2UgKHZlbmRvcj0xMTA2IGRldmljZT0zMTQ3KT4gYXQg ZGV2aWNlIDE3LjAgb24gcGNpMA0KaXNhMDogPElTQSBidXM+IG9uIGlzYWIw DQphdGFwY2kxOiA8VklBIEFwb2xsbyBBVEEgY29udHJvbGxlcj4gcG9ydCAw eGJjMDAtMHhiYzBmIGF0IGRldmljZSAxNy4xIG9uIHBjaTANCmF0YTA6IGF0 IDB4MWYwIGlycSAxNCBvbiBhdGFwY2kxDQphdGExOiBhdCAweDE3MCBpcnEg MTUgb24gYXRhcGNpMQ0KdWhjaTA6IDxWSUEgODNDNTcyIFVTQiBjb250cm9s bGVyPiBwb3J0IDB4YzAwMC0weGMwMWYgaXJxIDExIGF0IGRldmljZSAxNy4y IG9uIHBjaTANCnVzYjA6IDxWSUEgODNDNTcyIFVTQiBjb250cm9sbGVyPiBv biB1aGNpMA0KdXNiMDogVVNCIHJldmlzaW9uIDEuMA0KdWh1YjA6IFZJQSBV SENJIHJvb3QgaHViLCBjbGFzcyA5LzAsIHJldiAxLjAwLzEuMDAsIGFkZHIg MQ0KdWh1YjA6IDIgcG9ydHMgd2l0aCAyIHJlbW92YWJsZSwgc2VsZiBwb3dl cmVkDQp1aGNpMTogPFZJQSA4M0M1NzIgVVNCIGNvbnRyb2xsZXI+IHBvcnQg MHhjNDAwLTB4YzQxZiBpcnEgMTEgYXQgZGV2aWNlIDE3LjMgb24gcGNpMA0K dXNiMTogPFZJQSA4M0M1NzIgVVNCIGNvbnRyb2xsZXI+IG9uIHVoY2kxDQp1 c2IxOiBVU0IgcmV2aXNpb24gMS4wDQp1aHViMTogVklBIFVIQ0kgcm9vdCBo dWIsIGNsYXNzIDkvMCwgcmV2IDEuMDAvMS4wMCwgYWRkciAxDQp1aHViMTog MiBwb3J0cyB3aXRoIDIgcmVtb3ZhYmxlLCBzZWxmIHBvd2VyZWQNCm9ybTA6 IDxPcHRpb24gUk9NPiBhdCBpb21lbSAweGMwMDAwLTB4Y2JmZmYgb24gaXNh MA0KZmRjMDogPE5FQyA3MjA2NUIgb3IgY2xvbmU+IGF0IHBvcnQgMHgzZjAt MHgzZjUsMHgzZjcgaXJxIDYgZHJxIDIgb24gaXNhMA0KZmRjMDogRklGTyBl bmFibGVkLCA4IGJ5dGVzIHRocmVzaG9sZA0KZmQwOiA8MTQ0MC1LQiAzLjUi IGRyaXZlPiBvbiBmZGMwIGRyaXZlIDANCmF0a2JkYzA6IDxLZXlib2FyZCBj b250cm9sbGVyIChpODA0Mik+IGF0IHBvcnQgMHg2MCwweDY0IG9uIGlzYTAN CmF0a2JkMDogPEFUIEtleWJvYXJkPiBmbGFncyAweDEgaXJxIDEgb24gYXRr YmRjMA0Ka2JkMCBhdCBhdGtiZDANCnBzbTA6IDxQUy8yIE1vdXNlPiBpcnEg MTIgb24gYXRrYmRjMA0KcHNtMDogbW9kZWwgTmV0TW91c2UvTmV0U2Nyb2xs IE9wdGljYWwsIGRldmljZSBJRCAwDQp2Z2EwOiA8R2VuZXJpYyBJU0EgVkdB PiBhdCBwb3J0IDB4M2MwLTB4M2RmIGlvbWVtIDB4YTAwMDAtMHhiZmZmZiBv biBpc2EwDQpzYzA6IDxTeXN0ZW0gY29uc29sZT4gYXQgZmxhZ3MgMHgxMDAg b24gaXNhMA0Kc2MwOiBWR0EgPDE2IHZpcnR1YWwgY29uc29sZXMsIGZsYWdz PTB4MzAwPg0Kc2lvMCBhdCBwb3J0IDB4M2Y4LTB4M2ZmIGlycSA0IGZsYWdz IDB4MTAgb24gaXNhMA0Kc2lvMDogdHlwZSAxNjU1MEENCnNpbzEgYXQgcG9y dCAweDJmOC0weDJmZiBpcnEgMyBvbiBpc2EwDQpzaW8xOiB0eXBlIDE2NTUw QQ0KcHBjMDogPFBhcmFsbGVsIHBvcnQ+IGF0IHBvcnQgMHgzNzgtMHgzN2Yg aXJxIDcgb24gaXNhMA0KcHBjMDogR2VuZXJpYyBjaGlwc2V0IChOSUJCTEUt b25seSkgaW4gQ09NUEFUSUJMRSBtb2RlDQpwbGlwMDogPFBMSVAgbmV0d29y ayBpbnRlcmZhY2U+IG9uIHBwYnVzMA0KbHB0MDogPFByaW50ZXI+IG9uIHBw YnVzMA0KbHB0MDogSW50ZXJydXB0LWRyaXZlbiBwb3J0DQpwcGkwOiA8UGFy YWxsZWwgSS9PPiBvbiBwcGJ1czANCklQIHBhY2tldCBmaWx0ZXJpbmcgaW5p dGlhbGl6ZWQsIGRpdmVydCBkaXNhYmxlZCwgcnVsZS1iYXNlZCBmb3J3YXJk aW5nIGRpc2FibGVkLCBkZWZhdWx0IHRvIGRlbnksIGxvZ2dpbmcgZGlzYWJs ZWQNCmFkMDogMzgxNjZNQiA8U1QzNDAwMTZBPiBbNzc1NDUvMTYvNjNdIGF0 IGF0YTAtbWFzdGVyIFdETUEyDQphZDY6IDE0NjY5TUIgPFdEQyBXRDE1M0JB PiBbMjk4MDUvMTYvNjNdIGF0IGF0YTMtbWFzdGVyIFVETUE2Ng0KYWNkMDog Q0QtUlcgPFNPTlkgQ0QtUlcgQ1JYMTc1QT4gYXQgYXRhMS1tYXN0ZXIgdXNp bmcgUElPNA0KYWNkMTogQ0RST00gPEJDRC00MFhIIENELVJPTT4gYXQgYXRh MS1zbGF2ZSB1c2luZyBQSU80DQphZmQwOiA5Nk1CIDxJT01FR0EgWklQIDEw MCBBVEFQST4gWzMyLzY0Lzk2XSBhdCBhdGEyLW1hc3RlciB1c2luZyBQSU8w DQpNb3VudGluZyByb290IGZyb20gdWZzOi9kZXYvYWQwczJhDQo= --0-2076576370-1016483905=:410-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 13:15:21 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD9D137B400; Mon, 18 Mar 2002 13:15:18 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ILFHT36546; Mon, 18 Mar 2002 13:15:17 -0800 (PST) (envelope-from cjc) Date: Mon, 18 Mar 2002 13:15:17 -0800 (PST) From: Message-Id: <200203182115.g2ILFHT36546@freefall.freebsd.org> To: dgilbert@velocet.ca, cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35873: recent -STABLE dhclient doesn't see wireless card Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: recent -STABLE dhclient doesn't see wireless card State-Changed-From-To: closed->open State-Changed-By: cjc State-Changed-When: Mon Mar 18 13:14:24 PST 2002 State-Changed-Why: I misread the submitter's last email. This is still a problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=35873 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 13:39: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E8FA037B402; Mon, 18 Mar 2002 13:39:07 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ILd7X40580; Mon, 18 Mar 2002 13:39:07 -0800 (PST) (envelope-from obrien) Date: Mon, 18 Mar 2002 13:39:07 -0800 (PST) From: Message-Id: <200203182139.g2ILd7X40580@freefall.freebsd.org> To: jmallett@freebsd.org, obrien@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: gnu/35892: GCC dies allocating arrays of (LONG_MAX/2)-1 size Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: GCC dies allocating arrays of (LONG_MAX/2)-1 size State-Changed-From-To: open->closed State-Changed-By: obrien State-Changed-When: Mon Mar 18 13:38:42 PST 2002 State-Changed-Why: Not a FreeBSD-specific issue. PR for a purely GCC bug, w/no patch to fix. http://www.freebsd.org/cgi/query-pr.cgi?pr=35892 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 13:41:19 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B570737B404; Mon, 18 Mar 2002 13:41:16 -0800 (PST) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ILfGn41112; Mon, 18 Mar 2002 13:41:16 -0800 (PST) (envelope-from dwmalone) Date: Mon, 18 Mar 2002 13:41:16 -0800 (PST) From: Message-Id: <200203182141.g2ILfGn41112@freefall.freebsd.org> To: genocide@katamail.com, dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/36048: stallo of shell Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: stallo of shell State-Changed-From-To: open->closed State-Changed-By: dwmalone State-Changed-When: Mon Mar 18 13:39:43 PST 2002 State-Changed-Why: If you run: ee /etc/passwd | fgrep root then you are actually running the ee editor, but you cannot see its output because you are grepping for "root". If you type escape-return, which exits from ee, then the shell will return as normal. http://www.freebsd.org/cgi/query-pr.cgi?pr=36048 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 14:20:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C22C537B417 for ; Mon, 18 Mar 2002 14:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IMK2S50958; Mon, 18 Mar 2002 14:20:02 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Mar 2002 14:20:02 -0800 (PST) Message-Id: <200203182220.g2IMK2S50958@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Tim J. Robbins" Subject: Re: kern/36038: sendfile(2) on smbfs fails, exposes kernel memory to userspace Reply-To: "Tim J. Robbins" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/36038; it has been noted by GNATS. From: "Tim J. Robbins" To: David Greenman Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: kern/36038: sendfile(2) on smbfs fails, exposes kernel memory to userspace Date: Tue, 19 Mar 2002 09:16:28 +1100 On Sun, Mar 17, 2002 at 11:12:28PM -0800, David Greenman wrote: > After a quick look at this, it appears that md_get_uio() (located in > kern/sysbr_mchain.c) doesn't support UIO_NOCOPY, which sendfile() requires. > This function (and it's children) appear to be only used by smbfs. Thanks for helping to track down the bug so quickly. md_get_uio() made the incorrect assumption that anything other than UIO_SYSSPACE was UIO_USER(I)SPACE. I'm not sure how to implement UIO_NOCOPY for mchain, so these patches just make it return an error instead of trying to copy bogus data, leading to EFAULT or revealing contents of kernel memory. Patch against HEAD: Index: subr_mchain.c =================================================================== RCS file: /home/ncvs/src/sys/kern/subr_mchain.c,v retrieving revision 1.4 diff -u -r1.4 subr_mchain.c --- subr_mchain.c 2002/02/21 16:23:38 1.4 +++ subr_mchain.c 2002/03/18 22:13:41 @@ -273,8 +273,21 @@ long left; int mtype, error; - mtype = (uiop->uio_segflg == UIO_SYSSPACE) ? MB_MSYSTEM : MB_MUSER; - + switch (uiop->uio_segflg) { + case UIO_USERSPACE: + case UIO_USERISPACE: + mtype = MB_MUSER; + break; + case UIO_SYSSPACE: + mtype = MB_MSYSTEM; + break; + case UIO_NOCOPY: + /* XXX Not supported */ + return EOPNOTSUPP; + default: + return EINVAL; + } + while (size > 0 && uiop->uio_resid) { if (uiop->uio_iovcnt <= 0 || uiop->uio_iov == NULL) return EFBIG; Patch against RELENG_4: Index: subr_mchain.c =================================================================== RCS file: /home/ncvs/src/sys/kern/subr_mchain.c,v retrieving revision 1.2.2.1 diff -u -r1.2.2.1 subr_mchain.c --- subr_mchain.c 2001/05/18 11:01:21 1.2.2.1 +++ subr_mchain.c 2002/03/18 22:10:40 @@ -525,7 +525,21 @@ long left; int mtype, error; - mtype = (uiop->uio_segflg == UIO_SYSSPACE) ? MB_MSYSTEM : MB_MUSER; + switch (uiop->uio_segflg) { + case UIO_USERSPACE: + case UIO_USERISPACE: + mtype = MB_MUSER; + break; + case UIO_SYSSPACE: + mtype = MB_MSYSTEM; + break; + case UIO_NOCOPY: + /* XXX Not supported */ + return EOPNOTSUPP; + default: + return EINVAL; + } + while (size > 0) { if (uiop->uio_iovcnt <= 0 || uiop->uio_iov == NULL) return EFBIG; Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 14:42:22 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 25B4C37B402; Mon, 18 Mar 2002 14:42:20 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IMgKP54639; Mon, 18 Mar 2002 14:42:20 -0800 (PST) (envelope-from alfred) Date: Mon, 18 Mar 2002 14:42:20 -0800 (PST) From: Message-Id: <200203182242.g2IMgKP54639@freefall.freebsd.org> To: tim@robbins.dropbear.id.au, alfred@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/36041: mount_smbfs can't cope without password database Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: mount_smbfs can't cope without password database State-Changed-From-To: open->closed State-Changed-By: alfred State-Changed-When: Mon Mar 18 14:41:23 PST 2002 State-Changed-Why: Committed in rev 1.2 of src/contrib/smbfs/lib/smb/ctx.c, will be MFC'd shortly. http://www.freebsd.org/cgi/query-pr.cgi?pr=36041 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 15: 0:49 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F60B37B416 for ; Mon, 18 Mar 2002 15:00:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IN06i57659; Mon, 18 Mar 2002 15:00:06 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Mar 2002 15:00:06 -0800 (PST) Message-Id: <200203182300.g2IN06i57659@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Alfred Perlstein Subject: Re: kern/36038 Reply-To: Alfred Perlstein Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/36038; it has been noted by GNATS. From: Alfred Perlstein To: freebsd-gnats-submit@FreeBSD.org, tim@robbins.dropbear.id.au Cc: Subject: Re: kern/36038 Date: Mon, 18 Mar 2002 14:53:02 -0800 Can you try this delta? Afaik UIO_NOCOPY means don't do anything other than updating the uio as if the data had been copied. Index: kern/subr_mchain.c =================================================================== RCS file: /home/ncvs/src/sys/kern/subr_mchain.c,v retrieving revision 1.4 diff -u -r1.4 subr_mchain.c --- kern/subr_mchain.c 21 Feb 2002 16:23:38 -0000 1.4 +++ kern/subr_mchain.c 18 Mar 2002 22:56:15 -0000 @@ -497,6 +497,8 @@ while (count--) *target++ = *s++; continue; + case MB_NONE: + break; } target += count; } @@ -524,6 +526,20 @@ int mtype, error; mtype = (uiop->uio_segflg == UIO_SYSSPACE) ? MB_MSYSTEM : MB_MUSER; + switch (uiop->uio_segflg) { + case UIO_USERSPACE: + case UIO_USERISPACE: + mtype = MB_MUSER; + break; + case UIO_SYSSPACE: + mtype = MB_MSYSTEM; + break; + case UIO_NOCOPY: + mtype = MB_NONE; + break; + default: + return EINVAL; + } while (size > 0 && uiop->uio_resid) { if (uiop->uio_iovcnt <= 0 || uiop->uio_iov == NULL) return EFBIG; Index: sys/mchain.h =================================================================== RCS file: /home/ncvs/src/sys/sys/mchain.h,v retrieving revision 1.3 diff -u -r1.3 mchain.h --- sys/mchain.h 27 Feb 2002 17:15:50 -0000 1.3 +++ sys/mchain.h 18 Mar 2002 22:59:06 -0000 @@ -113,6 +113,7 @@ #define MB_MINLINE 2 /* use an inline copy loop */ #define MB_MZERO 3 /* bzero(), mb_put_mem only */ #define MB_MCUSTOM 4 /* use an user defined function */ +#define MB_NONE 5 /* don't copy (UIO_NOCOPY) */ struct mbuf; struct mbchain; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 15:40: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D89437B400 for ; Mon, 18 Mar 2002 15:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2INe3777575; Mon, 18 Mar 2002 15:40:03 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Mar 2002 15:40:03 -0800 (PST) Message-Id: <200203182340.g2INe3777575@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: George Mitchell Subject: Re: misc/35350: Can't boot on ASUS TXP Reply-To: George Mitchell Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/35350; it has been noted by GNATS. From: George Mitchell To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: misc/35350: Can't boot on ASUS TXP Date: Mon, 18 Mar 2002 15:30:33 -0800 (PST) I tried a different motherboard (FIC VA-503+) (which works fine in other machines on my network) and the problem did not go away. I finally isolated it to my generic NE2000 network card. Apparently the "ex" driver hangs up the machine when the NE2000 is there. Everything is fine without the NE2000. But now I'm finding that the "sym" driver believes my NCR SCSI card is defective, although it too has been running just fine under 3.4 for more than two years. I built a kernel with the "ncr" driver and without the "sym" driver and got an endless loop of error messages. Any suggestions? -- George Mitchell To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 15:59: 1 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id 38DED37B417; Mon, 18 Mar 2002 15:58:42 -0800 (PST) Received: (from dillon@localhost) by apollo.backplane.com (8.11.6/8.9.1) id g2INwch65873; Mon, 18 Mar 2002 15:58:38 -0800 (PST) (envelope-from dillon) Date: Mon, 18 Mar 2002 15:58:38 -0800 (PST) From: Matthew Dillon Message-Id: <200203182358.g2INwch65873@apollo.backplane.com> To: Eugene Grosbein Cc: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/35969: kernel option PPP_DEFLATE often procudes kernel panics; PPP_BSDCOMP sometimes procudes stalled connections References: <200203160808.g2G880k17109@D00015.dialonly.kemerovo.su> <200203160820.g2G8K1s38158@freefall.freebsd.org> <20020317125834.A419@grosbein.pp.ru> <200203170647.g2H6lQ621576@apollo.backplane.com> <20020318221754.A428@grosbein.pp.ru> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org :I was wrong, your commit wasn't the cause of the panics. :Now I believe I've isolated the moment of breakage. :The system updated (or downgraded) to tag=RELENG_4 date=2002.02.22.00.00.00 :does not panic using PPP_DEFLATE but suffers from stalled connections. :One have to send USR2 to pppd to revive PPP link. :man pppd says: : :SIGUSR2 :... : tion.) : :The system updated to tag=RELENG_4 date=2002.02.22.03.00.00 :quickly panics if PPP_DEFLATE is used. It seems it panics due to :corrupted kernel area. : :There was the only commit to RELENG_4 during this period, :it patched src/lib/libz/infblock.c and src/sys/net/zlib.c :The latter file is used by kernel ppp driver. : :I'd like to investigate this further but I'm definitly not a kernel hacker. :The only workaround I've found is using 'nodeflate' option of pppd. :This effectivly disables usage of deflate compression and eliminates panics :even for kernel built from sources after 2002.02.22.03.00.00 : :Eugene Grosbein Excellent work Eugene! cvs diff -j "RELENG_4:2002/02/22 00:00:00 GMT" -j "RELENG_4:2002/02/22 03:00:00 GMT" Indeed the only change is to the zlib code. Ok, I've spent a little while understanding the code. I believe I found the bug! If you look at around line 3954 you will see this: s->sub.decode.codes = c; s->sub.decode.tl = tl; s->sub.decode.td = td; } ZFREE(z, s->sub.trees.blens); s->mode = CODES; sub.trees is a union with sub.decode, so when s->sub.decode = ... is done, it tromps all over the s->sub.trees elements. Thus this ZFREE is in the wrong place. Plese bring your tree back to the latest -stable and apply the patch I include below, then tell me if it fixes your crashes. -Matt Matthew Dillon Index: zlib.c =================================================================== RCS file: /home/ncvs/src/sys/net/zlib.c,v retrieving revision 1.10.2.1 diff -u -r1.10.2.1 zlib.c --- zlib.c 22 Feb 2002 02:49:31 -0000 1.10.2.1 +++ zlib.c 18 Mar 2002 23:57:59 -0000 @@ -3951,11 +3951,15 @@ r = Z_MEM_ERROR; LEAVE } + /* + * this ZFREE must occur *BEFORE* we mess with sub.decode, because + * sub.trees is union'd with sub.decode. + */ + ZFREE(z, s->sub.trees.blens); s->sub.decode.codes = c; s->sub.decode.tl = tl; s->sub.decode.td = td; } - ZFREE(z, s->sub.trees.blens); s->mode = CODES; case CODES: UPDATE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 16:18:28 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 3B46A37B404; Mon, 18 Mar 2002 16:18:18 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 72B2E5346; Tue, 19 Mar 2002 01:18:15 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: bugbusters@freebsd.org Subject: PR state revision From: Dag-Erling Smorgrav Date: 19 Mar 2002 01:18:15 +0100 Message-ID: Lines: 35 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In light of the controversy and confusion that reign over the precise meaning of the "feedback" state, I would like to suggest the following revision of the Gnats states: open Default state for a new problem report. analyzed The problem is understood and a solution is being sought. suspended Work on this PR has been suspended due to lack of information or resources. feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. patched Patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. closed PR has been resolved or abandoned. The most significant change is the addition of the "patched" state, and the ensuing disambiguation of the "feedback" state. I would also like to encourage the use of the "analyzed" state where appropriate. Adding the "patched" state will require modifying the web search form and script, and doing a sweep to move "feedback" PRs to "patched" where appropriate. I will also create and publish a state diagram documenting the different states and the recommended transitions from one to the other. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 17:57:53 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F17B37B442; Mon, 18 Mar 2002 17:57:30 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J1vUY24116; Mon, 18 Mar 2002 17:57:30 -0800 (PST) (envelope-from des) Date: Mon, 18 Mar 2002 17:57:30 -0800 (PST) From: Message-Id: <200203190157.g2J1vUY24116@freefall.freebsd.org> To: gesivlcars@aol.com, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/31728: Install hangs on: (debug screens last write) modules/(random file) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Install hangs on: (debug screens last write) modules/(random file) State-Changed-From-To: closed->open State-Changed-By: des State-Changed-When: Mon Mar 18 17:56:08 PST 2002 State-Changed-Why: Incorrect close. The /dev/card0 error message is not pertinent as the computer in question does not have PC-Card slots. http://www.freebsd.org/cgi/query-pr.cgi?pr=31728 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 18:50:42 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C92937B438 for ; Mon, 18 Mar 2002 18:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J2o3D86017; Mon, 18 Mar 2002 18:50:03 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Mar 2002 18:50:03 -0800 (PST) Message-Id: <200203190250.g2J2o3D86017@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Steve McNelly Subject: Re: kern/35354: 4.4/4.5 FreeBSD causes hard lock after 20+ hours of uptime Reply-To: Steve McNelly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/35354; it has been noted by GNATS. From: Steve McNelly To: freebsd-gnats-submit@FreeBSD.org, ntoomey@chesapeake.net Cc: Subject: Re: kern/35354: 4.4/4.5 FreeBSD causes hard lock after 20+ hours of uptime Date: Mon, 18 Mar 2002 21:45:32 -0500 I Was Having The Same Problem After Upgrading From 4.3-STABLE To 4.5-STABLE. When The Uptime Would Near 24 Hours I Would Get A Kernel Panic And A Reboot. It Seems To Be inet6 Related. When I Compile The Kernel Without "options inet6" Everthing Returns To Normal. I Have 2 3Com 3c905B-TX Nics Installed. Here's What I Got From The Dump. If You Need More Info Let Me Know. SMP 2 cpus IdlePTD at phsyical address 0x00439000 initial pcb at physical address 0x0037f2c0 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode mp_lock = 00000002; cpuid = 0; lapic.id = 01000000 fault virtual address = 0x6210ccc2 fault code = supervisor read, page not present instruction pointer = 0x8:0xc01bf049 stack pointer = 0x10:0xff807f34 frame pointer = 0x10:0xff807f3c code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = Idle interrupt mask = <- SMP: XXX trap number = 12 panic: page fault mp_lock = 00000002; cpuid = 0; lapic.id = 01000000 boot() called on cpu#0 syncing disks... 44 38 33 30 27 25 23 20 18 14 11 7 6 3 2 1 done Uptime: 23h55m33s dumping to dev #da/0x20001, offset 1327128 dump 351 350 349 348 347 346 345 344 343 342 341 340 339 338 337 336 335 334 333 332 331 330 329 328 327 326 325 324 323 322 321 320 319 318 317 316 315 314 313 312 311 310 309 308 307 306 305 304 303 302 301 300 299 298 297 296 295 294 293 292 291 290 289 288 287 286 285 284 283 282 281 280 279 278 277 276 275 274 273 272 271 270 269 268 267 266 265 264 263 262 261 260 259 258 257 256 255 254 253 252 251 250 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 231 230 229 228 227 226 225 224 223 222 221 220 219 218 217 216 215 214 213 212 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 194 193 192 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 175 174 173 172 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 156 155 154 153 152 151 150 149 148 147 146 145 144 143 142 141 140 139 138 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 487 if (dumping++) { (kgdb) where #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 #1 0xc01730a3 in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:316 #2 0xc0173515 in panic (fmt=0xc032ebf9 "%s") at /usr/src/sys/kern/kern_shutdown.c:595 #3 0xc02d8ec1 in trap_fatal (frame=0xff807ef4, eva=1645268162) at /usr/src/sys/i386/i386/trap.c:966 #4 0xc02d8b2d in trap_pfault (frame=0xff807ef4, usermode=0, eva=1645268162) at /usr/src/sys/i386/i386/trap.c:859 #5 0xc02d865b in trap (frame={tf_fs = -955187176, tf_es = 1645215760, tf_ds = 16, tf_edi = 1645268128, tf_esi = 1645268128, tf_ebp = -8356036, tf_isp = -8356064, tf_ebx = -1070059486, tf_edx = 5, tf_ecx = 4, tf_eax = 65, tf_trapno = 12, tf_err = 0, tf_eip = -1071910839, tf_cs = 8, tf_eflags = 2163206, tf_esp = -955164672, tf_ss = -955164672}) at /usr/src/sys/i386/i386/trap.c:458 #6 0xc01bf049 in if_name (ifp=0x6210cca0) at /usr/src/sys/net/net_osdep.c:62 #7 0xc01e0d15 in in6_purgeaddr (ifa=0xc7115800) at /usr/src/sys/netinet6/in6.c:1185 #8 0xc01ee9a8 in nd6_timer (ignored_arg=0x0) at /usr/src/sys/netinet6/nd6.c:580 #9 0xc0179091 in softclock () at /usr/src/sys/kern/kern_timeout.c:131 Steve McNelly stevemcn@snics.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 19: 0:15 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DEE4E37B402 for ; Mon, 18 Mar 2002 19:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J302o96630; Mon, 18 Mar 2002 19:00:02 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Mar 2002 19:00:02 -0800 (PST) Message-Id: <200203190300.g2J302o96630@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: phiber@radicalmedia.com Subject: Re: kern/32124: Cannot set 128 bit wep key on prism2 cards Reply-To: phiber@radicalmedia.com Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/32124; it has been noted by GNATS. From: phiber@radicalmedia.com To: freebsd-gnats-submit@FreeBSD.org, nsayer@quack.kfu.com Cc: brooks@FreeBSD.org Subject: Re: kern/32124: Cannot set 128 bit wep key on prism2 cards Date: Mon, 18 Mar 2002 21:51:56 -0500 Not sure why you closed this problem without so much as a response to my comments, but I just cvs updated to STABLE, and the exact problem as I just described persists still. So it isn't fixed in STABLE. Can you offer any comments/suggestions? -Mark Abene To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 20: 0:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AA83337B405 for ; Mon, 18 Mar 2002 20:00:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J409b62629; Mon, 18 Mar 2002 20:00:09 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Mar 2002 20:00:09 -0800 (PST) Message-Id: <200203190400.g2J409b62629@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: kern/36056: atapicd driver won't boot with cdr-cdroms when not specifying pio mode Reply-To: Giorgos Keramidas Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/36056; it has been noted by GNATS. From: Giorgos Keramidas To: Claes Ndstin Cc: bug-followup@freebsd.org Subject: Re: kern/36056: atapicd driver won't boot with cdr-cdroms when not specifying pio mode Date: Tue, 19 Mar 2002 05:55:16 +0200 (EET) Claes Ndstin wrote: > FreeBSD won't boot on systems with atapi cd burners when using autodetect > in the bios settings. It'll work, however if you set the device as an CD > and the pio mode ... looking at the dmesg it'll say that it uses pio4 > tough. This, happens on my Asus A7V133-VM (1Ghz AMD Duron w 256Mb ram) > and a Hewlett-Packard CD-Writer Plus 8200 running as Secondary Master... > still, I had the same problem on my Abit VP6 with an Intel P3 933Mhz with > the same burner. > > >How-To-Repeat: > > Just set the bios to autodetect, and this will happen For what it's worth, I'm using an atapi cd-burner. It's one of the Phillips cdrw800 series. I've always used 'auto' as the disk types in BIOS, and my dmesg shows the burner as expected: hades:~$ dmesg | grep acd0 acd0: CD-RW at ata1-master PIO4 Could be that this hardware combination is causing your troubles... Giorgos Keramidas FreeBSD Documentation Project keramida@{freebsd.org,ceid.upatras.gr} http://www.FreeBSD.org/docproj/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 20:30:14 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B323437B400 for ; Mon, 18 Mar 2002 20:30:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J4U6791537; Mon, 18 Mar 2002 20:30:06 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Mar 2002 20:30:06 -0800 (PST) Message-Id: <200203190430.g2J4U6791537@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: kern/36008: [PATCH] Critical PERFMON fix for DEVFS users Reply-To: Giorgos Keramidas Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/36008; it has been noted by GNATS. From: Giorgos Keramidas To: Hiten Pandya Cc: bug-followup@freebsd.org, , Subject: Re: kern/36008: [PATCH] Critical PERFMON fix for DEVFS users Date: Tue, 19 Mar 2002 06:28:05 +0200 (EET) Add to audit trail: Date: Sun, 17 Mar 2002 07:16:57 -0800 From: Murray Stokely Subject: pending/36011: Re: [PATCH] Critical PERFMON fix for DEVFS users On Sun, Mar 17, 2002 at 02:40:03PM +0000, Hiten Pandya wrote: > This PR has be opened to address a pretty critical issue. The > PERFMON driver is kinda broken for people using DEVFS because of > some device initialisation error. This is far from something I would call "critical". Please reserve your usage of that word. - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 21:20: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 89C3E37B416 for ; Mon, 18 Mar 2002 21:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J5K1720742; Mon, 18 Mar 2002 21:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A76A537B402 for ; Mon, 18 Mar 2002 21:17:01 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J5H1o20394; Mon, 18 Mar 2002 21:17:01 -0800 (PST) (envelope-from nobody) Message-Id: <200203190517.g2J5H1o20394@freefall.freebsd.org> Date: Mon, 18 Mar 2002 21:17:01 -0800 (PST) From: Nick Jennings To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/36081: no dependencies filed for package p5-XML-Simple (when using pkg_add -r) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36081 >Category: misc >Synopsis: no dependencies filed for package p5-XML-Simple (when using pkg_add -r) >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Mar 18 21:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Nick Jennings >Release: 4.5-RELEASE >Organization: >Environment: FreeBSD punishment.xrl.nkj 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Mon Jan 28 14:31:56 GMT 2002 murray@builder.freebsdmall.com:/usr/src/sys/compile/GENERIC i386 >Description: command: pkg_add -r p5-XML-Simple installed XML-Simple just fine, however, does not install it's dependency, which is XML-Parser (XML-Parser depends on expat). Using the port: /usr/ports/textproc/p5-XML-Simple The dependencies install and it works. pkg_info -r p5-XML-Simple-1.06 lists no dependencies >How-To-Repeat: pkg_add -r p5-XML-Simple (Then try to use something that uses XML::Simple) >Fix: properly enter the dependencies for pkg's (I have a feeling other pkg's have mis-filed or non-existant dependencies). >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 21:29:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1858737B400; Mon, 18 Mar 2002 21:29:08 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J5T8u21853; Mon, 18 Mar 2002 21:29:08 -0800 (PST) (envelope-from cjc) Date: Mon, 18 Mar 2002 21:29:08 -0800 (PST) From: Message-Id: <200203190529.g2J5T8u21853@freefall.freebsd.org> To: cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org, re@FreeBSD.org Subject: Re: kern/35985: swap double mount Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: swap double mount Responsible-Changed-From-To: freebsd-bugs->re Responsible-Changed-By: cjc Responsible-Changed-When: Mon Mar 18 21:27:39 PST 2002 Responsible-Changed-Why: This might be a sysinstall(8) issue or could be a more general issue with the swapon(2) call. Someone who knows sysinstall(8) needs to figure that out. Pass to re@ as the sysinstall(8) maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=35985 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 21:58:20 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E63AF37B405; Mon, 18 Mar 2002 21:58:17 -0800 (PST) Received: (from mi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J5wHJ26396; Mon, 18 Mar 2002 21:58:17 -0800 (PST) (envelope-from mi) Date: Mon, 18 Mar 2002 21:58:17 -0800 (PST) From: Message-Id: <200203190558.g2J5wHJ26396@freefall.freebsd.org> To: mi@FreeBSD.org, freebsd-bugs@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: bin/34628: pkg-routines ignore the recorded md5 checksums Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: pkg-routines ignore the recorded md5 checksums Responsible-Changed-From-To: freebsd-bugs->sobomax Responsible-Changed-By: mi Responsible-Changed-When: Mon Mar 18 21:56:43 PST 2002 Responsible-Changed-Why: Please resubmit this patch as a PR and assign to me, so that I'll review/commit it when I have a time. -Maxim http://www.freebsd.org/cgi/query-pr.cgi?pr=34628 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 22:15:24 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F31AF37B417; Mon, 18 Mar 2002 22:15:08 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J6F8J32896; Mon, 18 Mar 2002 22:15:08 -0800 (PST) (envelope-from alfred) Date: Mon, 18 Mar 2002 22:15:08 -0800 (PST) From: Message-Id: <200203190615.g2J6F8J32896@freefall.freebsd.org> To: hiten@uk.FreeBSD.org, alfred@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36008: [PATCH] PERFMON fix for DEVFS users Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] PERFMON fix for DEVFS users State-Changed-From-To: open->closed State-Changed-By: alfred State-Changed-When: Mon Mar 18 22:14:48 PST 2002 State-Changed-Why: Attached delta has been committed. thank you. http://www.freebsd.org/cgi/query-pr.cgi?pr=36008 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 22:40: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 36C2D37B400 for ; Mon, 18 Mar 2002 22:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J6e3H37212; Mon, 18 Mar 2002 22:40:03 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Mar 2002 22:40:03 -0800 (PST) Message-Id: <200203190640.g2J6e3H37212@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Kris Kennaway Subject: Re: misc/36081: no dependencies filed for package p5-XML-Simple (when using pkg_add -r) Reply-To: Kris Kennaway Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/36081; it has been noted by GNATS. From: Kris Kennaway To: Nick Jennings Cc: freebsd-gnats-submit@FreeBSD.org, andrew@ugh.net.au Subject: Re: misc/36081: no dependencies filed for package p5-XML-Simple (when using pkg_add -r) Date: Mon, 18 Mar 2002 22:36:54 -0800 --UugvWAfsgieZRqgk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 18, 2002 at 09:17:01PM -0800, Nick Jennings wrote: >=20 > >Number: 36081 > >Category: misc > >Synopsis: no dependencies filed for package p5-XML-Simple (when us= ing pkg_add -r) > >Confidential: no > >Severity: serious > >Priority: high > >Responsible: freebsd-bugs > >State: open > >Quarter: =20 > >Keywords: =20 > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Mon Mar 18 21:20:01 PST 2002 > >Closed-Date: > >Last-Modified: > >Originator: Nick Jennings > >Release: 4.5-RELEASE > >Organization: > >Environment: > FreeBSD punishment.xrl.nkj 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Mon Jan 28= 14:31:56 GMT 2002 murray@builder.freebsdmall.com:/usr/src/sys/compile/= GENERIC i386 >=20 > >Description: > command: pkg_add -r p5-XML-Simple > installed XML-Simple just fine, however, does not install it's dependency= , which is XML-Parser (XML-Parser depends on expat). >=20 > Using the port: /usr/ports/textproc/p5-XML-Simple > The dependencies install and it works. That's because it's a BUILD_DEPENDS and not a RUN_DEPENDS (the former is supposed to be for packages which are only required to build, not run the package). Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /usr/home/ncvs/ports/textproc/p5-XML-Simple/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- Makefile 17 Jan 2002 15:28:29 -0000 1.3 +++ Makefile 19 Mar 2002 06:36:15 -0000 @@ -14,7 +14,7 @@ MAINTAINER=3D andrew@ugh.net.au -BUILD_DEPENDS=3D ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}= /XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser +RUN_DEPENDS=3D ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}= /XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser PERL_CONFIGURE=3D YES Kris --UugvWAfsgieZRqgk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8ltyGWry0BWjoQKURAojpAJ4od7jLNqXh0QXxMtY15zns7pP6CgCgxesk A0a6Guc0vtyYSc0Ridnk5VE= =b1pf -----END PGP SIGNATURE----- --UugvWAfsgieZRqgk-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 23:13:22 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 251F437B416; Mon, 18 Mar 2002 23:13:20 -0800 (PST) Received: (from brooks@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J7DKu47379; Mon, 18 Mar 2002 23:13:20 -0800 (PST) (envelope-from brooks) Date: Mon, 18 Mar 2002 23:13:20 -0800 (PST) From: Message-Id: <200203190713.g2J7DKu47379@freefall.freebsd.org> To: nsayer@quack.kfu.com, brooks@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/32124: Cannot set 128 bit wep key on prism2 (wi0) cards Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Cannot set 128 bit wep key on prism2 (wi0) cards State-Changed-From-To: closed->open State-Changed-By: brooks State-Changed-When: Mon Mar 18 23:12:08 PST 2002 State-Changed-Why: Apparently this isn't fixed for at least one person. http://www.freebsd.org/cgi/query-pr.cgi?pr=32124 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 18 23:20: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F4C437B400 for ; Mon, 18 Mar 2002 23:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J7K2848468; Mon, 18 Mar 2002 23:20:02 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Mar 2002 23:20:02 -0800 (PST) Message-Id: <200203190720.g2J7K2848468@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brooks Davis Subject: Re: kern/32124: Cannot set 128 bit wep key on prism2 cards Reply-To: Brooks Davis Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/32124; it has been noted by GNATS. From: Brooks Davis To: phiber@radicalmedia.com Cc: freebsd-gnats-submit@FreeBSD.org, nsayer@quack.kfu.com, brooks@FreeBSD.org Subject: Re: kern/32124: Cannot set 128 bit wep key on prism2 cards Date: Mon, 18 Mar 2002 23:12:58 -0800 On Mon, Mar 18, 2002 at 09:51:56PM -0500, phiber@radicalmedia.com wrote: > Not sure why you closed this problem without so much as a response to my > comments, but I just cvs updated to STABLE, and the exact problem as I just > described persists still. So it isn't fixed in STABLE. > Can you offer any comments/suggestions? Sorry, I'll heard from someone else that it was fixed. Apparently not. I'll reopen it. -- Brooks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 1:40:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 99BC237B402 for ; Tue, 19 Mar 2002 01:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J9e2l82658; Tue, 19 Mar 2002 01:40:02 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Mar 2002 01:40:02 -0800 (PST) Message-Id: <200203190940.g2J9e2l82658@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: kern/34801 Reply-To: Sheldon Hearn Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/34801; it has been noted by GNATS. From: Sheldon Hearn To: AMAKAWA Shuhei Cc: obrien@FreeBSD.org, bug-followup@freebsd.org Subject: Re: kern/34801 Date: Tue, 19 Mar 2002 11:36:00 +0200 On Tue, 19 Mar 2002 09:04:32 GMT, AMAKAWA Shuhei wrote: > Incidentally, are you interested in looking at > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=kern=34801 Seems odd to me that nobody seems to have called for comment from David O'Brien who made the change that bumped net.inet.tcp.recvspace to 2^16. David, lots of IPFilter users are complaining that this value breaks IPFilter, because that software treats the window size as a 16-bit value, which can't represent anything more than 65535. However, we don't really want to drop the value to 65535, because we really want it to be a multiple of PAGE_SIZE. So various folks have suggested dropping it back down to 32768. In your commit log for the change, you said that dillon had agreed in principle, but only "on the 32k level". If dillon had reservations about "the 64k level", can you remember why you ignored them? Alternatively, are you happy with us just going ahead and dropping the value for the sake of software that never dreamed the default would become so large? Seems pretty sane to me, and it's still an improvement over 16k. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 2:10: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B89337B41B for ; Tue, 19 Mar 2002 02:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JAA1s91007; Tue, 19 Mar 2002 02:10:01 -0800 (PST) (envelope-from gnats) Received: from chk.phattydomain.com (12-225-230-182.client.attbi.com [12.225.230.182]) by hub.freebsd.org (Postfix) with ESMTP id 0281537B400 for ; Tue, 19 Mar 2002 02:04:16 -0800 (PST) Received: (from chuck@localhost) by chk.phattydomain.com (8.11.6/8.11.6) id g2JA4C768907; Tue, 19 Mar 2002 02:04:12 -0800 (PST) (envelope-from chuck) Message-Id: <200203191004.g2JA4C768907@chk.phattydomain.com> Date: Tue, 19 Mar 2002 02:04:12 -0800 (PST) From: chkno@dork.com Reply-To: chkno@dork.com To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/36085: burncd: mode2 + stdin Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36085 >Category: bin >Synopsis: burncd: mode2 + stdin >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 Mar 19 02:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: chkno >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD chk.phattydomain.com 4.5-STABLE FreeBSD 4.5-STABLE #0: Thu Mar 7 15:30:43 PST 2002 su@chk.phattydomain.com:/usr/obj/usr/src/sys/CHK i386 CVSup'd Mar 7 11:21:24 PST 2002. >Description: burncd burns incorrectly when a mode2 track is read from stdin. >How-To-Repeat: # dd if=/dev/zero of=testfile bs=10240 count=1024 1024+0 records in 1024+0 records out 10485760 bytes transferred in 0.713397 secs (14698351 bytes/sec) # ls -l testfile -rw-r--r-- 1 root chuck 10485760 Mar 19 01:21 testfile # burncd blank blanking CD, please wait.. # burncd mode2 testfile fixate next writeable LBA 0 writing from file testfile size 10240 KB written this track 10240 KB (100%) total 10240 KB fixating CD, please wait.. # # burncd blank blanking CD, please wait.. # cat testfile | burncd mode2 - fixate next writeable LBA 0 writing from stdin written this track 11680 KB total 11680 KB fixating CD, please wait.. # >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 2:30: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 42DF437B405 for ; Tue, 19 Mar 2002 02:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JAU3q15861; Tue, 19 Mar 2002 02:30:03 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Mar 2002 02:30:03 -0800 (PST) Message-Id: <200203191030.g2JAU3q15861@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Søren Schmidt Subject: Re: bin/36085: burncd: mode2 + stdin Reply-To: Søren Schmidt Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/36085; it has been noted by GNATS. From: Søren Schmidt To: chkno@dork.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/36085: burncd: mode2 + stdin Date: Tue, 19 Mar 2002 11:25:33 +0100 (CET) It seems chkno@dork.com wrote: > > >Number: 36085 > >Category: bin > >Synopsis: burncd: mode2 + stdin > >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 Mar 19 02:10:01 PST 2002 > >Closed-Date: > >Last-Modified: > >Originator: chkno > >Release: FreeBSD 4.5-STABLE i386 > >Organization: > >Environment: > System: FreeBSD chk.phattydomain.com 4.5-STABLE FreeBSD 4.5-STABLE #0: Thu Mar 7 15:30:43 PST 2002 su@chk.phattydomain.com:/usr/obj/usr/src/sys/CHK i386 You should definitly try upgrading, that ATA driver with utils have changed *alot*. -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 2:33:20 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6EEAC37B417; Tue, 19 Mar 2002 02:33:17 -0800 (PST) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JAS2e12370; Tue, 19 Mar 2002 02:28:02 -0800 (PST) (envelope-from keramida) Date: Tue, 19 Mar 2002 02:28:02 -0800 (PST) From: Message-Id: <200203191028.g2JAS2e12370@freefall.freebsd.org> To: keramida@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35999: add support for general flash disks to scsi_da.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Old Synopsis: New Synopsis: add support for general flash disks to scsi_da.c Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Tue Mar 19 02:21:57 PST 2002 Responsible-Changed-Why: This seems like something freebsd-bugs should handle. To the submitter: This change request didn't have a Synopsis line, it's category line was empty too. Please do take the time to fill properly the fields of the problem report. Otherwise there's non guarantee that someone will see your problem report in time. A lot of people use the Synopsis to choose which problem report they'll hunt down next. Thanks for your submission though, keep the good work coming :) http://www.freebsd.org/cgi/query-pr.cgi?pr=35999 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 2:34:24 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from tao.org.uk (genius.tao.org.uk [212.135.162.51]) by hub.freebsd.org (Postfix) with ESMTP id 53AE737B42F; Tue, 19 Mar 2002 02:34:15 -0800 (PST) Received: by tao.org.uk (Postfix, from userid 100) id 5F2764A0; Tue, 19 Mar 2002 10:33:09 +0000 (GMT) Date: Tue, 19 Mar 2002 10:33:09 +0000 From: Josef Karthauser To: Giorgos Keramidas Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/36008: [PATCH] Critical PERFMON fix for DEVFS users Message-ID: <20020319103309.GB60451@genius.tao.org.uk> References: <200203190430.g2J4U6791537@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cvVnyQ+4j833TQvp" Content-Disposition: inline In-Reply-To: <200203190430.g2J4U6791537@freefall.freebsd.org> User-Agent: Mutt/1.3.28i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --cvVnyQ+4j833TQvp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 18, 2002 at 08:30:06PM -0800, Giorgos Keramidas wrote: > Date: Sun, 17 Mar 2002 07:16:57 -0800 > From: Murray Stokely > Subject: pending/36011: Re: [PATCH] Critical PERFMON fix for DEVFS users > =20 > On Sun, Mar 17, 2002 at 02:40:03PM +0000, Hiten Pandya wrote: > > This PR has be opened to address a pretty critical issue. The > > PERFMON driver is kinda broken for people using DEVFS because of > > some device initialisation error. > =20 > This is far from something I would call "critical". Please reserve > your usage of that word. > =20 > - Murray He asked me to change it yesterday - it was submitted in 'critical' in error. Joe --cvVnyQ+4j833TQvp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjyXE+QACgkQXVIcjOaxUBYxqgCgw0TUJm7A+k+w5aF+yxy7AFQj rmUAoIDDyTlFnnowJhTgZ4yGFGKUxl1K =Qtii -----END PGP SIGNATURE----- --cvVnyQ+4j833TQvp-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 2:50:17 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CF9F537B404 for ; Tue, 19 Mar 2002 02:50:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JAo0G39291; Tue, 19 Mar 2002 02:50:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4439837B404 for ; Tue, 19 Mar 2002 02:40:51 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JAepA20274; Tue, 19 Mar 2002 02:40:51 -0800 (PST) (envelope-from nobody) Message-Id: <200203191040.g2JAepA20274@freefall.freebsd.org> Date: Tue, 19 Mar 2002 02:40:51 -0800 (PST) From: Steven Enderle To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/36086: Kerberos Problem/Handbook wrong/Followup to pr34401 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36086 >Category: misc >Synopsis: Kerberos Problem/Handbook wrong/Followup to pr34401 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Mar 19 02:50:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Steven Enderle >Release: 4.5-RELEASE (p-1) >Organization: mdn Hübner GmbH >Environment: From 4.4 through recent Releases (4.5-p2) >Description: I already submitted a pr which i can not submit a follow up to because our mail server has no reverse domain name and your mailserver does not accept any emails from mail servers without reverse names (What ever!! That sucks!). There is also no way to do that via web interface (You can submit a pr but not submit any followups! Its pr34401. Now, about the kerberos problem, i had: The Handbook says, the srvtab file for the clients needs to be /etc/kerberosIV/srvtab. This is the way it is done in OpenBSD. the ksrvutil manpage says: ... In all cases, the default file used is KEY_FILE as defined in krb.h unless this is overridden by the -f option. ... # grep KEY_FILE /usr/include/krb.h # -> It couldn't find KEY_FILE anywhere in any header. But ok. I don't care. But finally the freebsd kerberos utilitys use /etc/srvtab instead of /etc/kerberosIV/srvtab. # truss ksrvutil list ... stat("/etc/srvtab",0xbfbfdfec) = 0 (0x0) open("/etc/srvtab",0,00) = 3 (0x3) ... etc >How-To-Repeat: Try to install kerberosIV with help of the FreeBSD handbook (did anyone ever do this at all?) >Fix: a) change the handbook to say /etc/srvtab b) change the source ... this is the prefered way (if you want to get me nuts because i have to mv all those srvtabs again from /etc/kerberosIV to /etc/ and back again) and fix your mail system (@#!\&%) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 3:10:16 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C87637B416 for ; Tue, 19 Mar 2002 03:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JBA4747641; Tue, 19 Mar 2002 03:10:04 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Mar 2002 03:10:04 -0800 (PST) Message-Id: <200203191110.g2JBA4747641@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andrew Subject: Re: misc/36081: no dependencies filed for package p5-XML-Simple (when using pkg_add -r) Reply-To: Andrew Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/36081; it has been noted by GNATS. From: Andrew To: Kris Kennaway Cc: Nick Jennings , Subject: Re: misc/36081: no dependencies filed for package p5-XML-Simple (when using pkg_add -r) Date: Tue, 19 Mar 2002 22:07:35 +1100 (EST) On Mon, 18 Mar 2002, Kris Kennaway wrote: > That's because it's a BUILD_DEPENDS and not a RUN_DEPENDS (the former > is supposed to be for packages which are only required to build, not > run the package). Oops - I did know this - I just stuffed up. I'm happy for this to be committed. Thanks, Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 3:10:23 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 537C437B404 for ; Tue, 19 Mar 2002 03:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JBA2M47604; Tue, 19 Mar 2002 03:10:02 -0800 (PST) (envelope-from gnats) Received: from ic.vrn.ru (ic.vrn.ru [195.98.64.65]) by hub.freebsd.org (Postfix) with ESMTP id CA3ED37B417 for ; Tue, 19 Mar 2002 03:06:43 -0800 (PST) Received: from relay.nvnpp.vrn.ru ([195.98.93.102]) by ic.vrn.ru (8.11.6/8.11.1) with ESMTP id g2JB6bH33276 for ; Tue, 19 Mar 2002 14:06:38 +0300 (MSK) (envelope-from gpr@nvnpp.vrn.ru) Received: from nvnpp.vrn.ru by relay.nvnpp.vrn.ru with SMTP (MDaemon.v3.1.0.R) for ; Tue, 19 Mar 2002 14:06:15 +0300 Received: from fbsd.nvnpp.vrn.ru by nvnpp.vrn.ru with SMTP (MDaemon.PRO.v5.0.4.R) for ; Tue, 19 Mar 2002 14:06:07 +0300 Received: from gpr by fbsd.nvnpp.vrn.ru with local (Exim 3.33 #1) id 16nHRP-0004iN-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 19 Mar 2002 14:06:07 +0300 Message-Id: Date: Tue, 19 Mar 2002 14:06:07 +0300 From: Gennady Proskurin Reply-To: Gennady Proskurin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/36088: [patch] mount_nfs loads "nfs" module instead of "nfsclient" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36088 >Category: bin >Synopsis: [patch] mount_nfs loads "nfs" module instead of "nfsclient" >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 Mar 19 03:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gennady Proskurin >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD gpr.nvnpp.lan 5.0-CURRENT FreeBSD 5.0-CURRENT #31: Mon Mar 19 09:59:59 MSK 2002 gpr@gpr.nvnpp.lan:/usr/obj/usr/src/sys/gpr i386 >Description: mount_nfs(8) tries to load "nfs" module instead "nfs_client", if no NFS filesystem module in kernel >How-To-Repeat: - Make sure, that kernel doesn't support nfs VFS (compiled without NFS and no nfsclient module loaded) - Try to mount any filesystem using mount_nfs Result: nfs: vfsload(nfs): No such file or directory >Fix: --- src/sbin/mount_nfs/mount_nfs.c.orig Tue Mar 19 13:19:05 2002 +++ src/sbin/mount_nfs/mount_nfs.c Tue Mar 19 13:32:55 2002 @@ -437,9 +437,9 @@ (void)checkpath(name, mntpath); error = getvfsbyname("nfs", &vfc); - if (error && vfsisloadable("nfs")) { - if(vfsload("nfs")) - err(EX_OSERR, "vfsload(nfs)"); + if (error && vfsisloadable("nfsclient")) { + if(vfsload("nfsclient")) + err(EX_OSERR, "vfsload(nfsclient)"); endvfsent(); /* clear cache */ error = getvfsbyname("nfs", &vfc); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 4:40: 7 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F1C7837B404 for ; Tue, 19 Mar 2002 04:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JCe1R75707; Tue, 19 Mar 2002 04:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E5CD937B402 for ; Tue, 19 Mar 2002 04:35:42 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JCZgo74494; Tue, 19 Mar 2002 04:35:42 -0800 (PST) (envelope-from nobody) Message-Id: <200203191235.g2JCZgo74494@freefall.freebsd.org> Date: Tue, 19 Mar 2002 04:35:42 -0800 (PST) From: Christoph Sold To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/36095: cd9660_vfsops.c: cd9660_vget_internal() kernel panic, box reboots Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36095 >Category: kern >Synopsis: cd9660_vfsops.c: cd9660_vget_internal() kernel panic, box reboots >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 19 04:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Christoph Sold >Release: FreeBSD 4.5-RC2 #0: Thu Jan 24 >Organization: DB Systems >Environment: FreeBSD protect.the.innocent 4.5-RC2 FreeBSD 4.5-RC2 #0: Thu Jan 24 15:32:35 CET 2002 soc@ffms805.davit.db.de:/usr/src/sys/compile/FFMS805 i386 >Description: Mount a defective CD-Rom, read from files listed in the directory but missing from he disc. Mar 19 13:19:05 ffms805 /kernel: fhtovp: lbn exceed volume space 374 Mar 19 13:19:05 ffms805 last message repeated 13 times Mar 19 13:19:05 PTI /kernel: fhtovp: lbn exceed volume space 375 Mar 19 13:19:05 PTI last message repeated 15 times Mar 19 13:19:05 PTI /kernel: fhtovp: lbn exceed volume space 376 Mar 19 13:19:05 PTI last message repeated 15 times Panic, reboot. >How-To-Repeat: Mount a defective CD-ROM, read from files present in the directory structure, but not written. (Yes, the CD _is_ defective. Nonetheless the machine shouldn't panic in this situation.) >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 6:10:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F3DD837B400 for ; Tue, 19 Mar 2002 06:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JEA1C10145; Tue, 19 Mar 2002 06:10:01 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Mar 2002 06:10:01 -0800 (PST) Message-Id: <200203191410.g2JEA1C10145@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ian Dowse Subject: Re: bin/36088: [patch] mount_nfs loads "nfs" module instead of "nfsclient" Reply-To: Ian Dowse Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/36088; it has been noted by GNATS. From: Ian Dowse To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/36088: [patch] mount_nfs loads "nfs" module instead of "nfsclient" Date: Tue, 19 Mar 2002 14:05:16 +0000 In message , Gennady Proskurin writes: >mount_nfs(8) tries to load "nfs" module instead "nfs_client", if no >NFS filesystem module in kernel This should work fine, because the "nfsclient.ko" file contains a module called "nfs": > kldxref -d /boot/kernel/nfsclient.ko /boot/kernel/nfsclient.ko module nfs interface nfs.1 Maybe your /boot/kernel/linker.hints file got lost? When you try to load "nfs", the kernel is supposed to look it up in linker.hints and determine that the module exists in nfsclient.ko. It certainly works for me, although this is on a -CURRENT that is a few weeks old: temp1# kldstat Id Refs Address Size Name 1 1 0xc0100000 29cb64 kernel temp1# mount_nfs synge:/usr/local /mnt temp1# kldstat Id Refs Address Size Name 1 2 0xc0100000 29cb64 kernel 2 1 0xc133d000 16000 nfsclient.ko temp1# df /mnt Filesystem 1K-blocks Used Avail Capacity Mounted on synge:/usr/local 2540782 1809164 528356 77% /mnt The linker.hints file should be automatically generated when you install the modules. Can this be closed? Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 6:50:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8215537B402; Tue, 19 Mar 2002 06:50:11 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JEoBg18592; Tue, 19 Mar 2002 06:50:11 -0800 (PST) (envelope-from des) Date: Tue, 19 Mar 2002 06:50:11 -0800 (PST) From: Message-Id: <200203191450.g2JEoBg18592@freefall.freebsd.org> To: iovtchev@aha.ru, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/15040: Installation problems with 3.x FreeBSD Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Installation problems with 3.x FreeBSD State-Changed-From-To: feedback->closed State-Changed-By: des State-Changed-When: Tue Mar 19 06:50:10 PST 2002 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=15040 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 7:46:15 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from drhi.net (pk45.dhcp.adsl.tpnet.pl [217.98.30.45]) by hub.freebsd.org (Postfix) with SMTP id 262F037B405 for ; Tue, 19 Mar 2002 07:45:57 -0800 (PST) Reply-To: biuro@drhi.net From: biuro@drhi.net To: bugs@FreeBSD.ORG Subject: SUKCES - baza e-mail firm Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Date: Tue, 19 Mar 2002 16:46:14 +0100 Message-Id: <20020319154557.262F037B405@hub.freebsd.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Szanowni Panstwo Proponujemy Panstwu najwieksza baze mailowa polskich firm i przedsiebiorstw, ktora zawiera ponad 100.000 adresow e-mail za jedyne 499,- pln. E-mailowa masowa wysylka ofert - jest jedna z najtanszych, najskuteczniejszych i natychmiast dzialajacych form reklamy, pomagajaca nawiazac cenne kontakty handlowe. Ponad 100.000 wyslanych listow e-mail przypomina swoja iloscia naklad duzej gazety. Wiecej informacji na naszej stronie: http://www.drhi.net Jesli nie chca Panstwo otrzymywac w przyszlosci informacji od nas prosimy o wyslanie pustego maila na adres wypisz@drhi.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 8:18:47 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mailout08.sul.t-online.com (mailout08.sul.t-online.com [194.25.134.20]) by hub.freebsd.org (Postfix) with ESMTP id 0232537B405 for ; Tue, 19 Mar 2002 08:18:31 -0800 (PST) Received: from fwd10.sul.t-online.de by mailout08.sul.t-online.com with smtp id 16nMFE-0002pi-0G; Tue, 19 Mar 2002 17:13:52 +0100 Received: from gargamel.hqd-internal (510095183908-0001@[217.235.125.56]) by fmrl10.sul.t-online.com with esmtp id 16nMF7-0Nlu8uC; Tue, 19 Mar 2002 17:13:45 +0100 Received: from lilith (lilith.hqd-internal [192.168.2.10]) by gargamel.hqd-internal (Postfix) with ESMTP id BC8F77E for ; Tue, 19 Mar 2002 17:12:57 +0100 (CET) Received: by lilith (Postfix, from userid 1000) id 2F41856B4D; Tue, 19 Mar 2002 17:13:44 +0100 (CET) Date: Tue, 19 Mar 2002 17:13:44 +0100 From: Gerhard =?iso-8859-15?Q?H=E4ring?= To: freebsd-bugs@FreeBSD.ORG Subject: Having trouble submitting with send_pr Message-ID: <20020319161343.GA1235@lilith.hqd-internal> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline User-Agent: Mutt/1.5.0i Organization: People's Front of Judea X-Sender: 510095183908-0001@t-dialin.net Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, I'm having a hard time with send_pr. I've tried several times to submit a maintainer update for a port, but all the mails send_pr sends seem to disappear in the digital nirvana. I receive no confirmation email, no bounces, no nothing. So I just submitted it with the web interface again. I'm using Postfix and I can normally send email just fine (my mutt uses Postfix's sendmail). So I thought the problem is the wrong sendmail is used, so I created a config file for GNATS and set the MAIL_AGENT variable appropriately. Still no luck. Any suggestions? I'd really like to get this fixed. Gerhard -- mail: gerhard bigfoot de registered Linux user #64239 web: http://www.cs.fhm.edu/~ifw00065/ OpenPGP public key id AD24C930 public key fingerprint: 3FCC 8700 3012 0A9E B0C9 3667 814B 9CAA AD24 C930 reduce(lambda x,y:x+y,map(lambda x:chr(ord(x)^42),tuple('zS^BED\nX_FOY\x0b'))) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 8:26:20 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 67F2B37B402; Tue, 19 Mar 2002 08:26:17 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JGQHD44944; Tue, 19 Mar 2002 08:26:17 -0800 (PST) (envelope-from kris) Date: Tue, 19 Mar 2002 08:26:17 -0800 (PST) From: Message-Id: <200203191626.g2JGQHD44944@freefall.freebsd.org> To: nick@namodn.com, kris@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: ports/36081: no dependencies filed for package p5-XML-Simple (when using pkg_add -r) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: no dependencies filed for package p5-XML-Simple (when using pkg_add -r) State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Tue Mar 19 08:25:57 PST 2002 State-Changed-Why: Bug resolved. http://www.freebsd.org/cgi/query-pr.cgi?pr=36081 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 9:30:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD32E37B400 for ; Tue, 19 Mar 2002 09:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JHU2B60844; Tue, 19 Mar 2002 09:30:02 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Mar 2002 09:30:02 -0800 (PST) Message-Id: <200203191730.g2JHU2B60844@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "David O'Brien" Subject: Re: kern/34801 Reply-To: "David O'Brien" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/34801; it has been noted by GNATS. From: "David O'Brien" To: Sheldon Hearn , Andrew Gallatin Cc: AMAKAWA Shuhei , bug-followup@freebsd.org Subject: Re: kern/34801 Date: Tue, 19 Mar 2002 09:19:02 -0800 On Tue, Mar 19, 2002 at 11:36:00AM +0200, Sheldon Hearn wrote: > In your commit log for the change, you said that dillon had agreed in > principle, but only "on the 32k level". If dillon had reservations > about "the 64k level", can you remember why you ignored them? There was a long thread in ?-current? (?-hackers?) about this. It was felt that 64k should be OK. IIRC Dillon's reservations might have been because that was the highest he runs at. > Alternatively, are you happy with us just going ahead and dropping the > value for the sake of software that never dreamed the default would > become so large? > > Seems pretty sane to me, and it's still an improvement over 16k. It sounds like we can get away with any large value less than 64k. So lets try keeping it as high as possible. Andrew, just so I don't mess this up, is the 56k value you would like "57344". -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 11:10: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F3C1D37B404 for ; Tue, 19 Mar 2002 11:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JJA2O85678; Tue, 19 Mar 2002 11:10:02 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Mar 2002 11:10:02 -0800 (PST) Message-Id: <200203191910.g2JJA2O85678@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: chk no Subject: Re: bin/36085: burncd: mode2 + stdin Reply-To: chk no Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/36085; it has been noted by GNATS. From: chk no To: chkno@dork.com, sos@freebsd.dk Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/36085: burncd: mode2 + stdin Date: Tue, 19 Mar 2002 11:05:25 -0800 (PST) > > >Number: 36085 > > >Category: bin > > >Synopsis: burncd: mode2 + stdin > > >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 Mar 19 02:10:01 PST 2002 > > >Closed-Date: > > >Last-Modified: > > >Originator: chkno > > >Release: FreeBSD 4.5-STABLE i386 > > >Organization: > > >Environment: > > System: FreeBSD chk.phattydomain.com 4.5-STABLE FreeBSD 4.5-STABLE #0: Thu Mar 7 15:30:43 PST 2002 su@chk.phattydomain.com:/usr/obj/usr/src/sys/CHK i386 > > You should definitly try upgrading, that ATA driver with utils have > changed *alot*. > > -Søren I updated, & now I'm confused. It seems that burncd won't accept stdin input at all now. It aborts right after it starts. # cat testfile | burncd mode2 - fixate next writeable LBA 0 writing from stdin fixating CD, please wait.. # Additionally, the update seems to have broken xine's VCD support. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 12: 0:47 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D7B237B41B for ; Tue, 19 Mar 2002 12:00:11 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JK0BE95254; Tue, 19 Mar 2002 12:00:11 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D31C37B429 for ; Tue, 19 Mar 2002 11:54:19 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JJsJH94344; Tue, 19 Mar 2002 11:54:19 -0800 (PST) (envelope-from nobody) Message-Id: <200203191954.g2JJsJH94344@freefall.freebsd.org> Date: Tue, 19 Mar 2002 11:54:19 -0800 (PST) From: Steve Shorter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/36108: Diskless NFS Client panic with 4.5-STABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36108 >Category: kern >Synopsis: Diskless NFS Client panic with 4.5-STABLE >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 19 12:00:11 PST 2002 >Closed-Date: >Last-Modified: >Originator: Steve Shorter >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: FreeBSD cgi0 4.5-STABLE FreeBSD 4.5-STABLE #0: Sat Mar 16 07:54:07 EST 2002 root@jak:/usr/src/sys-stable.2002_02_21/compile/JAK i386 >Description: I have a pool of diskless NFS clients running cgi programs for a similar pool of NFS clients serving http to the internet. The hardware and general setup of all client NFS hardware/software is identical the only difference being that cgi machines run a lot of perl/php/.... etc .... cgi stuff, probably doing a lot more file writing. After upgrading to 4.5, the servers serving http are very stable, as it was with 4.4 However, the servers running cgi programs are unstable, all of them will panic after uptimes from 30 mins. to several hours. However, these same servers are stable running kernel 4.4-RELEASE-p9 in a 4.5-RELEASE userland. I have verified that the panic occurs with the latest 4.5-STABLE and 4.5-RELEASE. The NFS servers are 4.5-STABLE from about Feb 21. I built a kernel with DDB, and the panics are always the same. I am inexperienced in debugging FreeBSD kernels but am willing to help in any way I can and have dedicated use of a machine for debugging/testing. Here is a console output and db trace at panic for your enjoyment. nfs_fsync: not dirty Debugger("panic") Stopped at Debugger+0x34: movb $0,in_Debugger.426 db> trace Debugger(c01fabdb) at Debugger+0x34 panic(c0203894,e258f9a0,e2872e58,e014d520,e2872dac) at panic+0x70 nfs_flush(e25c9480,c38ce300,1,e014d520,0) at nfs_flush+0x5f8 nfs_close(e2872e58,c3b25980,c3b25980,c02188e0,e25c9480) at nfs_close+0x52 vn_close(e25c9480,3,c38ce300,e014d520,e2872ecc) at vn_close+0x40 vn_closefile(c3b25980,e014d520,e014d520,c3b25980,e25c9480) at vn_closefile+0x1f fdrop(c3b25980,e014d520,4,c385f600,0) at fdrop+0xaf closef(c3b25980,e014d520,e014d520,1,c021c1f0) at closef+0x9b close(e014d520,e2872f80,281aa664,1,843f138) at close+0x89 syscall2(834002f,281b002f,bfbf002f,843f138,1) at syscall2+0x16a Xint0x80_syscall() at Xint0x80_syscall+0x25 db> panic panic: from debugger Uptime: 2h43m42s Automatic reboot in 15 seconds - press a key on the console to abort Rebooting... If you need more info just ask. thanx - steve >How-To-Repeat: I suspect that high levels of file activity, particularly writing, over NFS will trigger this panic. But it may be unique to this particular network use/application. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 14:30:27 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A530F37B42F for ; Tue, 19 Mar 2002 14:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JMU1S37795; Tue, 19 Mar 2002 14:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FB6D37B404 for ; Tue, 19 Mar 2002 14:26:53 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JMQrc36898; Tue, 19 Mar 2002 14:26:53 -0800 (PST) (envelope-from nobody) Message-Id: <200203192226.g2JMQrc36898@freefall.freebsd.org> Date: Tue, 19 Mar 2002 14:26:53 -0800 (PST) From: chris To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/36110: dmesg output corrupt if /dev/console is busy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36110 >Category: misc >Synopsis: dmesg output corrupt if /dev/console is busy >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 Mar 19 14:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: chris >Release: 4.5-RELEASE >Organization: >Environment: FreeBSD testing 4.5-RELEASE FreeBSD 4.5-RELEASE #4: Mon Mar 18 13:18:54 EST 2002 chris@testing:/usr/src/sys/compile/LOCAL i386 >Description: At version 4.3 dmesg -a was added, so you can see console output remotely. If you have lots of output going to /dev/console (happened at 32k of data here) dmesg output will not be readable eventually. The LINT file says MSGBUF_SIZE=40960, but "dmesg -a >file;du file" reports 32(k) when it is broken. It should push out old lines and append new ones when it is full. >How-To-Repeat: Set up syslog to log to /dev/console, and send more than ~32k (or whatever your MSGBUF_SIZE is) of data to that facility. Then run dmesg. If it is corrupt, run dmesg -a, redirect to a file, and see how large the file is. It should be about the same as MSGBUF_SIZE. >Fix: Reboot to get a sane dmesg output back. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 16: 0:33 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DC45837B419 for ; Tue, 19 Mar 2002 16:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2K001S56170; Tue, 19 Mar 2002 16:00:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 73C8237B402 for ; Tue, 19 Mar 2002 15:50:46 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JNokD54562; Tue, 19 Mar 2002 15:50:46 -0800 (PST) (envelope-from nobody) Message-Id: <200203192350.g2JNokD54562@freefall.freebsd.org> Date: Tue, 19 Mar 2002 15:50:46 -0800 (PST) From: mki To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/36114: please MFC 1.24 of libc/regex/regcomp.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36114 >Category: misc >Synopsis: please MFC 1.24 of libc/regex/regcomp.c >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 Mar 19 16:00:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: mki >Release: 4.5-RELEASE, 4.5-STABLE >Organization: >Environment: >Description: Programs that use regcomp/regexec get SIGBUS'd when running under ElectricFence and similar mem bounds checkers. This is due to the BM search algo reading beyond the length of an array in computematchjumps(). Here's the stack trace of the attached program: Program received signal SIGBUS, Bus error. 0x804c5d5 in computematchjumps (p=0xbfbff46c, g=0x28104ea0) at regcomp.c:2048 2048 ssuffix = pmatches[ssuffix]; (gdb) where #0 0x804c5d5 in computematchjumps (p=0xbfbff46c, g=0x28104ea0) at regcomp.c:2048 #1 0x8048fe8 in regcomp (preg=0xbfbff70c, pattern=0x804da20 "127.0.0.1/10", cflags=7) at regcomp.c:281 #2 0x8048d08 in main (argc=1, argv=0xbfbff770) at test.c:10 #3 0x8048c5d in _start () (gdb) frame 0 #0 0x804c5d5 in computematchjumps (p=0xbfbff46c, g=0x28104ea0) at regcomp.c:2048 2048 ssuffix = pmatches[ssuffix]; (gdb) l 2043 while (suffix <= ssuffix && suffix < g->mlen) { 2044 g->matchjump[suffix] = MIN(g->matchjump[suffix], 2045 g->mlen + ssuffix - suffix); 2046 suffix++; 2047 } 2048 ssuffix = pmatches[ssuffix]; 2049 } 2050 2051 free(pmatches); 2052 } (gdb) print ssuffix $1 = 4 (gdb) l 2000 1995 1996 /* Avoid making errors worse */ 1997 if (p->error != 0) 1998 return; 1999 2000 pmatches = (int*) malloc(g->mlen * sizeof(unsigned int)); 2001 if (pmatches == NULL) { 2002 g->matchjump = NULL; 2003 return; 2004 } (gdb) print g->mlen $2 = 4 (gdb) print pmatches[0] $3 = 3 (gdb) print pmatches[1] $4 = 3 (gdb) print pmatches[2] $5 = 3 (gdb) print pmatches[3] $6 = 4 (gdb) print pmatches[4] Error accessing memory address 0x2810d000: Bad address. (gdb) print ssuffix $7 = 4 >How-To-Repeat: #include #include #include int main(int argc, char **argv) { regex_t preg; int r; char errbuf[512]; r = regcomp(&preg, "127.0.0.1/10", REG_NOSUB|REG_EXTENDED|REG_ICASE); if ( r != 0 ) { regerror(r, &preg, errbuf, sizeof(errbuf)); printf("couldn't compile regex pattern, %s\n", errbuf); return -1; } return 0; } >Fix: The fix was commited to -CURRENT back in november (revision 1.24); it was supposed to be MFCd within a week from that commit, but it seems to have been forgotten. Please MFC it. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 17:11:32 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C3FB137B405 for ; Tue, 19 Mar 2002 17:11:26 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2K1BLH89132; Tue, 19 Mar 2002 17:11:21 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (unknown [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BC13A37B422 for ; Tue, 19 Mar 2002 17:05:34 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2K14Em76250; Tue, 19 Mar 2002 17:04:14 -0800 (PST) (envelope-from nobody) Message-Id: <200203200104.g2K14Em76250@freefall.freebsd.org> Date: Tue, 19 Mar 2002 17:04:14 -0800 (PST) From: Ted Nolan To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/36118: 4.5 Upgrade says it won't touch /usr/src, but does Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36118 >Category: conf >Synopsis: 4.5 Upgrade says it won't touch /usr/src, but does >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 Mar 19 17:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Ted Nolan >Release: 4.5 >Organization: SRI International >Environment: FreeBSD colanix0.ga.erg.sri.com 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Mon Jan 28 14:31:56 GMT 2002 murray@builder.freebsdmall.com:/usr/src/sys/compile/GENERIC i386 >Description: When doing an Upgrade install from 4.2 to 4.5, I selected the "all" packages option. After trundling for a while, I got the message that /usr/src already existed, that it couldn't do a src upgrade, and that therefore it would not touch the existing /usr/src. However, later when it extracted the kerberos5, kerberosIV, crypto and secure packages, it did in fact write those into /usr/src. >How-To-Repeat: Do an upgrade of a 4.2 system to 4.5. Select the "all" canned distribution. >Fix: Don't select "all", then do the src by hand >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 19: 6:12 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from www.svzserv.kemerovo.su (www.svzserv.kemerovo.su [213.184.65.80]) by hub.freebsd.org (Postfix) with ESMTP id 7A15E37B400; Tue, 19 Mar 2002 19:05:40 -0800 (PST) Received: from svzserv.kemerovo.su (kost [213.184.65.82]) by www.svzserv.kemerovo.su (8.11.6/8.11.6) with ESMTP id g2K35T552229; Wed, 20 Mar 2002 10:05:29 +0700 (KRAT) (envelope-from eugen@svzserv.kemerovo.su) Message-ID: <3C97FC6C.1AA55C03@svzserv.kemerovo.su> Date: Wed, 20 Mar 2002 10:05:16 +0700 From: Eugene Grosbein Organization: SVZServ X-Mailer: Mozilla 4.79 [en] (Win95; U) X-Accept-Language: ru,en MIME-Version: 1.0 To: Matthew Dillon Cc: Eugene Grosbein , FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/35969: kernel option PPP_DEFLATE often procudes kernel panics; PPP_BSDCOMP sometimes procudes stalled connections References: <200203160808.g2G880k17109@D00015.dialonly.kemerovo.su> <200203160820.g2G8K1s38158@freefall.freebsd.org> <20020317125834.A419@grosbein.pp.ru> <200203170647.g2H6lQ621576@apollo.backplane.com> <20020318221754.A428@grosbein.pp.ru> <200203182358.g2INwch65873@apollo.backplane.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Matthew Dillon wrote: > Plese bring your tree back to the latest -stable and apply the > patch I include below, then tell me if it fixes your crashes. Well, my home system with PPP over loopback that I used to locate breakage does not panic with this patch. Today I'll test my dialin server. Eugene Grosbein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 20:12: 4 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id 1D70D37B429; Tue, 19 Mar 2002 20:11:42 -0800 (PST) Received: (from dillon@localhost) by apollo.backplane.com (8.11.6/8.9.1) id g2K4BZa79793; Tue, 19 Mar 2002 20:11:35 -0800 (PST) (envelope-from dillon) Date: Tue, 19 Mar 2002 20:11:35 -0800 (PST) From: Matthew Dillon Message-Id: <200203200411.g2K4BZa79793@apollo.backplane.com> To: Eugene Grosbein Cc: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/35969: kernel option PPP_DEFLATE often procudes kernel panics; PPP_BSDCOMP sometimes procudes stalled connections References: <200203160808.g2G880k17109@D00015.dialonly.kemerovo.su> <200203160820.g2G8K1s38158@freefall.freebsd.org> <20020317125834.A419@grosbein.pp.ru> <200203170647.g2H6lQ621576@apollo.backplane.com> <20020318221754.A428@grosbein.pp.ru> <200203182358.g2INwch65873@apollo.backplane.com> <3C97FC6C.1AA55C03@svzserv.kemerovo.su> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org : :Matthew Dillon wrote: : :> Plese bring your tree back to the latest -stable and apply the :> patch I include below, then tell me if it fixes your crashes. : :Well, my home system with PPP over loopback that I used to locate breakage :does not panic with this patch. Today I'll test my dialin server. : :Eugene Grosbein Excellent. I am going to go ahead and commit it. Ian Dowse also came up with the exact same patch independantly so I am confident that it is correct. -Matt Matthew Dillon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 19 21:32:48 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC8A137B417; Tue, 19 Mar 2002 21:32:45 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2K5Wjl47897; Tue, 19 Mar 2002 21:32:45 -0800 (PST) (envelope-from dd) Date: Tue, 19 Mar 2002 21:32:45 -0800 (PST) From: Message-Id: <200203200532.g2K5Wjl47897@freefall.freebsd.org> To: dd@FreeBSD.org, freebsd-bugs@FreeBSD.org, dcs@FreeBSD.org Subject: Re: misc/36114: please MFC 1.24 of libc/regex/regcomp.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: please MFC 1.24 of libc/regex/regcomp.c Responsible-Changed-From-To: freebsd-bugs->dcs Responsible-Changed-By: dd Responsible-Changed-When: Tue Mar 19 21:32:18 PST 2002 Responsible-Changed-Why: Over to committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=36114 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 0:55:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF6EB37B417; Wed, 20 Mar 2002 00:55:03 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2K8t3t51388; Wed, 20 Mar 2002 00:55:03 -0800 (PST) (envelope-from iedowse) Date: Wed, 20 Mar 2002 00:55:03 -0800 (PST) From: Message-Id: <200203200855.g2K8t3t51388@freefall.freebsd.org> To: gpr@fbsd.nvnpp.vrn.ru, iedowse@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/36088: [patch] mount_nfs loads "nfs" module instead of "nfsclient" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [patch] mount_nfs loads "nfs" module instead of "nfsclient" State-Changed-From-To: open->closed State-Changed-By: iedowse State-Changed-When: Wed Mar 20 00:53:44 PST 2002 State-Changed-Why: Submitter says that this can be closed. http://www.freebsd.org/cgi/query-pr.cgi?pr=36088 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 2:34:56 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 467B937B419; Wed, 20 Mar 2002 02:34:54 -0800 (PST) Received: (from greid@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KAYsu82716; Wed, 20 Mar 2002 02:34:54 -0800 (PST) (envelope-from greid) Date: Wed, 20 Mar 2002 02:34:54 -0800 (PST) From: Message-Id: <200203201034.g2KAYsu82716@freefall.freebsd.org> To: greid@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/35999: add support for general flash disks to scsi_da.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: add support for general flash disks to scsi_da.c Class-Changed-From-To: sw-bug->update Class-Changed-By: greid Class-Changed-When: Wed Mar 20 02:33:30 PST 2002 Class-Changed-Why: Unmangle http://www.freebsd.org/cgi/query-pr.cgi?pr=35999 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 4:43:36 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BDDF937B400; Wed, 20 Mar 2002 04:43:34 -0800 (PST) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KChYK34366; Wed, 20 Mar 2002 04:43:34 -0800 (PST) (envelope-from sheldonh) Date: Wed, 20 Mar 2002 04:43:34 -0800 (PST) From: Message-Id: <200203201243.g2KChYK34366@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: kern/36038: sendfile(2) on smbfs fails, exposes kernel memory to userspace Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: sendfile(2) on smbfs fails, exposes kernel memory to userspace Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Mar 20 04:43:05 PST 2002 Responsible-Changed-Why: I'll hold on to this one as a reminder until I get feedback from bp and fjoe. http://www.freebsd.org/cgi/query-pr.cgi?pr=36038 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 5:37:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BF40937B400; Wed, 20 Mar 2002 05:37:10 -0800 (PST) Received: (from deischen@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KDbA755434; Wed, 20 Mar 2002 05:37:10 -0800 (PST) (envelope-from deischen) Date: Wed, 20 Mar 2002 05:37:10 -0800 (PST) From: Message-Id: <200203201337.g2KDbA755434@freefall.freebsd.org> To: ejalbert@cs.stanford.edu, deischen@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/33315: pthread_key_create does not zero out the new value Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: pthread_key_create does not zero out the new value State-Changed-From-To: open->closed State-Changed-By: deischen State-Changed-When: Wed Mar 20 05:36:29 PST 2002 State-Changed-Why: Fixed bug. http://www.freebsd.org/cgi/query-pr.cgi?pr=33315 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 6:37:23 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from D00015.dialonly.kemerovo.su (www2.svzserv.kemerovo.su [213.184.65.86]) by hub.freebsd.org (Postfix) with ESMTP id 4959037B41D; Wed, 20 Mar 2002 06:36:43 -0800 (PST) Received: (from eugen@localhost) by D00015.dialonly.kemerovo.su (8.11.6/8.11.6) id g2KEZ3e00428; Wed, 20 Mar 2002 21:35:03 +0700 (KRAT) (envelope-from eugen) Date: Wed, 20 Mar 2002 21:35:03 +0700 From: Eugene Grosbein To: Matthew Dillon Cc: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, Kirk McKusick Subject: Re: kern/35969: kernel option PPP_DEFLATE often procudes kernel panics; PPP_BSDCOMP sometimes procudes stalled connections Message-ID: <20020320213503.A344@grosbein.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > Plese bring your tree back to the latest -stable and apply the > patch I include below, then tell me if it fixes your crashes. My dialin server is revived now. It works as expected. I thank Matthes Dillon, Kirk McKusic and other people of stable@freebsd.org for their help. It seems, that commit affected src/lib/libz/infblock.c and it's possible it still contatins the bug that is fixed now in the kernel. I talk about this: Index: infblock.c =================================================================== RCS file: /home/ncvs/src/lib/libz/infblock.c,v retrieving revision 1.1.1.4 retrieving revision 1.1.1.4.6.1 diff -u -r1.1.1.4 -r1.1.1.4.6.1 --- infblock.c 10 Jan 1999 09:46:55 -0000 1.1.1.4 +++ infblock.c 22 Feb 2002 02:48:40 -0000 1.1.1.4.6.1 @@ -3,6 +3,9 @@ * For conditions of distribution and use, see copyright notice in zlib.h */ +#include +__FBSDID("$FreeBSD: src/lib/libz/infblock.c,v 1.1.1.4.6.1 2002/02/22 02:48:40 jedgar Exp $"); + #include "zutil.h" #include "infblock.h" #include "inftrees.h" @@ -249,10 +252,11 @@ &s->sub.trees.tb, s->hufts, z); if (t != Z_OK) { - ZFREE(z, s->sub.trees.blens); r = t; - if (r == Z_DATA_ERROR) + if (r == Z_DATA_ERROR) { + ZFREE(z, s->sub.trees.blens); s->mode = BAD; + } LEAVE } s->sub.trees.index = 0; @@ -313,11 +317,12 @@ t = inflate_trees_dynamic(257 + (t & 0x1f), 1 + ((t >> 5) & 0x1f), s->sub.trees.blens, &bl, &bd, &tl, &td, s->hufts, z); - ZFREE(z, s->sub.trees.blens); if (t != Z_OK) { - if (t == (uInt)Z_DATA_ERROR) + if (t == (uInt)Z_DATA_ERROR) { + ZFREE(z, s->sub.trees.blens); s->mode = BAD; + } r = t; LEAVE } @@ -329,6 +334,7 @@ } s->sub.decode.codes = c; } + ZFREE(z, s->sub.trees.blens); s->mode = CODES; case CODES: UPDATE Eugene Grosbein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 7:20:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 37B0337B419 for ; Wed, 20 Mar 2002 07:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KFK2781176; Wed, 20 Mar 2002 07:20:02 -0800 (PST) (envelope-from gnats) Received: from nerve.riss-telecom.ru (nerve.riss-telecom.ru [80.66.65.3]) by hub.freebsd.org (Postfix) with ESMTP id BDF8837B400 for ; Wed, 20 Mar 2002 07:18:23 -0800 (PST) Received: (from frol@localhost) by nerve.riss-telecom.ru (8.11.6/8.11.6) id g2KFILs49998; Wed, 20 Mar 2002 21:18:21 +0600 (NOVT) (envelope-from frol) Message-Id: <200203201518.g2KFILs49998@nerve.riss-telecom.ru> Date: Wed, 20 Mar 2002 21:18:21 +0600 (NOVT) From: Dmitry Frolov Reply-To: Dmitry Frolov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/36136: savecore -z option does not work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36136 >Category: bin >Synopsis: savecore -z option does not work >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 20 07:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Dmitry Frolov >Release: FreeBSD 4.5-STABLE i386 >Organization: RISS-Telecom >Environment: System: FreeBSD nerve.riss-telecom.ru 4.5-STABLE FreeBSD 4.5-STABLE #0: Thu Mar 7 22:35:51 NOVT 2002 root@nerve.riss-telecom.ru:/usr/src/sys/compile/NERVE i386 >Description: When saving kernel core dump, savecore attempts to find blocks of zeroes in dump, and calls fseek on output stream when finds such block. If -z option is specified, stream is created with zlib "zopen" function, and fseek on that stream fails. Problem represented by commit at Feb 16 2001 (savecore.c revision 1.37). >How-To-Repeat: # savecore -z /var/crash savecore: reboot after panic: page fault savecore: system went down at Wed Mar 20 19:54:18 2002 savecore: writing compressed core to /var/crash/vmcore.0.gz savecore: /var/crash/vmcore.0.gz: Illegal seek savecore: WARNING: vmcore may be incomplete >Fix: savecore.c: Don't search for zeroes if -z option is specified. --- sbin/savecore/savecore.c.old Wed Mar 20 21:03:18 2002 +++ sbin/savecore/savecore.c Wed Mar 20 21:05:05 2002 @@ -432,14 +432,17 @@ nw = fwrite(buf, 1, nr, fp); } else { for (nw = 0; nw < nr; nw = he) { - /* find a contiguous block of zeroes */ - for (hs = nw; hs < nr; hs += BLOCKSIZE) { - for (he = hs; he < nr && buf[he] == 0; ++he) - /* nothing */ ; - /* is the hole long enough to matter? */ - if (he >= hs + BLOCKSIZE) - break; - } + if (compress) + hs = he = nr; + else + /* find a contiguous block of zeroes */ + for (hs = nw; hs < nr; hs += BLOCKSIZE) { + for (he = hs; he < nr && buf[he] == 0; ++he) + /* nothing */ ; + /* is the hole long enough to matter? */ + if (he >= hs + BLOCKSIZE) + break; + } /* back down to a block boundary */ he &= BLOCKMASK; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 8: 0:14 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2453737B400; Wed, 20 Mar 2002 08:00:07 -0800 (PST) Received: (from orion@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KG07s89094; Wed, 20 Mar 2002 08:00:07 -0800 (PST) (envelope-from orion) Date: Wed, 20 Mar 2002 08:00:07 -0800 (PST) From: Message-Id: <200203201600.g2KG07s89094@freefall.freebsd.org> To: archie@dellroad.org, orion@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/25517: ARP cache timeout behavior can be improved Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: ARP cache timeout behavior can be improved State-Changed-From-To: open->closed State-Changed-By: orion State-Changed-When: Wed Mar 20 07:57:53 PST 2002 State-Changed-Why: Fix commited to netinet/if_ether.c. From the review request associated with fix: "Outbound packets pass through arpresolve (netinet/if_ether.c). This function makes the decision about whether a packet should be forwarded or buffered awaiting an arp response. It does this on the basis on whether there is a valid ARP cache entry for the receiving machine on the local network. Since it fetches the ARP cache entry and the ARP cache entry has field stating when it will expire, we can trigger an ARP request packet if we are within a finite interval of the expiry time. The response for this pre-expiry ARP request will update the ARP cache entry and push back the expiration time. The additional ARP requests are data-driven, so pre-expiration requests are only sent for hosts that we are sending data to. Entries in the ARP cache that the host is not currently sending to are timed out in the usual manner. The patch referenced below uses a counter to send ARP requests triggered by data packets. The counter ensures that we send at most 1 ARP packet per arpt_down (default = 20) seconds. Thus, if an ARP response is lost or corrupted we have several well spaced attempts at updating the ARP cache entry before it expires. The number of pre-expiry attempts is set to the number of regular ARP request attempts (arp_maxtries, default = 5). The counter variable used is the same counter ARP uses for sending initial ARP requests. It's state is already reset when ARP responses are received so there is no problem in re-using the variable for entries that have not yet expired. A solution very similar to this is discussed in the last three paragraphs of the original ARP RFC (RFC826) and by Casner in kern/25517." http://www.freebsd.org/cgi/query-pr.cgi?pr=25517 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 8:14:41 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 005E637B491; Wed, 20 Mar 2002 08:13:13 -0800 (PST) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 20 Mar 2002 16:13:11 +0000 (GMT) To: Eugene Grosbein Cc: Matthew Dillon , FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, Kirk McKusick Subject: Re: kern/35969: kernel option PPP_DEFLATE often procudes kernel panics; PPP_BSDCOMP sometimes procudes stalled connections In-Reply-To: Your message of "Wed, 20 Mar 2002 21:35:03 +0700." <20020320213503.A344@grosbein.pp.ru> Date: Wed, 20 Mar 2002 16:13:11 +0000 From: Ian Dowse Message-ID: <200203201613.aa16423@salmon.maths.tcd.ie> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <20020320213503.A344@grosbein.pp.ru>, Eugene Grosbein writes: >It seems, that commit affected src/lib/libz/infblock.c >and it's possible it still contatins the bug that is fixed now in the kernel. Yes, I had seen the libc/libz code too. At first glance it appears to have a similar problem: >@@ -329,6 +334,7 @@ > } > s->sub.decode.codes = c; > } >+ ZFREE(z, s->sub.trees.blens); > s->mode = CODES; > case CODES: > UPDATE However the structure of struct inflate_blocks_state is different in libz, so it is mostly safe because decode.codes and trees.blens are unlikely to overlap on most platforms: union { uInt left; /* if STORED, bytes left to copy */ struct { uInt table; /* table lengths (14 bits) */ uInt index; /* index into blens (or border) */ uIntf *blens; /* bit lengths of codes */ uInt bb; /* bit length tree depth */ inflate_huft *tb; /* bit length decoding tree */ } trees; /* if DTREE, decoding info for trees */ struct { inflate_codes_statef *codes; } decode; /* if CODES, current state */ } sub; /* submode */ The patch applied to libc/libz seems to match exactly what appeared in the official zlib 1.1.4 release, but it is still very dodgy programming by the zlib people... Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 10:11:53 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8207B37B400; Wed, 20 Mar 2002 10:11:51 -0800 (PST) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KIBpi42210; Wed, 20 Mar 2002 10:11:51 -0800 (PST) (envelope-from dwmalone) Date: Wed, 20 Mar 2002 10:11:51 -0800 (PST) From: Message-Id: <200203201811.g2KIBpi42210@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, des@FreeBSD.org Subject: Re: bin/36136: savecore -z option does not work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: savecore -z option does not work Responsible-Changed-From-To: freebsd-bugs->des Responsible-Changed-By: dwmalone Responsible-Changed-When: Wed Mar 20 10:10:08 PST 2002 Responsible-Changed-Why: Des added the code for sparse dumps, so he's likely to be able to tell if the patch is good. It looks OK to me at a quick glance anyway. http://www.freebsd.org/cgi/query-pr.cgi?pr=36136 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 10:18:16 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id 5EF0037B41C; Wed, 20 Mar 2002 10:17:58 -0800 (PST) Received: (from dillon@localhost) by apollo.backplane.com (8.11.6/8.9.1) id g2KIHqf84421; Wed, 20 Mar 2002 10:17:52 -0800 (PST) (envelope-from dillon) Date: Wed, 20 Mar 2002 10:17:52 -0800 (PST) From: Matthew Dillon Message-Id: <200203201817.g2KIHqf84421@apollo.backplane.com> To: Ian Dowse Cc: Eugene Grosbein , FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG, Kirk McKusick , Chris Faulhaber , security-officer@FreeBSD.ORG Subject: Re: kern/35969: kernel option PPP_DEFLATE often procudes kernel panics; PPP_BSDCOMP sometimes procudes stalled connections References: <200203201613.aa16423@salmon.maths.tcd.ie> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I would say that libz should probably be fixed too, and given a big whopping comment as well, even though (as Ian noted) the organization of the union is such that the bug will not occur. I'm adding Chris to this Cc. Chris, it's your baby :-), I'll leave it to you to decide what is best in regards to libz. p.s. Chris, OpenBSD's infblock.c file in libz is exactly the same as ours except for some minor whitespace/bracing changes. -Matt Matthew Dillon :Yes, I had seen the libc/libz code too. At first glance it appears :to have a similar problem: : :>@@ -329,6 +334,7 @@ :> } :> s->sub.decode.codes = c; :> } :>+ ZFREE(z, s->sub.trees.blens); :> s->mode = CODES; :> case CODES: :> UPDATE : :However the structure of struct inflate_blocks_state is different :in libz, so it is mostly safe because decode.codes and trees.blens :are unlikely to overlap on most platforms: : : union { : uInt left; /* if STORED, bytes left to copy */ : struct { : uInt table; /* table lengths (14 bits) */ : uInt index; /* index into blens (or border) */ : uIntf *blens; /* bit lengths of codes */ : uInt bb; /* bit length tree depth */ : inflate_huft *tb; /* bit length decoding tree */ : } trees; /* if DTREE, decoding info for trees */ : struct { : inflate_codes_statef : *codes; : } decode; /* if CODES, current state */ : } sub; /* submode */ : :The patch applied to libc/libz seems to match exactly what appeared :in the official zlib 1.1.4 release, but it is still very dodgy :programming by the zlib people... : :Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 11: 0:12 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D672A37B405 for ; Wed, 20 Mar 2002 11:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KJ03m50566; Wed, 20 Mar 2002 11:00:03 -0800 (PST) (envelope-from gnats) Received: from mailhost.stack.nl (vaak.stack.nl [131.155.140.140]) by hub.freebsd.org (Postfix) with ESMTP id 2B6C037B416 for ; Wed, 20 Mar 2002 10:52:33 -0800 (PST) Received: from turtle.stack.nl (turtle.stack.nl [2001:610:1108:5010:202:b3ff:fe17:a070]) by mailhost.stack.nl (Postfix) with ESMTP id C9A9A3D832 for ; Wed, 20 Mar 2002 19:52:31 +0100 (CET) Received: by turtle.stack.nl (Postfix, from userid 887) id 6D9CBC0; Wed, 20 Mar 2002 19:52:31 +0100 (CET) Message-Id: <20020320185231.6D9CBC0@turtle.stack.nl> Date: Wed, 20 Mar 2002 19:52:31 +0100 (CET) From: Jan Willem Knopper Reply-To: Jan Willem Knopper To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/36141: sh dumps core Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36141 >Category: bin >Synopsis: sh dumps core >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 Mar 20 11:00:03 PST 2002 >Closed-Date: >Last-Modified: >Originator: Jan Willem Knopper >Release: FreeBSD 4.5-STABLE i386 >Organization: M.C.G.V. Stack >Environment: System: FreeBSD turtle.stack.nl 4.5-STABLE FreeBSD 4.5-STABLE #0: Wed Feb 6 21:49:20 CET 2002 marcolz@toad.stack.nl:/toad.mnt/sources/4.x/sys/compile/snail_turtle i386 >Description: sh coredumps when the builtin function hash is invocated with option -v and as an argument a full path (i.e. hash -v /bin/sh) >How-To-Repeat: sh hash -v /bin/sh >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 12:10:34 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED6BA37B417 for ; Wed, 20 Mar 2002 12:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KKA1e77142; Wed, 20 Mar 2002 12:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E4B8737B400 for ; Wed, 20 Mar 2002 12:07:39 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KK7dK76857; Wed, 20 Mar 2002 12:07:39 -0800 (PST) (envelope-from nobody) Message-Id: <200203202007.g2KK7dK76857@freefall.freebsd.org> Date: Wed, 20 Mar 2002 12:07:39 -0800 (PST) From: "Mikhail A. Vladimirov" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/36143: Dynamic (non linear) mouse acceleration added to moused Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36143 >Category: misc >Synopsis: Dynamic (non linear) mouse acceleration added to moused >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: Wed Mar 20 12:10:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Mikhail A. Vladimirov >Release: 4.4-STABLE >Organization: Moscow State University >Environment: FreeBSD stalker.hackers 4.5-STABLE FreeBSD 4.5-STABLE #0: Fri Feb 1 18:52:34 MSK 2002 stalker@stalker.hackers:/usr/obj/usr/src/sys/STALKER i386 >Description: Patch for moused, that adds -A twice[,quadro] flag. Mouse movement speed accelerated twice, if mouse moves more then _twice_ steps a time. And when mouse moves more, then quadro steps a time, it accelerated four times. I changed moused.8 manual page too, but there may be some typos. I use resolution 1280x960 and I think, that this patch realy did things better. I found -F 200 -A 4,8 setting very suitable for my Logitech M-S48a mouse. >How-To-Repeat: Apply this patch, recompile and restart moused. :) >Fix: diff -c -r orig/moused.8 moused/moused.8 *** orig/moused.8 Wed Mar 20 22:46:59 2002 --- moused/moused.8 Wed Mar 20 22:40:22 2002 *************** *** 44,49 **** --- 44,50 ---- .Op Fl r Ar resolution .Op Fl S Ar baudrate .Op Fl a Ar X Ns Op , Ns Ar Y + .Op Fl A Ar twice Ns Op , Ns Ar quadro .Op Fl C Ar threshold .Op Fl m Ar N=M .Op Fl w Ar N *************** *** 161,166 **** --- 162,179 ---- Values less than 1.0 slow down movement, values greater than 1.0 speed it up. Specifying only one value sets the acceleration for both axes. + .It Fl A Ar twice Ns Op , Ns Ar quadro + Accelerate the mouse input dynamically. + If mouse moves more then + .Ar twice + steps at a time, extra movement accelerated twice. + If mouse moves more then + .Ar quadro + steps at a time, extra movement accelerated four times. + If the + .Fl a + option is present, the dynamic acceleration applies before + linear acceleration. .It Fl c Some mice report middle button down events as if the left and right buttons are being pressed. diff -c -r orig/moused.c moused/moused.c *** orig/moused.c Wed Mar 20 22:46:59 2002 --- moused/moused.c Wed Mar 20 22:21:31 2002 *************** *** 389,394 **** --- 389,396 ---- mousemode_t mode; /* protocol information */ float accelx; /* Acceleration in the X axis */ float accely; /* Acceleration in the Y axis */ + int twice; /* Twice acceleration limit in pixels */ + int quadro; /* Quadro acceleration limit in pixels */ } rodent = { flags : 0, portname : NULL, *************** *** 407,412 **** --- 409,416 ---- button2timeout : DFLT_BUTTON2TIMEOUT, accelx : 1.0, accely : 1.0, + twice : 10000, + quadro : 10000 }; /* button status */ *************** *** 474,479 **** --- 478,484 ---- static void hup(int sig); static void cleanup(int sig); static void usage(void); + static int dynaccel (int delta); static int r_identify(void); static char *r_if(int type); *************** *** 513,519 **** for (i = 0; i < MOUSE_MAXBUTTON; ++i) mstate[i] = &bstate[i]; ! while((c = getopt(argc,argv,"3C:DE:F:I:PRS:a:cdfhi:l:m:p:r:st:w:z:")) != -1) switch(c) { case '3': --- 518,524 ---- for (i = 0; i < MOUSE_MAXBUTTON; ++i) mstate[i] = &bstate[i]; ! while((c = getopt(argc,argv,"3C:DE:F:I:PRS:a:A:cdfhi:l:m:p:r:st:w:z:")) != -1) switch(c) { case '3': *************** *** 532,538 **** case 'a': i = sscanf(optarg, "%f,%f", &rodent.accelx, &rodent.accely); if (i == 0) { ! warnx("invalid acceleration argument '%s'", optarg); usage(); } --- 537,543 ---- case 'a': i = sscanf(optarg, "%f,%f", &rodent.accelx, &rodent.accely); if (i == 0) { ! warnx("invalid acceleration argument `%s'", optarg); usage(); } *************** *** 541,546 **** --- 546,560 ---- break; + case 'A': + i = sscanf(optarg, "%d,%d", &rodent.twice, &rodent.quadro); + if (i == 0) { + warnx("invalid dynamic acceleration argument `%s'", optarg); + usage(); + } + + break; + case 'c': rodent.flags |= ChordMiddle; break; *************** *** 943,950 **** if (action2.flags & MOUSE_POSCHANGED) { mouse.operation = MOUSE_MOTION_EVENT; mouse.u.data.buttons = action2.button; ! mouse.u.data.x = action2.dx * rodent.accelx; ! mouse.u.data.y = action2.dy * rodent.accely; mouse.u.data.z = action2.dz; if (debug < 2) ioctl(rodent.cfd, CONS_MOUSECTL, &mouse); --- 957,964 ---- if (action2.flags & MOUSE_POSCHANGED) { mouse.operation = MOUSE_MOTION_EVENT; mouse.u.data.buttons = action2.button; ! mouse.u.data.x = dynaccel(action2.dx) * rodent.accelx; ! mouse.u.data.y = dynaccel(action2.dy) * rodent.accely; mouse.u.data.z = action2.dz; if (debug < 2) ioctl(rodent.cfd, CONS_MOUSECTL, &mouse); *************** *** 1010,1021 **** { fprintf(stderr, "%s\n%s\n%s\n%s\n", "usage: moused [-DRcdfs] [-I file] [-F rate] [-r resolution] [-S baudrate]", ! " [-a X [,Y]] [-C threshold] [-m N=M] [-w N] [-z N]", ! " [-t ] [-3 [-E timeout]] -p ", " moused [-d] -i -p "); exit(1); } /** ** Mouse interface code, courtesy of XFree86 3.1.2. ** --- 1024,1056 ---- { fprintf(stderr, "%s\n%s\n%s\n%s\n", "usage: moused [-DRcdfs] [-I file] [-F rate] [-r resolution] [-S baudrate]", ! " [-a X [,Y]] [-A twice [,quadro]] [-C threshold] [-m N=M]", ! " [-w N] [-z N] [-t ] [-3 [-E timeout]] -p ", " moused [-d] -i -p "); exit(1); } + static int + dynaccel(int delta) + { + int sign=1; + + if (delta<0) + { + sign=-1; + delta=-delta; + } + + if (delta<=rodent.twice) return delta*sign; + + if (delta<=rodent.quadro) + return (rodent.twice+(delta-rodent.twice)*2)*sign; + + return (rodent.twice+ + (rodent.quadro-rodent.twice)*2+ + (delta-rodent.quadro)*4)*sign; + } + /** ** Mouse interface code, courtesy of XFree86 3.1.2. ** *************** *** 2940,2944 **** rodent.mremcfd = -1; } } - --- 2975,2978 ---- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 12:40:16 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0273637B405 for ; Wed, 20 Mar 2002 12:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KKe1o81574; Wed, 20 Mar 2002 12:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 49B4F37B405 for ; Wed, 20 Mar 2002 12:31:05 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KKV5M80251; Wed, 20 Mar 2002 12:31:05 -0800 (PST) (envelope-from nobody) Message-Id: <200203202031.g2KKV5M80251@freefall.freebsd.org> Date: Wed, 20 Mar 2002 12:31:05 -0800 (PST) From: Joe barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/36147: bogus irq 7 message being issued Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36147 >Category: kern >Synopsis: bogus irq 7 message being issued >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 20 12:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Joe barbish >Release: >Organization: none >Environment: FBSD 4.0, 4.3, and 4.4 >Description: /kernel: stray irq 7 /kernel: stray irq 7 last message repeated 4 times /kernel: too many stray irq 7's; not logging any This has nothing to do with the printer. I have the printer and it’s irq disabled in the pc bios and removed from the kernel and I still get it. It comes out when either an external or internal modem is used. This has been around for many many years and makes FBSD look like an inferior operating system. There has been more that enough time to correct this bogus message. Just because it causes no outward errors is not an acceptable reason to let it continue year after year and release after release. Sure would like to see it corrected in 5.0 when it comes out. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 13: 0: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 47F3A37B404 for ; Wed, 20 Mar 2002 13:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KL03O84404; Wed, 20 Mar 2002 13:00:03 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Mar 2002 13:00:03 -0800 (PST) Message-Id: <200203202100.g2KL03O84404@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: George Reid Subject: Re: bin/36141: sh dumps core Reply-To: George Reid Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/36141; it has been noted by GNATS. From: George Reid To: Jan Willem Knopper Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: bin/36141: sh dumps core Date: Wed, 20 Mar 2002 20:56:44 +0000 On Wed, Mar 20, 2002 at 07:52:31PM +0100, Jan Willem Knopper wrote: > >Description: > sh coredumps when the builtin function hash is invocated with > option -v and as an argument a full path (i.e. hash -v /bin/sh) Please try the included patch. Should apply to CURRENT or STABLE. Does sh have a MAINTAINER? Index: exec.c =================================================================== RCS file: /usr/home/ncvs/src/bin/sh/exec.c,v retrieving revision 1.16 diff -u -r1.16 exec.c --- exec.c 2 Feb 2002 06:50:46 -0000 1.16 +++ exec.c 20 Mar 2002 20:53:10 -0000 @@ -350,7 +350,10 @@ if (verbose) { if (entry.cmdtype != CMDUNKNOWN) { /* if no error msg */ cmdp = cmdlookup(name, 0); - printentry(cmdp, verbose); + if (cmdp != NULL) + printentry(cmdp, verbose); + else + outfmt(&errout, "%s: not found\n", name); } flushall(); } -- George C A Reid Tel: (08701) 200870 Ext. 26654 WWW: http://people.FreeBSD.org/~greid/ Mob: (07740) 197460 FreeBSD Committer/Developer greid@FreeBSD.org Oriel College, Oxford University george.reid@oriel.ox.ac.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 13:20:14 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5133237B41B for ; Wed, 20 Mar 2002 13:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KLK1l91927; Wed, 20 Mar 2002 13:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3700737B426 for ; Wed, 20 Mar 2002 13:13:51 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KLDpN90691; Wed, 20 Mar 2002 13:13:51 -0800 (PST) (envelope-from nobody) Message-Id: <200203202113.g2KLDpN90691@freefall.freebsd.org> Date: Wed, 20 Mar 2002 13:13:51 -0800 (PST) From: Kirill To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/36149: kernel panic with option PPP_DEFLATE for 4.5-STABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36149 >Category: kern >Synopsis: kernel panic with option PPP_DEFLATE for 4.5-STABLE >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 20 13:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Kirill >Release: 4.5 >Organization: Alpha Telecom >Environment: FreeBSD tsokol.cruiser.dod.ua 4.5-STABLE FreeBSD 4.5-STABLE #2: Sat Mar 16 17:41:33 EET 2002 root@tsokol.cruiser.dod.ua:/usr/src/sys/compile/tsokol i386 >Description: 1) system message with fatal error z_decompress0: inflate returned -2 () <118>Mar 16 17:32:06 tsokol pppd[168]: Lost compression sync: disabling compression Fatal trap 12: page fault while in kernel mode fault virtual address = 0x4 fault code = supervisor read, page not present instruction pointer = 0x8:0xc0134bdb stack pointer = 0x10:0xcccddef4 frame pointer = 0x10:0xcccddf18 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 184 (mail.local) interrupt mask = none trap number = 12 panic: page fault syncing disks... 45 done Uptime: 56s 2)message after reboot Mar 16 21:23:14 tsokol /kernel: FreeBSD 4.5-STABLE #2: Sat Mar 16 17:41:33 EET 2002 Mar 16 21:23:14 tsokol /kernel: root@tsokol.cruiser.dod.ua:/usr/src/sys/compile/tsokol Mar 16 21:23:14 tsokol /kernel: Timecounter "i8254" frequency 1193182 Hz Mar 16 21:23:14 tsokol /kernel: Timecounter "TSC" frequency 801813023 Hz Mar 16 21:23:14 tsokol /kernel: CPU: Pentium III/Pentium III Xeon/Celeron (801.81-MHz 686-class CPU) Mar 16 21:23:14 tsokol /kernel: Origin = "GenuineIntel" Id = 0x68a Stepping = 10 Mar 16 21:23:14 tsokol /kernel: Features=0x383f9ff Mar 16 21:23:14 tsokol /kernel: real memory = 268435456 (262144K bytes) 3) kernel configuration machine i386 ident tsokol maxusers 64 cpu I686_CPU # aka Pentium Pro(tm) options COMPAT_43 options SYSVSHM # include support for shared memory options SYSVSEM # include support for semaphores options SYSVMSG # include support for message queues makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols options DDB options DDB_UNATTENDED options FFS options MFS options NFS_NOSERVER options FDESC options PROCFS options CD9660 #ISO 9660 filesystem options CD9660_ROOT #CD-ROM usable as root device options SOFTUPDATES options UFS_DIRHASH options FFS_ROOT options KTRACE #kernel tracing options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options INET #Internet communications protocols device miibus # MII bus support pseudo-device ether #Generic Ethernet pseudo-device loop #Network loopback device pseudo-device bpf 4 #Berkeley packet filter pseudo-device ppp 8 options PPP_BSDCOMP options PPP_DEFLATE ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ options PPP_FILTER options IPFIREWALL options IPFIREWALL_VERBOSE pseudo-device pty #Pseudo ttys pseudo-device snp 3 #Snoop device - to look at pty/vty/etc.. device isa options AUTO_EOI_1 device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device vga0 at isa? pseudo-device splash device sc0 at isa? flags 0x100 device npx0 at nexus? port IO_NPX irq 13 device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives options ATA_STATIC_ID #Static device numbering device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 device rl # RealTek 8129/8139 device pci device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 device sio2 at isa? disable port IO_COM3 irq 5 device sio3 at isa? disable port IO_COM4 irq 9 device puc options CLK_CALIBRATION_LOOP options CLK_USE_TSC_CALIBRATION 4) nm -n /var/crash/kernel.0 | grep c0134 c01341f4 T exec_map_first_page c01343cc T exec_unmap_first_page c0134400 T exec_new_vmspace c01344c8 T exec_extract_strings c01345bc t exec_copyout_strings c0134724 T exec_check_permissions c013481c T exec_register c01348c4 T exec_unregister c0134998 T sys_exit c01349ac T exit1 c0134ec4 T owait c0134ef8 T wait4 c0134f0c t wait1 >How-To-Repeat: Please, repeat on kirill@tavrida.net >Fix: I don't no, may be look at PPP_DEFLATE and /usr/src/sys/net/ppp_deflate.c (string with line number near 556) ? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 13:24: 8 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.libertysurf.net (mail.libertysurf.net [213.36.80.91]) by hub.freebsd.org (Postfix) with ESMTP id 6F22337B404 for ; Wed, 20 Mar 2002 13:24:00 -0800 (PST) Received: from [192.168.1.129] (212.129.44.220) by mail.libertysurf.net (5.1.053) id 3C881634002CCFA9; Wed, 20 Mar 2002 22:24:56 +0100 Date: Wed, 20 Mar 2002 23:31:44 +0100 (CET) From: =?ISO-8859-1?Q?G=E9rard_Roudier?= X-X-Sender: groudier@localhost.my.domain To: George Mitchell Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: misc/35350: Can't boot on ASUS TXP In-Reply-To: <200203182340.g2INe3777575@freefall.freebsd.org> Message-ID: <20020320232952.M2154-100000@localhost.my.domain> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, 18 Mar 2002, George Mitchell wrote: > The following reply was made to PR misc/35350; it has been noted by GNATS= =2E > > From: George Mitchell > To: freebsd-gnats-submit@freebsd.org > Cc: > Subject: Re: misc/35350: Can't boot on ASUS TXP > Date: Mon, 18 Mar 2002 15:30:33 -0800 (PST) > > I tried a different motherboard (FIC VA-503+) (which works fine in other > machines on my network) and the problem did not go away. I finally > isolated it to my generic NE2000 network card. Apparently the "ex" > driver hangs up the machine when the NE2000 is there. Everything > is fine without the NE2000. > > But now I'm finding that the "sym" driver believes my NCR SCSI card > is defective, although it too has been running just fine under 3.4 > for more than two years. I built a kernel with the "ncr" driver > and without the "sym" driver and got an endless loop of error > messages. Any suggestions? Could you let us know, if possible, the messages reported by the "sym" driver. G=E9rard. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 13:36:31 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from hub.freebsd.org (24-29-115-9.nyc.rr.com [24.29.115.9]) by hub.freebsd.org (Postfix) with SMTP id 2A99D37B41D for ; Wed, 20 Mar 2002 13:36:25 -0800 (PST) From: "info@utehcno.com" Date: Wed, 20 Mar 2002 16:36:24 To: bugs@freebsd.org Subject: Good Music "A Beautiful Daye" MIME-Version: 1.0 Content-Type: text/plain;charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <20020320213625.2A99D37B41D@hub.freebsd.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org "a definite listen to...mellow" - post on audiosurge.com 'the beautiful daye,' the debut album from soul singer and poet tyren [grfx], is the best cool out CD since sade's "lover's rock." The album was created to bring the mood and set the moment, and it does with subtle soundscapes and great melodies. 'the beautiful daye' is must have for serious music collectors, of soul and downtempo music, or lovers of great music. "go out and buy this record?" - rolling out magazine 'the beautiful daye' - best when played between 8pm & 6am available at all fine music stores and amazon.com www.luv4art.com/tyren.htm produced by craig knight and e. Joaquin of saturn return; tme pro; aztek & dj prosecutor; and scars for hardboiled entertainment. info: mail@luv4art.com underground artworks entertainment To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 13:50:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BDF4037B419 for ; Wed, 20 Mar 2002 13:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KLo1p97371; Wed, 20 Mar 2002 13:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C0D0A37B417 for ; Wed, 20 Mar 2002 13:44:46 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KLikq96260; Wed, 20 Mar 2002 13:44:46 -0800 (PST) (envelope-from nobody) Message-Id: <200203202144.g2KLikq96260@freefall.freebsd.org> Date: Wed, 20 Mar 2002 13:44:46 -0800 (PST) From: Douglas De Couto To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/36150: top doesn't work when kernel manually loaded through bootloader Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36150 >Category: misc >Synopsis: top doesn't work when kernel manually loaded through bootloader >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 Mar 20 13:50:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Douglas De Couto >Release: 4.5-RELEASE >Organization: >Environment: FreeBSD the-beach.lcs.mit.edu 4.5-RELEASE FreeBSD 4.5-RELEASE #4: Wed Mar 20 15:03:37 EST 2002 root@the-beach.lcs.mit.edu:/usr/src/sys/compile/THE-BEACH i386 >Description: when loading the kernel manually in the bootloader, ``top'' doesn't work: the call to kldsym fails. when the kernel is specified as defualt kernel in /boot/loader.conf, it works >How-To-Repeat: reboot, hit space bar to get bootloader prompt boot /kernel.GENERIC login, see top fail ---- add ``kernel="/kernel.GENERIC'' to /boot/loader.conf reboot, do nothing. login, see top work >Fix: running nm on the kernel and using a test program with kldsym, the symbols that kldsym fails on are different from the ones it succeeds on, looking at the letter inthe 2nd column of the nm output. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 14:23:52 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.libertysurf.net (mail.libertysurf.net [213.36.80.91]) by hub.freebsd.org (Postfix) with ESMTP id 62FE437B417 for ; Wed, 20 Mar 2002 14:23:50 -0800 (PST) Received: from [192.168.1.129] (212.129.44.220) by mail.libertysurf.net (5.1.053) id 3C939F17000E2A17; Wed, 20 Mar 2002 23:23:50 +0100 Date: Thu, 21 Mar 2002 00:31:42 +0100 (CET) From: =?ISO-8859-1?Q?G=E9rard_Roudier?= X-X-Sender: groudier@localhost.my.domain To: George Mitchell Cc: freebsd-bugs@freeBSD.org Subject: Re: misc/35350: Can't boot on ASUS TXP In-Reply-To: <200203202149.g2KLngR0000449@m5p.com> Message-ID: <20020321001405.L2263-100000@localhost.my.domain> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, 20 Mar 2002, George Mitchell wrote: > More verbosely, here is what the kernel reported while trying to bring > up sysinstall: > > sym0: <810> port 0xd400-0xd4ff mem 0xe600000000-0xe60000ff irq 12 at devi= ce 11.0 on pci0 > sym0: no NVRAM, ID 7, fast-10, SE, parity checking > sym0: CACHE TEST FAILED: DMA error (dstat=3D0xa0).sym0: CACHE INCORRECTLY= CONFIGURED. > device_probe_and_attach: sym0 attach returned 6. > > Here's what it says during a normal boot under FreeBSD 3.4: > > ncr0: rev 0x01 int a irq 12 on pci0.11.0 > > Thanks for your attention. -- George The problem is due to a PCI BUS fault detected in a mini-script executed by the PCI chip to check accessibilty to memory from the PCI BUS. In fact sym kept with such checking performed initially by ncr, but just traps the condition. Such problem has been reported multiple times and never had been due to a driver problem, neither in sym nor in ncr. In such situation, ncr will not detect the problem, but may just repeatitively fail with such an error each time it restarts the SCSI SCRIPTS, as you reported in your previous mail. The cause could be that BUS addresses used from SCRIPTS don't point to valid memory, for example. Another cause, given that your chip does not support LOAD/STORE, could be that the MMIO addresses used from SCRIPTS to access IO registers are wrong. For the latter possible cause, it can be interesting to check if the MMIO address base used under 3.4 matches the one used on the O/S version that fails (0xe60000000 - your report has an additionnal zero, but I guess you wrote it by hand). Regards, G=E9rard. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 14:50:41 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC4EF37B42C for ; Wed, 20 Mar 2002 14:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KMo1S10542; Wed, 20 Mar 2002 14:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A89D37B438 for ; Wed, 20 Mar 2002 14:48:14 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KMmER10197; Wed, 20 Mar 2002 14:48:14 -0800 (PST) (envelope-from nobody) Message-Id: <200203202248.g2KMmER10197@freefall.freebsd.org> Date: Wed, 20 Mar 2002 14:48:14 -0800 (PST) From: Nick Jennings To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/36152: building fortunes from source, binary does not work (no datfiles installed) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36152 >Category: misc >Synopsis: building fortunes from source, binary does not work (no datfiles installed) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 20 14:50:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Nick Jennings >Release: 4.5-RELEASE (tracking RELENG_4_5 updates) >Organization: >Environment: FreeBSD punishment.xrl.nkj 4.5-STABLE FreeBSD 4.5-STABLE #0: Mon Mar 18 21:21:47 PST 2002 nick@punishment.xrl.nkj:/usr/src/sys/compile/NKJ i386 >Description: after updating 'src-all' with cvsup, I go into /usr/src/games/fortune/ and run 'make all', then 'make install'. running 'fortune' produces the following output: $ fortune /usr/share/games/fortune/fortunes: No such file or directory $ which fortune /usr/games/fortune $ ls -al /usr/share/games/fortune/ total 4 drwxr-xr-x 2 root wheel 512 Mar 17 11:44 . drwxr-xr-x 6 root wheel 512 Mar 17 11:44 .. $ >How-To-Repeat: compile and install the fortune program in /usr/src/games/fortune and then try to execute the binary (located in /usr/games/fortune). >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 15:21:44 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E34A137B481 for ; Wed, 20 Mar 2002 15:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2KNK2X20368; Wed, 20 Mar 2002 15:20:02 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Mar 2002 15:20:02 -0800 (PST) Message-Id: <200203202320.g2KNK2X20368@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Chris Faulhaber Subject: Re: kern/36149: kernel panic with option PPP_DEFLATE for 4.5-STABLE Reply-To: Chris Faulhaber Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/36149; it has been noted by GNATS. From: Chris Faulhaber To: Kirill Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/36149: kernel panic with option PPP_DEFLATE for 4.5-STABLE Date: Wed, 20 Mar 2002 18:13:14 -0500 --OgqxwSJOaUobr8KG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Mar 20, 2002 at 01:13:51PM -0800, Kirill wrote: >=20 > >Number: 36149 > >Category: kern > >Synopsis: kernel panic with option PPP_DEFLATE for 4.5-STABLE =2E.. >=20 > z_decompress0: inflate returned -2 () > <118>Mar 16 17:32:06 tsokol pppd[168]: Lost compression sync: disabling c= ompression >=20 This should be fixed with Matt Dillon's recent sys/net/zlib.c commit. Can you update and see if it is fixed for you? --=20 Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org --OgqxwSJOaUobr8KG Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: FreeBSD: The Power To Serve iEYEARECAAYFAjyZF4oACgkQObaG4P6BelDk9gCfWW4pu733ag+VA4iPjb9yoAw5 2lsAoIKBCXJY/cKGRGlsIYY8zAy9o5AE =+b5R -----END PGP SIGNATURE----- --OgqxwSJOaUobr8KG-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 17: 0:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 43B9F37B41B for ; Wed, 20 Mar 2002 17:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2L104M37949; Wed, 20 Mar 2002 17:00:04 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Mar 2002 17:00:04 -0800 (PST) Message-Id: <200203210100.g2L104M37949@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Kris Kennaway Subject: Re: misc/36152: building fortunes from source, binary does not work (no datfiles installed) Reply-To: Kris Kennaway Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/36152; it has been noted by GNATS. From: Kris Kennaway To: Nick Jennings Cc: freebsd-gnats-submit@FreeBSD.org, ru@FreeBSD.org Subject: Re: misc/36152: building fortunes from source, binary does not work (no datfiles installed) Date: Wed, 20 Mar 2002 16:57:35 -0800 On Wed, Mar 20, 2002 at 02:48:14PM -0800, Nick Jennings wrote: > >Description: > after updating 'src-all' with cvsup, I go into /usr/src/games/fortune/ and run 'make all', then 'make install'. > > running 'fortune' produces the following output: > > $ fortune > /usr/share/games/fortune/fortunes: No such file or directory > $ which fortune > /usr/games/fortune > $ ls -al /usr/share/games/fortune/ > total 4 > drwxr-xr-x 2 root wheel 512 Mar 17 11:44 . > drwxr-xr-x 6 root wheel 512 Mar 17 11:44 .. > $ > > > >How-To-Repeat: > compile and install the fortune program in /usr/src/games/fortune and then try to execute the binary (located in /usr/games/fortune). Looks like this was broken in rev 1.28 of /usr/src/games/fortune/datfiles/Makefile. Ruslan, can you investigate? Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 19:20:13 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A6F9837B41A for ; Wed, 20 Mar 2002 19:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2L3K1G77147; Wed, 20 Mar 2002 19:20:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3CB0837B404 for ; Wed, 20 Mar 2002 19:11:31 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2L3BVg76221; Wed, 20 Mar 2002 19:11:31 -0800 (PST) (envelope-from nobody) Message-Id: <200203210311.g2L3BVg76221@freefall.freebsd.org> Date: Wed, 20 Mar 2002 19:11:31 -0800 (PST) From: Nick Jennings To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/36153: /usr/src/games/fortune/README instructions for including offensive fortunes don't work. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36153 >Category: misc >Synopsis: /usr/src/games/fortune/README instructions for including offensive fortunes don't work. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 20 19:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Nick Jennings >Release: 4.5-RELEASE >Organization: >Environment: FreeBSD punishment.xrl.nkj 4.5-STABLE FreeBSD 4.5-STABLE #0: Mon Mar 18 21:21:47 PST 2002 nick@punishment.xrl.nkj:/usr/src/sys/compile/NKJ i386 >Description: This could be related to bug 'misc/36152', though I am not sure. The README file (/usr/src/games/fortune/README) says, to enable offensive fortunes "whack" the Makefile located in datfiles/ subdirectory.(by "whack" i assume delete). However, when I do this, and run a 'make all' there are errors. # rm datfiles/Makefile # make all ===> fortune Warning: Object directory not changed from original /usr/src/games/fortune/fortune ===> strfile Warning: Object directory not changed from original /usr/src/games/fortune/strfile ===> datfiles make: don't know how to make all. Stop *** Error code 2 Stop in /usr/src/games/fortune. # This error does not occur when the datfiles/Makefile exists. >How-To-Repeat: remove the datfiles/Makefile and try to compile. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 19:50: 8 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B6DB37B404 for ; Wed, 20 Mar 2002 19:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2L3o1D86366; Wed, 20 Mar 2002 19:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 63EAE37B400 for ; Wed, 20 Mar 2002 19:45:51 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2L3jpq85986; Wed, 20 Mar 2002 19:45:51 -0800 (PST) (envelope-from nobody) Message-Id: <200203210345.g2L3jpq85986@freefall.freebsd.org> Date: Wed, 20 Mar 2002 19:45:51 -0800 (PST) From: Ryan Kassel To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/36154: Getting USB mouse to work: usbd and moused conflict Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36154 >Category: misc >Synopsis: Getting USB mouse to work: usbd and moused conflict >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 20 19:50:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Ryan Kassel >Release: 4.2 >Organization: >Environment: FreeBSD villa.local.lan 4.2-RELEASE FreeBSD 4.2-RELEASE #11: Wed Mar 20 14:50:42 PST 2002 root@villa.local.lan:/usr/src/sys/i386/compile/ALLAKERN i386 >Description: Upon adding a PCI USB card to my computer and connecting a USB mouse (and making all the necessary additions to the kernel and rc.conf and /dev) I found that I got the error at bootup in the rc.i386 initialization section: moused: unable to open /dev/ums0: device busy This is caused from moused being ran twice for the same device (ums0). >How-To-Repeat: Install a USB mouse and follow the instructions at http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/hardware.html#USBMOUSE >Fix: As per http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/hardware.html#USBMOUSE section 4 should have moused_enable="NO" since usbd should handle starting up moused (it does this automatically). This way, you can hot-swap the USB device as well. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 20:50: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D0F137B419 for ; Wed, 20 Mar 2002 20:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2L4o1q96968; Wed, 20 Mar 2002 20:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 57AE237B400 for ; Wed, 20 Mar 2002 20:44:34 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2L4iYj96362; Wed, 20 Mar 2002 20:44:34 -0800 (PST) (envelope-from nobody) Message-Id: <200203210444.g2L4iYj96362@freefall.freebsd.org> Date: Wed, 20 Mar 2002 20:44:34 -0800 (PST) From: Joe Barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/36155: core program vacation broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36155 >Category: kern >Synopsis: core program vacation broken >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 Mar 20 20:50:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Joe Barbish >Release: 4.4 >Organization: none >Environment: >Description: .forward file as per example in man vacation does not work. Get command line error when -r 14 to change default 1 week time limit to 2 weeks. After first auto reply it stops replying. vacation -l to list db does not work. >How-To-Repeat: Follow man vacation instructions and try it out. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 21: 0:48 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C1B137B478; Wed, 20 Mar 2002 21:00:23 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2L50NI98062; Wed, 20 Mar 2002 21:00:23 -0800 (PST) (envelope-from kris) Date: Wed, 20 Mar 2002 21:00:23 -0800 (PST) From: Message-Id: <200203210500.g2L50NI98062@freefall.freebsd.org> To: decouto@lcs.mit.edu, kris@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/36150: top doesn't work when kernel manually loaded through bootloader Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: top doesn't work when kernel manually loaded through bootloader State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Wed Mar 20 20:59:37 PST 2002 State-Changed-Why: Expected failure: don't do that. http://www.freebsd.org/cgi/query-pr.cgi?pr=36150 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 21: 0:54 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6358037B430 for ; Wed, 20 Mar 2002 21:00:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2L506A98000; Wed, 20 Mar 2002 21:00:06 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Mar 2002 21:00:06 -0800 (PST) Message-Id: <200203210500.g2L506A98000@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Kris Kennaway Subject: Re: misc/36153: /usr/src/games/fortune/README instructions for including offensive fortunes don't work. Reply-To: Kris Kennaway Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/36153; it has been noted by GNATS. From: Kris Kennaway To: Nick Jennings Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/36153: /usr/src/games/fortune/README instructions for including offensive fortunes don't work. Date: Wed, 20 Mar 2002 20:58:47 -0800 --Dxnq1zWXvFF0Q93v Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Mar 20, 2002 at 07:11:31PM -0800, Nick Jennings wrote: > The README file (/usr/src/games/fortune/README) says, to enable > offensive fortunes "whack" the Makefile located in datfiles/ > subdirectory.(by "whack" i assume delete). No, it seems to mean "edit". > However, when I do this, and run a 'make all' there are errors. Well, yeah :) Kris --Dxnq1zWXvFF0Q93v Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8mWiHWry0BWjoQKURAlQJAJ9q7hoevOTveKXs8ARVKhSdra/xxgCgwH4f 9b0YzapnxhF3VOCK71aJ+78= =8SqH -----END PGP SIGNATURE----- --Dxnq1zWXvFF0Q93v-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 21:50:10 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3852137B404 for ; Wed, 20 Mar 2002 21:50:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2L5o3T07709; Wed, 20 Mar 2002 21:50:03 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Mar 2002 21:50:03 -0800 (PST) Message-Id: <200203210550.g2L5o3T07709@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nick Jennings Subject: Re: misc/36153: /usr/src/games/fortune/README instructions for including offensive fortunes don't work. Reply-To: Nick Jennings Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/36153; it has been noted by GNATS. From: Nick Jennings To: Kris Kennaway Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/36153: /usr/src/games/fortune/README instructions for including offensive fortunes don't work. Date: Wed, 20 Mar 2002 21:37:21 -0800 On Wed, Mar 20, 2002 at 08:58:47PM -0800, Kris Kennaway wrote: > On Wed, Mar 20, 2002 at 07:11:31PM -0800, Nick Jennings wrote: > > > The README file (/usr/src/games/fortune/README) says, to enable > > offensive fortunes "whack" the Makefile located in datfiles/ > > subdirectory.(by "whack" i assume delete). > > No, it seems to mean "edit". > Hmm, maybe the README should be a little more descriptive? Also, perhaps this related to bug 'misc/36152' and once the datfiles/Makefile is fixed for that bug it will become cleaer what part of it needs editing to enable offensive fortunes? Either way, comments in the datfiles/Makefile or README, pointing out what to change would be helpful :) -- Nick Jennings To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 20 22:32:14 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-239.dsl.lsan03.pacbell.net [64.165.226.239]) by hub.freebsd.org (Postfix) with ESMTP id 725A037B417 for ; Wed, 20 Mar 2002 22:32:12 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 8F91F66C39; Wed, 20 Mar 2002 22:32:11 -0800 (PST) Date: Wed, 20 Mar 2002 22:32:11 -0800 From: Kris Kennaway To: Nick Jennings Cc: freebsd-bugs@FreeBSD.org Subject: Re: misc/36153: /usr/src/games/fortune/README instructions for including offensive fortunes don't work. Message-ID: <20020320223211.A51682@xor.obsecurity.org> References: <200203210550.g2L5o3T07709@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200203210550.g2L5o3T07709@freefall.freebsd.org>; from nick@namodn.com on Wed, Mar 20, 2002 at 09:50:03PM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Mar 20, 2002 at 09:50:03PM -0800, Nick Jennings wrote: > Hmm, maybe the README should be a little more descriptive? Yes. > Also, perhaps this related to bug 'misc/36152' and once the > datfiles/Makefile is fixed for that bug it will become cleaer what > part of it needs editing to enable offensive fortunes? No, 36152 is a different bug as I already described. > Either way, comments in the datfiles/Makefile or README, pointing > out what to change would be helpful :) It's pretty clear in the makefile what needs changing. Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 21 0:13:21 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 102D837B41F; Thu, 21 Mar 2002 00:13:19 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2L8DFF42560; Thu, 21 Mar 2002 00:13:15 -0800 (PST) (envelope-from ru) Date: Thu, 21 Mar 2002 00:13:15 -0800 (PST) From: Message-Id: <200203210813.g2L8DFF42560@freefall.freebsd.org> To: kris@FreeBSD.org, nick@namodn.com, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, ru@FreeBSD.org Subject: Re: misc/36152: building fortunes from source, binary does not work (no datfiles installed) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: building fortunes from source, binary does not work (no datfiles installed) State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Thu Mar 21 00:08:47 PST 2002 State-Changed-Why: This particular behavior is caused by not upgrading the /usr/share/mk make(1) infrastructure first. The FILES support for was added in revision 1.86.2.6 and originator apparently has an older version installed. Unless you understand the upgrade process in details, the only correct way is through the "make world". Responsible-Changed-From-To: freebsd-bugs->ru Responsible-Changed-By: ru Responsible-Changed-When: Thu Mar 21 00:08:47 PST 2002 Responsible-Changed-Why: This particular behavior is caused by not upgrading the /usr/share/mk make(1) infrastructure first. The FILES support for was added in revision 1.86.2.6 and originator apparently has an older version installed. Unless you understand the upgrade process in details, the only correct way is through the "make world". http://www.freebsd.org/cgi/query-pr.cgi?pr=36152 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 21 1:31:18 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from claire.namodn.com (namodn.com [209.0.100.49]) by hub.freebsd.org (Postfix) with ESMTP id 70E5637B400; Thu, 21 Mar 2002 01:31:16 -0800 (PST) Received: from nick by claire.namodn.com with local (Exim 3.12 #1 (Debian)) id 16nyyg-0007EE-00; Thu, 21 Mar 2002 01:35:22 -0800 Date: Thu, 21 Mar 2002 01:35:22 -0800 From: Nick Jennings To: ru@FreeBSD.org Cc: kris@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/36152: building fortunes from source, binary does not work (no datfiles installed) Message-ID: <20020321013522.A27712@namodn.com> References: <200203210813.g2L8DFF42560@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200203210813.g2L8DFF42560@freefall.freebsd.org>; from ru@FreeBSD.org on Thu, Mar 21, 2002 at 12:13:15AM -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Mar 21, 2002 at 12:13:15AM -0800, ru@FreeBSD.org wrote: > Synopsis: building fortunes from source, binary does not work (no datfiles installed) > > State-Changed-From-To: open->closed > State-Changed-By: ru > State-Changed-When: Thu Mar 21 00:08:47 PST 2002 > State-Changed-Why: > This particular behavior is caused by not upgrading the > /usr/share/mk make(1) infrastructure first. The FILES > support for was added in revision 1.86.2.6 > and originator apparently has an older version installed. > > Unless you understand the upgrade process in details, the > only correct way is through the "make world". Thanks for the info. All I had to do was 'make install' /usr/src/share/mk/ and then go back and re-make/install fortune. -- Nick Jennings To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 21 2:22:27 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA9BB37B41B; Thu, 21 Mar 2002 02:22:19 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2LAMJL69951; Thu, 21 Mar 2002 02:22:19 -0800 (PST) (envelope-from cjc) Date: Thu, 21 Mar 2002 02:22:19 -0800 (PST) From: Message-Id: <200203211022.g2LAMJL69951@freefall.freebsd.org> To: cjc@FreeBSD.org, freebsd-bugs@FreeBSD.org, gshapiro@FreeBSD.org Subject: Re: kern/36155: sendmail's vacation documentation broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Old Synopsis: core program vacation broken New Synopsis: sendmail's vacation documentation broken Responsible-Changed-From-To: freebsd-bugs->gshapiro Responsible-Changed-By: cjc Responsible-Changed-When: Thu Mar 21 02:20:05 PST 2002 Responsible-Changed-Why: Actually, the vacation(8) program is 3rd party software included in the distribution. It is part of sendmail(8). Give this PR to the Sendmail Man. http://www.freebsd.org/cgi/query-pr.cgi?pr=36155 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 21 2:29:31 2002 Delivered-To: freebsd-bugs@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id D113837B404; Thu, 21 Mar 2002 02:29:27 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id VAA10029; Thu, 21 Mar 2002 21:29:25 +1100 Date: Thu, 21 Mar 2002 21:29:37 +1100 (EST) From: Bruce Evans X-X-Sender: To: Cc: , Subject: Re: misc/36150: top doesn't work when kernel manually loaded through bootloader In-Reply-To: <200203210500.g2L50NI98062@freefall.freebsd.org> Message-ID: <20020321212701.S13713-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, 20 Mar 2002 kris@FreeBSD.ORG wrote: > Synopsis: top doesn't work when kernel manually loaded through bootloader > > State-Changed-From-To: open->closed > State-Changed-By: kris > State-Changed-When: Wed Mar 20 20:59:37 PST 2002 > State-Changed-Why: > Expected failure: don't do that. No, this is a bug. See the followup to the open PR 17422 for a workaround. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 21 3:40:23 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 085B337B41B for ; Thu, 21 Mar 2002 03:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2LBe2v84760; Thu, 21 Mar 2002 03:40:02 -0800 (PST) (envelope-from gnats) Received: from mail.nsu.ru (mx.nsu.ru [193.124.215.71]) by hub.freebsd.org (Postfix) with ESMTP id 2355037B417 for ; Thu, 21 Mar 2002 03:32:04 -0800 (PST) Received: from regency.nsu.ru ([193.124.210.26]) by mail.nsu.ru with esmtp (Exim 3.20 #1) id 16o0nT-0006SO-00 for FreeBSD-gnats-submit@freebsd.org; Thu, 21 Mar 2002 17:31:55 +0600 Received: (from danfe@localhost) by regency.nsu.ru (8.11.6/8.11.6) id g2LBW0N28409; Thu, 21 Mar 2002 17:32:00 +0600 (NOVT) (envelope-from danfe) Message-Id: <200203211132.g2LBW0N28409@regency.nsu.ru> Date: Thu, 21 Mar 2002 17:32:00 +0600 (NOVT) From: Alexey Dokuchaev Reply-To: Alexey Dokuchaev To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/36160: Kernel halts while trying to detect CD-C68E (6-CD changers) upon bootup Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 36160 >Category: kern >Synopsis: Kernel halts while trying to detect CD-C68E (6-CD changers) upon bootup >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 21 03:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Alexey Dokuchaev >Release: FreeBSD 4.5-STABLE i386 >Organization: CNIT NSU >Environment: System: FreeBSD regency.nsu.ru 4.5-STABLE FreeBSD 4.5-STABLE #0: Wed Mar 20 18:57:15 NOVT 2002 root@regency.nsu.ru:/usr/src/sys/compile/REGENCY i386 >Description: I suspect this is related to recent major ATA-code MFC (on Mar 16 by sos). It stopped working after those bits were committed. Before that, everything worked just fine. Sorry, I do not have "boot-verbose" dmesg output handy right now, but here's my one anyway: Copyright (c) 1992-2002 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.5-STABLE #0: Wed Mar 20 18:57:15 NOVT 2002 root@regency.nsu.ru:/usr/src/sys/compile/REGENCY Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (868.64-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x68a Stepping = 10 Features=0x383f9ff real memory = 402587648 (393152K bytes) avail memory = 386838528 (377772K bytes) Preloaded elf kernel "kernel" at 0xc033b000. VESA: v2.0, 32768k memory, flags:0x1, mode table:0xc02d4b82 (1000022) VESA: ATI RAGE128 netsmb_dev: loaded Pentium Pro MTRR support enabled Using $PIR table, 11 entries at 0xc00fdec0 apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 10 pcib2: at device 30.0 on pci0 pci2: on pcib2 fxp0: port 0xa000-0xa01f mem 0xdb000000-0xdb0fffff,0xdc000000-0xdc000fff irq 11 at device 2.0 on pci2 fxp0: Ethernet address 00:51:43:e4:28:c8 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pcm0: port 0xa400-0xa43f irq 9 at device 4.0 on pci2 isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0xf000-0xf00f at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pcm1: port 0xc000-0xc03f,0xbc00-0xbcff irq 9 at device 31.5 on pci0 orm0: