From owner-freebsd-bugs Sun Jun 13 8: 0: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 71C6414D22 for ; Sun, 13 Jun 1999 08:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA79222; Sun, 13 Jun 1999 08:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 13 Jun 1999 08:00:02 -0700 (PDT) Message-Id: <199906131500.IAA79222@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: i386/12102: can't boot using the installation boot diskette made by RAWRITE Reply-To: Dag-Erling Smorgrav Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/12102; it has been noted by GNATS. From: Dag-Erling Smorgrav To: jseo@netsol.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: i386/12102: can't boot using the installation boot diskette made by RAWRITE Date: 13 Jun 1999 16:52:26 +0200 jseo@netsol.com writes: > /kernel text=0x18be72 data=0x2eb35c+0xldcc0 zf_read: fill error > > elf_loadexec: archsw.readin.failed > Can't load 'kernel' Sounds like a bad floppy. Did you try a different floppy? DES -- Dag-Erling Smorgrav - des@flood.ping.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 13 8:16:40 1999 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 06F6A15020; Sun, 13 Jun 1999 08:16:37 -0700 (PDT) (envelope-from des@flood.ping.uio.no) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.1) id RAA27434; Sun, 13 Jun 1999 17:16:36 +0200 (CEST) (envelope-from des) To: Cc: adam@veda.is, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/3244: ipfw flush closes connections References: <199906111025.DAA68756@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 13 Jun 1999 17:16:35 +0200 In-Reply-To: 's message of "Fri, 11 Jun 1999 03:25:04 -0700 (PDT)" Message-ID: Lines: 34 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org writes: > State-Changed-From-To: feedback->closed > State-Changed-By: ru > State-Changed-When: Fri Jun 11 03:19:08 PDT 1999 > State-Changed-Why: > Can't reproduce; originator doesn't respond. The correct reply is: this is perfectly normal behaviour. Even if you background your firewall script, it will produce tons of output. telnetd / sshd will attempt to send you that output, and will fail since the firewall rules needed to let that output through aren't yet installed. Depending on what shell you use, the script may continue to run in the background (in which case you can just wait a few seconds and log back in), or the shell may kill it when the telnet / ssh session closes. The only safe way to avoid this is to redirect output to a file (or /dev/null), or to disown the process (your shell will still die, but not the script): # sh /etc/firewall >ipfw.out 2>&1 or # (sh /etc/firewall &) In any case, you should not do stuff like that over a remote connection. There's a good chance of locking yourself out. You should instead to manual incremental changes: if you want to remove a rule, remove it. If you want to add a rule, add it. If you want to change a rule, add the correct version with a *higher* number than the incorrect version, *then* remove the incorrect version. DES -- Dag-Erling Smorgrav - des@flood.ping.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 13 8:30:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 44BD714DF4 for ; Sun, 13 Jun 1999 08:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA82075; Sun, 13 Jun 1999 08:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from des.follo.net (des.follo.net [195.204.143.216]) by hub.freebsd.org (Postfix) with ESMTP id DEED714C98 for ; Sun, 13 Jun 1999 08:28:25 -0700 (PDT) (envelope-from des@des.follo.net) Received: (from des@localhost) by des.follo.net (8.9.3/8.9.3) id RAA38003; Sun, 13 Jun 1999 17:28:17 +0200 (CEST) (envelope-from des) Message-Id: <199906131528.RAA38003@des.follo.net> Date: Sun, 13 Jun 1999 17:28:17 +0200 (CEST) From: des@yes.no Reply-To: des@des.follo.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/12187: [PATCH] option FAILSAFE is misnamed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12187 >Category: i386 >Synopsis: [PATCH] option FAILSAFE is misnamed >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 Jun 13 08:30:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dag-Erling Smørgrav >Release: FreeBSD 4.0-CURRENT i386 >Organization: Yes Interactive >Environment: FreeBSD 3.2-STABLE and 4.0-CURRENT >Description: The FAILSAFE option is misnamed. It is described as follows in LINT: | # When this is set, be extra conservative in various parts of the kernel | # and choose functionality over speed (on the widest variety of systems). | options FAILSAFE and in GENERIC: options FAILSAFE #Be conservative All it actually does is clear the NO_LOCK bit of CCR1 on Cyrix CPUs, *if* option CPU_CYRIX_NO_LOCK is not defined. If neither FAILSAFE nor CPU_CYRIX_NO_LOCK is defined, the NO_LOCK bit is left untouched. >How-To-Repeat: $ find /usr/src/sys -type f -name '*.[ch]' | xargs grep FAILSAFE >Fix: Apply the following patch: Index: sys/alpha/conf/GENERIC =================================================================== RCS file: /home/ncvs/src/sys/alpha/conf/GENERIC,v retrieving revision 1.24 diff -u -r1.24 GENERIC --- GENERIC 1999/06/05 13:29:56 1.24 +++ GENERIC 1999/06/13 15:21:49 @@ -44,7 +44,6 @@ options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Be pessimistic about Joe SCSI device options UCONSOLE #Allow users to grab the console -options FAILSAFE #Be conservative # Platform chipsets controller cia0 Index: sys/alpha/conf/SIMOS =================================================================== RCS file: /home/ncvs/src/sys/alpha/conf/SIMOS,v retrieving revision 1.3 diff -u -r1.3 SIMOS --- SIMOS 1998/09/26 14:49:26 1.3 +++ SIMOS 1999/06/13 15:21:59 @@ -32,7 +32,6 @@ options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=100 #Be pessimistic about Joe SCSI device options UCONSOLE #Allow users to grab the console -options FAILSAFE #Be conservative config kernel root on da0 Index: sys/conf/options =================================================================== RCS file: /home/ncvs/src/sys/conf/options,v retrieving revision 1.141 diff -u -r1.141 options --- options 1999/06/05 13:57:07 1.141 +++ options 1999/06/13 15:19:54 @@ -52,7 +52,6 @@ DDB_UNATTENDED opt_ddb.h GDB_REMOTE_CHAT opt_ddb.h DEVFS -FAILSAFE HW_WDOG KTRACE MD5 Index: sys/i386/conf/GENERIC =================================================================== RCS file: /home/ncvs/src/sys/i386/conf/GENERIC,v retrieving revision 1.172 diff -u -r1.172 GENERIC --- GENERIC 1999/05/21 04:37:35 1.172 +++ GENERIC 1999/06/13 15:19:34 @@ -38,7 +38,6 @@ options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Be pessimistic about Joe SCSI device options UCONSOLE #Allow users to grab the console -options FAILSAFE #Be conservative options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor Index: sys/i386/conf/LINT =================================================================== RCS file: /home/ncvs/src/sys/i386/conf/LINT,v retrieving revision 1.605 diff -u -r1.605 LINT --- LINT 1999/06/01 18:18:36 1.605 +++ LINT 1999/06/13 15:19:27 @@ -56,10 +56,6 @@ options MAXDSIZ="(256*1024*1024)" options DFLDSIZ="(256*1024*1024)" -# When this is set, be extra conservative in various parts of the kernel -# and choose functionality over speed (on the widest variety of systems). -options FAILSAFE - # Options for the VM subsystem #options PQ_NOOPT # No coloring options PQ_LARGECACHE # color for 512k/16k cache @@ -144,8 +140,8 @@ # mapped mode. Default is 2-way set associative mode. # # CPU_CYRIX_NO_LOCK enables weak locking for the entire address space -# of Cyrix 6x86 and 6x86MX CPUs. If this option is not set and -# FAILESAFE is defined, NO_LOCK bit of CCR1 is cleared. (NOTE 3) +# of Cyrix 6x86 and 6x86MX CPUs by setting the NO_LOCK bit of CCR1. +# Otherwise, the NO_LOCK bit of CCR1 is cleared. (NOTE 3) # # CPU_DISABLE_5X86_LSSER disables load store serialize (i.e. enables # reorder). This option should not be used if you use memory mapped Index: sys/i386/conf/options.i386 =================================================================== RCS file: /home/ncvs/src/sys/i386/conf/options.i386,v retrieving revision 1.116 diff -u -r1.116 options.i386 --- options.i386 1999/06/06 22:45:04 1.116 +++ options.i386 1999/06/13 15:18:12 @@ -43,6 +43,7 @@ CPU_BLUELIGHTNING_FPU_OP_CACHE opt_cpu.h CPU_BLUELIGHTNING_3X opt_cpu.h CPU_BTB_EN opt_cpu.h +CPU_CYRIX_NO_LOCK opt_cpu.h CPU_DIRECT_MAPPED_CACHE opt_cpu.h CPU_DISABLE_5X86_LSSER opt_cpu.h CPU_FASTER_5X86_FPU opt_cpu.h Index: sys/i386/i386/initcpu.c =================================================================== RCS file: /home/ncvs/src/sys/i386/i386/initcpu.c,v retrieving revision 1.17 diff -u -r1.17 initcpu.c --- initcpu.c 1999/01/16 13:41:33 1.17 +++ initcpu.c 1999/06/13 15:18:03 @@ -30,7 +30,6 @@ */ #include "opt_cpu.h" -#include "opt_failsafe.h" #include #include @@ -315,10 +314,8 @@ #ifdef CPU_CYRIX_NO_LOCK write_cyrix_reg(CCR1, read_cyrix_reg(CCR1) | CCR1_NO_LOCK); #else -#ifdef FAILSAFE write_cyrix_reg(CCR1, read_cyrix_reg(CCR1) & ~CCR1_NO_LOCK); #endif -#endif /* Initialize CCR2. */ #ifdef CPU_SUSP_HLT @@ -398,9 +395,7 @@ #ifdef CPU_CYRIX_NO_LOCK write_cyrix_reg(CCR1, read_cyrix_reg(CCR1) | CCR1_NO_LOCK); #else -#ifdef FAILSAFE write_cyrix_reg(CCR1, read_cyrix_reg(CCR1) & ~CCR1_NO_LOCK); -#endif #endif /* Initialize CCR2. */ Index: sys/pc98/conf/GENERIC98 =================================================================== RCS file: /home/ncvs/src/sys/pc98/conf/GENERIC98,v retrieving revision 1.75 diff -u -r1.75 GENERIC98 --- GENERIC98 1999/05/10 09:00:28 1.75 +++ GENERIC98 1999/06/13 15:23:57 @@ -44,7 +44,6 @@ #options EPSON_MEMWIN #EPSON memory window support options UCONSOLE #Allow users to grab the console #options LINE30 -options FAILSAFE #Be conservative options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor >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 Jun 13 9:10: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 431D814C88 for ; Sun, 13 Jun 1999 09:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA84150; Sun, 13 Jun 1999 09:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 13 Jun 1999 09:10:02 -0700 (PDT) Message-Id: <199906131610.JAA84150@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: i386/12187: [PATCH] option FAILSAFE is misnamed Reply-To: Dag-Erling Smorgrav Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/12187; it has been noted by GNATS. From: Dag-Erling Smorgrav To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: i386/12187: [PATCH] option FAILSAFE is misnamed Date: 13 Jun 1999 18:03:06 +0200 des@yes.no writes: > Apply the following patch: > [...] And the one I forgot: Index: sys/pci/ncr.c =================================================================== RCS file: /home/ncvs/src/sys/pci/ncr.c,v retrieving revision 1.148 diff -u -r1.148 ncr.c --- ncr.c 1999/05/26 23:01:53 1.148 +++ ncr.c 1999/06/13 15:59:53 @@ -47,7 +47,6 @@ #define NCR_GETCC_WITHMSG #if defined (__FreeBSD__) && defined(KERNEL) -#include "opt_failsafe.h" #include "opt_ncr.h" #endif /* defined(KERNEL) */ DES -- Dag-Erling Smorgrav - des@flood.ping.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 13 9:20:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EEDF015352 for ; Sun, 13 Jun 1999 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA85946; Sun, 13 Jun 1999 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id EBF4C1534A for ; Sun, 13 Jun 1999 09:16:13 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by david.siemens.de (8.9.3/8.9.3) with ESMTP id SAA13712 for ; Sun, 13 Jun 1999 18:16:13 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail1.siemens.de (8.9.3/8.9.3) with ESMTP id SAA19446 for ; Sun, 13 Jun 1999 18:16:11 +0200 (MET DST) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.9.3/8.9.3) id SAA54238 for ; Sun, 13 Jun 1999 18:16:10 +0200 (CEST) Message-Id: <199906131616.SAA23926@internal> Date: Sun, 13 Jun 1999 18:16:08 +0200 (CEST) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/12189: Can /usr/lib/aout be removed from BSD.usr.dist? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12189 >Category: conf >Synopsis: Can /usr/lib/aout be removed from BSD.usr.dist? >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 Jun 13 09:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 3.2-STABLE i386 >Organization: >Environment: FreeBSD 3.2-STABLE, don't know about -current. >Description: Since the a.out compat libs now go into /usr/lib/compat/aout, wouldn't it make sense to remove /usr/lib/aout from BSD.usr.dist? If yes, we should also change _LDC=/usr/lib/aout to _LDC=/usr/lib/compat/aout in /etc/rc and remove /usr/lib/compat/aout in /etc/defaults/rc.conf... >How-To-Repeat: >Fix: --- etc/rc.ORI Sun Jun 13 18:12:53 1999 +++ etc/rc Sun Jun 13 18:13:05 1999 @@ -294,7 +294,7 @@ if [ X"`sysctl -n hw.machine`" = X"i386" ]; then # Default the a.out ldconfig path. : ${ldconfig_paths_aout=${ldconfig_paths}} - _LDC=/usr/lib/aout + _LDC=/usr/lib/compat/aout for i in $ldconfig_paths_aout; do if test -d $i; then _LDC="${_LDC} $i" --- etc/defaults/rc.conf.ORI Sun Jun 13 18:13:43 1999 +++ etc/defaults/rc.conf Sun Jun 13 18:13:54 1999 @@ -197,7 +197,7 @@ clear_tmp_enable="NO" # Clear /tmp at startup. ldconfig_paths="/usr/lib/compat /usr/X11R6/lib /usr/local/lib" # shared library search paths -ldconfig_paths_aout="/usr/lib/compat/aout /usr/X11R6/lib/aout /usr/local/lib/aout" +ldconfig_paths_aout="/usr/X11R6/lib/aout /usr/local/lib/aout" # a.out shared library search paths kern_securelevel_enable="NO" # kernel security level (see init(8)), kern_securelevel="-1" # range: -1..3 ; `-1' is the most insecure --- etc/mtree/BSD.usr.dist.ORI Sun Jun 13 18:13:23 1999 +++ etc/mtree/BSD.usr.dist Sun Jun 13 18:13:37 1999 @@ -12,8 +12,6 @@ include .. lib - aout - .. compat aout .. >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 Jun 13 9:40: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FEE915182 for ; Sun, 13 Jun 1999 09:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA87395; Sun, 13 Jun 1999 09:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from rapidnet.com (rapidnet.com [205.164.216.1]) by hub.freebsd.org (Postfix) with ESMTP id A899E14D22 for ; Sun, 13 Jun 1999 09:32:15 -0700 (PDT) (envelope-from dpi@rapidnet.com) Received: (from dpi@localhost) by rapidnet.com (8.9.3/8.9.3) id KAA02854; Sun, 13 Jun 1999 10:32:14 -0600 (MDT) Message-Id: <199906131632.KAA02854@rapidnet.com> Date: Sun, 13 Jun 1999 10:32:14 -0600 (MDT) From: Doug Ingraham Reply-To: dpi@rapidnet.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/12190: Adaptec 2944UW not sensed at boot in 3.2 release Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12190 >Category: kern >Synopsis: Adaptec 2944UW not sensed at boot in 3.2 release >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 Jun 13 09:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Doug Ingraham >Release: FreeBSD 3.1-RELEASE i386 >Organization: RapidNet, Inc. >Environment: Pentium 166 with 256Mb ram Adaptec 2940 with 2 2gb Baracudda and 1 DAT drive. Adaptec 2944UW with 5 9gb Baracudda drives SMC 10/100 ethernet (de0) ISA VGA card (Trident) Its a small news server. >Description: system works fine under 3.1-Release but when I try to upgrade or even install 3.2-Release the 2944UW controller is not found at boot time by the kernel. >How-To-Repeat: Install a 2944UW controller into a 3.2 system and boot it. Controller will not be found. The failure occurs if the 2944UW is the only scsi device in the machine. Switch back to 3.1 and all is well. >Fix: Correct the code in the ahc driver???? I noticed that there was a significant change in the ahc driver from 3.1 to 3.2 Release in the area that detects the device ID. >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 Jun 13 9:54:28 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id 7FD6614C38 for ; Sun, 13 Jun 1999 09:54:22 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id WAA02516 for bugs@FreeBSD.ORG; Sun, 13 Jun 1999 22:53:52 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id VAA04678 for bugs@FreeBSD.ORG; Sun, 13 Jun 1999 21:56:05 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id VAA00568 for ; Sun, 13 Jun 1999 21:54:32 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Sun, 13 Jun 1999 21:54:32 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: bugs@FreeBSD.ORG Subject: tip bug Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=koi8-r Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org (please CC to me, I'm not subscribed) Dear All, I told about it several times at questions@FreeBSD.ORG, but nobody replied. I'm not sure it's a real bug. how to repeat ? $ tip omen according to remote(5), phones(5) it should dial, right ? if enough people confess this being a bug, I'm a volunteer to fix it :-) after I've graduated (few days, really !!!!) Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ) Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 13 13: 1: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from veda.is (veda.is [193.4.230.1]) by hub.freebsd.org (Postfix) with ESMTP id 747CF14C12; Sun, 13 Jun 1999 13:01:00 -0700 (PDT) (envelope-from adam@veda.is) Received: (from adam@localhost) by veda.is (8.9.0/8.9.2) id UAA15624; Sun, 13 Jun 1999 20:00:58 GMT (envelope-from adam) From: Adam David Message-Id: <199906132000.UAA15624@veda.is> Subject: Re: kern/3244: ipfw flush closes connections In-Reply-To: from Dag-Erling Smorgrav at "Jun 13, 99 05:16:35 pm" To: des@flood.ping.uio.no (Dag-Erling Smorgrav) Date: Sun, 13 Jun 1999 20:00:57 +0000 (GMT) Cc: ru@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL40 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > writes: > > State-Changed-From-To: feedback->closed > > State-Changed-By: ru > > State-Changed-When: Fri Jun 11 03:19:08 PDT 1999 > > State-Changed-Why: > > Can't reproduce; originator doesn't respond. oops... I saw the feedback state message as it happens, it was an extraordinarily busy week here. > The correct reply is: this is perfectly normal behaviour. Even if you > background your firewall script, it will produce tons of output. > telnetd / sshd will attempt to send you that output, and will fail > since the firewall rules needed to let that output through aren't yet > installed. Depending on what shell you use, the script may continue to > run in the background (in which case you can just wait a few seconds > and log back in), or the shell may kill it when the telnet / ssh > session closes. The only safe way to avoid this is to redirect output > to a file (or /dev/null), or to disown the process (your shell will > still die, but not the script): > > # sh /etc/firewall >ipfw.out 2>&1 > > or > > # (sh /etc/firewall &) I think the latter works, and there was once a time when it did not. > In any case, you should not do stuff like that over a remote > connection. There's a good chance of locking yourself out. You should > instead to manual incremental changes: if you want to remove a rule, > remove it. If you want to add a rule, add it. If you want to change a > rule, add the correct version with a *higher* number than the > incorrect version, *then* remove the incorrect version. > > DES > -- > Dag-Erling Smorgrav - des@flood.ping.uio.no Good advice, and still requiring full attention to avoid lockout. -- Adam David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 13 13:41:42 1999 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 CBC1914EDB; Sun, 13 Jun 1999 13:41:39 -0700 (PDT) (envelope-from des@flood.ping.uio.no) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.1) id WAA34960; Sun, 13 Jun 1999 22:41:37 +0200 (CEST) (envelope-from des) To: Adam David Cc: ru@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/3244: ipfw flush closes connections References: <199906132000.UAA15624@veda.is> From: Dag-Erling Smorgrav Date: 13 Jun 1999 22:41:36 +0200 In-Reply-To: Adam David's message of "Sun, 13 Jun 1999 20:00:57 +0000 (GMT)" Message-ID: Lines: 39 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Adam David writes: > > # sh /etc/firewall >ipfw.out 2>&1 > > > > or > > > > # (sh /etc/firewall &) > > I think the latter works, and there was once a time when it did not. It's a question of timing. What happens when you press enter is that your shell parses the command and forks a subshell (because of the parentheses). The subshell fork/execs /bin/sh, then exits. The parent shell (which was waiting for the subshell to terminate) prints out a new prompt. If you're out of luck, by the time your shell prints the new prompt, /bin/sh has already run 'ipfw -q flush', the firewall is temporarily impregnable, telnetd / sshd gets an EPERM or EACCES and shuts down the connection. Of course, if your firewall script produces output, the exact same problem is triggered by that output. You can fix that by redirecting the output. You can fix the trickier problem of the prompt by adding a delay to allow the shell to display its prompt before the firewall script runs: # (sleep 2 && sh /etc/firewall&)& Running the script in the background in a subshell should disown it (i.e. dissociate it from the parent shell so it's not killed when the parent shell dies), so even if you lose your connection, the script will run to completion (assuming there are no errors in it), and you should be able to reconnect once the rules to let you in are installed. This *may* vary from shell to shell; I use zsh. DES -- Dag-Erling Smorgrav - des@flood.ping.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 13 14: 5:53 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from crux.rose-hulman.edu (rosevc.rose-hulman.edu [137.112.8.2]) by hub.freebsd.org (Postfix) with ESMTP id E43AC14C1E for ; Sun, 13 Jun 1999 14:05:51 -0700 (PDT) (envelope-from mbertsch@bigfoot.com) Received: from bigfoot.com ("port 1920"@ip96.boston-xcom.ma.pub-ip.psi.net [38.26.199.96]) by RoseVC.Rose-Hulman.Edu (PMDF V5.2-32 #31849) with ESMTPA id <01JCCVPV4G6A8WYOY9@RoseVC.Rose-Hulman.Edu> for freebsd-bugs@freebsd.org; Sun, 13 Jun 1999 16:05:12 EST Date: Sun, 13 Jun 1999 17:05:44 -0400 From: Mike DeGraw-Bertsch Subject: Re: gnu/12175: gdb crashes with pids > 32736 To: dinoex.sub.org!dirk.meyer@home.dinoex.sub.org Cc: freebsd-bugs@freebsd.org Message-id: <37641D27.40AA635D@bigfoot.com> MIME-version: 1.0 X-Mailer: Mozilla 4.6 [en] (X11; U; FreeBSD 4.0-CURRENT i386) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit X-Accept-Language: en References: <199906121941.VAA83110@home.dinoex.sub.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > >Synopsis: gdb crashes with pids > 32736 I've tried to reproduce this my i386 -current machine, but have been unable to. I've successfully run gdb on crashed programs with pids over 70000. However, after looking through the gdb code, I've noticed that the pid is declared as an int; shouldn't it be declared as a pid_t? -Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 13 15:19:53 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from light1.net (unknown [207.76.225.3]) by hub.freebsd.org (Postfix) with ESMTP id 5131914BE9; Sun, 13 Jun 1999 15:19:50 -0700 (PDT) (envelope-from ruler@light1.net) Received: from localhost (ruler@localhost) by light1.net (8.9.3/8.9.1) with ESMTP id RAA18518; Sun, 13 Jun 1999 17:19:56 -0500 (CDT) Date: Sun, 13 Jun 1999 17:19:55 -0500 (CDT) From: sys admin To: support@freebsd.org, kernel@freebsd.org, bugs@freebsd.org Subject: kernel bugs? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org i just installed freebsd on another machine and when i try to recompile the kernel for quota bandlim etc, i get this error: cc -c -O -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wuninitialized -Wformat -Wunused -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I../../../include -DKERNEL -DVM_STACK -include opt_global.h -elf ../../dev/aic7xxx/aic7xxx.c /var/tmp/ccT28919.s: Assembler messages: /var/tmp/ccT28919.s:17262: Internal error! Assertion failure in cvt_frag_to_fill at /usr/src/gnu/usr.bin/binutils/as/as_i386/../../../../../contrib/binutils/gas/write.c line 534. Please report this bug. *** Error code 1 Stop. su-2.02# any help is appreciated. thanks mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 13 20:35:13 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3392E14C58; Sun, 13 Jun 1999 20:35:12 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: (from gibbs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA30112; Sun, 13 Jun 1999 20:35:12 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Date: Sun, 13 Jun 1999 20:35:12 -0700 (PDT) From: Message-Id: <199906140335.UAA30112@freefall.freebsd.org> To: dpi@rapidnet.com, gibbs@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/12190: Adaptec 2944UW not sensed at boot in 3.2 release Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Adaptec 2944UW not sensed at boot in 3.2 release State-Changed-From-To: open->closed State-Changed-By: gibbs State-Changed-When: Sun Jun 13 20:34:34 PDT 1999 State-Changed-Why: From the commit logs: revision 1.15 date: 1999/05/26 16:59:17; author: gibbs; state: Exp; lines: +21 -27 Ignore subvendor and subdevice ids for all ai7880 parts. These chips only support 'mirroring' the vendor and device ids, so we don't lose any information. Certain revisions of the aic7880 will not perform the mirroring so to match all possiblities would double the number of table entries. This change also allows us to match things like the 2944B which I missed in the original table. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Jun 13 23:20:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.dinoex.sub.org (mail.dinoex.sub.de [195.243.29.14]) by hub.freebsd.org (Postfix) with ESMTP id BBFF114C30 for ; Sun, 13 Jun 1999 23:20:15 -0700 (PDT) (envelope-from dirk.meyer@dinoex.sub.org) Received: (from uucp@localhost) by mail.dinoex.sub.org (8.9.3/8.9.3) with UUCP id IAA04509 for freebsd-bugs@freebsd.org; Mon, 14 Jun 1999 08:21:28 +0200 (CEST) Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.9.3/8.9.3) with BSMTP id HAA15774 for ; Mon, 14 Jun 1999 07:20:10 +0200 (CEST) To: freebsd-bugs@freebsd.org Message-ID: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: gnu/12175: gdb crashes with pids > 32736 Date: Mon, 14 Jun 1999 07:15:14 +0200 X-Mailer: Dinoex 1.70 References: <199906121941.VAA83110@home.dinoex.sub.org><37641D27.40AA635D@bigfoot.com> X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect v0.78] X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-Copyright: (C) Copyright 1999 by Dirk Meyer -- All rights reserved. X-PGP-Key-Avail: mailto:pgp-public-keys@keys.de.pgp.net Subject:GET 0x331CDA5D X-ZC-VIA: 19990614000000S+2@dinoex.sub.org Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > >Synopsis: gdb crashes with pids > 32736 > > I've tried to reproduce this my i386 -current machine, but have been unable to. > I've successfully run gdb on crashed programs with pids over 70000. However, > after looking through the gdb code, I've noticed that the pid is declared as an > int; shouldn't it be declared as a pid_t? FreeBSD_3.2 RELASE, USA_RESIDENT_NO, no des/crypto/kerberos. make world, ports/bash2, make install I would suggest these, I found a similar problem in the bash. The corefile generated by bash2 can't be read without aborting gdb. If you ike to run any tests let me know. I have the corefiles (bash.core and gdb.core) here. And no i can't call gdb.core with gdb either. A small test-programm with SIG11 fatal get debugged, I have to check when my pids are high again. kind regards Dirk -- Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany -- Tel. +49-5606-6512 It has the internal identification `ports/12174'. >Submitter-Id: current-users >Originator: Dirk Meyer >Organization: privat >Confidential: no >Synopsis: bash terminate with corefile if pid > 32000 >Severity: serious >Priority: medium >Category: ports >Release: FreeBSD 3.2-RELEASE i386 >Class: sw-bug >Environment: FreeBSD 3.2-RELEASE i386 running bash >Description: in comand completition bash terminates: /kernel: pid 2111 (bash), uid 1000: exited on signal 11 (core dumped) /kernel: pid 81266 (bash), uid 1000: exited on signal 11 (core dumped) /kernel: pid 81276 (bash), uid 1000: exited on signal 11 (core dumped) /kernel: pid 81301 (bash), uid 1000: exited on signal 11 (core dumped) /kernel: pid 404 (bash), uid 0: exited on signal 11 (core dumped) /kernel: pid 81322 (bash), uid 0: exited on signal 11 (core dumped) /kernel: pid 1272 (bash), uid 1000: exited on signal 11 /kernel: pid 81494 (bash), uid 0: exited on signal 11 (core dumped) >How-To-Repeat: the new pid of the system has reached a value > 32736. The shell itsel could still have an old pid in range. using key to complete a path on the command line, pressing twice to get a list that would create a question "Display all xxx possibilities? (y or n)" >Fix: this patch seem to fix the problem --- execute_cmd.c.orig Tue Jan 26 22:23:49 1999 +++ execute_cmd.c Sat Jun 12 20:58:59 1999 @@ -2207,7 +2207,8 @@ static int execute_null_command (redirects, pipe_in, pipe_out, async, old_last_command_subst_pid) REDIRECT *redirects; - int pipe_in, pipe_out, async, old_last_command_subst_pid; + int pipe_in, pipe_out, async; + pid_t old_last_command_subst_pid; { if (pipe_in != NO_PIPE || pipe_out != NO_PIPE || async) { @@ -2955,7 +2956,7 @@ { char *pathname, *command, **args; int nofork; - int pid; + pid_t pid; nofork = (cmdflags & CMD_NO_FORK); /* Don't fork, just exec, if no pipes */ pathname = words->word->word; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 0:30: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 50D9714A0B for ; Mon, 14 Jun 1999 00:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA51535; Mon, 14 Jun 1999 00:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 14 Jun 1999 00:30:02 -0700 (PDT) Message-Id: <199906140730.AAA51535@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Patrick M. Hausen" Subject: Re: kern/8318: [PATCH] Add break support to cy driver. Reply-To: "Patrick M. Hausen" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/8318; it has been noted by GNATS. From: "Patrick M. Hausen" To: freebsd-gnats-submit@freebsd.org, ajk@physics.purdue.edu Cc: Subject: Re: kern/8318: [PATCH] Add break support to cy driver. Date: Mon, 14 Jun 1999 09:20:12 +0200 Hi! I'm planning to buy a Cyclades board to connect to the consoles of our Ciscos. Break is essential so I checked the CVS repository. I'm glad to see this fixed in the driver. Please update the manpage. ;-) Still claims "BREAK unsupported" in the BUGS section. Patrick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 0:50: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A2F514C11 for ; Mon, 14 Jun 1999 00:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA53225; Mon, 14 Jun 1999 00:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 14 Jun 1999 00:50:02 -0700 (PDT) Message-Id: <199906140750.AAA53225@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ruslan Ermilov Subject: Re: conf/12189: Can /usr/lib/aout be removed from BSD.usr.dist? Reply-To: Ruslan Ermilov Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR conf/12189; it has been noted by GNATS. From: Ruslan Ermilov To: Andre Albsmeier Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: conf/12189: Can /usr/lib/aout be removed from BSD.usr.dist? Date: Mon, 14 Jun 1999 10:36:09 +0300 On Sun, Jun 13, 1999 at 06:16:08PM +0200, Andre Albsmeier wrote: > > Since the a.out compat libs now go into /usr/lib/compat/aout, > wouldn't it make sense to remove /usr/lib/aout from BSD.usr.dist? > /usr/lib/aout is not for compat stuff, it is intended for current a.out libraries (``world'' compiled with -DWANT_AOUT). Can I close this PR? -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@freebsd.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 1:36:34 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 41D26151DB; Mon, 14 Jun 1999 01:36:33 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA57518; Mon, 14 Jun 1999 01:36:32 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Mon, 14 Jun 1999 01:36:32 -0700 (PDT) From: Message-Id: <199906140836.BAA57518@freefall.freebsd.org> To: icbmx2@yahoo.com, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/11933: crontab bug in 3.2-R ??? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: crontab bug in 3.2-R ??? State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Mon Jun 14 01:34:15 PDT 1999 State-Changed-Why: User field only exists in /etc/crontab. cron(8): Cron searches /var/cron/tabs for crontab files which are named after ac- counts in /etc/passwd; crontabs found are loaded into memory. Cron also searches for /etc/crontab which is in a different format (see crontab(5)). ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ crontab(5): The format of a cron command is very much the V7 standard, with a number of upward-compatible extensions. Each line has five time and date fields, followed by a user name (with optional ``:'' and ``/'' suffixes) if this is the system crontab file, followed by a ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ command. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 1:57:55 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id 95C1E1527E for ; Mon, 14 Jun 1999 01:57:49 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id OAA09044; Mon, 14 Jun 1999 14:54:34 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id NAA05552; Mon, 14 Jun 1999 13:59:24 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id NAA00444; Mon, 14 Jun 1999 13:59:22 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Mon, 14 Jun 1999 13:59:22 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: Tim Vanderhoek Cc: bugs@FreeBSD.ORG Subject: Re: tip bug In-Reply-To: <19990613165934.B75238@ppp18400.on.bellglobal.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 13 Jun 1999, Tim Vanderhoek wrote: > On Sun, Jun 13, 1999 at 09:54:32PM +0600, Ilia Chipitsine wrote: > > (please CC to me, I'm not subscribed) > > > > Dear All, > > > > I told about it several times at questions@FreeBSD.ORG, but nobody > > replied. I'm not sure it's a real bug. > > > > how to repeat ? > > $ tip omen > > > > according to remote(5), phones(5) it should dial, right ? > > Well, you need to have a modem and to have /etc/remote configured to > use this modem... > > I'll give you the benefit of the doubt on having a modem, but I bet > /etc/remote isn't configure to use it. :-) it's not about modem configuration, after you have added your modem, type $ tip omen it's all about pn=\@ > > These days, your PC probably has the mouse on /dev/cuaa0 and the modem > on /dev/cuaa1. > > > -- > This is my .signature which gets appended to the end of my messages. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 3: 3: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D779A15074; Mon, 14 Jun 1999 03:03:08 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA65861; Mon, 14 Jun 1999 03:03:08 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Mon, 14 Jun 1999 03:03:08 -0700 (PDT) From: Message-Id: <199906141003.DAA65861@freefall.freebsd.org> To: icar@hosteng.org, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/4939: uuxqt unable to execute rnews program Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: uuxqt unable to execute rnews program State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Mon Jun 14 03:00:53 PDT 1999 State-Changed-Why: Fixed by torstenb in src/gnu/libexec/uucp/uuxqt/Makefile, revs 1.9 and 1.8.2.1. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 4: 8:40 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2AA2B14DB1; Mon, 14 Jun 1999 04:08:38 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA75585; Mon, 14 Jun 1999 04:08:38 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Mon, 14 Jun 1999 04:08:38 -0700 (PDT) From: Message-Id: <199906141108.EAA75585@freefall.freebsd.org> To: jin@adv-pc-1.lbl.gov, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, ru@FreeBSD.org Subject: Re: bin/5084: wrong "term" for internal shell Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: wrong "term" for internal shell State-Changed-From-To: open->analyzed State-Changed-By: ru State-Changed-When: Mon Jun 14 03:49:55 PDT 1999 State-Changed-Why: `su'' is the default terminal type. See login.conf(5) for details. The associated code is in src/lib/libutil/login_class.c. I think we should leave TERM empty, but I'm not sure. Will check with freebsd-hackers. Responsible-Changed-From-To: freebsd-bugs->ru Responsible-Changed-By: ru Responsible-Changed-When: Mon Jun 14 03:49:55 PDT 1999 Responsible-Changed-Why: I'm taking this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 5:34:42 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AB0C31530D; Mon, 14 Jun 1999 05:34:40 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA83553; Mon, 14 Jun 1999 05:34:40 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Mon, 14 Jun 1999 05:34:40 -0700 (PDT) From: Message-Id: <199906141234.FAA83553@freefall.freebsd.org> To: mi@aldan.algebra.com, sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/7063: mount fails if $PWD does not exist Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mount fails if $PWD does not exist State-Changed-From-To: suspended->closed State-Changed-By: sheldonh State-Changed-When: Mon Jun 14 05:30:23 PDT 1999 State-Changed-Why: Submitter confirms that the problem has been fixed since the report. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 7:20: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 013741530D for ; Mon, 14 Jun 1999 07:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA62407; Mon, 14 Jun 1999 07:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3A34015349; Mon, 14 Jun 1999 07:17:44 -0700 (PDT) Message-Id: <19990614141744.3A34015349@hub.freebsd.org> Date: Mon, 14 Jun 1999 07:17:44 -0700 (PDT) From: jobaldwi@vt.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/12205: [PATCH] DHCP client does not set hostnames, and garbles them as well Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12205 >Category: bin >Synopsis: [PATCH] DHCP client does not set hostnames, and garbles them as well >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 14 07:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: John Baldwin >Release: 3.2-STABLE >Organization: >Environment: FreeBSD xxxxxxx.xxxxx.vt.edu 3.2-STABLE FreeBSD 3.2-STABLE #2: Sat Jun 5 18:57: 30 EDT 1999 root@xxxxxxx.xxxxx.vt.edu:/usr/source/src/sys/compile/SNOWCOW i 386 >Description: The dhcp client in /usr/src/contrib/isc-dhcp does not support setting hostnames. Also, it currently sets the hostname to a hexadecimal representation of the hostname instead of the actual text. (Sigh.) >How-To-Repeat: Well, you need a dhcp server setup that sends hostnames, and a client that requests hostnames. Then, boot the system. The hostname will not be set. Then, apply the first patch to /usr/src/contrib/isc-dhcp/clients/scripts/freebsd and the hostname will be set to a long, annoying, hex string. Finally, apply the second patch to /usr/src/contrib/isc-dhcp/common/tables.c and the hostname will be set properly. >Fix: This is a patch to /usr/src/contrib/isc-dhcp/client/scripts/freebsd: Index: freebsd =================================================================== RCS file: /src/cvs/src/contrib/isc-dhcp/client/scripts/freebsd,v retrieving revision 1.1.1.2.2.3 diff -r1.1.1.2.2.3 freebsd 32a33,41 > if [ x$new_host_name != x ]; then > $LOGGER New Host Name: $new_host_name > new_host_name_arg=$new_host_name > fi > > if [ x$old_host_name != x ]; then > old_host_name_arg=$old_host_name > fi > 82a92,96 > if [ x$old_host_name = x ] || \ > [ x$old_host_name != x$new_host_name ] || \ > [ x$reason = xBOUND ] || [x$reason = xREBOOT]; then > hostname "$new_host_name_arg" > fi 159a174 > hostname $new_host_name_arg This is a patch to /usr/src/contrib/isc-dhcp/common/tables.c: Index: tables.c =================================================================== RCS file: /src/cvs/src/contrib/isc-dhcp/common/tables.c,v retrieving revision 1.1.1.2.2.2 diff -r1.1.1.2.2.2 tables.c 81c81 < { "host-name", "X", &dhcp_universe, 12 }, --- > { "host-name", "t", &dhcp_universe, 12 }, >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 Jun 14 7:37:25 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C3F2415322; Mon, 14 Jun 1999 07:37:24 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA64570; Mon, 14 Jun 1999 07:37:24 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Mon, 14 Jun 1999 07:37:24 -0700 (PDT) From: Message-Id: <199906141437.HAA64570@freefall.freebsd.org> To: andre.albsmeier@mchp.siemens.de, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/12189: Can /usr/lib/aout be removed from BSD.usr.dist? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Can /usr/lib/aout be removed from BSD.usr.dist? State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Mon Jun 14 07:32:36 PDT 1999 State-Changed-Why: /usr/lib/aout is required for *current* a.out libraries, not for compatibility stuff. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 8:27: 0 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.26.10.9]) by hub.freebsd.org (Postfix) with ESMTP id 07EE614BD8 for ; Mon, 14 Jun 1999 08:26:56 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id BAA07845; Tue, 15 Jun 1999 01:26:55 +1000 Date: Tue, 15 Jun 1999 01:26:55 +1000 From: Bruce Evans Message-Id: <199906141526.BAA07845@godzilla.zeta.org.au> To: freebsd-bugs@FreeBSD.ORG, hausen@punkt.de Subject: Re: kern/8318: [PATCH] Add break support to cy driver. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I'm glad to see this fixed in the driver. > Please update the manpage. ;-) Still claims > "BREAK unsupported" in the BUGS section. Done. Only the caveats about the speed limits are out of date now :-). (They depend on the hardware version.) Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 10: 0: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 93DC11536C for ; Mon, 14 Jun 1999 10:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA78866; Mon, 14 Jun 1999 10:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from news.uni-kl.de (news.uni-kl.de [131.246.137.51]) by hub.freebsd.org (Postfix) with SMTP id 4CB7D15418 for ; Mon, 14 Jun 1999 09:58:53 -0700 (PDT) (envelope-from naddy@unix-ag.uni-kl.de) Received: from sushi.unix-ag.uni-kl.de ( root@sushi.unix-ag.uni-kl.de [131.246.89.13] ) by news.uni-kl.de id aa00471 for ; 14 Jun 1999 19:00 MESZ Received: from fettuccini.unix-ag.uni-kl.de (fettuccini.unix-ag.uni-kl.de [131.246.89.27]) by sushi.unix-ag.uni-kl.de (8.9.1a/8.9.1) with ESMTP id SAA25426 for ; Mon, 14 Jun 1999 18:58:33 +0200 Received: (from naddy@localhost) by fettuccini.unix-ag.uni-kl.de (8.9.3/8.9.3) id SAA48344; Mon, 14 Jun 1999 18:58:44 +0200 (CEST) (envelope-from naddy) Message-Id: <199906141658.SAA48344@fettuccini.unix-ag.uni-kl.de> Date: Mon, 14 Jun 1999 18:58:44 +0200 (CEST) From: Christian Weisgerber Reply-To: naddy@unix-ag.uni-kl.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/12209: termcap: "xterm" entry defines bogus capabilities Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12209 >Category: misc >Synopsis: termcap: "xterm" entry defines bogus capabilities >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 14 10:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 3.2-RELEASE i386 >Organization: Unix-AG, Uni Kaiserslautern >Environment: screen 3.7.6 from ports/misc/screen. >Description: When running inside xterm, screen will write the status line messages inside the window rather than in the customary pseudo-status line at the bottom. A quick examination of the problem reveals that the "xterm" termcap entry is broken. It defines control sequences for the handling of a dedicated status line that xterm simply doesn't implement. (The codes are apparently those used by kterm.) I verified that these control sequences (capabilities: hs, es, ts, fs, ds) are not implemented by (1) checking the source of xterm and (2) asking Thomas Dickey , the current maintainer of xterm. >How-To-Repeat: Start screen inside xterm, hit ^Aw. >Fix: Remove the bogus capabilities from the "xterm" termcap entry. --- termcap.old Tue May 18 05:40:07 1999 +++ termcap Mon Jun 14 18:37:22 1999 @@ -298,8 +298,7 @@ xterm|vs100|xterm terminal emulator (X window system):\ :li#65:\ :kh=\EOH:@7=\EOF:kb=^H:kD=^?:\ - :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:\ - :hs:km:ts=\E[?E\E[?%i%dT:fs=\E[?F:es:ds=\E[?E:\ + :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:km:\ :is=\E>\E[?1;3;4;5l\E[?7;8h\E[1;65r\E[65;1H:\ :rs=\E>\E[?1;3;4;5l\E[?7;8h:\ :tc=vt220: >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 Jun 14 11: 0:43 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EC1B91537E for ; Mon, 14 Jun 1999 11:00:16 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA84735 for freebsd-bugs@freebsd.org; Mon, 14 Jun 1999 11:00:08 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 14 Jun 1999 11:00:08 -0700 (PDT) Message-Id: <199906141800.LAA84735@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1997/03/08] kern/2923 panic: vm_fault: fault on nofault entry, o [1997/06/01] kern/3752 peter NFS dirs under -current still have proble o [1997/06/01] kern/3753 peter "make" hangs when building in an NFS dir o [1997/07/03] kern/4021 peter Local mount of a local NFS exported direc o [1997/07/31] kern/4200 peter NFS: "vm_fault: fault on nofault entry" w o [1997/10/01] kern/4673 Two panics, now crash dumps, always in re o [1997/11/10] kern/4996 peter NFS crash, possibly related to file bigge o [1997/11/24] bin/5139 portmap does not find interfaces correctl f [1997/12/21] kern/5355 Fix for NULLFS problems o [1998/02/03] kern/5641 running processes at the IDLE priority (i o [1998/02/10] kern/5703 CDROM Media Error triggers complete syste o [1998/03/23] bin/6121 peter gethostbyname(3) no longer returns NO_DAT o [1998/05/13] bin/6627 TCP-based RPC denial-of-service attack s [1998/05/13] kern/6630 [PATCH] Fix for Cyrix I8254 bug o [1998/05/19] kern/6689 kern_physio.c splits requests breaking cd o [1998/06/14] i386/6944 icu_ipl.s does has a case commented as ca o [1998/06/23] kern/7028 Panic in vinvalbuf when appending/looking o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/08/15] kern/7622 Kernel panic with Fatal trap 18. o [1998/08/16] i386/7633 panic: page fault on install with boot.fl s [1998/08/17] kern/7649 fenner [MFC] /sys/netinet/if_ether.c: "permanent o [1998/09/03] kern/7822 Machine Reboots without reason o [1998/09/06] kern/7843 Unable to install FreeBSD on Tekram DC-39 o [1998/09/08] i386/7859 fatal trap 12 in midi_synth_input o [1998/09/14] kern/7927 Fatal trap 12: page fault while in kernel o [1998/09/28] kern/8074 se CAM rescan operation fatal o [1998/10/03] gnu/8138 peter gcc -pipe xxx.s hangs o [1998/10/06] i386/8179 Install failure with motherbord using SIS o [1998/10/08] i386/8214 Install 3.0-19981006-BETA fails o [1998/10/16] kern/8345 mmap(2) hangs when dealing with certain f o [1998/10/27] kern/8473 Excessive virtual memory consumption with o [1998/11/01] kern/8532 3.0-RELEASE panics with standard SMP kern o [1998/11/04] conf/8576 server goes down when client mount its fi a [1998/11/08] ports/8609 nectar eklogin service (kerberos klogind) fails o [1998/11/12] i386/8673 bug in vm_page_alloc_contig() o [1998/11/21] i386/8787 install process hangs while adding defaul o [1998/11/24] ports/8829 torstenb Fix port: security/ssh o [1998/11/24] kern/8851 mounting an unconfigured device causes a o [1998/11/25] kern/8861 under heavy (multi interface) traffic ep0 o [1998/12/01] i386/8922 can't detect wdc1 on Abit LX6 motherboard o [1998/12/05] kern/8973 trap 12: page fault while in kernel mode o [1998/12/09] kern/9036 Boot 3.0-Release hangs with BT-445S after o [1998/12/14] kern/9081 3.0-RELEASE dies starting AP on dual PPro a [1998/12/22] kern/9178 -current ipfw.ko with ELF kernel doesn't o [1998/12/30] kern/9249 Panic on 2.2.8-STABLE when accessing wcd o [1999/01/03] kern/9294 IDE controller not being detected even wi o [1999/01/05] kern/9334 cp fails for 2048 Bytes/sector media o [1999/01/13] kern/9479 timeout while detect SCSI disks in recent o [1999/01/26] i386/9709 Kernel page faults during boot with 2GB R o [1999/01/27] kern/9742 tx driver for smc autodetects fine, but n o [1999/02/02] misc/9885 BIND 8.1.2 core dumping o [1999/02/04] kern/9909 Writing incomplete blocks to /dev/nrst0 h o [1999/02/19] kern/10166 panic during heavy sio i/o;no coproc; ves o [1999/02/20] kern/10172 panic: cannot allocate pipe - out of kvm o [1999/02/21] i386/10188 Cannot get system to boot after Installti o [1999/02/23] kern/10224 panic: pipeinit: cannot allocate pipe -- s [1999/02/26] kern/10281 Crash of 3.1-STABLE system due to scsi er o [1999/02/26] i386/10282 PCMCIA problems in 3.1-RELEASE? o [1999/03/01] kern/10332 System freezes during certain SCSI activi o [1999/03/01] bin/10344 Core dump in gethostbyaddr for 199.93.70. o [1999/03/02] kern/10357 spontaneous crashes o [1999/03/05] kern/10397 3.1R page fault while in kernel mode, fro o [1999/03/05] i386/10400 missing some library files... o [1999/03/07] misc/10473 Incorrect aout compat libraries in XF8633 o [1999/03/09] kern/10507 Process hangs in state VM pgd o [1999/03/09] misc/10509 Cvs can hang system when used with pserve o [1999/03/09] kern/10520 can't exec files under nullfs o [1999/03/11] kern/10542 page fault while in kernel mode, not kern o [1999/03/11] kern/10545 When a fork/exec stress test is run, the o [1999/03/12] misc/10566 obrien patch dhcpc problem on /etc/pccard_ether o [1999/03/17] kern/10636 ipfw problems o [1999/03/19] i386/10683 I have a buslogic BT-948 FW controller. W o [1999/03/20] i386/10690 Installation freezes after device selecti f [1999/03/20] kern/10701 ppbus printing problems o [1999/03/22] ports/10725stb Wrong Cyrus IMAP deliver group o [1999/03/23] bin/10744 call to login() from aout/libutil.so.2.2 o [1999/03/23] kern/10752 Kernel panic (?) trap 12: page fault whil o [1999/03/27] kern/10828 3.1-STABLE freezes when writing to floppy o [1999/03/29] kern/10866 ahc2740 panic o [1999/03/30] kern/10872 Panic in sorecieve() due to NULL mbuf poi o [1999/03/31] kern/10886 kernel tries to initialize xl driver in 3 o [1999/03/31] i386/10895 kernel panic on boot o [1999/04/05] i386/10958 failed to "make world" after "cd /usr/sr o [1999/04/05] kern/10959 3.1-STABLE crashes due to a floppy mount o [1999/04/05] ports/10965obrien lcc-3.6 unable to compile anything o [1999/04/05] misc/10972 NTPv$ 92e fails to buuild on stable-3.1 p o [1999/04/08] kern/11023 Synchronous PPP not functional in leased o [1999/04/08] gnu/11038 tar needs bzip2 from ports o [1999/04/09] kern/11047 I cannot read from the kern.flp floppy I o [1999/04/13] kern/11112 Amanda on FreeBSD can wipe the _next_ tap o [1999/04/14] kern/11132 panic: ufs_dirbad: bad dir o [1999/04/16] kern/11180 boot of fresh bsd3.1 hangs o [1999/04/17] kern/11196 kernel mode page fault o [1999/04/19] misc/11216 Power fail versus Fsck changed my life. o [1999/04/19] kern/11226 Invalid files on disk after fsync o [1999/04/20] kern/11238 Synchronous PPP not functional in leased o [1999/04/20] kern/11241 Install fails after SCSI probe o [1999/04/21] ports/11263chuckr lister.lo listed twice in a2ps-4.12's lib o [1999/04/21] i386/11268 DEC FDDI PCI Adapter doesn't work... o [1999/04/22] i386/11278 FreeBSD Version 3.1 reboots repeatedly (c o [1999/04/23] i386/11298 Enabling IDE DMA on Opti Viper-M crashes o [1999/04/26] kern/11330 page fault in generic_bzero o [1999/04/26] bin/11335 find hangs in `nfsrcv' on local filesyste o [1999/04/26] conf/11343 worm; problems with installation and boot o [1999/04/26] i386/11349 Error Mounting /dev/wd0s1 on dist during o [1999/04/27] kern/11351 system reboot for error with popper and d o [1999/04/27] kern/11359 rvplayer 5.0 (Linux) cases ncr PCI SCSI d o [1999/04/28] bin/11374 MAN program problems o [1999/04/29] kern/11380 PAO3 won't recognize a USR/Megahertz PCMC o [1999/05/01] kern/11434 can't boot from wd0s2a o [1999/05/03] kern/11470 V3 NFS problem o [1999/05/04] i386/11488 Error while starting FreeBSD o [1999/05/06] kern/11533 NFS v3 locks up on large file transfers o [1999/05/10] kern/11629 File descriptor table sharing is broken o [1999/05/12] kern/11680 server freezes, all processes stuck in "i o [1999/05/13] i386/11681 gibbs Adaptec 2940 UW SCSI Controller BIOS 1.34 o [1999/05/14] kern/11707 ncr isn't recognized in 3.1-19990512-STAB o [1999/05/16] kern/11737 MFS panics on mount in checkalias() f [1999/05/17] bin/11744 perllib fails to build o [1999/05/18] i386/11772 kern.flp gives "Disk error 0x4 No /boot/l f [1999/05/22] bin/11857 sheldonh portmap can't resolv classless ip address o [1999/05/24] kern/11869 Network hangging due to xl0: tx underrun o [1999/05/26] kern/11891 typo in ioconf.c o [1999/05/29] i386/11926 Boot manager only beeps at selecting boot o [1999/05/31] kern/11966 TCP copies send and receive socket buffer o [1999/06/01] kern/11984 pthread_kill cannot kill select() threads o [1999/06/02] kern/11988 recvmsg with a cmsghdr but no iovec is br o [1999/06/02] kern/11993 panic: getnewbuf: inconsistent EMPTY queu o [1999/06/05] kern/12041 Crashes on startup if Zip drive is switch o [1999/06/06] conf/12050 No /sbin/init on fixit flop o [1999/06/07] kern/12072 vm_fault happened in binary file transfer o [1999/06/09] ports/12098se KDM not config'd properly o [1999/06/09] kern/12106 error 6: panic: cannot mount root o [1999/06/10] kern/12127 persistent crash on idle SMP system 134 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1995/03/02] misc/229 bde acos() core dump a [1995/03/20] kern/260 davidg msync and munmap don't bother to update m s [1995/05/16] kern/425 arp entries not getting removed when inte f [1995/06/17] kern/527 dufault dump causes assertion in ncr.c o [1995/07/02] kern/579 bde sio: RS_IBUFSIZE at 256 bytes serial line o [1995/10/18] bin/786 wpaul Problem with NIS and large group maps f [1996/05/26] kern/1256 ZNYX 314 mysterously looses packets o [1996/06/07] kern/1301 davidg DEC FDDI/PCI Adapter: halt code = 6 (DMA f [1996/08/03] bin/1461 Incorrect address binding of Kerberized r f [1996/08/04] kern/1467 mjacob scsi_prevent causing tape problems on clo f [1996/08/22] kern/1533 dyson Machine can be panicked by a userland pro o [1996/09/19] bin/1650 telnet encryption with char-mode and asci o [1996/09/29] kern/1689 wollman TCP extensions throttles distant connecti o [1996/10/04] kern/1726 panic in kmem_malloc (dump available) o [1996/10/08] kern/1744 peter run queue or proc list smashed 4 times in o [1996/10/15] kern/1812 dg vnodes are left in a locked state o [1996/10/15] kern/1814 cy driver gets deadlocked sometimes o [1996/10/20] kern/1848 breakpoints may be set in shared librarie f [1996/10/21] kern/1856 peter read-only nfs mount: panic leaf should be s [1996/10/26] bin/1892 install(1) removes target file s [1996/11/08] gnu/1981 ypserv handles null key incorrectly a [1996/11/13] bin/2001 vi confused about lines to display a [1996/11/14] kern/2014 sos Console keyboard lockup problem o [1996/11/18] kern/2053 peter de0 driver don't work at 100M for Compex o [1996/12/22] kern/2270 Hayes ESP serial card locks system as of a [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA o [1996/12/30] kern/2330 changing root device to sd0a - ncr0: abor f [1997/01/03] conf/2367 gibbs Buslogic SCSI driver bad probe of 742A EI o [1997/01/09] bin/2430 mountd stops on loading if subnet mask is a [1997/01/21] bin/2549 sos cdcontrol refuses to play audio CDs from o [1997/02/02] kern/2640 2.2-RELENG leaks memory (router/pppd serv s [1997/02/03] kern/2647 changing existing route to -static crashe o [1997/02/05] kern/2667 wollman bpfattach can hang the system a [1997/02/06] kern/2675 lkmcioctl() is not consistent and careful o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/08] kern/2695 sio1 (16540 serial port) is not recognize o [1997/02/09] kern/2698 After rewind I cannot read a tape; blocks o [1997/02/12] kern/2719 added support for magneto-optical SCSI di o [1997/02/15] kern/2742 panic: leaf should be empty o [1997/02/15] bin/2747 davidn cannot submit at jobs from within an at j o [1997/02/16] gnu/2749 peter cvs export using remote cvs fails - CVS/T o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/19] bin/2769 fsck needs several runs to clean up bad/d o [1997/02/19] kern/2770 panic: vm_fault: fault on nofault entry o [1997/02/19] kern/2771 panic: bad dir o [1997/02/19] kern/2773 peter bad dir panic o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable o [1997/02/20] gnu/2786 gcc version 2.7.2.1 C compiler slows down o [1997/02/22] kern/2800 DDS large data writing probrem o [1997/03/01] kern/2840 mlock+minherit+fork+munlock causes panics o [1997/03/03] kern/2858 peter FreeBSD NFS client can't mount filesystem o [1997/03/04] kern/2873 the od0 devies does not handle a Maxoptix o [1997/03/08] kern/2919 vm_fault: fault on nofault entry, addr: f o [1997/03/11] bin/2948 can't dump 640MB optical disks o [1997/03/12] kern/2965 st0 hang/fail on reading 4mm DAT tape for o [1997/03/12] bin/2973 output of iostat is wrong. o [1997/03/15] kern/2991 RTF_LLINFO routes remain when interface i o [1997/03/18] kern/3021 panic after sync during reboot o [1997/03/21] bin/3055 umount -f does not work o [1997/04/01] bin/3170 vi freaks and dump core if user doesn't e o [1997/04/05] kern/3201 peter de0 not re-enabled after hub down o [1997/04/06] kern/3216 panic: pmap_zero_page: CMAP busy o [1997/04/06] kern/3219 sppp or arnet gets looped after connectio o [1997/04/15] bin/3305 Can't do encrypted rlogin into self o [1997/04/25] kern/3381 peter 2.2.x kernel panic on traversing and remo o [1997/04/25] kern/3384 telldir-seekdir can cause livelock o [1997/05/01] gnu/3441 obrien C++ exceptions don't work in shared libra o [1997/05/01] kern/3463 netstat -I packet count increase on sl0 w f [1997/05/04] i386/3502 Merge of if_ix* and if_ie* broke EE/16 su o [1997/05/06] bin/3524 imp rlogin doesn't read $HOSTALIASES for non- o [1997/05/07] kern/3527 peter if_de.c doesn't recognize Kingston card p o [1997/05/09] kern/3564 using MPU401 driver pagefaults kernel o [1997/05/09] kern/3569 ex0 driver doesn't work with EtherExpress o [1997/05/12] kern/3579 peter de driver doesn't support newer SMC 9332 o [1997/05/12] kern/3581 intermittent trap 12 in lockstatus() o [1997/05/12] kern/3582 panic: bad dir (mangled entry) in 2.2-STA s [1997/05/25] kern/3685 [PATCH] panic: fdesc attr o [1997/05/30] kern/3726 peter process hangs in 2.2-stable when working o [1997/05/30] kern/3727 SCSI II tape support broken o [1997/06/03] kern/3771 NFS hangs when writing to local FS re-mou o [1997/06/04] i386/3779 changing cursor to blinking block causes o [1997/06/08] gnu/3810 cvs can't handle multiple multiple-path d o [1997/06/18] kern/3899 df while unmounting floppy crashes 2.2.2 o [1997/06/19] kern/3909 joerg A patch supporting some new worm drivers o [1997/06/19] gnu/3910 sort(1) of 2.2.1R doesn't work in special o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati o [1997/06/29] bin/3986 rdist seg faults when target machine is d o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f o [1997/07/02] misc/4013 boot floppy hangs if IDE ZIP Drive presen s [1997/07/06] gnu/4042 gdb stackframe in static library shows no o [1997/07/12] bin/4078 sos Typed password to log in on console and i o [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator o [1997/07/26] bin/4176 restore gets confused when run over pipe f [1997/07/27] ports/4179 fenner lmbench-1.1 dumps core after asking for m o [1997/07/28] kern/4186 peter nfsiod, panic, page fault in kernel mode o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/06] kern/4240 kernel fails to recognise 2nd serial port o [1997/08/08] conf/4252 peter sendmail doesn't use smrsh by default o [1997/08/10] kern/4260 EOF handling in st(4) is broken o [1997/08/10] kern/4265 Panic in dsinit when multiple FreeBSD sli o [1997/08/10] kern/4270 ch driver does not use bounce buffers o [1997/08/12] kern/4284 le0 goes OACTIVE after some time o [1997/08/13] kern/4295 SL/IP difficulties between 2.2.1 & 2.2.2 o [1997/08/16] kern/4312 arp table gets messed up, syslog "gateway o [1997/08/17] kern/4327 peter NFS over TCP reconnect problem s [1997/08/19] kern/4338 New device driver (Cyclades Cyclom-Z) o [1997/08/22] bin/4357 wosch bug in adduser script causes duplicate UI o [1997/08/23] bin/4366 bad144 crashes if checking over 2gb o [1997/08/25] kern/4381 mount -t msdos causes panic:vm_fault o [1997/08/25] kern/4382 CURRENT kernel has a "free vnode isn't" p o [1997/09/02] kern/4454 X drops characters/locks up keyboard when o [1997/09/03] bin/4460 lpd hangs exiting (IE in ps table) o [1997/09/07] kern/4487 Kernel panic executing a directory o [1997/09/08] bin/4497 Reverse DNS fails for some CIDR *.IN-ADDR o [1997/09/10] kern/4508 peter nfs3 data integrity problems o [1997/09/11] kern/4513 System lockup appears to be VM related. o [1997/09/14] i386/4533 Server with Cyclom-Y PCI card rebooted at o [1997/09/14] kern/4544 Linux emulator problems when MAXDSIZ is i o [1997/09/19] bin/4582 integer overflow in 'sa -km' o [1997/09/20] kern/4588 peter NFS access locks up o [1997/09/21] kern/4600 peter nfs lookups might give incorrect result o [1997/09/30] kern/4663 checkalias panic o [1997/10/01] kern/4666 dfr umount -f doesn't seem to work o [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/03] bin/4683 imp restore doesn't correctly handle "sparse" o [1997/10/05] docs/4691 no documentation for mk_cmds(1) o [1997/10/15] kern/4772 ATAPI CD (bootable) causes kernel panic o [1997/10/16] kern/4774 trying to use IBCS2 shared libraries cras o [1997/10/16] kern/4782 Under certain conditions, several krsh's o [1997/10/24] kern/4843 48 meg double fault moved to 64 meg in 2. o [1997/10/26] kern/4859 SMP kernel panics with timeout table full o [1997/10/31] bin/4907 Oct 33* Daylight Savings Time ends; clock o [1997/10/31] kern/4909 de ethernet driver is crazy on 100base o [1997/11/01] bin/4913 peter Large mail messages can cause mail.local o [1997/11/03] kern/4927 kernel does not check any quota and permi o [1997/11/05] kern/4945 continued failure to use the Adaptec 1460 o [1997/11/05] bin/4949 rpc.rquotad stat()s fs with quota file in o [1997/11/09] kern/4990 peter NFS hangs under FastEthernet. 1024 Bytes o [1997/11/15] conf/5062 login.access not evaluated correctly a [1997/11/18] bin/5084 ru wrong "term" for internal shell o [1997/11/18] kern/5085 System crash during mount command for CD o [1997/11/20] bin/5105 mount_cd9660 or mount -t cd9660 fails to o [1997/11/22] gnu/5126 C++ compiler bug (assembly output) o [1997/11/23] i386/5128 Adaptec 2940U Timeouts with QUANTUM disk s [1997/12/02] bin/5189 rcmd(3) only allows one hardcoded connect o [1997/12/03] misc/5207 Examples for /etc are not in /usr/share/e o [1997/12/06] kern/5244 F00F workaround dosn't always work on SMP s [1997/12/14] bin/5297 make incompatibility with System V style o [1997/12/19] kern/5347 peter DEC (de0) ethernet card has no buffers af o [1997/12/30] kern/5396 fdesc fs crashes system o [1997/12/31] i386/5401 peter de0 selects wrong media when reconnected f [1998/01/08] kern/5456 After writing more than 100MB to SCSI Exa o [1998/01/16] kern/5513 luigi new PnP code is BAD (soundcards) s [1998/01/19] kern/5522 [PATCH] ip_input.c & ip_output.c problems o [1998/01/26] misc/5574 bootpd gets timezone incorrectly o [1998/01/27] kern/5587 session id gets dropped o [1998/01/29] kern/5598 Support for magneto-optic SCSI devices wi s [1998/01/30] bin/5604 setenv(3) function has memory leak, other o [1998/01/30] kern/5606 Kernel Panic running Linux Binary without o [1998/01/31] kern/5611 bind does not check sockaddr->sin_family o [1998/02/01] kern/5618 kernel memory leak in routetbl. o [1998/02/01] kern/5624 dumping to tape causes scsi bus reset o [1998/02/04] kern/5643 NCR 810/815 do not handle rewind correctl o [1998/02/09] bin/5693 hoek groff -mm or groff -mmm ??? o [1998/02/10] i386/5698 des LPIP causes spurious reboots o [1998/02/12] kern/5728 peter NFS hangs o [1998/02/12] bin/5733 cp -r cannot copy un-writable directories o [1998/02/15] i386/5760 3.0-CURRENT freezes at mount root stage o o [1998/02/17] gnu/5767 man leaves partially formatted cat pages o [1998/02/19] kern/5794 Kernel Panic o [1998/02/23] kern/5827 kernel panics in current (3.0) o [1998/02/24] kern/5839 vm_page_unwire: invalid wire count: 0 f [1998/02/27] bin/5867 peter pppd or FreeBSD ? o [1998/02/28] kern/5877 sb_cc counts control data as well as data o [1998/03/01] kern/5890 peter NFS server Side say NFSERR_BAD_COOKIE (rm o [1998/03/09] bin/5959 Cannot set up clocal gettys o [1998/03/10] kern/5969 non-root user can reboot/lock up system o [1998/03/11] kern/5975 can't boot freebsd: fatal trap12: page fa o [1998/03/12] kern/5991 panic: free vnode isn't o [1998/03/14] conf/6002 peter /etc/mail/sendmail.cf.addtions seems to l o [1998/03/14] bin/6004 cron in -CURRENT sometimes fails to proce o [1998/03/14] bin/6005 -CURRENT cron dies after short periods of o [1998/03/16] kern/6035 The system "sort-of" hangs when playing b o [1998/03/19] kern/6066 lnc driver does not work correctly with A o [1998/03/20] bin/6074 imp Incremental dumps are backing up unchange o [1998/03/22] i386/6099 des LPIP to slow machine causes hang o [1998/03/22] kern/6103 panic: ffs_valloc: dup alloc o [1998/03/28] bin/6162 kinit does not default to the current use o [1998/04/03] kern/6203 kernel panics with "blkfree: freeing free o [1998/04/03] conf/6205 NFS/NIS freak out o [1998/04/04] kern/6212 Two bugs with MFS filesystems fixed, one o [1998/04/07] kern/6238 luigi Sound-driver patch for MAD16 (OPTi 928,92 o [1998/04/07] kern/6242 vnode disk driver too unstable in -STABLE o [1998/04/08] kern/6251 peter ktrace very broken when logging over NFS o [1998/04/08] kern/6252 ide cdrom hangs system when on same bus a o [1998/04/09] kern/6253 Atapi wait for command phase too short. o [1998/04/10] kern/6267 dg panic: pmap_dispose_proc: upage already m o [1998/04/14] kern/6300 System locks up in SMP mode when accessin o [1998/04/16] bin/6317 with -8E flags telnet still goes to comma o [1998/04/17] kern/6336 peter NFSv3 should support files >2GB, but does o [1998/04/18] kern/6344 cy driver is outdated o [1998/04/19] kern/6351 DPT RAID controller stops working under h o [1998/04/20] i386/6368 Stallion Easyio 8 port not detected using o [1998/04/22] bin/6383 csh - when ctrl-d is pressed, file is chm o [1998/04/25] kern/6412 peter NFS sends packets from the wrong interfac o [1998/05/03] kern/6506 system will not soft reboot f [1998/05/05] kern/6525 Coral-Draw 5 CD crashes 2.2.6-STABLE a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty o [1998/05/08] bin/6557 /bin/sh is broken o [1998/05/10] bin/6577 /bin/sh environment variables not set in o [1998/05/11] kern/6587 SMP idle cpl breaks signal forwarding o [1998/05/11] kern/6589 system panick'd with May 4th kernel o [1998/05/11] ports/6591 se KDE starts /usr/bin/kzip instead of /usr/ o [1998/05/12] kern/6603 ncr driver hangs under high load o [1998/05/12] bin/6609 gmp.h not installed o [1998/05/17] kern/6670 PANIC on boot with FreeBSD 3.0 (same comp s [1998/05/19] kern/6686 [STABLE] -stable does not support large I o [1998/05/20] kern/6706 mount_msdos+mount_null+mc=panic o [1998/05/25] kern/6751 audio cd play suddenly stops. o [1998/05/25] kern/6755 peter Tulip (if_de) driver buggy in -current o [1998/05/27] kern/6771 peter panic: Bad nfs svc reply s [1998/05/27] misc/6773 [PATCH] tempnam.c security problems o [1998/06/01] misc/6824 peter Intel EtherExpress 100+, 2.2.6 NFS troubl s [1998/06/02] bin/6830 make(1) exhibits confusing and non-standa s [1998/06/04] kern/6854 [PATCH] probing brooktree849 capture card s [1998/06/04] kern/6858 inetd in realloc(): warning: junk pointer o [1998/06/04] misc/6861 [PATCH] netboot error o [1998/06/05] kern/6865 OS crashes when exiting shell with suspen o [1998/06/10] kern/6908 kernel crash from user land o [1998/06/19] bin/6994 The netstat(1) -s generates wrong output f [1998/06/19] i386/6996 Occasional complete lockup of 2.2.5R s [1998/06/22] bin/7019 [security] pwd.db almost always contains s [1998/06/23] bin/7033 Same process notified multiple times o [1998/06/24] kern/7038 shimon Kernel panic caused by DPT driver (Got a s [1998/06/24] bin/7043 the fstat command doesn't know ISOFS, MSD o [1998/06/24] i386/7057 3Com 3C509 locks up, or has >1000ms rtt u s [1998/06/24] bin/7059 sh dumps core on this script o [1998/06/24] ports/7061 ache fspclient's grab command fails (and remov o [1998/07/05] ports/7167 ache elm cannot pgp for more than one recipien s [1998/07/05] kern/7169 cannot use accton on a append-only file o [1998/07/05] kern/7178 sos IDE Western Digital hard disk detection e s [1998/07/06] misc/7190 jkh "Invalid partition table" after new insta s [1998/07/10] kern/7237 NCR SCSI driver ch0 troubles o [1998/07/11] kern/7245 processes die with signal 6, if machine o o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol s [1998/07/14] kern/7281 [STABLE] Multicast kludge does not work c o [1998/07/16] kern/7299 USER_LDT hangs Linux-emulated Netscape o [1998/07/18] i386/7311 "Probing devices" hangs computer with err o [1998/07/21] conf/7354 source distribution selection bug when in f [1998/07/22] kern/7367 panic: malloc: wrong bucket o [1998/07/23] ports/7383 torstenb socks5 + ssh + redirection not working o [1998/07/26] kern/7405 in pmap_changebit, pmap_pte_quick() retur s [1998/07/27] kern/7410 [PATCH] driver for arlan-655 s [1998/07/27] i386/7420 [PATCH] Maximum socket buffer size (SB_MA o [1998/07/28] kern/7424 Machine crashes do not occur very often, o [1998/07/30] bin/7446 jdp Dlopen succeed in particular cases, but i o [1998/08/04] ports/7490 ache `setenv LANG/LC_CTYPE C` makes tcsh unusa s [1998/08/10] kern/7556 sl_compress_init() will fail if called an f [1998/08/10] kern/7557 -current machine running Diablo, lockup, s [1998/08/10] kern/7561 CDROM (wcd) is prone to lock up system/pr s [1998/08/10] kern/7562 Running wine can cause other applications o [1998/08/12] bin/7587 There is no pthread_cancel() in libc_r.a! o [1998/08/13] bin/7602 df stay in disk wait o [1998/08/18] kern/7658 (1) rlogin from some host to the FreeBSD o [1998/08/18] kern/7664 scsiformat reports '0' for all parameters o [1998/08/18] conf/7665 sysinstall quits silently o [1998/08/19] kern/7678 Problems with a 386-16 o [1998/08/20] i386/7698 scotty/tkined library error s [1998/08/22] kern/7713 fenner [MFC] problem with reusing ports with mul o [1998/08/23] kern/7727 Processes get wedged in 'getblk' on 2.2.7 o [1998/08/27] kern/7754 kernel panics if NFS server uses LKM vs. o [1998/08/27] bin/7756 disklabel misbehaving on seriously sick d o [1998/08/27] kern/7764 ps(1) hangs in pfslck/lockrd - All subseq o [1998/08/27] kern/7766 de driver still buggy - random ifc death o [1998/08/27] kern/7767 de driver still buggy - power cycle of de o [1998/08/30] kern/7781 Problem with setpassent(), getpwnam() and o [1998/08/31] kern/7793 kernel wedges when netscape exits o [1998/09/01] kern/7797 System halted with "panic: pmap_release: o [1998/09/02] i386/7815 probe can't find wdc0 s [1998/09/03] gnu/7821 awk in free(): warning: chunk is already o [1998/09/03] conf/7823 sysinstall will not install XFree o [1998/09/09] bin/7872 [PATCH] mountd(8) can apply flags to wron o [1998/09/09] bin/7876 gethostbyname flags temporary failure as o [1998/09/09] bin/7877 fenner libpcap and tcpdump need updating o [1998/09/10] kern/7880 mount_cd9660 incorrect on multitrack CD-R o [1998/09/11] i386/7898 erich linux_lib-2.4 lacks libc.so.6 o [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/12] conf/7908 wrong perms on objformat after upgrade o [1998/09/13] kern/7925 sendmail, inetd SIGSEGV after forking aft o [1998/09/15] ports/7931 torstenb Ssh allows root login with no password o [1998/09/16] kern/7950 Trap 12 while executing wine o [1998/09/16] gnu/7951 The gnu readline library core dumps when o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas a [1998/09/19] ports/7987 ports Can't post news with TRN + NNTPCACHE o [1998/09/22] conf/8031 [patch] /etc/rc looks for /etc/sendmail.c o [1998/09/28] misc/8070 can't get a system with an NCR 810 contro o [1998/09/28] i386/8081 Problem with MULTIPORT driver and Boca BB o [1998/09/29] bin/8085 sendmail startup could be backgrounded f [1998/09/29] ports/8088 torstenb short writes using ssh-1.2.* o [1998/09/30] gnu/8099 [patch] some bugs in cpio o [1998/10/03] kern/8137 [patch] quotaoff followed by quotaon can o [1998/10/05] kern/8158 sio driver breaks in 2.2.7R in kernels wi o [1998/10/06] kern/8180 open("..",O_RDONLY|O_NONBLOCK) fails o [1998/10/07] bin/8195 ee dumps core on window resize o [1998/10/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/10/08] kern/8215 Creating 2 root partitions in sysinstall o [1998/10/11] bin/8266 [patch] nfsd should allow just nfs versio o [1998/10/11] ports/8276 hosokawa samba's WINS database gets removed during o [1998/10/12] bin/8281 writev() in libc_r causes loop o [1998/10/13] kern/8312 Under heavy load, the system panics with o [1998/10/14] bin/8322 Mail doesn't respect REPLYTO in .mailrc o [1998/10/14] kern/8324 failure to deliver SIGIO when fildes mark o [1998/10/19] conf/8379 check_rcpt returns OK for nonexistent add o [1998/10/20] kern/8380 swap_page error: out of swap space o [1998/10/20] i386/8385 2.2.7 hangs while detecting type of COM1' o [1998/10/20] ports/8394 peter rdist6 won't compile--tries to use MOUNT_ o [1998/10/21] i386/8397 Code using popen compiled on BSDI BSD/OS o [1998/10/22] i386/8414 ibcs2 emulation sets serial baud-rate inc o [1998/10/22] kern/8415 SMP kernel freezes while downloading larg s [1998/10/22] kern/8417 3.0 config(8) doesn't check that root fs o [1998/10/22] i386/8418 sh MAKEDEV all - fails to create hard lin o [1998/10/23] kern/8423 Intel PILA8461 NIC panics 2.2.7 during pr o [1998/10/24] i386/8435 boot.flp does not give shell prompt after o [1998/10/24] bin/8440 3.0-RELEASE has wrong permissions on game o [1998/10/28] misc/8480 odd Korean timedef(LC_TIME) o [1998/10/30] kern/8500 FreeBSD 3.0 thread scheduler is broken o [1998/10/31] bin/8518 freopen() in append mode followed by ftel o [1998/11/01] kern/8534 insufficient support routines for poll(2) o [1998/11/03] kern/8561 /kernel inode change time changes every r o [1998/11/03] i386/8567 Intel EtherExpress Pro/10 driver (if_ex.c o [1998/11/04] bin/8573 nvi 1.79 SIGSEGVs on any address in .exrc o [1998/11/05] kern/8580 Hanging NFS pagein in nfs_bio.c (2.2.7, w o [1998/11/06] kern/8585 bktr driver does not correctly identify I o [1998/11/07] kern/8590 kernel incorrectly recognizing Maxtor 11. o [1998/11/07] kern/8596 panic: page fault while using ping's reco o [1998/11/08] kern/8607 maxprocsperuid setting causes sybase/linu o [1998/11/08] kern/8619 EXT2FS should be in GENERIC kernel o [1998/11/08] ports/8622 peter exmh2 has problems with some date formats s [1998/11/09] misc/8623 wollman [MFC] Time zone for Japan is strange (see o [1998/11/10] bin/8646 Implement rlogind -a option o [1998/11/11] kern/8655 Umount trouble of SCSI removable device o [1998/11/11] kern/8657 nfs client hung in nfs_bwrite/vfs_busy_pa o [1998/11/12] kern/8669 aio_write() and aio_read() do not work AT o [1998/11/14] kern/8683 sos Problems with Atapi in 3.0... o [1998/11/14] bin/8685 sending a SYST by ftp client closes conne o [1998/11/17] kern/8729 SYSV Semaphore blocks all threads o [1998/11/18] bin/8739 atoi and modunload o [1998/11/18] bin/8745 wosch adduser permit adding `root' and mail ali o [1998/11/20] kern/8773 Intel AN430TX motherboard ps/2 port not r f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S o [1998/11/21] bin/8790 [PATCH] Buffer overrun in nvi-1.79 (explo o [1998/11/23] kern/8824 Incorrect driver unit number in IDE BusMa o [1998/11/24] kern/8834 NFS can corrupt local file cache o [1998/11/24] conf/8854 boot.flp does not probe atapi cdrom o [1998/11/24] i386/8855 can't mount CD in ATAPI drive after eject o [1998/11/25] bin/8865 syslogd hangs with serial console o [1998/11/27] i386/8870 Installworld falls over in /usr/src/sys/i o [1998/11/28] kern/8875 Patch to allow DMA IDE with generic chips o [1998/11/29] conf/8903 /etc/rc can do NFS mounts before the netw o [1998/12/01] kern/8919 using Acceleport 8r o [1998/12/01] i386/8924 File transfers. Upload is 71Kbs downloa o [1998/12/02] kern/8940 system clock runs extremely slowly (and s o [1998/12/03] kern/8952 close() blocks forever after fork() in th o [1998/12/06] kern/8981 this also fixes X crashes and sio silo ov o [1998/12/07] ports/9002 torstenb mirror reuses obsolete temporary db file o [1998/12/09] kern/9030 DMPno2 - PCCards are not being recognised o [1998/12/10] i386/9044 #.0 pkgs require libkrb o [1998/12/16] kern/9095 swap detect error o [1998/12/19] kern/9129 Is it miss take ? So, ep deriver dose not o [1998/12/20] i386/9140 NIS "Magic cookie" in master.passwd slays o [1998/12/21] bin/9162 [Patch] pthreads GC breaks signal handlin o [1998/12/21] kern/9163 [patch] squid does not join a multicast g o [1998/12/22] kern/9171 maxusers 1024 results in unbootable kerne f [1998/12/22] ports/9177 erich linux_lib buggy and outdated o [1998/12/24] ports/9191 obrien tcplist port dosnt work o [1998/12/27] bin/9214 kldload(8) error messages are inadequate o [1998/12/29] i386/9237 pthread_exit doesn't exit o [1998/12/30] i386/9244 2.2.8 RELEASE Fixit floppy doesn't work.. o [1998/12/31] bin/9252 [patch] login program "login" don't set K o [1999/01/03] bin/9292 Cron's logs are in /var/cron, not /var/lo o [1999/01/03] kern/9296 pps driver missing header file o [1999/01/03] kern/9297 pps driver doesn't clear ppbus control po o [1999/01/06] bin/9350 nvi incorrectly reads files with very lon o [1999/01/06] kern/9355 can't select() for writes on a bpf o [1999/01/07] bin/9362 "lpc start queue" doesn't work in 3.0-R & o [1999/01/07] bin/9379 pppd does not go through all interfaces l o [1999/01/08] kern/9391 if_addmulti doesn't check for retifma == o [1999/01/09] kern/9407 "make kernel" yields buggy kernel in cera o [1999/01/09] kern/9408 parameter reversed to a pci_cfgwrite in p o [1999/01/09] kern/9411 System crash on swapping to hole-files o [1999/01/09] kern/9413 profiling does not work with elf kernels o [1999/01/10] i386/9431 wd.c Does nto recognize certain LBA disks o [1999/01/11] bin/9440 obrien amd can't mount filesystems with type:=uf o [1999/01/11] bin/9444 mount_mfs uses lots of swap. o [1999/01/12] bin/9464 Fix for fetch ignoring FTP_PASSIVE_MODE e o [1999/01/13] kern/9478 support for running a script from kldload o [1999/01/14] kern/9487 pcm: mixer's synth and cd devices are swa o [1999/01/14] bin/9495 su doesn't look at login.cnf all the time o [1999/01/15] bin/9516 ftpd doesn't honor invalid shelll in logi o [1999/01/17] kern/9537 ep0 driver : no buffer space available o [1999/01/17] bin/9544 syntax error concerning loading vinum fro o [1999/01/17] kern/9548 UNION fs corrupts data and has undefined o [1999/01/17] kern/9550 The latest -current as of 17 January has o [1999/01/21] kern/9599 SMP hang after reseting CPU 1 o [1999/01/21] kern/9612 grog NFS mounts on dual-homed server may hang o [1999/01/22] docs/9618 hoek many typos in groff_mm(7) o [1999/01/24] ports/9665 ache cannot start apache server o [1999/01/25] kern/9673 ISO CD-ROM Problem o [1999/01/25] ports/9688 cwt The current tcl80 port has problems, does o [1999/01/26] bin/9695 a typo in /usr/obj/aout/usr/src/tmp/usr/i o [1999/01/28] i386/9759 Tar process hangs on buggy tapes o [1999/01/31] bin/9849 mknod is missing from libc_r o [1999/02/01] kern/9862 system crashes writing to msdos jaz disk o [1999/02/02] kern/9883 MGET()(and variants) return NULL with M_W o [1999/02/04] misc/9903 thread enabled program can't use popen/sy o [1999/02/04] kern/9910 Heavy traffic renders FreeBSD acting as f s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi o [1999/02/06] i386/9933 No error reported writing to write-protec o [1999/02/06] kern/9935 vmstat reprots bad AVM values o [1999/02/08] kern/9961 When loading if_ppp_mod.o system crashes, o [1999/02/08] i386/9962 Install Panics in with integer divide fau o [1999/02/08] kern/9974 Large amounts of kernel clock drift with o [1999/02/09] kern/9980 savecore fails with large (2gig+) swap pa o [1999/02/09] bin/9982 inet_addr(3) should be return 32bit uint. o [1999/02/10] misc/10009 jdp dlopen will crash when opening some strip o [1999/02/10] kern/10013 msdos floppy disk mounts o [1999/02/11] kern/10021 MOUNTING A EXT2FS A AFTER MOUNTING AN MSD o [1999/02/11] kern/10029 many vm_fault: pager read errors o [1999/02/11] bin/10031 ypxfr does not work with Solaris master s o [1999/02/11] bin/10039 Binaries from a "fixit" CD can't find ld- o [1999/02/12] docs/10059 dillon MALLOC(9) manpage not updated to reflect o [1999/02/13] kern/10066 problem with a X-Window and syscons drive o [1999/02/14] i386/10089 ATAPI tape driver (wst) doesn't handle En a [1999/02/14] ports/10094jfitz autogeneration of msql user failed o [1999/02/15] kern/10107 interlock situation with exec_map and a p a [1999/02/17] docs/10135 doc Change to Documention Regarding Upgrades o [1999/02/18] kern/10145 ELF interpreter loading in chrooted situa o [1999/02/18] i386/10150 Compaq fxp0 Does not work on 3.0 or 3.1 b o [1999/02/18] i386/10151 ATAPI CD problem o [1999/02/19] conf/10163 init does not start when /var/msgs is a s o [1999/02/22] kern/10209 natd stopped to worked since i upgraded f o [1999/02/23] bin/10230 -T and -B not implemented on filehandles o [1999/02/25] misc/10259 FTP install hangs for 3.1-RELEASE o [1999/02/25] bin/10264 passwd(1) tryis NIS even with `-l' switch o [1999/02/25] kern/10265 file locking does not work with kernel pt o [1999/02/25] kern/10266 gibbs SCSI scanner times out when scanning o [1999/02/26] kern/10280 Display Adapters (PCI) probed wrong way - o [1999/02/28] misc/10302 installer o [1999/02/28] bin/10312 ken pciconf -l generates output incompatible o [1999/02/28] kern/10316 le0 goes OACTIVE after some time o [1999/03/01] bin/10341 memory leak in setenv(3) o [1999/03/02] bin/10353 ypserv gets segmentation violation o [1999/03/02] bin/10366 /usr/libexec/ld-elf.so.1: Invalid File Fo o [1999/03/03] ports/10373nate Increasing kernel file descriptors causes o [1999/03/03] kern/10381 hlfsd/NFS failure -- directory cached bet o [1999/03/04] kern/10387 2.2.7 hangs when trying to write on defec o [1999/03/05] kern/10411 top, vmstat, iostat show 0% cpu idle & us o [1999/03/06] misc/10418 libpam is built before libradius/libtacpl o [1999/03/07] kern/10466 resume causes crashes if BIOS extmem != R o [1999/03/07] ports/10480ports tk81 will not *compile* with threaded app o [1999/03/08] kern/10492 broadcast IP address can be set on interf o [1999/03/09] bin/10510 Remote cvs botches commits on occassion o [1999/03/09] bin/10511 incorrect return value in kvm_read(3) and o [1999/03/10] i386/10533 A bug in the meteor driver causes kernel o [1999/03/11] bin/10553 syslogd suddenly stopped logging o [1999/03/13] ports/10579phk Error with Network discovery in tkined (p o [1999/03/14] kern/10581 Kernel panic while using find on an ext2 o [1999/03/14] kern/10594 EXT2FS mount problems o [1999/03/14] bin/10596 I can't find out where someone is logged o [1999/03/15] misc/10599 [PATCH included]malloc/free breaks in cer o [1999/03/15] kern/10603 dcs Random system panics o [1999/03/15] kern/10607 Fast forwarding breaks when arp cache exp o [1999/03/16] bin/10615 make installworld DESTDIR=/some/dir o [1999/03/16] kern/10616 MSP3400C audio chip from Hauppauge WinTV- o [1999/03/16] i386/10626 RTC BIOS diagnostic error on install o [1999/03/16] bin/10633 obrien [patch] tcpslice timezone problem and upd o [1999/03/17] i386/10646 Bridge code missing from ed0 driver in 3. o [1999/03/18] ports/10665ports ports/graphics/sane needs access to /dev/ o [1999/03/19] kern/10671 setlogin(2) return EINVAL for length of n o [1999/03/19] kern/10676 3.1-RELEASE deadlocks under load with pro o [1999/03/19] ports/10681ports lessitf can't find X11 Revision 5 or high o [1999/03/20] kern/10698 de driver doesn't work with some tulip bo o [1999/03/22] gnu/10740 Fatal GCC error o [1999/03/23] kern/10747 [PATCH] ipfirewall `deny' rules act as `r o [1999/03/24] bin/10774 sio0 doesn't work well, i belive the prob o [1999/03/24] kern/10778 "ipforward_rt" is not cleared when routin o [1999/03/24] kern/10780 executing gzipped shell scripts panics th o [1999/03/25] bin/10784 `make aout-to-elf-build' died in /usr/src o [1999/03/25] bin/10785 make aout-to-elf-install died in info tar o [1999/03/25] kern/10789 Second config of kernel doesn't overwrite o [1999/03/26] bin/10805 h2ph incorrectly deals with #error and #w o [1999/03/26] bin/10807 host(1) is broken - multiple options in o o [1999/03/27] bin/10821 des getpwent() fails on NIS clients after dro o [1999/03/29] i386/10862 wd.c STILL cannot recognize correct disk o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec o [1999/03/30] misc/10879 Cannot build aout binaries under 3.1-RELE o [1999/03/30] bin/10880 Profiler libraries missing o [1999/04/01] bin/10912 Fix to prevent infinite loops on missing o [1999/04/03] i386/10928 su reboots the system after one day uptim o [1999/04/03] i386/10935 PCI cards detected twice o [1999/04/04] ports/10943ports "ports/print/teTeX-beta# make install" fa o [1999/04/04] ports/10946se kdm 1.1 does not work correctly - XBINDIR o [1999/04/04] conf/10947 Entering daylight time at 2am loses /etc/ o [1999/04/05] bin/10963 brian date -v dosen't quite work o [1999/04/05] i386/10969 kernel fails to compile with ccs0 o [1999/04/06] i386/10983 lnc NIC driver doesn't work o [1999/04/06] bin/10985 make .NOTPARALLEL special target is broke o [1999/04/06] bin/10991 lpd hangs system if printer not ready on f [1999/04/07] ports/11003ports wmcdplay is not capable of playing an AUD o [1999/04/07] kern/11004 Quota Issues on SMP o [1999/04/07] bin/11005 `umount -f' does not work if the NFS-serv o [1999/04/07] bin/11008 3.1 fbsdboot.exe is broken. install.bat i o [1999/04/08] misc/11024 getpwnam(3) uses incorrect #define to lim o [1999/04/10] ports/11059ache ports/security/pgp does not extract o [1999/04/11] kern/11080 fatal trap 18 while trying to mount inval o [1999/04/11] kern/11084 3.1-R kernel trap 12 with interrupts o [1999/04/13] kern/11115 Sockets die in LAST_ACK and FIN_WAIT_1 st s [1999/04/13] ports/11116billf gtk interversion compatibility never work o [1999/04/13] bin/11119 NFS quotas fail to report if alternate fi o [1999/04/14] bin/11137 /bin/ps output loses the values for all p o [1999/04/16] kern/11164 The ie network driver panics during the i o [1999/04/16] bin/11169 warning: pointer to wrong page in cron(8) o [1999/04/18] kern/11199 3.1-RELEASE kernel page fault (trap 12) u o [1999/04/18] i386/11200 AMD PCnet lnc0/lnc1 problem o [1999/04/18] kern/11208 Complete system hang/freeze. No PANIC me o [1999/04/19] bin/11221 comm doesn't obey current locale collatio o [1999/04/20] bin/11247 fetch doesn't notice FTP error after RETR o [1999/04/21] kern/11255 Fore System ATM Card not working o [1999/04/21] kern/11266 frequent crashes with "Page fault, fatal o [1999/04/22] bin/11283 fetch http-timeout/timestamp bug o [1999/04/23] i386/11291 anic: ffs_alloccg: map corrupted o [1999/04/23] bin/11296 fetch(1) fails to resolve names in http m o [1999/04/23] kern/11299 Recent kernels have broken symbol tables, o [1999/04/24] bin/11303 whereis(1) doesn't properly handle names o [1999/04/26] conf/11336 Broken data sent to printer through devic o [1999/04/28] kern/11366 Filesystem can cause hang/crash in certai o [1999/04/28] kern/11367 Kernel crashing after mounting read only o [1999/04/28] conf/11376 NFS mount may be happening too soon in /e o [1999/04/29] bin/11382 generated code using rpcgen with -b optio o [1999/04/29] kern/11385 PCNet/PCI Ethernet adapter works in 3.1-R o [1999/04/29] i386/11395 ghostscript5.50 does not print properly, o [1999/04/30] kern/11405 pwd_mkdb with no tmp space leads to kerne o [1999/05/01] kern/11435 IPFW had no per-uid or per-gid rule suppo o [1999/05/02] i386/11454 mkdir() and chdir() doesn't check argumen o [1999/05/03] kern/11462 CS network interface driver (for CS89XX b o [1999/05/03] bin/11464 union copies likely broken for alpha egcs o [1999/05/03] ports/11465ports The port chipmunk will not run. o [1999/05/03] misc/11472 unprivilaged user takes all file descript o [1999/05/04] kern/11490 VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] kern/11513 cannot mount CD-ROM: Device not configure o [1999/05/05] misc/11523 3.1-STABLE BRIDGE option does not work o [1999/05/05] misc/11525 [PATCH] Networking patches to increase # o [1999/05/06] ports/11535ports Problems with cyrillic support. o [1999/05/07] gnu/11562 tar verification doesn't work o [1999/05/07] kern/11563 pci_unmap_int doesn't do anything o [1999/05/08] i386/11575 sio.c silo overflows during X usage o [1999/05/10] ports/11636jfitz p5-Mail-Folder missing dependencies o [1999/05/11] conf/11654 Linksys PCI 10/100 Ethernet cards not wok o [1999/05/11] ports/11656andreas lyx-port needs a patch until the next LyX o [1999/05/12] i386/11664 lnc1 NIC fail to work o [1999/05/12] bin/11666 ypserv fails to reply host name resolutio o [1999/05/12] kern/11675 Another quirk entry for scsi_sa.c o [1999/05/12] kern/11679 httpd and perl5 processes stuck in "nocha o [1999/05/13] kern/11686 APM: Always "Resume failure" from suspend o [1999/05/13] kern/11692 3.1-stable deadlock o [1999/05/13] bin/11696 Signal handling is broken in libc_r. o [1999/05/13] kern/11697 Disk failure hangs system o [1999/05/13] bin/11706 FreeBSD will not install with certain Ada o [1999/05/14] i386/11720 FreeBSD 2.2.8 can't load fixit disk o [1999/05/18] kern/11766 Can not traceroute through ipnat. o [1999/05/18] i386/11773 mouse works at setup time. Under X it go o [1999/05/19] misc/11778 mpz_get_str() in libgmp leads up to cored o [1999/05/19] kern/11782 boot -s still goes into multi-user mode o [1999/05/19] misc/11790 boot manager bug o [1999/05/20] misc/11797 Partial saves in vipw have mode rw-rw-rw- o [1999/05/20] misc/11800 gibbs Problem with scsi AHA2940 and sony SDT-20 o [1999/05/20] i386/11801 Remounting CD on IDE CDROM after eject fa o [1999/05/20] ports/11807jfitz Port update: net/ratoolset o [1999/05/20] kern/11808 read/write mounted write-protected floppi o [1999/05/21] kern/11815 mjacob SCSI tape driver fails on media type reco o [1999/05/21] kern/11821 /dev/fd0a hangs on large files, including o [1999/05/21] bin/11828 Patch for aout "ld.so" difficulties o [1999/05/22] docs/11852 jkh 3.X install requires 12MB of RAM, not 8 o [1999/05/23] kern/11867 Sound driver loses interrupts, no sound o [1999/05/28] kern/11911 3.1-R : writing file larger than floppy s o [1999/05/28] conf/11913 Problem about /stand/sysinstall and /etc/ o [1999/05/28] kern/11915 access system call says file is readable o [1999/05/28] kern/11919 kldload doesn't return error on loading a o [1999/05/28] kern/11922 missing reentrant interfaces for getpwnam o [1999/05/29] kern/11928 kldload loads kernel modules even if ther o [1999/05/29] ports/11935ports ports/audio/dap: -DBIGENDIAN is wrong on o [1999/05/29] kern/11936 linux threads are partly broken for SMP o o [1999/05/29] kern/11937 vm problems after havy memory usage o [1999/05/30] conf/11950 /etc/hosts.allow confuses tcp wrapper a [1999/05/31] kern/11961 3c509b (xl0) ethernet driver unable to ma o [1999/05/31] kern/11965 kldload doesn't produce linker file upon o [1999/05/31] kern/11969 VM_fault with mmap'd CDROM data. o [1999/06/01] docs/11975 asami [PATCH] 3.2-stable upgrade kit missing fr o [1999/06/01] ports/11977ports Eterm port is unable to access .Xauthorit o [1999/06/02] i386/11991 fdisk does not assign slices to unused pa o [1999/06/02] bin/11992 /usr/src/sbin/mountd/mountd.c has '#ifdef o [1999/06/02] kern/11995 smp kernel panics when accessing cyclades o [1999/06/02] ports/11996obrien Fix for mutt sending content-type video a f [1999/06/03] ports/12015torstenb new postfix port o [1999/06/04] kern/12022 System clock timewarps o [1999/06/06] bin/12054 explicit -ltermcap after -lncurses causes o [1999/06/06] kern/12062 sa tape driver with Cipher 60M SCSI QIC t f [1999/06/07] bin/12070 des FTP_PASSIVE_MODE exposes bug in ftp(1). o [1999/06/07] misc/12073 make world continuously fails in vm/vnode o [1999/06/08] bin/12091 syslog packets from a remote machine are o [1999/06/08] kern/12092 vpo driver not working in 3.2-RELEASE o [1999/06/09] bin/12097 markm [PATCH] Various fixes for inetd with libw o [1999/06/09] i386/12102 can't boot using the installation boot di o [1999/06/09] kern/12104 Certain cdcontrol commands don't work pro o [1999/06/10] conf/12116 ASCII and US-ASCII locale wrongly aliased o [1999/06/10] pending/12120gnats-adminnamed crashes. o [1999/06/10] gnu/12122 cc hangs on STDIN with -pipe and .s files o [1999/06/10] kern/12126 Missing ioctl handler for IPX address fam o [1999/06/11] bin/12129 Process cannot call external functions af o [1999/06/11] pending/12131gnats-adminknewmail port o [1999/06/11] bin/12136 /sbin/dhclient-script: weird route comman o [1999/06/11] bin/12137 something wrong with shell -- functions w o [1999/06/11] kern/12141 libc_r passes negative tv_usec values to o [1999/06/11] i386/12147 sos Linux emulator fcntl ignores args o [1999/06/12] ports/12153andreas lyx doesn't compile because of lack of /u o [1999/06/12] ports/12174ache bash terminate with corefile if pid > 320 o [1999/06/12] gnu/12175 gdb crashes with pids > 32736 o [1999/06/12] docs/12181 doc [Patch] doc/en/handbook/kernelconfig/chap o [1999/06/13] docs/12184 doc [Patch] doc/en/handbook/backups/chapter.s o [1999/06/13] pending/12191gnats-adminwcol is trying to allocate a shared memor 631 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1995/01/11] i386/105 bde Distributed libm (msun) has non-standard s [1995/01/14] bin/115 systat iostat display doesn't scale high s [1995/05/13] bin/401 Add REMOTE_* variables a [1995/05/27] gnu/450 tar --exclude -c doesn't work s [1995/06/15] bin/517 Bad group change with 'install' o [1995/07/09] misc/605 wpaul NIS: get*bynis routine problems s [1995/08/05] gnu/655 ld -r of shared objects worked in 1.1.5, s [1995/08/07] bin/658 ifconfig alias has to be separately given s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/10/03] kern/765 umount -f can`t umount a NFS filesystem i s [1995/11/20] kern/831 one minor complaint about the kernel visu s [1995/11/27] bin/841 stale nfs mounts cannot be umounted o [1995/11/30] bin/854 dg swapinfo shows incorrect information for a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases s [1996/03/20] kern/1090 iostat displays incorrect sps count s [1996/03/20] bin/1093 route's diagnostic is weird o [1996/04/06] kern/1119 dg Mounted EXT2FS partition is not cleanly u s [1996/06/11] bin/1312 automounter hangs on boot s [1996/06/13] bin/1320 dump limits blocksize to 32K s [1996/07/07] bin/1375 jraynard Extraneous warning from mv(1) [PATCH] o [1996/07/24] misc/1428 ncurses doesn't always display ALTCHARSET s [1996/08/17] bin/1502 [PATCH] vmstat 'avm' field merges with pr o [1996/09/06] bin/1577 peter mail -f foo does not look in current dire s [1996/09/08] bin/1589 [PATCH] ftp fails to flush output o [1996/09/14] gnu/1611 phk groff should use "system-wide" papersize s [1996/09/19] kern/1654 [PATCH] In procfs, vattr doesn't contain o [1996/09/23] i386/1671 joerg s2 map in pcvt isn't ISO 8859-1 and claim o [1996/09/29] docs/1691 dwhite ppp server doc submission s [1996/10/13] misc/1791 syslimits.h does not allow overriding def o [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong s [1996/10/24] bin/1881 file(1) misidentifies Sun3/m68k executabl s [1996/11/01] bin/1941 danny wtmp and monthly rotation s [1996/11/01] bin/1943 route(8) args s [1996/11/02] bin/1945 Out of date code/comments in dd o [1996/11/04] i386/1953 sos syscons savers have no default timeout s [1996/11/04] gnu/1961 [PATCH] uucp logging files are in /var/sp s [1996/11/06] bin/1970 csh limtail() bug s [1996/11/16] bin/2036 cpio size wraparound s [1996/11/19] bin/2061 DEBUG_FLAGS in bsd.lib.mk is broken s [1996/11/19] bin/2065 in tzsetup/sysinstall, allow user to type s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/11/28] bin/2119 [PATCH] mount lies to child about argv0, s [1996/12/02] bin/2137 vm statistics are bad s [1996/12/12] kern/2199 joerg [PATCH] Got a lots of "Target Busy" messa s [1996/12/14] bin/2216 [PATCH] Ada specs not being compiled into o [1996/12/17] i386/2239 jmg some interrupts take too long (i.e. BT946 a [1996/12/21] bin/2265 guido su(1) does not call skeyaccess() o [1996/12/24] kern/2273 dufault support for POSIX.4 / POSIX.1a RT-schedul s [1996/12/26] bin/2291 [PATCH?] race condition in /etc/master.pa 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 [1996/12/29] bin/2315 peter tail segfaults on NFS permission denied s [1996/12/30] kern/2327 [PATCH] `Green' saver for pcvt o [1997/01/06] bin/2387 [PATCH] virtual hosting patches for inetd o [1997/01/07] kern/2393 filesystems not unmounted following shutd o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/12] kern/2462 sos screen saver dosn't capture key strokes o [1997/01/14] kern/2492 AIMS Lab RadioTrack driver for FreeBSD 2. o [1997/01/26] i386/2598 ep0 in EISA mode hangs if ep0-device (ISA o [1997/01/28] bin/2603 dufault Added POSIX.4/POSIX.1b constants in unist o [1997/01/28] bin/2604 dufault Added POSIX.4/POSIX.1b shm_open()/shm_unl o [1997/02/02] gnu/2637 tar dumped core with -g option. a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/02/05] bin/2668 modification suggested for rarpd o [1997/02/10] bin/2703 jmg vipw doesn't allow you to edit master.pas o [1997/02/10] kern/2704 Occasional failure to detect wdc1 on boot o [1997/02/11] kern/2716 od.c/sd.c non 512 byte/sector support imp o [1997/02/13] i386/2729 "make tags" in sys/kern produces barely u o [1997/02/14] bin/2737 yppasswd fails to change password on a su o [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/02/23] kern/2806 new kernel tags script o [1997/03/02] bin/2851 script(1) sets argv[0] of the started she o [1997/03/03] kern/2857 DE500 board exhibits capture effect o [1997/03/03] bin/2859 /usr/bin/quota seems to choke on long gro o [1997/03/03] kern/2865 peter NFS client hangs on umount, ls, df when N o [1997/03/06] docs/2897 steve send-pr categories should be explained so o [1997/03/06] bin/2898 fenner arp -a -n buglet o [1997/03/10] bin/2934 sh(1) has problems with $ENV o [1997/03/10] bin/2938 hoek Add -b, -l, and -f options to du(1) o [1997/03/18] misc/3024 make reinstall in /usr/src requires writa o [1997/03/22] kern/3061 route does not accept -genmask o [1997/03/31] gnu/3157 Patches to gas and gdb to support MMX ext o [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO o [1997/04/07] misc/3225 [PATCH] uucpd.c should normalize host nam o [1997/04/08] misc/3237 SCRIPTS addition to bsd.prog.mk o [1997/04/09] bin/3242 incorrect prototype for initgroups o [1997/04/14] kern/3281 errors when "rm -r"-ing in a mounted ext2 o [1997/04/14] kern/3282 ext2fs causes fs-unmount at shutdown/rebo o [1997/04/14] bin/3284 [PATCH] symorder(1): -t option doesn´t wo o [1997/04/14] bin/3286 [PATCH] missing error checking in mount_m o [1997/04/14] kern/3287 [PATCH] missing symbols in /usr/src/sys/i o [1997/04/15] kern/3299 /dev/console hangs o [1997/04/17] bin/3314 [PATCH] /etc/daily did not run on April 6 o [1997/04/27] bin/3399 mv of symbolic link can move directory in o [1997/04/29] bin/3416 ibcs emulation problems o [1997/05/05] i386/3504 [PATCH] New features (and manpage) for ne o [1997/05/05] bin/3508 FreeBSD 2.2.1 do not view SCSI disk at sw o [1997/05/08] kern/3546 ktrace works even if no read permission o [1997/05/08] gnu/3552 the -L option of tar does not work proper s [1997/05/09] kern/3571 Mounted ext2 prevents umount of filesyste o [1997/05/12] kern/3584 luigi cleanup TCP_REASS macro in tcp_input.c o [1997/05/16] bin/3608 Telnet in linemode will break apart long o [1997/05/17] kern/3611 Internal CPU cache on CyrixiInstead DX2 d o [1997/05/18] gnu/3616 permissions of /usr/libexec/uucp/uuxqt no o [1997/05/20] docs/3645 torstenb TCP_wrappers package doesn't mention wher s [1997/05/21] bin/3648 roberto [PATCH] find(1) extension for file flags s [1997/05/22] kern/3667 [PATCH] make vn LKM'able. o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) o [1997/06/07] bin/3805 single process tftpd o [1997/06/09] bin/3826 KerberosIV sometimes hangs rcp o [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/12] kern/3853 luigi netboot/ns8390.c breaks NS datasheet o [1997/06/14] bin/3866 rcs2log fails with eastern timezones o [1997/06/15] kern/3879 peter Can't export mounted ext2fs via NFS o [1997/06/18] kern/3901 Multicast for Intel 10/100 Ethernet Card o [1997/06/19] misc/3912 ctags(1) cannot trace some macro correctl o [1997/06/23] kern/3938 peter Problem about mmap() over NFS o [1997/06/24] kern/3944 if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 nonworking t/tcp server side a [1997/06/25] kern/3953 kern-config: options PANIC_REBOOT_WAIT_TI o [1997/06/26] i386/3962 print disk internal cache size during pro o [1997/06/27] kern/3968 Hardware probes die on Peak SBCs. o [1997/06/29] ports/3983 fenner New port: psf toolkit o [1997/07/07] kern/4051 pppd connect 'chat ...' broken s [1997/07/07] kern/4052 VJ compression drops packets with IP+TCP o [1997/07/18] bin/4116 davidn Kerberized login as .root fails to o [1997/07/23] kern/4153 New tcp initial send sequence number code s [1997/07/23] bin/4154 wish /bin/sleep handled fractions of a se s [1997/07/24] bin/4157 [PATCH] netstat atalk output should print o [1997/07/24] bin/4163 archie ftp core dumps after hitting control-C s [1997/07/26] bin/4172 suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk s [1997/07/31] bin/4204 [PATCH] ac printed wrong report about tty f [1997/08/03] kern/4221 brian Kernel mode pppd doesen't update wtmp on o [1997/08/04] conf/4229 Ethernet interface unreachable on bootup o [1997/08/06] bin/4238 chpass only occasionally works in conjunc o [1997/08/07] kern/4243 file locking doesn't work for pipe o [1997/08/07] bin/4247 modification to /etc/security for FreeBSD o [1997/08/08] misc/4249 wpaul ypchsh doesn't care about changing a user a [1997/08/09] kern/4255 SMP kernel freezes on machines with >2 CP o [1997/08/12] misc/4285 SDL RISCom/N2 (ISA) o [1997/08/13] kern/4297 dufault SIGEV_NONE and SIGEV_SIGNAL go in signal. o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/14] ports/4304 asami Recommendation re. Ports Collection o [1997/08/22] ports/4356 erich sudo shouldn't block signals in tgetpass( o [1997/08/23] conf/4363 kernel build depend on make obj o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] misc/4414 be.iso.kbd errors in mapping o [1997/08/29] bin/4419 man can display the same man page twice o [1997/08/29] bin/4420 find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/04] misc/4468 dlopen is not available from static execu o [1997/09/07] bin/4484 peter sendmail is barfing o [1997/09/13] kern/4528 processes hang if the mount_portal proces a [1997/09/14] i386/4538 sos byteswapped ATAPI id strings o [1997/09/14] bin/4545 f77 will only call `cc', no com-line opti f [1997/09/15] i386/4547 luigi asc.c and pcaudio.c should use selrecord o [1997/09/16] misc/4556 make can't build executable from single F o [1997/09/21] kern/4597 Patch to pass NPX status word in signal c o [1997/09/21] kern/4601 Contrib: userconfig patch to edit SCSI co o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 Can't fixit with an NFS-mounted CD. o [1997/09/29] conf/4654 Need to do post-ifconfig commands o [1997/10/04] bin/4688 peter sys/utsname.h SYS_NMLN 32 too small o [1997/10/05] bin/4695 pstat error o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/10/05] bin/4697 make doesn't handle dependencies with for o [1997/10/15] gnu/4771 diff to correct misleading total bytes in o [1997/10/22] bin/4828 ypxfr makes false assumption about RPC ca o [1997/10/24] kern/4845 Boot complains about disk slices in FAT p o [1997/10/24] kern/4847 pccard stuff fails after running Win95 wi o [1997/11/01] bin/4915 peter NFS mounts to linux machine can hang syst o [1997/11/02] bin/4923 vi leaves the screen in standout mode o [1997/11/07] bin/4969 cdcontrol plays incorrect audio tracks in o [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/09] kern/4992 SCSI disk scheduling disabled in 2.2.5 o [1997/11/10] kern/4997 DDB_UNATTENDED doesn't always work o [1997/11/11] kern/5009 ibcs2 emulation o [1997/11/11] kern/5011 rndcontrol -s 8 causes kernel panic o [1997/11/13] bin/5031 lpr does not remove original file if -s i o [1997/11/13] ports/5034 ache (tcsh) blocked write on named pipe sticks o [1997/11/14] gnu/5039 libdialog fails to resore terminal o [1997/11/14] kern/5040 Support for "SCSI-0" devices o [1997/11/14] kern/5048 Calling shutdown(fd,1) multiple times wil o [1997/11/15] kern/5059 peter mountd, nfsd, etc. fail when lp0 defined o [1997/11/15] kern/5060 Kernel doesn't compile with mss o [1997/11/20] kern/5108 pmap_release panics with 'freeing held pa o [1997/11/20] kern/5110 kernel crash & core in pmap_testbit durin o [1997/11/23] bin/5134 cdcontrol will eject a mounted CDROM o [1997/11/26] misc/5153 jkh release file checksums in wrong file 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 o [1997/12/09] bin/5263 sh bug (with example) s [1997/12/11] kern/5275 [PATCH] Added volume (barcode) support to o [1997/12/14] conf/5292 master.passwd -- /nonexistent vs. /sbin/n s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp f [1997/12/30] i386/5398 silo overflows running o [1998/01/02] bin/5410 pkg_info options s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with o [1998/01/08] kern/5429 Ethernet collision during file transfers s [1998/01/08] kern/5435 [PATCH] if_fe.c for old Gateway Communica s [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde s [1998/01/08] bin/5451 roberto [PATCH] halt/reboot does not execute /etc o [1998/01/11] bin/5483 Login(1) clears utmp entry o [1998/01/15] kern/5502 nfsd process usage doesn't get accounted o [1998/01/15] kern/5508 SCSI Message sd0: COMMAND FAILED (4 28) @ s [1998/01/16] kern/5510 sos [PATCH] Incomplete ATAPI diagnostic at bo o [1998/01/18] kern/5517 Recursive NULLFS mount causes ufs_ihashge s [1998/01/20] misc/5531 [SUBMISSION] new library function abs2rel s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/21] bin/5537 vi dumps core with dodgy exrc file o [1998/01/24] i386/5559 PC-Card joystick ports were not supported o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 Trouble with LD_PRELOAD environment varia o [1998/01/31] bin/5609 lpd cannot send long files to HP's JetDir a [1998/02/02] ports/5626 billf 'ldap' port eats all available CPU time o [1998/02/02] kern/5627 Tertiary/Quaternary IDE Ctlrs: A few kern o [1998/02/05] misc/5662 sysinstall generates short dev names for o [1998/02/06] bin/5666 ifconfig fails to add alias o [1998/02/06] kern/5672 Crash from scsi aborted command 'Overlapp o [1998/02/09] kern/5689 sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] bin/5711 bin/cat code cleanup o [1998/02/10] bin/5712 /bin/chio code cleaup and option added o [1998/02/10] bin/5717 pw -D -g "" returns error o [1998/02/10] bin/5718 pkg_delete refuses to run as non-root o [1998/02/14] bin/5745 [PATCH] Add /usr/local/share/mk to defaul o [1998/02/14] bin/5746 bootparamd will not netboot sun 3 compute o [1998/02/14] bin/5747 ld.so error message o [1998/02/15] bin/5758 sys/resources.h doesn't include sys/time. o [1998/02/17] kern/5768 Shutdown aborts syncing, when sync isn't o [1998/02/18] i386/5784 ibcs2 emulation not handling ioctl(..FION o [1998/02/19] ports/5788 joerg pcemu harddisk-access fixes o [1998/02/19] kern/5789 wcd0 requires ATAPI_STATIC o [1998/02/19] kern/5795 Panic: "bremfree: removing a buffer when o [1998/02/20] misc/5803 "tab" function from "ee" not compatible w o [1998/02/25] gnu/5841 installmost or install (world) of tmac fa o [1998/02/25] bin/5847 Makeworld fails if CXXFLAGS is set. s [1998/02/25] misc/5855 /etc/services is out of date with IANA o [1998/02/26] bin/5857 non-functional lpr/lpr o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT o [1998/03/01] bin/5880 df -t does not support devfs o [1998/03/01] ports/5884 dburr New port: icqjava-0.981a (net/icqjava) o [1998/03/02] bin/5901 new version of `fmt' o [1998/03/03] bin/5912 kinit exits if no user name specified o [1998/03/06] kern/5931 dma errors in syslog with GUS-max o [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/03/08] bin/5944 cvs doesn't work correct. o [1998/03/10] kern/5964 peter nfsd send interface selection seems broke o [1998/03/10] bin/5966 vi's spanish message catalog does not use o [1998/03/10] kern/5967 upg from 2.1.7.1/2.2.1 to 2.2.5-stable (a o [1998/03/10] ports/5972 andreas x11/fvwm95 requiring gsm, and rplay is a o [1998/03/11] gnu/5982 no error exit code from tar on child fail o [1998/03/12] gnu/5992 cvs y2k o [1998/03/13] bin/6000 kadmin ank uses bad default expiration of o [1998/03/15] bin/6015 indent(1) breaks source with backslash ne o [1998/03/16] kern/6032 poor TCP performance using FDDI over long o [1998/03/18] misc/6060 peter Sendmail executable, not doing MASQUERADE o [1998/03/22] conf/6096 /sys/i386/conf/LINT: edit(???) sound_conf o [1998/03/22] gnu/6107 gdb should support PRINTF_HAS_LONG_LONG o [1998/03/28] bin/6156 Patches to make dump understand ENOSPC o [1998/03/28] bin/6161 2.2.6 kerberos servers are awfully visibl o [1998/03/29] ports/6170 peter another squid ports o [1998/03/30] ports/6181 dburr New port: xoj-1.0 o [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/01] bin/6187 peter mounting nfs directories with -b can caus o [1998/04/02] bin/6198 demangling C++ names breaks the Cygnus -f o [1998/04/03] bin/6200 flex can be upgraded o [1998/04/03] bin/6202 No way to detect removable media. o [1998/04/03] bin/6206 Enhancements to the shutdown program o [1998/04/04] kern/6213 peter NFS-mounted swap (via vnconfig) easily cr o [1998/04/04] bin/6214 ping sometimes cannot be killed with a Co o [1998/04/05] conf/6220 Too few ttyv devices in the -RELEASE syst s [1998/04/06] bin/6223 PST/DST bug in /bin/date o [1998/04/06] ports/6230 rse gfont_mkgdf calls wrong interpreter o [1998/04/06] bin/6234 ypserv -d is broken f [1998/04/07] kern/6247 Gravis UltraSound Classic no longer works o [1998/04/14] docs/6295 doc Reference to nonexistent file in Device D o [1998/04/14] kern/6296 IP_HDRINCL sockets force header fields to a [1998/04/14] kern/6299 vmstat -i does not show PnP device interr o [1998/04/15] docs/6307 doc sgmlfmt not `make -jN' ready s [1998/04/15] bin/6314 [PATCH] /usr/sbin/ac modification s [1998/04/16] ports/6315 kuriyama new port request: korean/htm o [1998/04/16] kern/6318 pppd does not update wtmp on hangup o [1998/04/16] misc/6320 Sometimes nohup isn't good enough. o [1998/04/17] bin/6332 bde /usr/include/time.h doesn't compile with o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 Kernel version strings need to relate to o [1998/04/20] bin/6359 routed does sent router discovry solicita s [1998/04/20] bin/6371 [PATCH?] fetch(1) uses HTTP_PROXY for ftp a [1998/04/27] kern/6432 IFF_NOARP does not affect ethernet interf o [1998/04/28] ports/6445 jkoshy New port: `fhist' o [1998/04/30] kern/6464 tcpdump doesn't recognize tun0 when it's o [1998/05/03] kern/6495 Need pci_unmap_mem and pci_unmap_port rou s [1998/05/04] bin/6509 [ALMOST PATCH] Allow dd to seek/skip to o s [1998/05/05] bin/6521 [MAYBE PATCH] "rmdir -p x/y/z/" fails o [1998/05/07] kern/6544 luigi Only get one channel through sound card o [1998/05/07] ports/6546 ache 3line ansi prompt in tcsh: cursor disappe o [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] kern/6623 non-root user can crash system if disconn o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje o [1998/05/15] kern/6651 peter Possible NFS deadlock clue f [1998/05/16] bin/6653 The rc script sometimes produces errors w s [1998/05/16] bin/6658 [PATCH] -stable getcwd(3) performs unnece s [1998/05/17] kern/6668 [PATCH] new driver: Virtual Ethernet driv s [1998/05/18] bin/6676 [PATCH] natd doesn't respond to signals w o [1998/05/19] ports/6699 ports New port: the Generic NQS system a [1998/05/26] misc/6759 phk buggy code in libdisk.a's disk.c o [1998/05/26] kern/6760 can't compile kernel w/o networking o [1998/05/26] kern/6769 peter panic: nfs rcvunlock s [1998/05/29] kern/6781 [PATCH] exabyte changer doesn't grok LUNs s [1998/05/29] bin/6785 place for all the default dump flags f [1998/05/31] ports/6813 fenner patched audio module for vat port o [1998/06/01] ports/6815 torstenb ssh lookup ignores second IP address s [1998/06/01] kern/6819 [PATCH] pci_unmap_int (pci/pci.c) does no o [1998/06/01] kern/6820 cd9660_mount NULL pointer deref for no CD o [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/13] misc/6936 sysinstall: install from MS-DOS MO divece o [1998/06/18] kern/6981 CD unmount w/o CD in drive can cause pani s [1998/06/19] bin/6995 [patch] Minor flaw in fdformat s [1998/06/19] bin/6997 [patch] vnconfig "open" error message con s [1998/06/21] kern/7014 [PATCH][STABLE] Add support for SiS 5591 o [1998/06/22] bin/7021 asami Size estimation patches to pkg_* o [1998/06/22] bin/7022 asami changes to bsd.port.mk to accompany PR bi o [1998/06/22] bin/7023 asami bsd.port.(%|subdir.).mk patches for size f [1998/06/23] kern/7029 gibbs cdrecord and aic7880 troubles f [1998/06/23] i386/7031 Our RocketPort port does not support DEVF s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b o [1998/06/25] docs/7065 wosch FreeBSD webpages -> applications, port br f [1998/06/25] bin/7068 markm /usr/bin/perl: library path addition s [1998/06/26] kern/7085 [patch] maybe_resched() priority check co s [1998/06/28] kern/7095 [stable] Gravis MAX in 2.2.6 suffers from s [1998/06/28] i386/7100 integrate pcvt configuration into the /et s [1998/06/29] bin/7117 flex -I option is broken s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % s [1998/07/02] kern/7146 The PCCARD doesnt recognize cards in top s [1998/07/05] kern/7177 [PATCH] Support for "Video Highway Xtreme s [1998/07/06] bin/7184 /usr/games/robots fails to write high sco s [1998/07/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, s [1998/07/10] misc/7232 Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel f [1998/07/10] misc/7239 ping(8) and traceroute(8) may report erra o [1998/07/12] kern/7259 -current: GENERIC and SMP-GENERIC out of o [1998/07/12] bin/7265 A warning flag is added to ln(1). o [1998/07/13] ports/7268 asami MASTER_SITE_OVERRIDE works more better o [1998/07/14] kern/7282 some old and rarely used drivers have app o [1998/07/14] ports/7283 ache tcsh / LC_CTYPE - obscure problem. o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m o [1998/07/16] bin/7298 Improvements to ln(1). a [1998/07/19] bin/7324 wosch Suggestions for minor modifications to ad o [1998/07/21] conf/7348 Default answer 'NO' in network configurat o [1998/07/21] bin/7352 libc generates spurious warnings when use a [1998/07/23] ports/7375 dburr New port request: audio/xsplay f [1998/07/23] kern/7377 we have a new digiboard driver supporting s [1998/07/29] i386/7426 Bugs in macro definitions of pthreads. a [1998/07/31] docs/7456 doc dialog(3) man page outdated o [1998/08/01] ports/7464 dburr New port: WMakerconf o [1998/08/03] ports/7485 vanilla New port: Xterminal-0.2 s [1998/08/09] kern/7546 [PATCH] [STABLE ?]shutdown -p - system po f [1998/08/12] kern/7589 Tulip Driver parses SROM contents wrong f [1998/08/13] conf/7606 NIS Makefile.dist: NOPUSH replaced by REM o [1998/08/13] bin/7607 GTAGS patch for nvi has posibility of buf o [1998/08/14] kern/7619 odd nfs server not responding messages ap o [1998/08/16] ports/7628 dburr new port: sajber-jukebox o [1998/08/16] bin/7632 Race condition in /stand/sysinstall o [1998/08/18] bin/7669 libalias does not IRC DCC packets under c o [1998/08/19] ports/7680 billf New port of tn5250 o [1998/08/19] conf/7682 Cron logfile in the wrong place o [1998/08/19] gnu/7687 description of default baud rate for cu c o [1998/08/20] kern/7693 Misleading warning in cblock_alloc_cblock o [1998/08/20] bin/7694 bogus error-message from route(8) o [1998/08/22] kern/7722 Changes to acct format o [1998/08/23] bin/7728 ftpd processes hang a [1998/08/25] misc/7741 enhancement to tcpdump to print LCP/PAP/C o [1998/08/27] bin/7753 arp command fails silently on invalid pro o [1998/08/27] misc/7759 proflibs installation error, libcrypt_p.a o [1998/08/28] misc/7771 Debugging putenv/getenv o [1998/08/29] ports/7774 torstenb sshd doesn't refuse to login people with o [1998/08/29] bin/7779 [PATCH] modload should detect stripped ke o [1998/08/30] kern/7782 Kernel rebuild not correctly responding t o [1998/08/30] bin/7786 quota.h has superfluous semicolon in macr a [1998/08/31] docs/7791 doc ipf(1) and ipfstat(1) should have been ip o [1998/09/01] gnu/7800 tar(1) does not recognize --gunzip option o [1998/09/02] ports/7814 andreas postgreqsl docs are broke o [1998/09/02] i386/7816 [Patch] NE2000 PnP card IDs to sys/i386/i o [1998/09/03] bin/7826 ls(1) knows too much about format of strf o [1998/09/03] bin/7828 Add a command line option to cp to make i o [1998/09/05] kern/7837 patches to add a p_auth extension pointer o [1998/09/07] ports/7845 tg Unbuffered /dev/vx0-output from Python 1. o [1998/09/07] bin/7846 /sbin/mount_* do not canonicalize the mou o [1998/09/07] misc/7850 lt_LT.* locale o [1998/09/07] bin/7855 cpp should define __ELF__ if objformat = o [1998/09/07] kern/7856 Patches to add lkm hooks to cmsg_data anc o [1998/09/08] bin/7860 Extra option to pr(1). s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/08] bin/7869 Improved error messages from apm o [1998/09/09] misc/7873 poor initial configuration and documentat f [1998/09/09] ports/7875 dwhite NEW PORT: lcdproc o [1998/09/11] bin/7895 multiple identical NFS mounts accepted o [1998/09/11] kern/7903 unmatched '{}' blocks. o [1998/09/13] docs/7914 doc no elf(5) manpage o [1998/09/15] ports/7932 torstenb man zshall doesn't work o [1998/09/16] misc/7946 ccdconfig gives confusing error when give o [1998/09/17] bin/7962 /usr/bin/ee prompts "save changes" when f o [1998/09/18] bin/7973 lpd: Bad control file owner in case of re o [1998/09/19] kern/7990 patch - teach kernel about RB_POWEROFF fl o [1998/09/19] ports/7992 ports New port: xemacs20-stepwise (XEmacs20 hac o [1998/09/20] bin/7998 pkg_add seems to have unneeded umask o [1998/09/20] misc/8005 yokota Keyboard freezes going from KDE to text m o [1998/09/21] kern/8011 libc_r does not have pread() or pwrite() o [1998/09/21] kern/8015 [patch] Some sysctl descriptions for the o [1998/09/24] ports/8042 torstenb If pidentd dies, you must kill all telnet o [1998/09/26] bin/8060 install ignores the +X mode flag o [1998/09/27] conf/8061 profiling utilities seperate from profili o [1998/09/27] ports/8063 asami [PATCH] Add multiple CDROM support to bsd o [1998/09/29] bin/8084 NIT: non-working code in rshd o [1998/10/02] i386/8131 [patch] Support for PCI NE2000 compatible o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) o [1998/10/03] bin/8134 End of game is not recognised immediately o [1998/10/03] misc/8139 [patch] missing /usr/src/share/examples/d o [1998/10/04] bin/8142 freebsd 2.2.7 implementation of key(1) [s o [1998/10/04] i386/8146 [patch] kzipboot serial console setup and a [1998/10/06] bin/8163 [patch] It is impossible to assign quotas o [1998/10/06] bin/8164 [patch] repquota incorrectly reports quot o [1998/10/06] i386/8171 [patch] Intel EtherExpress Pro 100 suppor o [1998/10/07] misc/8202 semop() is not wrapped for thread safety o [1998/10/08] bin/8211 Script to search kernel for an address o [1998/10/08] ports/8217 ache www/netscape4-*: avoid `ns-install' o [1998/10/12] bin/8295 order of options in printcap causes some o [1998/10/13] conf/8303 3.0-981009-BETA can't make swap device on o [1998/10/13] kern/8311 kernel panic on de0 o [1998/10/16] misc/8346 Strftime can't generate ISO-8601 timezone o [1998/10/16] bin/8347 /usr/lib/compat build issues in 3.0 RELEA o [1998/10/16] bin/8348 [PATCH] zforce(1) is broken: fix o [1998/10/16] kern/8349 [PATCH] Changer definition for SureStore f [1998/10/17] misc/8357 Segmentation fault while making SWARM-1.3 f [1998/10/17] bin/8367 /stand/sysintall is screwing up my /etc/r o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/19] misc/8378 Is termcap not maintained enough ? o [1998/10/22] kern/8420 __getcwd() from an (forcibly) unmounted f o [1998/10/23] kern/8428 Is FreeBSD 3.0-RELEASE support 640MByte M o [1998/10/24] misc/8434 boot.flp /bin/init crashes during probe w o [1998/10/24] i386/8436 boot.flp sysinstall crashes when probing o [1998/10/24] bin/8438 ex/vi: Error: tcsetattr: Interrupted syst o [1998/10/25] kern/8444 pcvt with more than 8 virtual consoles o [1998/10/25] docs/8445 doc Update of "Installing Mathematica on Free o [1998/10/26] kern/8456 SMP kernel fails with Everex PO-6200 Dual o [1998/10/27] bin/8466 bind man pages not installed by 3.0 make a [1998/10/27] docs/8472 billf da(4) references nonexistent da(9) o [1998/10/27] i386/8474 repquota does not pick up NIS information o [1998/10/28] bin/8479 Final \'s in /etc/exports did not work in o [1998/10/30] kern/8498 Race condition between unp_gc() and accep o [1998/10/30] bin/8501 snake has a segmentation fault depending o [1998/10/30] conf/8517 rc.conf/rc fails to set ldconfig -aout o [1998/10/31] misc/8519 Murphy's Laws o [1998/11/01] conf/8531 sysinstall on 3.0-RELEASE (and 3.0-curren o [1998/11/03] kern/8550 strip kernel before moving it during make o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> o [1998/11/04] i386/8571 Bug in config utility in FreeBSD 2.2.6-RE o [1998/11/07] kern/8589 incorrect spelling for "dependency" and " o [1998/11/07] i386/8598 MAKEDEV fails if not run from current dir o [1998/11/08] kern/8604 ps u gets confused about process start ti o [1998/11/08] kern/8605 ipsec for ipv4, new version o [1998/11/08] ports/8620 asami New option to colorls - -K, color only to o [1998/11/09] bin/8631 pci interrupts are shown on EISA only mac o [1998/11/09] kern/8633 TCP packet via SLIP/CSLIP containing this o [1998/11/11] misc/8654 SYSV options allow WINE to run, but Netsc s [1998/11/12] kern/8661 stb sys/netatalk/at_control.c needs to correc o [1998/11/12] bin/8666 X blocks serial port with getty process o o [1998/11/13] gnu/8679 tar man page should be updated o [1998/11/14] bin/8681 other macro name that has same number is o [1998/11/15] kern/8703 NFS Freezes when copying files from 3.0 t o [1998/11/18] kern/8747 [PATCH] fixes for systags.sh o [1998/11/18] ports/8754 se KDE: KDM Display Manager has login proble o [1998/11/18] bin/8756 'pw' command additional feature request o [1998/11/19] misc/8764 pwd_mkdb is slow on many users o [1998/11/19] docs/8765 dwhite some suggested text for describing passwo o [1998/11/22] bin/8809 fdisk calls QNX-4 partitions unknown o [1998/11/22] bin/8811 Problem to use 'NLSMODE' variable in Make a [1998/11/25] ports/8864 ports useradd - system V compatible implementat o [1998/11/27] i386/8867 /stand/sysinstall core dumps (signal 11) o [1998/11/28] bin/8880 billf cp missing verbose switch o [1998/11/28] bin/8881 billf mv missing verbose switch o [1998/11/29] kern/8895 DEC 21152 PCI-PCI bridge chip isn't probe o [1998/11/29] kern/8898 PCI devices without an associated driver o [1998/11/30] bin/8913 negative time values for csh 'time' built o [1998/12/01] i386/8923 ctm 2.2.5 -> 2.2.7 error hu_HU.ISO_8859- o [1998/12/01] kern/8925 options kern file needs AWE_DEFAULT_MEM_S o [1998/12/03] i386/8953 BINFORMAT not defined in 2.2-STABLE o [1998/12/03] bin/8955 request CVS allow advisory locks on repos o [1998/12/04] kern/8960 lnc driver does not set IFF_MULTICAST o [1998/12/04] bin/8966 yp_mkdb does not accept standard automoun o [1998/12/06] misc/8986 install-info breaks installworld over nfs o [1998/12/06] bin/8989 (patch) chflags support for mtree(8) o [1998/12/08] bin/9012 route add -host hostIP -interface localIP o [1998/12/08] kern/9026 natd o [1998/12/10] conf/9051 2.2.8R boot floppy won't write to fixit f o [1998/12/11] bin/9055 When used without arguments, ``set'' and o [1998/12/12] bin/9064 [PATCH] propose adding `direct' option in o [1998/12/14] bin/9078 tunefs cant access mounted devices (vs. m o [1998/12/15] kern/9092 DELF raid volumes cause panics under CAM o [1998/12/16] i386/9102 Voxware does not provide /dev/mixer for E o [1998/12/16] ports/9107 asami Addition to bsd.port.mk for searching mul o [1998/12/17] bin/9118 default install of aout compat libs is in o [1998/12/18] bin/9123 pax can't read tar archives that contain o [1998/12/19] bin/9135 tar doesn't back up device files o [1998/12/20] kern/9144 luigi acd driver inconsistency (byte order in C o [1998/12/20] ports/9150 nate Ports depending on jdk need to know where o [1998/12/21] conf/9160 /etc/services file corruption o [1998/12/22] bin/9176 dillon placemark to split mount_ufs out of mount o [1998/12/23] kern/9183 newton chroot(2) can be broken by the superuser. o [1998/12/24] bin/9188 telnet gets stuck in ttydrain() o [1998/12/27] bin/9206 sysinstall installation should create /st f [1998/12/28] misc/9220 nvi: catalog: mistake in Russian error me o [1998/12/28] bin/9226 telnetd can log wrong IP address to utmp o [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy o [1998/12/30] conf/9245 obsolete locale setting in /usr/src/etc/{ o [1998/12/30] conf/9246 allscreens_flags in /etc/rc.conf not work o [1998/12/30] bin/9250 [PATCH] allow fetch to do ftp directory l o [1998/12/31] i386/9257 fpathconf() missing from libc_r o [1998/12/31] bin/9259 allow no prompt for yes in fdformat, but o [1999/01/02] bin/9281 awk asumes memory that is returned from m o [1999/01/03] i386/9283 ioctl(SNDCTL_DSP_SETFMT) on /dev/audio (p o [1999/01/03] bin/9285 pw strips comments from group file o [1999/01/03] ports/9286 andreas Patch for games/nethack-qt to fix compila o [1999/01/03] ports/9289 kris New Port - ASPostit (Dockable version of o [1999/01/04] kern/9316 Intel PILA8461 NIC panics 2.2.7 during pr o [1999/01/04] bin/9318 vgrind(1): no JAVA support o [1999/01/04] i386/9319 D-Link DE-528CT poor performance o [1999/01/05] bin/9333 timestamp dump's progress o [1999/01/05] i386/9341 tty-level buffer overflows o [1999/01/06] bin/9349 make doesn't diagnose non-numeric argumen o [1999/01/06] docs/9352 hoek wrong macro names in groff_[ms|mm|mmse].7 o [1999/01/07] bin/9374 Improved functionality for find(1) o [1999/01/08] conf/9388 magic(5) correction for wordperfect o [1999/01/08] kern/9392 Alternate system clock OR kernel stats cl f [1999/01/10] ports/9425 se KDE starting up from xdm has problem.... o [1999/01/13] bin/9470 aout-to-elf-build broken with kerberosIV- o [1999/01/13] kern/9474 "comcontrol rescan 0:8:0" hangs, causes o o [1999/01/14] bin/9494 new option to prevent mail from sending m o [1999/01/14] bin/9501 Several cvs contrib files are not Y2K com o [1999/01/14] ports/9508 andreas Update majorcool to current version 1.3.2 o [1999/01/16] misc/9524 /usr/share/examples/libvgl/demo looks lik o [1999/01/16] bin/9529 ftp filname completion can't handle space o [1999/01/17] bin/9536 make world installs aout compat libs in t o [1999/01/19] bin/9569 top(1) ignores tty EOF condition. o [1999/01/19] kern/9570 ed(4) irq config enhancement o [1999/01/19] bin/9573 ksrvtgt not working o [1999/01/20] misc/9582 configApache command doesn't work for /st o [1999/01/20] kern/9590 Clean up for -Wall warnings o [1999/01/20] kern/9591 Linux compat getrlimit/setrlimit constant o [1999/01/21] kern/9611 MFS calculates the size incorrectly when o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/23] misc/9638 Typo error in Italian locale o [1999/01/23] misc/9639 /etc/security reports missing passwords o a [1999/01/24] ports/9657 ports Progressive Networks' RealAudio proxy por o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi o [1999/01/25] kern/9689 panic in sbdrop(kern/uipc_socket2.c) o [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. o [1999/01/27] i386/9721 Patch for FreeBSD netboot (booting via DO o [1999/01/28] kern/9748 error in queue handling of at_shutdown() o [1999/01/28] kern/9764 allow /bin/df not to list certain entries o [1999/01/28] bin/9770 An openpty(3) auxiliary program o [1999/01/29] i386/9777 luigi Generic AD1816 sound suport in Luigi's pc o [1999/01/29] misc/9778 Need to handle conflicting pthread.h and o [1999/01/29] misc/9782 minor problem with telnet and /etc/gettyt o [1999/01/29] ports/9786 cwt tk80 port doesn't create man page links o [1999/01/30] kern/9791 enhancement for netinet/ip_icmp.c to cont o [1999/01/30] ports/9792 msmith pib coredumps in port maker mode o [1999/01/30] ports/9795 obrien The Handbook is not clear on how to deal o [1999/01/30] bin/9809 finger output format wrong f [1999/01/30] ports/9811 nectar New port: lang/gnomeguile o [1999/01/30] ports/9812 nectar New port: devel/libgtopbindings o [1999/01/31] ports/9840 asami patch allows ports to fetch their sources o [1999/01/31] conf/9845 Propose adding options to rc.conf and rc. o [1999/01/31] kern/9848 ARP proxyall extra sanity check o [1999/01/31] ports/9851 ports Port update: update R to 0.63.2 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/01] kern/9877 Patch to remove some kernel compile warni o [1999/02/01] kern/9878 Some patches to remove compiler warnings o [1999/02/02] ports/9880 kris New port - x11-toolkits/gtkglarea o [1999/02/02] ports/9884 ports samba does not allow "joes" (username+pas o [1999/02/03] bin/9893 NFS umount of regular file impossible o [1999/02/03] bin/9902 error in german (and some other) locale s o [1999/02/05] ports/9921 peter exmh2 ports update o [1999/02/06] bin/9931 config gives misleading error when duplic o [1999/02/07] ports/9954 ports new port devel/ACE o [1999/02/08] bin/9972 groff always built for US (letter) sized o [1999/02/09] gnu/9987 jdp wrong (for FreeBSD) ELF_DYNAMIC_INTERPRET o [1999/02/09] bin/9990 Enhancement to filename completeion in cs o [1999/02/09] i386/9991 new driver for National Instruments GPIB o [1999/02/09] ports/9993 kris New Port - graphics/libunfig o [1999/02/09] ports/9998 kris New port - graphics/mtv (MpegTV player) o [1999/02/10] i386/10004 instalation of current version from FTP s o [1999/02/10] misc/10005 Update /etc/motd o [1999/02/10] ports/10007ports Port of the mercury compiler version 0.8 o [1999/02/10] docs/10017 doc Added a site and bug fix o [1999/02/10] bin/10019 Keyinfo and keyinit may use the wrong nam o [1999/02/11] kern/10022 kernel cannot detect WinChips correctly. o [1999/02/11] ports/10023kris New port - net/gtkcookie o [1999/02/11] conf/10024 etc/mtree/BSD.local.dist: lib/perl5 no lo o [1999/02/11] bin/10030 Kerberized telnet fails to encrypt when a o [1999/02/11] docs/10038 doc Added a site and bug fix (part two) o [1999/02/12] i386/10052 Matrox Millennium II AGP device/model id o [1999/02/13] bin/10064 /bin/sh called from make dumps core o [1999/02/14] kern/10077 dd'ing a ccd stripped partition sometimes o [1999/02/14] docs/10084 doc new FreeBSD user group in Yogyakarta City o [1999/02/14] docs/10085 doc NIS Setup Tutorial o [1999/02/14] ports/10093ports Upgrade GNAT to 3.11p and fix for ELF o [1999/02/14] kern/10095 missing VGA description o [1999/02/14] docs/10098 doc Lack of overall guide for NIS setup o [1999/02/15] ports/10103ports revision of port of plugger-3.0 o [1999/02/15] gnu/10112 /usr/src/gnu/usr.bin/patch sorely out of o [1999/02/15] kern/10113 yokota [PATCH] syscons: switch to previous conso o [1999/02/15] conf/10115 /etc/login.conf still implies LOGIN_CAP_A o [1999/02/16] kern/10116 acd driver patch to support PD/CD drive. o [1999/02/16] i386/10121 Serial port parity setting problems with o [1999/02/16] ports/10124ports UNIX|STAT pr submission failed to include o [1999/02/17] ports/10129torstenb mirror/patch-ac sets /usr/local/bin/perl5 o [1999/02/17] bin/10131 bug in strptime(3) o [1999/02/18] i386/10143 Rebooted without prompting o [1999/02/18] docs/10146 jkh Release Notes and LINT for 3.1 include ha o [1999/02/18] misc/10148 atime behavior differs with empty files f o [1999/02/18] kern/10149 New PCI device o [1999/02/19] bin/10158 Reference to ncheck in quot(8) o [1999/02/19] kern/10159 Unable to unload vinum module o [1999/02/19] kern/10160 kldload of umap module panics the system o [1999/02/19] ports/10162se Fix kdmrc to add qmail usernames to NoUse o [1999/02/19] ports/10164jmz XFree86-3.3.3.1 build fails with kerberos o [1999/02/19] bin/10165 CVS does not know to ignore .So files o [1999/02/19] misc/10167 Upon exiting X11R6, monitor goes blank. o [1999/02/20] bin/10169 find -perm doesn't allow a bitwise o [1999/02/20] kern/10175 Bridging support incomplete for some netc o [1999/02/21] ports/10178torstenb USE_SOCKS=YES option broken for security/ o [1999/02/21] conf/10179 /etc/make.conf has too many entries o [1999/02/21] docs/10180 doc Another mirror site not listed... o [1999/02/21] docs/10182 doc http://www.freebsd.org/cgi/query-pr.cgi?p o [1999/02/22] ports/10196torstenb Better startup scripts for ssh o [1999/02/22] ports/10215rvb net/coda_client and net/coda_server o [1999/02/23] ports/10227peter wrong sendmail path in rdist6-port o [1999/02/23] misc/10231 inet_addr() doesn't check for illegal val o [1999/02/25] docs/10240 doc We need a script which check if our web m o [1999/02/25] conf/10244 100 character limit on any pathname in sy o [1999/02/25] kern/10255 Some more SiS chipset PCI IDs for chipset o [1999/02/26] bin/10274 make does not understand "lib(obj)" synta o [1999/02/26] bin/10283 Race condition in rc.network o [1999/02/28] bin/10300 dmesg exits on signal 10 o [1999/03/01] misc/10325 Implementation of itoa() for libc o [1999/03/01] docs/10331 doc pccardd(8) claims FreeBSD does not suppor o [1999/03/01] bin/10342 putenv(3) unnecessarily calls strdup/free o [1999/03/01] misc/10349 For long .Dt fields, rendering is broken- o [1999/03/01] bin/10350 mail(1) has some ugly code in it... o [1999/03/02] misc/10351 /usr/share/examples/worm is out of date o [1999/03/02] bin/10358 ftp(1) has problems with long pathnames o [1999/03/02] bin/10368 'pgtok redefined' error in ps(1) o [1999/03/03] ports/10377ports `make' in ports does not honor {f,ht}tp_p a [1999/03/04] ports/10385billf New port: apache13-modperl o [1999/03/04] ports/10389kuriyama Create new port mod_jserv and JSDK 2.0 o [1999/03/05] ports/10396asami SPIN is in the wrong category o [1999/03/05] ports/10404hosokawa Samba PLIST not up to date. o [1999/03/05] ports/10407hosokawa incomplete mirrors suggested for samba o [1999/03/06] ports/10415hosokawa samba-2.0.3 port make package fails and s o [1999/03/06] kern/10440 Discard device does not set ifq_maxlen o [1999/03/06] bin/10444 avoiding lost mail when mail filesystem i o [1999/03/06] ports/10454obrien Update: emulators/spim o [1999/03/06] kern/10455 pcaudio breakage o [1999/03/07] i386/10465 Must disable ex0 to install. o [1999/03/07] ports/10469ports new port: linux-netcape-communicator-4.51 o [1999/03/07] docs/10472 doc Mailing list for discussion of Xircom dri o [1999/03/07] ports/10477ports The fakemail in lib-src fails to link (ne o [1999/03/08] docs/10488 doc Error in entry for 02/27 in calendar.hist o [1999/03/08] bin/10493 ipfw's undocumented feature s [1999/03/09] bin/10508 obrien isc-dhcp puts garbage to text options, V2 o [1999/03/09] docs/10512 doc ENOBUFS returnable from writev(2) but not o [1999/03/10] bin/10522 make world died due -Werror o [1999/03/10] bin/10524 3.1-19990309-STABLE install problem o [1999/03/10] ports/10532ports Port of GNU Pascal o [1999/03/10] kern/10537 extraneous verbose output from cam_xpt.c o [1999/03/10] bin/10538 sbin/nos-tun gives wrong usage message o [1999/03/11] bin/10546 Intel Pro/100 PC card has CIS string > CI o [1999/03/11] bin/10548 More useful default ifconfig behaviour sa o [1999/03/12] gnu/10555 jraynard [PATCH] awk dumps core o [1999/03/12] bin/10556 make(1) man page update o [1999/03/12] kern/10563 QIC 40/80 tape drive ft present in versio o [1999/03/13] bin/10568 obrien dhcp client receives garbage (dhclient pr o [1999/03/13] kern/10574 3.1-stable kernel reports k6 cpu as "\^E" o [1999/03/14] conf/10582 Makefile.upgrade fails with make -j o [1999/03/14] misc/10589 Incorrect assumptions in /etc/security o [1999/03/14] bin/10590 new option to silince confirmation but no o [1999/03/14] i386/10595 [PATCH] spanish language support for vidf o [1999/03/15] bin/10601 wosch Ownership of symlinks copied by adduser a o [1999/03/15] i386/10606 Probablue odd error message if LS-120 is o [1999/03/15] i386/10608 add Opti Viper-M PCI ID o [1999/03/15] kern/10609 adjtime bug (tv_sec > 2147) and enhanceme o [1999/03/15] bin/10610 New options to date to slowly adjust time o [1999/03/15] bin/10611 timed enhancement o [1999/03/16] bin/10622 vi does not display Russian characters pr o [1999/03/16] i386/10623 DFLTPHYS in /usr/src/sys/i386/include/par o [1999/03/16] ports/10634ports Update the hylafax port to do a client in o [1999/03/17] ports/10639rse ports/web/wml must be upgraded and unbrok o [1999/03/17] kern/10641 Default sync rate in ncr SCSI driver is s o [1999/03/17] kern/10642 exports(5) mentions KERBNFS but that's no o [1999/03/18] bin/10657 Unable to install from CDROM or DOS parti o [1999/03/18] docs/10659 doc Many syscall man pages have an IMPLEMENTA o [1999/03/18] docs/10660 doc User Group not listed o [1999/03/18] kern/10663 hpscan doesn't like 3.1's pt device o [1999/03/18] docs/10664 doc Notes on 2.2.8 -> 3.1 migration o [1999/03/18] misc/10667 Sysinstall inserts multiple # -- sysinsta o [1999/03/19] gnu/10670 cvs doesn't allow digits in local keyword o [1999/03/19] i386/10672 blank line inserted by vipw into master.p o [1999/03/19] kern/10673 Non-ASCII chars on serial console with Re o [1999/03/19] kern/10678 Printing problems using ppc bus o [1999/03/19] ports/10682asami List mirror sites in MASTER_SITE_BACKUP - f [1999/03/20] ports/10699jmacd Update to logo port a [1999/03/20] misc/10700 periodic weekly (/etc/weekly) fails to re f [1999/03/20] ports/10702ports Add NCD audio support for emiclock ports o [1999/03/22] kern/10728 sos WCD driver does not recognize a recovered o [1999/03/22] ports/10734pst Update of gdb port to 4.17 o [1999/03/23] kern/10755 de driver says `invalid EESPROM checksum' o [1999/03/23] docs/10762 doc geocrawler.com mailing list archives o [1999/03/23] i386/10766 obsolete device name wcd is still left un o [1999/03/24] i386/10779 zp slot 0 sees 3Com 589 PCMCIA card but z o [1999/03/25] bin/10793 cvs update modification time check granul o [1999/03/25] i386/10796 Out of memory error during make buildworl o [1999/03/26] misc/10803 whois(1) client enchancements a [1999/03/26] misc/10804 billf whois(1) enhancement o [1999/03/26] ports/10806phk Update net/scotty to 2.1.10 o [1999/03/26] kern/10812 LINT configuration MAXDSIZ/DFLDSIZ mislea o [1999/03/26] ports/10813ports crossgo32 brokeness o [1999/03/27] bin/10825 daily script not executed or executed twi o [1999/03/28] ports/10832jfitz mSQL 2.x not freely available anymore o [1999/03/28] docs/10840 jkh [PATCH] Add pcic double-loading bug fix t f [1999/03/28] ports/10844ports New port: adagdb o [1999/03/29] docs/10850 doc submitting a documentation change for sed o [1999/03/29] bin/10856 vty's from ttyvc - ttvf (maybe more?) do o [1999/03/29] kern/10860 bpf overwrites source ethernet addresses o [1999/03/30] bin/10868 BUG in /usr/bin/calendar o [1999/03/30] misc/10871 wst0 fails with Sony SuperStation streami o [1999/03/30] ports/10874ports [PATCH] html2ps doesn't handle `file:/... o [1999/03/30] docs/10877 doc manpage for objformat incorrectly mention o [1999/03/30] bin/10878 host(1) dumps core o [1999/03/31] kern/10894 wrong error message in svctcp_create() o [1999/04/01] bin/10905 sa(8) is hard coded for 8 character user o [1999/04/01] gnu/10910 Integration of Objective C patches into g o [1999/04/01] i386/10913 Characters in console get switched to oth o [1999/04/02] ports/10916ports new port biology/molmol again o [1999/04/02] bin/10921 I wished from(1) would count the number o o [1999/04/02] bin/10923 /usr/bin/cpp is an out-of-date wrapper fo o [1999/04/02] bin/10924 Extensions to biff(1) o [1999/04/03] bin/10931 biff b o [1999/04/04] ports/10945jmz X11 "sessreg" program does not update /va o [1999/04/06] bin/10980 With ctags -x no space is left between na o [1999/04/06] bin/10992 pthread_kill() doesn't deliver signals to o [1999/04/07] docs/10997 doc Problem with query-pr-summary.cgi o [1999/04/07] i386/11006 Sysinstall silently makes FreeBSD's parti o [1999/04/08] kern/11018 detection of sc0 and atkbd fails o [1999/04/08] kern/11020 popen does not honor ISO 9899 syntax o [1999/04/08] ports/11029ports Configure scripts for non ported applicat o [1999/04/08] bin/11031 [PATCH] mount and umount support for mort o [1999/04/08] bin/11032 h2ph's cpp #warning/#error directive proc o [1999/04/08] ports/11034ports New ports of crazywwwboardle o [1999/04/08] bin/11036 markm Perl does not honor -DNOMAN o [1999/04/08] bin/11037 Gencat doesn't properly handle \ddd octal o [1999/04/09] ports/11048obrien variable not initialized in fwtk-lib lead o [1999/04/09] bin/11051 ps's -U option should accept a list of us o [1999/04/09] misc/11052 [PATCH] performance bug fix to fgets() ro o [1999/04/10] conf/11058 Recent change to rc script causes hang on o [1999/04/10] misc/11074 /usr/share/mk double in the cvs o [1999/04/11] bin/11085 Per-host configuration for syslog.conf o [1999/04/11] ports/11086ports Updating AStyle port o [1999/04/11] docs/11087 doc Portland FreeBSD users group o [1999/04/11] docs/11089 doc freebsd user group, sydney o [1999/04/11] docs/11090 doc User's group in Melbourne Australia o [1999/04/11] bin/11092 readlink(1) from OpenBSD o [1999/04/11] bin/11094 lastlogin.8 from NetBSD o [1999/04/12] docs/11098 tom FAQ Update: Database systems for FreeBSD o [1999/04/12] docs/11102 tom [Patch] Handbook: Minor spelling correcti o [1999/04/12] kern/11109 ipfw.ko Makefile contains CFLAGS+= -DDIVE o [1999/04/13] misc/11111 Error opening terminal: su o [1999/04/13] bin/11114 make(1) does not work as documented with o [1999/04/13] bin/11121 w(1) cannot handle more than one user on o [1999/04/13] misc/11126 vt100 termcap entry appears broken o [1999/04/13] ports/11127ports New port: Giram o [1999/04/14] ports/11134billf existense of /usr/obj/usr/ports/shells/ba o [1999/04/14] ports/11138jmz New version of Xevil 2.01, I created a po o [1999/04/14] bin/11141 u_long is not big enough o [1999/04/15] misc/11149 Web page entry for BAFUG is incorrect o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 o [1999/04/16] bin/11168 pw(8) usermod does not recognize -w flag o [1999/04/16] kern/11178 [PATCH] minor fix to /usr/include/sys/mbu o [1999/04/18] i386/11201 brian mktime possible bug o [1999/04/18] i386/11204 config -g -> no kernel, only kernel.debug o [1999/04/18] bin/11205 Suggestion: move mt(1) to /bin o [1999/04/18] i386/11207 sys/i386/isa/rp.c: fixed breaking and war o [1999/04/19] kern/11213 lutimes() is the same as utimes() o [1999/04/19] kern/11222 MFS does not sync from reboot syscall o [1999/04/20] kern/11235 Need to submit new driver o [1999/04/20] bin/11236 mountd fails to properly check for kernel o [1999/04/20] conf/11243 mountd startup can lose flags o [1999/04/20] bin/11248 Shuffle o [1999/04/20] ports/11250ports PORTS: upgrade lesstif to 0.88.1 o [1999/04/21] docs/11258 doc suggestion to refine npx.4 o [1999/04/21] ports/11264chuckr a2ps-letter port installs non-listed liba o [1999/04/21] ports/11270jfitz Update to the rexx-imc port o [1999/04/22] kern/11287 rfork(RFMEM...) doesn't share LDTs set by o [1999/04/22] misc/11289 makeflp.bat suggestion: create "kernel" d o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/04/25] bin/11315 [PATCH] declerations missing in libatm.h o [1999/04/25] misc/11316 [PATCH] HTTP proxy support for sysinstall o [1999/04/25] ports/11317ache Update: www/lynx-current o [1999/04/27] ports/11353asami Feature additions to bsd.port.mk. o [1999/04/27] ports/11354jmz Port fix: x11/XFree86 o [1999/04/27] bin/11360 Allow specification of "search" in resolv o [1999/04/28] kern/11365 plip in Linux mode has trouble with some o [1999/04/28] bin/11370 more segfaults if you give it a real file o [1999/04/28] misc/11373 errata.txt for 3.1 o [1999/04/29] misc/11383 $Id$ missing in some files in etc [PATCH] o [1999/04/29] bin/11387 mount_cd9660 doesn't show rockridge filen o [1999/04/29] ports/11388torstenb patch for ircII so /window create works o [1999/04/29] bin/11399 Calendar doesn't always handle 'last' day o [1999/04/30] ports/11402jfitz Update net/mrtg o [1999/04/30] kern/11410 code typo in ad1848.c: the != operator ha o [1999/04/30] kern/11411 code typo in clones.c: "if ((mpu_config = o [1999/04/30] kern/11412 code typo in ip_fil.c: missing NULL check o [1999/04/30] kern/11413 code typo in pci.c: the != operator has h o [1999/04/30] kern/11414 code typo in pcf.c: the != operator has h o [1999/04/30] kern/11415 code typo in wst.c: the != operator has h o [1999/04/30] kern/11416 code typo in sequencer.c: "if (!processed o [1999/04/30] ports/11421jfitz upgrade p5-Date-Manip 5.33 -> 5.34 o [1999/05/01] ports/11430se incorrect int type causes floating point o [1999/05/02] misc/11443 Updated Slovak keyboard map, with cr's st o [1999/05/02] misc/11446 Central European keyboard map o [1999/05/02] misc/11447 Czech keyboard map o [1999/05/02] misc/11448 Better looking VGA font for iso2 o [1999/05/02] ports/11460erich Update to the xlispstat port o [1999/05/03] ports/11468ports New port: xcin-devel o [1999/05/03] misc/11478 Non-functional AFS support in KerberosIV o [1999/05/04] ports/11504chuckr Update ports math/octave o [1999/05/05] ports/11510nik new version of www/sitecopy (0.6.0) o [1999/05/05] ports/11512ports new port: x11-toolkits/wxGTK o [1999/05/05] kern/11516 NetGear 10/100 Ethernet 21140-based Ether o [1999/05/05] kern/11517 ../../kern/kern_ntptime.c:533: warning: i o [1999/05/05] kern/11518 ../../pci/if_tx.c:1376: warning: no previ o [1999/05/05] kern/11519 dead code in ncr driver o [1999/05/06] bin/11552 sendmail local delivery (mail.local) can' o [1999/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi o [1999/05/06] kern/11555 Spelling mistakes in ata-dma.c o [1999/05/07] misc/11569 Automatically run fsck when the file syst o [1999/05/08] ports/11581fenner netperf port - rfc1644 forgotten o [1999/05/08] ports/11587ports inappropriate internet time calculation o [1999/05/08] docs/11589 nik Missing #includes in aio_read(2) o [1999/05/08] i386/11597 cmouse complaints: "/kernel: psmintr: out o [1999/05/09] ports/11601ports new port: ifmail-os-2.14.5 o [1999/05/09] docs/11607 doc RLIMIT_MEMLOCK not implemented o [1999/05/09] bin/11608 vnconfig not supporting swap-backed vn de o [1999/05/09] bin/11609 vnconfig -v reports page numbers, not byt o [1999/05/09] ports/11611billf Update port: net/ntop o [1999/05/09] docs/11615 doc Handbook: linux emulation documentation o o [1999/05/09] ports/11618ports new port: editors/xemacs21 o [1999/05/10] bin/11623 quot uses 32-bit integers for its calcula o [1999/05/10] conf/11626 /var/log/kerberos is rotated o [1999/05/10] bin/11637 build of kdump fails o [1999/05/11] docs/11643 doc handbook should state alternatives o [1999/05/11] ports/11652ports New port (net/dictd) o [1999/05/11] misc/11653 obrien patch to allow DHCP configuration of inte o [1999/05/12] bin/11669 gcc 2.7.2.1 gets bad magic error linking o [1999/05/12] misc/11670 /usr/include/arpa/nameser.h uses a C++ ke o [1999/05/12] bin/11671 "vidfont -r" fails, asking for font size o [1999/05/12] i386/11674 can't do make imake build or anything sin o [1999/05/12] kern/11676 PCIless kernel will not compile with ATAP o [1999/05/12] kern/11677 SCSI device quirk entry. o [1999/05/13] i386/11683 olpt/nlpt name change not in man pages o [1999/05/13] misc/11689 Change "netstat" mode in daily "status-ne o [1999/05/14] ports/11712ports Rosegarden Port is out to date o [1999/05/14] ports/11714ports New port: cls-1.0 (safe version of clear) o [1999/05/14] ports/11717andreas Update to sysutils/star o [1999/05/15] ports/11727jseger Character combinations halting bind8 a [1999/05/16] kern/11736 On fast machines kernel reports negative o [1999/05/17] ports/11742ports Problems with japanese/dvipsk* support. o [1999/05/17] ports/11743torstenb inn-2.2 (nonfatal) premature stop of buil o [1999/05/17] bin/11746 Add support for Solaris mailboxes o [1999/05/18] ports/11755ports ja-vfghostscript5.5 port has wrong md5 da o [1999/05/18] kern/11765 performance bug: network devices fxp & de o [1999/05/18] misc/11767 sppp does not implement VJ compression o [1999/05/19] ports/11781jseger Option to not use X windows support where o [1999/05/19] ports/11786kuriyama gnupg-0.9.6 port does not install o [1999/05/19] misc/11788 booting problems o [1999/05/19] kern/11789 ELF machine definition missing for ARM o [1999/05/20] bin/11805 doc [PATCH] argument missing from kzip.1 syno o [1999/05/20] misc/11812 ftp5.freebsd.org can't find giflib-3.0 an o [1999/05/21] ports/11816ports New port of mserver modem-sahring server o [1999/05/21] bin/11818 Added a feature to ping(8) o [1999/05/21] ports/11820asami bsd.port.subdir.mk does not define the `m o [1999/05/21] i386/11829 Boot Failure (Register Dump) with MFSroot o [1999/05/22] misc/11838 xwindows configuration problem o [1999/05/22] ports/11840asami Feature fixup: bsd.port.mk o [1999/05/22] docs/11856 kris references to vadvise(2) should probably o [1999/05/22] ports/11858billf New port: libwmf o [1999/05/22] ports/11859billf Update: textproc/mswordview o [1999/05/24] ports/11879ports dclock's "-miltime" option and "*miltime" o [1999/05/24] ports/11880kris Update port: wmmon o [1999/05/24] kern/11881 when a dummynet pipe is encountered it st o [1999/05/25] misc/11890 make world creates /lkm directory o [1999/05/26] bin/11896 cap_mkdb dumps core when non-files passe o [1999/05/26] i386/11898 Connot wirte to floppy on HP OB800CT with o [1999/05/26] kern/11899 many linux programs fail after 2.2.8-R -> o [1999/05/26] bin/11900 Sed(1) fails with MALLOC_OPTIONS set to ' o [1999/05/26] ports/11903ports File descriptor leak in ports/www/tidy/ti o [1999/05/27] conf/11905 sysinstall desktop changing inconvenience o [1999/05/28] bin/11914 makewhatis during installworld uses /usr/ o [1999/05/28] i386/11920 FBSD 3.2 upgrade claims not to upgrade /u o [1999/05/28] i386/11921 /usr/X11R6/lib/aout libraries screwed up o [1999/05/29] conf/11925 rc.conf cosmetic naming inconsistencies o [1999/05/29] bin/11929 symorder doesn't work on elf format objec o [1999/05/29] kern/11941 FreeBSD box reboots itself when changing o [1999/05/30] bin/11943 obrien pppd connection time report is wrong o [1999/05/30] kern/11945 tape problems on -stable, mt bl(ocksize), a [1999/05/31] docs/11955 dcs loader.8: spelling fixes o [1999/05/31] ports/11959obrien Compilation error from ddd-3.1.5 port o [1999/05/31] ports/11963ports should update the ocaml-tk module and ins o [1999/05/31] ports/11964jmacd lang/STk port needs to be updated to STk- s [1999/05/31] ports/11967billf p5-Apache port out of date o [1999/05/31] kern/11968 kldload should call module entry point be o [1999/06/01] docs/11978 doc timed(8) manpage does not define '-F' swi o [1999/06/01] i386/11979 Vaio 505DX touchpad not detected as Glide o [1999/06/01] kern/11981 brian access to tunN devices not allowed to non o [1999/06/01] kern/11982 Three cleanup fixes for uthreads o [1999/06/01] ports/11986andreas NTP port broken because of new nanokernel o [1999/06/02] bin/11987 hoek vacation(1) documentation and error loggi o [1999/06/02] conf/11989 pppd(8) output misplaced o [1999/06/02] bin/11997 Enhancement for lpr o [1999/06/02] kern/11999 shmget's error handling is not consistant o [1999/06/02] ports/12001ports wmcdplay 1.0Beta1 05/09/1998 sometimes sk o [1999/06/03] misc/12006 sos scheduler policy different define value b o [1999/06/03] ports/12011andreas Update: print/lyx o [1999/06/03] misc/12013 patch for 12012 o [1999/06/03] kern/12014 Fix SysV Semaphore handling o [1999/06/04] bin/12020 [PATCH] msgs(1) is bad about nonexistent o [1999/06/04] docs/12021 doc support.sgml Sydney UG update o [1999/06/04] docs/12023 doc cam_get_device(3) function return-value i o [1999/06/04] ports/12024ports New port of asfsm-1.0pre15 Afterstep file o [1999/06/04] ports/12025ports New port of asmem-1.1 o [1999/06/04] conf/12026 /etc/rc.diskless1 refrences non-existant a [1999/06/04] ports/12027billf update port: devel/nasm f [1999/06/05] ports/12037torstenb Update port: security/ssh o [1999/06/05] misc/12044 having tcl.h in /usr/local/include:/usr/i o [1999/06/06] gnu/12046 Perl subsystem does not install all tutor o [1999/06/06] misc/12049 [PATCH] searching for closed reports requ a [1999/06/06] bin/12052 sh type builtin appends first path compon o [1999/06/06] kern/12053 fixes a few aio bugs, makes socket io bet o [1999/06/06] ports/12056ache [PATCH] hpack install files always in /us o [1999/06/06] ports/12057markm Perl5 library builds do not honour PREFIX o [1999/06/06] bin/12058 does not declare some implemente o [1999/06/06] ports/12063kris Update: net/xwhois o [1999/06/06] ports/12066jseger Update: x11/xscreensaver o [1999/06/07] kern/12071 [PATCH] large scale IP aliasing o [1999/06/07] docs/12075 doc [PATCH] Ports Changes Page Does not List o [1999/06/08] ports/12077ports NEW PORT: ko-bitchx o [1999/06/08] misc/12080 printing o [1999/06/08] i386/12088 Enhancement to ed driver for Linksys 10/1 o [1999/06/08] ports/12090ports netatalk-sun port no longer dependent on o [1999/06/09] kern/12095 [PATCH] Buggy ATAPI Zip Drive is not dete o [1999/06/09] ports/12105ports Distfiles are bad o [1999/06/09] bin/12107 Add switch to dump to support multiple du o [1999/06/09] docs/12108 doc Add new FAQ entry in /doc/en/FAQ/preface. o [1999/06/09] ports/12109ports update port: xchat-0.9.6 to 0.9.7 o [1999/06/10] ports/12110ports update port: irssi-0.7.9 to 0.7.11 o [1999/06/10] ports/12111ports update port: wmpop3-0.2.2a to 0.5.0a o [1999/06/10] pending/12113gnats-adminESS1688 support for VoxWare sound driver o [1999/06/10] ports/12114ports Updates for the jdk-doc and jdk-tutorial o [1999/06/10] bin/12115 pppd reports wrong connected duration wit o [1999/06/10] docs/12119 doc [Patch] Cosmetic: Missing space in FAQ/pr o [1999/06/10] ports/12121obrien Update: mail/mutt o [1999/06/10] ports/12123ports New port: databases/ruby-postgres o [1999/06/10] ports/12124ports New port: devel/ruby-readline o [1999/06/10] ports/12125ports New port: devel/irb o [1999/06/10] docs/12128 doc Cosmetics changes in eresoureses.sgml o [1999/06/11] ports/12130ports Update: japanese/ndtpd, japanese/eb o [1999/06/11] docs/12132 doc Invalid URL at http://www.freebsd.org/int o [1999/06/11] ports/12134ports Update: korean/hanterm o [1999/06/11] ports/12135andreas patch-aa fails o [1999/06/11] ports/12138imp net/socks5 port broken with regards to pa o [1999/06/11] ports/12142ports Update Port: graphics/tgif-nls to 4.1.16 o [1999/06/11] ports/12143ports Auto-configure samba to use Kerberos 5 o [1999/06/11] ports/12145ports New port: korean/ami o [1999/06/11] ports/12146ports New port: korean/byeoroo o [1999/06/11] docs/12148 doc On a sample in the printing section of Th o [1999/06/12] ports/12150ports New Ports: audio/timidity++ o [1999/06/12] ports/12151ports New Ports: audio/timidity++-emacs o [1999/06/12] ports/12152ports New Ports: audio/timidity++-gtk o [1999/06/12] ports/12154ports New Ports: audio/timidity++-slang o [1999/06/12] ports/12155ports New Ports: audio/timidity++-motif o [1999/06/12] ports/12156ports New Ports: audio/timidity++-tcltk o [1999/06/12] ports/12157ports New Ports: audio/timidity++-xaw o [1999/06/12] ports/12158ports New Ports: audio/timidity++-xskin o [1999/06/12] ports/12159ports update mrtg to 2.7.4b o [1999/06/12] ports/12160ports New Ports: japanese/timidity++-slang o [1999/06/12] ports/12161ports New Ports: japanese/timidity++-tcltk o [1999/06/12] ports/12162ports update editors/cooledit o [1999/06/12] ports/12163ports Installed port mxv for FreeBSD3.1 run err o [1999/06/12] ports/12173ports fix port: net/pavuk o [1999/06/12] ports/12178ports Update of tgif port from version 4.1.15 t o [1999/06/13] ports/12183ports asapm upgrade 2.6 -> 2.7 o [1999/06/13] docs/12185 doc [Patch] doc/en/handbook/quotas/chapter.sg o [1999/06/13] ports/12186ports Update for ports/mail/ml: ML-3.3new to 3. o [1999/06/13] i386/12187 [PATCH] option FAILSAFE is misnamed o [1999/06/13] ports/12188ports new port: pbs-2.1.11 (misc/PBS) a batch s o [1999/06/13] ports/12192billf new port: net/domtools o [1999/06/13] ports/12193ports new port: cheapcall-0.7e o [1999/06/13] ports/12195ports submission of new port pgpenvelope o [1999/06/14] ports/12198ports [PATCH] www/gn references /usr/local/ ins o [1999/06/14] ports/12199ports [PATCH] mail/qmail references perl instea o [1999/06/14] ports/12200ports [PATCH] port net/rwhois references /usr/l o [1999/06/14] ports/12201ports [PATCH] net/wide-dhcp references /usr/loc o [1999/06/14] ports/12202ports update port: wmtz-0.2 to 0.4 o [1999/06/14] ports/12203ports port upgrade: audio/ripit o [1999/06/14] ports/12204ports Update port: graphics/EZWGL o [1999/06/14] bin/12205 [PATCH] DHCP client does not set hostname o [1999/06/14] ports/12206ports www/apache13 rc.d startup script has /usr o [1999/06/14] ports/12207ports ssh update: 1.2.26 --> 1.2.27 o [1999/06/14] misc/12209 termcap: "xterm" entry defines bogus capa 1026 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 Jun 14 11:50: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A80DE15026 for ; Mon, 14 Jun 1999 11:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA90200; Mon, 14 Jun 1999 11:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 14 Jun 1999 11:50:03 -0700 (PDT) Message-Id: <199906141850.LAA90200@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: John.Shue@symmetron.com (John A. Shue) Subject: Re: kern/12022: System clock timewarps Reply-To: John.Shue@symmetron.com (John A. Shue) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/12022; it has been noted by GNATS. From: John.Shue@symmetron.com (John A. Shue) To: , , , Cc: Subject: Re: kern/12022: System clock timewarps Date: Mon, 14 Jun 1999 14:46:40 -0400 It's not just P90s. My P100 is showing the same symptoms: The BIOS reports the chip as a 100MHz Pentium. dmesg says: Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 79001623 Hz CPU: Pentium/P54C (79.00-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x525 Stepping=5 Features=0x1bf My clock is out by 2 minutes (126 seconds) every 10 minutes. That's 756 seconds (126 * 6) per hour. (79.00 MHz / 100 MHz * 3600) - 3600 = -756 seconds! -john --------------- John A. Shue 4000 Legato Road, Suite 600 Fairfax, VA 22033 (703) 591-5559 (703) 591-6337 FAX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 12: 0: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A0BCE14DCE for ; Mon, 14 Jun 1999 12:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA91087; Mon, 14 Jun 1999 12:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 14 Jun 1999 12:00:03 -0700 (PDT) Message-Id: <199906141900.MAA91087@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Poul-Henning Kamp Subject: Re: kern/12022: System clock timewarps Reply-To: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/12022; it has been noted by GNATS. From: Poul-Henning Kamp To: John.Shue@symmetron.com Cc: freebsd-gnats-submit@freebsd.org, dwhite@pond.net, cdillon@wolves.k12.mo.us Subject: Re: kern/12022: System clock timewarps Date: Mon, 14 Jun 1999 20:58:24 +0200 Check APM setting in bios. In message <008301beb696$3d759be0$42baefce@mail.symmetron.com>, John A. Shue wr ites: >It's not just P90s. > >My P100 is showing the same symptoms: > >The BIOS reports the chip as a 100MHz Pentium. > >dmesg says: > Timecounter "i8254" frequency 1193182 Hz > Timecounter "TSC" frequency 79001623 Hz > CPU: Pentium/P54C (79.00-MHz 586-class CPU) > Origin = "GenuineIntel" Id = 0x525 Stepping=5 > Features=0x1bf > >My clock is out by 2 minutes (126 seconds) every 10 minutes. That's 756 seconds (126 * 6) >per hour. > >(79.00 MHz / 100 MHz * 3600) - 3600 = -756 seconds! > >-john > >--------------- >John A. Shue >4000 Legato Road, Suite 600 >Fairfax, VA 22033 >(703) 591-5559 >(703) 591-6337 FAX > > -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." FreeBSD -- It will take a long time before progress goes too far! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 12: 6:43 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D8FF014F0B; Mon, 14 Jun 1999 12:06:42 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA91990; Mon, 14 Jun 1999 12:06:43 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Mon, 14 Jun 1999 12:06:43 -0700 (PDT) From: Message-Id: <199906141906.MAA91990@freefall.freebsd.org> To: am@amsoft.ru, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/6317: with -8E flags telnet still goes to command mode on 0xff Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: with -8E flags telnet still goes to command mode on 0xff State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Mon Jun 14 11:59:14 PDT 1999 State-Changed-Why: Fixed, thanks! HEAD: telnet.c,v 1.8 RELENG_3: telnet.c,v 1.7.2.1 RELENG_2_2: telnet.c,v 1.3.6.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 12:40:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D0B7A153A9 for ; Mon, 14 Jun 1999 12:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA94558; Mon, 14 Jun 1999 12:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 14 Jun 1999 12:40:02 -0700 (PDT) Message-Id: <199906141940.MAA94558@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: John.Shue@symmetron.com (John A. Shue) Subject: RE: kern/12022: System clock timewarps Reply-To: John.Shue@symmetron.com (John A. Shue) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/12022; it has been noted by GNATS. From: John.Shue@symmetron.com (John A. Shue) To: "Poul-Henning Kamp" Cc: , , Subject: RE: kern/12022: System clock timewarps Date: Mon, 14 Jun 1999 15:34:54 -0400 This motherboard doesn't have APM. -----Original Message----- From: Poul-Henning Kamp [mailto:phk@critter.freebsd.dk] Sent: Monday, June 14, 1999 2:58 PM To: John.Shue@symmetron.com Cc: freebsd-gnats-submit@freebsd.org; dwhite@pond.net; cdillon@wolves.k12.mo.us Subject: Re: kern/12022: System clock timewarps Check APM setting in bios. In message <008301beb696$3d759be0$42baefce@mail.symmetron.com>, John A. Shue wr ites: >It's not just P90s. > >My P100 is showing the same symptoms: > >The BIOS reports the chip as a 100MHz Pentium. > >dmesg says: > Timecounter "i8254" frequency 1193182 Hz > Timecounter "TSC" frequency 79001623 Hz > CPU: Pentium/P54C (79.00-MHz 586-class CPU) > Origin = "GenuineIntel" Id = 0x525 Stepping=5 > Features=0x1bf > >My clock is out by 2 minutes (126 seconds) every 10 minutes. That's 756 seconds (126 * 6) >per hour. > >(79.00 MHz / 100 MHz * 3600) - 3600 = -756 seconds! > >-john > >--------------- >John A. Shue >4000 Legato Road, Suite 600 >Fairfax, VA 22033 >(703) 591-5559 >(703) 591-6337 FAX > > -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." FreeBSD -- It will take a long time before progress goes too far! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 13:42:46 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from pedigree.cs.ubc.ca (pedigree.cs.ubc.ca [142.103.6.50]) by hub.freebsd.org (Postfix) with ESMTP id 8D16C14E16 for ; Mon, 14 Jun 1999 13:42:36 -0700 (PDT) (envelope-from mjmccut@cs.ubc.ca) Received: (from ean@localhost) by pedigree.cs.ubc.ca (8.8.8/8.6.9) id NAA04567 for freebsd-bugs@freebsd.org; Mon, 14 Jun 1999 13:42:33 -0700 (PDT) X400-Received: by /PRMD=ca/ADMD=telecom.canada/C=ca/; Relayed; Mon, 14 Jun 1999 13:42:31 UTC-0700 Date: Mon, 14 Jun 1999 13:42:31 UTC-0700 X400-Originator: mjmccut@cs.ubc.ca X400-Recipients: non-disclosure:; X400-Content-Type: P2-1984 (2) X400-MTS-Identifier: [/PRMD=ca/ADMD=telecom.canada/C=ca/;990614134231] Content-Identifier: 15666 From: Mark McCutcheon To: freebsd-bugs@freebsd.org Message-ID: <"15666*mjmccut@cs.ubc.ca"@MHS> Subject: Re: kern/12022: System clock timewarps MIME-Version: 1.0 (Generated by Ean X.400 to MIME gateway) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org John A. Shue says: > It's not just P90s. > > My P100 is showing the same symptoms: > > The BIOS reports the chip as a 100MHz Pentium. > > dmesg says: > Timecounter "i8254" frequency 1193182 Hz > Timecounter "TSC" frequency 79001623 Hz > CPU: Pentium/P54C (79.00-MHz 586-class CPU) > Origin = "GenuineIntel" Id = 0x525 Stepping=5 > Features=0x1bf For what it's worth, on a test network with 6 2+ year old PPro200 machines running FreeBSD v2.2.2 through 3.2-STABLE, any of them can come up with an erroneous clock frequency on any reboot. They don't have APM capable BIOSes. Normal report: FreeBSD 3.2-STABLE #3: Wed Jun 9 13:06:33 PDT 1999 Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 199739727 Hz CPU: Pentium Pro (199.74-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x619 Stepping=9 Features=0xf9ff but the TSC frequency has been seen to vary as low as 120MHz. More typically it would be around 180MHz. Rebooting usually results in the correct result; sometimes a second reboot is required. This never happened during the first 1.5 years of operation, but has become more frequent with time. No idea why this should appear to correlate with hardware age.... Mark McCutcheon | UBC High-Speed Networking | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 13:48:59 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from fly.lglobus.ru (fly.lglobus.ru [195.34.224.130]) by hub.freebsd.org (Postfix) with ESMTP id 5B3AB15168 for ; Mon, 14 Jun 1999 13:48:46 -0700 (PDT) (envelope-from rover@fly.lglobus.ru) Received: (from rover@localhost) by fly.lglobus.ru (8.9.3/8.9.2) id MAA39864; Tue, 15 Jun 1999 12:36:00 +0400 (MSD) (envelope-from rover) Date: Tue, 15 Jun 1999 12:35:59 +0400 From: "Oleg V. Volkov" To: Mark McCutcheon Cc: freebsd-bugs@freebsd.org Subject: Re: kern/12022: System clock timewarps Message-ID: <19990615123559.B39790@fly.lglobus.ru> Reply-To: fb_rover@lglobus.ru References: <"15666*mjmccut@cs.ubc.ca"@MHS> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.5i In-Reply-To: <"15666*mjmccut@cs.ubc.ca"@MHS>; from Mark McCutcheon on Mon, Jun 14, 1999 at 01:42:31PM +0000 Organization: -=/ SR 13 /=- Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Jun 14, 1999 at 01:42:31PM +0000, Mark McCutcheon wrote: > John A. Shue says: [skip] > but the TSC frequency has been seen to vary as low as 120MHz. More > typically it would be around 180MHz. Rebooting usually results in > the correct result; sometimes a second reboot is required. This > never happened during the first 1.5 years of operation, but has > become more frequent with time. No idea why this should appear to > correlate with hardware age.... Uh, battery low? -- Oleg V. Volkov aka Rover E-mail: rover@lglobus.ru E-mail redirector: sr-13@mail.ru (always up) -=/ SR 13 /=- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 14:13:54 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from pedigree.cs.ubc.ca (pedigree.cs.ubc.ca [142.103.6.50]) by hub.freebsd.org (Postfix) with ESMTP id D9B4415430 for ; Mon, 14 Jun 1999 14:13:43 -0700 (PDT) (envelope-from mjmccut@cs.ubc.ca) Received: (from ean@localhost) by pedigree.cs.ubc.ca (8.8.8/8.6.9) id OAA05786 for freebsd-bugs@freebsd.org; Mon, 14 Jun 1999 14:13:41 -0700 (PDT) X400-Received: by /PRMD=ca/ADMD=telecom.canada/C=ca/; Relayed; Mon, 14 Jun 1999 14:13:40 UTC-0700 Date: Mon, 14 Jun 1999 14:13:40 UTC-0700 X400-Originator: mjmccut@cs.ubc.ca X400-Recipients: non-disclosure:; X400-Content-Type: P2-1984 (2) X400-MTS-Identifier: [/PRMD=ca/ADMD=telecom.canada/C=ca/;990614141340] Content-Identifier: 15667 From: Mark McCutcheon To: freebsd-bugs@freebsd.org Message-ID: <"15667*mjmccut@cs.ubc.ca"@MHS> Subject: Re: kern/12022: System clock timewarps MIME-Version: 1.0 (Generated by Ean X.400 to MIME gateway) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> No idea why this should appear to correlate with hardware age.... To which Oleg V. Volkov replied: > Uh, battery low? Now that's an interesting hypothesis ;-> Guess I never thought of it because these machines are never powered down (barring power outages) but it's worth testing. Mark McCutcheon | UBC High-Speed Networking | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 14:30: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 14E81153FC for ; Mon, 14 Jun 1999 14:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA05996; Mon, 14 Jun 1999 14:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from matrix.42.org (matrix.42.org [194.246.250.200]) by hub.freebsd.org (Postfix) with ESMTP id ECFB2154F3 for ; Mon, 14 Jun 1999 14:26:03 -0700 (PDT) (envelope-from sec@42.org) Received: from btl.42.org (btl.42.org [194.246.250.193]) by matrix.42.org (8.8.8/8.8.5) with ESMTP id XAA25170 for (sender ); Mon, 14 Jun 1999 23:26:01 +0200 (CEST) Received: (from root@localhost) by btl.42.org (8.9.3/8.9.1) id XAA00816; Mon, 14 Jun 1999 23:26:02 +0200 (CEST) (envelope-from sec) Message-Id: <199906142126.XAA00816@btl.42.org> Date: Mon, 14 Jun 1999 23:26:02 +0200 (CEST) From: Stefan Zehl Reply-To: sec@42.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/12216: rwhod triggers dial on demand (patch) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12216 >Category: bin >Synopsis: rwhod triggers dial on demand (patch) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jun 14 14:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Stefan Zehl >Release: FreeBSD 3.2-STABLE i386 >Organization: >Environment: A box wich connects a lan to the internet via some point to point link. >Description: rwho broadcasts its uptime on all interfaces which match either IFF_BROADCAST or IFF_POINTOPOINT. On a box with i4b and dial on demand, the packets sent via the isp0 interface trigger dialouts. >How-To-Repeat: configure point to point interface up and for dial on demand, then start rwhod. >Fix: Attached is a patch which adds the '-p' option to disable sending packets on pointopoint links. While creating the patch, I found out that the variables 'insecure_mode' and 'quiet_mode' are both not initialized to 0. Shouldn't this be added ? --- rwhod.c.orig Mon Jun 14 23:14:51 1999 +++ rwhod.c Mon Jun 14 23:14:51 1999 @@ -117,6 +117,7 @@ int insecure_mode; int quiet_mode; +int dialup_mode = 0; int multicast_mode = NO_MULTICAST; int multicast_scope; struct sockaddr_in multicast_addr = { sizeof multicast_addr, AF_INET }; @@ -200,6 +201,8 @@ insecure_mode = 1; else if (strcmp(*argv, "-l") == 0) quiet_mode = 1; + else if (strcmp(*argv, "-p") == 0) + dialup_mode = 1; else usage(); argv++, argc--; @@ -604,7 +607,8 @@ if ((flags & IFF_UP) == 0 || (flags & (((multicast_mode == PER_INTERFACE_MULTICAST) ? IFF_MULTICAST : 0) | - IFF_BROADCAST|IFF_POINTOPOINT)) == 0) + IFF_BROADCAST | + (dialup_mode?0:IFF_POINTOPOINT))) == 0) continue; if (ifm->ifm_type != RTM_NEWADDR) quit("out of sync parsing NET_RT_IFLIST"); >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 Jun 14 15:48:18 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp11.bellglobal.com (smtp11.bellglobal.com [204.101.251.53]) by hub.freebsd.org (Postfix) with ESMTP id EB5C415121 for ; Mon, 14 Jun 1999 15:48:11 -0700 (PDT) (envelope-from vanderh@ecf.toronto.edu) Received: from localhost.nowhere (ppp1666.on.bellglobal.com [206.172.249.130]) by smtp11.bellglobal.com (8.8.5/8.8.5) with ESMTP id SAA24787; Mon, 14 Jun 1999 18:51:04 -0400 (EDT) Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id SAA81501; Mon, 14 Jun 1999 18:48:44 -0400 (EDT) (envelope-from tim) Date: Mon, 14 Jun 1999 18:48:43 -0400 From: Tim Vanderhoek To: Ilia Chipitsine Cc: bugs@FreeBSD.ORG Subject: Re: tip bug Message-ID: <19990614184843.A79325@mad> References: <19990613165934.B75238@ppp18400.on.bellglobal.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: ; from Ilia Chipitsine on Mon, Jun 14, 1999 at 01:59:22PM +0600 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Jun 14, 1999 at 01:59:22PM +0600, Ilia Chipitsine wrote: > > $ tip omen > > it's all about pn=\@ This has actually been fixed in the default /etc/remote for some time. -- This is my .signature which gets appended to the end of my messages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 18:54:41 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id A2DA01554E for ; Mon, 14 Jun 1999 18:54:23 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id HAA20560; Tue, 15 Jun 1999 07:53:34 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id HAA07195; Tue, 15 Jun 1999 07:32:20 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id GAA00455; Tue, 15 Jun 1999 06:25:59 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Tue, 15 Jun 1999 06:25:58 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: Tim Vanderhoek Cc: bugs@FreeBSD.ORG Subject: Re: tip bug In-Reply-To: <19990614184843.A79325@mad> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 14 Jun 1999, Tim Vanderhoek wrote: > On Mon, Jun 14, 1999 at 01:59:22PM +0600, Ilia Chipitsine wrote: > > > > $ tip omen > > > > it's all about pn=\@ > > This has actually been fixed in the default /etc/remote for some time. 3.1-R from feb/1999 if I add the remote's pn=\@ entry it doesn't work, has it been already fixed ? where can I download the patch ? I can say even more. tip doesn't handle remote's lines, starting with '#'. and more, and more ... has it been fixed too ? > > > -- > This is my .signature which gets appended to the end of my messages. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 22: 8:44 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 67C13153C4 for ; Mon, 14 Jun 1999 22:08:42 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) X-Envelope-Sender-Is: andre.albsmeier@mchp.siemens.de (at relayer david.siemens.de) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.14]) by david.siemens.de (8.9.3/8.9.3) with ESMTP id HAA02628 for ; Tue, 15 Jun 1999 07:08:41 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail2.siemens.de (8.9.3/8.9.3) with ESMTP id HAA05545 for ; Tue, 15 Jun 1999 07:08:40 +0200 (MET DST) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.9.3/8.9.3) id HAA70883 for ; Tue, 15 Jun 1999 07:08:40 +0200 (CEST) Date: Tue, 15 Jun 1999 07:08:37 +0200 From: Andre Albsmeier To: ru@FreeBSD.org Cc: andre.albsmeier@mchp.siemens.de, freebsd-bugs@FreeBSD.org Subject: Re: conf/12189: Can /usr/lib/aout be removed from BSD.usr.dist? Message-ID: <19990615070837.A40354@internal> References: <199906141437.HAA64570@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.5i In-Reply-To: <199906141437.HAA64570@freefall.freebsd.org>; from ru@FreeBSD.org on Mon, Jun 14, 1999 at 07:37:24AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 14-Jun-1999 at 07:37:24 -0700, ru@FreeBSD.org wrote: > Synopsis: Can /usr/lib/aout be removed from BSD.usr.dist? > > State-Changed-From-To: open->closed > State-Changed-By: ru > State-Changed-When: Mon Jun 14 07:32:36 PDT 1999 > State-Changed-Why: > /usr/lib/aout is required for *current* a.out > libraries, not for compatibility stuff. Understood. Thanks for telling me. -Andre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Jun 14 22:20: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C97F314D7F for ; Mon, 14 Jun 1999 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA56358; Mon, 14 Jun 1999 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 8285014D6D; Mon, 14 Jun 1999 22:15:04 -0700 (PDT) Message-Id: <19990615051504.8285014D6D@hub.freebsd.org> Date: Mon, 14 Jun 1999 22:15:04 -0700 (PDT) From: simonw@cinesite.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/12218: Eject ioctl() for wfd (ATAPI driver) doesn't work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12218 >Category: kern >Synopsis: Eject ioctl() for wfd (ATAPI driver) doesn't work >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 14 22:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Simon Walton >Release: 3.1 >Organization: >Environment: FreeBSD stepney 3.1-RELEASE FreeBSD 3.1-RELEASE #14: Mon May 31 21:29:49 PDT 1999 simonw@stepney:/usr/src/sys/compile/STEPNEY i386 >Description: wfd driver code tries to give wd driver first crack at ioctl's, but incorrectly interprets internal error and never gets to send eject to ATAPI device. >How-To-Repeat: Put zip disk in internal IDE zip drive, do: ioctl (fd, _IO('c',24), 0) where fd is the corresponding wfd open file descriptor. Disk does not eject. >Fix: This kernel patch fixes it: --- i386/isa/wfd.c.sav Mon May 31 21:29:06 1999 +++ i386/isa/wfd.c Mon May 31 21:29:34 1999 @@ -663,7 +663,7 @@ error = dsioctl("wfd", dev, cmd, addr, flag, &t->dk_slices, wfdstrategy1, (ds_setgeom_t *)NULL); - if (error != -1) + if (error != ENOIOCTL) return (error); if (t->flags & F_MEDIA_CHANGED) >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 Jun 15 1:30: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E7D931545C for ; Tue, 15 Jun 1999 01:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA88081; Tue, 15 Jun 1999 01:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 47B1814D6E; Tue, 15 Jun 1999 01:24:21 -0700 (PDT) Message-Id: <19990615082421.47B1814D6E@hub.freebsd.org> Date: Tue, 15 Jun 1999 01:24:21 -0700 (PDT) From: estartu@augusta.de To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/12221: djpeg halt's freebsd box Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12221 >Category: misc >Synopsis: djpeg halt's freebsd box >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 15 01:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Gerhard Schmidt >Release: FreeBSD 3.2-STABLE >Organization: Augsburger Computer Forum e.V. >Environment: FreeBSD wanderer.augusta.de 3.2-STABLE FreeBSD 3.2-STABLE #0: Sun Jun 13 23:12:47 CEST 1999 root@wanderer.starbox.augusta.de:/usr/src/sys/compile/WANDERER i386 >Description: Some of my scripts make haevy use of the programm djpeg. After some invocation system just halts kompletly. Mouse pointer freezes no ping replay and login ist possible. The problem startet 2 or 3 weeks ago. I have been updating my system every week. >How-To-Repeat: Start djpeg several times. >Fix: dont know by now. >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 Jun 15 2: 7:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6069014EE5; Tue, 15 Jun 1999 02:07:17 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA94456; Tue, 15 Jun 1999 02:07:17 -0700 (PDT) (envelope-from ru@FreeBSD.org) Date: Tue, 15 Jun 1999 02:07:17 -0700 (PDT) From: Message-Id: <199906150907.CAA94456@freefall.freebsd.org> To: rec@RCousins.com, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/9782: minor problem with telnet and /etc/gettytab Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: minor problem with telnet and /etc/gettytab State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Tue Jun 15 02:00:42 PDT 1999 State-Changed-Why: Not a bug. ``login: '' prompt you see is hardcoded into login(1), which does not use gettytab(5) at all. gettytab(5) database is only used by getty(8) and, partially, by telnetd(8). Refer to the corresponding manpages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 15 2:38:22 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from matrix.42.org (matrix.42.org [194.246.250.200]) by hub.freebsd.org (Postfix) with ESMTP id 1ADA215506; Tue, 15 Jun 1999 02:38:18 -0700 (PDT) (envelope-from sec@42.org) Received: (from sec@localhost) by matrix.42.org (8.8.8/8.8.5) id LAA04602 (sender ); Tue, 15 Jun 1999 11:38:16 +0200 (CEST) Date: Tue, 15 Jun 1999 11:38:16 +0200 From: Stefan `Sec` Zehl To: gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/12216: rwhod triggers dial on demand (patch) Message-ID: <19990615113816.A4574@matrix.42.org> References: <199906142126.XAA00816@btl.42.org> <199906142130.OAA05992@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <199906142130.OAA05992@freefall.freebsd.org>; from gnats-admin@FreeBSD.org on Mon, Jun 14, 1999 at 02:30:00PM -0700 I-love-doing-this: really Accept-Languages: de, en X-URL: http://sec.42.org/ Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Whoops, i forgot the patch for the man page. here it is. --- rwhod.8.orig Tue Jun 15 11:34:21 1999 +++ rwhod.8 Tue Jun 15 11:34:57 1999 @@ -40,6 +40,7 @@ .Sh SYNOPSIS .Nm rwhod .Op Fl i +.Op Fl p .Op Fl l .Op Fl m Op Ar ttl .Sh DESCRIPTION @@ -74,6 +75,13 @@ option enables insecure mode, which causes .Nm to ignore the source port on incoming packets. +.Pp +The +.Fl p +option enables 'dialup' mode, which causes +.Nm +to stop sending packets on point to point links, +and thus not bringing up dial on demand lines. .Pp The .Fl l To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 15 6:11: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 661A715119; Tue, 15 Jun 1999 06:11:04 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: (from des@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA24427; Tue, 15 Jun 1999 06:11:04 -0700 (PDT) (envelope-from des@FreeBSD.org) Date: Tue, 15 Jun 1999 06:11:04 -0700 (PDT) From: Message-Id: <199906151311.GAA24427@freefall.freebsd.org> To: des@des.follo.net, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/12187: [PATCH] option FAILSAFE is misnamed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] option FAILSAFE is misnamed State-Changed-From-To: open->closed State-Changed-By: des State-Changed-When: Tue Jun 15 06:10:19 PDT 1999 State-Changed-Why: The FAILSAFE option has been removed from -CURRENT. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 15 11:53:20 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B5E4214CF3; Tue, 15 Jun 1999 11:53:19 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA26140; Tue, 15 Jun 1999 11:53:19 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Tue, 15 Jun 1999 11:53:19 -0700 (PDT) From: Message-Id: <199906151853.LAA26140@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: misc/10700: periodic weekly (/etc/weekly) fails to rebuild locate database Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: periodic weekly (/etc/weekly) fails to rebuild locate database Responsible-Changed-From-To: freebsd-bugs->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Tue Jun 15 11:52:14 PDT 1999 Responsible-Changed-Why: I'll take this one now that I'm a committer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 15 12:50: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F30DF15602 for ; Tue, 15 Jun 1999 12:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA32676; Tue, 15 Jun 1999 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from bamby.marka.net.ua (office-bayda.marka.net.ua [193.193.219.245]) by hub.freebsd.org (Postfix) with ESMTP id 6009B14ECA for ; Tue, 15 Jun 1999 12:40:59 -0700 (PDT) (envelope-from bamby@bamby.marka.net.ua) Received: (from bamby@localhost) by bamby.marka.net.ua (8.9.3/8.9.2) id WAA21466; Tue, 15 Jun 1999 22:38:27 +0300 (EEST) (envelope-from bamby) Message-Id: <199906151938.WAA21466@bamby.marka.net.ua> Date: Tue, 15 Jun 1999 22:38:27 +0300 (EEST) From: bamby@marka.net.ua Reply-To: bamby@marka.net.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/12225: Incompletness of radius request in ppp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12225 >Category: bin >Synopsis: incompletness of radius request in /usr/sbin/ppp >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 Jun 15 12:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Andriy I Pilipenko >Release: FreeBSD 3.2-STABLE i386 >Organization: Marka Ltd, Zaporizhia, Ukraine >Environment: /usr/sbin/ppp from FreeBSD 3.2-STABLE and Merit AAA Radius Server >Description: Current implementation of /usr/sbin/ppp creates malformed radius request with NAS identifier missing. Merit AAA Radius Server refuses to process such a request. >How-To-Repeat: Build radius package from /usr/ports/net/radius and try to run ppp with radius authentication. ppp never receives reply and server will report malformed request. >Fix: Following patch is made partially based on PAM radius module from FreeBSD 3.2-STABLE. Patch adds two attributes to radius request - NAS-IP-Address (or NAS-Identifier if address is not available) and NAS-Port which is simply ttyslot() return value. *** radius.c.orig Wed May 26 21:15:40 1999 --- radius.c Mon Jun 7 19:54:06 1999 *************** *** 41,46 **** --- 41,48 ---- #include #include #include + #include + #include #include "defs.h" #include "log.h" *************** *** 337,342 **** --- 339,347 ---- { struct timeval tv; int got; + char hostname[MAXHOSTNAMELEN]; + struct hostent *hp; + struct in_addr hostaddr; if (!*r->cfg.file) return; *************** *** 390,396 **** --- 395,432 ---- rad_close(r->cx.rad); return; } + + if (gethostname(hostname, sizeof hostname) != 0) { + log_Printf(LogERROR, "rad_put: cannot get own hostname\n"); + rad_close(r->cx.rad); + return; + } + if ((hp = gethostbyname(hostname)) == (struct hostent *) NULL) { + if (rad_put_string(r->cx.rad, RAD_NAS_IDENTIFIER, hostname) != 0) { + log_Printf(LogERROR, "rad_put: rad_put_string: %s\n", + rad_strerror(r->cx.rad)); + rad_close(r->cx.rad); + return; + } + } + else { + hostaddr.s_addr = *(u_long *)hp->h_addr; + if (rad_put_addr(r->cx.rad, RAD_NAS_IP_ADDRESS, hostaddr) != 0) { + log_Printf(LogERROR, "rad_put: rad_put_string: %s\n", + rad_strerror(r->cx.rad)); + rad_close(r->cx.rad); + return; + } + } + + if(rad_put_int(r->cx.rad, RAD_NAS_PORT, ttyslot()) != 0) { + log_Printf(LogERROR, "rad_put: rad_put_string: %s\n", + rad_strerror(r->cx.rad)); + rad_close(r->cx.rad); + return; + } + if ((got = rad_init_send_request(r->cx.rad, &r->cx.fd, &tv))) radius_Process(r, got); else { >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 Jun 15 13:40: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DD95D14F46; Tue, 15 Jun 1999 13:39:58 -0700 (PDT) (envelope-from ghelmer@FreeBSD.org) Received: (from ghelmer@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA39461; Tue, 15 Jun 1999 13:39:58 -0700 (PDT) (envelope-from ghelmer@FreeBSD.org) Date: Tue, 15 Jun 1999 13:39:58 -0700 (PDT) From: Message-Id: <199906152039.NAA39461@freefall.freebsd.org> To: serg@bcs.zp.ua, ghelmer@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/7602: df stay in disk wait Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: df stay in disk wait State-Changed-From-To: open->closed State-Changed-By: ghelmer State-Changed-When: Tue Jun 15 13:39:34 PDT 1999 State-Changed-Why: Closed with permission of originator. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 15 13:42:19 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3988515308; Tue, 15 Jun 1999 13:42:18 -0700 (PDT) (envelope-from ghelmer@FreeBSD.org) Received: (from ghelmer@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA39937; Tue, 15 Jun 1999 13:42:18 -0700 (PDT) (envelope-from ghelmer@FreeBSD.org) Date: Tue, 15 Jun 1999 13:42:18 -0700 (PDT) From: Message-Id: <199906152042.NAA39937@freefall.freebsd.org> To: navone@ope.net, ghelmer@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/3508: FreeBSD 2.2.1 do not view SCSI disk at sw reboot Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FreeBSD 2.2.1 do not view SCSI disk at sw reboot State-Changed-From-To: open->closed State-Changed-By: ghelmer State-Changed-When: Tue Jun 15 13:40:57 PDT 1999 State-Changed-Why: Could not verify that the problem still exists in 3.x or 4.0-current (author could not be contacted; Justin Gibbs had provided a possible fix two years ago). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 15 13:49:24 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3939D15670; Tue, 15 Jun 1999 13:49:22 -0700 (PDT) (envelope-from ghelmer@FreeBSD.org) Received: (from ghelmer@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA40820; Tue, 15 Jun 1999 13:49:22 -0700 (PDT) (envelope-from ghelmer@FreeBSD.org) Date: Tue, 15 Jun 1999 13:49:22 -0700 (PDT) From: Message-Id: <199906152049.NAA40820@freefall.freebsd.org> To: hdm@demon.net, ghelmer@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/5189: rcmd(3) only allows one hardcoded connection method Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: rcmd(3) only allows one hardcoded connection method State-Changed-From-To: suspended->closed State-Changed-By: ghelmer State-Changed-When: Tue Jun 15 13:47:57 PDT 1999 State-Changed-Why: The original author could not be contacted, and consensus seems to be that this isn't a desired change. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 15 13:54:56 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7BC9514F56; Tue, 15 Jun 1999 13:54:55 -0700 (PDT) (envelope-from ghelmer@FreeBSD.org) Received: (from ghelmer@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA41596; Tue, 15 Jun 1999 13:54:55 -0700 (PDT) (envelope-from ghelmer@FreeBSD.org) Date: Tue, 15 Jun 1999 13:54:55 -0700 (PDT) From: Message-Id: <199906152054.NAA41596@freefall.freebsd.org> To: null.angel@null.angel.nu, ghelmer@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/6005: -CURRENT cron dies after short periods of times (2-4 hours) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: -CURRENT cron dies after short periods of times (2-4 hours) State-Changed-From-To: open->closed State-Changed-By: ghelmer State-Changed-When: Tue Jun 15 13:51:21 PDT 1999 State-Changed-Why: Author could not be contacted to further diagnose problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 15 15:30: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CC617153DB for ; Tue, 15 Jun 1999 15:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA52751; Tue, 15 Jun 1999 15:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from rmx07.globecomm.net (rmx07.iname.net [165.251.8.75]) by hub.freebsd.org (Postfix) with ESMTP id 4171B14DE4 for ; Tue, 15 Jun 1999 15:28:21 -0700 (PDT) (envelope-from davec@unforgettable.com) Received: from weba7.iname.net by rmx07.globecomm.net (8.9.1/8.8.0) with ESMTP id SAA07955 ; Tue, 15 Jun 1999 18:28:21 -0400 (EDT) Received: (from root@localhost) by weba7.iname.net (8.9.1a/8.9.2.Alpha2) id SAA25028; Tue, 15 Jun 1999 18:28:21 -0400 (EDT) Message-Id: <990615182820EX.12713@weba7.iname.net> Date: Tue, 15 Jun 1999 18:28:20 -0400 (EDT) From: davec@unforgettable.com To: FreeBSD-gnats-submit@freebsd.org Subject: kern/12226: IPFilter breaking with ipl ERROR Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12226 >Category: kern >Synopsis: In 4.0-current the ipl driver breaks with "bogus cdevsw->d_maj = -1 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 15 15:30:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dave >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: FreeBSD 4.0-Current as of June 15, 1999 Pentium233MMX, 128MB SDRAM, two UDMA2 HD's, one IDE HD. PA-2007 motherboard, Matrox MillenniumII vid. 3COM905-TX NIC. Kernel compiled with IPFILTER, IPFILTER_LOG, and bpfilter. >Description: I made buildworld and installworld. Compiled a new kernel after checking with LINT for changes, then MAKEDEV all in /dev. After a the reboot, dmesg shows: Preloaded elf kernel "kernel" at 0xc030e000. Intel Pentium detected, installing workaround for F00F bug ipl: ERROR: driver has bogus cdevsw->d_maj = -1 For every rule ipf tries to process, the following error was produced: open device: Device not configured ioctl(SIOCIPFFL): Bad file descriptor Same errors occurs when I tried to manually unload and reload the IPFilter rules. This actually occurred a few weeks ago, I've been following -current a long time. First report was to IPFilter's author without reply, then to FreeBSD- current mailing list with no comment on the issue. One day it worked, the next day it didn't. I can still load the kernel.saved of the last compiled kernel when ipl worked. >How-To-Repeat: Run 4.0-current with IPFILTER option in the kernel config. >Fix: Unknown. ---------------------------------------------------------------- Get your free email from AltaVista at http://altavista.iname.com >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 15 17:29:43 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp13.bellglobal.com (smtp13.bellglobal.com [204.101.251.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B57C15223 for ; Tue, 15 Jun 1999 17:29:31 -0700 (PDT) (envelope-from vanderh@ecf.toronto.edu) Received: from localhost.nowhere (ppp18343.on.bellglobal.com [206.172.130.23]) by smtp13.bellglobal.com (8.8.5/8.8.5) with ESMTP id UAA11092; Tue, 15 Jun 1999 20:30:42 -0400 (EDT) Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id UAA87323; Tue, 15 Jun 1999 20:30:12 -0400 (EDT) (envelope-from tim) Date: Tue, 15 Jun 1999 20:30:11 -0400 From: Tim Vanderhoek To: Ilia Chipitsine Cc: bugs@FreeBSD.ORG Subject: Re: tip bug Message-ID: <19990615203011.A83078@mad> References: <19990614184843.A79325@mad> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: ; from Ilia Chipitsine on Tue, Jun 15, 1999 at 06:25:58AM +0600 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Jun 15, 1999 at 06:25:58AM +0600, Ilia Chipitsine wrote: > > > > $ tip omen > > > > > > it's all about pn=\@ > > 3.1-R from feb/1999 > if I add the remote's pn=\@ entry it doesn't work, has it been already I don't quite follow you, but I'll look into this. > I can say even more. tip doesn't handle remote's lines, starting with '#'. > and more, and more ... You mean lines that start with '#' but are _not_ comments? Give an example. -- This is my .signature which gets appended to the end of my messages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 15 17:50: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A10C151EB for ; Tue, 15 Jun 1999 17:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA65423; Tue, 15 Jun 1999 17:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from m2.inba.fr (m2.inba.fr [194.51.120.39]) by hub.freebsd.org (Postfix) with ESMTP id F3899151EB for ; Tue, 15 Jun 1999 17:48:10 -0700 (PDT) (envelope-from root@m2.inba.fr) Received: (from root@localhost) by m2.inba.fr (8.8.8/8.8.8) id CAA01167; Wed, 16 Jun 1999 02:43:56 +0200 (CEST) (envelope-from root) Message-Id: <199906160043.CAA01167@m2.inba.fr> Date: Wed, 16 Jun 1999 02:43:56 +0200 (CEST) From: phschack@inba.fr Reply-To: phschack@inba.fr To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/12228: /etc/security don't search in all the files Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12228 >Category: misc >Synopsis: /etc/security don't search in all the files >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jun 15 17:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Philippe SCHACK >Release: FreeBSD 3.1-RELEASE i386 >Organization: >Environment: Tested in FreeBSD 3.1-RELEASE i386 >Description: Because of the rotation of the log files (/etc/messages) when /etc/security sear ch for the 'login failure' and 'refused connect', it can miss some of them in th e compressed files. If the rotation is slow because of changes in /etc/newsyslog.conf or small numbe r of events, it reports the same event each day until the rotation is done. >How-To-Repeat: Make some login failures and make the /var/log/message rotate. or Make a login failure one day and wait for the security report during few days. >Fix: Here is a patch I applied to /etc/security : --- security.orig Wed Jun 16 02:16:03 1999 +++ security Wed Jun 16 02:16:14 1999 @@ -11,6 +11,8 @@ echo "" } +yesterday=`date -v-1d "+%b %e "` + host=`hostname` echo "Subject: $host security check output" @@ -103,11 +105,11 @@ # show login failures separator echo "$host login failures:" -grep -i "login failure" $LOG/messages +zcat -f $LOG/messages.0* $LOG/messages | grep -i "^$yesterday.*login failure" # show tcp_wrapper warning messages separator echo "$host refused connections:" -grep -i "refused connect" $LOG/messages +zcat -f $LOG/messages.0* $LOG/messages | grep -i "^$yesterday.*refused connect" rm -f $TMP >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 Jun 15 18:55:35 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id 0C04115462 for ; Tue, 15 Jun 1999 18:55:15 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id HAA20249; Wed, 16 Jun 1999 07:54:40 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id HAA02532; Wed, 16 Jun 1999 07:29:21 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id HAA00309; Wed, 16 Jun 1999 07:10:19 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Wed, 16 Jun 1999 07:10:19 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: Tim Vanderhoek Cc: bugs@FreeBSD.ORG Subject: Re: tip bug In-Reply-To: <19990615203011.A83078@mad> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 15 Jun 1999, Tim Vanderhoek wrote: > On Tue, Jun 15, 1999 at 06:25:58AM +0600, Ilia Chipitsine wrote: > > > > > > $ tip omen > > > > > > > > it's all about pn=\@ > > > > 3.1-R from feb/1999 > > if I add the remote's pn=\@ entry it doesn't work, has it been already > > I don't quite follow you, but I'll look into this. > > > > I can say even more. tip doesn't handle remote's lines, starting with '#'. > > and more, and more ... > > You mean lines that start with '#' but are _not_ comments? Give an > example. # cgilh 189233 # # it treats this like a phone number > > > -- > This is my .signature which gets appended to the end of my messages. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Jun 15 21:40: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6BF4A15504 for ; Tue, 15 Jun 1999 21:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA91777; Tue, 15 Jun 1999 21:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from orthanc.ab.ca (orthanc.ab.ca [207.167.3.130]) by hub.freebsd.org (Postfix) with ESMTP id 7D9F41536A for ; Tue, 15 Jun 1999 21:39:37 -0700 (PDT) (envelope-from lyndon@orthanc.ab.ca) Received: (from lyndon@localhost) by orthanc.ab.ca (8.9.3/8.9.3) id WAA07004; Tue, 15 Jun 1999 22:39:35 -0600 (MDT) (envelope-from lyndon) Message-Id: <199906160439.WAA07004@orthanc.ab.ca> Date: Tue, 15 Jun 1999 22:39:35 -0600 (MDT) From: Lyndon Nerenberg Reply-To: lyndon@orthanc.ab.ca To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/12232: CPP noise compiling make. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12232 >Category: bin >Synopsis: Dangling text on #endif causes cpp noise. >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 Jun 15 21:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Lyndon Nerenberg >Release: FreeBSD 4.0-CURRENT i386 >Organization: The Frobozz Magic Homing Pigeon Company >Environment: >Description: Three lines in usr.bin/make/sprite.h look like #endif FOO which can cause cpp to grumble. >How-To-Repeat: Build make on an Irix box :-) >Fix: =================================================================== RCS file: /usr/src/usr.bin/make/sprite.h,v retrieving revision 1.1 diff -c2 -r1.1 /usr/src/usr.bin/make/sprite.h *** /usr/src/usr.bin/make/sprite.h 1999/06/16 04:30:46 1.1 --- /usr/src/usr.bin/make/sprite.h 1999/06/16 04:31:31 *************** *** 58,65 **** #ifndef TRUE #define TRUE 1 ! #endif TRUE #ifndef FALSE #define FALSE 0 ! #endif FALSE /* --- 58,65 ---- #ifndef TRUE #define TRUE 1 ! #endif /* TRUE */ #ifndef FALSE #define FALSE 0 ! #endif /* FALSE */ /* *************** *** 92,96 **** #ifndef NULL #define NULL 0 ! #endif NULL /* --- 92,96 ---- #ifndef NULL #define NULL 0 ! #endif /* NULL */ /* >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 Jun 15 22:40: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AD21B14C41 for ; Tue, 15 Jun 1999 22:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA98369; Tue, 15 Jun 1999 22:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id B2AE714D4D; Tue, 15 Jun 1999 22:37:10 -0700 (PDT) Message-Id: <19990616053710.B2AE714D4D@hub.freebsd.org> Date: Tue, 15 Jun 1999 22:37:10 -0700 (PDT) From: dmmiller@cvzoom.net To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/12233: Fvwm2 causes FreeBSD-current to hang or reboot Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12233 >Category: kern >Synopsis: Fvwm2 causes FreeBSD-current to hang or reboot >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 15 22:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Donn Miller >Release: -current >Organization: >Environment: FreeBSD lca66.cvzoom.net 4.0-CURRENT FreeBSD 4.0-CURRENT #1: Tue Jun 15 04:35:43 EDT 1999 root@lca66.cvzoom.net:/usr/src/sys/compile/CUSTOM i386 >Description: Fvwm2 (the latest version, which is 2.2.2), is causing weird problems with -current. Sometimes, if I do certain actions in fvwm2, such as selecting a menu button with the middle or right buttons, FreeBSD either locks or reboots without warning. A specific example: I was typing something in an xterm, which was hidden by another xterm. I had fvwm2 configured to have the focus follow mouse like twm. When I pressed "enter" in the xterm, which was obscured by another xterm, my machine locked solid. I tried pressing ctrl+alt+f* to get back to a VC, but I was locked out. Then, when I did cntrl+alt+backspace to kill the xserver, my machine rebooted immediately. On my computer, this will happen every once in a while while doing some routine activities in fvwm2.* By the way, I had my kernel compiled with "-mpentium -O3", and used the same flags to "make world". I also built fvwm2 and XFree86 3.3.3.1 with these flags. It may be this very reason that FreeBSD is behaving like this, the fact that egcs may cause some unstable code as compared to the old gcc-2.7*. Again, it doesn't happen very often, about once every two weeks. >How-To-Repeat: CVsup the latest -current, and run the latest version of fvwm2. It doesn't happend very often, but doing certain activities in fvwm2 may cause FreeBSD to do a sudden reboot. >Fix: Stop using fvwm2. >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 Jun 15 23: 0: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 79ECC14F4E for ; Tue, 15 Jun 1999 23:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA99955; Tue, 15 Jun 1999 23:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 15 Jun 1999 23:00:02 -0700 (PDT) Message-Id: <199906160600.XAA99955@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Matthew D. Fuller" Subject: Re: kern/12233: Fvwm2 causes FreeBSD-current to hang or reboot Reply-To: "Matthew D. Fuller" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/12233; it has been noted by GNATS. From: "Matthew D. Fuller" To: dmmiller@cvzoom.net Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/12233: Fvwm2 causes FreeBSD-current to hang or reboot Date: Wed, 16 Jun 1999 00:52:51 -0500 On Tue, Jun 15, 1999 at 10:37:10PM -0700, a little birdie told me that dmmiller@cvzoom.net remarked > ... > > By the way, I had my kernel compiled with "-mpentium -O3", and used the > same flags to "make world". I also built fvwm2 and XFree86 3.3.3.1 with > these flags. It may be this very reason that FreeBSD is behaving like > this, the fact that egcs may cause some unstable code as compared to the > old gcc-2.7*. Again, it doesn't happen very often, about once every two > weeks. > > >Fix: > Stop using fvwm2. Alternate fix: Stop using -O3. Last I heard there was known problems with -O above 1. -- *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* | Matthew Fuller MF4839 http://www.over-yonder.net/ | * fullermd@futuresouth.com fullermd@over-yonder.net * | UNIX Systems Administrator Specializing in FreeBSD | * FutureSouth Communications ISPHelp ISP Consulting * | "The only reason I'm burning my candle at both ends, | * is because I haven't figured out how to light the * | middle yet" | *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 16 1:50:27 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp01.wxs.nl (smtp01.wxs.nl [195.121.6.61]) by hub.freebsd.org (Postfix) with ESMTP id 24ED9150A7 for ; Wed, 16 Jun 1999 01:50:25 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.196.114]) by smtp01.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAA3862; Wed, 16 Jun 1999 10:50:24 +0200 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id KAA12507; Wed, 16 Jun 1999 10:51:03 +0200 (CEST) (envelope-from asmodai) Date: Wed, 16 Jun 1999 10:51:03 +0200 From: Jeroen Ruigrok/Asmodai To: bugs@freebsd.org, Jean-Luc.Richier@imag.fr Subject: Re: bin/2668: modification suggested for rarpd Message-ID: <19990616105103.B12266@daemon.ninth-circle.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.3i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, PR bin/2668 contains a patch for rarpd.c, but ours has been changed way too far for this patch to still be valid. Can you verify whether the particular problem you reported still exists under 3.2 or 4.0? Because it looks like a lot of the changes you proposed in that patch made it into the new version. With kind regards, -- Jeroen Ruigrok van der Werven asmodai(at)wxs.nl The *BSD Programmer's Documentation Project Network/Security Specialist *BSD & (g)VIM : Accept no limitations... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 16 2:15:36 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp04.wxs.nl (smtp04.wxs.nl [195.121.6.59]) by hub.freebsd.org (Postfix) with ESMTP id A421B14E57 for ; Wed, 16 Jun 1999 02:15:33 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.198.94]) by smtp04.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAA5473; Wed, 16 Jun 1999 11:15:32 +0200 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id LAA12983; Wed, 16 Jun 1999 11:16:11 +0200 (CEST) (envelope-from asmodai) Date: Wed, 16 Jun 1999 11:16:11 +0200 From: Jeroen Ruigrok/Asmodai To: bugs@freebsd.org, era@iki.fi Subject: Re: bin/2851: script(1) sets argv[0] of the started shell to "sh" Message-ID: <19990616111611.E12266@daemon.ninth-circle.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.3i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I just tested this under my 4.0-CURRENT and $0 still reports sh so script still changes argv[0] to sh. However, given some testing on my CURRENT box and reading the latest manpage on script(1) I stumbled on the following: ENVIRONMENT The following environment variable is utilized by script: SHELL If the variable SHELL exists, the shell forked by script will be that shell. If SHELL is not set, the Bourne shell is assumed. (Most shells set this variable automatically). So I tested this with my ksh: [asmodai@daemon] (29) $ set | grep SHELL SHELL=/usr/local/bin/ksh Then started a script and could still use my aliases and other features. Can you verify if Bash still behaves differently, I think you need 3.x or higher (of FreeBSD that is) based on what I found in the ,v files of script. With kind regards, -- Jeroen Ruigrok van der Werven asmodai(at)wxs.nl The *BSD Programmer's Documentation Project Network/Security Specialist *BSD & (g)VIM : Accept no limitations... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 16 2:50: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CEC2F14E8F for ; Wed, 16 Jun 1999 02:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA24844; Wed, 16 Jun 1999 02:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 0E3431532F; Wed, 16 Jun 1999 02:46:12 -0700 (PDT) Message-Id: <19990616094612.0E3431532F@hub.freebsd.org> Date: Wed, 16 Jun 1999 02:46:12 -0700 (PDT) From: tronkko@hytti.uku.fi To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: gnu/12238: bc 1.04 crashes with long formula typed into one line Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12238 >Category: gnu >Synopsis: bc 1.04 crashes with long formula typed into one line >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 Jun 16 02:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Toni Rönkkö >Release: 3.1 >Organization: >Environment: FreeBSD freebsd.koti.fi 3.1-RELEASE FreeBSD 3.1-RELEASE #12: Sun May 16 21:07:35 EEST 1999 tr@freebsd.koti.fi:/wrk/kernel-sources/sys/compile/CUSTOM i386 >Description: bc 1.04 crashes with long formula typed into one single line (buffer overflow perhaps). Everything works fine if I manually split long formulas into several lines, althought I personally hate to do that. >How-To-Repeat: start bc and type the following formula into one single line: 1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1 This one also crashes bc when typed into one line: 1 + 1 >Fix: I downloaded bc-1.05a from ftp.gnu.org and it worked fine. Perhaps you could update the version of bc shipped with FreeBSD? >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 Jun 16 3:19:55 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp04.wxs.nl (smtp04.wxs.nl [195.121.6.59]) by hub.freebsd.org (Postfix) with ESMTP id 9440E15002; Wed, 16 Jun 1999 03:19:48 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.196.95]) by smtp04.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAA230B; Wed, 16 Jun 1999 12:19:46 +0200 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id MAA13083; Wed, 16 Jun 1999 12:05:05 +0200 (CEST) (envelope-from asmodai) Date: Wed, 16 Jun 1999 12:05:05 +0200 From: Jeroen Ruigrok/Asmodai To: bugs@freebsd.org, nectar@freebsd.org Subject: Re: bin/2859: /usr/bin/quota seems to choke on long group file entries Message-ID: <19990616120505.F12266@daemon.ninth-circle.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.3i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Jacques, I saw in the Audit-Trail that the static buffer problem was fixed in a CURRENT back in those days. Can you comment on this PR whether or not it can be closed? Thanks! -- Jeroen Ruigrok van der Werven asmodai(at)wxs.nl The *BSD Programmer's Documentation Project Network/Security Specialist *BSD & (g)VIM : Accept no limitations... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 16 3:19:58 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp04.wxs.nl (smtp04.wxs.nl [195.121.6.59]) by hub.freebsd.org (Postfix) with ESMTP id 8E2E215003; Wed, 16 Jun 1999 03:19:49 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.196.95]) by smtp04.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAB230B; Wed, 16 Jun 1999 12:19:47 +0200 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id MAA13199; Wed, 16 Jun 1999 12:18:44 +0200 (CEST) (envelope-from asmodai) Date: Wed, 16 Jun 1999 12:18:44 +0200 From: Jeroen Ruigrok/Asmodai To: bugs@freebsd.org, peter@freebsd.org, mcdougall@ameritech.net Subject: Re: bin/4484: sendmail is barfing Message-ID: <19990616121844.H12266@daemon.ninth-circle.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.3i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, can you verify if you still have this problem on the 3.x branch? Also, did you make sure you verified your sendmail.cf file to see whether it was still up to date with the new sendmail introduced into 3.x at that moment/at this moment? Sendmail is supposed to be old configfile compatible, but at times it isn't... Also, mergemaster for merging the /etc changes might (have) be(en) a good addition in order to ensure /etc consistency. Awaiting your feedback, -- Jeroen Ruigrok van der Werven asmodai(at)wxs.nl The *BSD Programmer's Documentation Project Network/Security Specialist *BSD & (g)VIM : Accept no limitations... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 16 4:10: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A27C214C7F for ; Wed, 16 Jun 1999 04:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA36249; Wed, 16 Jun 1999 04:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from jimex.jinr.ru (jimex.jinr.ru [159.93.17.7]) by hub.freebsd.org (Postfix) with ESMTP id 1BB4B14CBB for ; Wed, 16 Jun 1999 04:07:04 -0700 (PDT) (envelope-from isupov@moonhe.jinr.ru) Received: from moonhe.jinr.ru (root@moonhe.jinr.ru [159.93.18.27]) by jimex.jinr.ru (8.8.8/8.8.4) with ESMTP id PAA17263 for ; Wed, 16 Jun 1999 15:06:56 +0400 (MSD) Received: (from isupov@localhost) by moonhe.jinr.ru (8.8.8/8.8.8) id OAA24531; Wed, 16 Jun 1999 14:32:05 +0400 (MSD) (envelope-from isupov) Message-Id: <199906161032.OAA24531@moonhe.jinr.ru> Date: Wed, 16 Jun 1999 14:32:05 +0400 (MSD) From: isupov@moonhe.jinr.ru Reply-To: isupov@moonhe.jinr.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/12239: KLD module's load/unload errors handled in strange way (or ignored ?) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12239 >Category: kern >Synopsis: KLD module's load/unload errors handled in strange way (or ignored ?) >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 Jun 16 04:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Isupov A.Yu. >Release: FreeBSD 3.2-RELEASE i386 >Organization: JINR, LHE >Environment: FreeBSD 3.2-RELEASE i386 (need nothing else than standard installation) >Description: 1) If in a KLD module .ko the function _modevent(struct module *module, int cmd, void *arg) returns error at loading time (f.e. : case MOD_LOAD : if (...) { error = ENXIO; break; } ), kldload(8) returns 0 (success !!!) and we have picture of the following style: % kldstat -v Id Refs Address Size Name ... 30 1 0xc0921000 2000 .ko Contains modules: Id Name instead of full absence of .ko here (as was in the 3.0-RELEASE). Such strange object not contains syscall, realised in .ko, and can be successfully removed by kldunload(8), but what the reasons for its appearing at all ?!! 2) If in a KLD module .ko the same function returns error at unloading time (f.e. : case MOD_UNLOAD : if (...) { error = ETXTBSY; break; } ), kldunload(8) returns 1 (nonzero, this seems correct...), .ko still appear in the kldstat output ( % kldstat -v Id Refs Address Size Name ... 31 1 0xc0921000 2000 .ko Contains modules: Id Name 45 ), but syscall, which realises, already removed: % /usr/share/examples/kld/syscall/test/test Bad system call - core dumped (test obtains 12 signal) !!! >How-To-Repeat: Play with /usr/share/examples/kld/syscall/module/syscall.c . >Fix: 1) Don't know, at least because module_register_init() in /sys/kern/kern_module.c of type void now. 2) ??? What are you think, described behaviour is a bug or a feature ? >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 Jun 16 4:20: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F92914E45 for ; Wed, 16 Jun 1999 04:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA36877; Wed, 16 Jun 1999 04:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from srh0710.urh.uiuc.edu (srh0710.urh.uiuc.edu [130.126.76.32]) by hub.freebsd.org (Postfix) with SMTP id 4CE9F15198 for ; Wed, 16 Jun 1999 04:13:24 -0700 (PDT) (envelope-from ftobin@srh0710.urh.uiuc.edu) Received: (qmail 44316 invoked by uid 1000); 16 Jun 1999 11:13:24 -0000 Message-Id: <19990616111324.44315.qmail@srh0710.urh.uiuc.edu> Date: 16 Jun 1999 11:13:24 -0000 From: ftobin@bigfoot.com Reply-To: ftobin@bigfoot.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/12240: inetd fails re-config on HUP Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12240 >Category: bin >Synopsis: inetd fails re-config from inetd.conf correctly on HUP >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 Jun 16 04:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Frank Tobin >Release: FreeBSD 3.2-STABLE i386 >Organization: >Environment: uname -a: FreeBSD srh0710.urh.uiuc.edu 3.2-STABLE FreeBSD 3.2-STABLE #11: Tue Jun 15 20:41:00 CDT 1999 root@srh0710.urh.uiuc.edu:/usr/src/sys/compile/SOLACE FreeBSD-STABLE make world as of June 16. >Description: inetd rereads the inetd.conf file incorrectly when given a HUP. By doing some simple testing in inetd.c with printf's, it seems it does not set se_server_name correctly at a minumum. It probably does not set se_server correctly either. This has a wide range of effects, specifically causing /etc/hosts.allow to not process correctly on a per-server basis. >How-To-Repeat: I have the following inetd.conf file: ident stream tcp wait kmem:kmem /usr/local/sbin/identd identd -w -t120 smtp stream tcp nowait qmaild /var/qmail/bin/tcp-env tcp-env /var/qmail/bin/qmail-smtpd Start inetd as normal. This is the inetd that is libwrapped. Verify that one can connect to the second service, tcp-env in this case. In hosts.allow have: tcp-env : ALL : allow ALL : DENY : twist /bin/echo %s Now HUP inetd. One cannot connect to port 25, tcp-env; the connect is wrap-dropped. Analysis of the though-to-be server name is printed as _@foo.bar.com. On the other hand, the first service, idnetd is not blocked at all. Neither tcp-env nor identd are libwrapped internally. All wrapping is supposed to be performed by inetd, no? >Fix: Unknown at the moment; currently, avoid HUPing inetd; just kill, restart. >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 Jun 16 6:30: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6EE4B15482 for ; Wed, 16 Jun 1999 06:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA52255; Wed, 16 Jun 1999 06:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from isabase.philol.msu.ru (isabase.philol.msu.ru [195.208.217.73]) by hub.freebsd.org (Postfix) with ESMTP id 27A8D1544A for ; Wed, 16 Jun 1999 06:21:08 -0700 (PDT) (envelope-from grg@isabase.philol.msu.ru) Received: (from grg@localhost) by isabase.philol.msu.ru (8.9.2/8.9.2) id RAA00800; Wed, 16 Jun 1999 17:21:09 +0400 (MSD) (envelope-from grg) Message-Id: <199906161321.RAA00800@isabase.philol.msu.ru> Date: Wed, 16 Jun 1999 17:21:09 +0400 (MSD) From: Grigoriy Strokin Reply-To: grg@isabase.philol.msu.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/12242: segmentation fault running /usr/bin/fmt Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12242 >Category: bin >Synopsis: segmentation fault running /usr/bin/fmt >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 Jun 16 06:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Grigoriy Strokin >Release: FreeBSD 3.1-STABLE i386 >Organization: Moscow University >Environment: >Description: There is a file that, when passed as input to /usr/bin/fmt, produces segmentation fault. >How-To-Repeat: uudecode this file: begin 644 fmt.BUG.txt M+G0@=&%G(&-O;F9I9W5R92!B;VQD("UF;VYT(%P@*BU#;W5R:65R+4)O;&0M M4BU.;W)M86PM*BTQ,C`M*B!C2!I;B!T:&4@;65N=2!F;W(@96%C:"!A M<'!L:6-A=&EO;B!N86UE+B!7:&5N(&]N92!O9B!T:&5S92!E;G1R:65S(&ES M(&EN=F]K960@8GD@=&AE('5S97(L('1H92!PFix: >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 Jun 16 8:10: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D091615451 for ; Wed, 16 Jun 1999 08:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA30995; Wed, 16 Jun 1999 08:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 967591523D; Wed, 16 Jun 1999 08:06:13 -0700 (PDT) Message-Id: <19990616150613.967591523D@hub.freebsd.org> Date: Wed, 16 Jun 1999 08:06:13 -0700 (PDT) From: m.seaman@inpharmatica.co.uk To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/12243: NFS re-mount from Solaris 7 server hangs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12243 >Category: bin >Synopsis: NFS re-mount from Solaris 7 server hangs >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 Jun 16 08:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Matthew Seaman >Release: 3.2-STABLE >Organization: Inpharmatica Ltd. >Environment: b0# uname -a FreeBSD b0.farm.inpharmatica.co.uk 3.2-STABLE FreeBSD 3.2-STABLE #0: Wed Jun 16 13:56:36 BST 1999 root@b9.farm.inpharmatica.co.uk:/usr/src/sys/compile/FARM alpha (also verified on 3.2-STABLE/i586) >Description: NFS mounts from a solaris server onto a FreeBSD client will often hang with the mount_nfs process stuck in uninteruptible wait (`D' in ps(1) output). The first time that a filesystem is mounted (eg. from /etc/fstab), the mount will usually succeed. Unmounting and then attempting to mount the same filesystem again results in the hang --- amd(8) will trigger this behaviour quite reliably. Forcing nfs v2 makes no difference. Occasionally an attempted mount will cause the whole machine to freeze: in any case the only way I've found to get rid on the hung mount_nfs process is to reboot. Mounting from other unix (FreBSD, Linux) servers doesn't result in hangs. >How-To-Repeat: mount -t nfs -o rw solaris-server:/filesystem /mnt umount /mnt mount -t nfs -o rw solaris-server:/filesystem /mnt >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 Wed Jun 16 8:20: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0493D14DEF for ; Wed, 16 Jun 1999 08:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA32191; Wed, 16 Jun 1999 08:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id F3FB61501A; Wed, 16 Jun 1999 08:10:55 -0700 (PDT) Message-Id: <19990616151055.F3FB61501A@hub.freebsd.org> Date: Wed, 16 Jun 1999 08:10:55 -0700 (PDT) From: jose@we.lc.ehu.es To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/12244: realpath() fails when there is no permission to read the WD Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12244 >Category: bin >Synopsis: realpath() fails when there is no permission to read the WD >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 Jun 16 08:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jose M. Alcaide >Release: 3.2-RELEASE >Organization: Universidad del Pais Vasco - Dept. de Electricidad y Electronica >Environment: FreeBSD garatu.we.lc.ehu.es 3.2-RELEASE FreeBSD 3.2-RELEASE #0: Tue May 18 18:40:58 CEST 1999 root@garatu.we.lc.ehu.es:/usr/src/sys/compile/GARATU i386 >Description: The realpath() function fails when the WD cannot be opened for reading. One of the utilities affected by this problem is mount(8): it fails when the working directory is NFS-mounted, it is being exported without root access, and there is no permission to read it. The origin of this problem is that realpath() uses the open()/fchdir() method for saving/restoring the working directory. Unfortunately, this method fails when the WD cannot be opened. In this case, the more traditional (although less efficient) getwd()/chdir() method does work. >How-To-Repeat: Obvious. >Fix: Change the method realpath() uses for saving/restoring the working directory (getwd()/chdir() instead of open()/fchdir()). >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 Jun 16 8:39:16 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C2F6415148; Wed, 16 Jun 1999 08:39:15 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA34449; Wed, 16 Jun 1999 08:39:15 -0700 (PDT) (envelope-from brian@FreeBSD.org) Date: Wed, 16 Jun 1999 08:39:15 -0700 (PDT) From: Message-Id: <199906161539.IAA34449@freefall.freebsd.org> To: brian@FreeBSD.org, freebsd-bugs@FreeBSD.org, brian@FreeBSD.org Subject: Re: bin/12216: rwhod triggers dial on demand (patch) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: rwhod triggers dial on demand (patch) Responsible-Changed-From-To: freebsd-bugs->brian Responsible-Changed-By: brian Responsible-Changed-When: Wed Jun 16 08:38:47 PDT 1999 Responsible-Changed-Why: This looks like a worthwhile change :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 16 8:56:12 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mrelay.jrc.it (mrelay.jrc.it [139.191.1.65]) by hub.freebsd.org (Postfix) with ESMTP id 9122314F85; Wed, 16 Jun 1999 08:56:09 -0700 (PDT) (envelope-from nick.hibma@jrc.it) Received: from elect8 (elect8.jrc.it [139.191.71.152]) by mrelay.jrc.it (LMC5692) with SMTP id RAA21118; Wed, 16 Jun 1999 17:56:06 +0200 (MET DST) Date: Wed, 16 Jun 1999 17:56:04 +0200 (MET DST) From: Nick Hibma X-Sender: n_hibma@elect8 Reply-To: Nick Hibma To: brian@FreeBSD.ORG Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: bin/12216: rwhod triggers dial on demand (patch) In-Reply-To: <199906161539.IAA34449@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Eih, are you Dutch by any chance? Nick On Wed, 16 Jun 1999 brian@FreeBSD.ORG wrote: > Synopsis: rwhod triggers dial on demand (patch) > > Responsible-Changed-From-To: freebsd-bugs->brian > Responsible-Changed-By: brian > Responsible-Changed-When: Wed Jun 16 08:38:47 PDT 1999 > Responsible-Changed-Why: > This looks like a worthwhile change :-) > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > > -- ISIS/STA, T.P.270, Joint Research Centre, 21020 Ispra, Italy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 16 9:20: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D844E1563B for ; Wed, 16 Jun 1999 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA39106; Wed, 16 Jun 1999 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.dinoex.sub.org (unknown [195.243.29.14]) by hub.freebsd.org (Postfix) with ESMTP id 9269715460 for ; Wed, 16 Jun 1999 09:17:58 -0700 (PDT) (envelope-from dm@home.dinoex.sub.org) Received: (from uucp@localhost) by mail.dinoex.sub.org (8.9.3/8.9.3) with UUCP id SAA02850 for FreeBSD-gnats-submit@freebsd.org; Wed, 16 Jun 1999 18:16:30 +0200 (CEST) Received: (from uucp@localhost) by net2.dinoex.sub.org (8.9.3/8.9.3) with UUCP id RAA01783 for FreeBSD-gnats-submit@freebsd.org; Wed, 16 Jun 1999 17:53:10 +0200 (CEST) Received: (from dm@localhost) by home.dinoex.sub.org (8.9.3/8.9.3) id RAA00552; Wed, 16 Jun 1999 17:49:12 +0200 (CEST) Message-Id: <199906161549.RAA00552@home.dinoex.sub.org> Date: Wed, 16 Jun 1999 17:49:12 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/12247: userlevel program let kernel hang Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12247 >Category: kern >Synopsis: userlevel program let kernel hang >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 Jun 16 09:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 3.2-RELEASE i386 >Organization: privat >Environment: FreeBSD 3.2-RELEASE i386 FreeBSD 2.2.8-RELEASE i386 KERNEL.GENERIC and my custom KERNELS /usr/bin/gdb >Description: while debugging a userlevel program The user can hang the system, no other processes seem to work. >How-To-Repeat: (sync all data first) extract this shar file, create the executable with "gmake" and run the script "hangme.sh" Send a signal + to the debugger # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # hangme # hangme/hangme.c # hangme/hangme.sh # hangme/GNUmakefile # echo c - hangme mkdir -p hangme > /dev/null 2>&1 echo x - hangme/hangme.c sed 's/^X//' >hangme/hangme.c << 'END-of-hangme/hangme.c' X/****************************************************************** X* HANGME.C X******************************************************************/ X X/****************************************************************** X* X* This Programm should test a problem with locking X* X* Copyright (c) 1992,1993,1994,1995,1996,1997,1998,1999 X* by Dirk Meyer, All rights reserved. X* Im Grund 4, 34317 Habichtswald, Germany X* Email: dirk.meyer@dinoex.sub.org X* X******************************************************************/ X X#include X#include X#include X X#include X#include X#include X#include X X/****************************************************************** X******************************************************************/ X Xtypedef int lockhandle_t; X Xconst char *const *Argv; X Xpid_t Session_gpid; X Xconst char *Logfile = "logfile"; X Xvolatile int Hang_up; X X/****************************************************************** X******************************************************************/ X Xvoid lock_handle( lockhandle_t handle, const char *datei ) X{ X int st; X X if ( datei == NULL ) X return; X X /* CONSTANTCONDITION */ X while ( 1 ) { X st = flock( handle, LOCK_EX | LOCK_NB ); X if ( st == 0 ) X break; X if ( errno == EWOULDBLOCK ) { X printf( "blocked by <%s>\n", datei ); X break; X }; X fprintf( stderr, X "lock <%s> returns %d: %s", datei, st, X strerror( errno ) ); X if ( errno == ENOLCK ) { X sleep( 20 ); X continue; X }; X return; X }; X /* CONSTANTCONDITION */ X while ( 1 ) { X st = flock( handle, LOCK_EX ); X if ( st == 0 ) X break; X fprintf( stderr, X "lock <%s> returns %d: %s", datei, st, X strerror( errno ) ); X if ( errno == ENOLCK ) { X sleep( 20 ); X continue; X }; X return; X } X} X X/****************************************************************** X******************************************************************/ X XFILE *file_open( const char *datei, const char *mode ) X{ X FILE *handle; X X if ( datei == NULL ) X return ( NULL ); X X handle = fopen( datei, mode ); X if ( handle == NULL ) X fprintf( stderr, X "Fatal: Datei '%s' nicht verfuegbar", datei ); X if ( mode[ 0 ] != 'r' ) X lock_handle( fileno( handle ), datei ); X return ( handle ); X} X Xvoid file_close( FILE *handle ) X{ X int status; X X status = fclose( handle ); X if ( status != 0 ) { X fprintf( stderr, X "Fatal: Fehler %d beim Schliessen der Datei", X status ); X } X} X X/****************************************************************** X******************************************************************/ X X#ifdef __FreeBSD__ X#undef SIG_DFL X#define SIG_DFL (void (*)(int))0 X#undef SIG_IGN X#define SIG_IGN (void (*)(int))1 X#endif X Xvoid my_appl_exit( void ); Xvoid my_appl_exit( void ) X{ X signal( SIGHUP, SIG_DFL ); X signal( SIGQUIT, SIG_DFL ); X} X Xvoid onquit( int test ); X/* ARGSUSED */ Xvoid onquit( int test ) X{ X fprintf( stderr, "QUIT-Signal\n" ); X signal( SIGQUIT, onquit ); X X signal( SIGHUP, SIG_IGN ); X signal( SIGTERM, SIG_IGN ); X if ( Session_gpid > 1 ) X (void)kill( -Session_gpid, SIGHUP ); X if ( Session_gpid > 1 ) X (void)kill( -Session_gpid, SIGTERM ); X my_appl_exit(); X execv( Argv[ 0 ], (char *const *)Argv ); X} X Xvoid onhangup( int test ); X/* ARGSUSED */ Xvoid onhangup( int test ) X{ X FILE *flog; X X fprintf( stderr, "HANGUP-Signal\n" ); X if ( Hang_up == 0 ) { X signal( SIGHUP, SIG_IGN ); X if ( Session_gpid > 1 ) { X (void)kill( -Session_gpid, SIGHUP ); X } X }; X Hang_up = 1; X signal( SIGHUP, onhangup ); X X /* deadlock */ X flog = file_open( Logfile, "ab" ); X file_close( flog ); X} X Xvoid my_appl_init( void ); Xvoid my_appl_init( void ) X{ X#ifdef __FreeBSD__ X int error; X#endif X X atexit( my_appl_exit ); X#ifdef __FreeBSD__ X error = setpgid( 0, getppid() ); X if ( error < 0 ) { X fprintf( stderr, X "!!! Fehler %d in " X "'setpgid( ppid=%ld )' :%s", X error, (long)getppid(), X strerror( errno ) ); X }; X Session_gpid = setsid(); X if ( Session_gpid < (pid_t)0 ) { X fprintf( stderr, X "!!! Fehler %d in " X "'setsid()' :%s", error, X strerror( errno ) ); X }; X#else X Session_gpid = 0; X#endif X signal( SIGHUP, onhangup ); X signal( SIGQUIT, onquit ); X} X Xvoid main( int argc, const char *const *argv ); Xvoid main( int argc, const char *const *argv ) X{ X FILE *flog; X X Hang_up = 0; X Argv = argv; X my_appl_init(); X flog = file_open( Logfile, "ab" ); X fputs( "main\n", flog ); X while ( Hang_up == 0 ) X ; X file_close( flog ); X exit( 0 ); X} X X/****************************************************************** X* END OF FILE HANGUP.C X******************************************************************/ END-of-hangme/hangme.c echo x - hangme/hangme.sh sed 's/^X//' >hangme/hangme.sh << 'END-of-hangme/hangme.sh' X#!/bin/sh X# X# (c) 1994-99, Dirk Meyer, Im Grund 4, 34317 Habichtswald X# Xnpid="$$" X./hangme & Xsleep 1 Xnpid=`expr ${npid} + 1` Xecho "${npid}" Xkillall -1 hangme Xsleep 1 Xgdb ./hangme "${npid}" << 'EOF' Xq XEOF Xgdb ./hangme "${npid}" << 'EOF' Xq XEOF Xkillall -9 hangme X# X# eof END-of-hangme/hangme.sh echo x - hangme/GNUmakefile sed 's/^X//' >hangme/GNUmakefile << 'END-of-hangme/GNUmakefile' X XCPPFLAGS+= -Wall XCFLAGS+= -g XLDLAGS+= -g X Xall: hangme X END-of-hangme/GNUmakefile exit >Fix: none found >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 Jun 16 9:57:34 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 29D6414CEA; Wed, 16 Jun 1999 09:57:33 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA43304; Wed, 16 Jun 1999 09:57:32 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Date: Wed, 16 Jun 1999 09:57:32 -0700 (PDT) From: Message-Id: <199906161657.JAA43304@freefall.freebsd.org> To: obrien@FreeBSD.org, obrien@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/11943: pppd connection time report is wrong Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pppd connection time report is wrong Responsible-Changed-From-To: obrien->freebsd-bugs Responsible-Changed-By: obrien Responsible-Changed-When: Wed Jun 16 09:56:27 PDT 1999 Responsible-Changed-Why: David does Amd, DHCP(client), and EGCS. He doesn't know much about PPP and hasn't used PPP (in any form) for 2.5 years. . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 16 12:30: 2 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 38AE114E4F for ; Wed, 16 Jun 1999 12:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA60001; Wed, 16 Jun 1999 12:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 0B17314C59; Wed, 16 Jun 1999 12:20:49 -0700 (PDT) Message-Id: <19990616192049.0B17314C59@hub.freebsd.org> Date: Wed, 16 Jun 1999 12:20:49 -0700 (PDT) From: jrendon@udem.edu.co To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/12248: CRON in malloc(): warning: pointer to wrong page Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12248 >Category: kern >Synopsis: CRON in malloc(): warning: pointer to wrong page >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jun 16 12:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Julián Rendón Yepes >Release: FreeBSD 3.1 >Organization: Panel de Control >Environment: FreeBSD 3.1-RELEASE FreeBSD 3.1-RELEASE #0: Mon Feb 15 11:08:08 GMT 1999 jkh@usw3.freebsd.org:/usr/src/sys/compile/GENERIC i386 >Description: The server crashes when tried to initialize boot procedure. >How-To-Repeat: After 3 days of continous and normal operation, the error appears when you reboot the System >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 Jun 16 12:40:23 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from dt054n86.san.rr.com (dt054n86.san.rr.com [24.30.152.134]) by hub.freebsd.org (Postfix) with ESMTP id 6C96914EEE; Wed, 16 Jun 1999 12:40:18 -0700 (PDT) (envelope-from Studded@gorean.org) Received: from localhost (doug@localhost) by dt054n86.san.rr.com (8.8.8/8.8.8) with ESMTP id MAA23994; Wed, 16 Jun 1999 12:39:48 -0700 (PDT) (envelope-from Studded@gorean.org) Date: Wed, 16 Jun 1999 12:39:48 -0700 (PDT) From: Studded X-Sender: doug@dt054n86.san.rr.com To: The Tech-Admin Dude Cc: Luigi Rizzo , Dan Nelson , arikkert@surf.IAE.nl, freebsd-bugs@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: timeconsuming processes on FreeBSD 3.1 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 20 May 1999, The Tech-Admin Dude wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > I could add another one, top(1) frequently does that on this machine.. > so whatever answers you get, be sure to forward them to me :). Blast from the past, but since no one gave you an answer, here is one suggestion. I used to have this problem all the time until I discovered that top obeys environment variables. So, you could put the following in /etc/login.conf (make sure to rebuild the db after editing): :setenv=TOP='-I -d5' The -I just means "don't display idle processes," the -d5 means "do 5 cycles then exit." Both are overridable from the command line. You might want to set the -d value higher so that it's more transparent to the user, but after setting this up I've never had another runaway top process. HTH, Doug -- *** Chief Operations Officer, DALnet IRC network *** On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does. -- Will Rogers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 16 12:55:52 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from dt054n86.san.rr.com (dt054n86.san.rr.com [24.30.152.134]) by hub.freebsd.org (Postfix) with ESMTP id 65A72150DE; Wed, 16 Jun 1999 12:55:48 -0700 (PDT) (envelope-from Studded@gorean.org) Received: from localhost (doug@localhost) by dt054n86.san.rr.com (8.8.8/8.8.8) with ESMTP id MAA24107; Wed, 16 Jun 1999 12:55:44 -0700 (PDT) (envelope-from Studded@gorean.org) Date: Wed, 16 Jun 1999 12:55:43 -0700 (PDT) From: Studded X-Sender: doug@dt054n86.san.rr.com To: Dag-Erling Smorgrav Cc: freebsd-bugs@FreeBSD.org, freebsd-gnat-submit@FreeBSD.org, alex@wnm.net Subject: Re: misc/11796: Bad lines in 3.2-RELEASE inetd.conf In-Reply-To: <199906022320.QAA08663@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 2 Jun 1999, Dag-Erling Smorgrav wrote: > The following reply was made to PR misc/11796; it has been noted by GNATS. > > From: Dag-Erling Smorgrav > To: alex@wnm.net > Cc: freebsd-gnats-submit@FreeBSD.ORG > Subject: Re: misc/11796: Bad lines in 3.2-RELEASE inetd.conf > Date: 01 Jun 1999 16:26:46 +0200 > > alex@wnm.net writes: > > The default /etc/inetd.conf contains commented out lines for enabling > > identd. Both relevant lines refer to the 'ident' service, which is, > > according to /etc/services, really 'auth', as it should be. > > Oh? > > root@des ~# grep -w 113 /etc/services > auth 113/tcp ident tap #Authentication Service > auth 113/udp ident tap #Authentication Service > Works just fine, thank you very much :) The man page for identd says in part, The service-name entry is the name of a valid service in the file /etc/services. For ``internal'' services (discussed below), the service name must be the official name of the service (that is, the first entry in /etc/services). Therefore the first entry should definitely be changed. The second entry in the inetd.conf file is for a non-internal identd daemon, but some versions of the software are more picky than others, and the fact that one of them might "work" doesn't mean that the configuration file isn't in error. At minimum the following patch should be applied. Ideally you would add a comment to the fact that the two entries in inetd.conf are mutually exclusive. Thanks, Doug --- inetd.conf.Dist Sun May 9 06:31:40 1999 +++ inetd.conf Wed Jun 16 12:49:51 1999 @@ -65,11 +65,11 @@ # # Return error for all "ident" requests # -#ident stream tcp nowait root internal +#auth stream tcp nowait root internal # # example entry for the optional ident server # -#ident stream tcp wait kmem:kmem /usr/local/sbin/identd identd -w -t120 +#auth stream tcp wait kmem:kmem /usr/local/sbin/identd identd -w -t120 # # example entry for the optional qmail MTA # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 16 15:20: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A938D14D59 for ; Wed, 16 Jun 1999 15:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA76358; Wed, 16 Jun 1999 15:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 16 Jun 1999 15:20:02 -0700 (PDT) Message-Id: <199906162220.PAA76358@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nathan Dorfman Subject: Re: kern/12226: IPFilter breaking with ipl ERROR Reply-To: Nathan Dorfman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/12226; it has been noted by GNATS. From: Nathan Dorfman To: davec@unforgettable.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-current@FreeBSD.ORG Subject: Re: kern/12226: IPFilter breaking with ipl ERROR Date: Wed, 16 Jun 1999 18:15:06 -0400 On Tue, Jun 15, 1999 at 06:28:20PM -0400, davec@unforgettable.com wrote: > >Synopsis: In 4.0-current the ipl driver breaks with "bogus cdevsw->d_maj = -1 > >Environment: > > FreeBSD 4.0-Current as of June 15, 1999 > Pentium233MMX, 128MB SDRAM, two UDMA2 HD's, one IDE HD. > PA-2007 motherboard, Matrox MillenniumII vid. 3COM905-TX NIC. > Kernel compiled with IPFILTER, IPFILTER_LOG, and bpfilter. > >Description: > Preloaded elf kernel "kernel" at 0xc030e000. > Intel Pentium detected, installing workaround for F00F bug > ipl: ERROR: driver has bogus cdevsw->d_maj = -1 > > For every rule ipf tries to process, the following error was produced: > > open device: Device not configured > ioctl(SIOCIPFFL): Bad file descriptor I've seen this since at least as early as June 3rd. Haven't said anything because I've not had time to see if there was already a fix, or at least the topic had been brought up. Maybe we're doing something wrong; ipf + ipnat not working at all sounds like something that'd get noticed real quick. Oh yeah, ipnat: # ipnat -l /dev/ipnat: open: Device not configured # grep IPFILTER /sys/i386/conf/LIMBO options IPFILTER options IPFILTER_LOG Same error message as the author of the send-pr above reports. Any ideas? -- Nathan Dorfman The statements and opinions in my Unix Admin @ Frontline Communications public posts are mine, not FCC's. "The light at the end of the tunnel is the headlight of an approaching train." --/usr/games/fortune To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 16 17:40: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E2FCC1502A for ; Wed, 16 Jun 1999 17:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA88488; Wed, 16 Jun 1999 17:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from smtp2.vnet.net (smtp2.vnet.net [166.82.1.32]) by hub.freebsd.org (Postfix) with ESMTP id 0DC4514D10 for ; Wed, 16 Jun 1999 17:36:23 -0700 (PDT) (envelope-from rivers@dignus.com) Received: from dignus.com (ponds.vnet.net [166.82.177.48]) by smtp2.vnet.net (8.9.1a/8.9.1) with ESMTP id UAA21404 for ; Wed, 16 Jun 1999 20:37:01 -0400 (EDT) Received: from lakes.dignus.com (lakes.dignus.com [10.0.0.3]) by dignus.com (8.9.2/8.8.5) with ESMTP id UAA03098 for ; Wed, 16 Jun 1999 20:36:20 -0400 (EDT) Received: (from rivers@localhost) by lakes.dignus.com (8.9.2/8.6.9) id UAA08247; Wed, 16 Jun 1999 20:36:19 -0400 (EDT) Message-Id: <199906170036.UAA08247@lakes.dignus.com> Date: Wed, 16 Jun 1999 20:36:19 -0400 (EDT) From: Thomas David Rivers Reply-To: rivers@dignus.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/12251: slattach followed by ifconfig sl0 doesn't work. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12251 >Category: kern >Synopsis: slattach followed by ifconfig sl0 doesn't work. >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 16 17:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Thomas David Rivers >Release: FreeBSD 3.1-RELEASE i386 >Organization: Dignus, LLC >Environment: FreeBSD 3.1-R and FreeBSD 3.2-R (maybe others) >Description: If you do an slattach followed by an ifconfig - the ifconfig will report ifconfig: ioctl(SIOCAIFADDR): File exists because it attempts to add the same route to the routing table twice. The reason for this is that in_ifinit() (in /sys/netinet/in.c) calls the interface-specific ioctl routine to give it a "chance" to do things. In the SL/IP case, if the slip unit sc_ttyp field is set (which it will be because slattach has associated the tty) - then if_up() will be called, which eventually adds the route to the route table. Later in in_ifinit(), rtinit() gets called again to add the exact same route. The second call to rtinit() results in an EEXISTS return code because the route is already there. >How-To-Repeat: slattach -c -s 9600 /dev/cuaa0 ifconfig sl0 n.n.n.n m.m.m.m >Fix: Don't do slattach first - if the device isn't opened, this problem doesn't exist. [Unfortunately, sysintall does do the slattach first, which means SL/IP installs no longer work.] >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 Jun 16 18:55:29 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 3DAAB14C2B for ; Wed, 16 Jun 1999 18:55:08 -0700 (PDT) (envelope-from robert@cyrus.watson.org) Received: from fledge.watson.org (robert@fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.8.8/8.8.8) with SMTP id VAA00483 for ; Wed, 16 Jun 1999 21:55:00 -0400 (EDT) (envelope-from robert@cyrus.watson.org) Date: Wed, 16 Jun 1999 21:55:00 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org Reply-To: Robert Watson To: bugs@freebsd.org Subject: X11 dependency in ports collection following X11 install with sysinstall Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org 3.2-RELEASE Instructions to reproduce: 1) install FreeBSD 3.2 sans X11 2) reboot, now install X11 distribution using /stand/sysinstall 3) Now attempt to build something depending on X11 (say, tk81) The dependency check on X11 will fail because sysinstall did not run ldconfig to pick up library changes. The result is that the port will attempt to compile and install X11. Most packages automatically rerun ldconfig when they install; perhaps distributions should do the same? Thanks, Robert N M Watson robert@fledge.watson.org http://www.watson.org/~robert/ PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 Carnegie Mellon University http://www.cmu.edu/ TIS Labs at Network Associates, Inc. http://www.tis.com/ Safeport Network Services http://www.safeport.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Jun 16 19:10: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 21BD8150D0 for ; Wed, 16 Jun 1999 19:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA95771; Wed, 16 Jun 1999 19:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2E03314C2B; Wed, 16 Jun 1999 19:02:31 -0700 (PDT) Message-Id: <19990617020231.2E03314C2B@hub.freebsd.org> Date: Wed, 16 Jun 1999 19:02:31 -0700 (PDT) From: jrd@cc.usu.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/12252: netstat fails to display TCP connectoins Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12252 >Category: misc >Synopsis: netstat fails to display TCP connectoins >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 Jun 16 19:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Joe R. Doupnik >Release: v3.2 >Organization: Utah State University >Environment: FreeBSD netlab6.usu.edu 3.2-RELEASE FreeBSD 3.2-RELEASE #17: Wed Jun 16 16:50:45 MDT 1999 root@netlab6.usu.edu:/usr/src/sys/compile/JRD i386 >Description: netstat shows UDP and Unix but not TCP connections. The problem is the TCP protocol value is not set in the xt_socket structure passed back to netstat routines. See horrid workaround below (one line). The value returned in the structure looks rather like an address or left over un-inited garbage. >How-To-Repeat: Type netstat with TCP connections active >Fix: My dirty but quick fix, to netstat/inet.c: oxig = xig = (struct xinpgen *)buf; for (xig = (struct xinpgen *)((char *)xig + xig->xig_len); xig->xig_len > sizeof(struct xinpgen); xig = (struct xinpgen *)((char *)xig + xig->xig_len)) { if (istcp) { tp = &((struct xtcpcb *)xig)->xt_tp; inp = &((struct xtcpcb *)xig)->xt_inp; so = &((struct xtcpcb *)xig)->xt_socket; /* JRD */ so->xso_protocol = proto; /* correct uninited value */ /* JRD */ } else { inp = &((struct xinpcb *)xig)->xi_inp; so = &((struct xinpcb *)xig)->xi_socket; } /* Ignore sockets for protocols other than the desired one. */ if (so->xso_protocol != proto) continue; >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 Jun 16 22: 0: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F2A215117 for ; Wed, 16 Jun 1999 22:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA11607; Wed, 16 Jun 1999 22:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from lab321.ru (anonymous1.omsk.net.ru [62.76.128.34]) by hub.freebsd.org (Postfix) with ESMTP id C097514EB8 for ; Wed, 16 Jun 1999 21:59:10 -0700 (PDT) (envelope-from kev@Kev.lab321.ru) Received: from Kev.lab321.ru (Kev.lab321.ru [62.76.129.68]) by lab321.ru (8.9.3/8.9.3) with ESMTP id LAA04129 for ; Thu, 17 Jun 1999 11:59:05 +0700 (OSS) Received: (from kev@localhost) by Kev.lab321.ru (8.9.3/8.9.3) id LAA69280; Thu, 17 Jun 1999 11:59:04 +0700 (OSS) Message-Id: <199906170459.LAA69280@Kev.lab321.ru> Date: Thu, 17 Jun 1999 11:59:04 +0700 (OSS) From: CoreDumped@CoreDumped.null.ru Reply-To: CoreDumped@CoreDumped.null.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/12254: Kernel always hangs when booting with -c option. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12254 >Category: kern >Synopsis: Kernel always hangs when booting with -c option. >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 Jun 16 22:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Core Dumped >Release: FreeBSD 4.0-CURRENT i386 >Organization: I am. >Environment: -current cvsuped at 15 May 1999. >Description: When I boot kernel with -c option it always hungs. >How-To-Repeat: boot -c >Fix: I will glad to see 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 Thu Jun 17 0:20:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F30F152C0 for ; Thu, 17 Jun 1999 00:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA28120; Thu, 17 Jun 1999 00:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 17 Jun 1999 00:20:02 -0700 (PDT) Message-Id: <199906170720.AAA28120@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Andy V. Oleynik" Subject: Re: kern/12022: System clock timewarps Reply-To: "Andy V. Oleynik" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/12022; it has been noted by GNATS. From: "Andy V. Oleynik" To: freebsd-gnats-submit@freebsd.org, dwhite@pond.net Cc: Subject: Re: kern/12022: System clock timewarps Date: Thu, 17 Jun 1999 09:55:20 +0300 I have 2 boxes at work: 1. Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 90040111 Hz CPU: AMD K5 model 0 (90.04-MHz 586-class CPU) Origin = "AuthenticAMD" Id = 0x501 Stepping=1 Features=0x3bf (BIOS reports: AMD-k5-PR90 CPU, Award Modular BIOS v4.51PG, Award P&P BIOS extension v1.0A, M/B 580VPX-ITE8661-2A5LDL1CC-0) 2. Sorry, I can't give Timecounters strings 'cos I've removed 3.2-S and installed 2.2.8-R on this PC due the clock bug. CPU: AMD K5 model 0 (74.54-MHz 586-class CPU) Origin = "AuthenticAMD" Id = 0x501 Stepping=1 Features=0x3bf (BIOS reports: AMD-k5-PR75 CPU, Award Modular BIOS v4.51PG release 03/03/1997S, Award P&P BIOS extension v1.0A, M/B I430VX-02071997C-00) Timecounters on 1st PC: Jun 14 09:58:28 volodya /kernel: Timecounter "i8254" frequency 1193182 Hz Jun 14 09:58:28 volodya /kernel: Timecounter "TSC" frequency 90040208 Hz Jun 14 14:55:40 volodya /kernel: Timecounter "i8254" frequency 1193182 Hz Jun 14 14:55:40 volodya /kernel: Timecounter "TSC" frequency 90040168 Hz Jun 14 14:58:47 volodya /kernel: Timecounter "i8254" frequency 1193182 Hz Jun 14 14:58:47 volodya /kernel: Timecounter "TSC" frequency 90039940 Hz Jun 15 09:20:31 volodya /kernel: Timecounter "i8254" frequency 1193182 Hz Jun 15 09:20:31 volodya /kernel: Timecounter "TSC" frequency 90040205 Hz Jun 15 17:25:56 volodya /kernel: Timecounter "i8254" frequency 1193182 Hz Jun 15 17:25:56 volodya /kernel: Timecounter "TSC" frequency 90039919 Hz Jun 16 09:22:18 volodya /kernel: Timecounter "i8254" frequency 1193182 Hz Jun 16 09:22:18 volodya /kernel: Timecounter "TSC" frequency 90039896 Hz Jun 17 09:46:25 volodya /kernel: Timecounter "i8254" frequency 1193182 Hz Jun 17 09:46:25 volodya /kernel: Timecounter "TSC" frequency 90039989 Hz Jun 17 09:52:11 volodya /kernel: Timecounter "i8254" frequency 1193182 Hz Jun 17 09:52:11 volodya /kernel: Timecounter "TSC" frequency 90040111 Hz On both was (on 1st remains) installed 3.2-R upgaded to STABLE. Again, kernel clock latancy on both is about 55 min/hour (real 1 hour = 5 min on PC). APM disabled on both. -- WBW Andy V. Oleynik (prime.net.ua's sysadmin) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 0:56:38 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DED5515169; Thu, 17 Jun 1999 00:56:36 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA31763; Thu, 17 Jun 1999 00:56:36 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 17 Jun 1999 00:56:36 -0700 (PDT) From: Message-Id: <199906170756.AAA31763@freefall.freebsd.org> To: sheldonh@FreeBSD.org, freebsd-bugs@FreeBSD.org, brian@FreeBSD.org Subject: Re: bin/11943: pppd connection time report is wrong Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pppd connection time report is wrong Responsible-Changed-From-To: freebsd-bugs->brian Responsible-Changed-By: sheldonh Responsible-Changed-When: Thu Jun 17 00:55:46 PDT 1999 Responsible-Changed-Why: Brian Somers is the PPP man. Silly me. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 1:30: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E96ED14BF1 for ; Thu, 17 Jun 1999 01:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA34627; Thu, 17 Jun 1999 01:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from server.research.zopps.fi (ws99.research.zopps.fi [195.165.196.99]) by hub.freebsd.org (Postfix) with ESMTP id AD92A14C38 for ; Thu, 17 Jun 1999 01:22:45 -0700 (PDT) (envelope-from martti@research.zopps.fi) Received: (from uucp@localhost) by server.research.zopps.fi (8.9.3/8.8.8) id LAA70474 for ; Thu, 17 Jun 1999 11:21:29 +0300 (EEST) (envelope-from martti.kuparinen) Received: from ws125.research.zopps.fi(195.165.196.125) via SMTP by ws99.research.zopps.fi, id smtpdI70467; Thu Jun 17 11:21:21 1999 Received: (from martti@localhost) by ws125.research.zopps.fi (8.9.3/8.8.8) id LAA89404; Thu, 17 Jun 1999 11:21:20 +0300 (EEST) (envelope-from martti@research.zopps.fi) Message-Id: <199906170821.LAA89404@ws125.research.zopps.fi> Date: Thu, 17 Jun 1999 11:21:20 +0300 (EEST) From: martti.kuparinen@research.zopps.fi Reply-To: martti.kuparinen@research.zopps.fi To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/12255: BIND 8.1.2 compilation error in IPv6 capable host Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12255 >Category: bin >Synopsis: BIND 8.1.2 compilation error in IPv6 capable host >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jun 17 01:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Martti Kuparinen >Release: FreeBSD 3.2-RELEASE i386 >Organization: >Environment: >Description: When running "make world" in FreeBSD 3.2 which has been powered with the KAME IPv6 stuff, compilation of usr.bin/host fails: ===> usr.bin/host cc -nostdinc -O -pipe -I/usr/src/usr.bin/host/../../contrib/bind/port/freebsd/in clude -I/usr/obj/usr/src/tmp/usr/include -c /usr/src/usr.bin/host/../../contri b/bind/bin/host/host.c /usr/src/usr.bin/host/../../contrib/bind/bin/host/host.c:149: conflicting types for `getaddrinfo' /usr/obj/usr/src/tmp/usr/include/netdb.h:241: previous declaration of `getaddrin fo' The host.c has a static getaddrinfo function. However, this name is used in KAME (and in fact in the IEEE POSIX 1003.1g draft) and should therefore not be used. The simple solution is to rename "getaddrinfo" to "addrinfo". I have checked BIND 8.2 and it didn't contain this offending function name, so only version 8.1.2 must be patched. >How-To-Repeat: >Fix: *** /usr/src/contrib/bind/bin/host/host.c.orig Sun May 3 07:09:49 1998 --- /usr/src/contrib/bind/bin/host/host.c Thu Jun 17 08:46:10 1999 *************** *** 146,152 **** static int parseclass(const char *s); static void printanswer(const struct hostent *hp); static void hperror(int errnum); ! static int getaddrinfo(struct in_addr addr); static int gethostinfo(char *name); static int getdomaininfo(const char *name, const char *domain); static int getinfo(const char *name, const char *domain, --- 146,152 ---- static int parseclass(const char *s); static void printanswer(const struct hostent *hp); static void hperror(int errnum); ! static int addrinfo(struct in_addr addr); static int gethostinfo(char *name); static int getdomaininfo(const char *name, const char *domain); static int getinfo(const char *name, const char *domain, *************** *** 285,291 **** continue; } } else { ! if (getaddrinfo(addr) == 0) hp = NULL; else hp = (struct hostent *)1; /* XXX */ --- 285,291 ---- continue; } } else { ! if (addrinfo(addr) == 0) hp = NULL; else hp = (struct hostent *)1; /* XXX */ *************** *** 430,436 **** } static int ! getaddrinfo(struct in_addr addr) { u_int32_t ha = ntohl(addr.s_addr); char name[NS_MAXDNAME]; --- 430,436 ---- } static int ! addrinfo(struct in_addr addr) { u_int32_t ha = ntohl(addr.s_addr); char name[NS_MAXDNAME]; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 1:30: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5242814CE1 for ; Thu, 17 Jun 1999 01:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA34636; Thu, 17 Jun 1999 01:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 923DF14BD8; Thu, 17 Jun 1999 01:27:28 -0700 (PDT) Message-Id: <19990617082728.923DF14BD8@hub.freebsd.org> Date: Thu, 17 Jun 1999 01:27:28 -0700 (PDT) From: nasten@everyware.se To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/12256: Opening a socket when all interfaces are down forces a kernel panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12256 >Category: misc >Synopsis: Opening a socket when all interfaces are down forces a 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: Thu Jun 17 01:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Hans Nasten >Release: 3.2-RELEASE >Organization: Everyware Mikrodata AB >Environment: FreeBSD Urkburk.Everyware.SE 3.2-RELEASE FreeBSD 3.2-RELEASE #0: Mon Jun 14 12:44:40 GMT 1999 root@Urkburk.Everyware.SE:/usr/src/sys/compile/merkurius i386 >Description: When all available interfaces are removed ( using ifconfig down and ifconfig delete ) a connection attempt forces a kernel panic. Backtrace from a kernel dump: ----------------------------- 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 2605056 initial pcb at 21d49c panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0xc fault code = supervisor read, page not present instruction pointer = 0x8:0xc0182fd0 stack pointer = 0x10:0xc7215ecc frame pointer = 0x10:0xc7215ed8 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 = 81 (newaliases) interrupt mask = trap number = 12 panic: page fault syncing disks... done dumping to dev 20001, offset 275232 dump 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 10\ 9 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 3\ 3 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 boot (howto=256) at ../../kern/kern_shutdown.c:285 285 ../../kern/kern_shutdown.c: No such file or directory. (kgdb) bt #0 boot (howto=256) at ../../kern/kern_shutdown.c:285 #1 0xc0146048 in at_shutdown ( function=0xc02021d3 <__set_sysinit_set_sym_memdev_sys_init+1115>, arg=0xc7201780, queue=-954184256) at ../../kern/kern_shutdown.c:446 #2 0xc01d6159 in trap_fatal (frame=0xc7215e90, eva=12) at ../../i386/i386/trap.c:942 #3 0xc01d5e37 in trap_pfault (frame=0xc7215e90, usermode=0, eva=12) at ../../i386/i386/trap.c:835 #4 0xc01d5aae in trap (frame={tf_es = -954138608, tf_ds = -1071775728, tf_edi = -1059496576, tf_esi = -1059496576, tf_ebp = -954114344, tf_isp = -954114376, tf_ebx = -956215456, tf_edx = -954114212, tf_ecx = 0, tf_eax = 0, tf_trapno = 12, tf_err = 0, tf_eip = -1072156720, tf_cs = 8, tf_eflags = 66118, tf_esp = -956215456, tf_ss = -1059496576}) at ../../i386/i386/trap.c:437 #5 0xc0182fd0 in in_pcbladdr (inp=0xc7014f60, nam=0xc0d95d80, plocal_sin=0xc7215ef4) at ../../netinet/in_pcb.c:344 #6 0xc0183131 in in_pcbconnect (inp=0xc7014f60, nam=0xc0d95d80, p=0xc7201780) at ../../netinet/in_pcb.c:445 #7 0xc018cfaf in udp_connect (so=0xc6f72a00, nam=0xc0d95d80, p=0xc7201780) at ../../netinet/udp_usrreq.c:649 #8 0xc015b01e in soconnect (so=0xc6f72a00, nam=0xc0d95d80, p=0xc7201780) at ../../kern/uipc_socket.c:319 #9 0xc015d9d8 in connect (p=0xc7201780, uap=0xc7215f94) at ../../kern/uipc_syscalls.c:343 #10 0xc01d633b in syscall (frame={tf_es = 39, tf_ds = 39, tf_edi = 1, tf_esi = -1077951060, tf_ebp = -1077953304, tf_isp = -954114076, tf_ebx = 32, tf_edx = -1077953268, tf_ecx = 0, tf_eax = 98, tf_trapno = 12, tf_err = 2, tf_eip = 134775668, tf_cs = 31, tf_eflags = 582, tf_esp = -1077953944, tf_ss = 39}) at ../../i386/i386/trap.c:1100 #11 0xc01ca25c in Xint0x80_syscall () #12 0x8093907 in ?? () #13 0x8093d29 in ?? () #14 0x8093ac2 in ?? () #15 0x808dc75 in ?? () #16 0x808cb3d in ?? () #17 0x808cae3 in ?? () #18 0x804c315 in ?? () #19 0x804e4d4 in ?? () #20 0x805b00f in ?? () #21 0x80480e9 in ?? () (kgdb) >How-To-Repeat: Perform the following : shutdown now ifconfig ifc down ifconfig ifc delete .. .. Repeat for all interfaces. ( including lo0 and unused interfaces ) xntpdc -p Or any other action to open a udp socket. Watch the pretty panic message. >Fix: Adding this code in sys/netinet/in_pcb.c so that in_pcbladdr returns a error code when no interfaces are found seems to be a usable bandaid. *************** *** 340,345 **** --- 340,348 ---- else if (sin->sin_addr.s_addr == (u_long)INADDR_BROADCAST && (in_ifaddrhead.tqh_first->ia_ifp->if_flags & IFF_BROADCAST)) sin->sin_addr = satosin(&in_ifaddrhead.tqh_first->ia_broadaddr)->sin_addr; + } + else { + return (ENETDOWN); } if (inp->inp_laddr.s_addr == INADDR_ANY) { register struct route *ro; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 3: 6:50 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from mrelay.jrc.it (mrelay.jrc.it [139.191.1.65]) by hub.freebsd.org (Postfix) with ESMTP id DC3901544F for ; Thu, 17 Jun 1999 03:06:32 -0700 (PDT) (envelope-from nick.hibma@jrc.it) Received: from elect8 (elect8.jrc.it [139.191.71.152]) by mrelay.jrc.it (LMC5692) with SMTP id MAA09759; Thu, 17 Jun 1999 12:06:11 +0200 (MET DST) Date: Thu, 17 Jun 1999 12:06:10 +0200 (MET DST) From: Nick Hibma X-Sender: n_hibma@elect8 Reply-To: Nick Hibma To: Robert Watson Cc: bugs@FreeBSD.ORG Subject: Re: X11 dependency in ports collection following X11 install with sysinstall In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Isn't the hints file rebuilt at boot in /etc/rc? Or does it just keep adding hints to the file? Nick On Wed, 16 Jun 1999, Robert Watson wrote: > > 3.2-RELEASE > > Instructions to reproduce: > > 1) install FreeBSD 3.2 sans X11 > 2) reboot, now install X11 distribution using /stand/sysinstall > 3) Now attempt to build something depending on X11 (say, tk81) > > The dependency check on X11 will fail because sysinstall did not run > ldconfig to pick up library changes. The result is that the port will > attempt to compile and install X11. Most packages automatically rerun > ldconfig when they install; perhaps distributions should do the same? > > Thanks, > > > Robert N M Watson > > robert@fledge.watson.org http://www.watson.org/~robert/ > PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 > > Carnegie Mellon University http://www.cmu.edu/ > TIS Labs at Network Associates, Inc. http://www.tis.com/ > Safeport Network Services http://www.safeport.com/ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > > -- ISIS/STA, T.P.270, Joint Research Centre, 21020 Ispra, Italy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 4:43:58 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from critter.freebsd.dk (wandering-wizard.cybercity.dk [212.242.41.238]) by hub.freebsd.org (Postfix) with ESMTP id 3439E15400 for ; Thu, 17 Jun 1999 04:43:54 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.2) with ESMTP id NAA01049; Thu, 17 Jun 1999 13:43:26 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: "Andy V. Oleynik" Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/12022: System clock timewarps In-reply-to: Your message of "Thu, 17 Jun 1999 00:20:02 PDT." <199906170720.AAA28120@freefall.freebsd.org> Date: Thu, 17 Jun 1999 13:43:26 +0200 Message-ID: <1047.929619806@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The TSC doesn't (always) work on K5/model0 I committed a fix for this to -current recently. Try to remove/comment out this line in i386/isa/clock.c: init_timecounter(&tsc_timecounter); In message <199906170720.AAA28120@freefall.freebsd.org>, "Andy V. Oleynik" writes: >The following reply was made to PR kern/12022; it has been noted by GNATS. > >From: "Andy V. Oleynik" >To: freebsd-gnats-submit@freebsd.org, dwhite@pond.net >Cc: >Subject: Re: kern/12022: System clock timewarps >Date: Thu, 17 Jun 1999 09:55:20 +0300 > > I have 2 boxes at work: > 1. Timecounter "i8254" frequency 1193182 Hz > Timecounter "TSC" frequency 90040111 Hz > CPU: AMD K5 model 0 (90.04-MHz 586-class CPU) > Origin = "AuthenticAMD" Id = 0x501 Stepping=1 > Features=0x3bf > (BIOS reports: AMD-k5-PR90 CPU, > Award Modular BIOS v4.51PG, > Award P&P BIOS extension v1.0A, > M/B 580VPX-ITE8661-2A5LDL1CC-0) > 2. > Sorry, I can't give Timecounters strings 'cos I've removed 3.2-S and > > installed 2.2.8-R on this PC due the clock bug. > CPU: AMD K5 model 0 (74.54-MHz 586-class CPU) > Origin = "AuthenticAMD" Id = 0x501 Stepping=1 > Features=0x3bf > (BIOS reports: AMD-k5-PR75 CPU, > Award Modular BIOS v4.51PG release > 03/03/1997S, > Award P&P BIOS extension v1.0A, > M/B I430VX-02071997C-00) > Timecounters on 1st PC: > Jun 14 09:58:28 volodya /kernel: Timecounter "i8254" frequency > 1193182 Hz > Jun 14 09:58:28 volodya /kernel: Timecounter "TSC" frequency > 90040208 Hz > Jun 14 14:55:40 volodya /kernel: Timecounter "i8254" frequency > 1193182 Hz > Jun 14 14:55:40 volodya /kernel: Timecounter "TSC" frequency > 90040168 Hz > Jun 14 14:58:47 volodya /kernel: Timecounter "i8254" frequency > 1193182 Hz > Jun 14 14:58:47 volodya /kernel: Timecounter "TSC" frequency > 90039940 Hz > Jun 15 09:20:31 volodya /kernel: Timecounter "i8254" frequency > 1193182 Hz > Jun 15 09:20:31 volodya /kernel: Timecounter "TSC" frequency > 90040205 Hz > Jun 15 17:25:56 volodya /kernel: Timecounter "i8254" frequency > 1193182 Hz > Jun 15 17:25:56 volodya /kernel: Timecounter "TSC" frequency > 90039919 Hz > Jun 16 09:22:18 volodya /kernel: Timecounter "i8254" frequency > 1193182 Hz > Jun 16 09:22:18 volodya /kernel: Timecounter "TSC" frequency > 90039896 Hz > Jun 17 09:46:25 volodya /kernel: Timecounter "i8254" frequency > 1193182 Hz > Jun 17 09:46:25 volodya /kernel: Timecounter "TSC" frequency > 90039989 Hz > Jun 17 09:52:11 volodya /kernel: Timecounter "i8254" frequency > 1193182 Hz > Jun 17 09:52:11 volodya /kernel: Timecounter "TSC" frequency > 90040111 Hz > On both was (on 1st remains) installed 3.2-R upgaded to STABLE. > Again, kernel clock latancy on both is about 55 min/hour (real 1 hour = > 5 min on PC). > APM disabled on both. > > -- > WBW Andy V. Oleynik > > (prime.net.ua's sysadmin) > > > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-bugs" in the body of the message > -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." FreeBSD -- It will take a long time before progress goes too far! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 5:50: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BF39315378 for ; Thu, 17 Jun 1999 05:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA60610; Thu, 17 Jun 1999 05:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from titanium.yy.ics.keio.ac.jp (titanium.yy.ics.keio.ac.jp [131.113.47.73]) by hub.freebsd.org (Postfix) with ESMTP id 2500B15507 for ; Thu, 17 Jun 1999 05:48:12 -0700 (PDT) (envelope-from sanpei@sanpei.org) Received: from lavender.yy.cs.keio.ac.jp (lavender.rad.cc.keio.ac.jp [131.113.16.115]) by titanium.yy.ics.keio.ac.jp (8.8.8+3.0Wbeta13/3.7W) with ESMTP id VAA09756; Thu, 17 Jun 1999 21:48:02 +0900 (JST) Received: (from sanpei@localhost) by lavender.yy.cs.keio.ac.jp (8.9.3/3.7W) id VAA03057; Thu, 17 Jun 1999 21:48:02 +0900 (JST) Message-Id: <199906171248.VAA03057@lavender.yy.cs.keio.ac.jp> Date: Thu, 17 Jun 1999 21:48:02 +0900 (JST) From: sanpei@sanpei.org Reply-To: sanpei@sanpei.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/12257: [Patch] sb(VoxWare) sound driver patch for x11amp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12257 >Category: i386 >Synopsis: [Patch] sb(VoxWare) sound driver patch for x11amp >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 17 05:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: MIHIRA Yoshiro >Release: FreeBSD 3.2-RELEASE i386 >Organization: Keio Univ. >Environment: 3.2-RELEASE with Ensoniq VIVO sound card >Description: Current sb sound driver (aka Voxware sound support code) do not play MP3 with x11amp-0.8. Because some patches are not merged from pcm changes in sys/i386/isa/snd/sound.c between 1.16 and 1.17 in CVS repository. I apply this chage to sb sound driver. I can play MP3 with x11amp. P.S. Some MP3 player, like mpg123 does not need this patch. But x11amp needs. >How-To-Repeat: >Fix: --- sys/i386/isa/sound/dmabuf.c.org Thu Jun 17 21:39:43 1999 +++ sys/i386/isa/sound/dmabuf.c Thu Jun 17 21:40:31 1999 @@ -663,6 +663,8 @@ return 0; break; +#define THE_REAL_SNDCTL_DSP_GETBLKSIZE _IOWR('P', 4, int) + case THE_REAL_SNDCTL_DSP_GETBLKSIZE: case SNDCTL_DSP_GETBLKSIZE: if (!(dmap_out->flags & DMA_ALLOC_DONE)) reorganize_buffers(dev, dmap_out); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 5:54:53 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 9347C1571E for ; Thu, 17 Jun 1999 05:54:48 -0700 (PDT) (envelope-from robert@cyrus.watson.org) Received: from fledge.watson.org (robert@fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.8.8/8.8.8) with SMTP id IAA04185; Thu, 17 Jun 1999 08:54:43 -0400 (EDT) (envelope-from robert@cyrus.watson.org) Date: Thu, 17 Jun 1999 08:54:42 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org Reply-To: Robert Watson To: Nick Hibma Cc: bugs@FreeBSD.ORG Subject: Re: X11 dependency in ports collection following X11 install with sysinstall In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I believe it is rebuilt at boot, but if you don't boot because you're already up and running and just adding a distribution later, then you have to reboot to pick up the library changes so that ports library detection (and presumably other things) work correctly. I guess I'm thinking more in terms of making the distributions be packages: i.e., part of the install procedure would be to automatically run ldconfig to pick up the changes. On Thu, 17 Jun 1999, Nick Hibma wrote: > Isn't the hints file rebuilt at boot in /etc/rc? Or does it just keep > adding hints to the file? > > Nick > > On Wed, 16 Jun 1999, Robert Watson wrote: > > > > > 3.2-RELEASE > > > > Instructions to reproduce: > > > > 1) install FreeBSD 3.2 sans X11 > > 2) reboot, now install X11 distribution using /stand/sysinstall > > 3) Now attempt to build something depending on X11 (say, tk81) > > > > The dependency check on X11 will fail because sysinstall did not run > > ldconfig to pick up library changes. The result is that the port will > > attempt to compile and install X11. Most packages automatically rerun > > ldconfig when they install; perhaps distributions should do the same? > > > > Thanks, > > > > > > Robert N M Watson > > > > robert@fledge.watson.org http://www.watson.org/~robert/ > > PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 > > > > Carnegie Mellon University http://www.cmu.edu/ > > TIS Labs at Network Associates, Inc. http://www.tis.com/ > > Safeport Network Services http://www.safeport.com/ > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-bugs" in the body of the message > > > > > > -- > ISIS/STA, T.P.270, Joint Research Centre, 21020 Ispra, Italy > > > Robert N M Watson robert@fledge.watson.org http://www.watson.org/~robert/ PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 Carnegie Mellon University http://www.cmu.edu/ TIS Labs at Network Associates, Inc. http://www.tis.com/ Safeport Network Services http://www.safeport.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 6:20: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C506150C0 for ; Thu, 17 Jun 1999 06:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA67811; Thu, 17 Jun 1999 06:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from argus.tfs.net (host1-63.birch.net [216.212.1.63]) by hub.freebsd.org (Postfix) with ESMTP id 22FF414FD7 for ; Thu, 17 Jun 1999 06:17:38 -0700 (PDT) (envelope-from jbryant@argus.tfs.net) Received: (from jbryant@localhost) by argus.tfs.net (8.9.3/8.8.5) id IAA29074; Thu, 17 Jun 1999 08:17:34 -0500 (CDT) Message-Id: <199906171317.IAA29074@argus.tfs.net> Date: Thu, 17 Jun 1999 08:17:34 -0500 (CDT) From: jbryant@tfs.net Reply-To: jbryant@tfs.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/12258: Fix for FM Radio tuner ioctl on WinTV-Theatre cards Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12258 >Category: kern >Synopsis: Tuning the FM radio on new -Theatre series cards from Hauppage requires that the entered frequency be 5.6 MHz low. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jun 17 06:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jim Bryant >Release: FreeBSD 4.0-CURRENT i386 >Organization: self >Environment: Any PCI machine with the Hauppauge WinTV Theatre card. 4.0-current, and probably all earlier versions. >Description: To tune a FM radio station on these cards, one must tune 5.6MHz low. For example, to get 98.90 [The Rock], you have to tune 93.30. The -Theatre series cards are new, and are using the 'next-generation' chips, and it may be likely that all future cards will require the fix presented here. >How-To-Repeat: See description. >Fix: Apply the following kludge to /usr/src/sys/pci/brooktree848.c, then add 'options BKTR_HAUPPAUGE_THEATRE_FM' to your kernel config. rebuild your kernel, and reboot. This fix should suffice until the driver maintainer wakes up and reads his two day old email and comes up with a more elegant solution. --- brooktree848.pre-hack.c Wed Jun 16 14:55:36 1999 +++ brooktree848.c Wed Jun 16 14:53:06 1999 @@ -3382,7 +3382,12 @@ */ if(bktr->bt848_tuner == ALPS_TSCH5) { + +#ifdef BKTR_HAUPPAUGE_THEATRE_FM + temp=((int)*(unsigned long *)arg + 3565) * 32; +#else temp=((int)*(unsigned long *)arg + 4125) * 32; +#endif temp=temp/100 + (temp%100 >= 50 ? 1 : 0) +RADIO_OFFSET; } else { temp=(int)*(unsigned long *)arg/5-407 +RADIO_OFFSET; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 6:30: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A87415512 for ; Thu, 17 Jun 1999 06:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA73475; Thu, 17 Jun 1999 06:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from smtp1.vnet.net (smtp1.vnet.net [166.82.1.31]) by hub.freebsd.org (Postfix) with ESMTP id D1C6C15093 for ; Thu, 17 Jun 1999 06:22:13 -0700 (PDT) (envelope-from rivers@dignus.com) Received: from dignus.com (ponds.vnet.net [166.82.177.48]) by smtp1.vnet.net (8.9.1a/8.9.1) with ESMTP id JAA26767 for ; Thu, 17 Jun 1999 09:22:41 -0400 (EDT) Received: from lakes.dignus.com (lakes.dignus.com [10.0.0.3]) by dignus.com (8.9.2/8.8.5) with ESMTP id JAA04196 for ; Thu, 17 Jun 1999 09:22:10 -0400 (EDT) Received: (from rivers@localhost) by lakes.dignus.com (8.9.2/8.6.9) id JAA15258; Thu, 17 Jun 1999 09:22:10 -0400 (EDT) Message-Id: <199906171322.JAA15258@lakes.dignus.com> Date: Thu, 17 Jun 1999 09:22:10 -0400 (EDT) From: Thomas David Rivers Reply-To: rivers@dignus.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/12259: SL/IP install doesn't work due to ifconfig sl0 problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12259 >Category: bin >Synopsis: SL/IP install doesn't work due to ifconfig sl0 problem >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 17 06:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Thomas David Rivers >Release: FreeBSD 3.1-RELEASE i386 >Organization: Dignus, LLC >Environment: 3.1R and 3.2R installation via direct SL/IP line. >Description: There is a bug in the ifconfig of the slip interface. If you slattach a slip unit to a tty _before_ doing the `ifconfig slX', the ifconfig will fail with EEXISTS. (see PR kern/12251 for more information.) Unfortunately, that's the order sysinstall takes for the SL/IP connection. Doing the ifconfig followed by the slattach should work. >How-To-Repeat: Try to do a SL/IP install. >Fix: The following is the context diff to 3.2-R's /usr/src/release/sysinstall/network.c to move the slattach after the ifconfig. That should be an adequate "work-around" until some solution for the kernel bug is found. *** network.c.ori Sat Mar 13 05:41:29 1999 --- network.c Thu Jun 17 08:23:12 1999 *************** *** 82,88 **** networkInitialized = TRUE; return TRUE; } ! else if (!strncmp("sl", dev->name, 2)) { /* SLIP? */ char *val; char attach[256]; --- 82,105 ---- networkInitialized = TRUE; return TRUE; } ! ! ! snprintf(ifconfig, 255, "%s%s", VAR_IFCONFIG, dev->name); ! cp = variable_get(ifconfig); ! if (!cp) { ! msgConfirm("The %s device is not configured. You will need to do so\n" ! "in the Networking configuration menu before proceeding.", dev->name); ! return FALSE; ! } ! msgNotify("ifconfig %s %s", dev->name, cp); ! i = vsystem("ifconfig %s %s", dev->name, cp); ! if (i) { ! msgConfirm("Unable to configure the %s interface!\n" ! "This installation method cannot be used.", dev->name); ! return FALSE; ! } ! ! if (!strncmp("sl", dev->name, 2)) { /* SLIP? */ char *val; char attach[256]; *************** *** 114,134 **** "the command is correct and try this operation again."); return FALSE; } - } - - snprintf(ifconfig, 255, "%s%s", VAR_IFCONFIG, dev->name); - cp = variable_get(ifconfig); - if (!cp) { - msgConfirm("The %s device is not configured. You will need to do so\n" - "in the Networking configuration menu before proceeding.", dev->name); - return FALSE; - } - msgNotify("ifconfig %s %s", dev->name, cp); - i = vsystem("ifconfig %s %s", dev->name, cp); - if (i) { - msgConfirm("Unable to configure the %s interface!\n" - "This installation method cannot be used.", dev->name); - return FALSE; } rp = variable_get(VAR_GATEWAY); --- 131,136 ---- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 7:51: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from brooks.na-cp.rnp.br (brooks.na-cp.rnp.br [200.136.100.19]) by hub.freebsd.org (Postfix) with ESMTP id CFD4914DEA; Thu, 17 Jun 1999 07:50:44 -0700 (PDT) (envelope-from jean@na-cp.rnp.br) Received: from brooks (jean@brooks.na-cp.rnp.br [200.136.100.19]) by brooks.na-cp.rnp.br (8.9.2/8.9.2) with SMTP id LAA16242; Thu, 17 Jun 1999 11:50:22 -0300 (EST) Date: Thu, 17 Jun 1999 11:50:19 -0300 (EST) From: Jean Carlo Faustino X-Sender: jean@brooks To: freebsd-bugs@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Cc: Jean Carlo Faustino Subject: IPFW and y2k Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I would like to know if IPFW is "y2k compliant". Do I need to upgrade it or all the versions are compliant? Thanks in advanced. Jean Carlo Faustino Operacoes em Rede - SSO Rede Nacional de Pesquisa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 9: 0: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E67E1152EE for ; Thu, 17 Jun 1999 09:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA58240; Thu, 17 Jun 1999 09:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from tla.org (unknown [199.97.241.133]) by hub.freebsd.org (Postfix) with ESMTP id BC664150CE for ; Thu, 17 Jun 1999 08:50:07 -0700 (PDT) (envelope-from ji@tla.org) Received: (from ji@localhost) by tla.org (8.9.3/8.8.5) id LAA02011; Thu, 17 Jun 1999 11:50:08 -0400 (EDT) Message-Id: <199906171550.LAA02011@tla.org> Date: Thu, 17 Jun 1999 11:50:08 -0400 (EDT) From: ji@research.att.com Reply-To: ji@research.att.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/12262: pcm sound driver with SB16pnp does not work on 3.2 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12262 >Category: kern >Synopsis: pcm sound driver with SB16pnp does not appear to work on 3.2 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 17 09:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: John "Heldenprogrammer" Ioannidis >Release: FreeBSD 3.2-STABLE i386 >Organization: AT&T Labs - Research >Environment: FreeBSD 3.2-STABLE, cvsup'ed on 6/15 Relevant config file lines: controller isa0 controller pnp0 ... device pcm0 at isa? port ? tty irq 10 drq 1 flags 0x0 Relevant kernel boot messages: Probing for PnP devices: CSN 1 Vendor ID: CTL00f0 [0xf0008c0e] Serial 0xffffffff Comp ID: PNPb02f [0x2fb0d041] pcm1 (SB16pnp sn 0xffffffff) at 0x240-0x24f irq 10 drq 1 flags 0x10 on isa ... pcm0 not probed due to drq conflict with pcm1 at 1 Relevant hardware details: Pentium 166, PCI bus, Soundblaster 16 on ISA slot. No IRQ or DRQ conflicts. >Description: I was running 2.2.8-STABLE until three days ago. I moved to 3.2, first by upgrading from the CD, then cvsup'ing and doing a make buildworld/ make installworld from /usr/src, and rebuilding the kernel. I configured the pcm driver just like I had it in 2.2.8. Although I get no console messages when accessing /dev/dsp1 (by programs such as mpg123 or amp), no sound comes from the speakers. Yes, I've checked, the speakers are actually connected! For the record, I can't even get the original (snd) drivers to recognize the card. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 10:50: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2130315101 for ; Thu, 17 Jun 1999 10:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA67731; Thu, 17 Jun 1999 10:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dominik.saargate.de (domi.saargate.de [212.88.132.246]) by hub.freebsd.org (Postfix) with ESMTP id C427015101 for ; Thu, 17 Jun 1999 10:47:57 -0700 (PDT) (envelope-from domi@saargate.de) Received: from localhost (localhost [127.0.0.1]) by dominik.saargate.de (8.9.3/8.8.7) with ESMTP id GAA02916 for ; Thu, 17 Jun 1999 06:49:52 +0200 (CEST) (envelope-from domi@saargate.de) Message-Id: Date: Thu, 17 Jun 1999 06:49:52 +0200 (CEST) From: Dominik Brettnacher To: FreeBSD-gnats-submit@freebsd.org Subject: bin/12263: "more" problems with long filenames Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12263 >Category: bin >Synopsis: "more" problems with long filenames >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 17 10:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dominik Brettnacher >Release: FreeBSD 3.2-STABLE i386 >Organization: >Environment: >Description: When using "more " with very long names (longer than your screen width), "more" shows more than one status line on the screen but it behaves as if there were only one status line. That gives some odd effects e.g when scrolling back or redrawing the screen with Ctrl-L. Another problem is that the first line displayed on the screen is already scrolled out. >How-To-Repeat: Use "more " with a filename that consists or more characters than your terminal can display in one line. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 12: 4: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp11.bellglobal.com (smtp11.bellglobal.com [204.101.251.53]) by hub.freebsd.org (Postfix) with ESMTP id EB72615214 for ; Thu, 17 Jun 1999 12:04:06 -0700 (PDT) (envelope-from vanderh@ecf.toronto.edu) Received: from localhost.nowhere (ppp18389.on.bellglobal.com [206.172.130.69]) by smtp11.bellglobal.com (8.8.5/8.8.5) with ESMTP id PAA20282; Thu, 17 Jun 1999 15:06:47 -0400 (EDT) Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id PAA01264; Thu, 17 Jun 1999 15:04:50 -0400 (EDT) (envelope-from tim) Date: Thu, 17 Jun 1999 15:04:49 -0400 From: Tim Vanderhoek To: Ilia Chipitsine Cc: bugs@FreeBSD.ORG Subject: Re: tip bug Message-ID: <19990617150449.B1229@mad> References: <19990615203011.A83078@mad> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: ; from Ilia Chipitsine on Tue, Jun 15, 1999 at 09:10:19PM -0400 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Jun 15, 1999 at 09:10:19PM -0400, Ilia Chipitsine wrote: > > # cgilh 189233 > # > # > > it treats this like a phone number Ya, I'd say that's a bug. Since in your original message you offered to (try and) fix any bugs you found, I'm going to take you up on that. Patches welcome and expected. :) You may find it worthwhile to know how to use the cvsweb interface. See http://www.FreeBSD.org/cgi/cvsweb.cgi/. -- This is my .signature which gets appended to the end of my messages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 13:10: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A82FD1560D for ; Thu, 17 Jun 1999 13:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA86851; Thu, 17 Jun 1999 13:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 17 Jun 1999 13:10:02 -0700 (PDT) Message-Id: <199906172010.NAA86851@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: kern/12247: userlevel program let kernel hang Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/12247; it has been noted by GNATS. From: Bruce Evans To: dirk.meyer@dinoex.sub.org, FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: kern/12247: userlevel program let kernel hang Date: Fri, 18 Jun 1999 06:00:46 +1000 >>Description: > > while debugging a userlevel program > The user can hang the system, > no other processes seem to work. Try this fix. tsleep()'s return codes are poorly documented and were misinterpreted in lf_setlock(). tsleep() can return 0 if the process was restarted by a debugger, `so tsleep() != 0' is not the condition for the lock having been removed from the blocked list. Leaving the lock on the list corrupts the list. In your program, the corrupt list happens to be circular and this caused an endless loop in lf_wakelock() when the list is traversed. Bruce diff -c2 kern_lockf.c~ kern_lockf.c *** kern_lockf.c~ Sun May 9 20:42:39 1999 --- kern_lockf.c Fri Jun 18 05:37:00 1999 *************** *** 273,290 **** } #endif /* LOCKF_DEBUG */ ! if ((error = tsleep((caddr_t)lock, priority, lockstr, 0))) { ! /* ! * We may have been awakened by a signal (in ! * which case we must remove ourselves from the ! * blocked list) and/or by another process ! * releasing a lock (in which case we have already ! * been removed from the blocked list and our ! * lf_next field set to NOLOCKF). ! */ ! if (lock->lf_next) ! TAILQ_REMOVE(&lock->lf_next->lf_blkhd, lock, ! lf_block); ! free(lock, M_LOCKF); ! return (error); } } --- 273,292 ---- } #endif /* LOCKF_DEBUG */ ! error = tsleep((caddr_t)lock, priority, lockstr, 0); ! /* ! * We may have been awakened by a signal and/or by a ! * debugger continuing us (in which cases we must remove ! * ourselves from the blocked list) and/or by another ! * process releasing a lock (in which case we have ! * already been removed from the blocked list and our ! * lf_next field set to NOLOCKF). ! */ ! if (lock->lf_next) { ! TAILQ_REMOVE(&lock->lf_next->lf_blkhd, lock, lf_block); ! lock->lf_next = NOLOCKF; ! } ! if (error) { ! free(lock, M_LOCKF); ! return (error); } } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 14:40:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 147A214D2E for ; Thu, 17 Jun 1999 14:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA96567; Thu, 17 Jun 1999 14:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id B695B14D21; Thu, 17 Jun 1999 14:39:05 -0700 (PDT) Message-Id: <19990617213905.B695B14D21@hub.freebsd.org> Date: Thu, 17 Jun 1999 14:39:05 -0700 (PDT) From: pkunk@i.am To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/12265: using routing socket to find default route when there is none panics kernel with rtfree Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12265 >Category: kern >Synopsis: using routing socket to find default route when there is none panics kernel with rtfree >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 17 14:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Lawrence D. Contam Jr. >Release: FreeBSD 3.1 >Organization: Hewlett Packard >Environment: FreeBSD fury.engr.telegra.com 3.1-RELEASE FreeBSD 3.1-RELEASE #0: Sun Jun 13 19:30:31 PDT 1999 root@fury.engr.telegra.com:/usr/src/sys/compile/FURY i386 >Description: When using a piece of C code I put together for our custom application under PicoBSD, I discovered that the kernel panics when the machine has no default route and this code tries to find it, using the routing socket (socket(AF_ROUTE, SOCK_RAW, 0)). Further research found the same thing happens on my full FreeBSD 3.1 machine. I know route(8) doesnt cause a panic when you fetch the default route (route get default) and there is none, so maybe my code is broken.. but should broken code simply setting a RTM_GET to the routing socket panic the kernel? >How-To-Repeat: Here's the sniplet of code that causes the panic. Delete your default route and run it. // // macros and defines for get_rtaddrs // #define RSOCK_BUFLEN (sizeof(struct rt_msghdr) + 512) #define RSOCK_SEQ 6699 #define RSOCK_ROUNDUP(a, size) (((a) & ((size)-1)) ? (1 + ((a) | ((size) -1))) : (a)) #define NEXT_SA(ap) ap = (struct sockaddr *) ((caddr_t) ap + (ap->sa_len ? RSOCK_ROUNDUP(ap->sa_len, sizeof(u_long)) : sizeof(u_long))) void get_rtaddrs(int addrs, struct sockaddr *sa, struct sockaddr **rti_info) { int i; for(i = 0; i < RTAX_MAX; i++) { if(addrs & (1 << i)) { rti_info[i] = sa; NEXT_SA(sa); } else rti_info[i] = NULL; } } int GetDefaultRoute(struct sockaddr * psa) { int sockfd, retval = 0; char *buf; pid_t pid; ssize_t n; struct rt_msghdr *rtm; struct sockaddr *sa, *rti_info[RTAX_MAX]; struct sockaddr_in *sin; if( (sockfd = socket(AF_ROUTE, SOCK_RAW, 0)) == -1) { errx(1,"socket"); } buf = (char *)calloc(1, RSOCK_BUFLEN); rtm = (struct rt_msghdr *)buf; rtm->rtm_msglen = sizeof(struct rt_msghdr) + sizeof(struct sockaddr_in); rtm->rtm_version = RTM_VERSION; rtm->rtm_type = RTM_GET; rtm->rtm_addrs = RTA_DST; rtm->rtm_pid = pid = getpid(); rtm->rtm_seq = RSOCK_SEQ; sin = (struct sockaddr_in *)(rtm + 1); memset(sin,0,sizeof(struct sockaddr_in)); sin->sin_len = sizeof(struct sockaddr_in); sin->sin_family = AF_INET; // // default route is 0.0.0.0, so just get the route to that. // write(sockfd, rtm, rtm->rtm_msglen); do { n = read(sockfd, rtm, RSOCK_BUFLEN); dprintf(5,"read %d bytes from routing socket\n",n); } while(rtm->rtm_type != RTM_GET || rtm->rtm_seq != RSOCK_SEQ || rtm->rtm_pid != pid); rtm = (struct rt_msghdr *) buf; sa = (struct sockaddr *)(rtm + 1); get_rtaddrs(rtm->rtm_addrs, sa, rti_info); // // we're only interested in gateway! // if((sa = rti_info[RTAX_GATEWAY]) != NULL) { // // found it... copy to caller // memcpy(psa, sa, sizeof(struct sockaddr)); retval = 1; } // // clean up and get out // free(buf); close(sockfd); return(retval); } >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 16:50: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 55E6314BD0 for ; Thu, 17 Jun 1999 16:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA07780; Thu, 17 Jun 1999 16:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 17 Jun 1999 16:50:02 -0700 (PDT) Message-Id: <199906172350.QAA07780@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brian Somers Subject: Re: bin/12225: Incompletness of radius request in ppp Reply-To: Brian Somers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/12225; it has been noted by GNATS. From: Brian Somers To: bamby@marka.net.ua Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/12225: Incompletness of radius request in ppp Date: Fri, 18 Jun 1999 00:30:27 +0100 > > >Number: 12225 > >Category: bin > >Synopsis: incompletness of radius request in /usr/sbin/ppp [.....] > Current implementation of /usr/sbin/ppp creates malformed radius request > with NAS identifier missing. Merit AAA Radius Server refuses to process > such a request. The Merit AAA Radius Server is broken. Ppps requests are not malformed. From the rfc: An Access-Request MUST contain a User-Name attribute. It SHOULD contain either a NAS-IP-Address attribute or NAS-Identifier attribute (or both, although that is not recommended). It MUST contain either a User-Password attribute or CHAP-Password attribute. It SHOULD contain a NAS-Port or NAS-Port-Type attribute or both unless the type of access being requested does not involve a port or the NAS does not distinguish among its ports. While I have no problem supplying the id or address, the port is a bit more of a problem. I don't really think ttyslot() is always appropriate. Ppp may not be in -direct mode, or it may have been passed a link and dropped the original one (see bundle_setsid()). Maybe the best way is to add a field to ``struct device'' and have tty_Create() assign that field (if p->fd == 0) while other devices leave it at -1. When it's time to send a request, ppp can pass this field as the NAS-Port only if there's only one link and the field != -1. Of course the ``Merit AAA Radius Server'' should be fixed, or alternatively, you could use the Cistron server ;^P -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 18:40: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 05D8C14D0F for ; Thu, 17 Jun 1999 18:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA19272; Thu, 17 Jun 1999 18:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 17 Jun 1999 18:40:02 -0700 (PDT) Message-Id: <199906180140.SAA19272@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Yeasah Pell Subject: Re: kern/8596: panic: page fault while using ping's record-route option Reply-To: Yeasah Pell Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/8596; it has been noted by GNATS. From: Yeasah Pell To: freebsd-gnats-submit@freebsd.org, frank@exit.com Cc: Subject: Re: kern/8596: panic: page fault while using ping's record-route option Date: Thu, 17 Jun 1999 21:32:04 -0400 I have observed this (repeatably) on FreeBSD 3.2-RELEASE on a 64MB Pentium 133. It fails on ed0, but succeeds on de0. (ed0 is an "external" interface to a cable modem, while de0 is a small LAN). 'ping -R' to any non-local address will panic. There are NAT and firewall rules involved, as well; a variation on the rc.firewall 'simple' type with ed0 as the public interface. ------- dmesg ------- Copyright (c) 1992-1999 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 3.2-RELEASE #4: Thu Jun 10 19:08:36 EDT 1999 root@zorak.d00d.net:/usr/src/sys/compile/ZORAK Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 133637059 Hz CPU: Pentium/P54C (133.64-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x52c Stepping=12 Features=0x1bf real memory = 67108864 (65536K bytes) avail memory = 62783488 (61312K bytes) Preloaded elf kernel "kernel" at 0xc0260000. Probing for devices on PCI bus 0: chip0: rev 0x01 on pci0.0.0 chip1: rev 0x01 on pci0.7.0 ide_pci0: rev 0x01 on pci0.7.1 chip2: rev 0x01 on pci0.7.3 de0: rev 0x11 int a irq 10 on pci0.17.0 de0: 21041 [10Mb/s] pass 1.1 de0: address 00:20:18:50:02:f5 Probing for PnP devices: Probing for devices on the ISA bus: sc0 on isa sc0: MDA/Hercules <16 virtual consoles, flags=0x0> ed0 at 0x240-0x25f irq 5 on isa ed0: address 00:40:05:1b:b1:22, type NE2000 (16 bit) atkbdc0 at 0x60-0x6f on motherboard atkbd0 irq 1 on isa psm0 not found sio0 at 0x3f8-0x3ff irq 4 flags 0x10 on isa sio0: type 16550A wdc0 at 0x1f0-0x1f7 irq 14 on isa wdc0: unit 0 (wd0): wd0: 2015MB (4127760 sectors), 4095 cyls, 16 heads, 63 S/T, 512 B/S fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in ppc0 at 0x378 irq 7 flags 0x40 on isa ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode ppb0: IEEE1284 device found /NIBBLE Probing for PnP devices on ppbus0: ppbus0: HP ENHANCED PCL5,PJL lpt0: on ppbus 0 lpt0: Interrupt-driven port lpt0: on ppbus 0 lpt0: Interrupt-driven port vga0 at 0x3b0-0x3bb maddr 0xb0000 msize 32768 on isa npx0 on motherboard npx0: INT 16 interface de0: enabling 10baseT port Intel Pentium detected, installing workaround for F00F bug IP packet filtering initialized, divert enabled, rule-based forwarding enabled, logging disabled DUMMYNET initialized (990504) changing root device to wd0s1a WARNING: / was not properly dismounted de0: enabling 10baseT port To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 19: 4:52 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from ASPerth1.allsolutions.com.au (unknown [203.108.142.106]) by hub.freebsd.org (Postfix) with SMTP id 8ED3B14D68 for ; Thu, 17 Jun 1999 19:04:43 -0700 (PDT) (envelope-from David_May@allsolutions.com.au) Received: by ASPerth1.allsolutions.com.au(Lotus SMTP MTA v1.2 (600.1 3-26-1998)) id 48256794.000B8E1E ; Fri, 18 Jun 1999 10:06:12 +0800 X-Lotus-FromDomain: ALL SOLUTIONS From: David_May@allsolutions.com.au To: freebsd-bugs@freebsd.org Message-ID: <48256794.000A8122.00@ASPerth1.allsolutions.com.au> Date: Fri, 18 Jun 1999 10:06:09 +0800 Subject: co does not lock third verion if two versions already locked by same user. Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am forwarding this to freebsd-bugs as it is also FreeBSD related (well at least I mentioned FreeBSD) and I am unsure if the rcs-bugs mailing list is active because I have got no acknowledgement since I originally posted to it. ---------------------- Forwarded by David May/All Solutions on 18/06/99 10:01 --------------------------- From: David May on 09/06/99 12:18 To: rcs-bugs@cs.purdue.edu Subject: co does not lock third verion if two versions already locked by same user. I believe we have found a serious bug (or an undocumented feature in RCS 5.7). I have just installed RCS verion 5.7 on our DEC Alpha and IBM RS6000 machines. Installed from source code downloaded from GNU master site, compiled with vendor supplied C compilers under DEC OSF1 V3.2 and IBM AIX 4.1. I also reproduced the same problem under FreeBSD 2.2.8 using the supplied RCS version 5.7 binaries from Walnut Creek CD-ROM. We find the following steps reproduce the problem on all the specified environments: 1. Create three versions of file test.c: versions 1.1, 2.1 and 3.1. 2. A user checks out two of of the versions with locks using the following commands: co -l1 test.c co -l2 test.c Result: RCS successfully checks out and locks versions 1.1 and 2.1 of file test.c. 3. The same user then attempts to check out and lock version 3.1 with command co -l3 test.c Here is the result: (david@rs6k)$co -l3 test.c test.c,v --> test.c co: test.c,v: multiple revisions locked by david; please specify one revision 3.1 (locked) writable test.c exists; remove it? [ny](n): y co: test.c,v: warning: You now have 3 locks. done (david@rs6k)$rlog test.c RCS file: test.c,v Working file: test.c head: 3.1 branch: locks: strict david: 2.1 david: 1.1 access list: symbolic names: keyword substitution: kv total revisions: 3; selected revisions: 3 description: Test. ---------------------------- revision 3.1 date: 1999/06/09 08:38:05; author: david; state: Exp; lines: +0 -0 Test. ---------------------------- revision 2.1 locked by: david; date: 1999/06/09 08:37:47; author: david; state: Exp; lines: +0 -0 Test. ---------------------------- revision 1.1 locked by: david; date: 1999/06/09 08:36:53; author: david; state: Exp; Initial revision =========================================================================== == 4. I believe that the co command should have allowed the user to check out version 3.1 of file test.c - this was the behaviour observed with our previous RCS software (version and source unknown - maybe version 5.5). Notes: 1. The error does not occur if a different user checks out the file (with a lock). 2. The user can lock the file with command "rcs -l3 test.c" and then check out the file with command "co -r3 test.c". To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 19:20: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DF313154E6 for ; Thu, 17 Jun 1999 19:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA22483; Thu, 17 Jun 1999 19:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nsx.kgc.co.jp (nsx.kgc.co.jp [210.226.77.146]) by hub.freebsd.org (Postfix) with SMTP id BCD7E14E14 for ; Thu, 17 Jun 1999 19:18:45 -0700 (PDT) (envelope-from candy@kgc.co.jp) Received: (qmail 26310 invoked from network); 18 Jun 1999 11:18:44 +0900 Received: from ssm.kgc.co.jp (@210.226.77.148) by nsx.kgc.co.jp with SMTP; 18 Jun 1999 11:18:44 +0900 Received: (qmail 74886 invoked from network); 18 Jun 1999 11:18:44 +0900 Received: from xxx.kgc.co.jp (172.31.2.3) by ssm.kgc.co.jp with SMTP; 18 Jun 1999 11:18:44 +0900 Received: by xxx.kgc.co.jp (8.9.3/3.3W8:95062916) id LAA74670; Fri, 18 Jun 1999 11:18:43 +0900 (JST) Message-Id: <199906180218.LAA74670@xxx.kgc.co.jp> Date: Fri, 18 Jun 1999 11:18:43 +0900 (JST) From: candy Reply-To: candy@kgc.co.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/12268: weekly/catman will not work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12268 >Category: misc >Synopsis: weekly/catman will not 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: Thu Jun 17 19:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: candy >Release: FreeBSD 3.2-RELEASE i386 >Organization: - >Environment: >Description: Enabling /etc/periodic/weekly/330.catman feature will fail because $MANPATH is empty there. >How-To-Repeat: Comment out ``exit 0'' line in /etc/periodic/weekly/330.catman then wait until next weekend :) >Fix: Define MANPATH appropriately. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 23:10:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (Postfix) with ESMTP id B876314E2F; Thu, 17 Jun 1999 23:10:15 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id HAA77665; Fri, 18 Jun 1999 07:02:11 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (localhost [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id HAA47807; Fri, 18 Jun 1999 07:01:22 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199906180601.HAA47807@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Nick Hibma Cc: brian@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/12216: rwhod triggers dial on demand (patch) In-reply-to: Your message of "Wed, 16 Jun 1999 17:56:04 +0200." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 18 Jun 1999 07:01:22 +0100 From: Brian Somers Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Eih, are you Dutch by any chance? > > Nick Umm, no. Why do you ask ? (did I miss a joke :-) > On Wed, 16 Jun 1999 brian@FreeBSD.ORG wrote: > > > Synopsis: rwhod triggers dial on demand (patch) > > > > Responsible-Changed-From-To: freebsd-bugs->brian > > Responsible-Changed-By: brian > > Responsible-Changed-When: Wed Jun 16 08:38:47 PDT 1999 > > Responsible-Changed-Why: > > This looks like a worthwhile change :-) > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-bugs" in the body of the message > > > > > > -- > ISIS/STA, T.P.270, Joint Research Centre, 21020 Ispra, Italy > > -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Jun 17 23:20: 8 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CBA0314E2F for ; Thu, 17 Jun 1999 23:20:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA45974; Thu, 17 Jun 1999 23:20:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 17 Jun 1999 23:20:06 -0700 (PDT) Message-Id: <199906180620.XAA45974@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Subject: Re: kern/12247: userlevel program let kernel hang Reply-To: dirk.meyer@dinoex.sub.org (Dirk Meyer) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/12247; it has been noted by GNATS. From: dirk.meyer@dinoex.sub.org (Dirk Meyer) To: bug-followup@FreeBSD.org, bde@zeta.org.au (Bruce Evans) Cc: Subject: Re: kern/12247: userlevel program let kernel hang Date: Fri, 18 Jun 1999 06:44:57 +0200 Bruce Evans wrote:, > >>Description: > > > > while debugging a userlevel program > > The user can hang the system, > > no other processes seem to work. > > Try this fix. tsleep()'s return codes are poorly documented and were > misinterpreted in lf_setlock(). tsleep() can return 0 if the process > was restarted by a debugger, `so tsleep() != 0' is not the condition for > the lock having been removed from the blocked list. Leaving the lock > on the list corrupts the list. In your program, the corrupt list > happens to be circular and this caused an endless loop in lf_wakelock() > when the list is traversed. Fine this fix is runing here now. It solve the stated problem. Only if gdb try to exit in the second time, It keep hangin and kann be killed with the debugged application will terminate too. But the system keep runninng as intended. We could close this PR. In my opinion, the hanging gdb might be a gdb bug. kind regards Dirk -- Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany -- Tel. +49-5606-6512 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 2:40: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 77ADD14C9C for ; Fri, 18 Jun 1999 02:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA70791; Fri, 18 Jun 1999 02:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 18 Jun 1999 02:40:04 -0700 (PDT) Message-Id: <199906180940.CAA70791@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: kern/12247: userlevel program let kernel hang Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/12247; it has been noted by GNATS. From: Bruce Evans To: bde@zeta.org.au, bug-followup@FreeBSD.org, dirk.meyer@dinoex.sub.org Cc: Subject: Re: kern/12247: userlevel program let kernel hang Date: Fri, 18 Jun 1999 19:33:33 +1000 >Fine this fix is runing here now. >It solve the stated problem. > >Only if gdb try to exit in the second time, >It keep hangin and kann be killed with >the debugged application will terminate too. >But the system keep runninng as intended. > >We could close this PR. >In my opinion, the hanging gdb might be a gdb bug. I think it is a bug in PT_ATTACH or PT_DETACH, since gdb hangs waiting for the "hangme" process after it (gdb) issues PT_ATTACH the second time. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 6:40: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 745241538D for ; Fri, 18 Jun 1999 06:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA95586; Fri, 18 Jun 1999 06:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id B522615378; Fri, 18 Jun 1999 06:37:13 -0700 (PDT) Message-Id: <19990618133713.B522615378@hub.freebsd.org> Date: Fri, 18 Jun 1999 06:37:13 -0700 (PDT) From: jau@iki.fi To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/12272: The ctype locales print an error message at login when LC_CTYPE is set. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12272 >Category: bin >Synopsis: The ctype locales print an error message at login when LC_CTYPE is set. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 18 06:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jukka A. Ukkonen >Release: 3.1 >Organization: SysOpen Group >Environment: FreeBSD 3.1 >Description: When using tcsh as the login shell the ctype locales pointlessly print an error message at login time if LC_CTYPE is set. This is extremely irritating when trying to transfer files using rcp to a system which suffers from this problem. The same problem has been there at least since version 2.2.1 through all the revisions to the current 3.1. >How-To-Repeat: Set tcsh as your login shell. Put the line "setenv LC_CTYPE fi_FI.ISO_8859-1" to your .tcshrc file. Try first rsh to the system where you did these changes. You should see a garbled error message. Then try rcp something to the system. This should completely fail due to the way rcp handles unexpected output from the peer. >Fix: Not known yet, but I definitely let you know if/when I find one. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 7:40: 6 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EEBE14FCB for ; Fri, 18 Jun 1999 07:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA67674; Fri, 18 Jun 1999 07:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id E1CC814CA9; Fri, 18 Jun 1999 07:31:59 -0700 (PDT) Message-Id: <19990618143159.E1CC814CA9@hub.freebsd.org> Date: Fri, 18 Jun 1999 07:31:59 -0700 (PDT) From: ikappa@essex.ac.uk To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/12274: cd mount problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12274 >Category: kern >Synopsis: cd mount problem >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 18 07:40:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Giannis >Release: 3.2 >Organization: >Environment: FreeBSD pyrinas.essex.ac.uk 3.2-RELEASE FreeBSD 3.2-RELEASE #78: FRI JUN 18 08:01:57 GMT 1999 root@pyrinas.essex.ac.uk:/usr/src/sys/compile/PYRINAS i386 >Description: The whole system hangs up when I try to mount the CDROM. I think this is a serious problem. The CDROM drive is an atapi and is recognized as CDA46802/FI.15000 . At boot time it says 5 times atapi0.1 unknown phase. It used to work well before 3.1 RELEASE. The manufacturer is AZTECH. >How-To-Repeat: mount /cdrom >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 7:50: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C2541543D for ; Fri, 18 Jun 1999 07:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA68254; Fri, 18 Jun 1999 07:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from amalthea.watson.org (adsl-151-200-24-159.bellatlantic.net [151.200.24.159]) by hub.freebsd.org (Postfix) with ESMTP id 4506814CA9 for ; Fri, 18 Jun 1999 07:45:44 -0700 (PDT) (envelope-from robert@amalthea.watson.org) Received: (from robert@localhost) by amalthea.watson.org (8.9.3/8.9.3) id KAA20824; Fri, 18 Jun 1999 10:45:19 -0400 (EDT) (envelope-from robert) Message-Id: <199906181445.KAA20824@amalthea.watson.org> Date: Fri, 18 Jun 1999 10:45:19 -0400 (EDT) From: robert@fledge.watson.org Reply-To: robert+freebsd@cyrus.watson.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/12275: lnc support for AMD home phone line networking chipset Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12275 >Category: kern >Synopsis: Patches to add support for new chipset >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jun 18 07:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Robert Watson >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: 4.0-CURRENT >Description: AMD has released a chipset that supports ethernet over phone wire at about a megabit. Diamond and others have cards based on this; I had to twiddle some registers and add probe lines for the chipset to get it to work. >How-To-Repeat: >Fix: Please add a comment to the top of if_lnc.c indicating that any questions about support for this chipset may be directed to me at robert+freebsd@cyrus.watson.org Apparently the card suffers from interference from power lines running near phone lines; I'm not sure how much of this is a product of my local configuration. I'm currently adding more code to a local copy of the driver to try and switch the power mode and speed of the card to see if that helps, and am interested in any feedback that might help improve support for this chipset. Thanks. Patches: Index: if_lnc.c =================================================================== RCS file: /home/ncvs/src/sys/i386/isa/if_lnc.c,v retrieving revision 1.60 diff -u -r1.60 if_lnc.c --- if_lnc.c 1999/05/09 23:24:47 1.60 +++ if_lnc.c 1999/06/03 15:27:03 @@ -151,6 +151,7 @@ "PCnet-PCI II", "PCnet-FAST", "PCnet-FAST+", + "PCnet-Home", }; static void lnc_setladrf __P((struct lnc_softc *sc)); @@ -1192,7 +1193,13 @@ return (PCnet_FAST); case Am79C972: return (PCnet_FASTplus); + case Am79C978: + return (PCnet_Home); default: + if (bootverbose) + printf("pcnet_probe: unknown PCnet " + "type (%lx)\n", chip_id & + PART_MASK); break; } } @@ -1360,6 +1367,9 @@ } } else { + if (bootverbose) + printf("lnc_attach_ne2100_pci: sc->nic.ic = " + "%d, too low\n", sc->nic.ident); free(sc, M_DEVBUF); sc = NULL; } @@ -1490,6 +1500,24 @@ sc->pending_transmits = 0; /* Give the LANCE the physical address of the initialisation block */ + + if (sc->nic.ic == PCnet_Home) { + u_short media; + /* Set PHY_SEL to HomeRun */ +#ifdef DIAGNOSTIC + printf("lnc_init: setting PCnet_Home-specific register\n"); +#endif + media = read_bcr(sc, BCR49); +#ifdef DIAGNOSTIC + printf("lnc_init: old value %u\n", (u_int) media); +#endif + media &= ~3; + media |= 1; +#ifdef DIAGNOSTIC + printf("lnc_init: new value %u\n", (u_int) media); +#endif + write_bcr(sc, BCR49, media); + } write_csr(sc, CSR1, kvtop(sc->init_block)); write_csr(sc, CSR2, (kvtop(sc->init_block) >> 16) & 0xff); Index: if_lnc.h =================================================================== RCS file: /home/ncvs/src/sys/i386/isa/if_lnc.h,v retrieving revision 1.10 diff -u -r1.10 if_lnc.h --- if_lnc.h 1999/01/31 00:56:32 1.10 +++ if_lnc.h 1999/05/30 05:35:55 @@ -107,6 +107,7 @@ #define PCnet_PCI_II 8 /* Am79C970A */ #define PCnet_FAST 9 /* Am79C971 */ #define PCnet_FASTplus 10 /* Am79C972 */ +#define PCnet_Home 11 /* Am79C978 */ /* CSR88-89: Chip ID masks */ #define AMD_MASK 0x003 @@ -119,6 +120,7 @@ #define Am79C970A 0x2621 #define Am79C971 0x2623 #define Am79C972 0x2624 +#define Am79C978 0x2626 /* Board types */ #define UNKNOWN 0 Index: ic/Am7990.h =================================================================== RCS file: /home/ncvs/src/sys/i386/isa/ic/Am7990.h,v retrieving revision 1.2 diff -u -r1.2 Am7990.h --- Am7990.h 1995/05/30 08:03:30 1.2 +++ Am7990.h 1999/05/30 21:02:47 @@ -21,6 +21,7 @@ #define CSR1 1 #define CSR2 2 #define CSR3 3 +#define BCR49 49 #define CSR88 88 #define CSR89 89 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 11: 0: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BA2FB14C9C for ; Fri, 18 Jun 1999 11:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA92608; Fri, 18 Jun 1999 11:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 18 Jun 1999 11:00:03 -0700 (PDT) Message-Id: <199906181800.LAA92608@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Daniel Hagan Subject: Re: misc/11812 ftp3.freebsd.org can't install over ftp Reply-To: Daniel Hagan Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR misc/11812; it has been noted by GNATS. From: Daniel Hagan To: freebsd-gnats-submit@freebsd.org Cc: gtlyang@hotmail.com, admins@cslab.vt.edu Subject: Re: misc/11812 ftp3.freebsd.org can't install over ftp Date: Fri, 18 Jun 1999 13:54:24 -0400 (EDT) ftp3.freebsd.org is one of the machines our department runs. I haven't heard of any difficulties using it, but there has been some recent downtime for misc. reasons. If this is still a problem, can someone let us know and we'll try to troubleshoot it at our site? Cheers, Daniel PS: For future reference, admins@cslab.vt.edu would be a good contact to have associated with ftp3.freebsd.org to save on the confusion next time. -- Daniel Hagan Computer Science CSE dhagan@cs.vt.edu http://www.cs.vt.edu/~dhagan/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 12:29:54 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A32A15174; Fri, 18 Jun 1999 12:29:53 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA03635; Fri, 18 Jun 1999 12:29:52 -0700 (PDT) (envelope-from brian@FreeBSD.org) Date: Fri, 18 Jun 1999 12:29:52 -0700 (PDT) From: Message-Id: <199906181929.MAA03635@freefall.freebsd.org> To: brian@FreeBSD.org, freebsd-bugs@FreeBSD.org, brian@FreeBSD.org Subject: Re: bin/12225: incompletness of radius request in /usr/sbin/ppp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: incompletness of radius request in /usr/sbin/ppp Responsible-Changed-From-To: freebsd-bugs->brian Responsible-Changed-By: brian Responsible-Changed-When: Fri Jun 18 12:29:33 PDT 1999 Responsible-Changed-Why: ppp's mine To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 13: 0: 5 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A247514EC0 for ; Fri, 18 Jun 1999 13:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA07978; Fri, 18 Jun 1999 13:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from misha.cisco.com (misha.cisco.com [171.69.206.50]) by hub.freebsd.org (Postfix) with ESMTP id C024C15079 for ; Fri, 18 Jun 1999 12:55:59 -0700 (PDT) (envelope-from mi@misha.cisco.com) Received: (from mi@localhost) by misha.cisco.com (8.9.3/8.9.1) id PAA21360; Fri, 18 Jun 1999 15:55:59 -0400 (EDT) (envelope-from mi) Message-Id: <199906181955.PAA21360@misha.cisco.com> Date: Fri, 18 Jun 1999 15:55:59 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/12280: LD_IGNORE_MISSING_OBJECTS not honored for ELF binaries Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12280 >Category: bin >Synopsis: LD_IGNORE_MISSING_OBJECTS not honored for ELF binaries >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 18 13:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 3.2-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: See Synopsis. Additionally, ld-elf.so.? lacks the man-page. ld.so's man page descirbes a number of environment variables affecting the runtime linker's behaviour, including LD_IGNORE_MISSING_OBJECTS. >How-To-Repeat: strings /usr/libexec/ld-elf.so.1 | grep LD_IGNORE_MISSING_OBJECTS >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 13: 0: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 629CC14F15 for ; Fri, 18 Jun 1999 13:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA07987; Fri, 18 Jun 1999 13:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from herschel.bricoworks.com (sense-sea-pm4-5.oz.net [216.39.133.101]) by hub.freebsd.org (Postfix) with ESMTP id CD28615444 for ; Fri, 18 Jun 1999 12:56:02 -0700 (PDT) (envelope-from moore@bricoworks.com) Received: from ariel.bricoworks.com (ariel [192.168.1.37]) by herschel.bricoworks.com (8.9.3/8.9.3) with ESMTP id MAA00422 for ; Fri, 18 Jun 1999 12:55:57 -0700 (PDT) (envelope-from moore@bricoworks.com) Received: (from moore@localhost) by ariel.bricoworks.com (8.9.3/8.9.2) id MAA00892; Fri, 18 Jun 1999 12:51:47 -0700 (PDT) (envelope-from moore) Message-Id: <199906181951.MAA00892@ariel.bricoworks.com> Date: Fri, 18 Jun 1999 12:51:47 -0700 (PDT) From: Tim Moore Reply-To: moore@bricoworks.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/12281: active-filter option in pppd doesn't stop reset of idle timer Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12281 >Category: kern >Synopsis: active-filter option in pppd doesn't stop reset of idle timer >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 18 13:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Tim Moore >Release: FreeBSD 4.0-CURRENT i386 >Organization: Bricoworks >Environment: PPP over dialup modem using pppd and kernel PPP. >Description: The active-filter option of pppd doesn't prevent the idle timer from being reset when packets that don't match the filter are received. The problem is in ppp_inproc in /usr/src/sys/net/if_ppp.c; sc->sc_last_recv is always set by the PPP_IP and PPP_IPX specific code even if the packet was rejected by sc->sc_active_filt. >How-To-Repeat: I included demand idle 300 active-filter '! port ntp' in my ppp/options file. The only traffic was ntp traffic. Although the link doesn't come up if it's down, it never goes down due to inactivity. >Fix: Index: if_ppp.c =================================================================== RCS file: /home/cvs/src/sys/net/if_ppp.c,v retrieving revision 1.60 diff -u -r1.60 if_ppp.c --- if_ppp.c 1999/04/27 11:17:00 1.60 +++ if_ppp.c 1999/06/18 19:50:43 @@ -1491,7 +1491,6 @@ } schednetisr(NETISR_IP); inq = &ipintrq; - sc->sc_last_recv = time_second; /* update time of last pkt rcvd */ break; #endif #ifdef IPX @@ -1510,7 +1509,6 @@ m->m_len -= PPP_HDRLEN; schednetisr(NETISR_IPX); inq = &ipxintrq; - sc->sc_last_recv = time_second; /* update time of last pkt rcvd */ break; #endif >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 13:20: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A0ACF15020 for ; Fri, 18 Jun 1999 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA11020; Fri, 18 Jun 1999 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pesto.lbl.gov (pesto.lbl.gov [131.243.2.55]) by hub.freebsd.org (Postfix) with ESMTP id DC56214F8A for ; Fri, 18 Jun 1999 13:15:27 -0700 (PDT) (envelope-from jin@pesto.lbl.gov) Received: (from jin@localhost) by pesto.lbl.gov (8.8.8/8.8.8) id NAA06232; Fri, 18 Jun 1999 13:15:26 -0700 (PDT) (envelope-from jin) Message-Id: <199906182015.NAA06232@pesto.lbl.gov> Date: Fri, 18 Jun 1999 13:15:26 -0700 (PDT) From: Jin Guojun (FTG staff) Reply-To: j_guojun@lbl.gov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: misc/12282: CURENT/STABLE won't boot on ASUS P/I-P65UP5 since June Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12282 >Category: misc >Synopsis: CURENT/STABLE won't boot on ASUS P/I-P65UP5 since June >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 18 13:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jin Guojun (FTG staff) >Release: FreeBSD CURENT/STABLE i386 >Organization: >Environment: ASUS P/I-P65UP5 dual CPU 4.0-199906xx-CURENT and 3.2-199906xx-STABLE >Description: The installation floppy "kern.flp" is nolonger working for ASUS P/I-P65UP5 motherboard since June. I did not test on Apr/May. The current running kernel for this motherboard is 4.0-19990318-CURRENT FreeBSD. The symptom is: /boot.config -P Keyboard: no \ BTX loader 1.00 BTX version is 1.01 hanging .......... keyboard is still active. That is, I can use keyboard to do soft-reboot. >How-To-Repeat: Must have an ASUS P/I-P65UP5 motherboard to see the problem. >Fix: Don't know, but I hope it can be fixed soon. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 13:40: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2099F14E5C for ; Fri, 18 Jun 1999 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA13905; Fri, 18 Jun 1999 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 63AF714E5C; Fri, 18 Jun 1999 13:32:38 -0700 (PDT) Message-Id: <19990618203238.63AF714E5C@hub.freebsd.org> Date: Fri, 18 Jun 1999 13:32:38 -0700 (PDT) From: tich@ma.ikos.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/12283: 3-way and 4-way SMP won't boot in 19990604-CURRENT and later Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12283 >Category: kern >Synopsis: 3-way and 4-way SMP won't boot in 19990604-CURRENT and later >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 18 13:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Richard Cownie >Release: 19990604-CURRENT >Organization: Ikos Systems >Environment: 4.0-19990604-CURRENT #18: Fri Jun 18 12:24:40 Intel SC450NX >Description: An SMP kernel with 2 cpu's works fine. With 3 or 4 cpu's plugged in it crashes in start_all_aps() while attempting to start AP #2 (AP #1 starts up ok). The screen goes blank and the machine reboots without any messages to indicate the reason. >How-To-Repeat: Build an SMP kernel and attempt to run on any machine with more than 2 cpu's. I've only tried it on the SC450NX, but I believe it's a general bug. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 16:20: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D2F5714DF3 for ; Fri, 18 Jun 1999 16:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA33577; Fri, 18 Jun 1999 16:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 94BE0150E4; Fri, 18 Jun 1999 16:16:02 -0700 (PDT) Message-Id: <19990618231602.94BE0150E4@hub.freebsd.org> Date: Fri, 18 Jun 1999 16:16:02 -0700 (PDT) From: jobaldwi@vt.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: misc/12285: [PATCH] /usr/share/dict/web2a is missing some words.. like 'all'.. :) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12285 >Category: misc >Synopsis: [PATCH] /usr/share/dict/web2a is missing some words.. like 'all'.. :) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 18 16:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: John Baldwin >Release: 3.2-STABLE >Organization: >Environment: FreeBSD server.baldwin.cx 3.2-STABLE FreeBSD 3.2-STABLE #7: Thu May 27 23:03:40 EDT 1999 root@server.baldwin.cx:/usr/source/src/sys/compile/SERVER i386 >Description: While building a word list to use with john, I discovered that there were a couple of word lists in /usr/share/dict. Just to make sure that /usr/share/dict/words was all-encompassing I discovered that some of the words lists in /usr/share/dict/eign and /usr/share/dict/propernames were not in /usr/share/dict/words. So I merged the three files together, sort'd them (with -f) and uniq'd the result. >How-To-Repeat: # grep '^all$' /usr/share/dict/words >Fix: The unified patch came out to be 70k, so I've made it available at http://www.cslab.vt.edu/~jobaldwi/words.patch. It should be applied to /usr/src/share/dict/web2a (if so desired). >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 16:40: 8 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7FC1A1529B for ; Fri, 18 Jun 1999 16:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA35675; Fri, 18 Jun 1999 16:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 94AC5150E9; Fri, 18 Jun 1999 16:37:21 -0700 (PDT) Message-Id: <19990618233721.94AC5150E9@hub.freebsd.org> Date: Fri, 18 Jun 1999 16:37:21 -0700 (PDT) From: sheller@paymentnet.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: i386/12286: Segmentation violation when invoking JNI call to C from Java with PTHREADS Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12286 >Category: i386 >Synopsis: Segmentation violation when invoking JNI call to C from Java with PTHREADS >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 18 16:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Steve Heller >Release: FreeBSD 3.1 RELEASE >Organization: PaymentNet, Inc. >Environment: FreeBSD yoda.paymentnet.com 3.1-RELEASE FreeBSD 3.1-RELEASE #0: Mon Feb 15 11:08:08 GMT 1999 jkh@usw3.freebsd.org:/usr/src/sys/compile/GENERIC i386 % gcc --version 2.7.2.1 >Description: When I link a static library which calls pthread routines into a shared object file with gcc -shared -pthread, and then run the java compiled program which calls it through JNI with JDK 1.1.8 (green threads), (I had to add -lc_r to the link flags in order to get pthread_mutex_lock() to be found when linking the .so file), I get the following Segmentation violation: (cd jni; java pntransjava test.paymentnet.com 443 "TRXTYPE=S&TENDER=C&PWD=g0edel 1685&USER=pnprodtest&ACCT=5105105105105100&EXPDATE=1299&AMT=27.33" 30; cd ..) SIGSEGV 11* segmentation violation Full thread dump: "Finalizer thread" (TID:0x28454210, sys_thread_t:0x29258f00, state:R) prio=1 "Async Garbage Collector" (TID:0x28454258, sys_thread_t:0x29237f00, state:R) prio=1 "Idle thread" (TID:0x284542a0, sys_thread_t:0x29216f00, state:R) prio=0 "Clock" (TID:0x28454088, sys_thread_t:0x291f5f00, state:CW) prio=12 "main" (TID:0x284540b0, sys_thread_t:0x8067700, state:R) prio=5 *current thr ead* pntransjava.main(pntransjava.java:59) Monitor Cache Dump: Registered Monitor Dump: Thread queue lock: Name and type hash table lock: String intern lock: JNI pinning lock: JNI global reference lock: BinClass lock: Class loading lock: Java stack lock: >How-To-Repeat: Write code that makes calls to pthread routines, such as pthread_mutex_lock(), and link in a static library. Write your .java file, run javah to create the .h file for inclusion in your .c file, write the .c file to implement the functions from the .h file. Run javac on the .java file, and compile the .c file. The .c file functions in turn call a function in the static library which calls pthread_mutex_lock(). Then run the java program which makes a call to the C function. The error occurs then. >Fix: On FreeBSD 2.2.7 RELEASE, I had a slightly different but seemingly similar problem which reported an Alarm clock error. I fixed it there by copying a libc_r.so.3.0 file to /usr/lib from another machine which was running FreeBSD 2.2.8 STABLE. However, I think that this file was AOUT format for FreeBSD 2.2.X, and it does not work on the FreeBSD 3.1 RELEASE platform that I have, since it is in ELF format. Does anyone either know what my problem is, or have a working version of libc_r.so.3 (ELF format) on FreeBSD 3.1? Or do I need to upgrade my gcc from 2.7.2.1 to 2.8.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 Fri Jun 18 20: 8:10 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ED5FD14C93; Fri, 18 Jun 1999 20:08:09 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA55254; Fri, 18 Jun 1999 20:08:09 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Fri, 18 Jun 1999 20:08:09 -0700 (PDT) From: Message-Id: <199906190308.UAA55254@freefall.freebsd.org> To: davec@unforgettable.com, billf@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/12226: In 4.0-current the ipl driver breaks with "bogus cdevsw->d_maj = -1 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: In 4.0-current the ipl driver breaks with "bogus cdevsw->d_maj = -1 State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Fri Jun 18 20:07:08 PDT 1999 State-Changed-Why: fixed by green in rev1.17 of src/sys/netinet/mlf_ipl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 20:47:29 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 37E3015037; Fri, 18 Jun 1999 20:47:25 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA59286; Fri, 18 Jun 1999 20:47:25 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 18 Jun 1999 20:47:25 -0700 (PDT) From: Message-Id: <199906190347.UAA59286@freefall.freebsd.org> To: jseo@netsol.com, steve@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/12102: can't boot using the installation boot diskette made by RAWRITE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: can't boot using the installation boot diskette made by RAWRITE State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri Jun 18 20:46:17 PDT 1999 State-Changed-Why: See also Jordan's response to PR #12223. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 22:30: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D98D15129 for ; Fri, 18 Jun 1999 22:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA70449; Fri, 18 Jun 1999 22:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 063CA150E9; Fri, 18 Jun 1999 22:25:57 -0700 (PDT) Message-Id: <19990619052557.063CA150E9@hub.freebsd.org> Date: Fri, 18 Jun 1999 22:25:57 -0700 (PDT) From: dshawley@erols.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: kern/12290: error 22: cannot mount root(2) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12290 >Category: kern >Synopsis: error 22: cannot mount root(2) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 18 22:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dave Shawley >Release: 3.2-RELEASE >Organization: Digital Video Arts, Ltd. >Environment: ???? (see below) >Description: Trys to boot the second SCSI drive (happens to be a removable Iomega Jaz) when it should be booting from the first SCSI disk (Micropolis 9Gb). I did a clean install on the Micropolis drive and it failed to boot when it tried to mount my Jaz drive instead. I had 2.2.6-RELEASE installed on this machine for a year or so now without too many problems. It also insisted on booting from my Jaz drive, but 2.2.6 had the option to type in a ``boot point'' which I did religiously, 1:sd(0,a)kernel. After reading the docs, they seem to indicate that I could put the kernel location in /boot.config and everything should work; however, I have no way to create/edit a file... I have booted the kernel with a -v and saw nothing odd and also configed it (-c) to remove some extraneous devices (the ethernet devices and other SCSI adapters). System Info: Pentium Pro 180, 128Mb RAM SuperMicro P6SKE Motherboard, rev.1009971445 4.3Gb EIDE HD Primary Master IDE CD Primary Slave Imation LS-120 Secondary Master Adaptec 2940U/UW SCSI Adapter, BIOS v.1.25 Micropolis 9Gb (Unit:LUN) = (0:0) Iomega Jaz 1Gb (Unit:LUN) = (4:0) BSD installed on Micropolis (ad0 ??) Micro$oft Win95 on EIDE HD >How-To-Repeat: Try to boot... >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Jun 18 22:42:26 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B4BC15129; Fri, 18 Jun 1999 22:42:24 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA72275; Fri, 18 Jun 1999 22:42:23 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Fri, 18 Jun 1999 22:42:23 -0700 (PDT) From: Message-Id: <199906190542.WAA72275@freefall.freebsd.org> To: cpiazza@home.net, cpiazza@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/11555: Spelling mistakes in ata-dma.c Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Spelling mistakes in ata-dma.c State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Fri Jun 18 22:41:18 PDT 1999 State-Changed-Why: Spelling mistake was fixed already. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 19 1:10:11 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4211014CF9 for ; Sat, 19 Jun 1999 01:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA81180; Sat, 19 Jun 1999 01:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from point.osg.gov.bc.ca (point.osg.gov.bc.ca [142.32.102.44]) by hub.freebsd.org (Postfix) with ESMTP id C6CED153D2 for ; Sat, 19 Jun 1999 01:05:05 -0700 (PDT) (envelope-from cy@cschuber.net.gov.bc.ca) Received: (from daemon@localhost) by point.osg.gov.bc.ca (8.8.7/8.8.8) id BAA02523 for ; Sat, 19 Jun 1999 01:05:05 -0700 Received: from cschuber.net.gov.bc.ca(142.31.240.113), claiming to be "cwsys.cwsent.com" via SMTP by point.osg.gov.bc.ca, id smtpda02521; Sat Jun 19 01:05:02 1999 Received: (from cy@localhost) by cwsys.cwsent.com (8.9.3/8.9.1) id WAA01064; Fri, 18 Jun 1999 22:58:55 -0700 (PDT) Message-Id: <199906190558.WAA01064@cwsys.cwsent.com> Date: Fri, 18 Jun 1999 22:58:55 -0700 (PDT) From: Cy Schubert Reply-To: cschuber@uumail.gov.bc.ca To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/12292: newfs segfault Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12292 >Category: bin >Synopsis: newfs segfaults in strtol.c(68), atoi.c(45), newfs.c(360) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jun 19 01:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Cy Schubert >Release: FreeBSD 3.2-RELEASE i386 >Organization: ITSD Province of BC >Environment: FreeBSD cwsys 3.2-RELEASE FreeBSD 3.2-RELEASE #0: Tue Jun 1 23:15:34 PDT 1999 root@cwsys:/opt2/cvs-320/src/sys/compile/CWSYS i386 >Description: Core was generated by `newfs'. Program terminated with signal 11, Segmentation fault. #0 0x80528bc in strtol () (gdb) bt #0 0x80528bc in strtol () #1 0x80526b7 in atoi () #2 0x804883f in main (argc=18, argv=0xbfbfdaf8) at newfs.c:360 #3 0x80480e9 in _start () Problem introduced in version 1.24 of newfs.c. >How-To-Repeat: Invoke newfs with the -x flag. >Fix: --- src/sbin/newfs/newfs.c.orig Sat Oct 17 01:03:52 1998 +++ src/sbin/newfs/newfs.c Fri Jun 18 22:43:33 1999 @@ -247,7 +247,7 @@ opstring = mfs ? "NF:T:a:b:c:d:e:f:i:m:o:s:" : - "NOS:T:a:b:c:d:e:f:i:k:l:m:n:o:p:r:s:t:u:vx"; + "NOS:T:a:b:c:d:e:f:i:k:l:m:n:o:p:r:s:t:u:vx:"; while ((ch = getopt(argc, argv, opstring)) != -1) switch (ch) { case 'N': >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 19 1:10:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8143114BB8 for ; Sat, 19 Jun 1999 01:10:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA81212; Sat, 19 Jun 1999 01:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (Postfix) with ESMTP id 3811614BB8 for ; Sat, 19 Jun 1999 01:09:22 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id RAA15121 for ; Sat, 19 Jun 1999 17:39:22 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id RAA00680; Sat, 19 Jun 1999 17:39:21 +0930 (CST) Message-Id: <199906190809.RAA00680@freebie.lemis.com> Date: Sat, 19 Jun 1999 17:39:21 +0930 (CST) From: Greg Lehey Reply-To: grog@lemis.com To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.2 Subject: kern/12295: Recent -CURRENT crashes on AMD K6 system Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12295 >Category: kern >Synopsis: Recent -CURRENT kernels do not survive a boot >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jun 19 01:10:04 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Greg Lehey >Release: FreeBSD-4.0-CURRENT >Organization: FreeBSD >Environment: Copyright (c) 1992-1999 The FreeBSD Project. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 4.0-CURRENT #142: Wed Jun 16 14:25:38 CST 1999 root@freebie.lemis.com:/T/src/FREEBIE/src/sys/compile/FREEBIE Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 334058696 Hz CPU: AMD-K6(tm) 3D processor (334.06-MHz 586-class CPU) Origin = "AuthenticAMD" Id = 0x58c Stepping=12 Features=0x8021bf real memory = 167772160 (163840K bytes) avail memory = 159744000 (156000K bytes) npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 chip0: at device 0.0 on pci0 ide_pci0: at device 0.1 on pci0 isab0: at device 1.0 on pci0 pcib1: at device 2.0 on pci0 pci1: on pcib1 ahc0: at device 9.0 on pci0 ahc0: aic7870 Single Channel A, SCSI Id=7, 16/255 SCBs ahc0: interrupting at irq 11 ed0: at device 12.0 on pci0 ed0: address 00:80:48:e6:a0:61, type NE2000 (16 bit) ed0: interrupting at irq 10 eisa0: on motherboard devclass_alloc_unit: npx0 already exists, using next available unit number devclass_alloc_unit: ed0 already exists, using next available unit number devclass_alloc_unit: ed1 already exists, using next available unit number isa0: on motherboard fdc0: interrupting at irq 6 fdc0: at port 0x3f0-0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> at fdc0 drive 0 wdc0 at port 0x1f0-0x1f7 irq 14 flags 0xa0ffa0ff on isa0 wdc0: unit 0 (wd0): , DMA, 32-bit, multi-block-32 wd0: 1223MB (2504880 sectors), 2485 cyls, 16 heads, 63 S/T, 512 B/S wdc0: interrupting at irq 14 wdc1 at port 0x170-0x177 irq 15 flags 0xa0ffa0ff on isa0 wdc1: unit 0 (wd2): , DMA, 32-bit, multi-block-16 wd2: 6197MB (12692736 sectors), 12592 cyls, 16 heads, 63 S/T, 512 B/S wdc1: unit 1 (wd3): , DMA, 32-bit, multi-block-16 wd3: 8063MB (16514064 sectors), 16383 cyls, 16 heads, 63 S/T, 512 B/S wdc1: interrupting at irq 15 atkbdc0: at port 0x60 on isa0 WARNING: Update your atkbdc config! psm0: on atkbdc0 psm0: model MouseMan+, device ID 0 psm0: interrupting at irq 12 atkbd0: on atkbdc0 atkbd0: interrupting at irq 1 vga0: on isa0 sc0: on isa0 sc0: VGA color <16 virtual consoles, flags=0x0> sio0 at port 0x3f8-0x3ff irq 4 on isa0 sio0: type 16550A sio0: interrupting at irq 4 sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A sio1: interrupting at irq 3 sio2 at port 0x3e8-0x3ef irq 5 on isa0 sio2: type 16550A sio2: interrupting at irq 5 ppc0 at port 0x378-0x37f irq 7 on isa0 ppc0: W83877F chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/16 bytes threshold plip0: on ppbus 0 lpt0: on ppbus 0 lpt0: Interrupt-driven port ppi0: on ppbus 0 ppc0: interrupting at irq 7 isa_compat: didn't get irq for ed Waiting 3 seconds for SCSI devices to settle sa0 at ahc0 bus 0 target 3 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 10.000MB/s transfers (10.000MHz, offset 15) sa1 at ahc0 bus 0 target 4 lun 0 sa1: Removable Sequential Access SCSI-2 device sa1: 5.000MB/s transfers (5.000MHz, offset 15) sa2 at ahc0 bus 0 target 5 lun 0 sa2: Removable Sequential Access SCSI-CCS device sa2: 3.300MB/s transfers pass4 at ahc0 bus 0 target 4 lun 1 pass4: Removable Changer SCSI-2 device pass4: 5.000MB/s transfers (5.000MHz, offset 15) da1 at ahc0 bus 0 target 2 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 3.300MB/s transfers, Tagged Queueing Enabled da1: 4096MB (8388608 512 byte sectors: 64H 32S/T 4096C) cd0 at ahc0 bus 0 target 6 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 3.300MB/s transfers cd0: cd present [322265 x 2048 byte records] changing root device to wd0s1a da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 10.000MB/s transfers (10.000MHz, offset 15), Tagged Queueing Enabled da0: 2063MB (4226725 512 byte sectors: 64H 32S/T 2063C) ffs_mountfs: superblock updated for soft updates ffs_mountfs: superblock updated for soft updates cd1 at ahc0 bus 0 target 6 lun 1 cd1: Removable CD-ROM SCSI-2 device cd1: 3.300MB/s transfers cd1: cd present [248494 x 2048 byte records] >Description: This system has been running the version of -CURRENT shown for about three months (the sources had not been updated since mid-March). After upgrading to the most recent -CURRENT, it was no longer possible to boot the machine. On the first occasion, the boot completed, but the keyboard did not respond. This particular problem may be a red herring: the config file had been continuously updated for about 3 years, and may have had some cruft in there which caused the problem. After this, I built a GENERIC kernel and tried to boot it. The system crashed during the boot, killing the display (the monitor lost signal, so it wasn't just a clear screen function). All attempts to build a functional kernel have failed. Finally, I tried booting the kernel from another system. This kernel is -CURRENT of about 2 days ago. It works fine on the other system, but it shows the same symptoms on this system. I really don't know what's causing this problem, but something seems to be pointing to the keyboard. I have changed the keyboards around, and they all work fine on the other machine. >How-To-Repeat: As described. >Fix: The problem here proves to be related to the presence of an ATI video board: these boards are cleverly designed with I/O registers which conflict with sio3. The newbus code in sioprobe did not check whether a serial port was enabled before writing to it, causing the display board to go off into Nirvana. In fact, the system carried on running, sort of. The following modification fixes the problem: RCS file: /src/ncvs/src/sys/isa/sio.c,v retrieving revision 1.247 diff -w -u -r1.247 sio.c --- sio.c 1999/06/15 22:15:10 1.247 +++ sio.c 1999/06/19 07:47:18 @@ -69,6 +69,7 @@ #include #include #include +#include #include #ifdef DEVFS #include @@ -639,6 +640,7 @@ devclass_get_devices(sio_devclass, &devs, &count); for (i = 0; i < count; i++) { xdev = devs[i]; + if (xdev->flags & DF_ENABLED) outb(isa_get_port(xdev) + com_mcr, 0); } free(devs, M_TEMP); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 19 1:16:14 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 05AEF14BE2; Sat, 19 Jun 1999 01:16:12 -0700 (PDT) (envelope-from grog@FreeBSD.org) Received: (from grog@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA81745; Sat, 19 Jun 1999 01:16:12 -0700 (PDT) (envelope-from grog@FreeBSD.org) Date: Sat, 19 Jun 1999 01:16:12 -0700 (PDT) From: Message-Id: <199906190816.BAA81745@freefall.freebsd.org> To: grog@lemis.com, grog@FreeBSD.org, freebsd-bugs@FreeBSD.org, grog@FreeBSD.org Subject: Re: kern/12295: Recent -CURRENT kernels do not survive a boot Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Recent -CURRENT kernels do not survive a boot State-Changed-From-To: open->closed State-Changed-By: grog State-Changed-When: Sat Jun 19 01:14:59 PDT 1999 State-Changed-Why: Problem resolved Responsible-Changed-From-To: freebsd-bugs->grog Responsible-Changed-By: grog Responsible-Changed-When: Sat Jun 19 01:14:59 PDT 1999 Responsible-Changed-Why: Resolved by grog To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 19 2: 7:21 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from dt054n86.san.rr.com (dt054n86.san.rr.com [24.30.152.134]) by hub.freebsd.org (Postfix) with ESMTP id 3E82A14E04; Sat, 19 Jun 1999 02:07:17 -0700 (PDT) (envelope-from Studded@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt054n86.san.rr.com (8.8.8/8.8.8) with ESMTP id CAA22783; Sat, 19 Jun 1999 02:07:11 -0700 (PDT) (envelope-from Studded@gorean.org) Message-ID: <376B5DBE.66488AB3@gorean.org> Date: Sat, 19 Jun 1999 02:07:10 -0700 From: Studded Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.6 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: Ruslan Ermilov Cc: MIHIRA Yoshiro , rustam@eanetways.com, freebsd-bugs@FreeBSD.ORG, freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/12093: /sbin/reboot does not run /etc/rc.shutdown during reboot References: <199906090913.CAA43156@freefall.freebsd.org> <199906100342.MAA17350@lavender.yy.cs.keio.ac.jp> <19990610111931.B27083@relay.ucb.crimea.ua> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ruslan Ermilov wrote: > > On Thu, Jun 10, 1999 at 12:42:39PM +0900, MIHIRA Yoshiro wrote: > > ru@FreeBSD.ORG wrote: > > > > >> Synopsis: /sbin/reboot does not run /etc/rc.shutdown during reboot > > >> > > >> State-Changed-From-To: open->closed > > >> State-Changed-By: ru > > >> State-Changed-When: Wed Jun 9 01:13:34 PDT 1999 > > >> State-Changed-Why: > > >> Not a bug. > > >> init(8) executes rc.shutdown whenever it receives SIGTERM signal. > > >> reboot(8) explicitly prevents this by sending init(8) SIGTSTP signal. > > >> You can use shutdown(8) to terminate your system gracefully. > > > > But > > shutdown -h now --> not execute /etc/rc.shutdown > > > It shouldn't execute /etc/rc.shutdown: > > shutdown(8): > > -h The system is halted at the specified time when shutdown executes > halt(8). > > halt(8) is a link to reboot(8), and it acts like reboot, i.e. > explicitly send init(8) SIGTSTP signal to prevent it from running > /etc/rc.shutdown. > > There are two ways to shutdown your system gracefully: > 1) Explicitly send init(8) SIGTERM signal (kill -15 1) > 2) Run ``shutdown [time]'' without specifying -h -r -p switches. Neither of which is acceptable if you are issuing the command remotely and absolutely must have the system reboot. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 19 2:10:33 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B9E614CC9 for ; Sat, 19 Jun 1999 02:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA87175; Sat, 19 Jun 1999 02:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 19 Jun 1999 02:10:03 -0700 (PDT) Message-Id: <199906190910.CAA87175@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Studded Subject: Re: bin/12093: /sbin/reboot does not run /etc/rc.shutdown during reboot Reply-To: Studded Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/12093; it has been noted by GNATS. From: Studded To: Ruslan Ermilov Cc: MIHIRA Yoshiro , rustam@eanetways.com, freebsd-bugs@FreeBSD.ORG, freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/12093: /sbin/reboot does not run /etc/rc.shutdown during reboot Date: Sat, 19 Jun 1999 02:07:10 -0700 Ruslan Ermilov wrote: > > On Thu, Jun 10, 1999 at 12:42:39PM +0900, MIHIRA Yoshiro wrote: > > ru@FreeBSD.ORG wrote: > > > > >> Synopsis: /sbin/reboot does not run /etc/rc.shutdown during reboot > > >> > > >> State-Changed-From-To: open->closed > > >> State-Changed-By: ru > > >> State-Changed-When: Wed Jun 9 01:13:34 PDT 1999 > > >> State-Changed-Why: > > >> Not a bug. > > >> init(8) executes rc.shutdown whenever it receives SIGTERM signal. > > >> reboot(8) explicitly prevents this by sending init(8) SIGTSTP signal. > > >> You can use shutdown(8) to terminate your system gracefully. > > > > But > > shutdown -h now --> not execute /etc/rc.shutdown > > > It shouldn't execute /etc/rc.shutdown: > > shutdown(8): > > -h The system is halted at the specified time when shutdown executes > halt(8). > > halt(8) is a link to reboot(8), and it acts like reboot, i.e. > explicitly send init(8) SIGTSTP signal to prevent it from running > /etc/rc.shutdown. > > There are two ways to shutdown your system gracefully: > 1) Explicitly send init(8) SIGTERM signal (kill -15 1) > 2) Run ``shutdown [time]'' without specifying -h -r -p switches. Neither of which is acceptable if you are issuing the command remotely and absolutely must have the system reboot. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 19 2:20: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B4BF14CF0 for ; Sat, 19 Jun 1999 02:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA88423; Sat, 19 Jun 1999 02:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 19 Jun 1999 02:20:03 -0700 (PDT) Message-Id: <199906190920.CAA88423@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Studded Subject: Re: bin/12205: [PATCH] DHCP client does not set hostnames, and garbles them as well Reply-To: Studded Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/12205; it has been noted by GNATS. From: Studded To: jobaldwi@vt.edu Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/12205: [PATCH] DHCP client does not set hostnames, and garbles them as well Date: Sat, 19 Jun 1999 02:16:02 -0700 jobaldwi@vt.edu wrote: > >Description: > The dhcp client in /usr/src/contrib/isc-dhcp does not support setting > hostnames. Also, it currently sets the hostname to a hexadecimal > representation of the hostname instead of the actual text. (Sigh.) This is really interesting. I've used my own version of the script to set my hostname for years and it's never done this. How are you requesting the hostname in your dhcp conf file? I use the following: interface "ep0" { request subnet-mask, broadcast-address, routers, domain-name-servers, domain-name, host-name; require domain-name-servers; } > >How-To-Repeat: > Well, you need a dhcp server setup that sends hostnames, and a client > that requests hostnames. Then, boot the system. The hostname will not > be set. Then, apply the first patch to /usr/src/contrib/isc-dhcp/clients/scripts/freebsd > and the hostname will be set to a long, annoying, hex string. With respect, an approach like this takes into account a wider variety of dhcp server implementations: if [ x$new_host_name != x ]; then if [ x$new_domain_name != x ]; then hostname $new_host_name.$new_domain_name echo New Hostname: $new_host_name.$new_domain_name else hostname $new_host_name echo New Hostname: $new_host_name fi fi Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 19 7:10: 8 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A741214E18 for ; Sat, 19 Jun 1999 07:10:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA81237; Sat, 19 Jun 1999 07:10:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 19 Jun 1999 07:10:06 -0700 (PDT) Message-Id: <199906191410.HAA81237@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: John Baldwin Subject: Re: bin/12205: [PATCH] DHCP client does not set hostnames, and g Reply-To: John Baldwin Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/12205; it has been noted by GNATS. From: John Baldwin To: Studded Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/12205: [PATCH] DHCP client does not set hostnames, and g Date: Sat, 19 Jun 1999 10:06:37 -0400 (EDT) On 19-Jun-99 Studded wrote: > jobaldwi@vt.edu wrote: > >> >Description: >> The dhcp client in /usr/src/contrib/isc-dhcp does not support setting >> hostnames. Also, it currently sets the hostname to a hexadecimal >> representation of the hostname instead of the actual text. (Sigh.) > > This is really interesting. I've used my own version of the script to set > my hostname for years and it's never done this. How are you requesting the > hostname in your dhcp conf file? I use the following: > > interface "ep0" { > request subnet-mask, broadcast-address, routers, domain-name-servers, > domain-name, host-name; > require domain-name-servers; > } Here's my .conf file: retry 60; select-timeout 5; initial-interval 2; request subnet-mask, broadcast-address, time-offset, routers, domain-name, domain-name-servers, host-name; require subnet-mask, domain-name-servers; This worked fine with older versions of the client.. it wasn't until I tried to use the built in dhclient in /sbin that things broke. The real "bug" in this PR is the change to tables.c. >> >How-To-Repeat: >> Well, you need a dhcp server setup that sends hostnames, and a client >> that requests hostnames. Then, boot the system. The hostname will not >> be set. Then, apply the first patch to >> /usr/src/contrib/isc-dhcp/clients/scripts/freebsd >> and the hostname will be set to a long, annoying, hex string. > > With respect, an approach like this takes into account a wider variety of > dhcp server implementations: > > if [ x$new_host_name != x ]; then > if [ x$new_domain_name != x ]; then > hostname $new_host_name.$new_domain_name > echo New Hostname: $new_host_name.$new_domain_name > else > hostname $new_host_name > echo New Hostname: $new_host_name > fi > fi Great.. I'm not a DHCP genius, I just copied over all the hostname parts from the script we ran with the older client/server port that was installed over a year ago on a 2.2.7 server, so if that will work better, than by all means, commit that sequence for setting hostnames than what I have. Thanks. > Doug --- John Baldwin -- http://members.freedomnet.com/~jbaldwin/ PGP Key: http://members.freedomnet.com/~jbaldwin/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 19 7:37:40 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B375152BE; Sat, 19 Jun 1999 07:37:33 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA83046; Sat, 19 Jun 1999 07:37:32 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Date: Sat, 19 Jun 1999 07:37:32 -0700 (PDT) From: Message-Id: <199906191437.HAA83046@freefall.freebsd.org> To: cschuber@uumail.gov.bc.ca, n_hibma@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/12292: newfs segfaults in strtol.c(68), atoi.c(45), newfs.c(360) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: newfs segfaults in strtol.c(68), atoi.c(45), newfs.c(360) State-Changed-From-To: open->closed State-Changed-By: n_hibma State-Changed-When: Sat Jun 19 07:36:43 PDT 1999 State-Changed-Why: Fixed (in CURRENT, 3.2 will follow swift). Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 19 8:10: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D70F14EBD for ; Sat, 19 Jun 1999 08:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA84582; Sat, 19 Jun 1999 08:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 19 Jun 1999 08:10:02 -0700 (PDT) Message-Id: <199906191510.IAA84582@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dmitrij Tejblum Subject: Re: kern/12247: userlevel program let kernel hang Reply-To: Dmitrij Tejblum Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/12247; it has been noted by GNATS. From: Dmitrij Tejblum To: Bruce Evans Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/12247: userlevel program let kernel hang Date: Sat, 19 Jun 1999 19:00:24 +0400 Bruce Evans wrote: > tsleep()'s return codes are poorly documented and were > misinterpreted in lf_setlock(). tsleep() can return 0 if the process > was restarted by a debugger, I didn't realise that a process sleeping interruptible can be stopped inside the tsleep call (is that true?). It looks dangerous to me. For example, interruptible nfs may sleep interuuptible, in particular in the vfs_bio code, with vnode locks held, etc. Stopping at such point looks like a good opportunity to hang the machine... Dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 19 8:19:15 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp02.wxs.nl (smtp02.wxs.nl [195.121.6.60]) by hub.freebsd.org (Postfix) with ESMTP id 31E3A1517D; Sat, 19 Jun 1999 08:19:12 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.197.134]) by smtp02.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAA359B; Sat, 19 Jun 1999 17:19:11 +0200 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id QAA27174; Sat, 19 Jun 1999 16:36:26 +0200 (CEST) (envelope-from asmodai) Date: Sat, 19 Jun 1999 16:36:26 +0200 From: Jeroen Ruigrok/Asmodai To: FreeBSD Gnats , dada@sbox.tu-gratz.ac.at, freebsd-bugs@freebsd.org Subject: Re: kern/3281: errors when "rm -r"-ing in a mounted ext2fs Message-ID: <19990619163626.A26899@daemon.ninth-circle.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.3i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I saw your report of the ext2fs giving some messages after deleting a lot of files. I have used ext2fs as well in circumstances and haven't noticed this behaviour. However my version was either 3.x or 4.x, can you try a recent 2.2.x or 3.x and comment whether or not this problem is still present? If I won't hear from you in about 1 - 2 weeks I will ask if this pr can be closed because it is getting stale. With regards, -- Jeroen Ruigrok van der Werven asmodai(at)wxs.nl The *BSD Programmer's Documentation Project Network/Security Specialist *BSD: We are back and will not accept no... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 19 8:20: 4 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E4D91517D for ; Sat, 19 Jun 1999 08:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA85136; Sat, 19 Jun 1999 08:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 19 Jun 1999 08:20:02 -0700 (PDT) Message-Id: <199906191520.IAA85136@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jeroen Ruigrok/Asmodai Subject: Re: kern/3281: errors when "rm -r"-ing in a mounted ext2fs Reply-To: Jeroen Ruigrok/Asmodai Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/3281; it has been noted by GNATS. From: Jeroen Ruigrok/Asmodai To: FreeBSD Gnats , dada@sbox.tu-gratz.ac.at, freebsd-bugs@freebsd.org Cc: Subject: Re: kern/3281: errors when "rm -r"-ing in a mounted ext2fs Date: Sat, 19 Jun 1999 16:36:26 +0200 Hi, I saw your report of the ext2fs giving some messages after deleting a lot of files. I have used ext2fs as well in circumstances and haven't noticed this behaviour. However my version was either 3.x or 4.x, can you try a recent 2.2.x or 3.x and comment whether or not this problem is still present? If I won't hear from you in about 1 - 2 weeks I will ask if this pr can be closed because it is getting stale. With regards, -- Jeroen Ruigrok van der Werven asmodai(at)wxs.nl The *BSD Programmer's Documentation Project Network/Security Specialist *BSD: We are back and will not accept no... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 19 11:46:15 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from smtp04.wxs.nl (smtp04.wxs.nl [195.121.6.59]) by hub.freebsd.org (Postfix) with ESMTP id 0577B150AA; Sat, 19 Jun 1999 11:46:11 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.196.38]) by smtp04.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAB6509; Sat, 19 Jun 1999 20:46:09 +0200 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id UAA28349; Sat, 19 Jun 1999 20:39:01 +0200 (CEST) (envelope-from asmodai) Date: Sat, 19 Jun 1999 20:39:01 +0200 From: Jeroen Ruigrok/Asmodai To: FreeBSD Gnats , Matthew Dillon , bugs@freebsd.org, peter@freebsd.org, pine@math.okayama-u.ac.jp Subject: Re: kern/3938: Problem about mmap() over NFS Message-ID: <19990619203901.B28284@daemon.ninth-circle.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.3i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Matthew, due to your involvement with the NFS in CURRENT, can you comment on this PR and whether it is still a problem given your tremendous number of fixes/clean-ups wrt that code? Thanks, -- Jeroen Ruigrok van der Werven asmodai(at)wxs.nl The *BSD Programmer's Documentation Project Network/Security Specialist *BSD: We are back and will not accept no... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 19 15:50: 7 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5BBF4152BD for ; Sat, 19 Jun 1999 15:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA24663; Sat, 19 Jun 1999 15:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 19 Jun 1999 15:50:01 -0700 (PDT) Message-Id: <199906192250.PAA24663@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bruce Evans Subject: Re: kern/12247: userlevel program let kernel hang Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/12247; it has been noted by GNATS. From: Bruce Evans To: bde@zeta.org.au, tejblum@arc.hq.cti.ru Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/12247: userlevel program let kernel hang Date: Sun, 20 Jun 1999 08:45:53 +1000 >> tsleep()'s return codes are poorly documented and were >> misinterpreted in lf_setlock(). tsleep() can return 0 if the process >> was restarted by a debugger, > >I didn't realise that a process sleeping interruptible can be stopped >inside the tsleep call (is that true?). It looks dangerous to me. For I think it isn't true. >example, interruptible nfs may sleep interuuptible, in particular in >the vfs_bio code, with vnode locks held, etc. Stopping at such point >looks like a good opportunity to hang the machine... PT_ATTACH is implemented using SIGSTOP, but the consequences shouldn't be any worse than for a manual kill -STOP. I think SIGSTOP of a stopped process is normally optimised away (so tsleep() doesn't return), but for ptrace() it is explicitly pessimised (so tsleep() returns 0). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Jun 19 22:20: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2581614C9B for ; Sat, 19 Jun 1999 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA57773; Sat, 19 Jun 1999 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cr1003333-a.crdva1.bc.home.com (cr1003333-a.crdva1.bc.wave.home.com [24.113.51.240]) by hub.freebsd.org (Postfix) with ESMTP id 2A32314FA1 for ; Sat, 19 Jun 1999 22:16:22 -0700 (PDT) (envelope-from jh@cr1003333-a.crdva1.bc.home.com) Received: (from jh@localhost) by cr1003333-a.crdva1.bc.home.com (8.9.3/8.9.3) id WAA05806; Sat, 19 Jun 1999 22:16:22 -0700 (PDT) (envelope-from jh) Message-Id: <199906200516.WAA05806@cr1003333-a.crdva1.bc.home.com> Date: Sat, 19 Jun 1999 22:16:22 -0700 (PDT) From: Jonathan Hanna Reply-To: pangolin@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/12304: infinite recursion in libalias with PKT_ALIAS_REVERSE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12304 >Category: bin >Synopsis: infinite recursion in libalias with PKT_ALIAS_REVERSE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jun 19 22:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jonathan Hanna >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: 4.0-CURRENT 3.2-STABLE >Description: Setting PKT_ALIAS_REVERSE in libalias results in infinite recursion of alternating alias-in and alias-out functions. alias.c in libalias has this code: int PacketAliasIn(char *ptr, int maxpacketsize) { struct in_addr alias_addr; struct ip *pip; int iresult; if (packetAliasMode & PKT_ALIAS_REVERSE) return PacketAliasOut(ptr, maxpacketsize); ... int PacketAliasOut(char *ptr, /* valid IP packet */ int maxpacketsize /* How much the packet data may grow (FTP and IRC inline changes) */ ) { int iresult; struct in_addr addr_save; struct ip *pip; if (packetAliasMode & PKT_ALIAS_REVERSE) return PacketAliasIn(ptr, maxpacketsize); ... I noticed also that PKT_ALIAS_REVERSE is not documented int libalias.3. >How-To-Repeat: Adding "-reverse" to a natd setup results in a core dump. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message