From owner-freebsd-bugs Sun Nov 29 04:59:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27444 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 04:59:25 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA27433 for ; Sun, 29 Nov 1998 04:59:23 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA27870; Sun, 29 Nov 1998 05:00:02 -0800 (PST) Date: Sun, 29 Nov 1998 05:00:02 -0800 (PST) Message-Id: <199811291300.FAA27870@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: toasty@dragondata.com Subject: kern/8834: NFS can corrupt local file cache Reply-To: toasty@dragondata.com Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/8834; it has been noted by GNATS. From: toasty@dragondata.com To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: kern/8834: NFS can corrupt local file cache Date: Tue, 24 Nov 1998 04:06:11 -0600 (CST) >Number: 8834 >Category: kern >Synopsis: NFS can corrupt local file cache >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 Nov 24 02:10:01 PST 1998 >Last-Modified: >Originator: Kevin Day >Organization: DragonData Internet Services >Release: FreeBSD 2.2.7-STABLE i386 >Environment: 2.2.5 NFS server, 2.2.7 NFS client. dmesg from client: Copyright (c) 1992-1998 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 2.2.7-RELEASE #0: Thu Jul 30 16:42:02 CDT 1998 root@shell1.dragondata.com:/usr/src/sys/compile/SHELL1 CPU: Pentium II (quarter-micron) (398.27-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x651 Stepping=1 Features=0x183f9ff,,MMX,> real memory = 402653184 (393216K bytes) avail memory = 391720960 (382540K bytes) Probing for devices on PCI bus 0: chip0 rev 2 on pci0:0:0 chip1 rev 2 on pci0:1:0 chip2 rev 2 on pci0:7:0 chip3 rev 1 on pci0:7:1 chip4 rev 1 int d irq 9 on pci0:7:2 chip5 rev 2 on pci0:7:3 de0 rev 34 int a irq 11 on pci0:14:0 de0: 21140A [10-100Mb/s] pass 2.2 de0: address 00:40:05:43:a3:a3 de1 rev 34 int a irq 10 on pci0:15:0 de1: 21140A [10-100Mb/s] pass 2.2 de1: address 00:40:05:42:dd:26 Probing for devices on PCI bus 1: vga0 rev 92 on pci1:0:0 Probing for devices on the ISA bus: sc0 at 0x60-0x6f irq 1 on motherboard sc0: VGA color <16 virtual consoles, flags=0x0> sio0 at 0x3f8-0x3ff irq 4 on isa sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 sio1 not found at 0x2f8 lpt0 at 0x378-0x37f irq 7 on isa lpt0: Interrupt-driven port lp0: TCP/IP capable interface lpt1 not found at 0xffffffff psm0 not found at 0x60 fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in wdc0 at 0x1f0-0x1f7 irq 14 on isa wdc0: unit 0 (wd0): wd0: 8063MB (16514064 sectors), 16383 cyls, 16 heads, 63 S/T, 512 B/S wdc1 at 0x170-0x177 irq 15 on isa wdc1: unit 0 (atapi): , removable, dma, iordy wcd0: 2412/5512Kb/sec, 128Kb cache, audio play, 256 volume levels, ejectable tray wcd0: no disc inside, unlocked npx0 flags 0x1 on motherboard npx0: INT 16 interface de0: enabling Full Duplex 100baseTX port de1: enabling 100baseTX port >Description: Heavy NFS activity on the client can corrupt local files in use >How-To-Repeat: dd if=/mnt/nfsserver/verylargefile of=/tmp/somefile bs=32k & Then, I started doing a kernel config, then compile. vers.c started getting bits and pieces of 'verylargefile' mixed in with it. Until I rebooted, every time vers.c was recreated by config, it had the same garbage in it. As a test, I tried copying the corrupted vers.c back to the nfs server. /kernel: short receive (0/4) from nfs server home.internal:/home /kernel: nfs server home.internal:/home: not responding last message repeated 61 times /kernel: short receive (0/4) from nfs server home.internal:/home /kernel: nfs server home.internal:/home: not responding last message repeated 25 times /kernel: /kernel: vm_fault: pager input (probably hardware) error, PID 15822 failure last message repeated 33297 times last message repeated 128988 times last message repeated 632240 times last message repeated 639222 times /kernel: pid 1328 (inetd), uid 0, was killed: exceeded maximum CPU limit /kernel: pid 15822 (cp), uid 0: exited on signal 11 (core dumped) At this point, the system locked up... ddb showed it in nfs_bwrite, or some function under it, apparently stuck in a loop. It wouldn't do a core dump. Also, if this helps... it seems somewhat related.... If an executable is ran from an nfs mount, and gets killed for exceeding it's CPU limit, it'll start doing the never-ending vm_fault: pager input (probably hardware) error over and over again, too. Why inetd died there makes no since, it has no cpu limit. >Fix: >Audit-Trail: >Unformatted: Kevin Day To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 29 04:59:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27445 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 04:59:25 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA27435 for ; Sun, 29 Nov 1998 04:59:23 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA27875; Sun, 29 Nov 1998 05:00:02 -0800 (PST) Date: Sun, 29 Nov 1998 05:00:02 -0800 (PST) Message-Id: <199811291300.FAA27875@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: sdunn@npc.net Subject: i386/8843: panic: isa_dmacheck: no physical page present (mount_msdos /dev/fd0..) Reply-To: sdunn@npc.net Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/8843; it has been noted by GNATS. From: sdunn@npc.net To: freebsd-gnats-submit@FreeBSD.ORG Cc: Subject: i386/8843: panic: isa_dmacheck: no physical page present (mount_msdos /dev/fd0..) Date: Tue, 24 Nov 1998 05:52:40 -0800 (PST) >Number: 8843 >Category: i386 >Synopsis: panic: isa_dmacheck: no physical page present (mount_msdos /dev/fd0..) >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Nov 24 06:00:01 PST 1998 >Last-Modified: >Originator: Scott Dunn >Organization: National Processing Company (NPC) >Release: 3.0-19989804-SNAP (GENERIC) #0 >Environment: FreeBSD year2000.y2k.net 3.0-19980804-SNAP FreeBSD 3.0-19980804-SNAP #0: Tue Aug 4 10:23:17 GMT 1998 root@make.ican.net:/usr/src/sys/compile/GENERIC i386 >Description: After formating, labeling, creating a new Unix file system and mounting /dev/fd0, then doing the same for a msdos file system BSD 3.0 initiates an auto reboot, with the following message: panic: isa_dmacheck: no physical page present syncing disks...111111111111111111 giving up Automatic reboot in 15 seconds >How-To-Repeat: 1. fdformat /dev/fd0 2. disklabel -rw /dev/fd0 fd1440 3. newfs /dev/fd0 4. mount /dev/fd0 /mnt 5. umount /dev/fd0 6. fdformat /dev/fd0 7. disklabel -rw /dev/fd0 fd1440 8. newfs_msdos /dev/fd0 9. mount_msdos /dev/fd0 /mnt Result: panic: isa_dmacheck: no physical page present ....see above >Fix: Nothing I know to fix the problem. This occurs on my Compaq Deskpro, EN series 6266/3.2 DOM. BSD reports the CPU like this at bootup: CPU: Pentium II (266.62 Mhz 686 class CPU) Feel free to contact me if I may be of assistance: Scott Dunn, WAN Analyst National Processing Company (502) 315-4030 sdunn@npc.net >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 29 05:19:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA28734 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 05:19:24 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA28726 for ; Sun, 29 Nov 1998 05:19:23 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA28673; Sun, 29 Nov 1998 05:20:02 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA28277; Sun, 29 Nov 1998 05:09:35 -0800 (PST) (envelope-from nobody) Message-Id: <199811291309.FAA28277@hub.freebsd.org> Date: Sun, 29 Nov 1998 05:09:35 -0800 (PST) From: skumles@yahoo.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: i386/8894: Rebooting accidently because of missing floppy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8894 >Category: i386 >Synopsis: Rebooting accidently because of missing floppy >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 05:20:01 PST 1998 >Last-Modified: >Originator: Skumle Gregor m >Organization: >Release: 2.2.7 >Environment: FreeBSD skumle.image.dk 2.2.7-RELEASE FreeBSD 2.2.7-RELEASE #0: Sun Nov 29 10:39:31 CET 1998 root@skumle.image.dk:/usr/src/sys/compile/SKUMLE i386 >Description: When running 'mount -t msdos /dev/fd0a /mnt' the kernel result is reboot without unmount. Well it happens the disk not being inserted, it gave this (from log): 'Nov 29 12:38:08 skumle /kernel: fd0: Operation timeout Nov 29 12:38:09 skumle /kernel: fd0c: hard error reading fsbn 0 (No status)' so I pop in the disk that was not inserted at first. I type 'mount -t msdos /dev/fd0a /mnt' hit enter. Nothing happens first (no green floppy light on) it seems it is rebooting. It is rebooting, hrm. Here is some info from /var/log/messages 'Nov 29 12:37:48 skumle login: ROOT LOGIN (root) ON ttyv1' standard or usual entries in log removed 'Nov 29 12:38:08 skumle /kernel: fd0: Operation timeout Nov 29 12:38:09 skumle /kernel: fd0c: hard error reading fsbn 0 (No status) Nov 29 12:39:51 skumle /kernel: Copyright (c) 1992-1998 FreeBSD Inc.' snip 'Nov 29 12:39:52 skumle /kernel: WARNING: / was not properly dismounted' >How-To-Repeat: 1. Process: cron,sh,sh,init,csh,csh,csh,csh,csh,adjkerntz,getty,getty,rc5des. 2. See Full Description. I type more .history - nothing there seem to differ from my memory, it does not log any command of mount - last entry: su (this might be just before running mount) 3. It rebooted seconds after typing "mount -t msdos /dev/fd0a /mnt" and then pressing enter. I could not see anything on screen after typing the mount command and pressing enter (again - now with disk inserted) - I am not sure I can repeat the problem like I write.. >Fix: >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 Nov 29 08:59:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA12921 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 08:59:23 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA12912 for ; Sun, 29 Nov 1998 08:59:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA24270; Sun, 29 Nov 1998 09:00:01 -0800 (PST) Received: from vanmaren.aros.net (vanmaren.aros.net [208.219.24.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA12601 for ; Sun, 29 Nov 1998 08:49:36 -0800 (PST) (envelope-from vanmaren@vanmaren.aros.net) Received: (from vanmaren@localhost) by vanmaren.aros.net (8.9.1/8.9.1) id JAA27925; Sun, 29 Nov 1998 09:49:23 -0700 (MST) (envelope-from vanmaren) Message-Id: <199811291649.JAA27925@vanmaren.aros.net> Date: Sun, 29 Nov 1998 09:49:23 -0700 (MST) From: vanmaren@cs.utah.edu Reply-To: vanmaren@cs.utah.edu To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/8895: DEC 21152 PCI-PCI bridge chip isn't probed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8895 >Category: kern >Synopsis: DEC 21152 PCI-PCI bridge chip isn't probed >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 09:00:01 PST 1998 >Last-Modified: >Originator: Kevin Van Maren >Organization: University of Utah >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD vanmaren.aros.net 3.0-CURRENT FreeBSD 3.0-CURRENT #4: Mon Nov 9 20:53:15 MST 1998 vanmaren@vanmaren.aros.net:/usr/src/sys/compile/VANMAREN i386 >Description: The DEC 21152 PCI-PCI bridge chip, used in most newer multiport ethernet adapters and the newer Adaptec 3940UW is not identified in pcisupport.c >How-To-Repeat: Use a card with that bridge chip, or a motherboard with one on it, and it won't be identified. It will be listed as: chip5: rev 0x03 on pci0.11.0 instead of as: chip5: rev 0x03 on pci0.11.0 >Fix: This patch will cause it to be listed properly. Please back-port this patch to 2.2-STABLE in time for 2.2.8. Index: pcisupport.c =================================================================== RCS file: /usr/lsrc/FreeBSD/CVS/src/sys/pci/pcisupport.c,v retrieving revision 1.74 diff -u -r1.74 pcisupport.c --- pcisupport.c 1998-11-26 14:57:52-07 1.74 +++ pcisupport.c 1998-11-29 09:34:15-07 @@ -238,6 +238,8 @@ return ("IBM 82351 PCI-PCI bridge"); case 0x00011011: return ("DEC 21050 PCI-PCI bridge"); + case 0x00241011: + return ("DEC 21152 PCI-PCI bridge"); case 0x124b8086: return ("Intel 82380FB mobile PCI to PCI bridge"); /* VLSI -- vendor 0x1004 */ @@ -825,6 +827,7 @@ break; #if 0 case 0x00011011: /* DEC 21050 */ + case 0x00241011: /* DEC 21152 */ case 0x00221014: /* IBM xxx */ writeconfig (config_id, conf_pci2pci); break; >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 Nov 29 09:19:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA14993 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 09:19:25 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA14981 for ; Sun, 29 Nov 1998 09:19:23 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA24953; Sun, 29 Nov 1998 09:20:02 -0800 (PST) Date: Sun, 29 Nov 1998 09:20:02 -0800 (PST) Message-Id: <199811291720.JAA24953@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: toasty@dragondata.com Subject: kern/8834: NFS can corrupt local file cache Reply-To: toasty@dragondata.com Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/8834; it has been noted by GNATS. From: toasty@dragondata.com To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: kern/8834: NFS can corrupt local file cache Date: Tue, 24 Nov 1998 04:06:11 -0600 (CST) >Number: 8834 >Category: kern >Synopsis: NFS can corrupt local file cache >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 Nov 24 02:10:01 PST 1998 >Last-Modified: >Originator: Kevin Day >Organization: DragonData Internet Services >Release: FreeBSD 2.2.7-STABLE i386 >Environment: 2.2.5 NFS server, 2.2.7 NFS client. dmesg from client: Copyright (c) 1992-1998 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 2.2.7-RELEASE #0: Thu Jul 30 16:42:02 CDT 1998 root@shell1.dragondata.com:/usr/src/sys/compile/SHELL1 CPU: Pentium II (quarter-micron) (398.27-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x651 Stepping=1 Features=0x183f9ff,,MMX,> real memory = 402653184 (393216K bytes) avail memory = 391720960 (382540K bytes) Probing for devices on PCI bus 0: chip0 rev 2 on pci0:0:0 chip1 rev 2 on pci0:1:0 chip2 rev 2 on pci0:7:0 chip3 rev 1 on pci0:7:1 chip4 rev 1 int d irq 9 on pci0:7:2 chip5 rev 2 on pci0:7:3 de0 rev 34 int a irq 11 on pci0:14:0 de0: 21140A [10-100Mb/s] pass 2.2 de0: address 00:40:05:43:a3:a3 de1 rev 34 int a irq 10 on pci0:15:0 de1: 21140A [10-100Mb/s] pass 2.2 de1: address 00:40:05:42:dd:26 Probing for devices on PCI bus 1: vga0 rev 92 on pci1:0:0 Probing for devices on the ISA bus: sc0 at 0x60-0x6f irq 1 on motherboard sc0: VGA color <16 virtual consoles, flags=0x0> sio0 at 0x3f8-0x3ff irq 4 on isa sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 sio1 not found at 0x2f8 lpt0 at 0x378-0x37f irq 7 on isa lpt0: Interrupt-driven port lp0: TCP/IP capable interface lpt1 not found at 0xffffffff psm0 not found at 0x60 fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in wdc0 at 0x1f0-0x1f7 irq 14 on isa wdc0: unit 0 (wd0): wd0: 8063MB (16514064 sectors), 16383 cyls, 16 heads, 63 S/T, 512 B/S wdc1 at 0x170-0x177 irq 15 on isa wdc1: unit 0 (atapi): , removable, dma, iordy wcd0: 2412/5512Kb/sec, 128Kb cache, audio play, 256 volume levels, ejectable tray wcd0: no disc inside, unlocked npx0 flags 0x1 on motherboard npx0: INT 16 interface de0: enabling Full Duplex 100baseTX port de1: enabling 100baseTX port >Description: Heavy NFS activity on the client can corrupt local files in use >How-To-Repeat: dd if=/mnt/nfsserver/verylargefile of=/tmp/somefile bs=32k & Then, I started doing a kernel config, then compile. vers.c started getting bits and pieces of 'verylargefile' mixed in with it. Until I rebooted, every time vers.c was recreated by config, it had the same garbage in it. As a test, I tried copying the corrupted vers.c back to the nfs server. /kernel: short receive (0/4) from nfs server home.internal:/home /kernel: nfs server home.internal:/home: not responding last message repeated 61 times /kernel: short receive (0/4) from nfs server home.internal:/home /kernel: nfs server home.internal:/home: not responding last message repeated 25 times /kernel: /kernel: vm_fault: pager input (probably hardware) error, PID 15822 failure last message repeated 33297 times last message repeated 128988 times last message repeated 632240 times last message repeated 639222 times /kernel: pid 1328 (inetd), uid 0, was killed: exceeded maximum CPU limit /kernel: pid 15822 (cp), uid 0: exited on signal 11 (core dumped) At this point, the system locked up... ddb showed it in nfs_bwrite, or some function under it, apparently stuck in a loop. It wouldn't do a core dump. Also, if this helps... it seems somewhat related.... If an executable is ran from an nfs mount, and gets killed for exceeding it's CPU limit, it'll start doing the never-ending vm_fault: pager input (probably hardware) error over and over again, too. Why inetd died there makes no since, it has no cpu limit. >Fix: >Audit-Trail: >Unformatted: Kevin Day To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 29 09:19:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA15003 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 09:19:27 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA14984 for ; Sun, 29 Nov 1998 09:19:24 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA24958; Sun, 29 Nov 1998 09:20:03 -0800 (PST) Date: Sun, 29 Nov 1998 09:20:03 -0800 (PST) Message-Id: <199811291720.JAA24958@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: skumles@yahoo.com Subject: i386/8894: Rebooting accidently because of missing floppy Reply-To: skumles@yahoo.com Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/8894; it has been noted by GNATS. From: skumles@yahoo.com To: freebsd-gnats-submit@FreeBSD.ORG Cc: Subject: i386/8894: Rebooting accidently because of missing floppy Date: Sun, 29 Nov 1998 05:09:35 -0800 (PST) >Number: 8894 >Category: i386 >Synopsis: Rebooting accidently because of missing floppy >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 05:20:01 PST 1998 >Last-Modified: >Originator: Skumle Gregor m >Organization: >Release: 2.2.7 >Environment: FreeBSD skumle.image.dk 2.2.7-RELEASE FreeBSD 2.2.7-RELEASE #0: Sun Nov 29 10:39:31 CET 1998 root@skumle.image.dk:/usr/src/sys/compile/SKUMLE i386 >Description: When running 'mount -t msdos /dev/fd0a /mnt' the kernel result is reboot without unmount. Well it happens the disk not being inserted, it gave this (from log): 'Nov 29 12:38:08 skumle /kernel: fd0: Operation timeout Nov 29 12:38:09 skumle /kernel: fd0c: hard error reading fsbn 0 (No status)' so I pop in the disk that was not inserted at first. I type 'mount -t msdos /dev/fd0a /mnt' hit enter. Nothing happens first (no green floppy light on) it seems it is rebooting. It is rebooting, hrm. Here is some info from /var/log/messages 'Nov 29 12:37:48 skumle login: ROOT LOGIN (root) ON ttyv1' standard or usual entries in log removed 'Nov 29 12:38:08 skumle /kernel: fd0: Operation timeout Nov 29 12:38:09 skumle /kernel: fd0c: hard error reading fsbn 0 (No status) Nov 29 12:39:51 skumle /kernel: Copyright (c) 1992-1998 FreeBSD Inc.' snip 'Nov 29 12:39:52 skumle /kernel: WARNING: / was not properly dismounted' >How-To-Repeat: 1. Process: cron,sh,sh,init,csh,csh,csh,csh,csh,adjkerntz,getty,getty,rc5des. 2. See Full Description. I type more .history - nothing there seem to differ from my memory, it does not log any command of mount - last entry: su (this might be just before running mount) 3. It rebooted seconds after typing "mount -t msdos /dev/fd0a /mnt" and then pressing enter. I could not see anything on screen after typing the mount command and pressing enter (again - now with disk inserted) - I am not sure I can repeat the problem like I write.. >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 29 09:19:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA15016 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 09:19:28 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA14986 for ; Sun, 29 Nov 1998 09:19:24 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA24963; Sun, 29 Nov 1998 09:20:03 -0800 (PST) Date: Sun, 29 Nov 1998 09:20:03 -0800 (PST) Message-Id: <199811291720.JAA24963@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: sdunn@npc.net Subject: i386/8843: panic: isa_dmacheck: no physical page present (mount_msdos /dev/fd0..) Reply-To: sdunn@npc.net Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/8843; it has been noted by GNATS. From: sdunn@npc.net To: freebsd-gnats-submit@FreeBSD.ORG Cc: Subject: i386/8843: panic: isa_dmacheck: no physical page present (mount_msdos /dev/fd0..) Date: Tue, 24 Nov 1998 05:52:40 -0800 (PST) >Number: 8843 >Category: i386 >Synopsis: panic: isa_dmacheck: no physical page present (mount_msdos /dev/fd0..) >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Nov 24 06:00:01 PST 1998 >Last-Modified: >Originator: Scott Dunn >Organization: National Processing Company (NPC) >Release: 3.0-19989804-SNAP (GENERIC) #0 >Environment: FreeBSD year2000.y2k.net 3.0-19980804-SNAP FreeBSD 3.0-19980804-SNAP #0: Tue Aug 4 10:23:17 GMT 1998 root@make.ican.net:/usr/src/sys/compile/GENERIC i386 >Description: After formating, labeling, creating a new Unix file system and mounting /dev/fd0, then doing the same for a msdos file system BSD 3.0 initiates an auto reboot, with the following message: panic: isa_dmacheck: no physical page present syncing disks...111111111111111111 giving up Automatic reboot in 15 seconds >How-To-Repeat: 1. fdformat /dev/fd0 2. disklabel -rw /dev/fd0 fd1440 3. newfs /dev/fd0 4. mount /dev/fd0 /mnt 5. umount /dev/fd0 6. fdformat /dev/fd0 7. disklabel -rw /dev/fd0 fd1440 8. newfs_msdos /dev/fd0 9. mount_msdos /dev/fd0 /mnt Result: panic: isa_dmacheck: no physical page present ....see above >Fix: Nothing I know to fix the problem. This occurs on my Compaq Deskpro, EN series 6266/3.2 DOM. BSD reports the CPU like this at bootup: CPU: Pentium II (266.62 Mhz 686 class CPU) Feel free to contact me if I may be of assistance: Scott Dunn, WAN Analyst National Processing Company (502) 315-4030 sdunn@npc.net >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 29 09:19:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA15017 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 09:19:28 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA14992 for ; Sun, 29 Nov 1998 09:19:25 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA24968; Sun, 29 Nov 1998 09:20:03 -0800 (PST) Date: Sun, 29 Nov 1998 09:20:03 -0800 (PST) Message-Id: <199811291720.JAA24968@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: support@uunet.ca Subject: i386/8847: /usr/sbin/syslogd stops logging Reply-To: support@uunet.ca Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR i386/8847; it has been noted by GNATS. From: support@uunet.ca To: freebsd-gnats-submit@FreeBSD.ORG Cc: Subject: i386/8847: /usr/sbin/syslogd stops logging Date: Tue, 24 Nov 1998 08:45:00 -0800 (PST) >Number: 8847 >Category: i386 >Synopsis: /usr/sbin/syslogd stops logging >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 Nov 24 08:50:01 PST 1998 >Last-Modified: >Originator: Support >Organization: Support >Release: 2.2.6-RELEASE >Environment: FreeBSD machine.name 2.2.6-RELEASE FreeBSD 2.2.6-RELEASE #0: Wed Mar 25 02:2:49 GMT 1998 jkh@time.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: After a random period of time, syslog will stop logging but will not exit. It must be killed and restarted manually. Oddly enough, it *will* log itself being killed, but otherwise it logs nothing. >How-To-Repeat: Simply wait and log a whole *pile* of stuff. We're logging a lot of stuff on one of these machines and syslogd seems to not handle it very well. Considering upgrading machine to 3.0-RELEASE if no workaround or patch information becomes available. >Fix: None, unless you consider restarting it manually a 'fix'. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 29 11:09:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA24167 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 11:09:23 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA24158 for ; Sun, 29 Nov 1998 11:09:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA28358; Sun, 29 Nov 1998 11:10:01 -0800 (PST) Received: from vanmaren.aros.net (vanmaren.aros.net [208.219.24.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA23568 for ; Sun, 29 Nov 1998 11:01:48 -0800 (PST) (envelope-from vanmaren@vanmaren.aros.net) Received: (from vanmaren@localhost) by vanmaren.aros.net (8.9.1/8.9.1) id MAA29287; Sun, 29 Nov 1998 12:01:30 -0700 (MST) (envelope-from vanmaren) Message-Id: <199811291901.MAA29287@vanmaren.aros.net> Date: Sun, 29 Nov 1998 12:01:30 -0700 (MST) From: vanmaren@aros.net Reply-To: vanmaren@cs.utah.edu To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/8898: PCI devices without an associated driver are silently ignored Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8898 >Category: kern >Synopsis: PCI devices without an associated driver are silently ignored >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 11:10:00 PST 1998 >Last-Modified: >Originator: Kevin Van Maren >Organization: University of Utah >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD vanmaren.aros.net 3.0-CURRENT FreeBSD 3.0-CURRENT #4: Mon Nov 9 20:53:15 MST 1998 vanmaren@vanmaren.aros.net:/usr/src/sys/compile/VANMAREN i386 >Description: Unlike in 2.2, when 3.0 doesn't have a driver configured in for a PCI device, no message is generated. This can be the root of much confusion, especially for users who have used 2.2 and expected the behavior to be similar. This change occured as a result of the PCI code modifications that have yet not been completed. >How-To-Repeat: Boot a 3.0 kernel without support for one of the PCI devices in the system. It looks like the device doesn't exist at all. >Fix: This is NOT the correct fix, but it is the quick and dirty way to alert the user that the PCI device was found, but not attached to any driver. However, it is better than nothing until the PCI code has been finished, and it should work as a temporary solution. Index: pci_compat.c =================================================================== RCS file: /usr/lsrc/FreeBSD/CVS/src/sys/pci/pci_compat.c,v retrieving revision 1.13 diff -u -r1.13 pci_compat.c --- pci_compat.c 1998-11-09 01:03:01-07 1.13 +++ pci_compat.c 1998-11-29 09:34:15-07 @@ -430,6 +430,14 @@ dinfo->conf.pd_unit = unit; + } else { + /* + * XXX: quick hack so the user knows that the card + * was found, but there was no driver configured for it. + */ + printf("No driver for device 0x%08lx at pci%d:%d:%d\n", + pci_cfgread(cfg, PCIR_DEVVENDOR, 4), + cfg->bus, cfg->slot, cfg->func); } } >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 Nov 29 13:39:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA06668 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 13:39:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA06663 for ; Sun, 29 Nov 1998 13:39:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA02885; Sun, 29 Nov 1998 13:40:00 -0800 (PST) Date: Sun, 29 Nov 1998 13:40:00 -0800 (PST) Message-Id: <199811292140.NAA02885@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: vanmaren@cs.utah.edu Subject: kern/8895: DEC 21152 PCI-PCI bridge chip isn't probed Reply-To: vanmaren@cs.utah.edu Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/8895; it has been noted by GNATS. From: vanmaren@cs.utah.edu To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: kern/8895: DEC 21152 PCI-PCI bridge chip isn't probed Date: Sun, 29 Nov 1998 09:49:23 -0700 (MST) >Number: 8895 >Category: kern >Synopsis: DEC 21152 PCI-PCI bridge chip isn't probed >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 09:00:01 PST 1998 >Last-Modified: >Originator: Kevin Van Maren >Organization: University of Utah >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD vanmaren.aros.net 3.0-CURRENT FreeBSD 3.0-CURRENT #4: Mon Nov 9 20:53:15 MST 1998 vanmaren@vanmaren.aros.net:/usr/src/sys/compile/VANMAREN i386 >Description: The DEC 21152 PCI-PCI bridge chip, used in most newer multiport ethernet adapters and the newer Adaptec 3940UW is not identified in pcisupport.c >How-To-Repeat: Use a card with that bridge chip, or a motherboard with one on it, and it won't be identified. It will be listed as: chip5: rev 0x03 on pci0.11.0 instead of as: chip5: rev 0x03 on pci0.11.0 >Fix: This patch will cause it to be listed properly. Please back-port this patch to 2.2-STABLE in time for 2.2.8. Index: pcisupport.c =================================================================== RCS file: /usr/lsrc/FreeBSD/CVS/src/sys/pci/pcisupport.c,v retrieving revision 1.74 diff -u -r1.74 pcisupport.c --- pcisupport.c 1998-11-26 14:57:52-07 1.74 +++ pcisupport.c 1998-11-29 09:34:15-07 @@ -238,6 +238,8 @@ return ("IBM 82351 PCI-PCI bridge"); case 0x00011011: return ("DEC 21050 PCI-PCI bridge"); + case 0x00241011: + return ("DEC 21152 PCI-PCI bridge"); case 0x124b8086: return ("Intel 82380FB mobile PCI to PCI bridge"); /* VLSI -- vendor 0x1004 */ @@ -825,6 +827,7 @@ break; #if 0 case 0x00011011: /* DEC 21050 */ + case 0x00241011: /* DEC 21152 */ case 0x00221014: /* IBM xxx */ writeconfig (config_id, conf_pci2pci); break; >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 29 15:01:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12767 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 15:01:31 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from mail2.netcologne.de (mail2.netcologne.de [194.8.194.103]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA12731; Sun, 29 Nov 1998 15:01:14 -0800 (PST) (envelope-from a0074@netcologne.de) Received: from bsd3.scs-koeln.de (dial4-80.netcologne.de [195.14.233.80]) by mail2.netcologne.de (8.9.1/8.9.1) with SMTP id AAA01553; Mon, 30 Nov 1998 00:00:29 +0100 (MET) X-Ncc-Regid: de.netcologne Message-ID: X-Mailer: XFMail 1.1 [p0] on FreeBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199811281644.DAA25934@godzilla.zeta.org.au> Date: Sun, 29 Nov 1998 23:57:02 +0100 (CET) From: "R. Luettgen" To: Bruce Evans Subject: Re: Correction of nfsstat in 3.0 Cc: freebsd-current@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Bruce. Thank you for your information. I made this changes in my code and nfsstat runs. If VFS_GENERIC is the wrong one, what's the right one. I also see thet xsysinfo is not able to schow NFS activities. Is this based on t he same problems? Ralf On 28 -Nov-98 Bruce Evans wrote: >>I've a 3.0 RELEASE on my box and it works well. Today I want use nfsstat but >I g >>ot an error message. Here is the patch I make in nfsstat.c . >> >> >>172c172 >>< name[1] = vfc.vfc_typenum; >>--- >>> name[1] = VFS_GENERIC; > >vfc_typenum was broken in some (old, almost as old as 3.0) versions of the >kernel. VFS_GENERIC isn't correct here. It only works if nfs's vfc_typenum >happens to be VFS_GENERIC (= 0). This should never happen for current >kernels, because the type numbers start at 1. > >Bruce ---------------------------------- E-Mail: R. Luettgen Date: 29-Nov-98 Time: 23:57:02 This message was sent by XF-Mail ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 29 15:59:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA17361 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 15:59:23 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA17354 for ; Sun, 29 Nov 1998 15:59:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA07837; Sun, 29 Nov 1998 16:00:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA16789; Sun, 29 Nov 1998 15:49:35 -0800 (PST) (envelope-from nobody) Message-Id: <199811292349.PAA16789@hub.freebsd.org> Date: Sun, 29 Nov 1998 15:49:35 -0800 (PST) From: andrew@violet.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: i386/8901: gcc 2.8.1 fails to compile under FreeBSD 3.0-release Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8901 >Category: i386 >Synopsis: gcc 2.8.1 fails to compile under FreeBSD 3.0-release >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 16:00:01 PST 1998 >Last-Modified: >Originator: Andrew >Organization: violet.org >Release: 3.0-Release >Environment: FreeBSD violet.violet.org 3.0-RELEASE FreeBSD 3.0-RELEASE #0: Fri Nov 27 16:58:26 PST 1998 root@violet.violet.org:/usr/src/sys/compile/VIOLET i386 >Description: Running Freebsd 3.0-release, there appears to be a bug in /usr/lib/crt1.o which will not allow one to compile an ELF gcc-2.8.1 from origional source or even install the port: 1. the port: # make install ===> gcc-2.8.1 is broken for ELF: /usr/lib/aout/crt0.o: file not recognized: File format not recognized. # 2. compile from origional source: # make LANGUAGES=c ...... ./xgcc -B./ -DIN_GCC -g -I./include enquire.o -o enquire /usr/libexec/elf/ld: cannot open crt0.o: No such file or directory *** Error code 1 Stop. # 3. compile from origional source: (after either: a. symlink /usr/lib/crt0.o /usr/lib/crt1.o -or- b. editing /specs and replacing all occurences of crt0 -> crt1) # make LANGUAGES=c ...... ./xgcc -B./ -DIN_GCC -g -I./include enquire.o -o enquire /usr/libexec/elf/ld: warning: cannot find entry symbol start; defaulting to 080483d0 /usr/lib/crt1.o: In function `_start': /usr/lib/crt1.o(.text+0x49): undefined reference to `main' enquire.o: In function `overflow': /usr/build/gcc/gcc-2.8.1/./enquire.c(.text+0xd): undefined reference to `_signal' enquire.o: In function `setmode': /usr/build/gcc/gcc-2.8.1/./enquire.c(.text+0x57): undefined reference to `_(short, (void))' ...... /usr/build/gcc/gcc-2.8.1/enquire.c(.text+0xacb4): undefined reference to `_printf' enquire.o(.text+0xad05):/usr/build/gcc/gcc-2.8.1/enquire.c: more undefined references to `_printf' follow enquire.o: In function `__sputc': /usr/include/stdio.h(.text+0xd56d): undefined reference to `___swbuf' ./libgcc.a(__main.o): In function `__do_global_ctors': /usr/build/gcc/gcc-2.8.1/./libgcc2.c(.text+0x66): undefined reference to `_atexit' *** Error code 1 Stop. # >How-To-Repeat: Compile gcc-2.8.1 on FreeBSD 3.0-Release >Fix: >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 Nov 29 16:29:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA22379 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 16:29:26 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA22362 for ; Sun, 29 Nov 1998 16:29:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA09141; Sun, 29 Nov 1998 16:30:01 -0800 (PST) Received: from nina.pagesz.net (nina.pagesz.net [208.194.157.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA21645 for ; Sun, 29 Nov 1998 16:22:00 -0800 (PST) (envelope-from rhh@pagesz.net) Received: from stealth.dummynet. (juana-42.pagesz.net [208.213.126.42]) by nina.pagesz.net (8.8.7/8.8.7) with ESMTP id TAA31121; Sun, 29 Nov 1998 19:22:06 -0500 Received: (from rhh@localhost) by stealth.dummynet. (8.9.1/8.8.8) id TAA01296; Sun, 29 Nov 1998 19:22:35 -0500 (EST) (envelope-from rhh) Message-Id: <199811300022.TAA01296@stealth.dummynet.> Date: Sun, 29 Nov 1998 19:22:35 -0500 (EST) From: aa8vb@pagesz.net To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: aa8vb@pagesz.net X-Send-Pr-Version: 3.2 Subject: kern/8902: incorrect mount crashes 3.0-RELEASE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8902 >Category: kern >Synopsis: Incorrect mount crashes 3.0-RELEASE >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 16:30:01 PST 1998 >Last-Modified: >Originator: Randall Hopper >Organization: self >Release: FreeBSD 3.0-RELEASE i386 >Environment: Stock 3.0-RELEASE installed. Mix of FreeBSD UFS DOS FAT file systems. >Description: I've done this twice, so I think it's pretty reproducable. The system locks and reboots (after 15 seconds or so) when I incorrectly try to mount a DOS FAT file system as UFS, and then (seeing my error and the "invalid superblock" message), I turn around and try to correctly mount it as MSDOS. This locks and reboots the entire system. >How-To-Repeat: Given a DOS FAT file system on /dev/wd0s5 (extended DOS partition). Then just do: mkdir /f mount /dev/wd0s5 /f < you get a warning msg; of course; this isn't a UFS > mount -t msdos /dev/wd0s5 /f < SYSTEM LOCKS UP / REBOOTS > BTW, I doubt that it's relevent, but I have wd0s5 mounted read-only in my fstab: /dev/wd0s5 /f msdos ro,-m555 0 0 so to be absolutely complete, what I actually did was this: umount /f followed by the above mount commands. >Fix: Not known. >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 Nov 29 16:29:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA22383 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 16:29:29 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA22368 for ; Sun, 29 Nov 1998 16:29:23 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA09146; Sun, 29 Nov 1998 16:30:02 -0800 (PST) Date: Sun, 29 Nov 1998 16:30:02 -0800 (PST) Message-Id: <199811300030.QAA09146@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Garrett Wollman Subject: kern/8895: DEC 21152 PCI-PCI bridge chip isn't probed Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/8895; it has been noted by GNATS. From: Garrett Wollman To: vanmaren@cs.utah.edu Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: kern/8895: DEC 21152 PCI-PCI bridge chip isn't probed Date: Sun, 29 Nov 1998 19:27:43 -0500 (EST) <> Synopsis: DEC 21152 PCI-PCI bridge chip isn't probed Should make that ``Intel 21152...''. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 29 17:19:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA27780 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 17:19:25 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA27771 for ; Sun, 29 Nov 1998 17:19:23 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA10908; Sun, 29 Nov 1998 17:20:03 -0800 (PST) Received: from smtp1.vnet.net (smtp1.vnet.net [166.82.1.31]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA27625 for ; Sun, 29 Nov 1998 17:16:31 -0800 (PST) (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 UAA18528 for ; Sun, 29 Nov 1998 20:16:23 -0500 (EST) Received: from lakes.dignus.com (lakes.dignus.com [10.0.0.3]) by dignus.com (8.9.1/8.8.5) with ESMTP id UAA01051 for ; Sun, 29 Nov 1998 20:56:23 -0500 (EST) Received: (from rivers@localhost) by lakes.dignus.com (8.9.1/8.6.9) id UAA11836; Sun, 29 Nov 1998 20:16:54 -0500 (EST) Message-Id: <199811300116.UAA11836@lakes.dignus.com> Date: Sun, 29 Nov 1998 20:16:54 -0500 (EST) From: Thomas David Rivers Reply-To: rivers@dignus.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: conf/8903: NFS mounts & /etc/rc Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8903 >Category: conf >Synopsis: /etc/rc can do NFS mounts before the network is "up" >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 29 17:20:02 PST 1998 >Last-Modified: >Originator: Thomas David Rivers >Organization: Dignus, LLC >Release: FreeBSD 3.0-RELEASE i386 >Environment: Stock 3.0-RELEASE >Description: In /etc/rc - we do NFS mounts after the first stage of network startup (stage #1). However, named isn't started until a later stage. So, if you're also running a name server - you're NFS mounts hang. >How-To-Repeat: Add NFS mounts (by name) to /etc/fstab and run a primary name server for your zone. >Fix: I found the following diff to /etc/rc fixed my problem; but it moves the NFS mounts until after the third stage of network startup. I can imagine this might make diskless support a little "hairy". So - I left the original location commented out... *** rc.ori Sat Nov 28 16:20:48 1998 --- rc Sat Nov 28 16:35:33 1998 *************** *** 137,145 **** network_pass1 fi ! echo -n "Mounting NFS file systems" ! mount -a -t nfs ! echo . # Whack the pty perms back into shape. chmod 666 /dev/tty[pqrsPQRS]* --- 137,145 ---- network_pass1 fi ! #echo -n "Mounting NFS file systems" ! #mount -a -t nfs ! #echo . # Whack the pty perms back into shape. chmod 666 /dev/tty[pqrsPQRS]* *************** *** 207,212 **** --- 207,213 ---- network_pass2 fi + # Check the quotas (must be after ypbind if using NIS) if [ "X${check_quotas}" = X"YES" ]; then echo -n 'checking quotas:' *************** *** 219,224 **** --- 220,228 ---- network_pass3 fi + echo -n "Mounting NFS file systems" + mount -a -t nfs + echo . # build ps databases kvm_mkdb >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 Nov 29 19:09:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA07751 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 19:09:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA07746 for ; Sun, 29 Nov 1998 19:09:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA14797; Sun, 29 Nov 1998 19:10:00 -0800 (PST) Date: Sun, 29 Nov 1998 19:10:00 -0800 (PST) Message-Id: <199811300310.TAA14797@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Bruce Evans Subject: Re: kern/8902: incorrect mount crashes 3.0-RELEASE Reply-To: Bruce Evans Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/8902; it has been noted by GNATS. From: Bruce Evans To: aa8vb@pagesz.net, FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: kern/8902: incorrect mount crashes 3.0-RELEASE Date: Mon, 30 Nov 1998 14:07:07 +1100 >>Description: > > I've done this twice, so I think it's pretty reproducable. > The system locks and reboots (after 15 seconds or so) when > I incorrectly try to mount a DOS FAT file system as UFS, and > then (seeing my error and the "invalid superblock" message), I > turn around and try to correctly mount it as MSDOS. This > locks and reboots the entire system. This bug has already been reported in several PRs. A fix was committed but was backed out because it was wrong for the SMP case. RCS file: /home/ncvs/src/sys/kern/vfs_subr.c,v Working file: vfs_subr.c head: 1.173 ---------------------------- revision 1.166 date: 1998/10/14 15:05:52; author: dt; state: Exp; lines: +1 -13 Backed out rev. 1.164. It caused problems on SMP. PR: 8309 ---------------------------- ... ---------------------------- revision 1.164 date: 1998/10/12 20:14:09; author: dt; state: Exp; lines: +13 -2 UnVMIO vnodes of block devices when they are no longer in use. (Some things, like msdosfs, do not work (panic) on devices with VMIO enabled. FFS enable VMIO on mounted devices, and nothing previously disabled it, so, after you mounted FFS floppy, you could not mount msdosfs floppy anymore...) This is mostly a quick before-release fix. Reviewed by: bde ---------------------------- See PR7415 form more ambitious fixes. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 29 21:19:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA17628 for freebsd-bugs-outgoing; Sun, 29 Nov 1998 21:19:16 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA17611; Sun, 29 Nov 1998 21:19:10 -0800 (PST) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id QAA24322; Mon, 30 Nov 1998 16:18:37 +1100 Date: Mon, 30 Nov 1998 16:18:37 +1100 From: Bruce Evans Message-Id: <199811300518.QAA24322@godzilla.zeta.org.au> To: a0074@netcologne.de, bde@zeta.org.au Subject: Re: Correction of nfsstat in 3.0 Cc: freebsd-bugs@FreeBSD.ORG, freebsd-current@FreeBSD.ORG Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Thank you for your information. I made this changes in my code and nfsstat runs. >If VFS_GENERIC is the wrong one, what's the right one. The right one is in -current (rev.1.36 of kern/vfs_init.c). This was broken in rev.1.35 of kern/vfs_init.c just in time for the 3.0 release. As a workaround for 3.0, you can try using the nfs LKM. This bug only affects certain sysctls for statically configured vfs's, and in 3.0 only nfs has these sysctls (now ffs has some). >I also see thet xsysinfo is not able to schow NFS activities. Is this based on t >he same problems? Maybe. It seems to work here. Bruc e Index: vfs_init.c =================================================================== RCS file: /home/ncvs/src/sys/kern/vfs_init.c,v retrieving revision 1.35 retrieving revision 1.36 diff -c -2 -r1.35 -r1.36 *** vfs_init.c 1998/10/16 03:55:00 1.35 --- vfs_init.c 1998/10/25 10:52:34 1.36 *************** *** 37,41 **** * * @(#)vfs_init.c 8.3 (Berkeley) 1/4/94 ! * $Id: vfs_init.c,v 1.35 1998/10/16 03:55:00 peter Exp $ */ --- 37,41 ---- * * @(#)vfs_init.c 8.3 (Berkeley) 1/4/94 ! * $Id: vfs_init.c,v 1.36 1998/10/25 10:52:34 bde Exp $ */ *************** *** 279,283 **** vfsp = NULL; - exists = 0; l = &sysctl__vfs; if (vfsconf) --- 279,282 ---- *************** *** 288,308 **** vfc->vfc_typenum = maxvfsconf++; if (vfc->vfc_vfsops->vfs_oid != NULL) { ! oidpp = (struct sysctl_oid **)l->ls_items; ! for (i = l->ls_length; i-- && !exists; oidpp++) ! if (*oidpp == vfc->vfc_vfsops->vfs_oid) exists = 1; - } - if (exists == 0 && vfc->vfc_vfsops->vfs_oid != NULL) { - oidpp = (struct sysctl_oid **)l->ls_items; - for (i = l->ls_length; i--; oidpp++) { - if (*oidpp == NULL || - *oidpp == &sysctl___vfs_mod0 || - *oidpp == &sysctl___vfs_mod1) { - *oidpp = vfc->vfc_vfsops->vfs_oid; - (*oidpp)->oid_number = vfc->vfc_typenum; - sysctl_order_all(); break; } ! } } if (vfsp) --- 287,317 ---- vfc->vfc_typenum = maxvfsconf++; if (vfc->vfc_vfsops->vfs_oid != NULL) { ! /* ! * Attach the oid to the "vfs" node of the sysctl tree if ! * it isn't already there (it will be there for statically ! * configured vfs's). ! */ ! exists = 0; ! for (i = l->ls_length, ! oidpp = (struct sysctl_oid **)l->ls_items; ! i-- != 0; oidpp++) ! if (*oidpp == vfc->vfc_vfsops->vfs_oid) { exists = 1; break; } ! if (exists == 0) ! for (i = l->ls_length, ! oidpp = (struct sysctl_oid **)l->ls_items; ! i-- != 0; oidpp++) { ! if (*oidpp == NULL || ! *oidpp == &sysctl___vfs_mod0 || ! *oidpp == &sysctl___vfs_mod1) { ! *oidpp = vfc->vfc_vfsops->vfs_oid; ! break; ! } ! } ! ! vfc->vfc_vfsops->vfs_oid->oid_number = vfc->vfc_typenum; ! sysctl_order_all(); } if (vfsp) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 30 02:39:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA12661 for freebsd-bugs-outgoing; Mon, 30 Nov 1998 02:39:23 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA12653 for ; Mon, 30 Nov 1998 02:39:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA03955; Mon, 30 Nov 1998 02:40:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA12629; Mon, 30 Nov 1998 02:38:24 -0800 (PST) (envelope-from nobody) Message-Id: <199811301038.CAA12629@hub.freebsd.org> Date: Mon, 30 Nov 1998 02:38:24 -0800 (PST) From: andrew@squiz.co.nz To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: bin/8905: suggested change of 'ipfw show' layout Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8905 >Category: bin >Synopsis: suggested change of 'ipfw show' layout >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 Nov 30 02:40:01 PST 1998 >Last-Modified: >Originator: Andrew McNaughton >Organization: NewsRoom Ltd >Release: 2.2.7-RELEASE >Environment: FreeBSD aniwa.sky 2.2.7-RELEASE FreeBSD 2.2.7-RELEASE #0: Wed Nov 18 17:41:28 NZDT 1998 andrew@aniwa.sky:/usr/PAO/sys/compile/aniwa-PAO-261098 i386 >Description: 'ipfw show' allocates 10 characters each to number of packets and number of bytes. Since number of bytes is reliably an order or three larger, I suggest changing the space allocated on screen. >How-To-Repeat: run up a few gigs of traffic matching 1 rule. Type 'ipfw show' >Fix: root@aniwa# diff ipfw.c.orig ipfw.c 182c182 < printf("%10lu %10lu ",chain->fw_pcnt,chain->fw_bcnt); --- > printf("%9lu %11lu ",chain->fw_pcnt,chain->fw_bcnt); >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 Nov 30 05:09:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA24193 for freebsd-bugs-outgoing; Mon, 30 Nov 1998 05:09:24 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA24186 for ; Mon, 30 Nov 1998 05:09:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA11629; Mon, 30 Nov 1998 05:10:01 -0800 (PST) Date: Mon, 30 Nov 1998 05:10:01 -0800 (PST) Message-Id: <199811301310.FAA11629@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Kazutaka YOKOTA Subject: Re: kern/8773: Intel AN430TX motherboard ps/2 port not recognized by FreeBSD, other OS like Solaris/Intel and Win98 see it. Reply-To: Kazutaka YOKOTA Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/8773; it has been noted by GNATS. From: Kazutaka YOKOTA To: ksharman@yahoo.com Cc: freebsd-gnats-submit@freebsd.org, yokota@zodiac.mech.utsunomiya-u.ac.jp Subject: Re: kern/8773: Intel AN430TX motherboard ps/2 port not recognized by FreeBSD, other OS like Solaris/Intel and Win98 see it. Date: Mon, 30 Nov 1998 22:08:27 +0900 >>Number: 8773 >>Category: kern >>Synopsis: Intel AN430TX motherboard ps/2 port not recognized by FreeBSD >, other OS like Solaris/Intel and Win98 see it. >>Confidential: no >>Severity: serious >>Priority: medium [...] >>Release: 2.2.7 >>Environment: >>Description: Please give us some more details. Please give the -v option to the "boot:" prompt when you start the system, and send me the output from the `dmesg' command once the system is up. Please also describe your mouse. Kazu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 30 08:26:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA12084 for freebsd-bugs-outgoing; Mon, 30 Nov 1998 08:26:20 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA12079 for ; Mon, 30 Nov 1998 08:26:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA22901; Mon, 30 Nov 1998 08:20:01 -0800 (PST) Received: from under.suspicion.org (UNDER.SUSPICION.ORG [216.27.37.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA11822 for ; Mon, 30 Nov 1998 08:18:45 -0800 (PST) (envelope-from ventrex@under.suspicion.org) Received: (from root@localhost) by under.suspicion.org (8.9.1/8.9.1) id LAA15831; Mon, 30 Nov 1998 11:18:05 -0500 (EST) (envelope-from ventrex) Message-Id: <199811301618.LAA15831@under.suspicion.org> Date: Mon, 30 Nov 1998 11:18:05 -0500 (EST) From: thomas@stromberg.org Reply-To: thomas@stromberg.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/8906: newsyslog.c problem. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8906 >Category: bin >Synopsis: newsyslog errors out if PID is >30000 >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 Nov 30 08:20:01 PST 1998 >Last-Modified: >Originator: Thomas Stromberg >Organization: Research Triangle Consultants, Inc. >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD under.suspicion.org 3.0-CURRENT FreeBSD 3.0-CURRENT #0: Tue Nov 24 10:04:39 EST 1998 ventrex@under.suspicion.org:/vol/1/usr/src/sys/compile/blowntoad i386 >Description: If syslogd is ever restarted and gets a PID with a PID >30000, newsyslog errors out with "preposterous process number" This comes from: #define MAX_PID 30000 /* was 65534, see /usr/include/sys/proc.h */ if (pid < MIN_PID || pid > MAX_PID) { warnx("preposterous process number: %d", (int)pid); pid = 0; } >How-To-Repeat: Restart syslogd in a >30000 PID enviroment. This happened to me several times during the "dying daemons" bug. >Fix: Use this definition from /usr/include/sys/proc.h #define PID_MAX 99999 instead of #defining it inside of newsyslog.c ... -or- if your going to bother with defining it in newsyslog.c, at least boost it to 99999. >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 Nov 30 09:39:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA18606 for freebsd-bugs-outgoing; Mon, 30 Nov 1998 09:39:24 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA18598 for ; Mon, 30 Nov 1998 09:39:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA27393; Mon, 30 Nov 1998 09:40:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA18057; Mon, 30 Nov 1998 09:32:05 -0800 (PST) (envelope-from nobody) Message-Id: <199811301732.JAA18057@hub.freebsd.org> Date: Mon, 30 Nov 1998 09:32:05 -0800 (PST) From: skumles@yahoo.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: misc/8907: missing symlink, Xmmix: no help Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8907 >Category: misc >Synopsis: missing symlink, Xmmix: no help >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 Nov 30 09:40:01 PST 1998 >Last-Modified: >Originator: Skumle gregor >Organization: >Release: 2.2.7 >Environment: FreeBSD skumle.image.dk 2.2.7-RELEASE FreeBSD 2.2.7-RELEASE #0: Sun Nov 29 10:39:31 CET 1998 root@skumle.image.dk:/usr/src/sys/compile/SKUMLE i386 >Description: Packages? or missing symlink.. Cannot open help file: /usr/lib/X11/xmmix.hlp ah. Where? >How-To-Repeat: % locate xmmix.hlp /usr/X11R6/lib/X11/xmmix.hlp % su Password: skumle# mv /usr/X11R6/lib/X11/xmmix.hlp /usr/lib/X11/xmmix.hlp mv: rename /usr/X11R6/lib/X11/xmmix.hlp to /usr/lib/X11/xmmix.hlp: No such file or directory % cd /usr/lib % ls -l X11 -rw-r--r-- 1 root bin 0 Nov 27 11:22 X11 no symlink? % cd X11 X11: Not a directory. or symlink even. This package was installed on a new installation of fbsd from /stand/sysinstall. >Fix: % cd /usr/lib # rm -f X11 % ls -la X11 lrwxrwxrwx 1 root bin 18 Nov 27 13:10 X11 -> /usr/X11R6/lib/X11 this missing symlink may be result of some package, but I do not know if it is xmmix or other package from x11.. >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 Nov 30 10:02:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA21119 for freebsd-bugs-outgoing; Mon, 30 Nov 1998 10:02:34 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA21107; Mon, 30 Nov 1998 10:02:26 -0800 (PST) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA28714; Mon, 30 Nov 1998 10:03:05 -0800 (PST) Date: Mon, 30 Nov 1998 10:03:05 -0800 (PST) Message-Id: <199811301803.KAA28714@freefall.freebsd.org> To: bradley@dunn.org, rnordier@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/8821 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "warning: suggest parentheses" fixes State-Changed-From-To: open-closed State-Changed-By: rnordier State-Changed-When: Mon Nov 30 10:01:38 PST 1998 State-Changed-Why: Fixes break style(9) guidelines. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 30 10:59:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA28036 for freebsd-bugs-outgoing; Mon, 30 Nov 1998 10:59:28 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA28027 for ; Mon, 30 Nov 1998 10:59:27 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA01747 for freebsd-bugs@freebsd.org; Mon, 30 Nov 1998 11:00:03 -0800 (PST) Date: Mon, 30 Nov 1998 11:00:03 -0800 (PST) Message-Id: <199811301900.LAA01747@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 ------------------------------------------------------------------------------- a [1995/01/11] i386/105 bde Distributed libm (msun) has non-standard o [1996/06/05] kern/1293 Fatal trap 12: page fault while in kernel o [1996/10/08] kern/1744 peter run queue or proc list smashed 4 times in f [1996/10/28] kern/1919 se access to files/directories fails, gives o [1996/12/20] bin/2258 wollman route add/delete [network] xxx.yyy.zzz.0 f [1997/01/03] conf/2367 gibbs Buslogic SCSI driver bad probe of 742A EI f [1997/02/11] kern/2717 Panic with daily script (find) o [1997/03/08] kern/2923 panic: vm_fault: fault on nofault entry, o [1997/05/01] i386/3462 yokota using a PS/2 mouse causes kernel trap in o [1997/05/24] kern/3674 peter NFS in 2.2 RELEASE hangs. 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/06/25] kern/3949 sos The WD controller probe can fail when it 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/08/11] kern/4273 kernel page faults with heavy disk access o [1997/08/12] kern/4289 kernel panic: vm_fault: fault on nofault o [1997/08/20] kern/4345 Kernel panic is caused by passing file de o [1997/09/02] kern/4453 2.2.2 lockup on restart with ASUS-TX97 mo o [1997/10/01] kern/4673 Two panics, now crash dumps, always in re o [1997/10/25] kern/4849 2.2.5-RELEASE does not detect TI PCI-1130 o [1997/10/25] kern/4851 adaptec 2940U hangs system if scsi tape d o [1997/10/27] kern/4864 Boot Failure in FreeBSD 2.2.5 RELEASE, ma o [1997/10/28] misc/4876 SCSI hard disks die too often o [1997/11/07] kern/4968 No flow control setting seems to make the o [1997/11/10] kern/4996 peter NFS crash, possibly related to file bigge o [1997/11/20] kern/5117 panic: biodone: buffer not busy o [1997/11/23] kern/5130 Kernel panic GPF imediatly on loading ker s [1997/11/24] bin/5139 portmap does not find interfaces correctl o [1997/11/25] bin/5148 peter mode of file and access on NFS mounted p f [1997/12/04] i386/5223 mount_msdos /dev/fd0.1440 /mnt and failur f [1997/12/21] kern/5355 Fix for NULLFS problems s [1998/01/15] i386/5493 [PATCH] aic6330.c: kernel freeze when I a o [1998/01/26] bin/5572 A major time step blows cron up, runs tho o [1998/01/28] kern/5592 ffs_inode_hash_lock can get permanently l o [1998/01/28] i386/5594 System not bootable when bad partition ty o [1998/02/03] kern/5641 running processes at the IDLE priority (i o [1998/02/10] kern/5702 problem with address network routing o [1998/02/10] kern/5703 CDROM Media Error triggers complete syste o [1998/02/10] kern/5709 Fatal trap 12: page fault in kernel mode o [1998/02/12] bin/5732 2.2.5 Won't install using partition creat o [1998/03/01] kern/5886 2.2-STABLE crashes when unmounting a busy o [1998/03/01] kern/5895 Kernal dumps caused by fork? o [1998/03/02] kern/5898 2.2-stable kernel panics pmap_relase: fre o [1998/03/13] kern/5994 Kernel Panics on FreeBSD-3.0 current SMP o [1998/03/14] kern/6006 cy driver panics machine when a user dial o [1998/03/23] bin/6121 peter gethostbyname(3) no longer returns NO_DAT o [1998/03/25] kern/6133 optical drive with 1024-byte (1k) sectors o [1998/03/27] kern/6147 syncronus ufs does not sync o [1998/04/11] kern/6274 panic: handle_workitem_freeblocks: block o [1998/04/19] kern/6349 luigi Luigi's sound driver stall wihen it outpu o [1998/04/30] kern/6465 File contents are zeroed after reboot 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 f [1998/05/19] kern/6694 Network hangs, with "No buffers available o [1998/05/23] kern/6732 PCCARD kernel panic in sio driver s [1998/06/03] kern/6853 peter Having an inactive de0 in system leads to o [1998/06/06] misc/6873 FreeBSD 2.2.6 freezes o [1998/06/11] kern/6914 FreeBSD 2.2.6-RELEASE and NFS is UNSTABLE 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/06/24] kern/7042 No buffer space available a [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/07/15] kern/7288 /kernel: panic: ffs_alloccg: map corrupte o [1998/07/21] bin/7358 [PATCH] Security patches for locatedb etc o [1998/07/21] i386/7361 AHA-2940UW, Micron Millenia, ahc. Driver o [1998/08/06] ports/7513 se KDE kdm display manager doesn't work (and f [1998/08/07] i386/7528 install hangs @ probing devices screen wi o [1998/08/07] ports/7529 se kdehelp from stock kdebase-1.0 package do o [1998/08/12] kern/7596 serious data integrity problem when readi o [1998/08/14] kern/7611 custom-builtkernel causes fatal trap 12: o [1998/08/14] bin/7614 disklabel fails to write labal on scsi di 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] i386/7646 My system is freeze after X starup. s [1998/08/17] kern/7649 fenner [MFC] /sys/netinet/if_ether.c: "permanent o [1998/08/18] i386/7675 2.2.7 missed driver support for Compaq Ne o [1998/09/02] ports/7804 jseger cfengine (as installed by /stand/sysinsta 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/18] i386/7984 destructive install of 2.2.7 on 2.2.5 sys o [1998/09/20] i386/8000 jkh aout-to-elf-install fails on aout 3.0-BET o [1998/09/25] kern/8052 bad ip_var.h: missing ih_next field o [1998/09/28] misc/8071 some obj-links seem not to be taken o [1998/09/28] kern/8074 se CAM rescan operation fatal o [1998/10/03] gnu/8138 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/10] ports/8264 andreas xmysql / xmysqladmin won't compile. o [1998/10/12] conf/8290 3.0-19981009-BETA with DPT PM3334UW contr o [1998/10/16] kern/8345 mmap(2) hangs when dealing with certain f o [1998/10/17] ports/8354 obrien fwtk port does not compile o [1998/10/17] ports/8364 chuckr ports/mpich-1.1.1 PATCHES ENCLOSED o [1998/10/17] kern/8366 [PATCH] msdosfs re-mount kernel panic. o [1998/10/20] i386/8382 [PATCH] /stand/sysinstall don't unmount C o [1998/10/20] kern/8386 modload failure o [1998/10/27] bin/8469 fchdir not implemented in libc_r 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 o [1998/11/07] i386/8594 ide_pci disables second channel in 3.0-CU o [1998/11/08] i386/8603 DOS partition installation problem. o [1998/11/08] i386/8608 wdc1 is not detected on motherboards with a [1998/11/08] ports/8609 nectar eklogin service (kerberos klogind) fails o [1998/11/09] i386/8639 Accton EN1207B-TX dosen't work o [1998/11/10] kern/8641 FreeBSD crashes when global memory alloca o [1998/11/10] kern/8642 FreeBSD crashes when global memory alloca o [1998/11/11] kern/8653 FreeBSD 3.0 locks up on access to certain o [1998/11/12] kern/8671 sd0->da0 change breaks change of media an o [1998/11/12] i386/8673 bug in vm_page_alloc_contig() o [1998/11/16] kern/8711 FreeBSD 2.2.7 Accidently reboots ... o [1998/11/18] i386/8742 X Windows is ,loading with no accelerated o [1998/11/18] bin/8753 pwd_mkdb problem when having comments in o [1998/11/19] kern/8759 kernel o [1998/11/19] kern/8763 FreeBSD 3.0 system reboots or hangs often o [1998/11/21] i386/8787 install process hangs while adding defaul o [1998/11/22] ports/8795 ports xgal.sndsrv.freebsd.c is out of sync with o [1998/11/22] kern/8802 Users can obtain a bound privaliged TCP p 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/11/29] ports/8890 ports system free with X-3.3.3 on current with 125 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 s [1995/07/29] kern/638 Transmitted packets not passed to bpf in o [1995/10/18] bin/786 wpaul Problem with NIS and large group maps a [1996/02/17] bin/1030 cracauer /bin/sh does not pass environment variabl o [1996/05/24] misc/1247 yokota Conflicting header files 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 o [1996/08/04] kern/1467 gibbs 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 s [1996/09/21] kern/1661 ft driver hangs uninterruptably at "bavai o [1996/09/29] kern/1689 wollman TCP extensions throttles distant connecti o [1996/10/01] bin/1702 phk installing of tcl manpages fails from mak o [1996/10/04] kern/1724 mjacob HP colorado T4000S tape drive hangs syste o [1996/10/04] kern/1726 panic in kmem_malloc (dump available) 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 a [1996/10/22] ports/1866 wosch popclient flushes remote mailbox even wit s [1996/10/26] bin/1892 install(1) removes target file s [1996/11/08] gnu/1981 ypserv handles null key incorrectly o [1996/11/13] ports/2000 asami obsolete software in distfiles directory 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 s [1996/12/03] kern/2142 FP mask not saved for signal handlers s [1996/12/22] ports/2268 erich libc from linux emulator does not use /et 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 o [1997/01/09] bin/2430 mountd stops on loading if subnet mask is o [1997/01/12] i386/2471 Sound: Reset failed - Can't reopen device o [1997/01/13] misc/2479 sos NEC CD-ROM NOT RECOGNIZED; MATROX MISTIQU o [1997/01/13] bin/2489 steve gnats mangles sections o [1997/01/20] kern/2545 se < sd0(ncr0:6:0): COMMAND FAILED ==> Not 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 o [1997/02/05] bin/2671 Run-away processes using all CPU time 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/14] bin/2736 No boot block if no FreeBSD partitions on 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/17] kern/2751 asami 2GB limitation on CCD device partitions s 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/02/25] kern/2815 Custom Kernel crashes 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] kern/3054 OPL3 sound off by one note 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/05] ports/3205 jmz Mtools-3.0 attempts to flock() a disk par 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/09] kern/3244 ipfw flush closes connections o [1997/04/10] bin/3246 mtree -c should escape whitespace and spe o [1997/04/15] bin/3305 Can't do encrypted rlogin into self o [1997/04/18] kern/3327 using gdb may cause hanging processes. o [1997/04/19] bin/3355 se ncrcontrol fails when -DFAILSAFE in kerne 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 C++ exceptions don't work in shared libra o [1997/05/01] kern/3463 netstat -I packet count increase on sl0 w o [1997/05/03] bin/3478 pwd_mkdb and passwd 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/11] misc/3578 defining CXXFLAGS in /etc/make.conf or en 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 o [1997/05/13] conf/3591 parts in rc.local have no effects in rc.* s [1997/05/25] kern/3685 [PATCH] panic: fdesc attr o [1997/05/30] conf/3725 Cirrus Logic PCMCIA Controller Support 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/01] conf/3750 phk Potential improvements to rc.firewall 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/07] conf/3807 mitsumi cd-rom fx800 (8x cd-rom) is not r o [1997/06/08] gnu/3810 cvs can't handle multiple multiple-path d o [1997/06/16] misc/3883 @+netgroup entries break +NIS-user entrie 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/07] ports/4050 jfitz mrtg: rateup dumps core with malloc_optio 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 o [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/08/27] ports/4405 jfitz ascend-radius port is out-of-date 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/09] kern/4505 Support for Gravis UltraSound PnP card 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/19] bin/4585 imp termcap search fails too early 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/26] conf/4634 peter Sendmail Problem o [1997/09/27] bin/4638 telnet tries to resolve numerical IP addr 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] ports/4773 torstenb Error in posting news items to INN server 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/18] ports/4798 jmz setuid-root Xserver problem o [1997/10/24] kern/4843 48 meg double fault moved to 64 meg in 2. o [1997/10/25] bin/4850 peter Named crashes with "rm_datum: DB_F_ACTIVE 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/04] bin/4939 uuxqt unable to execute rnews program 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/10] bin/4998 peter mail and more do not work well with being o [1997/11/10] misc/5001 During installation sc0 device is require o [1997/11/10] misc/5005 f2c is buggy and seriously outdated (agai o [1997/11/11] bin/5008 libc_r not working at static linking o [1997/11/15] conf/5062 login.access not evaluated correctly o [1997/11/18] bin/5084 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/20] misc/5107 rebuilding of whatis database does not ca 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 s [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] misc/5343 booteasy problem o [1997/12/19] kern/5347 peter DEC (de0) ethernet card has no buffers af a [1997/12/21] docs/5358 doc USWC write posting must be turned off on 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 f [1998/01/15] misc/5499 when setting up the partition for free bs o [1998/01/15] bin/5500 "invalid hostname" is logged instead of I 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/20] ports/5530 asami fetch (in make fetch stage) do not use pa o [1998/01/22] bin/5548 syslogd core dumps when signaled o [1998/01/22] misc/5552 RE: Linux append=reboot=bios parameter im 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/05] bin/5661 /sbin/dump never finishes o [1998/02/06] misc/5673 2.2-980204-SNAP installer runs out of dis o [1998/02/09] bin/5693 groff -mm or groff -mmm ??? o [1998/02/10] i386/5698 LPIP causes spurious reboots o [1998/02/11] misc/5722 Brazil can't decide on daylight savings 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 o [1998/02/25] bin/5845 in sh, set -- `getopt ...` always returns o [1998/02/25] misc/5852 Page fault or error caused by writing to o [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/01] kern/5896 FreeBSD host can't network-write to other o [1998/03/02] kern/5904 panic: newfs o [1998/03/09] bin/5959 Cannot set up clocal gettys s [1998/03/09] bin/5961 [MFC] dup2 wrapper in libc_r is incomplet o [1998/03/10] kern/5965 FreeBSD TCP/IP connectivity get buried by 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/19] bin/6071 2.2.6-980315-BETA up grade option problem o [1998/03/20] bin/6074 imp Incremental dumps are backing up unchange o [1998/03/22] kern/6099 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/03/30] ports/6180 max youbin port has root-exploitable security 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/13] ports/6288 se KDE port glitches o [1998/04/14] kern/6300 System locks up in SMP mode when accessin f [1998/04/15] misc/6310 des explicit cast needed in floatpoint.h for 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/17] misc/6340 missing the terminfo, which causes librar 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/04/30] misc/6472 jb [PATCH] _thread_flockfile() hangs process a [1998/05/01] kern/6481 se Patches for VIA Socket 7 chipsets 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/07] misc/6549 steve You dont always get notified when someone o [1998/05/08] bin/6557 /bin/sh is broken o [1998/05/10] kern/6574 ipfw crash with DIAGANOSTICS 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 f [1998/05/21] kern/6710 Quiting PPP paniced my machine 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 s [1998/05/30] bin/6799 [THREAD,SCSI] problem with open(2) in lib 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] bin/6860 chgrp missing from /sbin 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/12] ports/6929 ports fxtv-0.47 fails to build on AccelX server o [1998/06/15] misc/6956 panic: Going nowhere without my init when o [1998/06/18] ports/6986 ports LaTeX vs. teTeX ; xdvi, xdvik vs. teTeX 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 "Invalid partition table" after new insta o [1998/07/08] ports/7208 torstenb INN port w/TCL enabled doesn't install TC 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/17] bin/7309 jb pthread_attr_setscope() missing o [1998/07/18] i386/7311 "Probing devices" hangs computer with err o [1998/07/20] ports/7330 gpalmer ucd-snmp produces too much log file when 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/7382 ports Pine4 does not co-exist with older instal o [1998/07/23] ports/7383 torstenb socks5 + ssh + redirection not working o [1998/07/23] ports/7384 /usr/lib/libncurses.so.3.1 is old s [1998/07/26] bin/7402 imp Games primes and factor don't understand o [1998/07/26] kern/7405 in pmap_changebit, pmap_pte_quick() retur s [1998/07/27] kern/7410 [PATCH] driver for arlan-655 f [1998/07/27] kern/7415 VMIO bug for FS with sub-page-size blocks 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/29] docs/7437 doc IPFW doco unclear about in/out o [1998/07/30] bin/7446 jdp Dlopen succeed in particular cases, but i s [1998/07/31] bin/7458 [STABLE][PATCH]'boot bug' in syslogd o [1998/08/01] ports/7463 ports Perl scripts in automake port require per o [1998/08/02] ports/7472 jseger apache12 doesn't build on -current o [1998/08/02] ports/7473 jseger apache12 port sets permissions incorrectl o [1998/08/04] ports/7490 ache `setenv LANG/LC_CTYPE C` makes tcsh unusa o [1998/08/05] kern/7499 Panic in ffs_blkfree() 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/12] misc/7600 Pthreads Bug - Interaction between printf 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/26] bin/7749 /etc/daily will not run /etc/uuclean.dail o [1998/08/26] ports/7750 jseger BIND 8.1.2 port does not install document o [1998/08/27] kern/7754 kernel panics if NFS server uses LKM vs. o [1998/08/27] bin/7755 brian 2.2.7 user PPP lockups o [1998/08/27] bin/7756 disklabel misbehaving on seriously sick d o [1998/08/27] ports/7761 ports Update to recent port submission of nicet 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/30] docs/7785 doc Securelevel 3 not documented in init(8) o [1998/08/31] kern/7793 kernel wedges when netscape exits o [1998/09/01] docs/7795 doc Error in gcc man page o [1998/09/01] kern/7797 System halted with "panic: pmap_release: o [1998/09/02] ports/7805 se Port bytebench-3.1 is broken! ("shell" pa o [1998/09/02] ports/7813 ports make reports nn as BROKEN= checksum o [1998/09/02] i386/7815 probe can't find wdc0 o [1998/09/02] bin/7817 pw(8) doesn't work correctly with random 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/08] bin/7863 libc_r calls free() while in a signal han o [1998/09/09] bin/7872 mountd(8) can apply flags to wrong filesy 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/10] misc/7889 move_aout_libs.sh doesn't use ldconfig co o [1998/09/11] i386/7898 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/15] bin/7939 sed's substitute command fails if the rep f [1998/09/15] bin/7943 des ftpd: ~ is ~root! o [1998/09/16] misc/7945 2.2.6->2.2.7 upgrade clobbered /etc witho 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] misc/7965 doFS.sh contains direct references to /mn o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas o [1998/09/18] bin/7979 Typo and one odd thing in -Stable login.c o [1998/09/18] misc/7981 SIGPIPE & write() errors with -libc_r o [1998/09/19] ports/7987 ports Can't post news with TRN + NNTPCACHE o [1998/09/19] conf/7989 if we enable firewall and natd we losing o [1998/09/21] bin/8006 rsh does not accept data on input stream o [1998/09/22] conf/8031 /etc/rc looks for /etc/sendmail.cf at sta o [1998/09/24] bin/8040 Makefile has had "-Werror" for a long tim o [1998/09/25] kern/8050 Portal Filesystem (mount_portal) does not o [1998/09/25] ports/8053 markm Perl 5 port has broken foreach behavior, o [1998/09/26] bin/8055 fsck has a number of bugs o [1998/09/26] misc/8058 Cash problem when using FreeBSD-2.2.7 and o [1998/09/27] ports/8064 markm perl5 port ignores local settings for CC 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 o [1998/09/29] ports/8088 torstenb short writes using ssh-1.2.* o [1998/09/30] ports/8098 ports Update of R port o [1998/09/30] gnu/8099 some bugs in cpio o [1998/09/30] kern/8112 2.2.7 + CAM system panics removing shared o [1998/10/01] i386/8125 DPT SCSI driver *still* not on 3.0 boot f o [1998/10/02] bin/8129 libc_r write() on broken pipe, no error r o [1998/10/03] kern/8137 quotaoff followed by quotaon can crash sy o [1998/10/05] bin/8155 current make fails with "Error expanding o [1998/10/05] kern/8158 sio driver breaks in 2.2.7R in kernels wi o [1998/10/06] kern/8169 probe fail PnP sound card (YMF-719 base b o [1998/10/06] kern/8180 open("..",O_RDONLY|O_NONBLOCK) fails o [1998/10/06] ports/8181 peter date problems with exmh2 f [1998/10/07] bin/8183 des Signal handlers in inetd.c are unsafe o [1998/10/07] bin/8195 ee dumps core on window resize o [1998/10/08] kern/8206 Unconected UDP socket declined, if not ro o [1998/10/08] kern/8215 Creating 2 root partitions in sysinstall o [1998/10/11] bin/8266 nfsd should allow just nfs version two re o [1998/10/11] ports/8276 ports 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 f [1998/10/15] kern/8340 Adaptec 1540 Controller not getting probe o [1998/10/16] conf/8350 Problems with /etc/rc.firewall o [1998/10/17] docs/8361 doc Change to handbook39.html.. see diff o [1998/10/17] ports/8363 obrien Graphical VIM (GVIM) doesn't work o [1998/10/19] i386/8370 unable to install 3.0-RELEASE from dos pa o [1998/10/19] i386/8373 make buildworld on 3.0-RELEASE don't wor o [1998/10/19] misc/8374 3.0-RELEASE/src/install.sh refers to miss o [1998/10/19] kern/8375 pthread_cond_wait() spins the CPU 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/8387 ports teTeX-0.4 port installs binaries that sha o [1998/10/20] docs/8392 doc Files to download for install from MS-DOS 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/21] kern/8400 ad1848.c does not recognize the CS4235 ch o [1998/10/21] ports/8401 obrien vim 5 graphic mode won't run on ELF syste o [1998/10/22] i386/8414 ibcs2 emulation sets serial baud-rate inc o [1998/10/22] kern/8415 SMP kernel freezes while downloading larg o [1998/10/22] kern/8416 vm_fault might deadlock when locking back 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/23] gnu/8425 3.0's gdb can't read 3.0's kernel to debu o [1998/10/23] bin/8426 gprof still expects gmon.out 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/25] i386/8446 DOS install option does not work in 3.0-R o [1998/10/25] bin/8447 syslogd doesn't implement documented feat o [1998/10/25] gnu/8453 o [1998/10/28] kern/8476 rnordier BootEasy/FBSDBOOT not recognizing FreeBSD o [1998/10/28] misc/8480 odd Korean timedef(LC_TIME) o [1998/10/29] kern/8485 A quirk bug in sys/cam/cam_xpt.c o [1998/10/29] misc/8493 Stable build process fails to install obj o [1998/10/30] kern/8500 FreeBSD 3.0 thread scheduler is broken o [1998/10/30] ports/8502 ports GNAT 3.10 port uses clock_gettime which i o [1998/10/31] bin/8518 freopen() in append mode followed by ftel o [1998/11/01] kern/8528 swap_pager: suggest more swap space warni o [1998/11/01] kern/8534 insufficient support routines for poll(2) o [1998/11/01] docs/8535 doc insufficient support documentation for kl o [1998/11/02] i386/8544 mount /dev/wd0s1 + mount_msdos /dev/wd0s1 o [1998/11/02] conf/8549 how to configure the network Card and Set o [1998/11/03] ports/8557 billf update to ports/7874 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 ports 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/07] kern/8599 poll(2) sets POLLNVAL for negative descri 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 a [1998/11/09] misc/8623 wollman Time zone for Japan is strange (seen in / 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/12] misc/8672 adduser is very slow if the system has se o [1998/11/14] kern/8683 sos Problems with Atapi in 3.0... o [1998/11/14] i386/8684 [Patch] Sound only come out from left cha o [1998/11/14] bin/8685 sending a SYST by ftp client closes conne o [1998/11/15] ports/8694 ports Recommend to change category name: biolog o [1998/11/15] bin/8699 ypbind can't bind to server o [1998/11/16] kern/8720 jkh using sd-names in SCSI "wiring" prevents o [1998/11/17] kern/8729 SYSV Semaphore blocks all threads o [1998/11/17] kern/8732 nfs mounts with 'intr' can cause system h o [1998/11/18] bin/8739 atoi and modunload f [1998/11/18] kern/8743 imp 3.0 boot disk will not probe for Adaptec o [1998/11/18] bin/8745 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/22] kern/8793 mount_portal update/bug fix/addition o [1998/11/22] kern/8797 addition of tcplisten namespace to portal o [1998/11/22] kern/8798 Bug to to portal code. s [1998/11/22] ports/8803 billf Postgresql port fails while patching 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] i386/8843 panic: isa_dmacheck: no physical page pre o [1998/11/24] ports/8845 vanilla p5-Mysql does not compile o [1998/11/24] i386/8847 /usr/sbin/syslogd stops logging o [1998/11/24] ports/8849 ports can't install because of script bug 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/27] bin/8872 pthread_cond_timedwait() can cause lost p o [1998/11/28] kern/8875 Patch to allow DMA IDE with generic chips o [1998/11/28] kern/8882 3.0-RELEASE hangs when mounting Micropoli o [1998/11/28] ports/8883 ports Suexec expects the server to be running a o [1998/11/29] ports/8891 ports ssh2 port assume you have zipped manpage o [1998/11/29] i386/8894 Rebooting accidently because of missing f o [1998/11/29] i386/8901 gcc 2.8.1 fails to compile under FreeBSD o [1998/11/29] kern/8902 Incorrect mount crashes 3.0-RELEASE o [1998/11/29] conf/8903 /etc/rc can do NFS mounts before the netw o [1998/11/30] ports/8904 andreas Qt port has inaccurate dependencies, and 532 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- 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 scrappy 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 o [1995/12/17] kern/900 dg ext2fs triggers divide by zero trap in vn o [1996/01/21] bin/961 hoek 'more $file', incorrect CRLF compacting. s [1996/01/28] kern/975 getrusage returns negative deltas a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases s [1996/02/07] bin/999 /usr/share/mk/sys.mk missing common $(RM) 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/06/18] i386/1331 [PATCH] changes and bug in ft driver 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 a [1996/08/07] ports/1470 asami need more info in the ports structure s [1996/08/17] bin/1502 [PATCH] vmstat 'avm' field merges with pr o [1996/08/19] kern/1514 dg mlock fails on readonly regions o [1996/08/20] kern/1516 dg vm_fault.c contains dead code or too many o [1996/08/21] ports/1520 erich sudo dosn't recognise certain passwords a a [1996/09/04] bin/1565 Moving a file to it's link completely rem 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 doc ppp server doc submission s [1996/10/13] kern/1788 wollman netstat gives negative numbers for tcp by 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 o [1996/10/20] docs/1855 joerg Addition to LINT 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/22] bin/2090 clients may bind to FreeBSD ypserv refusi o [1996/11/25] misc/2105 jmg bsd.lib.mk has problems with STRIP and IN o [1996/11/26] i386/2108 sos [ATAPI] wcd driver may hang under certain s [1996/11/28] bin/2119 [PATCH] mount lies to child about argv0, s [1996/12/02] bin/2137 vm statistics are bad o [1996/12/07] ports/2169 pst zephyr port disagrees with Kerberos causi o [1996/12/08] bin/2184 peter sendmail has lots of trouble with local d a [1996/12/10] ports/2190 asami need cross-reference to xpdf from X11 por 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 s [1996/12/17] i386/2234 fbsdboot.exe does not turn off floppy dri 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/07] bin/2410 pppd(8): failing PAP doesn't force line d 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/15] bin/2499 des fetch ftp://bla bla doesn't bail in disk o [1997/01/17] bin/2518 /usr/bin/tar is out of date o [1997/01/21] bin/2556 Patch for calendar.c o [1997/01/26] misc/2596 dd refuses to respond to SIGkill 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/01/29] misc/2617 Utility submission - upsmon - UPS monitor o [1997/01/31] bin/2630 [PATCH] xargs does excessive and inconsis 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/05] bin/2672 Problem with telnetd 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] conf/2709 FBSD 2.1.6 X-Server installation setup ut 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/02/26] conf/2822 ftp install specifying URL confusing o [1997/02/27] gnu/2827 after make world genclass is not installe 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/05] kern/2886 fenner mbuf leak in multicast code 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/09] i386/2924 sos syscons X keyboard gets stuck in capsmode o [1997/03/10] bin/2934 sh(1) has problems with $ENV o [1997/03/10] bin/2938 Add -b, -l, and -f options to du(1) o [1997/03/11] ports/2949 asami bsd.port.mk needs something like FETCH_EN o [1997/03/14] ports/2988 joerg vga font is not built o [1997/03/17] ports/3012 obrien qmailanalog port in incoming 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 uucpd.c should normalize host names as lo 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/10] bin/3251 xsysinfo stops refreshing and wastes CPU o [1997/04/10] kern/3253 scsiconf.c: make ZIP disks use optical dr 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 /etc/daily did not run on April 6, 1997 o [1997/04/17] ports/3318 ports New port: jigsaw (Java-based HTTP server) 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/3506 [PATCH] more did not show iso-8859-n char o [1997/05/05] bin/3508 FreeBSD 2.2.1 do not view SCSI disk at sw o [1997/05/06] docs/3522 Man pages close(2) misses fcntl lock info 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 o [1997/05/09] bin/3556 imp Bug with -i option in /usr/bin/lpr o [1997/05/09] bin/3558 make reinstall collapses on install-info s [1997/05/09] kern/3571 Mounted ext2 prevents umount of filesyste o [1997/05/11] conf/3577 eBones and OBJLINK=yes fails to build o [1997/05/12] kern/3584 cleanup TCP_REASS macro in tcp_input.c o [1997/05/13] conf/3590 doc FAQ gives bad reccomendation re: xdm 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] bin/3638 /bin/w can't handle long /dev/{tty,cua}xx 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 o [1997/05/21] ports/3657 dburr Port of NCSA HyperNews submitted as p5-hy s [1997/05/22] kern/3667 [PATCH] make vn LKM'able. s [1997/05/30] docs/3720 doc Addition for supported Hardware o [1997/05/31] ports/3729 scrappy pgsql dies when initiated o [1997/06/01] conf/3751 Improvements to /etc/rc{,.network,.pccard o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) o [1997/06/04] bin/3778 wpaul ypbind -S domainname,server1,... does not o [1997/06/07] bin/3805 single process tftpd o [1997/06/09] bin/3826 KerberosIV sometimes hangs rcp o [1997/06/10] kern/3836 Cannot remove HUGE directory o [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/12] kern/3853 netboot/ns8390.c breaks NS datasheet o [1997/06/13] bin/3859 Setting the $0 variable in perl dosnt do 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/16] conf/3886 peter install does not build sendmail host stat o [1997/06/17] ports/3892 itojun new port: www/webxref (cross-reference ge 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] ports/3958 obrien a2ps fails if used according to man 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/08] misc/4063 2.2.2R Installation fails if Jaz drive sp o [1997/07/13] ports/4083 ache netscape wrapper doesn't hand off args co 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 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 o [1997/08/03] kern/4221 Kernel mode pppd doesen't update wtmp on o [1997/08/04] conf/4229 Ethernet interface unreachable on bootup o [1997/08/06] ports/4232 scrappy Boot-time start of postgressql postmaster 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 a [1997/08/09] kern/4257 itojun scsi RESERVATION CONFLICT support needed o [1997/08/10] ports/4264 ports mftp get a Segmentation fault o [1997/08/12] misc/4285 SDL RISCom/N2 (ISA) a [1997/08/13] gnu/4290 ache man wrong viewed koi8-r manpages and neqn 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/26] ports/4391 ports New port: VPCE o [1997/08/26] misc/4395 if exists(secure) in /usr/src/Makefile is 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 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/17] ports/4565 torstenb News port: ircII-current (ircII-2.9a8/col o [1997/09/18] conf/4572 /etc/rc.network loads ipfirewall lkm rega 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/02] kern/4680 lkm version of vn.c 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/12] gnu/4748 cc -Wformat too sensitive o [1997/10/15] gnu/4771 diff to correct misleading total bytes in a [1997/10/19] ports/4808 andreas Broken password.c in backend/libpq for Fr o [1997/10/22] bin/4828 ypxfr makes false assumption about RPC ca o [1997/10/23] docs/4833 Manual page missing for pccardc o [1997/10/23] kern/4837 bad error return from rmdir() with msdos a [1997/10/23] ports/4839 ports New port: spin - Verification system for 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/03] ports/4928 asami no 'update' target in /usr/ports/Makefile s [1997/11/04] ports/4937 mph A looks-nice audio level meter port is no o [1997/11/07] ports/4967 ports New port: Carl DeClerck's mserver-0.21 mo 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/10] misc/4999 Entering '?' at first boot prompt in inst 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] kern/5038 FreeBSD can't read MS Joliet CDs. o [1997/11/14] gnu/5039 libdialog fails to resore terminal o [1997/11/14] kern/5040 Support for "SCSI-0" devices f [1997/11/14] ports/5045 ports freebsd.ftp.markers for xearth is out of o [1997/11/14] bin/5047 ipfw(8) IP address resolving problem if o 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/17] bin/5072 /usr/bin/fetch parses a URL incorrectly o [1997/11/18] misc/5081 sysinstall glitches o [1997/11/18] misc/5082 Permit upgrade of multi-disk system, or d o [1997/11/20] kern/5108 pmap_release panics with 'freeing held pa o [1997/11/20] bin/5109 patch to ftpd, new option to limit number 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 s [1997/11/25] misc/5147 [PATCH] a shell script to help -CURRENT u o [1997/11/26] misc/5153 jkh release file checksums in wrong file o [1997/11/26] ports/5158 ports thot editor port doesn't install template 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/03] ports/5201 ports New port: fidogate o [1997/12/03] conf/5213 My SB AWE64 isn't being recognized. f [1997/12/05] kern/5231 Mounted MS-DOS floppy disk writes unrelia o [1997/12/06] misc/5239 jkh ata + atapi & /stand/sysinstall & dos o [1997/12/06] ports/5240 ports Incorrect path in pkfonts (fix) 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 f [1997/12/15] ports/5302 ache webcopy port doesnt work? o [1997/12/15] ports/5312 ports New port: xwpl o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp o [1997/12/28] ports/5393 billf New port: DOOM o [1997/12/30] ports/5397 ports New port: fly 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 o [1998/01/08] ports/5446 se KDE port does not install using make in / s [1998/01/08] bin/5451 roberto [PATCH] halt/reboot does not execute /etc o [1998/01/09] ports/5472 erich xmmix-1.2 prot won't compile - "SOUND_VER o [1998/01/10] ports/5475 ports New port: abacus sentry o [1998/01/11] bin/5483 Login(1) clears utmp entry s [1998/01/15] docs/5487 doc Adding documentation for scsi(8) usage wi 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) @ o [1998/01/15] ports/5509 ports New port: xruskb-1.5.1 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 o [1998/01/19] misc/5525 bde gid and uid in struct pwd are ints, when 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/21] misc/5539 ftp problems with ftp.freebsd.org ? "Tran o [1998/01/21] bin/5541 ppp -alias (2.2.5-STABLE) has troubles wi o [1998/01/22] docs/5545 doc http://www.freebsd.org/handbook/handbook3 o [1998/01/22] bin/5549 Kernel Problem o [1998/01/24] i386/5559 PC-Card joystick ports were not supported o [1998/01/25] bin/5567 trying to mount a joliet filesystem cdrom o [1998/01/26] ports/5570 ports New port: rise 0.3.3 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/04] ports/5653 ports New port of ICI language a [1998/02/05] ports/5660 ports New port type1inst 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/07] ports/5675 ports New port in category devel: DOC++ o [1998/02/09] kern/5689 sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] ports/5706 ports New port: ja-dvi2dvi-1.0 (japanese/dvi2dv 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/17] ports/5771 ports New port: Stuttgart Neural Network Simula s [1998/02/17] misc/5772 peter nfsstat does not work f [1998/02/17] ports/5776 billf New port: lzo (category compression) o [1998/02/18] i386/5779 BOUNCE_BUFFERS option in LINT needs modif o [1998/02/18] i386/5784 ibcs2 emulation not handling ioctl(..FION a [1998/02/18] misc/5786 definition of speed_t in termios.h is not 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 a [1998/02/22] ports/5814 ports New port: XShodou o [1998/02/22] ports/5821 billf New port: Swish-E, a Web site indexer 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. o [1998/02/25] docs/5848 [PATCH] Update web.mk to handle SGML file 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] ports/5859 ports xxgdb port doesn't recognize the -k optio 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/01] ports/5885 ports New port: dc20ctrl-0.4 (graphics/dc20ctrl 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/07] conf/5936 Add hostname to C shell prompt o [1998/03/08] bin/5944 cvs doesn't work correct. o [1998/03/08] ports/5946 ports New port biology/molmol 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/5970 ports psmisc ports uploaded to freebsd.org:/pub 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/15] ports/6017 ports new port: yacl o [1998/03/15] ports/6018 ports new port: ml-3.3 a [1998/03/15] ports/6020 ports new port: Xfstt-0.9.7 o [1998/03/15] ports/6027 max New Port: tgif2tex o [1998/03/16] kern/6032 poor TCP performance using FDDI over long o [1998/03/16] docs/6036 doc New handbook section 10.4.3.4 - si driver s [1998/03/18] ports/6053 kuriyama new port request: korean/hanIM o [1998/03/18] misc/6060 peter Sendmail executable, not doing MASQUERADE o [1998/03/18] bin/6064 Script to update files installed by /usr/ o [1998/03/19] i386/6067 boot.help pushes kernel list off screen o [1998/03/21] ports/6085 billf New port: pavuk-0.8 o [1998/03/22] conf/6096 /sys/i386/conf/LINT: edit(???) sound_conf o [1998/03/22] i386/6098 FreeBSD only uses 16M of 48M on Compaq De o [1998/03/22] gnu/6107 gdb should support PRINTF_HAS_LONG_LONG o [1998/03/23] ports/6113 ports new port: rinfo-1.2 o [1998/03/23] ports/6120 ports New port: xtetris-2.6 o [1998/03/27] bin/6144 telnet for 8-bit data path o [1998/03/27] ports/6151 ports New port: xrus-1.5.2 o [1998/03/28] ports/6153 ports New port: flick 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/29] ports/6171 ports New port: xtron-1.1a o [1998/03/30] bin/6176 running architextSearch (excite) under li 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/01] ports/6194 ports New port: mirrormagic-1.3 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] bin/6227 as doesn't handle this instruction o [1998/04/06] bin/6228 Syslogd not working according to manpage o [1998/04/06] ports/6230 rse gfont_mkgdf calls wrong interpreter o [1998/04/06] bin/6234 ypserv -d is broken o [1998/04/07] ports/6235 ports New port: scwm-icon o [1998/04/07] ports/6236 ports New port: scwm o [1998/04/07] kern/6247 Gravis UltraSound Classic no longer works o [1998/04/09] kern/6255 SI driver fix for Jet ISA memory size o [1998/04/09] kern/6256 SI driver - new T225 download code 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/6308 [PATCH] date(1) -v argument cannot vary s o [1998/04/15] ports/6311 ports New port: gsfonts o [1998/04/15] ports/6312 ports New port: ghostscript-3.33 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. a [1998/04/16] ports/6321 andreas can't run any version of PostgreSQL on 2. o [1998/04/17] ports/6331 ports New port: libshhopt-1.1.3 o [1998/04/17] bin/6332 bde /usr/include/time.h doesn't compile with o [1998/04/17] conf/6334 -DALLLANG should be moved from src/Makefi 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 a [1998/04/19] ports/6355 ports New port: qplug - Netscape plugin to show o [1998/04/20] bin/6359 routed does sent router discovry solicita o [1998/04/20] ports/6361 ports New port: GNU Pascal Compiler s [1998/04/20] bin/6371 [PATCH?] fetch(1) uses HTTP_PROXY for ftp o [1998/04/23] ports/6393 ports New port: MultiMedia package - CD player, f [1998/04/23] bin/6399 [PATCH] When using "-u" mount doesn't sta o [1998/04/24] ports/6405 ports vrweb port does not build; ignores local s [1998/04/25] ports/6414 kuriyama new ports for ja-color-lynx2.8rel.3 (modi s [1998/04/25] ports/6416 kuriyama new ports for ja-color-lynx2.8.1dev.7 (mo a [1998/04/27] kern/6432 IFF_NOARP does not affect ethernet interf o [1998/04/28] ports/6434 se [PATCH] mediatool in x11/kdelibs cause kw 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/01] ports/6473 ports New port: libshhmsg-1.3.3 o [1998/05/01] ports/6474 ports New port: libxalloc-1.0.2 o [1998/05/03] kern/6495 Need pci_unmap_mem and pci_unmap_port rou o [1998/05/03] ports/6504 ports New port: `C Interfaces and Implementatio o [1998/05/03] kern/6505 panic: cannot mount root on sd1 o [1998/05/04] docs/6508 doc sgmlfmt does not expand relative URLs s [1998/05/04] bin/6509 [ALMOST PATCH] Allow dd to seek/skip to o o [1998/05/04] docs/6510 steve GNATS doesn't expand freebsd-doc s [1998/05/05] bin/6521 [MAYBE PATCH] "rmdir -p x/y/z/" fails o [1998/05/07] ports/6541 ports New port: math/dc o [1998/05/07] kern/6544 Only get one channel through sound card o [1998/05/07] ports/6546 ache 3line ansi prompt in tcsh: cursor disappe o [1998/05/09] conf/6559 jkh Upgrade processing clobber's ~root/{.cshr o [1998/05/09] ports/6563 se minor problems with KDE ports o [1998/05/09] docs/6564 doc need more references in fetch(1) o [1998/05/10] ports/6570 ports New port: java CUP parser o [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/11] ports/6598 ports New port: asmodem - displays the modem st o [1998/05/12] ports/6606 markm package add of perl-5.00404 fails w/3.0 S o [1998/05/12] misc/6612 bsd.man.mk can't handle man pages with ": o [1998/05/12] ports/6613 markm ports/lang/perl5 fails to install by addi 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 o [1998/05/16] ports/6657 ports new port for perl/Tk 800.004 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/18] docs/6681 doc docu. addition o [1998/05/19] ports/6687 ports New port, ktelnet v0.6 o [1998/05/19] ports/6699 ports New port: the Generic NQS system o [1998/05/20] kern/6702 luigi tsleep and new snd (pcm0) o [1998/05/21] ports/6709 ports New port kmessage s [1998/05/21] conf/6711 [PATCH ?] I've seen that fortune before o [1998/05/23] ports/6728 ports New port ktranslator o [1998/05/24] docs/6745 doc man page for ftpd o [1998/05/25] misc/6752 jkh sysinstall w/o cd9660 fs loaded can't mou s [1998/05/25] kern/6758 mount_portal fails because kernal refuses 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 s [1998/05/26] docs/6764 doc limits references to sysctl o [1998/05/26] kern/6769 peter panic: nfs rcvunlock o [1998/05/28] ports/6776 ports New port - xqf s [1998/05/29] kern/6781 [PATCH] exabyte changer doesn't grok LUNs s [1998/05/29] bin/6785 place for all the default dump flags o [1998/05/29] bin/6795 steve send-pr does not parse problem reports co o [1998/05/31] ports/6806 ports /usr/ports/graphics/killustrator doesn't 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 s [1998/06/02] bin/6832 imp [PATCH] Allows PINGing from any address o s [1998/06/02] kern/6843 sos [PATCH] to enable reading digital audio s o [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/11] bin/6919 can not run multiple instances of /sbin/r o [1998/06/13] misc/6936 sysinstall: install from MS-DOS MO divece o [1998/06/13] bin/6937 [PATCH] rc.firewall can't be run from net o [1998/06/13] bin/6939 restore does not set the correct uid on d o [1998/06/13] ports/6942 ports New port, mrouted-beta o [1998/06/16] gnu/6965 wosch grep -a dosn't work o [1998/06/16] ports/6970 ports mule and family build faulure 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 a [1998/06/20] ports/7005 dburr Submitting RealAudio Player 3.0 as a new o [1998/06/20] ports/7006 itojun hylafax port improved 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/24] ports/7062 torstenb pidentd partialy broken in current s [1998/06/24] bin/7063 mount fails if $PWD does not exist 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] bin/7081 [patch] lpr stuff doesn't deal with RM an s [1998/06/26] kern/7085 [patch] maybe_resched() priority check co o [1998/06/28] ports/7094 ports New port of xbomber game 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/28] bin/7101 /sbin/ipfw unexpected variant treatment o s [1998/06/29] bin/7117 flex -I option is broken o [1998/06/30] ports/7128 ports New port: Raster3D-2.4f 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 o [1998/07/02] ports/7150 ports `elftoaout': new port o [1998/07/04] ports/7163 ports new port: p5-Set-IntSpan o [1998/07/04] ports/7164 ports new port: p5-News-Newsrc 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 f [1998/07/07] i386/7201 (cpu == CPU_686) in pmap.c shoud also app 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 f [1998/07/10] bin/7241 tcpdump does not work with parallel line o [1998/07/11] bin/7254 release: multiple versions of write_mfs_i o [1998/07/12] kern/7259 -current: GENERIC and SMP-GENERIC out of o [1998/07/12] ports/7261 ports problem of wget-1.5.2 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/13] ports/7275 torstenb Symlink for one ssh man-page is wrong 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/15] docs/7289 doc ppp.8: RECEIVING INCOMING PPP CONNECTIONS o [1998/07/15] bin/7294 lpr -r file fails to remove file because o [1998/07/15] ports/7295 ports Starting programs with bash port causes p o [1998/07/15] bin/7296 hoek Long-standing bug in 'more' wrt CRLF. I o [1998/07/16] bin/7298 Improvements to ln(1). o [1998/07/17] docs/7306 doc There is no manpage for timegm o [1998/07/18] ports/7314 ports ncurses port doesn't support TERM=xterm-c a [1998/07/19] bin/7324 wosch Suggestions for minor modifications to ad o [1998/07/19] bin/7325 /bin/sh redirection does not match man pa o [1998/07/20] bin/7337 Creating a partition "before" the boot pa o [1998/07/21] conf/7348 Default answer 'NO' in network configurat o [1998/07/21] bin/7352 libc generates spurious warnings when use o [1998/07/21] conf/7355 The checkboxes are not always properly up o [1998/07/21] docs/7359 obrien amd documentation problems o [1998/07/23] ports/7375 dburr New port request: audio/xsplay f [1998/07/23] kern/7377 we have a new digiboard driver supporting o [1998/07/24] misc/7391 jkh 2.2.7-RELEASE: src/CHECKSUM.MD5 and des/C o [1998/07/24] ports/7394 jfitz INDEX has bad description for p5-Mysql-mo s [1998/07/27] ports/7408 asami packages-2.2.7/INDEX is wrong o [1998/07/27] ports/7409 ports New port: CaribbeanStud-1.0 s [1998/07/29] i386/7426 Bugs in macro definitions of pthreads. o [1998/07/29] ports/7430 se kvt terminal emulator does not update /va o [1998/07/30] ports/7449 ports upgrade of scilab port o [1998/07/30] bin/7454 jkh make dependencies more visible in sysinst o [1998/07/30] misc/7455 jkh trailing spaces on mountpoint hangs sysin s [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/7480 ports New Port afbackup-3.0.4 o [1998/08/03] ports/7485 vanilla New port: Xterminal-0.2 s [1998/08/06] i386/7510 [PATCH] syscons and vidcontrol to support o [1998/08/08] ports/7532 ports New port: ipltd-2.01 s [1998/08/08] docs/7533 doc Chpass command description unclear on gec o [1998/08/09] ports/7537 ports New port: new PPP client, PPxP s [1998/08/09] kern/7546 [PATCH] [STABLE ?]shutdown -p - system po s [1998/08/10] docs/7567 doc pccardc has no man page 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/15] ports/7623 se Missing patch in kde-1.0 port 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/17] ports/7648 ports Port of GD graphic library which uses Rus o [1998/08/17] ports/7652 torstenb mirror installation does not point at loc o [1998/08/17] ports/7656 vanilla New port: Gnome-0.27 o [1998/08/18] ports/7659 ports New port: pfx-0.1.1 o [1998/08/18] bin/7669 libalias does not IRC DCC packets under c o [1998/08/19] conf/7676 3.0 make world on 2.2 problems o [1998/08/19] docs/7679 doc NIS man pages are incomplete a [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/19] ports/7689 ports New port: binkd-0.9.2 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/21] ports/7701 ports New port: drmario-1.0 o [1998/08/21] conf/7705 rwhod should use rwhod_flags in rc.networ o [1998/08/21] ports/7706 ports update for catdoc port o [1998/08/22] ports/7718 ports New port: leafnode with Jam patch, ${PORT o [1998/08/22] kern/7722 Changes to acct format o [1998/08/23] bin/7728 ftpd processes hang o [1998/08/23] i386/7729 Progress broker is unable to read status o [1998/08/24] ports/7734 ports update atari800 - upgrade to the latest v o [1998/08/24] ports/7735 ports new port: mp3encode - mpeg audio file enc 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/27] i386/7768 boot mgr doesnt apear to install, cannot 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] ports/7775 ports New version: korganizer v0.9.10 o [1998/08/29] bin/7779 [PATCH] modload should detect stripped ke a [1998/08/29] ports/7780 ports New port: WMnet -- Network Throughput Mon 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 o [1998/08/31] docs/7790 doc ipf(1) lists non-existent mkfilters(1) o [1998/08/31] docs/7791 doc ipf(1) and ipfstat(1) should have been ip o [1998/09/01] bin/7798 rc.conf.5 manpage lay out is incorrect o [1998/09/01] gnu/7800 tar(1) does not recognize --gunzip option o [1998/09/01] misc/7801 Cannot install FreeBSD on 486 if one of t o [1998/09/02] kern/7812 APM machines should attempt to power down 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] docs/7819 doc nroff macro problem(miss reformated) in d o [1998/09/03] docs/7820 doc non-English mailing lists: majordomo@coun o [1998/09/03] bin/7826 ls(1) knows too much about format of strf o [1998/09/03] ports/7827 ports New port: garith-2.1 o [1998/09/03] bin/7828 Add a command line option to cp to make i o [1998/09/04] docs/7833 doc awk.1 contains typos. o [1998/09/05] kern/7837 patches to add a p_auth extension pointer o [1998/09/06] ports/7842 ports mv ports/korean/vim ports/editors/vim to o [1998/09/07] ports/7845 ports Unbuffered /dev/vx0-output from Python 1. o [1998/09/07] bin/7846 /sbin/mount_* do not canonicalize the mou o [1998/09/07] ports/7848 markm Update ports: lang/perl5 (pkg_delete prob o [1998/09/07] misc/7850 lt_LT.* locale o [1998/09/07] misc/7851 steve looks like send-pr discards bug report wi 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). o [1998/09/08] docs/7864 doc nslookup.8 has nroff problem o [1998/09/08] ports/7865 ports new port: Library of Routines for Cumulat 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 ports NEW PORT: lcdproc o [1998/09/10] ports/7883 ports New port: Xfstt, a non-Freetype TrueType o [1998/09/10] misc/7885 unexpected NIS/getpwnam behavior o [1998/09/11] bin/7895 multiple identical NFS mounts accepted o [1998/09/11] kern/7903 unmatched '{}' blocks. o [1998/09/12] bin/7907 ipfw command line parsing o [1998/09/13] docs/7914 doc no elf(5) manpage o [1998/09/13] misc/7919 general problems with the termcap databas o [1998/09/13] ports/7921 ports New port: Nessus security scanner o [1998/09/13] ports/7924 ports New port: tin news reader for Korean o [1998/09/14] conf/7928 Patch to allow execution of an IPFW shell o [1998/09/15] ports/7932 torstenb man zshall doesn't work o [1998/09/15] ports/7940 asami make depend packages and index on demand o [1998/09/16] bin/7944 `restore f foo' gets sigsegv 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/17] docs/7963 doc a possible typo in ipsend.5 manpage o [1998/09/18] bin/7973 lpd: Bad control file owner in case of re o [1998/09/18] kern/7976 VM86 comment in LINT is incomplete o [1998/09/18] kern/7983 yokota Tapping the touchpad does not work 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] ports/7997 se [audio/kdemutlimedia] kscd's installation 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] docs/8010 doc handbook's mailing list list is outdated o [1998/09/21] kern/8011 libc_r does not have pread() or pwrite() o [1998/09/21] kern/8015 Some sysctl descriptions for the kernel o [1998/09/23] docs/8034 doc typo in objdump.1 o [1998/09/24] misc/8038 ftp://ftp.freebsd.org/pub/FreeBSD/index.h o [1998/09/24] kern/8041 F00F message grammar fix o [1998/09/24] bin/8042 If pidentd dies, you must kill all telnet o [1998/09/25] ports/8051 ports New port: PostScript plotting library in 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/28] ports/8078 ports port audio/nas fails for me o [1998/09/28] bin/8083 Game cleanup from NetBSD o [1998/09/29] bin/8084 NIT: non-working code in rshd o [1998/09/29] bin/8087 rbootd does work according to specs o [1998/09/30] docs/8101 doc ch manpage update != chio.h o [1998/09/30] docs/8102 doc ipf.5 contains typo ("whether on not" -> o [1998/09/30] i386/8105 boot.help behavior is broken o [1998/09/30] docs/8107 doc sl(4) references slstats(8), should be sl o [1998/09/30] docs/8108 doc un-grammatic-ality in slstat(8) o [1998/09/30] ports/8109 billf new port: net/muh o [1998/09/30] docs/8110 doc Typos in curs_addstr.3 o [1998/09/30] conf/8111 fdisk gets default name of SCSI disk wron o [1998/09/30] kern/8113 no snd0 in kernel implies ed0 gets device o [1998/10/01] docs/8120 doc Several inconsistencies in ipmon.8 o [1998/10/01] docs/8121 doc an empty "BUGS" section can be seen in 'i o [1998/10/02] i386/8131 Support for PCI NE2000 compatible Etherne o [1998/10/03] misc/8133 bug in telnetd (Kerberos IV) o [1998/10/03] bin/8134 End of game is not recognised immediately o [1998/10/03] ports/8136 ports New port: yudit: multi-lingual unicode te o [1998/10/03] misc/8139 missing /usr/src/share/examples/drivers/m o [1998/10/04] docs/8140 doc sh man page tiny typo o [1998/10/04] docs/8141 doc missing kernel.congig(5) o [1998/10/04] bin/8142 freebsd 2.2.7 implementation of key(1) [s o [1998/10/04] docs/8143 doc strange direction in objcopy.1 o [1998/10/04] docs/8144 doc missing directive in objdump.1 ? o [1998/10/04] i386/8146 kzipboot serial console setup and malloc o [1998/10/06] bin/8163 It is impossible to assign quotas larger o [1998/10/06] bin/8164 repquota incorrectly reports quotas large o [1998/10/06] kern/8165 sys/dirent.h has duplicate constant from o [1998/10/06] kern/8166 jkh odboot is pointless with CAM o [1998/10/06] i386/8171 Intel EtherExpress Pro 100 support for ne o [1998/10/06] bin/8172 installer has difficulty handling ftp err o [1998/10/07] kern/8191 halt -p does't o [1998/10/07] bin/8196 patch to make syslog.conf tolerate space 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/10] misc/8259 better order in install o [1998/10/10] conf/8261 aout-to-elf failed at ldconfig ${AOUTLIBD f [1998/10/11] bin/8275 des w/top/etc randomly fail with 'Cannot allo o [1998/10/12] bin/8279 /usr/sbin/sysctl -> ${DESTDIR}/sbin/sysct o [1998/10/12] kern/8280 Typos in kernel: APM, matcd, UDMA+PIIX4 o [1998/10/12] bin/8282 either m4 changequote bug or 'man m4' doc o [1998/10/12] ports/8283 ports change the way to modify fonts.alias s [1998/10/12] ports/8285 billf New port (Eggdrop 1.3.21) o [1998/10/12] ports/8289 ports problems about file locking of emacs/xema o [1998/10/12] bin/8295 order of options in printcap causes some o [1998/10/12] misc/8297 send-pr.html need a
tag (line 63 of o [1998/10/13] i386/8298 When using "make world" for 3.0-19981009- o [1998/10/13] ports/8299 ports new port for games/xbd (Boulder Dash) f [1998/10/13] bin/8301 des "ls -B" and "ls -b" misprint o [1998/10/13] conf/8303 3.0-981009-BETA can't make swap device on o [1998/10/13] ports/8304 asami SUGGESTION: point to handbook for BROKEN o [1998/10/13] conf/8306 NATD get loaded late in bootsequence o [1998/10/13] ports/8307 ports fxtv garbles display o [1998/10/13] i386/8308 Host/Domain 'problem' in install script/p o [1998/10/13] kern/8311 kernel panic on de0 o [1998/10/13] ports/8314 ports xemacs-19 (addtional ELF patch) o [1998/10/13] bin/8315 [PATCH] a bug in the usage string (-i opt o [1998/10/14] kern/8316 [ATAPI CD-ROM] open() doesn't return -1 w o [1998/10/14] ports/8317 ports devel/prc-tools port fails o [1998/10/14] kern/8318 [PATCH] Add break support to cy driver. o [1998/10/14] gnu/8321 [PATCH] troff -me \*(td (today's date) st o [1998/10/15] docs/8337 doc documentation relic o [1998/10/16] kern/8343 the "poll()" function is absent in thread 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 o [1998/10/16] docs/8351 doc documentation error / misleading wording o [1998/10/17] bin/8355 [PATCH] Fix typos/grammar in sysinstall p f [1998/10/17] misc/8357 Segmentation fault while making SWARM-1.3 o [1998/10/17] i386/8360 When i try to make "su" comand the system f [1998/10/17] ports/8365 ports port archivers/p5-Compress-Zlib won't bui f [1998/10/17] bin/8367 /stand/sysintall is screwing up my /etc/r o [1998/10/19] bin/8369 netstat seems to miss a connection o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/19] kern/8377 boot.config not being used. o [1998/10/19] misc/8378 Is termcap not maintained enough ? o [1998/10/20] ports/8381 ports port upgrade: korean/nh2ps o [1998/10/20] kern/8383 dt msdosfs wipes out NT VFAT lower case flag o [1998/10/20] misc/8388 Windows DUN sends DOMAIN\username, ppp is o [1998/10/20] ports/8389 rnordier Add pthreads support to TenDRA o [1998/10/20] ports/8393 ports klyx can not create new documents o [1998/10/20] bin/8395 /usr/src/sbin/vinum/Makefile doesn't unde o [1998/10/21] bin/8405 There is extra ping.o o [1998/10/22] kern/8410 ipsec port to freebsd o [1998/10/22] kern/8412 hard to read sound card probe result. o [1998/10/22] ports/8413 billf New port, wxftp 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/23] misc/8430 tcpdump man page typos o [1998/10/24] ports/8432 ports New Port: qtarch-1.4-1 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] ports/8442 ports New port: korean/netscape4-{communicator, 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/25] ports/8448 billf first cut of apache13-ssl port o [1998/10/25] ports/8454 ports new port copytape - for duplicating magta o [1998/10/26] kern/8456 SMP kernel fails with Everex PO-6200 Dual s [1998/10/26] ports/8457 vanilla gnomelibs-0.30.1 - configure fails o [1998/10/26] ports/8458 ports ports collection does not use common cach o [1998/10/27] docs/8464 doc Missing include file wh o [1998/10/27] bin/8466 bind man pages not installed by 3.0 make o [1998/10/27] ports/8470 ache Update port: www/netscape4-* o [1998/10/27] bin/8471 ipfw(8) should not allow unimplemented "t o [1998/10/27] docs/8472 doc 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/29] ports/8484 ports New port of XShodou-1.11 o [1998/10/29] bin/8486 doscmd port.c change to access real devic o [1998/10/29] ports/8495 ports New port of eyeclock-1.03 o [1998/10/29] ports/8496 ports New port of XMangekyou-1.03 o [1998/10/29] ports/8497 ports New port of xstarroll-1.02 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] docs/8504 doc ppp.8 contains typos. o [1998/10/30] docs/8505 doc as.1 SYNOPSIS contains minor typo (unbala o [1998/10/30] docs/8506 doc kbdcontrol.1 contains typo ("proceeded" s o [1998/10/30] ports/8516 ports Addition of port for rblsmtpd (qmail RBL 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/10/31] ports/8521 ports Some manpages are not usable with tiff-3. o [1998/11/01] misc/8524 /usr/X11R6/bin mode bits: drwx------ ? o [1998/11/01] docs/8525 doc '.Mn mountd' should be '.Nm mountd', I gu o [1998/11/01] ports/8526 ports xfstt 0.9.10 port o [1998/11/01] conf/8531 sysinstall on 3.0-RELEASE (and 3.0-curren o [1998/11/01] ports/8536 andreas GhostScript port is out-of-date o [1998/11/01] ports/8537 ports New port XttXF98srv-* and some change of o [1998/11/02] docs/8542 doc ipf man page should be moved from section o [1998/11/02] ports/8546 billf new port: [net/benchmarks]/nttcp o [1998/11/02] docs/8547 doc Various updates to authors.sgml, printing o [1998/11/03] kern/8550 strip kernel before moving it during make o [1998/11/03] ports/8552 ports New port: shells/zsh-devel o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> o [1998/11/03] ports/8554 ports ELM doesn't know that mail.local escapes a [1998/11/03] ports/8556 ports 3.0-RELEASE installation does not registe o [1998/11/03] docs/8559 doc Update to open(2) man page to reflect ENX s [1998/11/03] kern/8560 des [REMINDER] bpfilter is deprecated and sho o [1998/11/03] ports/8564 ports New port: serialmail 0.72 o [1998/11/03] kern/8570 patch for randomised process id allocatio o [1998/11/04] i386/8571 Bug in config utility in FreeBSD 2.2.6-RE o [1998/11/04] ports/8574 ports FWF-4.0 port broken on non-Motif system o [1998/11/04] kern/8577 Request [v]snprintf() in the kernel o [1998/11/05] ports/8579 ports Update port: print/klyx o [1998/11/07] ports/8586 ports new port: misc/kmamerun o [1998/11/07] conf/8587 login.conf should not set manpath o [1998/11/07] kern/8589 incorrect spelling for "dependency" and " o [1998/11/07] i386/8597 fdisk uses obsolete "sd0" instead of "da0 o [1998/11/07] i386/8598 MAKEDEV fails if not run from current dir o [1998/11/08] docs/8602 doc symlink(7) manpage says that file(1) has 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/8606 ports update port: www/linux-netscape4 o [1998/11/08] docs/8610 doc boot.config.8 man page o [1998/11/08] docs/8611 doc kld man page o [1998/11/08] ports/8620 ports New option to colorls - -K, color only to o [1998/11/08] misc/8621 kld exmaples for /usr/share/examples/kld o [1998/11/09] bin/8624 quot(8) problem with 2GB+ disk space o [1998/11/09] bin/8625 disklabel core dumped with od-driver o [1998/11/09] ports/8627 ports p5-GIFgraph: new port of http://www.tcp.c 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/09] bin/8637 fgetpos()/fsetpos() don't work for >2GB f o [1998/11/09] i386/8638 cpu_power_down() is dirty o [1998/11/10] docs/8640 doc proposed change of 4.5 o [1998/11/10] ports/8645 ports afterstep-devel build fails on scsi.h o [1998/11/11] ports/8651 ports I create a new ports about wget o [1998/11/11] misc/8654 SYSV options allow WINE to run, but Netsc o [1998/11/11] ports/8658 ports New port: gtkballs-1.02 o [1998/11/12] kern/8661 sys/netatalk/at_control.c needs to correc o [1998/11/12] bin/8662 w (-stable) has hardwired sizes o [1998/11/12] ports/8664 ports new port: dnsutl - converter DNS -> REV / o [1998/11/12] bin/8665 /usr/bin/mail -u user not worked if exist o [1998/11/12] bin/8666 X blocks serial port with getty process o o [1998/11/12] ports/8667 ports port RedHat Interbase 4 o [1998/11/12] docs/8668 doc Russian FAQ o [1998/11/12] i386/8670 aout libcompat placed in /usr/lib/compat o [1998/11/13] docs/8674 doc securelevel 3 is not documented o [1998/11/13] ports/8675 ports new port: x11-toolkits/gtkstep11 o [1998/11/13] ports/8676 ports devel/gide wont complete configure. o [1998/11/13] docs/8677 doc resolver(5) manpage out of date re defaul o [1998/11/13] gnu/8679 tar man page should be updated o [1998/11/14] bin/8680 buffer is small at command wall, rwall. o [1998/11/14] bin/8681 other macro name that has same number is o [1998/11/14] docs/8682 doc some small bug fixes to ld.1 o [1998/11/14] ports/8686 ports elf amanda o [1998/11/14] i386/8687 pcm driver does not recognize AXRA Yamaha o [1998/11/15] ports/8692 ports new port: x11/kvidtune o [1998/11/15] ports/8695 ports New port: mopac7 o [1998/11/15] ports/8696 ports New port: psi88 o [1998/11/15] docs/8697 doc Two small typos in manpages o [1998/11/15] bin/8698 add telnet option to prevent IP address t o [1998/11/15] kern/8703 NFS Freezes when copying files from 3.0 t o [1998/11/16] ports/8705 ports Ports Update: japanese/skk o [1998/11/16] i386/8710 XBF_NeoMagic diver working with XFree86 o [1998/11/16] ports/8713 ports New Port: maildrop o [1998/11/17] docs/8727 doc Typo in src/share/man/man7/mdoc.7 o [1998/11/17] docs/8733 doc small bug in vinum(4) man page o [1998/11/18] ports/8740 ports New ports collection lesw-332 o [1998/11/18] conf/8744 /etc/login.conf defaults too small. umask o [1998/11/18] gnu/8746 gcc man page misleading o [1998/11/18] kern/8747 [PATCH] fixes for systags.sh o [1998/11/18] kern/8751 Cannot display new CPU name correctly. o [1998/11/18] ports/8754 ports KDE: KDM Display Manager has login proble o [1998/11/18] bin/8756 'pw' command additional feature request o [1998/11/18] docs/8757 doc psif expands unexpected wildcard characte o [1998/11/19] bin/8762 syslogd.conf shell accept spaces in addit o [1998/11/19] misc/8764 pwd_mkdb is slow on many users o [1998/11/19] docs/8765 doc some suggested text for describing passwo o [1998/11/19] ports/8766 ports New port: leafnode+ o [1998/11/19] ports/8767 ports New port: gtksql-0.2 o [1998/11/20] ports/8770 ports [update] japanese/Wnn6-lib o [1998/11/20] ports/8771 ports Newer ports: print/tgif2tex and japanese/ o [1998/11/20] ports/8774 kuriyama new port: ssh2 o [1998/11/20] ports/8775 jseger Update port: editors/emacs20 o [1998/11/20] ports/8776 ports New port: editors/emacs20-dl o [1998/11/20] ports/8777 imp ports/socks5 out of date o [1998/11/21] ports/8780 ports new port: xgirc-0.1.1 o [1998/11/21] docs/8781 doc misdescription in -P page_ctl option of c o [1998/11/21] bin/8782 Improved functionality for find(1) o [1998/11/22] misc/8796 Additional example directory for /usr/sha o [1998/11/22] ports/8804 ports make postgresql 6.4 dies while patching o [1998/11/22] bin/8809 fdisk calls QNX-4 partitions unknown o [1998/11/22] ports/8810 billf [PATCH] Add a patch to vnc port o [1998/11/22] bin/8811 Problem to use 'NLSMODE' variable in Make o [1998/11/22] ports/8812 ports [UPDATE] New port: pkg_version-0.1 o [1998/11/22] ports/8814 ports update port/japanese/rxvt 2.4.9 -> 2.4.10 o [1998/11/23] ports/8816 ports New port: ptc-2.0.10 o [1998/11/23] kern/8817 Patches to silence -Wtrigraphs o [1998/11/23] kern/8819 Patch to avoid redefinition of DEBUG o [1998/11/23] docs/8820 doc A BUG in multios.docb o [1998/11/23] ports/8822 ports New port: InterNetNews 2.2beta2 o [1998/11/23] docs/8823 doc Spelling mistake in Documentation Project a [1998/11/23] kern/8826 ken LINT bug with CAM pass devices o [1998/11/23] ports/8827 ports Update ports: xemacs-mule-common-20.4(edi o [1998/11/24] ports/8830 billf New port: mail/mbx2mbox o [1998/11/24] ports/8831 ports New port: editors/apel and editors/apel-{ o [1998/11/24] ports/8832 ports New port: japanese/dl-canna o [1998/11/24] ports/8833 ports New port: japanese/dl-wnn6 o [1998/11/24] ports/8835 jseger Update port of xscreensaver o [1998/11/24] ports/8837 ports New port of prag. o [1998/11/24] ports/8838 billf New port of GNU getopt. o [1998/11/24] ports/8839 ports New port of npadmin f [1998/11/24] ports/8842 billf port upgrade: devel/gettext o [1998/11/24] ports/8846 ports kdebase port fails to build o [1998/11/24] ports/8848 ports GNOME 0.30 cdplayer applet does not work o [1998/11/24] ports/8856 ports Update ports: japanese/postgresql o [1998/11/24] kern/8858 man page for accept() is flawed o [1998/11/25] ports/8859 ports apache13 __FreeBSD_version is checked bef o [1998/11/25] ports/8860 ports Update ports: Mew-1.93 a [1998/11/25] ports/8862 billf New port: graphics/gtksee o [1998/11/25] ports/8863 ports [Reviced] New port: mopac7 o [1998/11/25] ports/8864 ports useradd - system V compatible implementat o [1998/11/27] ports/8866 ports Update of the fetchmail port to version 4 o [1998/11/27] i386/8867 /stand/sysinstall core dumps (signal 11) o [1998/11/27] misc/8868 keymaps for the portuguese keyboards o [1998/11/27] ports/8871 ports Update to FElt port o [1998/11/27] ports/8873 ports Update port - tinyfugue 4.0 Gamma 2 o [1998/11/27] ports/8874 ports New Port - wmmon (WindowMaker dockable sy o [1998/11/28] ports/8876 ports Trivial Patch - wmtime port spells "NOV" o [1998/11/28] misc/8877 web query-pr interface doesnt escape mult o [1998/11/28] ports/8878 ports [patch] slrn is broken o [1998/11/28] docs/8879 doc amd.conf.5 contains typos. o [1998/11/28] bin/8880 cp missing verbose switch o [1998/11/28] bin/8881 mv missing verbose switch o [1998/11/28] ports/8884 ports New port: mail/ezmlm o [1998/11/28] ports/8885 ports New port: mail/ezmlm-idx o [1998/11/28] ports/8886 ports spelling error in /usr/ports/gimp-manual- o [1998/11/28] ports/8888 ports xcolorsel port files for FreeBSD (compile o [1998/11/28] ports/8889 ports new port ascd 0.7 o [1998/11/29] docs/8892 doc strip.1 contains typo. o [1998/11/29] pending/8893gnats-adminv does not build o [1998/11/29] kern/8895 DEC 21152 PCI-PCI bridge chip isn't probe o [1998/11/29] ports/8896 ports ddd-3.0 port/package should depend on lib o [1998/11/29] docs/8897 doc passwd.1 references login.cap instead of o [1998/11/29] kern/8898 PCI devices without an associated driver o [1998/11/29] ports/8899 ports New port: qmail-contrib o [1998/11/29] ports/8900 ports New port: mail/qmailanalog o [1998/11/30] bin/8905 suggested change of 'ipfw show' layout o [1998/11/30] bin/8906 newsyslog errors out if PID is >30000 o [1998/11/30] misc/8907 missing symlink, Xmmix: no help 983 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 Nov 30 11:31:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA02495 for freebsd-bugs-outgoing; Mon, 30 Nov 1998 11:31:31 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from smtp1.vnet.net (smtp1.vnet.net [166.82.1.31]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA02466; Mon, 30 Nov 1998 11:31:19 -0800 (PST) (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 OAA28940; Mon, 30 Nov 1998 14:31:07 -0500 (EST) Received: from lakes.dignus.com (lakes.dignus.com [10.0.0.3]) by dignus.com (8.9.1/8.8.5) with ESMTP id PAA00748; Mon, 30 Nov 1998 15:11:10 -0500 (EST) Received: (from rivers@localhost) by lakes.dignus.com (8.9.1/8.6.9) id OAA01044; Mon, 30 Nov 1998 14:31:36 -0500 (EST) Date: Mon, 30 Nov 1998 14:31:36 -0500 (EST) From: Thomas David Rivers Message-Id: <199811301931.OAA01044@lakes.dignus.com> To: freebsd-bugs@FreeBSD.ORG, imp@FreeBSD.ORG, jchristi@vt.edu Subject: Re: kern/8743 In-Reply-To: <199811232247.OAA27854@freefall.freebsd.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Synopsis: 3.0 boot disk will not probe for Adaptec AHA 1542B SCSI controller > > State-Changed-From-To: open-feedback > State-Changed-By: imp > State-Changed-When: Mon Nov 23 15:47:21 MST 1998 > State-Changed-Why: > I think this has been fixed > > > Responsible-Changed-From-To: freebsd-bugs->imp > Responsible-Changed-By: imp > Responsible-Changed-When: Mon Nov 23 15:47:21 MST 1998 > Responsible-Changed-Why: > I think this is fixed > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > I'm experiencing it as well. Would someone care to share the fix? Then, I can definately let you know the status... - Thanks - - Dave Rivers - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 30 12:53:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA14006 for freebsd-bugs-outgoing; Mon, 30 Nov 1998 12:53:35 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from scoisntc02.Scott.af.mil (scoisntc02.scott.af.mil [140.175.36.48]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA13996 for ; Mon, 30 Nov 1998 12:53:26 -0800 (PST) (envelope-from Rich.Perkins@scott.af.mil) Received: by scoisntc02.Scott.af.mil with Internet Mail Service (5.5.2232.9) id ; Mon, 30 Nov 1998 13:20:57 -0600 Message-ID: From: Perkins Rich SrA AMC/DOE To: "'freebsd-bugs@FreeBSD.ORG'" Cc: "'dameon@intertek.net'" Subject: Unknown error reporting to all open ttys (not to /dev/console) Date: Mon, 30 Nov 1998 13:21:05 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2232.9) Content-Type: multipart/mixed; boundary="----_=_NextPart_000_01BE1C96.8DD44B08" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_000_01BE1C96.8DD44B08 Content-Type: text/plain Recieving the following message displayed to all open ttys and not to the system console Unknown type on question 1 Unknown type on question 1 Unkown resource of type 100 No further info is available in system logs ( it repeats this group of messages seeminglyt at random sometimes every half hour sometimes every 3 - 9 minutes) attached a copy of the log file. Is this a bug or is it something that I have set up wrong... running Free BSD 3.0-SMP-current on an ALR Revolution MP board with dual P100. A 3com 3c905 Nic Card. S3 Virge DX 4mb Video. and WD 1.6gb Hard drive. NEC CDROM. Thought at first it was the SMP-Kernel...so I reformatted and reinstalled the Generic kernel and let the machine rune for two days...still recieved messages.. Please help me out..as I am at my wits end to solve this problem. <> ------_=_NextPart_000_01BE1C96.8DD44B08 Content-Type: application/octet-stream; name="messages" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="messages" Content-Location: ATT-0-B9BB92E08188D211A4340000BC116F09-M ESSAGES Nov 28 10:00:00 thrall newsyslog[3642]: logfile turned over=0A= Nov 28 10:08:07 thrall =0A= Nov 28 10:08:07 thrall Unknown Type on Question 1 =0A= Nov 28 10:08:08 thrall =0A= Nov 28 10:08:08 thrall Unknown Type on Question 1 =0A= Nov 28 10:08:08 thrall =0A= Nov 28 10:08:08 thrall Unknown Type of Resource 100 =0A= Nov 28 10:13:19 thrall =0A= Nov 28 10:13:19 thrall Unknown Type on Question 1 =0A= Nov 28 10:13:19 thrall =0A= Nov 28 10:13:19 thrall Unknown Type on Question 1 =0A= Nov 28 10:13:19 thrall =0A= Nov 28 10:13:19 thrall Unknown Type of Resource 100 =0A= Nov 28 10:16:32 thrall su: dameon to root on /dev/ttyp1=0A= Nov 28 10:17:40 thrall su: dameon to root on /dev/ttyp2=0A= Nov 28 10:19:43 thrall su: dameon to root on /dev/ttyp3=0A= Nov 28 10:23:07 thrall =0A= Nov 28 10:23:07 thrall Unknown Type on Question 1 =0A= Nov 28 10:23:08 thrall =0A= Nov 28 10:23:08 thrall Unknown Type on Question 1 =0A= Nov 28 10:23:08 thrall =0A= Nov 28 10:23:08 thrall Unknown Type of Resource 100 =0A= Nov 28 10:28:19 thrall =0A= Nov 28 10:28:19 thrall Unknown Type on Question 1 =0A= Nov 28 10:28:19 thrall =0A= Nov 28 10:28:19 thrall Unknown Type on Question 1 =0A= Nov 28 10:28:19 thrall =0A= Nov 28 10:28:19 thrall Unknown Type of Resource 100 =0A= Nov 28 10:38:07 thrall =0A= Nov 28 10:38:07 thrall Unknown Type on Question 1 =0A= Nov 28 10:38:09 thrall =0A= Nov 28 10:38:09 thrall Unknown Type on Question 1 =0A= Nov 28 10:38:10 thrall =0A= Nov 28 10:38:10 thrall Unknown Type on Question 1 =0A= Nov 28 10:38:11 thrall =0A= Nov 28 10:38:11 thrall Unknown Type on Question 1 =0A= Nov 28 10:38:11 thrall =0A= Nov 28 10:38:11 thrall Unknown Type of Resource 100 =0A= Nov 28 10:43:18 thrall =0A= Nov 28 10:43:18 thrall Unknown Type on Question 1 =0A= Nov 28 10:43:19 thrall =0A= Nov 28 10:43:19 thrall Unknown Type on Question 1 =0A= Nov 28 10:43:19 thrall =0A= Nov 28 10:43:19 thrall Unknown Type of Resource 100 =0A= Nov 28 10:53:07 thrall =0A= Nov 28 10:53:07 thrall Unknown Type on Question 1 =0A= Nov 28 10:53:07 thrall =0A= Nov 28 10:53:07 thrall Unknown Type on Question 1 =0A= Nov 28 10:53:07 thrall =0A= Nov 28 10:53:07 thrall Unknown Type of Resource 100 =0A= Nov 28 10:58:18 thrall =0A= Nov 28 10:58:18 thrall Unknown Type on Question 1 =0A= Nov 28 10:58:18 thrall =0A= Nov 28 10:58:18 thrall Unknown Type on Question 1 =0A= Nov 28 10:58:18 thrall =0A= Nov 28 10:58:18 thrall Unknown Type of Resource 100 =0A= Nov 28 11:08:07 thrall =0A= Nov 28 11:08:07 thrall Unknown Type on Question 1 =0A= Nov 28 11:08:07 thrall =0A= Nov 28 11:08:07 thrall Unknown Type on Question 1 =0A= Nov 28 11:08:07 thrall =0A= Nov 28 11:08:07 thrall Unknown Type of Resource 100 =0A= Nov 28 11:13:18 thrall =0A= Nov 28 11:13:18 thrall Unknown Type on Question 1 =0A= Nov 28 11:13:18 thrall =0A= Nov 28 11:13:18 thrall Unknown Type on Question 1 =0A= Nov 28 11:13:18 thrall =0A= Nov 28 11:13:18 thrall Unknown Type of Resource 100 =0A= Nov 28 11:23:07 thrall =0A= Nov 28 11:23:07 thrall Unknown Type on Question 1 =0A= Nov 28 11:23:07 thrall =0A= Nov 28 11:23:07 thrall Unknown Type on Question 1 =0A= Nov 28 11:23:07 thrall =0A= Nov 28 11:23:07 thrall Unknown Type of Resource 100 =0A= Nov 28 11:28:18 thrall =0A= Nov 28 11:28:18 thrall Unknown Type on Question 1 =0A= Nov 28 11:28:18 thrall =0A= Nov 28 11:28:18 thrall Unknown Type on Question 1 =0A= Nov 28 11:28:18 thrall =0A= Nov 28 11:28:18 thrall Unknown Type of Resource 100 =0A= Nov 28 11:38:07 thrall =0A= Nov 28 11:38:07 thrall Unknown Type on Question 1 =0A= Nov 28 11:38:07 thrall =0A= Nov 28 11:38:07 thrall Unknown Type on Question 1 =0A= Nov 28 11:38:07 thrall =0A= Nov 28 11:38:07 thrall Unknown Type of Resource 100 =0A= Nov 28 11:43:18 thrall =0A= Nov 28 11:43:18 thrall Unknown Type on Question 1 =0A= Nov 28 11:43:18 thrall =0A= Nov 28 11:43:18 thrall Unknown Type on Question 1 =0A= Nov 28 11:43:18 thrall =0A= Nov 28 11:43:18 thrall Unknown Type of Resource 100 =0A= Nov 28 11:53:07 thrall =0A= Nov 28 11:53:07 thrall Unknown Type on Question 1 =0A= Nov 28 11:53:07 thrall =0A= Nov 28 11:53:07 thrall Unknown Type on Question 1 =0A= Nov 28 11:53:07 thrall =0A= Nov 28 11:53:07 thrall Unknown Type of Resource 100 =0A= Nov 28 11:58:18 thrall =0A= Nov 28 11:58:18 thrall Unknown Type on Question 1 =0A= Nov 28 11:58:18 thrall =0A= Nov 28 11:58:18 thrall Unknown Type on Question 1 =0A= Nov 28 11:58:18 thrall =0A= Nov 28 11:58:18 thrall Unknown Type of Resource 100 =0A= Nov 28 12:08:07 thrall =0A= Nov 28 12:08:07 thrall Unknown Type on Question 1 =0A= Nov 28 12:08:07 thrall =0A= Nov 28 12:08:07 thrall Unknown Type on Question 1 =0A= Nov 28 12:08:07 thrall =0A= Nov 28 12:08:07 thrall Unknown Type of Resource 100 =0A= Nov 28 12:13:18 thrall =0A= Nov 28 12:13:18 thrall Unknown Type on Question 1 =0A= Nov 28 12:13:19 thrall =0A= Nov 28 12:13:19 thrall Unknown Type on Question 1 =0A= Nov 28 12:13:21 thrall =0A= Nov 28 12:13:21 thrall Unknown Type on Question 1 =0A= Nov 28 12:13:22 thrall =0A= Nov 28 12:13:22 thrall Unknown Type on Question 1 =0A= Nov 28 12:13:24 thrall =0A= Nov 28 12:13:24 thrall Unknown Type on Question 1 =0A= Nov 28 12:13:25 thrall =0A= Nov 28 12:13:25 thrall Unknown Type on Question 1 =0A= Nov 28 12:13:35 thrall =0A= Nov 28 12:13:35 thrall Unknown Type on Question 1 =0A= Nov 28 12:13:35 thrall =0A= Nov 28 12:13:35 thrall Unknown Type of Resource 100 =0A= Nov 28 12:13:35 thrall =0A= Nov 28 12:13:35 thrall Unknown Type on Question 1 =0A= Nov 28 12:13:35 thrall =0A= Nov 28 12:13:35 thrall Unknown Type of Resource 100 =0A= Nov 28 12:13:35 thrall =0A= Nov 28 12:13:35 thrall Unknown Type on Question 1 =0A= Nov 28 12:13:35 thrall =0A= Nov 28 12:13:35 thrall Unknown Type of Resource 100 =0A= Nov 28 12:13:35 thrall =0A= Nov 28 12:13:35 thrall Unknown Type on Question 1 =0A= Nov 28 12:13:35 thrall =0A= Nov 28 12:13:35 thrall Unknown Type of Resource 100 =0A= Nov 28 12:13:35 thrall =0A= Nov 28 12:13:35 thrall Unknown Type on Question 1 =0A= Nov 28 12:13:35 thrall =0A= Nov 28 12:13:35 thrall Unknown Type of Resource 100 =0A= Nov 28 12:13:35 thrall =0A= Nov 28 12:13:35 thrall Unknown Type on Question 1 =0A= Nov 28 12:13:35 thrall =0A= Nov 28 12:13:35 thrall Unknown Type of Resource 100 =0A= Nov 28 12:23:07 thrall =0A= Nov 28 12:23:07 thrall Unknown Type on Question 1 =0A= Nov 28 12:23:08 thrall =0A= Nov 28 12:23:08 thrall Unknown Type on Question 1 =0A= Nov 28 12:23:09 thrall =0A= Nov 28 12:23:09 thrall Unknown Type on Question 1 =0A= Nov 28 12:23:09 thrall =0A= Nov 28 12:23:09 thrall Unknown Type of Resource 100 =0A= Nov 28 12:28:17 thrall =0A= Nov 28 12:28:17 thrall Unknown Type on Question 1 =0A= Nov 28 12:28:18 thrall =0A= Nov 28 12:28:18 thrall Unknown Type on Question 1 =0A= Nov 28 12:28:18 thrall =0A= Nov 28 12:28:18 thrall Unknown Type of Resource 100 =0A= Nov 28 12:38:07 thrall =0A= Nov 28 12:38:07 thrall Unknown Type on Question 1 =0A= Nov 28 12:38:07 thrall =0A= Nov 28 12:38:07 thrall Unknown Type on Question 1 =0A= Nov 28 12:38:07 thrall =0A= Nov 28 12:38:07 thrall Unknown Type of Resource 100 =0A= Nov 28 12:43:17 thrall =0A= Nov 28 12:43:17 thrall Unknown Type on Question 1 =0A= Nov 28 12:43:17 thrall =0A= Nov 28 12:43:18 thrall Unknown Type on Question 1 =0A= Nov 28 12:43:18 thrall =0A= Nov 28 12:43:18 thrall Unknown Type of Resource 100 =0A= Nov 28 12:53:07 thrall =0A= Nov 28 12:53:07 thrall Unknown Type on Question 1 =0A= Nov 28 12:53:07 thrall =0A= Nov 28 12:53:07 thrall Unknown Type on Question 1 =0A= Nov 28 12:53:07 thrall =0A= Nov 28 12:53:07 thrall Unknown Type of Resource 100 =0A= Nov 28 12:58:17 thrall =0A= Nov 28 12:58:17 thrall Unknown Type on Question 1 =0A= Nov 28 12:58:17 thrall =0A= Nov 28 12:58:17 thrall Unknown Type on Question 1 =0A= Nov 28 12:58:17 thrall =0A= Nov 28 12:58:17 thrall Unknown Type of Resource 100 =0A= Nov 28 13:08:07 thrall =0A= Nov 28 13:08:07 thrall Unknown Type on Question 1 =0A= Nov 28 13:08:07 thrall =0A= Nov 28 13:08:07 thrall Unknown Type on Question 1 =0A= Nov 28 13:08:07 thrall =0A= Nov 28 13:08:07 thrall Unknown Type of Resource 100 =0A= Nov 28 13:13:17 thrall =0A= Nov 28 13:13:17 thrall Unknown Type on Question 1 =0A= Nov 28 13:13:17 thrall =0A= Nov 28 13:13:17 thrall Unknown Type on Question 1 =0A= Nov 28 13:13:17 thrall =0A= Nov 28 13:13:17 thrall Unknown Type of Resource 100 =0A= Nov 28 13:23:07 thrall =0A= Nov 28 13:23:07 thrall Unknown Type on Question 1 =0A= Nov 28 13:23:07 thrall =0A= Nov 28 13:23:07 thrall Unknown Type on Question 1 =0A= Nov 28 13:23:07 thrall =0A= Nov 28 13:23:07 thrall Unknown Type of Resource 100 =0A= Nov 28 13:28:17 thrall =0A= Nov 28 13:28:17 thrall Unknown Type on Question 1 =0A= Nov 28 13:28:17 thrall =0A= Nov 28 13:28:17 thrall Unknown Type on Question 1 =0A= Nov 28 13:28:17 thrall =0A= Nov 28 13:28:17 thrall Unknown Type of Resource 100 =0A= Nov 28 13:38:07 thrall =0A= Nov 28 13:38:07 thrall Unknown Type on Question 1 =0A= Nov 28 13:38:07 thrall =0A= Nov 28 13:38:07 thrall Unknown Type on Question 1 =0A= Nov 28 13:38:07 thrall =0A= Nov 28 13:38:07 thrall Unknown Type of Resource 100 =0A= Nov 28 13:43:17 thrall =0A= Nov 28 13:43:17 thrall Unknown Type on Question 1 =0A= Nov 28 13:43:17 thrall =0A= Nov 28 13:43:17 thrall Unknown Type on Question 1 =0A= Nov 28 13:43:17 thrall =0A= Nov 28 13:43:17 thrall Unknown Type of Resource 100 =0A= Nov 28 13:53:06 thrall =0A= Nov 28 13:53:06 thrall Unknown Type on Question 1 =0A= Nov 28 13:53:07 thrall =0A= Nov 28 13:53:07 thrall Unknown Type on Question 1 =0A= Nov 28 13:53:07 thrall =0A= Nov 28 13:53:07 thrall Unknown Type of Resource 100 =0A= Nov 28 13:58:17 thrall =0A= Nov 28 13:58:17 thrall Unknown Type on Question 1 =0A= Nov 28 13:58:17 thrall =0A= Nov 28 13:58:17 thrall Unknown Type on Question 1 =0A= Nov 28 13:58:17 thrall =0A= Nov 28 13:58:17 thrall Unknown Type of Resource 100 =0A= Nov 28 14:08:06 thrall =0A= Nov 28 14:08:06 thrall Unknown Type on Question 1 =0A= Nov 28 14:08:07 thrall =0A= Nov 28 14:08:07 thrall Unknown Type on Question 1 =0A= Nov 28 14:08:07 thrall =0A= Nov 28 14:08:07 thrall Unknown Type of Resource 100 =0A= Nov 28 14:13:17 thrall =0A= Nov 28 14:13:17 thrall Unknown Type on Question 1 =0A= Nov 28 14:13:17 thrall =0A= Nov 28 14:13:17 thrall Unknown Type on Question 1 =0A= Nov 28 14:13:17 thrall =0A= Nov 28 14:13:17 thrall Unknown Type of Resource 100 =0A= Nov 28 14:17:57 thrall su: dameon to root on /dev/ttyp1=0A= Nov 28 14:20:12 thrall su: dameon to root on /dev/ttyp2=0A= Nov 28 14:23:06 thrall =0A= Nov 28 14:23:06 thrall Unknown Type on Question 1 =0A= Nov 28 14:23:07 thrall =0A= Nov 28 14:23:07 thrall Unknown Type on Question 1 =0A= Nov 28 14:23:07 thrall =0A= Nov 28 14:23:07 thrall Unknown Type of Resource 100 =0A= Nov 28 14:28:16 thrall =0A= Nov 28 14:28:16 thrall Unknown Type on Question 1 =0A= Nov 28 14:28:17 thrall =0A= Nov 28 14:28:17 thrall Unknown Type on Question 1 =0A= Nov 28 14:28:17 thrall =0A= Nov 28 14:28:17 thrall Unknown Type of Resource 100 =0A= Nov 28 14:32:42 thrall /kernel: wd0: interrupt timeout:=0A= Nov 28 14:32:43 thrall /kernel: wd0: status 58 error = 0=0A= Nov 28 14:38:06 thrall =0A= Nov 28 14:38:06 thrall Unknown Type on Question 1 =0A= Nov 28 14:38:07 thrall =0A= Nov 28 14:38:07 thrall Unknown Type on Question 1 =0A= Nov 28 14:38:07 thrall =0A= Nov 28 14:38:07 thrall Unknown Type of Resource 100 =0A= Nov 28 14:43:16 thrall =0A= Nov 28 14:43:17 thrall Unknown Type on Question 1 =0A= Nov 28 14:43:17 thrall =0A= Nov 28 14:43:17 thrall Unknown Type on Question 1 =0A= Nov 28 14:43:17 thrall =0A= Nov 28 14:43:17 thrall Unknown Type of Resource 100 =0A= Nov 28 14:53:06 thrall =0A= Nov 28 14:53:06 thrall Unknown Type on Question 1 =0A= Nov 28 14:53:07 thrall =0A= Nov 28 14:53:07 thrall Unknown Type on Question 1 =0A= Nov 28 14:53:07 thrall =0A= Nov 28 14:53:07 thrall Unknown Type of Resource 100 =0A= Nov 28 14:57:26 thrall =0A= Nov 28 14:57:26 thrall Unknown Type on Question 1 =0A= Nov 28 14:57:26 thrall =0A= Nov 28 14:57:26 thrall Unknown Type on Question 1 =0A= Nov 28 14:57:26 thrall =0A= Nov 28 14:57:26 thrall Unknown Type of Resource 100 =0A= Nov 28 14:58:42 thrall =0A= Nov 28 14:58:42 thrall Unknown Type on Question 1 =0A= Nov 28 14:58:42 thrall =0A= Nov 28 14:58:42 thrall Unknown Type on Question 1 =0A= Nov 28 14:58:42 thrall =0A= Nov 28 14:58:42 thrall Unknown Type of Resource 100 =0A= Nov 28 14:58:44 thrall =0A= Nov 28 14:58:44 thrall Unknown Type on Question 1 =0A= Nov 28 14:58:44 thrall =0A= Nov 28 14:58:44 thrall Unknown Type on Question 1 =0A= Nov 28 14:58:44 thrall =0A= Nov 28 14:58:44 thrall Unknown Type of Resource 100 =0A= Nov 28 14:59:01 thrall =0A= Nov 28 14:59:01 thrall Unknown Type on Question 1 =0A= Nov 28 14:59:01 thrall =0A= Nov 28 14:59:01 thrall Unknown Type on Question 1 =0A= Nov 28 14:59:01 thrall =0A= Nov 28 14:59:01 thrall Unknown Type of Resource 100 =0A= Nov 28 15:00:01 thrall =0A= Nov 28 15:00:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:00:01 thrall =0A= Nov 28 15:00:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:00:01 thrall =0A= Nov 28 15:00:01 thrall Unknown Type of Resource 100 =0A= Nov 28 15:01:01 thrall =0A= Nov 28 15:01:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:01:01 thrall =0A= Nov 28 15:01:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:01:01 thrall =0A= Nov 28 15:01:01 thrall Unknown Type of Resource 100 =0A= Nov 28 15:04:01 thrall =0A= Nov 28 15:04:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:04:01 thrall =0A= Nov 28 15:04:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:04:01 thrall =0A= Nov 28 15:04:01 thrall Unknown Type of Resource 100 =0A= Nov 28 15:09:01 thrall =0A= Nov 28 15:09:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:09:01 thrall =0A= Nov 28 15:09:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:09:01 thrall =0A= Nov 28 15:09:01 thrall Unknown Type of Resource 100 =0A= Nov 28 15:13:44 thrall =0A= Nov 28 15:13:44 thrall Unknown Type on Question 1 =0A= Nov 28 15:13:44 thrall =0A= Nov 28 15:13:44 thrall Unknown Type on Question 1 =0A= Nov 28 15:13:44 thrall =0A= Nov 28 15:13:44 thrall Unknown Type of Resource 100 =0A= Nov 28 15:14:01 thrall =0A= Nov 28 15:14:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:14:01 thrall =0A= Nov 28 15:14:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:14:01 thrall =0A= Nov 28 15:14:01 thrall Unknown Type of Resource 100 =0A= Nov 28 15:19:01 thrall =0A= Nov 28 15:19:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:19:01 thrall =0A= Nov 28 15:19:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:19:01 thrall =0A= Nov 28 15:19:01 thrall Unknown Type of Resource 100 =0A= Nov 28 15:24:00 thrall =0A= Nov 28 15:24:00 thrall Unknown Type on Question 1 =0A= Nov 28 15:24:01 thrall =0A= Nov 28 15:24:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:24:01 thrall =0A= Nov 28 15:24:01 thrall Unknown Type of Resource 100 =0A= Nov 28 15:28:44 thrall =0A= Nov 28 15:28:44 thrall Unknown Type on Question 1 =0A= Nov 28 15:28:44 thrall =0A= Nov 28 15:28:44 thrall Unknown Type on Question 1 =0A= Nov 28 15:28:44 thrall =0A= Nov 28 15:28:44 thrall Unknown Type of Resource 100 =0A= Nov 28 15:29:00 thrall =0A= Nov 28 15:29:00 thrall Unknown Type on Question 1 =0A= Nov 28 15:29:01 thrall =0A= Nov 28 15:29:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:29:01 thrall =0A= Nov 28 15:29:01 thrall Unknown Type of Resource 100 =0A= Nov 28 15:34:00 thrall =0A= Nov 28 15:34:00 thrall Unknown Type on Question 1 =0A= Nov 28 15:34:01 thrall =0A= Nov 28 15:34:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:34:01 thrall =0A= Nov 28 15:34:01 thrall Unknown Type of Resource 100 =0A= Nov 28 15:39:00 thrall =0A= Nov 28 15:39:00 thrall Unknown Type on Question 1 =0A= Nov 28 15:39:01 thrall =0A= Nov 28 15:39:01 thrall Unknown Type on Question 1 =0A= Nov 28 15:39:01 thrall =0A= Nov 28 15:39:01 thrall Unknown Type of Resource 100 =0A= Nov 28 15:43:44 thrall =0A= Nov 28 15:43:44 thrall Unknown Type on Question 1 =0A= Nov 28 15:43:44 thrall =0A= Nov 28 15:43:44 thrall Unknown Type on Question 1 =0A= Nov 28 15:43:44 thrall =0A= Nov 28 15:43:44 thrall Unknown Type of Resource 100 =0A= Nov 28 15:49:00 thrall =0A= Nov 28 15:49:00 thrall Unknown Type on Question 1 =0A= Nov 28 15:49:00 thrall =0A= Nov 28 15:49:00 thrall Unknown Type on Question 1 =0A= Nov 28 15:49:00 thrall =0A= Nov 28 15:49:00 thrall Unknown Type of Resource 100 =0A= Nov 28 15:58:44 thrall =0A= Nov 28 15:58:44 thrall Unknown Type on Question 1 =0A= Nov 28 15:58:44 thrall =0A= Nov 28 15:58:44 thrall Unknown Type on Question 1 =0A= Nov 28 15:58:44 thrall =0A= Nov 28 15:58:44 thrall Unknown Type of Resource 100 =0A= Nov 28 16:04:00 thrall =0A= Nov 28 16:04:00 thrall Unknown Type on Question 1 =0A= Nov 28 16:04:00 thrall =0A= Nov 28 16:04:00 thrall Unknown Type on Question 1 =0A= Nov 28 16:04:00 thrall =0A= Nov 28 16:04:00 thrall Unknown Type of Resource 100 =0A= Nov 28 16:13:44 thrall =0A= Nov 28 16:13:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:13:44 thrall =0A= Nov 28 16:13:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:13:44 thrall =0A= Nov 28 16:13:44 thrall Unknown Type of Resource 100 =0A= Nov 28 16:19:00 thrall =0A= Nov 28 16:19:00 thrall Unknown Type on Question 1 =0A= Nov 28 16:19:00 thrall =0A= Nov 28 16:19:00 thrall Unknown Type on Question 1 =0A= Nov 28 16:19:00 thrall =0A= Nov 28 16:19:00 thrall Unknown Type of Resource 100 =0A= Nov 28 16:28:44 thrall =0A= Nov 28 16:28:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:28:44 thrall =0A= Nov 28 16:28:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:28:44 thrall =0A= Nov 28 16:28:44 thrall Unknown Type of Resource 100 =0A= Nov 28 16:34:00 thrall =0A= Nov 28 16:34:00 thrall Unknown Type on Question 1 =0A= Nov 28 16:34:00 thrall =0A= Nov 28 16:34:00 thrall Unknown Type on Question 1 =0A= Nov 28 16:34:00 thrall =0A= Nov 28 16:34:00 thrall Unknown Type of Resource 100 =0A= Nov 28 16:43:07 thrall =0A= Nov 28 16:43:07 thrall Unknown Type on Question 1 =0A= Nov 28 16:43:07 thrall =0A= Nov 28 16:43:07 thrall Unknown Type on Question 1 =0A= Nov 28 16:43:07 thrall =0A= Nov 28 16:43:07 thrall Unknown Type of Resource 100 =0A= Nov 28 16:43:27 thrall =0A= Nov 28 16:43:27 thrall Unknown Type on Question 1 =0A= Nov 28 16:43:27 thrall =0A= Nov 28 16:43:27 thrall Unknown Type on Question 1 =0A= Nov 28 16:43:27 thrall =0A= Nov 28 16:43:27 thrall Unknown Type of Resource 100 =0A= Nov 28 16:44:26 thrall =0A= Nov 28 16:44:26 thrall Unknown Type on Question 1 =0A= Nov 28 16:44:26 thrall =0A= Nov 28 16:44:26 thrall Unknown Type on Question 1 =0A= Nov 28 16:44:26 thrall =0A= Nov 28 16:44:26 thrall Unknown Type of Resource 100 =0A= Nov 28 16:44:27 thrall =0A= Nov 28 16:44:27 thrall Unknown Type on Question 1 =0A= Nov 28 16:44:27 thrall =0A= Nov 28 16:44:27 thrall Unknown Type on Question 1 =0A= Nov 28 16:44:27 thrall =0A= Nov 28 16:44:27 thrall Unknown Type of Resource 100 =0A= Nov 28 16:44:44 thrall =0A= Nov 28 16:44:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:44:44 thrall =0A= Nov 28 16:44:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:44:44 thrall =0A= Nov 28 16:44:44 thrall Unknown Type of Resource 100 =0A= Nov 28 16:45:44 thrall =0A= Nov 28 16:45:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:45:44 thrall =0A= Nov 28 16:45:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:45:44 thrall =0A= Nov 28 16:45:44 thrall Unknown Type of Resource 100 =0A= Nov 28 16:46:44 thrall =0A= Nov 28 16:46:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:46:44 thrall =0A= Nov 28 16:46:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:46:44 thrall =0A= Nov 28 16:46:44 thrall Unknown Type of Resource 100 =0A= Nov 28 16:49:44 thrall =0A= Nov 28 16:49:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:49:44 thrall =0A= Nov 28 16:49:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:49:44 thrall =0A= Nov 28 16:49:44 thrall Unknown Type of Resource 100 =0A= Nov 28 16:54:44 thrall =0A= Nov 28 16:54:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:54:44 thrall =0A= Nov 28 16:54:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:54:44 thrall =0A= Nov 28 16:54:44 thrall Unknown Type of Resource 100 =0A= Nov 28 16:59:27 thrall =0A= Nov 28 16:59:27 thrall Unknown Type on Question 1 =0A= Nov 28 16:59:27 thrall =0A= Nov 28 16:59:27 thrall Unknown Type on Question 1 =0A= Nov 28 16:59:27 thrall =0A= Nov 28 16:59:27 thrall Unknown Type of Resource 100 =0A= Nov 28 16:59:44 thrall =0A= Nov 28 16:59:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:59:44 thrall =0A= Nov 28 16:59:44 thrall Unknown Type on Question 1 =0A= Nov 28 16:59:44 thrall =0A= Nov 28 16:59:44 thrall Unknown Type of Resource 100 =0A= Nov 28 17:04:44 thrall =0A= Nov 28 17:04:44 thrall Unknown Type on Question 1 =0A= Nov 28 17:04:44 thrall =0A= Nov 28 17:04:44 thrall Unknown Type on Question 1 =0A= Nov 28 17:04:44 thrall =0A= Nov 28 17:04:44 thrall Unknown Type of Resource 100 =0A= Nov 28 17:09:44 thrall =0A= Nov 28 17:09:44 thrall Unknown Type on Question 1 =0A= Nov 28 17:09:44 thrall =0A= Nov 28 17:09:44 thrall Unknown Type on Question 1 =0A= Nov 28 17:09:44 thrall =0A= Nov 28 17:09:44 thrall Unknown Type of Resource 100 =0A= Nov 28 17:14:27 thrall =0A= Nov 28 17:14:27 thrall Unknown Type on Question 1 =0A= Nov 28 17:14:27 thrall =0A= Nov 28 17:14:27 thrall Unknown Type on Question 1 =0A= Nov 28 17:14:27 thrall =0A= Nov 28 17:14:27 thrall Unknown Type of Resource 100 =0A= Nov 28 17:14:44 thrall =0A= Nov 28 17:14:44 thrall Unknown Type on Question 1 =0A= Nov 28 17:14:44 thrall =0A= Nov 28 17:14:44 thrall Unknown Type on Question 1 =0A= Nov 28 17:14:44 thrall =0A= Nov 28 17:14:44 thrall Unknown Type of Resource 100 =0A= Nov 28 17:19:44 thrall =0A= Nov 28 17:19:44 thrall Unknown Type on Question 1 =0A= Nov 28 17:19:44 thrall =0A= Nov 28 17:19:44 thrall Unknown Type on Question 1 =0A= Nov 28 17:19:44 thrall =0A= Nov 28 17:19:44 thrall Unknown Type of Resource 100 =0A= Nov 28 17:24:44 thrall =0A= Nov 28 17:24:44 thrall Unknown Type on Question 1 =0A= Nov 28 17:24:44 thrall =0A= Nov 28 17:24:44 thrall Unknown Type on Question 1 =0A= Nov 28 17:24:44 thrall =0A= Nov 28 17:24:44 thrall Unknown Type of Resource 100 =0A= Nov 28 17:29:27 thrall =0A= Nov 28 17:29:27 thrall Unknown Type on Question 1 =0A= Nov 28 17:29:27 thrall =0A= Nov 28 17:29:27 thrall Unknown Type on Question 1 =0A= Nov 28 17:29:27 thrall =0A= Nov 28 17:29:27 thrall Unknown Type of Resource 100 =0A= Nov 28 17:34:44 thrall =0A= Nov 28 17:34:44 thrall Unknown Type on Question 1 =0A= Nov 28 17:34:44 thrall =0A= Nov 28 17:34:44 thrall Unknown Type on Question 1 =0A= Nov 28 17:34:44 thrall =0A= Nov 28 17:34:44 thrall Unknown Type of Resource 100 =0A= Nov 28 17:44:27 thrall =0A= Nov 28 17:44:27 thrall Unknown Type on Question 1 =0A= Nov 28 17:44:27 thrall =0A= Nov 28 17:44:27 thrall Unknown Type on Question 1 =0A= Nov 28 17:44:27 thrall =0A= Nov 28 17:44:27 thrall Unknown Type of Resource 100 =0A= Nov 28 17:49:44 thrall =0A= Nov 28 17:49:44 thrall Unknown Type on Question 1 =0A= Nov 28 17:49:44 thrall =0A= Nov 28 17:49:44 thrall Unknown Type on Question 1 =0A= Nov 28 17:49:44 thrall =0A= Nov 28 17:49:44 thrall Unknown Type of Resource 100 =0A= Nov 28 17:59:27 thrall =0A= Nov 28 17:59:27 thrall Unknown Type on Question 1 =0A= Nov 28 17:59:27 thrall =0A= Nov 28 17:59:27 thrall Unknown Type on Question 1 =0A= Nov 28 17:59:27 thrall =0A= Nov 28 17:59:27 thrall Unknown Type of Resource 100 =0A= Nov 28 18:04:44 thrall =0A= Nov 28 18:04:44 thrall Unknown Type on Question 1 =0A= Nov 28 18:04:44 thrall =0A= Nov 28 18:04:44 thrall Unknown Type on Question 1 =0A= Nov 28 18:04:44 thrall =0A= Nov 28 18:04:44 thrall Unknown Type of Resource 100 =0A= Nov 28 18:14:27 thrall =0A= Nov 28 18:14:27 thrall Unknown Type on Question 1 =0A= Nov 28 18:14:27 thrall =0A= Nov 28 18:14:27 thrall Unknown Type on Question 1 =0A= Nov 28 18:14:27 thrall =0A= Nov 28 18:14:27 thrall Unknown Type of Resource 100 =0A= Nov 28 18:14:27 thrall su: dameon to root on /dev/ttyp1=0A= Nov 28 18:14:34 thrall shutdown: halt by dameon: =0A= Nov 28 18:14:36 thrall syslogd: exiting on signal 15=0A= Nov 28 18:26:12 thrall /kernel: Copyright (c) 1992-1998 FreeBSD Inc.=0A= Nov 28 18:26:12 thrall /kernel: Copyright (c) 1982, 1986, 1989, 1991, = 1993=0A= Nov 28 18:26:12 thrall /kernel: The Regents of the University of = California. All rights reserved.=0A= Nov 28 18:26:12 thrall /kernel: FreeBSD 3.0-RELEASE #0: Thu Nov 26 = 09:23:14 CST 1998=0A= Nov 28 18:26:12 thrall /kernel: = root@thrall.infernious.net:/usr/src/sys/compile/INFERNIOUS=0A= Nov 28 18:26:12 thrall /kernel: Timecounter "i8254" frequency 1193182 = Hz cost 3810 ns=0A= Nov 28 18:26:12 thrall /kernel: CPU: Pentium/P54C (586-class CPU)=0A= Nov 28 18:26:12 thrall /kernel: Origin =3D "GenuineIntel" Id =3D 0x525 = Stepping=3D5=0A= Nov 28 18:26:12 thrall /kernel: = Features=3D0x3bf=0A= Nov 28 18:26:12 thrall /kernel: real memory =3D 58720256 (57344K = bytes)=0A= Nov 28 18:26:12 thrall /kernel: avail memory =3D 54333440 (53060K = bytes)=0A= Nov 28 18:26:12 thrall /kernel: Programming 16 pins in IOAPIC #0=0A= Nov 28 18:26:12 thrall /kernel: FreeBSD/SMP: Multiprocessor = motherboard=0A= Nov 28 18:26:12 thrall /kernel: cpu0 (BSP): apic id: 0, version: = 0x00030010, at 0xfee00000=0A= Nov 28 18:26:12 thrall /kernel: cpu1 (AP): apic id: 1, version: = 0x00030010, at 0xfee00000=0A= Nov 28 18:26:12 thrall /kernel: io0 (APIC): apic id: 2, version: = 0x000f0011, at 0xfec00000=0A= Nov 28 18:26:12 thrall /kernel: eisa0: =0A= Nov 28 18:26:12 thrall /kernel: Probing for devices on the EISA bus=0A= Nov 28 18:26:12 thrall /kernel: Probing for devices on PCI bus 0:=0A= Nov 28 18:26:12 thrall /kernel: chip0: rev 0x11 on pci0.0.0=0A= Nov 28 18:26:12 thrall /kernel: chip1: = rev 0x05 o=0A= Nov 28 18:26:12 thrall /kernel: n pci0.2.0=0A= Nov 28 18:26:12 thrall /kernel: Freeing (NOT implemented) redirected = ISA irq 0.=0A= Nov 28 18:26:12 thrall /kernel: vga0: rev 0x01 int a irq 2 on pci0.14.0=0A= Nov 28 18:26:12 thrall /kernel: xl0: <3Com 3c900 Etherlink XL 10BaseT = Combo> rev 0x00 int a irq 10 on pci0.15.0=0A= Nov 28 18:26:12 thrall /kernel: xl0: Ethernet address: = 00:60:08:bd:7d:8a=0A= Nov 28 18:26:12 thrall /kernel: xl0: selecting 10baseT transceiver, = half duplex=0A= Nov 28 18:26:12 thrall /kernel: Probing for devices on the ISA bus:=0A= Nov 28 18:26:12 thrall /kernel: sc0 at 0x60-0x6f irq 1 on = motherboard=0A= Nov 28 18:26:12 thrall /kernel: sc0: VGA color <16 virtual consoles, = flags=3D0x0>=0A= Nov 28 18:26:12 thrall /kernel: sio0 at 0x2f8-0x2ff irq 3 flags 0x10 on = isa=0A= Nov 28 18:26:12 thrall /kernel: sio0: type 16550A=0A= Nov 28 18:26:12 thrall /kernel: psm0 at 0x60-0x64 irq 12 on = motherboard=0A= Nov 28 18:26:12 thrall /kernel: psm0: model Generic PS/2 mouse, device = ID 0=0A= Nov 28 18:26:12 thrall /kernel: fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on = isa=0A= Nov 28 18:26:12 thrall /kernel: fdc0: FIFO enabled, 8 bytes = threshold=0A= Nov 28 18:26:12 thrall /kernel: fd0: 1.44MB 3.5in=0A= Nov 28 18:26:12 thrall /kernel: wdc0 at 0x1f0-0x1f7 irq 14 on isa=0A= Nov 28 18:26:12 thrall /kernel: wdc0: unit 0 (wd0): =0A= Nov 28 18:26:12 thrall /kernel: wd0: 1550MB (3175200 sectors), 3150 = cyls, 16 heads, 63 S/T, 512 B/S=0A= Nov 28 18:26:12 thrall /kernel: wdc1 at 0x170-0x177 irq 15 on isa=0A= Nov 28 18:26:12 thrall /kernel: wdc1: unit 1 (atapi): , removable, accel, dma, iordis=0A= Nov 28 18:26:12 thrall /kernel: npx0 on motherboard=0A= Nov 28 18:26:12 thrall /kernel: npx0: INT 16 interface=0A= Nov 28 18:26:12 thrall /kernel: stray irq 7=0A= Nov 28 18:26:12 thrall /kernel: Intel Pentium F00F detected, installing = workaroun=0A= Nov 28 18:26:12 thrall /kernel: d=0A= Nov 28 18:26:12 thrall /kernel: APIC_IO: Testing 8254 interrupt = delivery=0A= Nov 28 18:26:12 thrall /kernel: APIC_IO: routing 8254 via pin 2=0A= Nov 28 18:26:12 thrall /kernel: changing root device to wd0s1a=0A= Nov 28 18:26:12 thrall /kernel: SMP: AP CPU #1 Launched!=0A= Nov 28 18:27:57 thrall su: dameon to root on /dev/ttyp1=0A= Nov 28 18:29:35 thrall =0A= Nov 28 18:29:35 thrall Unknown Type on Question 1 =0A= Nov 28 18:29:35 thrall =0A= Nov 28 18:29:35 thrall Unknown Type on Question 1 =0A= Nov 28 18:29:35 thrall =0A= Nov 28 18:29:35 thrall Unknown Type of Resource 100 =0A= Nov 28 18:30:35 thrall =0A= Nov 28 18:30:35 thrall Unknown Type on Question 1 =0A= Nov 28 18:30:36 thrall =0A= Nov 28 18:30:36 thrall Unknown Type on Question 1 =0A= Nov 28 18:30:36 thrall =0A= Nov 28 18:30:36 thrall Unknown Type of Resource 100 =0A= Nov 28 18:32:55 thrall /kernel: pid 354 (smproxy), uid 1000: exited on = signal 11 (core dumped)=0A= Nov 28 18:38:55 thrall =0A= Nov 28 18:38:55 thrall Unknown Type on Question 1 =0A= Nov 28 18:38:55 thrall =0A= Nov 28 18:38:55 thrall Unknown Type on Question 1 =0A= Nov 28 18:38:55 thrall =0A= Nov 28 18:38:55 thrall Unknown Type of Resource 100 =0A= Nov 28 18:53:54 thrall =0A= Nov 28 18:53:54 thrall Unknown Type on Question 1 =0A= Nov 28 18:53:55 thrall =0A= Nov 28 18:53:55 thrall Unknown Type on Question 1 =0A= Nov 28 18:53:55 thrall =0A= Nov 28 18:53:55 thrall Unknown Type of Resource 100 =0A= Nov 28 19:04:43 thrall ppp[60]: Warning: Chat script failed =0A= Nov 28 19:08:54 thrall =0A= Nov 28 19:08:54 thrall Unknown Type on Question 1 =0A= Nov 28 19:08:55 thrall =0A= Nov 28 19:08:55 thrall Unknown Type on Question 1 =0A= Nov 28 19:08:55 thrall =0A= Nov 28 19:08:55 thrall Unknown Type of Resource 100 =0A= Nov 28 19:23:54 thrall =0A= Nov 28 19:23:54 thrall Unknown Type on Question 1 =0A= Nov 28 19:23:55 thrall =0A= Nov 28 19:23:55 thrall Unknown Type on Question 1 =0A= Nov 28 19:23:55 thrall =0A= Nov 28 19:23:55 thrall Unknown Type of Resource 100 =0A= Nov 28 19:38:54 thrall =0A= Nov 28 19:38:54 thrall Unknown Type on Question 1 =0A= Nov 28 19:38:54 thrall =0A= Nov 28 19:38:54 thrall Unknown Type on Question 1 =0A= Nov 28 19:38:55 thrall =0A= Nov 28 19:38:55 thrall Unknown Type of Resource 100 =0A= Nov 28 19:53:54 thrall =0A= Nov 28 19:53:54 thrall Unknown Type on Question 1 =0A= Nov 28 19:53:54 thrall =0A= Nov 28 19:53:54 thrall Unknown Type on Question 1 =0A= Nov 28 19:53:54 thrall =0A= Nov 28 19:53:54 thrall Unknown Type of Resource 100 =0A= Nov 28 20:08:54 thrall =0A= Nov 28 20:08:54 thrall Unknown Type on Question 1 =0A= Nov 28 20:08:54 thrall =0A= Nov 28 20:08:54 thrall Unknown Type on Question 1 =0A= Nov 28 20:08:54 thrall =0A= Nov 28 20:08:54 thrall Unknown Type of Resource 100 =0A= Nov 28 20:23:54 thrall =0A= Nov 28 20:23:54 thrall Unknown Type on Question 1 =0A= Nov 28 20:23:54 thrall =0A= Nov 28 20:23:54 thrall Unknown Type on Question 1 =0A= Nov 28 20:23:54 thrall =0A= Nov 28 20:23:54 thrall Unknown Type of Resource 100 =0A= Nov 28 20:38:54 thrall =0A= Nov 28 20:38:54 thrall Unknown Type on Question 1 =0A= Nov 28 20:38:54 thrall =0A= Nov 28 20:38:54 thrall Unknown Type on Question 1 =0A= Nov 28 20:38:54 thrall =0A= Nov 28 20:38:54 thrall Unknown Type of Resource 100 =0A= Nov 28 20:53:54 thrall =0A= Nov 28 20:53:54 thrall Unknown Type on Question 1 =0A= Nov 28 20:53:54 thrall =0A= Nov 28 20:53:54 thrall Unknown Type on Question 1 =0A= Nov 28 20:53:54 thrall =0A= Nov 28 20:53:54 thrall Unknown Type of Resource 100 =0A= Nov 28 20:58:13 thrall =0A= Nov 28 20:58:13 thrall Unknown Type on Question 1 =0A= Nov 28 20:58:13 thrall =0A= Nov 28 20:58:13 thrall Unknown Type on Question 1 =0A= Nov 28 20:58:13 thrall =0A= Nov 28 20:58:13 thrall Unknown Type of Resource 100 =0A= Nov 28 21:13:13 thrall =0A= Nov 28 21:13:13 thrall Unknown Type on Question 1 =0A= Nov 28 21:13:13 thrall =0A= Nov 28 21:13:13 thrall Unknown Type on Question 1 =0A= Nov 28 21:13:13 thrall =0A= Nov 28 21:13:13 thrall Unknown Type of Resource 100 =0A= Nov 28 21:28:13 thrall =0A= Nov 28 21:28:13 thrall Unknown Type on Question 1 =0A= Nov 28 21:28:13 thrall =0A= Nov 28 21:28:13 thrall Unknown Type on Question 1 =0A= Nov 28 21:28:13 thrall =0A= Nov 28 21:28:13 thrall Unknown Type of Resource 100 =0A= Nov 28 21:43:13 thrall =0A= Nov 28 21:43:13 thrall Unknown Type on Question 1 =0A= Nov 28 21:43:13 thrall =0A= Nov 28 21:43:13 thrall Unknown Type on Question 1 =0A= Nov 28 21:43:13 thrall =0A= Nov 28 21:43:13 thrall Unknown Type of Resource 100 =0A= Nov 28 21:53:17 thrall =0A= Nov 28 21:53:17 thrall Unknown Type on Question 1 =0A= Nov 28 21:53:18 thrall =0A= Nov 28 21:53:18 thrall Unknown Type on Question 1 =0A= Nov 28 21:53:18 thrall =0A= Nov 28 21:53:18 thrall Unknown Type of Resource 100 =0A= Nov 28 21:53:18 thrall =0A= Nov 28 21:53:18 thrall Unknown Type on Question 1 =0A= Nov 28 21:53:18 thrall =0A= Nov 28 21:53:18 thrall Unknown Type on Question 1 =0A= Nov 28 21:53:18 thrall =0A= Nov 28 21:53:18 thrall Unknown Type of Resource 100 =0A= Nov 28 21:56:42 thrall =0A= Nov 28 21:56:42 thrall Unknown Type on Question 1 =0A= Nov 28 21:56:42 thrall =0A= Nov 28 21:56:42 thrall Unknown Type on Question 1 =0A= Nov 28 21:56:42 thrall =0A= Nov 28 21:56:42 thrall Unknown Type of Resource 100 =0A= Nov 28 22:04:09 thrall =0A= Nov 28 22:04:09 thrall Unknown Type on Question 1 =0A= Nov 28 22:04:09 thrall =0A= Nov 28 22:04:09 thrall Unknown Type on Question 1 =0A= Nov 28 22:04:09 thrall =0A= Nov 28 22:04:09 thrall Unknown Type of Resource 100 =0A= Nov 28 22:06:35 thrall =0A= Nov 28 22:06:35 thrall Unknown Type on Question 1 =0A= Nov 28 22:06:35 thrall =0A= Nov 28 22:06:35 thrall Unknown Type on Question 1 =0A= Nov 28 22:06:35 thrall =0A= Nov 28 22:06:35 thrall Unknown Type of Resource 100 =0A= Nov 28 22:12:01 thrall =0A= Nov 28 22:12:01 thrall Unknown Type on Question 1 =0A= Nov 28 22:12:01 thrall =0A= Nov 28 22:12:01 thrall Unknown Type on Question 1 =0A= Nov 28 22:12:01 thrall =0A= Nov 28 22:12:01 thrall Unknown Type of Resource 100 =0A= Nov 28 22:14:50 thrall =0A= Nov 28 22:14:50 thrall Unknown Type on Question 1 =0A= Nov 28 22:14:50 thrall =0A= Nov 28 22:14:50 thrall Unknown Type on Question 1 =0A= Nov 28 22:14:50 thrall =0A= Nov 28 22:14:50 thrall Unknown Type of Resource 100 =0A= Nov 28 22:29:50 thrall =0A= Nov 28 22:29:50 thrall Unknown Type on Question 1 =0A= Nov 28 22:29:50 thrall =0A= Nov 28 22:29:50 thrall Unknown Type on Question 1 =0A= Nov 28 22:29:50 thrall =0A= Nov 28 22:29:50 thrall Unknown Type of Resource 100 =0A= Nov 28 22:31:35 thrall =0A= Nov 28 22:31:35 thrall Unknown Type on Question 1 =0A= Nov 28 22:31:35 thrall =0A= Nov 28 22:31:35 thrall Unknown Type on Question 1 =0A= Nov 28 22:31:35 thrall =0A= Nov 28 22:31:35 thrall Unknown Type of Resource 100 =0A= Nov 28 22:35:18 thrall =0A= Nov 28 22:35:18 thrall Unknown Type on Question 1 =0A= Nov 28 22:35:18 thrall =0A= Nov 28 22:35:18 thrall Unknown Type on Question 1 =0A= Nov 28 22:35:18 thrall =0A= Nov 28 22:35:18 thrall Unknown Type of Resource 100 =0A= Nov 28 22:44:22 thrall =0A= Nov 28 22:44:22 thrall Unknown Type on Question 1 =0A= Nov 28 22:44:23 thrall =0A= Nov 28 22:44:23 thrall Unknown Type on Question 1 =0A= Nov 28 22:44:23 thrall =0A= Nov 28 22:44:23 thrall Unknown Type of Resource 100 =0A= Nov 28 22:45:18 thrall =0A= Nov 28 22:45:18 thrall Unknown Type on Question 1 =0A= Nov 28 22:45:18 thrall =0A= Nov 28 22:45:18 thrall Unknown Type on Question 1 =0A= Nov 28 22:45:18 thrall =0A= Nov 28 22:45:18 thrall Unknown Type of Resource 100 =0A= Nov 28 22:48:32 thrall =0A= Nov 28 22:48:32 thrall Unknown Type on Question 1 =0A= Nov 28 22:48:32 thrall =0A= Nov 28 22:48:32 thrall Unknown Type on Question 1 =0A= Nov 28 22:48:32 thrall =0A= Nov 28 22:48:32 thrall Unknown Type of Resource 100 =0A= Nov 28 22:53:32 thrall =0A= Nov 28 22:53:32 thrall Unknown Type on Question 1 =0A= Nov 28 22:53:32 thrall =0A= Nov 28 22:53:32 thrall Unknown Type on Question 1 =0A= Nov 28 22:53:32 thrall =0A= Nov 28 22:53:32 thrall Unknown Type of Resource 100 =0A= Nov 28 22:55:49 thrall =0A= Nov 28 22:55:49 thrall Unknown Type on Question 1 =0A= Nov 28 22:55:49 thrall =0A= Nov 28 22:55:49 thrall Unknown Type on Question 1 =0A= Nov 28 22:55:49 thrall =0A= Nov 28 22:55:49 thrall Unknown Type of Resource 100 =0A= Nov 28 22:57:09 thrall ppp[60]: Warning: Chat script failed =0A= Nov 28 22:59:08 thrall =0A= Nov 28 22:59:08 thrall Unknown Type on Question 1 =0A= Nov 28 22:59:08 thrall =0A= Nov 28 22:59:08 thrall Unknown Type on Question 1 =0A= Nov 28 22:59:08 thrall =0A= Nov 28 22:59:08 thrall Unknown Type of Resource 100 =0A= Nov 28 23:02:18 thrall =0A= Nov 28 23:02:18 thrall Unknown Type on Question 1 =0A= Nov 28 23:02:18 thrall =0A= Nov 28 23:02:18 thrall Unknown Type on Question 1 =0A= Nov 28 23:02:18 thrall =0A= Nov 28 23:02:18 thrall Unknown Type of Resource 100 =0A= Nov 28 23:10:48 thrall =0A= Nov 28 23:10:48 thrall Unknown Type on Question 1 =0A= Nov 28 23:10:48 thrall =0A= Nov 28 23:10:48 thrall Unknown Type on Question 1 =0A= Nov 28 23:10:48 thrall =0A= Nov 28 23:10:48 thrall Unknown Type of Resource 100 =0A= Nov 28 23:12:27 thrall =0A= Nov 28 23:12:27 thrall Unknown Type on Question 1 =0A= Nov 28 23:12:27 thrall =0A= Nov 28 23:12:27 thrall Unknown Type on Question 1 =0A= Nov 28 23:12:27 thrall =0A= Nov 28 23:12:27 thrall Unknown Type of Resource 100 =0A= Nov 28 23:16:03 thrall =0A= Nov 28 23:16:03 thrall Unknown Type on Question 1 =0A= Nov 28 23:16:03 thrall =0A= Nov 28 23:16:03 thrall Unknown Type on Question 1 =0A= Nov 28 23:16:03 thrall =0A= Nov 28 23:16:03 thrall Unknown Type of Resource 100 =0A= Nov 28 23:20:27 thrall =0A= Nov 28 23:20:27 thrall Unknown Type on Question 1 =0A= Nov 28 23:20:27 thrall =0A= Nov 28 23:20:27 thrall Unknown Type on Question 1 =0A= Nov 28 23:20:27 thrall =0A= Nov 28 23:20:27 thrall Unknown Type of Resource 100 =0A= Nov 28 23:26:39 thrall =0A= Nov 28 23:26:39 thrall Unknown Type on Question 1 =0A= Nov 28 23:26:40 thrall =0A= Nov 28 23:26:40 thrall Unknown Type on Question 1 =0A= Nov 28 23:26:40 thrall =0A= Nov 28 23:26:40 thrall Unknown Type of Resource 100 =0A= Nov 28 23:28:36 thrall =0A= Nov 28 23:28:36 thrall Unknown Type on Question 1 =0A= Nov 28 23:28:37 thrall =0A= Nov 28 23:28:37 thrall Unknown Type on Question 1 =0A= Nov 28 23:28:37 thrall =0A= Nov 28 23:28:37 thrall Unknown Type of Resource 100 =0A= Nov 28 23:37:38 thrall =0A= Nov 28 23:37:38 thrall Unknown Type on Question 1 =0A= Nov 28 23:37:38 thrall =0A= Nov 28 23:37:38 thrall Unknown Type on Question 1 =0A= Nov 28 23:37:38 thrall =0A= Nov 28 23:37:38 thrall Unknown Type of Resource 100 =0A= Nov 28 23:38:38 thrall =0A= Nov 28 23:38:38 thrall Unknown Type on Question 1 =0A= Nov 28 23:38:38 thrall =0A= Nov 28 23:38:38 thrall Unknown Type on Question 1 =0A= Nov 28 23:38:38 thrall =0A= Nov 28 23:38:38 thrall Unknown Type of Resource 100 =0A= Nov 28 23:44:59 thrall =0A= Nov 28 23:44:59 thrall Unknown Type on Question 1 =0A= Nov 28 23:44:59 thrall =0A= Nov 28 23:44:59 thrall Unknown Type on Question 1 =0A= Nov 28 23:44:59 thrall =0A= Nov 28 23:44:59 thrall Unknown Type of Resource 100 =0A= Nov 28 23:59:59 thrall =0A= Nov 28 23:59:59 thrall Unknown Type on Question 1 =0A= Nov 28 23:59:59 thrall =0A= Nov 28 23:59:59 thrall Unknown Type on Question 1 =0A= Nov 28 23:59:59 thrall =0A= Nov 28 23:59:59 thrall Unknown Type of Resource 100 =0A= Nov 29 00:14:59 thrall =0A= Nov 29 00:14:59 thrall Unknown Type on Question 1 =0A= Nov 29 00:14:59 thrall =0A= Nov 29 00:14:59 thrall Unknown Type on Question 1 =0A= Nov 29 00:14:59 thrall =0A= Nov 29 00:14:59 thrall Unknown Type of Resource 100 =0A= Nov 29 00:29:59 thrall =0A= Nov 29 00:29:59 thrall Unknown Type on Question 1 =0A= Nov 29 00:29:59 thrall =0A= Nov 29 00:29:59 thrall Unknown Type on Question 1 =0A= Nov 29 00:29:59 thrall =0A= Nov 29 00:29:59 thrall Unknown Type of Resource 100 =0A= Nov 29 00:44:59 thrall =0A= Nov 29 00:44:59 thrall Unknown Type on Question 1 =0A= Nov 29 00:44:59 thrall =0A= Nov 29 00:44:59 thrall Unknown Type on Question 1 =0A= Nov 29 00:44:59 thrall =0A= Nov 29 00:44:59 thrall Unknown Type of Resource 100 =0A= Nov 29 00:59:59 thrall =0A= Nov 29 00:59:59 thrall Unknown Type on Question 1 =0A= Nov 29 00:59:59 thrall =0A= Nov 29 00:59:59 thrall Unknown Type on Question 1 =0A= Nov 29 00:59:59 thrall =0A= Nov 29 00:59:59 thrall Unknown Type of Resource 100 =0A= Nov 29 01:14:58 thrall =0A= Nov 29 01:14:58 thrall Unknown Type on Question 1 =0A= Nov 29 01:14:59 thrall =0A= Nov 29 01:14:59 thrall Unknown Type on Question 1 =0A= Nov 29 01:14:59 thrall =0A= Nov 29 01:14:59 thrall Unknown Type of Resource 100 =0A= Nov 29 01:29:58 thrall =0A= Nov 29 01:29:58 thrall Unknown Type on Question 1 =0A= Nov 29 01:29:59 thrall =0A= Nov 29 01:29:59 thrall Unknown Type on Question 1 =0A= Nov 29 01:29:59 thrall =0A= Nov 29 01:29:59 thrall Unknown Type of Resource 100 =0A= Nov 29 01:44:58 thrall =0A= Nov 29 01:44:58 thrall Unknown Type on Question 1 =0A= Nov 29 01:44:59 thrall =0A= Nov 29 01:44:59 thrall Unknown Type on Question 1 =0A= Nov 29 01:44:59 thrall =0A= Nov 29 01:44:59 thrall Unknown Type of Resource 100 =0A= Nov 29 01:55:10 thrall =0A= Nov 29 01:55:10 thrall Unknown Type on Question 1 =0A= Nov 29 01:55:10 thrall =0A= Nov 29 01:55:10 thrall Unknown Type on Question 1 =0A= Nov 29 01:55:10 thrall =0A= Nov 29 01:55:10 thrall Unknown Type of Resource 100 =0A= Nov 29 02:10:10 thrall =0A= Nov 29 02:10:10 thrall Unknown Type on Question 1 =0A= Nov 29 02:10:10 thrall =0A= Nov 29 02:10:10 thrall Unknown Type on Question 1 =0A= Nov 29 02:10:10 thrall =0A= Nov 29 02:10:10 thrall Unknown Type of Resource 100 =0A= Nov 29 02:25:10 thrall =0A= Nov 29 02:25:10 thrall Unknown Type on Question 1 =0A= Nov 29 02:25:10 thrall =0A= Nov 29 02:25:10 thrall Unknown Type on Question 1 =0A= Nov 29 02:25:10 thrall =0A= Nov 29 02:25:10 thrall Unknown Type of Resource 100 =0A= Nov 29 02:40:10 thrall =0A= Nov 29 02:40:10 thrall Unknown Type on Question 1 =0A= Nov 29 02:40:10 thrall =0A= Nov 29 02:40:10 thrall Unknown Type on Question 1 =0A= Nov 29 02:40:10 thrall =0A= Nov 29 02:40:10 thrall Unknown Type of Resource 100 =0A= Nov 29 02:55:10 thrall =0A= Nov 29 02:55:10 thrall Unknown Type on Question 1 =0A= Nov 29 02:55:10 thrall =0A= Nov 29 02:55:10 thrall Unknown Type on Question 1 =0A= Nov 29 02:55:10 thrall =0A= Nov 29 02:55:10 thrall Unknown Type of Resource 100 =0A= Nov 29 03:10:10 thrall =0A= Nov 29 03:10:10 thrall Unknown Type on Question 1 =0A= Nov 29 03:10:10 thrall =0A= Nov 29 03:10:10 thrall Unknown Type on Question 1 =0A= Nov 29 03:10:10 thrall =0A= Nov 29 03:10:10 thrall Unknown Type of Resource 100 =0A= Nov 29 03:25:10 thrall =0A= Nov 29 03:25:10 thrall Unknown Type on Question 1 =0A= Nov 29 03:25:10 thrall =0A= Nov 29 03:25:10 thrall Unknown Type on Question 1 =0A= Nov 29 03:25:10 thrall =0A= Nov 29 03:25:10 thrall Unknown Type of Resource 100 =0A= Nov 29 03:40:10 thrall =0A= Nov 29 03:40:10 thrall Unknown Type on Question 1 =0A= Nov 29 03:40:10 thrall =0A= Nov 29 03:40:10 thrall Unknown Type on Question 1 =0A= Nov 29 03:40:10 thrall =0A= Nov 29 03:40:10 thrall Unknown Type of Resource 100 =0A= Nov 29 03:55:10 thrall =0A= Nov 29 03:55:10 thrall Unknown Type on Question 1 =0A= Nov 29 03:55:10 thrall =0A= Nov 29 03:55:10 thrall Unknown Type on Question 1 =0A= Nov 29 03:55:10 thrall =0A= Nov 29 03:55:10 thrall Unknown Type of Resource 100 =0A= Nov 29 04:10:10 thrall =0A= Nov 29 04:10:10 thrall Unknown Type on Question 1 =0A= Nov 29 04:10:10 thrall =0A= Nov 29 04:10:10 thrall Unknown Type on Question 1 =0A= Nov 29 04:10:10 thrall =0A= Nov 29 04:10:10 thrall Unknown Type of Resource 100 =0A= Nov 29 04:25:10 thrall =0A= Nov 29 04:25:10 thrall Unknown Type on Question 1 =0A= Nov 29 04:25:10 thrall =0A= Nov 29 04:25:10 thrall Unknown Type on Question 1 =0A= Nov 29 04:25:10 thrall =0A= Nov 29 04:25:10 thrall Unknown Type of Resource 100 =0A= Nov 29 04:40:10 thrall =0A= Nov 29 04:40:10 thrall Unknown Type on Question 1 =0A= Nov 29 04:40:10 thrall =0A= Nov 29 04:40:10 thrall Unknown Type on Question 1 =0A= Nov 29 04:40:10 thrall =0A= Nov 29 04:40:10 thrall Unknown Type of Resource 100 =0A= Nov 29 04:55:09 thrall =0A= Nov 29 04:55:09 thrall Unknown Type on Question 1 =0A= Nov 29 04:55:10 thrall =0A= Nov 29 04:55:10 thrall Unknown Type on Question 1 =0A= Nov 29 04:55:10 thrall =0A= Nov 29 04:55:10 thrall Unknown Type of Resource 100 =0A= Nov 29 05:10:09 thrall =0A= Nov 29 05:10:09 thrall Unknown Type on Question 1 =0A= Nov 29 05:10:10 thrall =0A= Nov 29 05:10:10 thrall Unknown Type on Question 1 =0A= Nov 29 05:10:10 thrall =0A= Nov 29 05:10:10 thrall Unknown Type of Resource 100 =0A= Nov 29 05:25:09 thrall =0A= Nov 29 05:25:09 thrall Unknown Type on Question 1 =0A= Nov 29 05:25:10 thrall =0A= Nov 29 05:25:10 thrall Unknown Type on Question 1 =0A= Nov 29 05:25:10 thrall =0A= Nov 29 05:25:10 thrall Unknown Type of Resource 100 =0A= Nov 29 05:40:09 thrall =0A= Nov 29 05:40:09 thrall Unknown Type on Question 1 =0A= Nov 29 05:40:10 thrall =0A= Nov 29 05:40:10 thrall Unknown Type on Question 1 =0A= Nov 29 05:40:10 thrall =0A= Nov 29 05:40:10 thrall Unknown Type of Resource 100 =0A= Nov 29 05:55:09 thrall =0A= Nov 29 05:55:09 thrall Unknown Type on Question 1 =0A= Nov 29 05:55:09 thrall =0A= Nov 29 05:55:09 thrall Unknown Type on Question 1 =0A= Nov 29 05:55:09 thrall =0A= Nov 29 05:55:09 thrall Unknown Type of Resource 100 =0A= Nov 29 06:10:09 thrall =0A= Nov 29 06:10:09 thrall Unknown Type on Question 1 =0A= Nov 29 06:10:09 thrall =0A= Nov 29 06:10:09 thrall Unknown Type on Question 1 =0A= Nov 29 06:10:09 thrall =0A= Nov 29 06:10:09 thrall Unknown Type of Resource 100 =0A= Nov 29 06:25:09 thrall =0A= Nov 29 06:25:09 thrall Unknown Type on Question 1 =0A= Nov 29 06:25:09 thrall =0A= Nov 29 06:25:09 thrall Unknown Type on Question 1 =0A= Nov 29 06:25:09 thrall =0A= Nov 29 06:25:09 thrall Unknown Type of Resource 100 =0A= Nov 29 06:40:09 thrall =0A= Nov 29 06:40:09 thrall Unknown Type on Question 1 =0A= Nov 29 06:40:09 thrall =0A= Nov 29 06:40:09 thrall Unknown Type on Question 1 =0A= Nov 29 06:40:09 thrall =0A= Nov 29 06:40:09 thrall Unknown Type of Resource 100 =0A= Nov 29 06:55:09 thrall =0A= Nov 29 06:55:09 thrall Unknown Type on Question 1 =0A= Nov 29 06:55:09 thrall =0A= Nov 29 06:55:09 thrall Unknown Type on Question 1 =0A= Nov 29 06:55:09 thrall =0A= Nov 29 06:55:09 thrall Unknown Type of Resource 100 =0A= Nov 29 07:10:09 thrall =0A= Nov 29 07:10:09 thrall Unknown Type on Question 1 =0A= Nov 29 07:10:09 thrall =0A= Nov 29 07:10:09 thrall Unknown Type on Question 1 =0A= Nov 29 07:10:09 thrall =0A= Nov 29 07:10:09 thrall Unknown Type of Resource 100 =0A= Nov 29 07:25:09 thrall =0A= Nov 29 07:25:09 thrall Unknown Type on Question 1 =0A= Nov 29 07:25:09 thrall =0A= Nov 29 07:25:09 thrall Unknown Type on Question 1 =0A= Nov 29 07:25:09 thrall =0A= Nov 29 07:25:09 thrall Unknown Type of Resource 100 =0A= Nov 29 07:40:09 thrall =0A= Nov 29 07:40:09 thrall Unknown Type on Question 1 =0A= Nov 29 07:40:09 thrall =0A= Nov 29 07:40:09 thrall Unknown Type on Question 1 =0A= Nov 29 07:40:09 thrall =0A= Nov 29 07:40:09 thrall Unknown Type of Resource 100 =0A= Nov 29 07:55:09 thrall =0A= Nov 29 07:55:09 thrall Unknown Type on Question 1 =0A= Nov 29 07:55:09 thrall =0A= Nov 29 07:55:09 thrall Unknown Type on Question 1 =0A= Nov 29 07:55:09 thrall =0A= Nov 29 07:55:09 thrall Unknown Type of Resource 100 =0A= Nov 29 08:10:09 thrall =0A= Nov 29 08:10:09 thrall Unknown Type on Question 1 =0A= Nov 29 08:10:09 thrall =0A= Nov 29 08:10:09 thrall Unknown Type on Question 1 =0A= Nov 29 08:10:09 thrall =0A= Nov 29 08:10:09 thrall Unknown Type of Resource 100 =0A= Nov 29 08:25:09 thrall =0A= Nov 29 08:25:09 thrall Unknown Type on Question 1 =0A= Nov 29 08:25:09 thrall =0A= Nov 29 08:25:09 thrall Unknown Type on Question 1 =0A= Nov 29 08:25:09 thrall =0A= Nov 29 08:25:09 thrall Unknown Type of Resource 100 =0A= Nov 29 08:40:09 thrall =0A= Nov 29 08:40:09 thrall Unknown Type on Question 1 =0A= Nov 29 08:40:09 thrall =0A= Nov 29 08:40:09 thrall Unknown Type on Question 1 =0A= Nov 29 08:40:09 thrall =0A= Nov 29 08:40:09 thrall Unknown Type of Resource 100 =0A= Nov 29 08:55:09 thrall =0A= Nov 29 08:55:09 thrall Unknown Type on Question 1 =0A= Nov 29 08:55:09 thrall =0A= Nov 29 08:55:09 thrall Unknown Type on Question 1 =0A= Nov 29 08:55:09 thrall =0A= Nov 29 08:55:09 thrall Unknown Type of Resource 100 =0A= Nov 29 09:10:08 thrall =0A= Nov 29 09:10:08 thrall Unknown Type on Question 1 =0A= Nov 29 09:10:09 thrall =0A= Nov 29 09:10:09 thrall Unknown Type on Question 1 =0A= Nov 29 09:10:09 thrall =0A= Nov 29 09:10:09 thrall Unknown Type of Resource 100 =0A= Nov 29 09:25:08 thrall =0A= Nov 29 09:25:08 thrall Unknown Type on Question 1 =0A= Nov 29 09:25:09 thrall =0A= Nov 29 09:25:09 thrall Unknown Type on Question 1 =0A= Nov 29 09:25:09 thrall =0A= Nov 29 09:25:09 thrall Unknown Type of Resource 100 =0A= Nov 29 09:40:08 thrall =0A= Nov 29 09:40:08 thrall Unknown Type on Question 1 =0A= Nov 29 09:40:09 thrall =0A= Nov 29 09:40:09 thrall Unknown Type on Question 1 =0A= Nov 29 09:40:09 thrall =0A= Nov 29 09:40:09 thrall Unknown Type of Resource 100 =0A= Nov 29 09:55:08 thrall =0A= Nov 29 09:55:08 thrall Unknown Type on Question 1 =0A= Nov 29 09:55:08 thrall =0A= Nov 29 09:55:08 thrall Unknown Type on Question 1 =0A= Nov 29 09:55:08 thrall =0A= Nov 29 09:55:08 thrall Unknown Type of Resource 100 =0A= Nov 29 10:10:08 thrall =0A= Nov 29 10:10:08 thrall Unknown Type on Question 1 =0A= Nov 29 10:10:09 thrall =0A= Nov 29 10:10:09 thrall Unknown Type on Question 1 =0A= Nov 29 10:10:09 thrall =0A= Nov 29 10:10:09 thrall Unknown Type of Resource 100 =0A= Nov 29 10:25:08 thrall =0A= Nov 29 10:25:08 thrall Unknown Type on Question 1 =0A= Nov 29 10:25:08 thrall =0A= Nov 29 10:25:08 thrall Unknown Type on Question 1 =0A= Nov 29 10:25:08 thrall =0A= Nov 29 10:25:08 thrall Unknown Type of Resource 100 =0A= Nov 29 10:40:08 thrall =0A= Nov 29 10:40:08 thrall Unknown Type on Question 1 =0A= Nov 29 10:40:08 thrall =0A= Nov 29 10:40:08 thrall Unknown Type on Question 1 =0A= Nov 29 10:40:08 thrall =0A= Nov 29 10:40:08 thrall Unknown Type of Resource 100 =0A= Nov 29 10:55:08 thrall =0A= Nov 29 10:55:08 thrall Unknown Type on Question 1 =0A= Nov 29 10:55:08 thrall =0A= Nov 29 10:55:08 thrall Unknown Type on Question 1 =0A= Nov 29 10:55:08 thrall =0A= Nov 29 10:55:08 thrall Unknown Type of Resource 100 =0A= Nov 29 11:10:08 thrall =0A= Nov 29 11:10:08 thrall Unknown Type on Question 1 =0A= Nov 29 11:10:08 thrall =0A= Nov 29 11:10:08 thrall Unknown Type on Question 1 =0A= Nov 29 11:10:08 thrall =0A= Nov 29 11:10:08 thrall Unknown Type of Resource 100 =0A= Nov 29 11:25:08 thrall =0A= Nov 29 11:25:08 thrall Unknown Type on Question 1 =0A= Nov 29 11:25:08 thrall =0A= Nov 29 11:25:08 thrall Unknown Type on Question 1 =0A= Nov 29 11:25:08 thrall =0A= Nov 29 11:25:08 thrall Unknown Type of Resource 100 =0A= Nov 29 11:40:08 thrall =0A= Nov 29 11:40:08 thrall Unknown Type on Question 1 =0A= Nov 29 11:40:08 thrall =0A= Nov 29 11:40:08 thrall Unknown Type on Question 1 =0A= Nov 29 11:40:08 thrall =0A= Nov 29 11:40:08 thrall Unknown Type of Resource 100 =0A= Nov 29 11:55:08 thrall =0A= Nov 29 11:55:08 thrall Unknown Type on Question 1 =0A= Nov 29 11:55:08 thrall =0A= Nov 29 11:55:08 thrall Unknown Type on Question 1 =0A= Nov 29 11:55:08 thrall =0A= Nov 29 11:55:08 thrall Unknown Type of Resource 100 =0A= Nov 29 12:10:08 thrall =0A= Nov 29 12:10:08 thrall Unknown Type on Question 1 =0A= Nov 29 12:10:08 thrall =0A= Nov 29 12:10:08 thrall Unknown Type on Question 1 =0A= Nov 29 12:10:08 thrall =0A= Nov 29 12:10:08 thrall Unknown Type of Resource 100 =0A= Nov 29 12:25:08 thrall =0A= Nov 29 12:25:08 thrall Unknown Type on Question 1 =0A= Nov 29 12:25:08 thrall =0A= Nov 29 12:25:08 thrall Unknown Type on Question 1 =0A= Nov 29 12:25:08 thrall =0A= Nov 29 12:25:08 thrall Unknown Type of Resource 100 =0A= Nov 29 12:40:08 thrall =0A= Nov 29 12:40:08 thrall Unknown Type on Question 1 =0A= Nov 29 12:40:08 thrall =0A= Nov 29 12:40:08 thrall Unknown Type on Question 1 =0A= Nov 29 12:40:08 thrall =0A= Nov 29 12:40:08 thrall Unknown Type of Resource 100 =0A= Nov 29 12:55:08 thrall =0A= Nov 29 12:55:08 thrall Unknown Type on Question 1 =0A= Nov 29 12:55:08 thrall =0A= Nov 29 12:55:08 thrall Unknown Type on Question 1 =0A= Nov 29 12:55:08 thrall =0A= Nov 29 12:55:08 thrall Unknown Type of Resource 100 =0A= Nov 29 13:10:08 thrall =0A= Nov 29 13:10:08 thrall Unknown Type on Question 1 =0A= Nov 29 13:10:08 thrall =0A= Nov 29 13:10:08 thrall Unknown Type on Question 1 =0A= Nov 29 13:10:08 thrall =0A= Nov 29 13:10:08 thrall Unknown Type of Resource 100 =0A= Nov 29 13:25:07 thrall =0A= Nov 29 13:25:07 thrall Unknown Type on Question 1 =0A= Nov 29 13:25:08 thrall =0A= Nov 29 13:25:08 thrall Unknown Type on Question 1 =0A= Nov 29 13:25:08 thrall =0A= Nov 29 13:25:08 thrall Unknown Type of Resource 100 =0A= Nov 29 13:40:07 thrall =0A= Nov 29 13:40:07 thrall Unknown Type on Question 1 =0A= Nov 29 13:40:08 thrall =0A= Nov 29 13:40:08 thrall Unknown Type on Question 1 =0A= Nov 29 13:40:08 thrall =0A= Nov 29 13:40:08 thrall Unknown Type of Resource 100 =0A= Nov 29 13:41:28 thrall =0A= Nov 29 13:41:28 thrall Unknown Type on Question 1 =0A= Nov 29 13:41:28 thrall =0A= Nov 29 13:41:28 thrall Unknown Type on Question 1 =0A= Nov 29 13:41:28 thrall =0A= Nov 29 13:41:28 thrall Unknown Type of Resource 100 =0A= Nov 29 13:41:32 thrall =0A= Nov 29 13:41:32 thrall Unknown Type on Question 1 =0A= Nov 29 13:41:32 thrall =0A= Nov 29 13:41:32 thrall Unknown Type on Question 1 =0A= Nov 29 13:41:32 thrall =0A= Nov 29 13:41:32 thrall Unknown Type of Resource 100 =0A= Nov 29 13:52:27 thrall =0A= Nov 29 13:52:27 thrall Unknown Type on Question 1 =0A= Nov 29 13:52:27 thrall =0A= Nov 29 13:52:27 thrall Unknown Type on Question 1 =0A= Nov 29 13:52:27 thrall =0A= Nov 29 13:52:27 thrall Unknown Type of Resource 100 =0A= Nov 29 14:07:27 thrall =0A= Nov 29 14:07:27 thrall Unknown Type on Question 1 =0A= Nov 29 14:07:27 thrall =0A= Nov 29 14:07:27 thrall Unknown Type on Question 1 =0A= Nov 29 14:07:27 thrall =0A= Nov 29 14:07:27 thrall Unknown Type of Resource 100 =0A= Nov 29 14:26:59 thrall =0A= Nov 29 14:26:59 thrall Unknown Type on Question 1 =0A= Nov 29 14:26:59 thrall =0A= Nov 29 14:26:59 thrall Unknown Type on Question 1 =0A= Nov 29 14:26:59 thrall =0A= Nov 29 14:26:59 thrall Unknown Type of Resource 100 =0A= Nov 29 14:41:59 thrall =0A= Nov 29 14:41:59 thrall Unknown Type on Question 1 =0A= Nov 29 14:41:59 thrall =0A= Nov 29 14:41:59 thrall Unknown Type on Question 1 =0A= Nov 29 14:41:59 thrall =0A= Nov 29 14:41:59 thrall Unknown Type of Resource 100 =0A= Nov 29 14:56:59 thrall =0A= Nov 29 14:56:59 thrall Unknown Type on Question 1 =0A= Nov 29 14:56:59 thrall =0A= Nov 29 14:56:59 thrall Unknown Type on Question 1 =0A= Nov 29 14:56:59 thrall =0A= Nov 29 14:56:59 thrall Unknown Type of Resource 100 =0A= Nov 29 15:11:59 thrall =0A= Nov 29 15:11:59 thrall Unknown Type on Question 1 =0A= Nov 29 15:11:59 thrall =0A= Nov 29 15:11:59 thrall Unknown Type on Question 1 =0A= Nov 29 15:11:59 thrall =0A= Nov 29 15:11:59 thrall Unknown Type of Resource 100 =0A= Nov 29 15:26:59 thrall =0A= Nov 29 15:26:59 thrall Unknown Type on Question 1 =0A= Nov 29 15:26:59 thrall =0A= Nov 29 15:26:59 thrall Unknown Type on Question 1 =0A= Nov 29 15:26:59 thrall =0A= Nov 29 15:26:59 thrall Unknown Type of Resource 100 =0A= Nov 29 15:41:59 thrall =0A= Nov 29 15:41:59 thrall Unknown Type on Question 1 =0A= Nov 29 15:41:59 thrall =0A= Nov 29 15:41:59 thrall Unknown Type on Question 1 =0A= Nov 29 15:41:59 thrall =0A= Nov 29 15:41:59 thrall Unknown Type of Resource 100 =0A= Nov 29 15:56:59 thrall =0A= Nov 29 15:56:59 thrall Unknown Type on Question 1 =0A= Nov 29 15:56:59 thrall =0A= Nov 29 15:56:59 thrall Unknown Type on Question 1 =0A= Nov 29 15:56:59 thrall =0A= Nov 29 15:56:59 thrall Unknown Type of Resource 100 =0A= Nov 29 16:11:59 thrall =0A= Nov 29 16:11:59 thrall Unknown Type on Question 1 =0A= Nov 29 16:11:59 thrall =0A= Nov 29 16:11:59 thrall Unknown Type on Question 1 =0A= Nov 29 16:11:59 thrall =0A= Nov 29 16:11:59 thrall Unknown Type of Resource 100 =0A= Nov 29 16:26:58 thrall =0A= Nov 29 16:26:58 thrall Unknown Type on Question 1 =0A= Nov 29 16:26:59 thrall =0A= Nov 29 16:26:59 thrall Unknown Type on Question 1 =0A= Nov 29 16:26:59 thrall =0A= Nov 29 16:26:59 thrall Unknown Type of Resource 100 =0A= Nov 29 16:41:58 thrall =0A= Nov 29 16:41:58 thrall Unknown Type on Question 1 =0A= Nov 29 16:41:59 thrall =0A= Nov 29 16:41:59 thrall Unknown Type on Question 1 =0A= Nov 29 16:41:59 thrall =0A= Nov 29 16:41:59 thrall Unknown Type of Resource 100 =0A= Nov 29 16:56:58 thrall =0A= Nov 29 16:56:58 thrall Unknown Type on Question 1 =0A= Nov 29 16:56:59 thrall =0A= Nov 29 16:56:59 thrall Unknown Type on Question 1 =0A= Nov 29 16:56:59 thrall =0A= Nov 29 16:56:59 thrall Unknown Type of Resource 100 =0A= Nov 29 17:11:58 thrall =0A= Nov 29 17:11:58 thrall Unknown Type on Question 1 =0A= Nov 29 17:11:59 thrall =0A= Nov 29 17:11:59 thrall Unknown Type on Question 1 =0A= Nov 29 17:11:59 thrall =0A= Nov 29 17:11:59 thrall Unknown Type of Resource 100 =0A= Nov 29 17:26:58 thrall =0A= Nov 29 17:26:58 thrall Unknown Type on Question 1 =0A= Nov 29 17:26:59 thrall =0A= Nov 29 17:26:59 thrall Unknown Type on Question 1 =0A= Nov 29 17:26:59 thrall =0A= Nov 29 17:26:59 thrall Unknown Type of Resource 100 =0A= Nov 29 17:41:58 thrall =0A= Nov 29 17:41:58 thrall Unknown Type on Question 1 =0A= Nov 29 17:41:58 thrall =0A= Nov 29 17:41:58 thrall Unknown Type on Question 1 =0A= Nov 29 17:41:58 thrall =0A= Nov 29 17:41:58 thrall Unknown Type of Resource 100 =0A= Nov 29 17:56:58 thrall =0A= Nov 29 17:56:58 thrall Unknown Type on Question 1 =0A= Nov 29 17:56:58 thrall =0A= Nov 29 17:56:58 thrall Unknown Type on Question 1 =0A= Nov 29 17:56:58 thrall =0A= Nov 29 17:56:58 thrall Unknown Type of Resource 100 =0A= Nov 29 18:11:58 thrall =0A= Nov 29 18:11:58 thrall Unknown Type on Question 1 =0A= Nov 29 18:11:58 thrall =0A= Nov 29 18:11:58 thrall Unknown Type on Question 1 =0A= Nov 29 18:11:58 thrall =0A= Nov 29 18:11:58 thrall Unknown Type of Resource 100 =0A= Nov 29 18:26:58 thrall =0A= Nov 29 18:26:58 thrall Unknown Type on Question 1 =0A= Nov 29 18:26:58 thrall =0A= Nov 29 18:26:58 thrall Unknown Type on Question 1 =0A= Nov 29 18:26:58 thrall =0A= Nov 29 18:26:58 thrall Unknown Type of Resource 100 =0A= Nov 29 18:41:58 thrall =0A= Nov 29 18:41:58 thrall Unknown Type on Question 1 =0A= Nov 29 18:41:58 thrall =0A= Nov 29 18:41:58 thrall Unknown Type on Question 1 =0A= Nov 29 18:41:58 thrall =0A= Nov 29 18:41:58 thrall Unknown Type of Resource 100 =0A= Nov 29 18:56:58 thrall =0A= Nov 29 18:56:58 thrall Unknown Type on Question 1 =0A= Nov 29 18:56:58 thrall =0A= Nov 29 18:56:58 thrall Unknown Type on Question 1 =0A= Nov 29 18:56:58 thrall =0A= Nov 29 18:56:58 thrall Unknown Type of Resource 100 =0A= Nov 29 19:12:00 thrall =0A= Nov 29 19:12:00 thrall Unknown Type on Question 1 =0A= Nov 29 19:12:00 thrall =0A= Nov 29 19:12:00 thrall Unknown Type on Question 1 =0A= Nov 29 19:12:01 thrall =0A= Nov 29 19:12:01 thrall Unknown Type on Question 1 =0A= Nov 29 19:12:01 thrall =0A= Nov 29 19:12:01 thrall Unknown Type of Resource 100 =0A= Nov 29 19:26:58 thrall =0A= Nov 29 19:26:58 thrall Unknown Type on Question 1 =0A= Nov 29 19:26:58 thrall =0A= Nov 29 19:26:58 thrall Unknown Type on Question 1 =0A= Nov 29 19:26:58 thrall =0A= Nov 29 19:26:58 thrall Unknown Type of Resource 100 =0A= Nov 29 19:41:58 thrall =0A= Nov 29 19:41:58 thrall Unknown Type on Question 1 =0A= Nov 29 19:41:58 thrall =0A= Nov 29 19:41:58 thrall Unknown Type on Question 1 =0A= Nov 29 19:41:58 thrall =0A= Nov 29 19:41:58 thrall Unknown Type of Resource 100 =0A= Nov 29 19:56:58 thrall =0A= Nov 29 19:56:58 thrall Unknown Type on Question 1 =0A= Nov 29 19:56:58 thrall =0A= Nov 29 19:56:58 thrall Unknown Type on Question 1 =0A= Nov 29 19:56:58 thrall =0A= Nov 29 19:56:58 thrall Unknown Type of Resource 100 =0A= Nov 29 20:11:58 thrall =0A= Nov 29 20:11:58 thrall Unknown Type on Question 1 =0A= Nov 29 20:11:58 thrall =0A= Nov 29 20:11:58 thrall Unknown Type on Question 1 =0A= Nov 29 20:11:58 thrall =0A= Nov 29 20:11:58 thrall Unknown Type of Resource 100 =0A= Nov 29 20:20:12 thrall =0A= Nov 29 20:20:12 thrall Unknown Type on Question 1 =0A= Nov 29 20:20:12 thrall =0A= Nov 29 20:20:12 thrall Unknown Type on Question 1 =0A= Nov 29 20:20:12 thrall =0A= Nov 29 20:20:12 thrall Unknown Type of Resource 100 =0A= Nov 29 20:35:12 thrall =0A= Nov 29 20:35:12 thrall Unknown Type on Question 1 =0A= Nov 29 20:35:12 thrall =0A= Nov 29 20:35:12 thrall Unknown Type on Question 1 =0A= Nov 29 20:35:12 thrall =0A= Nov 29 20:35:12 thrall Unknown Type of Resource 100 =0A= Nov 29 20:50:11 thrall =0A= Nov 29 20:50:12 thrall Unknown Type on Question 1 =0A= Nov 29 20:50:12 thrall =0A= Nov 29 20:50:12 thrall Unknown Type on Question 1 =0A= Nov 29 20:50:12 thrall =0A= Nov 29 20:50:12 thrall Unknown Type of Resource 100 =0A= Nov 29 21:05:11 thrall =0A= Nov 29 21:05:11 thrall Unknown Type on Question 1 =0A= Nov 29 21:05:12 thrall =0A= Nov 29 21:05:12 thrall Unknown Type on Question 1 =0A= Nov 29 21:05:12 thrall =0A= Nov 29 21:05:12 thrall Unknown Type of Resource 100 =0A= Nov 29 21:20:11 thrall =0A= Nov 29 21:20:11 thrall Unknown Type on Question 1 =0A= Nov 29 21:20:12 thrall =0A= Nov 29 21:20:12 thrall Unknown Type on Question 1 =0A= Nov 29 21:20:12 thrall =0A= Nov 29 21:20:12 thrall Unknown Type of Resource 100 =0A= Nov 29 21:35:11 thrall =0A= Nov 29 21:35:11 thrall Unknown Type on Question 1 =0A= Nov 29 21:35:12 thrall =0A= Nov 29 21:35:12 thrall Unknown Type on Question 1 =0A= Nov 29 21:35:12 thrall =0A= Nov 29 21:35:12 thrall Unknown Type of Resource 100 =0A= Nov 29 21:50:11 thrall =0A= Nov 29 21:50:11 thrall Unknown Type on Question 1 =0A= Nov 29 21:50:11 thrall =0A= Nov 29 21:50:11 thrall Unknown Type on Question 1 =0A= Nov 29 21:50:11 thrall =0A= Nov 29 21:50:11 thrall Unknown Type of Resource 100 =0A= Nov 29 22:05:11 thrall =0A= Nov 29 22:05:11 thrall Unknown Type on Question 1 =0A= Nov 29 22:05:13 thrall =0A= Nov 29 22:05:13 thrall Unknown Type on Question 1 =0A= Nov 29 22:05:13 thrall =0A= Nov 29 22:05:13 thrall Unknown Type on Question 1 =0A= Nov 29 22:05:13 thrall =0A= Nov 29 22:05:13 thrall Unknown Type of Resource 100 =0A= Nov 29 22:20:11 thrall =0A= Nov 29 22:20:11 thrall Unknown Type on Question 1 =0A= Nov 29 22:20:11 thrall =0A= Nov 29 22:20:11 thrall Unknown Type on Question 1 =0A= Nov 29 22:20:11 thrall =0A= Nov 29 22:20:11 thrall Unknown Type of Resource 100 =0A= Nov 29 22:35:11 thrall =0A= Nov 29 22:35:11 thrall Unknown Type on Question 1 =0A= Nov 29 22:35:11 thrall =0A= Nov 29 22:35:11 thrall Unknown Type on Question 1 =0A= Nov 29 22:35:11 thrall =0A= Nov 29 22:35:11 thrall Unknown Type of Resource 100 =0A= Nov 29 22:50:11 thrall =0A= Nov 29 22:50:11 thrall Unknown Type on Question 1 =0A= Nov 29 22:50:11 thrall =0A= Nov 29 22:50:11 thrall Unknown Type on Question 1 =0A= Nov 29 22:50:11 thrall =0A= Nov 29 22:50:11 thrall Unknown Type of Resource 100 =0A= Nov 29 23:05:11 thrall =0A= Nov 29 23:05:11 thrall Unknown Type on Question 1 =0A= Nov 29 23:05:11 thrall =0A= Nov 29 23:05:11 thrall Unknown Type on Question 1 =0A= Nov 29 23:05:11 thrall =0A= Nov 29 23:05:11 thrall Unknown Type of Resource 100 =0A= Nov 29 23:20:11 thrall =0A= Nov 29 23:20:11 thrall Unknown Type on Question 1 =0A= Nov 29 23:20:11 thrall =0A= Nov 29 23:20:11 thrall Unknown Type on Question 1 =0A= Nov 29 23:20:11 thrall =0A= Nov 29 23:20:11 thrall Unknown Type of Resource 100 =0A= Nov 29 23:35:11 thrall =0A= Nov 29 23:35:11 thrall Unknown Type on Question 1 =0A= Nov 29 23:35:11 thrall =0A= Nov 29 23:35:11 thrall Unknown Type on Question 1 =0A= Nov 29 23:35:11 thrall =0A= Nov 29 23:35:11 thrall Unknown Type of Resource 100 =0A= Nov 29 23:50:11 thrall =0A= Nov 29 23:50:11 thrall Unknown Type on Question 1 =0A= Nov 29 23:50:11 thrall =0A= Nov 29 23:50:11 thrall Unknown Type on Question 1 =0A= Nov 29 23:50:11 thrall =0A= Nov 29 23:50:11 thrall Unknown Type of Resource 100 =0A= Nov 30 00:05:11 thrall =0A= Nov 30 00:05:11 thrall Unknown Type on Question 1 =0A= Nov 30 00:05:11 thrall =0A= Nov 30 00:05:11 thrall Unknown Type on Question 1 =0A= Nov 30 00:05:11 thrall =0A= Nov 30 00:05:11 thrall Unknown Type of Resource 100 =0A= Nov 30 00:15:27 thrall =0A= Nov 30 00:15:27 thrall Unknown Type on Question 1 =0A= Nov 30 00:15:28 thrall =0A= Nov 30 00:15:28 thrall Unknown Type on Question 1 =0A= Nov 30 00:15:28 thrall =0A= Nov 30 00:15:28 thrall Unknown Type of Resource 100 =0A= Nov 30 00:30:27 thrall =0A= Nov 30 00:30:27 thrall Unknown Type on Question 1 =0A= Nov 30 00:30:28 thrall =0A= Nov 30 00:30:28 thrall Unknown Type on Question 1 =0A= Nov 30 00:30:28 thrall =0A= Nov 30 00:30:28 thrall Unknown Type of Resource 100 =0A= Nov 30 00:45:27 thrall =0A= Nov 30 00:45:27 thrall Unknown Type on Question 1 =0A= Nov 30 00:45:27 thrall =0A= Nov 30 00:45:27 thrall Unknown Type on Question 1 =0A= Nov 30 00:45:27 thrall =0A= Nov 30 00:45:27 thrall Unknown Type of Resource 100 =0A= Nov 30 01:00:27 thrall =0A= Nov 30 01:00:27 thrall Unknown Type on Question 1 =0A= Nov 30 01:00:27 thrall =0A= Nov 30 01:00:27 thrall Unknown Type on Question 1 =0A= Nov 30 01:00:27 thrall =0A= Nov 30 01:00:27 thrall Unknown Type of Resource 100 =0A= Nov 30 01:15:27 thrall =0A= Nov 30 01:15:27 thrall Unknown Type on Question 1 =0A= Nov 30 01:15:27 thrall =0A= Nov 30 01:15:27 thrall Unknown Type on Question 1 =0A= Nov 30 01:15:27 thrall =0A= Nov 30 01:15:27 thrall Unknown Type of Resource 100 =0A= Nov 30 01:30:27 thrall =0A= Nov 30 01:30:27 thrall Unknown Type on Question 1 =0A= Nov 30 01:30:27 thrall =0A= Nov 30 01:30:27 thrall Unknown Type on Question 1 =0A= Nov 30 01:30:27 thrall =0A= Nov 30 01:30:27 thrall Unknown Type of Resource 100 =0A= Nov 30 01:45:27 thrall =0A= Nov 30 01:45:27 thrall Unknown Type on Question 1 =0A= Nov 30 01:45:27 thrall =0A= Nov 30 01:45:27 thrall Unknown Type on Question 1 =0A= Nov 30 01:45:27 thrall =0A= Nov 30 01:45:27 thrall Unknown Type of Resource 100 =0A= Nov 30 02:00:27 thrall =0A= Nov 30 02:00:27 thrall Unknown Type on Question 1 =0A= Nov 30 02:00:27 thrall =0A= Nov 30 02:00:27 thrall Unknown Type on Question 1 =0A= Nov 30 02:00:27 thrall =0A= Nov 30 02:00:27 thrall Unknown Type of Resource 100 =0A= Nov 30 02:15:27 thrall =0A= Nov 30 02:15:27 thrall Unknown Type on Question 1 =0A= Nov 30 02:15:27 thrall =0A= Nov 30 02:15:27 thrall Unknown Type on Question 1 =0A= Nov 30 02:15:27 thrall =0A= Nov 30 02:15:27 thrall Unknown Type of Resource 100 =0A= Nov 30 02:30:27 thrall =0A= Nov 30 02:30:27 thrall Unknown Type on Question 1 =0A= Nov 30 02:30:27 thrall =0A= Nov 30 02:30:27 thrall Unknown Type on Question 1 =0A= Nov 30 02:30:27 thrall =0A= Nov 30 02:30:27 thrall Unknown Type of Resource 100 =0A= Nov 30 02:45:27 thrall =0A= Nov 30 02:45:27 thrall Unknown Type on Question 1 =0A= Nov 30 02:45:28 thrall =0A= Nov 30 02:45:28 thrall Unknown Type on Question 1 =0A= Nov 30 02:45:28 thrall =0A= Nov 30 02:45:28 thrall Unknown Type on Question 1 =0A= Nov 30 02:45:28 thrall =0A= Nov 30 02:45:28 thrall Unknown Type of Resource 100 =0A= Nov 30 03:00:27 thrall =0A= Nov 30 03:00:27 thrall Unknown Type on Question 1 =0A= Nov 30 03:00:27 thrall =0A= Nov 30 03:00:27 thrall Unknown Type on Question 1 =0A= Nov 30 03:00:27 thrall =0A= Nov 30 03:00:27 thrall Unknown Type of Resource 100 =0A= Nov 30 03:15:27 thrall =0A= Nov 30 03:15:27 thrall Unknown Type on Question 1 =0A= Nov 30 03:15:27 thrall =0A= Nov 30 03:15:27 thrall Unknown Type on Question 1 =0A= Nov 30 03:15:27 thrall =0A= Nov 30 03:15:27 thrall Unknown Type of Resource 100 =0A= Nov 30 03:30:27 thrall =0A= Nov 30 03:30:27 thrall Unknown Type on Question 1 =0A= Nov 30 03:30:27 thrall =0A= Nov 30 03:30:27 thrall Unknown Type on Question 1 =0A= Nov 30 03:30:27 thrall =0A= Nov 30 03:30:27 thrall Unknown Type of Resource 100 =0A= Nov 30 03:45:26 thrall =0A= Nov 30 03:45:26 thrall Unknown Type on Question 1 =0A= Nov 30 03:45:27 thrall =0A= Nov 30 03:45:27 thrall Unknown Type on Question 1 =0A= Nov 30 03:45:27 thrall =0A= Nov 30 03:45:27 thrall Unknown Type of Resource 100 =0A= Nov 30 04:00:26 thrall =0A= Nov 30 04:00:26 thrall Unknown Type on Question 1 =0A= Nov 30 04:00:27 thrall =0A= Nov 30 04:00:27 thrall Unknown Type on Question 1 =0A= Nov 30 04:00:27 thrall =0A= Nov 30 04:00:27 thrall Unknown Type of Resource 100 =0A= Nov 30 04:15:26 thrall =0A= Nov 30 04:15:26 thrall Unknown Type on Question 1 =0A= Nov 30 04:15:27 thrall =0A= Nov 30 04:15:27 thrall Unknown Type on Question 1 =0A= Nov 30 04:15:27 thrall =0A= Nov 30 04:15:27 thrall Unknown Type of Resource 100 =0A= Nov 30 04:30:26 thrall =0A= Nov 30 04:30:26 thrall Unknown Type on Question 1 =0A= Nov 30 04:30:26 thrall =0A= Nov 30 04:30:26 thrall Unknown Type on Question 1 =0A= Nov 30 04:30:26 thrall =0A= Nov 30 04:30:26 thrall Unknown Type of Resource 100 =0A= Nov 30 04:45:26 thrall =0A= Nov 30 04:45:26 thrall Unknown Type on Question 1 =0A= Nov 30 04:45:28 thrall =0A= Nov 30 04:45:28 thrall Unknown Type on Question 1 =0A= Nov 30 04:45:28 thrall =0A= Nov 30 04:45:28 thrall Unknown Type on Question 1 =0A= Nov 30 04:45:28 thrall =0A= Nov 30 04:45:28 thrall Unknown Type of Resource 100 =0A= Nov 30 05:00:26 thrall =0A= Nov 30 05:00:26 thrall Unknown Type on Question 1 =0A= Nov 30 05:00:26 thrall =0A= Nov 30 05:00:26 thrall Unknown Type on Question 1 =0A= Nov 30 05:00:26 thrall =0A= Nov 30 05:00:26 thrall Unknown Type of Resource 100 =0A= Nov 30 05:15:26 thrall =0A= Nov 30 05:15:26 thrall Unknown Type on Question 1 =0A= Nov 30 05:15:26 thrall =0A= Nov 30 05:15:26 thrall Unknown Type on Question 1 =0A= Nov 30 05:15:26 thrall =0A= Nov 30 05:15:26 thrall Unknown Type of Resource 100 =0A= Nov 30 05:30:26 thrall =0A= Nov 30 05:30:26 thrall Unknown Type on Question 1 =0A= Nov 30 05:30:26 thrall =0A= Nov 30 05:30:26 thrall Unknown Type on Question 1 =0A= Nov 30 05:30:26 thrall =0A= Nov 30 05:30:26 thrall Unknown Type of Resource 100 =0A= Nov 30 05:45:26 thrall =0A= Nov 30 05:45:26 thrall Unknown Type on Question 1 =0A= Nov 30 05:45:26 thrall =0A= Nov 30 05:45:26 thrall Unknown Type on Question 1 =0A= Nov 30 05:45:26 thrall =0A= Nov 30 05:45:26 thrall Unknown Type of Resource 100 =0A= Nov 30 06:00:26 thrall =0A= Nov 30 06:00:26 thrall Unknown Type on Question 1 =0A= Nov 30 06:00:26 thrall =0A= Nov 30 06:00:26 thrall Unknown Type on Question 1 =0A= Nov 30 06:00:26 thrall =0A= Nov 30 06:00:26 thrall Unknown Type of Resource 100 =0A= Nov 30 06:15:26 thrall =0A= Nov 30 06:15:26 thrall Unknown Type on Question 1 =0A= Nov 30 06:15:26 thrall =0A= Nov 30 06:15:26 thrall Unknown Type on Question 1 =0A= Nov 30 06:15:26 thrall =0A= Nov 30 06:15:26 thrall Unknown Type of Resource 100 =0A= Nov 30 06:30:26 thrall =0A= Nov 30 06:30:26 thrall Unknown Type on Question 1 =0A= Nov 30 06:30:26 thrall =0A= Nov 30 06:30:26 thrall Unknown Type on Question 1 =0A= Nov 30 06:30:26 thrall =0A= Nov 30 06:30:26 thrall Unknown Type of Resource 100 =0A= Nov 30 06:45:26 thrall =0A= Nov 30 06:45:26 thrall Unknown Type on Question 1 =0A= Nov 30 06:45:26 thrall =0A= Nov 30 06:45:26 thrall Unknown Type on Question 1 =0A= Nov 30 06:45:26 thrall =0A= Nov 30 06:45:26 thrall Unknown Type of Resource 100 =0A= Nov 30 07:00:26 thrall =0A= Nov 30 07:00:26 thrall Unknown Type on Question 1 =0A= Nov 30 07:00:26 thrall =0A= Nov 30 07:00:26 thrall Unknown Type on Question 1 =0A= Nov 30 07:00:26 thrall =0A= Nov 30 07:00:26 thrall Unknown Type of Resource 100 =0A= Nov 30 07:15:26 thrall =0A= Nov 30 07:15:26 thrall Unknown Type on Question 1 =0A= Nov 30 07:15:26 thrall =0A= Nov 30 07:15:26 thrall Unknown Type on Question 1 =0A= Nov 30 07:15:26 thrall =0A= Nov 30 07:15:26 thrall Unknown Type of Resource 100 =0A= Nov 30 07:30:26 thrall =0A= Nov 30 07:30:26 thrall Unknown Type on Question 1 =0A= Nov 30 07:30:26 thrall =0A= Nov 30 07:30:26 thrall Unknown Type on Question 1 =0A= Nov 30 07:30:26 thrall =0A= Nov 30 07:30:26 thrall Unknown Type of Resource 100 =0A= Nov 30 07:45:26 thrall =0A= Nov 30 07:45:26 thrall Unknown Type on Question 1 =0A= Nov 30 07:45:26 thrall =0A= Nov 30 07:45:26 thrall Unknown Type on Question 1 =0A= Nov 30 07:45:26 thrall =0A= Nov 30 07:45:26 thrall Unknown Type of Resource 100 =0A= Nov 30 08:00:25 thrall =0A= Nov 30 08:00:25 thrall Unknown Type on Question 1 =0A= Nov 30 08:00:26 thrall =0A= Nov 30 08:00:26 thrall Unknown Type on Question 1 =0A= Nov 30 08:00:26 thrall =0A= Nov 30 08:00:26 thrall Unknown Type of Resource 100 =0A= Nov 30 08:15:25 thrall =0A= Nov 30 08:15:25 thrall Unknown Type on Question 1 =0A= Nov 30 08:15:26 thrall =0A= Nov 30 08:15:26 thrall Unknown Type on Question 1 =0A= Nov 30 08:15:26 thrall =0A= Nov 30 08:15:26 thrall Unknown Type of Resource 100 =0A= Nov 30 08:30:25 thrall =0A= Nov 30 08:30:25 thrall Unknown Type on Question 1 =0A= Nov 30 08:30:26 thrall =0A= Nov 30 08:30:26 thrall Unknown Type on Question 1 =0A= Nov 30 08:30:26 thrall =0A= Nov 30 08:30:26 thrall Unknown Type of Resource 100 =0A= Nov 30 08:45:25 thrall =0A= Nov 30 08:45:25 thrall Unknown Type on Question 1 =0A= Nov 30 08:45:27 thrall =0A= Nov 30 08:45:27 thrall Unknown Type on Question 1 =0A= Nov 30 08:45:28 thrall =0A= Nov 30 08:45:28 thrall Unknown Type on Question 1 =0A= Nov 30 08:45:29 thrall =0A= Nov 30 08:45:29 thrall Unknown Type on Question 1 =0A= Nov 30 08:45:29 thrall =0A= Nov 30 08:45:29 thrall Unknown Type of Resource 100 =0A= Nov 30 09:00:25 thrall =0A= Nov 30 09:00:25 thrall Unknown Type on Question 1 =0A= Nov 30 09:00:25 thrall =0A= Nov 30 09:00:25 thrall Unknown Type on Question 1 =0A= Nov 30 09:00:25 thrall =0A= Nov 30 09:00:25 thrall Unknown Type of Resource 100 =0A= Nov 30 09:15:25 thrall =0A= Nov 30 09:15:25 thrall Unknown Type on Question 1 =0A= Nov 30 09:15:25 thrall =0A= Nov 30 09:15:25 thrall Unknown Type on Question 1 =0A= Nov 30 09:15:25 thrall =0A= Nov 30 09:15:25 thrall Unknown Type of Resource 100 =0A= Nov 30 09:30:25 thrall =0A= Nov 30 09:30:25 thrall Unknown Type on Question 1 =0A= Nov 30 09:30:25 thrall =0A= Nov 30 09:30:25 thrall Unknown Type on Question 1 =0A= Nov 30 09:30:25 thrall =0A= Nov 30 09:30:25 thrall Unknown Type of Resource 100 =0A= Nov 30 09:45:25 thrall =0A= Nov 30 09:45:25 thrall Unknown Type on Question 1 =0A= Nov 30 09:45:25 thrall =0A= Nov 30 09:45:25 thrall Unknown Type on Question 1 =0A= Nov 30 09:45:25 thrall =0A= Nov 30 09:45:25 thrall Unknown Type of Resource 100 =0A= Nov 30 10:00:25 thrall =0A= Nov 30 10:00:25 thrall Unknown Type on Question 1 =0A= Nov 30 10:00:25 thrall =0A= Nov 30 10:00:25 thrall Unknown Type on Question 1 =0A= Nov 30 10:00:25 thrall =0A= Nov 30 10:00:25 thrall Unknown Type of Resource 100 =0A= Nov 30 10:15:25 thrall =0A= Nov 30 10:15:25 thrall Unknown Type on Question 1 =0A= Nov 30 10:15:25 thrall =0A= Nov 30 10:15:25 thrall Unknown Type on Question 1 =0A= Nov 30 10:15:25 thrall =0A= Nov 30 10:15:25 thrall Unknown Type of Resource 100 =0A= Nov 30 10:30:25 thrall =0A= Nov 30 10:30:25 thrall Unknown Type on Question 1 =0A= Nov 30 10:30:25 thrall =0A= Nov 30 10:30:25 thrall Unknown Type on Question 1 =0A= Nov 30 10:30:25 thrall =0A= Nov 30 10:30:25 thrall Unknown Type of Resource 100 =0A= Nov 30 10:45:25 thrall =0A= Nov 30 10:45:25 thrall Unknown Type on Question 1 =0A= Nov 30 10:45:25 thrall =0A= Nov 30 10:45:25 thrall Unknown Type on Question 1 =0A= Nov 30 10:45:25 thrall =0A= Nov 30 10:45:25 thrall Unknown Type of Resource 100 =0A= Nov 30 11:00:25 thrall =0A= Nov 30 11:00:25 thrall Unknown Type on Question 1 =0A= Nov 30 11:00:25 thrall =0A= Nov 30 11:00:25 thrall Unknown Type on Question 1 =0A= Nov 30 11:00:25 thrall =0A= Nov 30 11:00:25 thrall Unknown Type of Resource 100 =0A= Nov 30 11:15:25 thrall =0A= Nov 30 11:15:25 thrall Unknown Type on Question 1 =0A= Nov 30 11:15:25 thrall =0A= Nov 30 11:15:25 thrall Unknown Type on Question 1 =0A= Nov 30 11:15:25 thrall =0A= Nov 30 11:15:25 thrall Unknown Type of Resource 100 =0A= Nov 30 11:30:25 thrall =0A= Nov 30 11:30:25 thrall Unknown Type on Question 1 =0A= Nov 30 11:30:25 thrall =0A= Nov 30 11:30:25 thrall Unknown Type on Question 1 =0A= Nov 30 11:30:25 thrall =0A= Nov 30 11:30:25 thrall Unknown Type of Resource 100 =0A= Nov 30 11:45:25 thrall =0A= Nov 30 11:45:25 thrall Unknown Type on Question 1 =0A= Nov 30 11:45:25 thrall =0A= Nov 30 11:45:25 thrall Unknown Type on Question 1 =0A= Nov 30 11:45:25 thrall =0A= Nov 30 11:45:25 thrall Unknown Type of Resource 100 =0A= Nov 30 12:00:25 thrall =0A= Nov 30 12:00:25 thrall Unknown Type on Question 1 =0A= Nov 30 12:00:25 thrall =0A= Nov 30 12:00:25 thrall Unknown Type on Question 1 =0A= Nov 30 12:00:25 thrall =0A= Nov 30 12:00:25 thrall Unknown Type of Resource 100 =0A= Nov 30 12:15:24 thrall =0A= Nov 30 12:15:24 thrall Unknown Type on Question 1 =0A= Nov 30 12:15:25 thrall =0A= Nov 30 12:15:25 thrall Unknown Type on Question 1 =0A= Nov 30 12:15:25 thrall =0A= Nov 30 12:15:25 thrall Unknown Type of Resource 100 =0A= Nov 30 12:30:24 thrall =0A= Nov 30 12:30:24 thrall Unknown Type on Question 1 =0A= Nov 30 12:30:25 thrall =0A= Nov 30 12:30:25 thrall Unknown Type on Question 1 =0A= Nov 30 12:30:25 thrall =0A= Nov 30 12:30:25 thrall Unknown Type of Resource 100 =0A= Nov 30 12:45:24 thrall =0A= Nov 30 12:45:24 thrall Unknown Type on Question 1 =0A= Nov 30 12:45:25 thrall =0A= Nov 30 12:45:25 thrall Unknown Type on Question 1 =0A= Nov 30 12:45:25 thrall =0A= Nov 30 12:45:25 thrall Unknown Type of Resource 100 =0A= Nov 30 13:00:24 thrall =0A= Nov 30 13:00:24 thrall Unknown Type on Question 1 =0A= Nov 30 13:00:24 thrall =0A= Nov 30 13:00:24 thrall Unknown Type on Question 1 =0A= Nov 30 13:00:24 thrall =0A= Nov 30 13:00:24 thrall Unknown Type of Resource 100 =0A= Nov 30 13:13:40 thrall su: dameon to root on /dev/ttyp1=0A= ------_=_NextPart_000_01BE1C96.8DD44B08-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Nov 30 17:49:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA24101 for freebsd-bugs-outgoing; Mon, 30 Nov 1998 17:49:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA24092 for ; Mon, 30 Nov 1998 17:49:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA28861; Mon, 30 Nov 1998 17:50:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA23095; Mon, 30 Nov 1998 17:39:43 -0800 (PST) (envelope-from nobody) Message-Id: <199812010139.RAA23095@hub.freebsd.org> Date: Mon, 30 Nov 1998 17:39:43 -0800 (PST) From: jeffsh@erols.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: i386/8910: Booteasy destroys MBR and partition table on wd0 if installed elsewhere. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8910 >Category: i386 >Synopsis: Booteasy destroys MBR and partition table on wd0 if installed elsewhere. >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 30 17:50:00 PST 1998 >Last-Modified: >Originator: Jeffrey Sheinberg >Organization: Jeff at home >Release: 2.2.6 >Environment: Sorry, I am not running this release of FreeBSD right now. >Description: Installed Booteasy boot manager as part of the installation procedure to the sd1s3 partition boot block. Upon booting sd1s3 using lilo or grub, the MBR on wd0 gets over-written, by the Booteasy bootstrap code, and the partition table from the MBR on wd0 gets over-written by sd1's partition table. >How-To-Repeat: See description. Insure that you have a method to re-boot your computer from other than wd0, and that you can re-create the partition tables on wd0. >Fix: Booteasy should read the partition boot block, update its local data, i.e., a record of which partition was last selected to be booted, and then re-write the partition boot block. Also, Booteasy should read the partition boot block that its was actually booted from, not assume it was booted from the MBR on wd0. >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 Nov 30 23:09:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA23344 for freebsd-bugs-outgoing; Mon, 30 Nov 1998 23:09:23 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA23334 for ; Mon, 30 Nov 1998 23:09:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA24720; Mon, 30 Nov 1998 23:10:00 -0800 (PST) Received: from rgate2.ricochet.net (rgate2.ricochet.net [204.179.143.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA23141 for ; Mon, 30 Nov 1998 23:07:05 -0800 (PST) (envelope-from waterman@ricochet.net) Received: from home (mg137-019.ricochet.net [204.179.137.19]) by rgate2.ricochet.net (8.8.8/8.8.8) with ESMTP id BAA26118 for ; Tue, 1 Dec 1998 01:06:47 -0600 (CST) Received: (from waterman@localhost) by home (8.8.8/8.8.8) id XAA11274; Mon, 30 Nov 1998 23:10:50 -0800 (PST) (envelope-from waterman) Message-Id: <199812010710.XAA11274@home> Date: Mon, 30 Nov 1998 23:10:50 -0800 (PST) From: waterman@acm.org Reply-To: waterman@acm.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/8913: negative time values for csh 'time' built-in Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8913 >Category: bin >Synopsis: negative time values for csh 'time' built-in >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 Nov 30 23:10:00 PST 1998 >Last-Modified: >Originator: TS Waterman >Organization: PricewaterhouseCoopers >Release: FreeBSD 2.2.7-STABLE i386 >Environment: running /bin/csh >Description: Long process reports negative time using csh builtin 'time' cmd. for example: 37809.2u 178.2s 11:08:56.05 -12.-3% 184+294k 54+425io 2009pf+0w ^^^^^^^ >How-To-Repeat: Run a process over 10 hours or so, in csh, using 'time' >Fix: It looks like an int overflow on a time value in the percent calculation. in /usr/src/bin/csh/time.c: case 'P': /* percent time spent running */ /* check if it did not run at all */ - i = (ms == 0) ? 0 : (t * 1000 / ms); - /* nn.n% */ - (void) fprintf(cshout, "%ld.%01ld%%", i / 10, i % 10); break; declarations: time_t t; /* time_t ==> _BSD_TIME_T_ ==> long, really */ long i; int ms; where 'i' is a long, but 'ms' is an int. In the line i = (ms == 0) ? 0 : (t * 1000 / ms); In my example: t = 37809 seconds * 1000 //converted to milliseconds The extra factor of 1000 added in the percent calculation (t*1000 == 3.78e10) is enough to overflow an int, but not a long. 't' is a long, so this calc should be computed as a long, right? What's broken here? The easy solution is to convert to float calculations (this isn't at all time critical). notice the change to a factor of 100: + float ft = (ms == 0) ? 0 : ((float)t * 100 / (float)ms); + /* nn.n% */ + (void) fprintf(cshout, "%4.1f%%", ft); The bigger question is why the first implementation doesn't work, but it's not a life threatening matter. perhaps just casting the original calculation to long internally would also work: i = (ms == 0) ? 0 : ((long)t * 1000 / (long)ms); >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 Dec 1 00:25:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA01021 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 00:25:53 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ikar.elect.ru ([195.161.45.44]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA00996; Tue, 1 Dec 1998 00:25:27 -0800 (PST) (envelope-from pavel@ikar.elect.ru) Received: from localhost (pavel@localhost) by ikar.elect.ru (8.8.7/8.8.7) with SMTP id LAA02283; Tue, 1 Dec 1998 11:25:11 +0300 (MSK) (envelope-from pavel@ikar.elect.ru) Date: Tue, 1 Dec 1998 11:25:09 +0300 (MSK) From: "Pavel V. Antipov" To: questions@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: WHY ANY QUESTIONS ABOUT POSIX THREADS IS WITHOUT ANSWER ? 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 Hi ! Our (freebsd-*@freebsd.org) talks don't contains information about fixing FreeBSD-POSIX-threads bugs. WHY IS IT ? Are there bugs fixing currently ? I like to use and admin FreeBSD system but my clients (program developers) blocks up me to install linux (which is more posix-compatible). I don't want uninstall FreeBSD ! PLEASE, ANSWER ME FOR ABOVE QUESTIONS ! Thank you. Pavel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 1 05:59:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA29804 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 05:59:23 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA29796 for ; Tue, 1 Dec 1998 05:59:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA17263; Tue, 1 Dec 1998 06:00:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA28940; Tue, 1 Dec 1998 05:49:53 -0800 (PST) (envelope-from nobody) Message-Id: <199812011349.FAA28940@hub.freebsd.org> Date: Tue, 1 Dec 1998 05:49:53 -0800 (PST) From: pavel@lynx.gts.elcom.ru To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: kern/8919: using Acceleport 8r Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8919 >Category: kern >Synopsis: using Acceleport 8r >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 1 06:00:00 PST 1998 >Last-Modified: >Originator: Pavel >Organization: City Telephonic Station >Release: 3.0 >Environment: FreeBSD lynx.gts.elcom.ru 3.0-RELEASE #11 root@lynx.gts.elcom.ru:/usr/src/sys/compile/LYNX i386 >Description: There is a problem which I haven't solved yet. We need to install serial communication board AccelePort 8r-PCI , while configuring our custom kernel. The only thing which i've found was drivers & instructions for Digiboard PC/Xi and Pc/Xe which are ISA adaptors. Can you help me in this question? >How-To-Repeat: >Fix: >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 Dec 1 07:53:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA11223 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 07:53:00 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from arc.hq.cti.ru (arc.hq.cti.ru [195.34.40.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA11213; Tue, 1 Dec 1998 07:52:48 -0800 (PST) (envelope-from tejblum@arc.hq.cti.ru) Received: from arc.hq.cti.ru (localhost [127.0.0.1]) by arc.hq.cti.ru (8.9.0/8.9.0) with ESMTP id SAA11570; Tue, 1 Dec 1998 18:48:35 +0300 (MSK) Message-Id: <199812011548.SAA11570@arc.hq.cti.ru> X-Mailer: exmh version 2.0zeta 7/24/97 To: "Pavel V. Antipov" cc: questions@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: WHY ANY QUESTIONS ABOUT POSIX THREADS IS WITHOUT ANSWER ? In-reply-to: Your message of "Tue, 01 Dec 1998 11:25:09 +0300." Mime-Version: 1.0 Content-Type: text/plain Date: Tue, 01 Dec 1998 18:48:34 +0300 From: Dmitrij Tejblum Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Pavel V. Antipov" wrote: > Are there bugs fixing currently ? Some people sometimes do something. If you send patches, they have good chances to be committed some day. > I like to use and admin FreeBSD system but my clients (program developers) > blocks up me to install linux (which is more posix-compatible). > I don't want uninstall FreeBSD ! Please contribute. Dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 1 08:29:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA14124 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 08:29:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA14116 for ; Tue, 1 Dec 1998 08:29:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA11536; Tue, 1 Dec 1998 08:30:00 -0800 (PST) Received: from Terry.Dorm10.NCTU.edu.tw (Terry.Dorm10.NCTU.edu.tw [140.113.122.99]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA13880 for ; Tue, 1 Dec 1998 08:25:15 -0800 (PST) (envelope-from ijliao@Terry.Dorm10.NCTU.edu.tw) Received: (from ijliao@localhost) by Terry.Dorm10.NCTU.edu.tw (8.9.1/8.9.1) id AAA03673; Wed, 2 Dec 1998 00:24:48 +0800 (CST) Message-Id: <199812011624.AAA03673@Terry.Dorm10.NCTU.edu.tw> Date: Wed, 2 Dec 1998 00:24:48 +0800 (CST) From: "³Q§@·~À£¦ºªº­W©R¾Ç¥Í" Reply-To: ijliao@Terry.Dorm10.NCTU.edu.tw To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: i386/8922: can't detect wdc1 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8922 >Category: i386 >Synopsis: can't detect wdc1 on Abit LX6 motherboard >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 1 08:30:00 PST 1998 >Last-Modified: >Originator: ³Q§@·~À£¦ºªº­W©R¾Ç¥Í >Organization: ¥æ§@·~»°³q®d¤j¾Ç >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD Terry.Dorm10.NCTU.edu.tw 3.0-CURRENT FreeBSD 3.0-CURRENT #0: Tue Dec 1 18:00:57 CST 1998 root@Terry.Dorm10.NCTU.edu.tw:/usr/src/sys/compile/TERRY i386 >Description: I put a cdrom on slave of secondary ide, and it's ok under dos & windows. But when i switch to FreeeBSD, on bootup it can't detect my wdc1. my kernel config : controller wdc1 at isa? port "IO_WD2" bio irq 15 options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC #Don't do it as an LKM device wcd0 #IDE CD-ROM >How-To-Repeat: Install 3.0, then the problem occur. >Fix: >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 Dec 1 08:39:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA15065 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 08:39:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA15057 for ; Tue, 1 Dec 1998 08:39:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA11843; Tue, 1 Dec 1998 08:40:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA14391; Tue, 1 Dec 1998 08:31:05 -0800 (PST) (envelope-from nobody) Message-Id: <199812011631.IAA14391@hub.freebsd.org> Date: Tue, 1 Dec 1998 08:31:05 -0800 (PST) From: tory@cc.ntnu.edu.tw To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: i386/8923: ctm 2.2.5 -> 2.2.7 error hu_HU.ISO_8859-2 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8923 >Category: i386 >Synopsis: ctm 2.2.5 -> 2.2.7 error hu_HU.ISO_8859-2 >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 Dec 1 08:40:00 PST 1998 >Last-Modified: >Originator: tory >Organization: no >Release: 2.2.7 >Environment: 2.2.7-STABLE FreeBSD 2.2.7-STABLE >Description: hi everybody .. i use ctm upgrade from 2.2.5 stable to 2.2.7 i use src-09XX when i use "make world" it spend my 4 hr happend a error message "cant find hu_HU.ISO_8859-2" so............. >How-To-Repeat: do make world again i also see that error message it talk me 3 times also spend me 3*4 hr...ccc >Fix: i use ln hr_HR.ISO_8859-2 hu_HU.ISO_8859-2 because it seen very likely.... so do it over when i make world ok~~~ i dont know it is my 2.2.5's error or ctm's error please fix it or tell me if it is my 2.2.5's error?? thx you very much ....your freebsd i very like .... sorry me english is very poor...... >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 Dec 1 09:46:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA22881 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 09:46:25 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from polaris.we.lc.ehu.es (polaris.we.lc.ehu.es [158.227.6.43]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id JAA22132; Tue, 1 Dec 1998 09:41:25 -0800 (PST) (envelope-from jose@we.lc.ehu.es) Received: from we.lc.ehu.es by polaris.we.lc.ehu.es (SMI-8.6/SMI-SVR4) id SAA04431; Tue, 1 Dec 1998 18:38:11 +0100 Message-ID: <36642982.9B0D6B66@we.lc.ehu.es> Date: Tue, 01 Dec 1998 18:38:10 +0100 From: "José Mª Alcaide" Organization: Universidad del País Vasco - Dept. de Electricidad y Electrónica X-Mailer: Mozilla 4.06 [en] (X11; I; FreeBSD 2.2.7-STABLE i386) MIME-Version: 1.0 To: obrien@NUXI.com CC: Nathan Dorfman , freebsd-current@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: [patch] libmytinfo breaks vim-5.3 port, maybe others? References: <19981023205115.A5357@rtfm.net> <19981129004517.B28637@nuxi.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org David O'Brien wrote: > > > Vim-5.3 (compiled from ports) won't run in -g (gvim) mode with > > libmytinfo. At first I thought it was vim breakage, or Motif/Athena > > or even X11 breakage. But read on: > > ..snip.. > > > Anyway, I noticed something weird: > > > > libmytinfo.so.2 => /usr/lib/libmytinfo.so.2 (0x2834b000) > > This is automatically linked in if libncurses is being used. > Apply this patch to the vim5 port's Makefile: --------------------------------Cut------------------------------------ --- Makefile.orig Thu Oct 15 02:35:11 1998 +++ Makefile Tue Dec 1 18:12:12 1998 @@ -29,7 +29,7 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/src PATCH_DIST_ARGS= -d ${WRKDIR}/${DISTNAME} --forward --quiet -E ${PATCH_DIST_STRIP} -MAKE_FLAGS= CONF_ARGS="--prefix=${PREFIX} --enable-max-features" -f +MAKE_FLAGS= CONF_ARGS="--prefix=${PREFIX} --enable-max-features --with-tlib=termlib" -f ALL_TARGET= # MAN1= vim.1 xxd.1 ectags.1 --------------------------------Cut------------------------------------ This patch forces linking against termlib instead of ncurses. Obviously this is only a workaround for a problem in the ncurses library. The vim5.3's "configure" script checks for tgetent() in ncurses. It's found in the 3.0 libncurses (so vim is linked with it), but this check fails under FreeBSD 2.2.x, so it's linked with libtermlib. BTW, I've just found a flaw related to the termcap and termlib libraries in /usr/lib under FreeBSD-3.0-RELEASE. Watch the output of ls -li *term*: 23269 -r--r--r-- 2 root wheel 18522 17 oct 18:59 libtermcap.a 23271 lrwxrwxrwx 1 root wheel 15 9 nov 17:01 libtermcap.so -> libtermcap.so.2 23270 -r--r--r-- 1 root wheel 15108 17 oct 18:59 libtermcap.so.2 23682 -r--r--r-- 2 root wheel 19760 16 oct 18:06 libtermcap_p.a 23269 -r--r--r-- 2 root wheel 18522 17 oct 18:59 libtermlib.a 23272 lrwxrwxrwx 1 root wheel 15 9 nov 17:01 libtermlib.so -> libtermcap.so.2 23682 -r--r--r-- 2 root wheel 19760 16 oct 18:06 libtermlib_p.a There is no libtermlib.so.2!! This explains the output of the command "ldconfig -r | fgrep term": 7:-ltermcap.2 => /usr/lib/libtermcap.so.2 libtermlib.so.2 does not appear. It seems there is a bug in the installation script of this libraries. Until it's fixed, the solution is easy: cd /usr/lib rm libtermlib.so ln libtermcap.so.2 libtermlib.so.2 ln -s libtermlib.so.2 libtermlib.so And that's all. -- JMA ----------------------------------------------------------------------- José Mª Alcaide | mailto:jose@we.lc.ehu.es Universidad del País Vasco | http://www.we.lc.ehu.es/~jose Dpto. de Electricidad y Electrónica | Facultad de Ciencias - Campus de Lejona | Tel.: +34-946012479 48940 Lejona (Vizcaya) - SPAIN | Fax: +34-944858139 ----------------------------------------------------------------------- "Go ahead... make my day." - H. Callahan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 1 10:11:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA25783 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 10:11:05 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA25740; Tue, 1 Dec 1998 10:10:48 -0800 (PST) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA17157; Tue, 1 Dec 1998 10:11:22 -0800 (PST) Date: Tue, 1 Dec 1998 10:11:22 -0800 (PST) Message-Id: <199812011811.KAA17157@freefall.freebsd.org> To: software@kew.com, rnordier@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: conf/8111 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fdisk gets default name of SCSI disk wrong State-Changed-From-To: open-closed State-Changed-By: rnordier State-Changed-When: Tue Dec 1 10:08:39 PST 1998 State-Changed-Why: Fixed by joerg: fdisk.c 1.27 fdisk.8 1.11 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 1 10:26:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA28287 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 10:26:27 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA28271; Tue, 1 Dec 1998 10:26:19 -0800 (PST) (envelope-from rnordier@FreeBSD.org) From: Robert Nordier Received: (from rnordier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA17357; Tue, 1 Dec 1998 10:13:18 -0800 (PST) Date: Tue, 1 Dec 1998 10:13:18 -0800 (PST) Message-Id: <199812011813.KAA17357@freefall.freebsd.org> To: joelh@gnu.org, rnordier@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: i386/8597 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fdisk uses obsolete "sd0" instead of "da0" [patch] State-Changed-From-To: open-closed State-Changed-By: rnordier State-Changed-When: Tue Dec 1 10:11:38 PST 1998 State-Changed-Why: Fixed by joerg: fdisk.c 1.27 fdisk.8 1.11 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 1 11:39:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07407 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 11:39:23 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA07399 for ; Tue, 1 Dec 1998 11:39:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA22398; Tue, 1 Dec 1998 11:40:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA06440; Tue, 1 Dec 1998 11:30:52 -0800 (PST) (envelope-from nobody) Message-Id: <199812011930.LAA06440@hub.freebsd.org> Date: Tue, 1 Dec 1998 11:30:52 -0800 (PST) From: admin@imediaconsutants.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: i386/8924: File transfers. Upload is 71Kbs download is 8mbs on a network.??? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8924 >Category: i386 >Synopsis: File transfers. Upload is 71Kbs download is 8mbs on a network.??? >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 1 11:40:01 PST 1998 >Last-Modified: >Originator: Eugene Irvin >Organization: IMC >Release: 2.2.6-RELEASE #0 >Environment: FreeBSD news.imediaconsultants.com 2.2.6-RELEASE FreeBSD 2.2.6-RELEASE #0: Mon N ov 23 13:34:37 GMT 1998 root@news.imediaconsultants.com:/usr/src/sys/compile /news.imediaconsultants.com i386 >Description: Ok. I am using a 3com switch and top of the line 3com network cards. It's the strangest thing. During ftp sessions or even http transfer out of the machine is ave 71kBps and transfer in is ave 8 mBps and we can't figure it out?????? >How-To-Repeat: redo the same process. >Fix: N/A >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 Dec 1 15:49:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA05682 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 15:49:23 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA05669 for ; Tue, 1 Dec 1998 15:49:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA08351; Tue, 1 Dec 1998 15:50:01 -0800 (PST) Received: from nina.pagesz.net (nina.pagesz.net [208.194.157.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA04767 for ; Tue, 1 Dec 1998 15:42:35 -0800 (PST) (envelope-from rhh@pagesz.net) Received: from stealth.dummynet. (juana-35.pagesz.net [208.213.126.35]) by nina.pagesz.net (8.8.7/8.8.7) with ESMTP id SAA05841; Tue, 1 Dec 1998 18:42:42 -0500 Received: (from rhh@localhost) by stealth.dummynet. (8.9.1/8.8.8) id SAA03483; Tue, 1 Dec 1998 18:43:12 -0500 (EST) (envelope-from rhh) Message-Id: <199812012343.SAA03483@stealth.dummynet.> Date: Tue, 1 Dec 1998 18:43:12 -0500 (EST) From: aa8vb@pagesz.net To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: aa8vb@pagesz.net X-Send-Pr-Version: 3.2 Subject: kern/8925: options kern file needs AWE_DEFAULT_MEM_SIZE added for AWE sound drvr Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8925 >Category: kern >Synopsis: options kern file needs AWE_DEFAULT_MEM_SIZE added for AWE sound drvr >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 1 15:50:00 PST 1998 >Last-Modified: >Originator: Randall Hopper >Organization: self >Release: FreeBSD 3.0-RELEASE i386 >Environment: Stock 3.0-RELEASE. >Description: Users need to be able to specify the AWE_DEFAULT_MEM_SIZE option in their kernel config files since the AWE sound driver isn't always able to detect the amount of installed memory on SB32, AWE-32, and AWE-64 soundcards. >How-To-Repeat: Here is an example specification which used to work: options AWE_DEFAULT_MEM_SIZE=8192 "config" kicks this out now as an unknown option. >Fix: I don't know for sure what opt_.. header structure is intended, but the following would do the trick: 1) Add this line to sys/i386/conf/options.i386: # voxware options GUS_DMA2 opt_sound.h GUS_DMA opt_sound.h GUS_IRQ opt_sound.h + AWE_DEFAULT_MEM_SIZE opt_sound.h 2) Add this line to sys/gnu/i386/isa/conf/awe_wave.c: #ifdef __FreeBSD__ # include # include # include + # include "opt_sound.h" #else # include "awe_hw.h" >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 Dec 1 16:29:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12632 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 16:29:34 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from helios.dnttm.ru (dnttm-gw.rssi.ru [193.232.0.205]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA12627 for ; Tue, 1 Dec 1998 16:29:31 -0800 (PST) (envelope-from dima@tejblum.dnttm.rssi.ru) Received: (from uucp@localhost) by helios.dnttm.ru (8.9.1/8.9.1/IP-3) with UUCP id DAA08109 for freebsd-bugs@freebsd.org; Wed, 2 Dec 1998 03:20:05 +0300 Received: from tejblum.dnttm.rssi.ru (localhost [127.0.0.1]) by tejblum.dnttm.rssi.ru (8.9.1/8.9.1) with ESMTP id DAA00861 for ; Wed, 2 Dec 1998 03:21:11 +0300 (MSK) (envelope-from dima@tejblum.dnttm.rssi.ru) Message-Id: <199812020021.DAA00861@tejblum.dnttm.rssi.ru> X-Mailer: exmh version 2.0gamma 1/27/96 To: freebsd-bugs@FreeBSD.ORG Subject: mmap of large files Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 02 Dec 1998 03:21:11 +0300 From: Dmitrij Tejblum Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Does the test if ((pos + size > (vm_offset_t)-PAGE_SIZE) || in the mmap syscall have any purpose, other than break mmap with pos > 4GB? Dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Dec 1 20:09:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA02028 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 20:09:23 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA02020 for ; Tue, 1 Dec 1998 20:09:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA20348; Tue, 1 Dec 1998 20:10:01 -0800 (PST) Received: from vanmaren.aros.net (vanmaren.aros.net [208.219.24.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA01180 for ; Tue, 1 Dec 1998 20:01:40 -0800 (PST) (envelope-from vanmaren@vanmaren.aros.net) Received: (from vanmaren@localhost) by vanmaren.aros.net (8.9.1/8.9.1) id VAA01553; Tue, 1 Dec 1998 21:01:22 -0700 (MST) (envelope-from vanmaren) Message-Id: <199812020401.VAA01553@vanmaren.aros.net> Date: Tue, 1 Dec 1998 21:01:22 -0700 (MST) From: vanmaren@cs.utah.edu Reply-To: vanmaren@cs.utah.edu To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/8928: 450NX-based computers only probe the first PCI bus Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8928 >Category: kern >Synopsis: 450NX-based computers only probe the first PCI bus >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 1 20:10:01 PST 1998 >Last-Modified: >Originator: Kevin Van Maren >Organization: University of Utah >Release: FreeBSD 3.0-CURRENT i386 >Environment: This occurs in both 3.0-CURRENT and 2.2-STABLE with the 450NX chipset. >Description: MIOC: Memory and I/O controller. It connects the CPU bus to the memory subsystem and the PCI controller. PXB: PCI Expander bridge, connects the MIOC to either two 32-bit PCI busses or a 64-bit bus. The MIOC can control one or two PXBs. Any devices not plugged into the first PCI bus simply won't be found. Most current 450NX-based computers are quad-capable with either two 32-bit PCI busses (using one PXB), or with two 32-bit busses and a 64-bit PCI bus (using two PXB chips). In either case, only devices on the first 32-bit PCI bus will be probed, as FreeBSD doesn't know about the other PCI busses. The problem stems from how the PCI busses are provided by the chipset. The processor bus interface attaches to the MIOC, which in turn can connect to either one or two PXB PCI bus controller chips (with either one or two PCI bus interfaces each). Instead of there being one PCI bus with the other busses "bridged" from that one, they are connected in parallel to the MIOC. Fancy circuitry makes it all "work". However, since the PXB chips are probed as regular devices, and not as PCI-PCI bridges, the PCI bus count isn't incremented. Additionally, it is actually possible for the BIOS to skip PCI busses when programming the bus IDs for the PXBs in the MIOC (to allow for hot-plug devices with a PCI-PCI bridge). Also, since the configuration for the PXB is actually controlled by configuration registers in the MIOC, the MIOC must be asked how many PCI busses there are. It would be much cleaner to set up the subordinatebus for each PXB as it is probed, but the info is in the MIOC, not the PXB. >How-To-Repeat: Buy a quad Xeon. Install FreeBSD. Try to use a device not on the first bus. [PCI busses bridged from the first bus will, of course, work, but not the other ones.] >Fix: The hardware knows how to route requests to higher bus numbers properly; the kernel just doesn't know to look for something there. The fix is to read the BIOS-programmed configuration from the MIOC configuration registers. The highest bus number must belong to the last bus on the last PXB, and there are 4 choices. The code just searches backwards until it finds one that has been configured. Here are the patches. Note that I haven't actually tested the ones for 2.2-STABLE, but I think they will work...they do compile. [Unfortunalty, I don't have good access to a 450NX box now.] Patches for 2.2-STABLE: (in src/sys/pci) Index: pcisupport.c =================================================================== RCS file: /usr/lsrc/FreeBSD/CVS/src/sys/pci/pcisupport.c,v retrieving revision 1.40.2.8 diff -u -r1.40.2.8 pcisupport.c --- pcisupport.c 1998-06-17 09:29:09-06 1.40.2.8 +++ pcisupport.c 1998-12-01 20:58:41-07 @@ -172,6 +172,10 @@ return ("Intel 82450KX (Orion) PCI memory controller"); case 0x84c58086: return ("Intel 82454GX (Orion) host to PCI bridge"); + case 0x84ca8086: + return ("Intel 82451NX Memory and I/O Controller"); + case 0x84cb8086: + return ("Intel 82454NX PCI Expander Bridge"); case 0x00051166: return ("Ross (?) host to PCI bridge"); case 0x00221014: @@ -726,6 +730,56 @@ } static void +config_450nx(pcici_t tag) +{ + unsigned long devmap; + int i; + + /* Read the MIOC devmap to determine which PCI expanders are present */ + devmap = (pci_conf_read(tag, 0xd4) >> 16) & 0x3c; + + if (!devmap) { + printf("Error: 450NX MIOC: No PCI Expander Bridge present.\n"); + return; + } + +#if 0 + /* + * This hack is in the spirit of the config_orion() routine. + * It *would* work, except that some 450NX-based servers are + * set up to SKIP PCI busses, presumably to support hot-plug + * PCI cards that contain a single PCI-PCI bridge chip. + */ + + /* Now pciroots just needs to get set to the number of bits set... */ + + pciroots = 0; + for (i = 2; i < 6; i++) + if (devmap & (1 << i)) + pciroots++; +#else + /* + * Since the buses are configured in order, we just have to + * find the highest bus, and use those numbers. + * This is `wrong', but there is nothing else I can really do... + */ + if (devmap & 0x20) { /* B1, 0xd5 */ + pciroots = (pci_conf_read(tag, 0xd4) >> 8) & 0xff; + } else if (devmap & 0x10) { /* A1, 0xd4 */ + pciroots = pci_conf_read(tag, 0xd4) & 0xff; + } else if (devmap & 0x8) { /* B0, 0xd2 */ + pciroots = (pci_conf_read(tag, 0xd0) >> 16) & 0xff; + } else /* if (devmap & 0x4) */ { /* A0, 0xd1 */ + pciroots = (pci_conf_read(tag, 0xd0) >> 8) & 0xff; + } +#endif + + if (bootverbose) + printf("config_450nx: %d PCI busses found\n", pciroots); +} + + +static void chipset_attach (pcici_t config_id, int unit) { switch (pci_conf_read (config_id, PCI_ID_REG)) { @@ -738,6 +792,9 @@ break; case 0x00051166: /* Ross ??? */ config_Ross (config_id); + break; + case 0x84ca8086: /* Intel 450NX */ + config_450nx (config_id); break; } #ifndef PCI_QUIET Patches for 3.0-CURRENT: in src/sys/pci Index: pcisupport.c =================================================================== RCS file: /usr/lsrc/FreeBSD/CVS/src/sys/pci/pcisupport.c,v retrieving revision 1.74 diff -u -r1.74 pcisupport.c --- pcisupport.c 1998-11-26 14:57:52-07 1.74 +++ pcisupport.c 1998-12-01 20:28:31-07 @@ -118,6 +122,7 @@ * XXX Both fixbushigh_orion() and fixbushigh_i1225() are bogus in that way, * that they store the highest bus number to scan in this device's config * data, though it is about PCI buses attached to the CPU independently! + * The same goes for fixbushigh_450nx. */ static void @@ -137,6 +142,57 @@ tag->secondarybus = tag->subordinatebus = sublementarybus +1; } + +/* + * This reads the PCI config space for the 82451NX MIOC in the 450NX + * chipset to determine the PCI bus configuration. + * + * Assuming the BIOS has set up the MIOC properly, this will correctly + * report the number of PCI busses in the system. + * + * A small problem is that the Host to PCI bridge control is in the MIOC, + * while the host-pci bridges are separate PCI devices. So it really + * isn't easily possible to set up the subordinatebus mappings as the + * 82454NX PCI expander bridges are probed, although that makes the + * most sense. + */ +static void +fixbushigh_450nx(pcici_t tag) +{ + int subordinatebus; + unsigned long devmap; + + /* + * Read the DEVMAP field, so we know which fields to check. + * If the Host-PCI bridge isn't marked as present by the BIOS, + * we have to assume it doesn't exist. + * If this doesn't find all the PCI busses, complain to the + * BIOS vendor. There is nothing more we can do. + */ + devmap = pci_cfgread(tag, 0xd6, 2) & 0x3c; + if (!devmap) + panic("450NX MIOC: No host to PCI bridges marked present.\n"); + /* + * Since the buses are configured in order, we just have to + * find the highest bus, and use those numbers. + */ + if (devmap & 0x20) { /* B1 */ + subordinatebus = pci_cfgread(tag, 0xd5, 1); + } else if (devmap & 0x10) { /* A1 */ + subordinatebus = pci_cfgread(tag, 0xd4, 1); + } else if (devmap & 0x8) { /* B0 */ + subordinatebus = pci_cfgread(tag, 0xd2, 1); + } else /* if (devmap & 0x4) */ { /* A0 */ + subordinatebus = pci_cfgread(tag, 0xd1, 1); + } + if (bootverbose) + printf("fixbushigh_450nx: subordinatebus is %d\n", + subordinatebus); + + tag->secondarybus = tag->subordinatebus = subordinatebus; +} + + static void fixwsc_natoma(pcici_t tag) { @@ -231,6 +287,7 @@ case 0x84c58086: return ("Intel 82453KX/GX (Orion) PCI memory controller"); case 0x84ca8086: + fixbushigh_450nx(tag); return ("Intel 82451NX Memory and I/O Controller"); case 0x84cb8086: return ("Intel 82454NX PCI Expander Bridge"); >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 Dec 1 20:19:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA03086 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 20:19:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA03078 for ; Tue, 1 Dec 1998 20:19:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA20948; Tue, 1 Dec 1998 20:20:00 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA02582; Tue, 1 Dec 1998 20:13:09 -0800 (PST) (envelope-from nobody) Message-Id: <199812020413.UAA02582@hub.freebsd.org> Date: Tue, 1 Dec 1998 20:13:09 -0800 (PST) From: PA@FreeBSD.ee.ntu.edu.tw To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: bin/8929: Is this FreeBSD 2.2.8-RELEASE's error? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8929 >Category: bin >Synopsis: Is this FreeBSD 2.2.8-RELEASE's error? >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 Dec 1 20:20:00 PST 1998 >Last-Modified: >Originator: Ming-I Hsieh >Organization: NCU CSIE Wireless Lab >Release: FreeBSD 2.2.8-RELEASE >Environment: FreeBSD vanish.pine.ncu.edu.tw 2.2.8-RELEASE FreeBSD 2.2.8-RELEASE #0: Tue Dec 1 21:21:00 CST 1998 PA@vanish.pine.ncu.edu.tw:/usr/src/sys/compile/vanish i 386 >Description: When I run "whereis xxx". I get some error at No.99 line of whereis. the line is local($cs_path) = `/usr/sbin/sysctl -n user.cs_path`; . Then I go to /usr/sbin. ls -l sysctl: lrwxrwxrwx 1 root bin 30 Dec 1 18:48 sysctl -> /R/stage/trees/ bin/sbin/sysctl But there is no R in root. Are there any problem at FreeBSD 2.2.8-RELEASE? >How-To-Repeat: Web-sendpr >Fix: cd /usr/sbin;ln -fs /sbin/sysctl ./ >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 Dec 1 20:29:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA04434 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 20:29:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA04427 for ; Tue, 1 Dec 1998 20:29:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA21322; Tue, 1 Dec 1998 20:30:00 -0800 (PST) Received: from tapti.hss.hns.com (tapti.hss.hns.com [139.85.242.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA04036 for ; Tue, 1 Dec 1998 20:26:30 -0800 (PST) (envelope-from kchowksey@hss.hns.com) Received: from tarang.hss.hns.com (tarang.hss.hns.com [139.85.242.33]) by tapti.hss.hns.com (8.8.8/8.8.8) with ESMTP id KAA10003 for ; Wed, 2 Dec 1998 10:42:10 +0530 (IST) Received: (from kchowksey@localhost) by tarang.hss.hns.com (8.8.2/8.7.3) id KAA22764; Wed, 2 Dec 1998 10:41:01 +0530 (IST) Message-Id: <199812020511.KAA22764@tarang.hss.hns.com> Date: Wed, 2 Dec 1998 10:41:01 +0530 (IST) From: Kapil Chowksey Reply-To: kchowksey@hss.hns.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/8930: [patch] Adding -d flag to xlint Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8930 >Category: bin >Synopsis: Adding -d flag to xlint >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 1 20:30:00 PST 1998 >Last-Modified: >Originator: Kapil Chowksey >Organization: disorganised >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD elbereth.hss.hns.com 3.0-CURRENT FreeBSD 3.0-CURRENT #0: Fri Nov 20 22:18:39 IST 1998 >Description: Included is a patch that adds -d flag to xlint. This flag takes an argument as the directory name to use for standard include files. Ie. xlint -d /cross/usr/include invokes cc -E -nostdinc -idirafter /cross/usr/include This is in support of cross-builds of the freebsd tree. The flag is compatible with NetBSD's lint. >How-To-Repeat: Any 3.0-current system >Fix: Index: xlint/lint.1 =================================================================== RCS file: /cvs/src/usr.bin/xlint/xlint/lint.1,v retrieving revision 1.5 diff -c -r1.5 lint.1 *** lint.1 1998/03/23 07:48:03 1.5 --- lint.1 1998/11/26 13:56:06 *************** *** 42,47 **** --- 42,48 ---- .Op Fl i Ns | Ns Fl nu .Op Fl D Ns Ar name Ns Op =def .Op Fl U Ns Ar name + .Op Fl d Ns Ar directory .Op Fl I Ns Ar directory .Op Fl L Ns Ar directory .Op Fl l Ns Ar library *************** *** 52,57 **** --- 53,59 ---- .Op Fl s Ns | Ns Fl t .Fl C Ns Ar library .Op Fl D Ns Ar name Ns Op =def + .Op Fl d Ns Ar directory .Op Fl I Ns Ar directory .Op Fl U Ns Ar name .Ar *************** *** 280,285 **** --- 282,291 ---- directive. If no definition is given, .Ar name is defined as 1. + .It Fl d Ns Ar directory + Use + .Ar directory + as the path containing the standard include files. .It Fl I Ns Ar directory Add .Ar directory Index: xlint/xlint.c =================================================================== RCS file: /cvs/src/usr.bin/xlint/xlint/xlint.c,v retrieving revision 1.4 diff -c -r1.4 xlint.c *** xlint.c 1997/03/11 14:49:51 1.4 --- xlint.c 1998/11/26 13:56:11 *************** *** 92,98 **** static char **libsrchpath; /* flags */ ! static int iflag, oflag, Cflag, sflag, tflag, Fflag; /* print the commands executed to run the stages of compilation */ static int Vflag; --- 92,98 ---- static char **libsrchpath; /* flags */ ! static int iflag, oflag, Cflag, sflag, tflag, Fflag, dflag; /* print the commands executed to run the stages of compilation */ static int Vflag; *************** *** 365,371 **** argv += optind; optind = 0; ! c = getopt(argc, argv, "abceghil:no:prstuvxzC:D:FHI:L:U:V"); switch (c) { --- 365,371 ---- argv += optind; optind = 0; ! c = getopt(argc, argv, "abcd:eghil:no:prstuvxzC:D:FHI:L:U:V"); switch (c) { *************** *** 451,456 **** --- 451,465 ---- freelst(&deflibs); break; + case 'd': + if (dflag) + usage(); + dflag = 1; + appcstrg(&cppflags, "-nostdinc"); + appcstrg(&cppflags, "-idirafter"); + appcstrg(&cppflags, optarg); + break; + case 'D': case 'I': case 'U': Index: bsd.prog.mk =================================================================== RCS file: /cvs/src/share/mk/bsd.prog.mk,v retrieving revision 1.79 diff -c -r1.79 bsd.prog.mk *** bsd.prog.mk 1998/10/18 09:35:17 1.79 --- bsd.prog.mk 1998/12/02 04:16:30 *************** *** 17,22 **** --- 17,23 ---- .if defined(DESTDIR) CFLAGS+= -I${DESTDIR}/usr/include CXXINCLUDES+= -I${DESTDIR}/usr/include/g++ + LINTFLAGS+= -d${DESTDIR}/usr/include .endif .if !defined(DEBUG_FLAGS) >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 Dec 1 21:45:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA11798 for freebsd-bugs-outgoing; Tue, 1 Dec 1998 21:45:16 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from root.com (root.com [198.145.90.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA11788 for ; Tue, 1 Dec 1998 21:45:14 -0800 (PST) (envelope-from root@root.com) Received: from root.com (localhost [127.0.0.1]) by root.com (8.8.8/8.8.5) with ESMTP id VAA03985; Tue, 1 Dec 1998 21:45:43 -0800 (PST) Message-Id: <199812020545.VAA03985@root.com> To: Dmitrij Tejblum cc: freebsd-bugs@FreeBSD.ORG Subject: Re: mmap of large files In-reply-to: Your message of "Wed, 02 Dec 1998 03:21:11 +0300." <199812020021.DAA00861@tejblum.dnttm.rssi.ru> From: David Greenman Reply-To: dg@root.com Date: Tue, 01 Dec 1998 21:45:42 -0800 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Does the test > if ((pos + size > (vm_offset_t)-PAGE_SIZE) || >in the mmap syscall have any purpose, other than break mmap with >pos > 4GB? I think the code is wrong. I think it should be (addr + size) and comparing against -PAGE_SIZE is probably also wrong - careful attention needs to be paid to rounding and overflow issues here. Needs more analysis. -DG David Greenman Co-founder/Principal Architect, The FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 2 00:49:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA25924 for freebsd-bugs-outgoing; Wed, 2 Dec 1998 00:49:24 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA25917 for ; Wed, 2 Dec 1998 00:49:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA04215; Wed, 2 Dec 1998 00:50:01 -0800 (PST) Received: from furrball.dyn.ml.org ([207.18.137.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA25565 for ; Wed, 2 Dec 1998 00:43:45 -0800 (PST) (envelope-from chris@furrball.dyn.ml.org) Received: (from chris@localhost) by furrball.dyn.ml.org (8.8.8/8.8.8) id CAA00507; Wed, 2 Dec 1998 02:40:22 -0600 (CST) (envelope-from chris) Message-Id: <199812020840.CAA00507@furrball.dyn.ml.org> Date: Wed, 2 Dec 1998 02:40:22 -0600 (CST) From: phoenix@calldei.com Reply-To: phoenix@calldei.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/8936: Bad link for /usr/sbin/sysctl Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8936 >Category: bin >Synopsis: Bad link for /usr/sbin/sysctl >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 Dec 2 00:50:00 PST 1998 >Last-Modified: >Originator: Chris Costello >Organization: >Release: FreeBSD 2.2.8-RELEASE i386 >Environment: FreeBSD 2.2.8-RELEASE with X-Developer distrobution installed. Bad link was: lrwxrwxrwx 1 root bin 30 Dec 1 12:26 sysctl -> /R/stage/trees/ >Description: Bad link was: lrwxrwxrwx 1 root bin 30 Dec 1 12:26 sysctl -> /R/stage/trees/ Should be: lrwxrwxrwx 1 root bin 12 Dec 2 02:36 sysctl -> /sbin/sysctl >How-To-Repeat: Install FreeBSD 2.2.8-RELEASE >Fix: cd /usr/sbin; rm sysctl; ln -s /sbin/sysctl sysctl >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 Dec 2 01:29:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA28854 for freebsd-bugs-outgoing; Wed, 2 Dec 1998 01:29:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA28844 for ; Wed, 2 Dec 1998 01:29:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA06888; Wed, 2 Dec 1998 01:30:00 -0800 (PST) Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [194.93.177.113]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA28046 for ; Wed, 2 Dec 1998 01:19:22 -0800 (PST) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.8.8/8.8.8) id LAA25042; Wed, 2 Dec 1998 11:16:06 +0200 (EET) (envelope-from ru) Message-Id: <199812020916.LAA25042@relay.ucb.crimea.ua> Date: Wed, 2 Dec 1998 11:16:06 +0200 (EET) From: Ruslan Ermilov Reply-To: ru@ucb.crimea.ua To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/8937: IPFW coredump and dummynet Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8937 >Category: bin >Synopsis: IPFW coredump and dummynet >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 Dec 2 01:30:00 PST 1998 >Last-Modified: >Originator: Ruslan Ermilov >Organization: United Commercial Bank >Release: FreeBSD 2.2.8-STABLE i386 >Environment: Kernel build with dummynet support >Description: - ipfw(8) coredumps - dummynet(4) commands should be documented in the ipfw(8) usage and manpage >How-To-Repeat: Run ``ipfw pipe'' to get a coredump. >Fix: The following patch will prevent coredumps: Index: ipfw.c =================================================================== RCS file: /usr/FreeBSD-CVS/src/sbin/ipfw/ipfw.c,v retrieving revision 1.34.2.20 diff -u -r1.34.2.20 ipfw.c --- ipfw.c 1998/10/12 17:29:15 1.34.2.20 +++ ipfw.c 1998/12/02 09:12:25 @@ -1330,6 +1330,9 @@ ac-- ; av++ ; } + if (!ac) { + show_usage("pipe requires arguments"); + } /* allow argument swapping */ if (ac > 1 && *av[0]>='0' && *av[0]<='9') { char *p = av[0] ; >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 Dec 2 01:31:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA29112 for freebsd-bugs-outgoing; Wed, 2 Dec 1998 01:31:25 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from arc.hq.cti.ru (arc.hq.cti.ru [195.34.40.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA29099 for ; Wed, 2 Dec 1998 01:31:23 -0800 (PST) (envelope-from tejblum@arc.hq.cti.ru) Received: from arc.hq.cti.ru (localhost [127.0.0.1]) by arc.hq.cti.ru (8.9.0/8.9.0) with ESMTP id MAA19641; Wed, 2 Dec 1998 12:28:39 +0300 (MSK) Message-Id: <199812020928.MAA19641@arc.hq.cti.ru> X-Mailer: exmh version 2.0zeta 7/24/97 To: dg@root.com cc: Dmitrij Tejblum , freebsd-bugs@FreeBSD.ORG Subject: Re: mmap of large files In-reply-to: Your message of "Tue, 01 Dec 1998 21:45:42 PST." <199812020545.VAA03985@root.com> Date: Wed, 02 Dec 1998 12:28:38 +0300 From: Dmitrij Tejblum Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > >Does the test > > if ((pos + size > (vm_offset_t)-PAGE_SIZE) || > >in the mmap syscall have any purpose, other than break mmap with > >pos > 4GB? > > I think the code is wrong. I think it should be (addr + size) and comparing > against -PAGE_SIZE is probably also wrong - careful attention needs to be > paid to rounding and overflow issues here. Needs more analysis. > I think, vm_map_insert test for validity of (addr + size), no? Dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 2 04:29:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA14697 for freebsd-bugs-outgoing; Wed, 2 Dec 1998 04:29:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA14692 for ; Wed, 2 Dec 1998 04:29:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA16238; Wed, 2 Dec 1998 04:30:01 -0800 (PST) Received: from pyrl.eye (ppp-115.isl.net [199.3.25.115]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA14474 for ; Wed, 2 Dec 1998 04:23:37 -0800 (PST) (envelope-from ortmann@sparc.isl.net) Received: (from ortmann@localhost) by pyrl.eye (8.9.1/8.9.1) id GAA01215; Wed, 2 Dec 1998 06:23:21 -0600 (CST) (envelope-from ortmann) Message-Id: <199812021223.GAA01215@pyrl.eye> Date: Wed, 2 Dec 1998 06:23:21 -0600 (CST) From: Daniel Ortmann Reply-To: ortmann@sparc.isl.net To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: gurney_j@efn.org X-Send-Pr-Version: 3.2 Subject: kern/8940: slow-running system clock (and possibly sio overflows?) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8940 >Category: kern >Synopsis: system clock runs extremely slowly (and sio overflows?) >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 Dec 2 04:30:00 PST 1998 >Last-Modified: >Originator: Daniel Ortmann >Organization: N/A >Release: FreeBSD 3.0-CURRENT i386 >Environment: generic ide system with "CPU: Cyrix 6x86 (486-class CPU)" >Description: the system clock runs extremely slowly. (and sio silo overflows occur) >How-To-Repeat: A) enable power management in the bios B) put "device apm0 at isa? disable flags 0x31" in the kernel config file perhaps only one of the above is needed to reproduce the problem??? >Fix: 1) disable power management in the bios 2) remove apm from the kernel perhaps only one of the above is needed to remove the problem??? items #1 and #2 were tested together and not separately >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 Dec 2 08:28:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA09390 for freebsd-bugs-outgoing; Wed, 2 Dec 1998 08:28:06 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA09329; Wed, 2 Dec 1998 08:27:52 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA16359; Wed, 2 Dec 1998 08:28:31 -0800 (PST) Date: Wed, 2 Dec 1998 08:28:31 -0800 (PST) Message-Id: <199812021628.IAA16359@freefall.freebsd.org> To: kchowksey@hss.hns.com, bde@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/8930 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Adding -d flag to xlint State-Changed-From-To: open-closed State-Changed-By: bde State-Changed-When: Wed Dec 2 08:26:19 PST 1998 State-Changed-Why: The submitter agrees with me that lint should use the same rules for include paths as cc; thus it should get the rules from CFLAGS. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 2 12:19:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA29316 for freebsd-bugs-outgoing; Wed, 2 Dec 1998 12:19:23 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA29302 for ; Wed, 2 Dec 1998 12:19:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA29442; Wed, 2 Dec 1998 12:20:00 -0800 (PST) Received: from pesto.lbl.gov (pesto.lbl.gov [131.243.2.55]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA29139 for ; Wed, 2 Dec 1998 12:17:47 -0800 (PST) (envelope-from jin@pesto.lbl.gov) Received: (from jin@localhost) by pesto.lbl.gov (8.8.8/8.8.8) id MAA01740; Wed, 2 Dec 1998 12:17:35 -0800 (PST) (envelope-from jin) Message-Id: <199812022017.MAA01740@pesto.lbl.gov> Date: Wed, 2 Dec 1998 12:17:35 -0800 (PST) From: Jin Guojun (FTG staff) Reply-To: jin@pesto.lbl.gov To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/8941: sysctl in different place causes whereis failure Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8941 >Category: bin >Synopsis: sysctl in different place causes whereis failure >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 Dec 2 12:20:00 PST 1998 >Last-Modified: >Originator: Jin Guojun (FTG staff) >Organization: >Release: FreeBSD 2.2.8-RELEASE i386 >Environment: FreeBSD 2.2.8-RELEASE >Description: the "sysctl" command has bend moved from /usr/sbin to /sbin. /usr/bin/whereis line 99 invokes sysctl by "/usr/sbin/sysctl -n user.cs_path" that causes command not found error. >How-To-Repeat: try do "whereis anything" # whereis yp Can't exec "/usr/sbin/sysctl -n user.cs_path": No such file or directory at /usr/bin/whereis line 99yp: >Fix: change /usr/sbin/sysctl to /sbin/sysctl at line 99 in whereis program. >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 Dec 2 18:19:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA10985 for freebsd-bugs-outgoing; Wed, 2 Dec 1998 18:19:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA10980 for ; Wed, 2 Dec 1998 18:19:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA18681; Wed, 2 Dec 1998 18:20:01 -0800 (PST) Date: Wed, 2 Dec 1998 18:20:01 -0800 (PST) Message-Id: <199812030220.SAA18681@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Steve Qualls Subject: Re: kern/6858: inetd in realloc(): warning: junk pointer, too low to make sense. Reply-To: Steve Qualls Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/6858; it has been noted by GNATS. From: Steve Qualls To: freebsd-gnats-submit@freebsd.org, jher@io.com Cc: Subject: Re: kern/6858: inetd in realloc(): warning: junk pointer, too low to make sense. Date: Wed, 02 Dec 1998 21:26:18 -0500 Is anyone ever going to post a fix for this It seems like its been happening for months now with out a fix. It causes outlook to stop POPing the mail. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Dec 2 19:36:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA19139 for freebsd-bugs-outgoing; Wed, 2 Dec 1998 19:36:03 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from qix.jmz.org (ppp005.infranet.fr [195.68.70.132]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA19115 for ; Wed, 2 Dec 1998 19:35:59 -0800 (PST) (envelope-from jmz@FreeBSD.ORG) Received: (from jmz@localhost) by qix.jmz.org (8.9.1/8.8.7) id EAA22296; Thu, 3 Dec 1998 04:36:56 +0100 (MET) Date: Thu, 3 Dec 1998 04:36:56 +0100 (MET) Message-Id: <199812030336.EAA22296@qix.jmz.org> X-Authentication-Warning: qix.jmz.org: jmz set sender to jmz@qix using -f From: Jean-Marc Zucconi To: steve@wnol.net CC: freebsd-bugs@FreeBSD.ORG In-reply-to: <199812030220.SAA18681@freefall.freebsd.org> (message from Steve Qualls on Wed, 2 Dec 1998 18:20:01 -0800 (PST)) Subject: Re: kern/6858: inetd in realloc(): warning: junk pointer, too low to make sense. X-Mailer: Emacs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> Steve Qualls writes: > The following reply was made to PR kern/6858; it has been noted by GNATS. > From: Steve Qualls > To: freebsd-gnats-submit@freebsd.org, jher@io.com > Cc: Subject: Re: kern/6858: inetd in realloc(): warning: junk pointer, too low to make sense. > Date: Wed, 02 Dec 1998 21:26:18 -0500 > Is anyone ever going to post a fix for this It seems like its been > happening for months now with out a fix. It causes outlook to stop > POPing the mail. There is a fix in the PR database: bin/8183 Jean-Marc -- Jean-Marc Zucconi PGP Key: finger jmz@FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 3 07:49:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA19334 for freebsd-bugs-outgoing; Thu, 3 Dec 1998 07:49:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA19329 for ; Thu, 3 Dec 1998 07:49:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA17353; Thu, 3 Dec 1998 07:50:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA19119; Thu, 3 Dec 1998 07:46:08 -0800 (PST) (envelope-from nobody) Message-Id: <199812031546.HAA19119@hub.freebsd.org> Date: Thu, 3 Dec 1998 07:46:08 -0800 (PST) From: info@highwind.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: kern/8952: close() blocks forever after fork() in threaded program Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8952 >Category: kern >Synopsis: close() blocks forever after fork() in threaded program >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 3 07:50:00 PST 1998 >Last-Modified: >Originator: Robert Fleischman >Organization: HighWind Software >Release: 3.0 >Environment: FreeBSD zonda.highwind.com 3.0-19981117-SNAP FreeBSD 3.0-19981117-SNAP #0: Tue Nov 17 16:54:02 GMT 1998 root@usw2.freebsd.org:/usr/src/sys/compile/GENERIC i386 >Description: 1. You have a program that starts a few threads, one of these threads blocks in "accept()" waiting for a new connection on a file descriptor. 2. In another thread, you want to start a child program. After the fork(), but before exec(), you close() all the file descriptors you don't want the child to touch. 3. The child hangs in close() forever. Why? At fork(), you get a copy of all the fd's. Problem is, many of them have their file descriptors locked. >How-To-Repeat: Any trivial threaded program with a thread blocking in accept() and another thread calling fork(), then trying to close() all the fd's will cause it to happen. >Fix: I'm thinking that maybe libc_r's fork() code should unlock all the fd's owned by threads other than the one that called fork(). >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 Dec 3 08:39:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA24287 for freebsd-bugs-outgoing; Thu, 3 Dec 1998 08:39:23 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA24270 for ; Thu, 3 Dec 1998 08:39:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA20091; Thu, 3 Dec 1998 08:40:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA23887; Thu, 3 Dec 1998 08:33:43 -0800 (PST) (envelope-from nobody) Message-Id: <199812031633.IAA23887@hub.freebsd.org> Date: Thu, 3 Dec 1998 08:33:43 -0800 (PST) From: kiroh@jp.freebsd.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: i386/8953: BINFORMAT not defined in 2.2-STABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8953 >Category: i386 >Synopsis: BINFORMAT not defined in 2.2-STABLE >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 Dec 3 08:40:01 PST 1998 >Last-Modified: >Originator: Kiroh HARADA >Organization: >Release: 2.2.8-STABLE as of 12/2 >Environment: FreeBSD nya 2.2.8-STABLE FreeBSD 2.2.8-STABLE #0: Tue Dec 1 22:44:57 JST 1998 >Description: make world fails with the following error: "/usr/src/secure/lib/libcrypt/Makefile", line 8: Malformed conditional (${BINFOR MAT} != elf) "/usr/src/secure/lib/libcrypt/Makefile", line 11: if-less else "/usr/src/secure/lib/libcrypt/Makefile", line 11: Need an operator "/usr/src/secure/lib/libcrypt/Makefile", line 14: if-less endif "/usr/src/secure/lib/libcrypt/Makefile", line 14: Need an operator "/usr/src/secure/lib/libcrypt/Makefile", line 24: Malformed conditional (${BINFO RMAT} == elf) "/usr/src/secure/lib/libcrypt/Makefile", line 24: Need an operator "/usr/src/secure/lib/libcrypt/Makefile", line 26: if-less endif "/usr/src/secure/lib/libcrypt/Makefile", line 26: Need an operator "/usr/src/secure/lib/libcrypt/Makefile", line 43: Malformed conditional (!define d(NOPIC) && defined(SHLIB_MAJOR) && ${BINFORMAT} == elf) "/usr/src/secure/lib/libcrypt/Makefile", line 49: if-less endif "/usr/src/secure/lib/libcrypt/Makefile", line 49: Need an operator make: fatal errors encountered -- cannot continue >How-To-Repeat: make world on 2.2-STABLE box with non-US 2.2.8-STABLE src code as of 12/2. I have not checked US 2.2.8-STABLE source code. >Fix: set BINFORMAT environmental variable as "aout" >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 Dec 3 13:09:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA23668 for freebsd-bugs-outgoing; Thu, 3 Dec 1998 13:09:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA23647 for ; Thu, 3 Dec 1998 13:09:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA04110; Thu, 3 Dec 1998 13:10:00 -0800 (PST) Received: from whistle.com (s205m131.whistle.com [207.76.205.131]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA21634 for ; Thu, 3 Dec 1998 12:59:57 -0800 (PST) (envelope-from archie@whistle.com) Received: (from smap@localhost) by whistle.com (8.7.5/8.6.12) id MAA17098 for ; Thu, 3 Dec 1998 12:59:06 -0800 (PST) Received: from bubba.whistle.com( 207.76.205.7) by whistle.com via smap (V2.0) id xma017096; Thu, 3 Dec 98 12:58:38 -0800 Received: (from archie@localhost) by bubba.whistle.com (8.8.7/8.6.12) id MAA29513; Thu, 3 Dec 1998 12:58:38 -0800 (PST) Message-Id: <199812032058.MAA29513@bubba.whistle.com> Date: Thu, 3 Dec 1998 12:58:38 -0800 (PST) From: Archie Cobbs Reply-To: archie@whistle.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/8955: request CVS allow advisory locks on repository directories Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8955 >Category: bin >Synopsis: request CVS allow advisory locks on repository directories >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: Thu Dec 3 13:10:00 PST 1998 >Last-Modified: >Originator: Archie Cobbs >Organization: Whistle Communications, Inc. >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: 2.2-stable and 3.0-current >Description: It would be nice if CVS allowed a repository maintainer to put a file (named perhaps ".cvs-commit-advise") directly into a repository directory which would cause the contents of the file to appear in the checkin message whenever anyone trys to check anything in that directory or a subdirectory. This would, for example, allow Satoshi to put an "advisory lock" on the ports tree. People would still be able to check things in, but they would get a special warning message before they did it. There could be other uses, such as general information and reminders for specific parts of a code base, etc. >How-To-Repeat: >Fix: >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 Dec 3 14:09:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA01725 for freebsd-bugs-outgoing; Thu, 3 Dec 1998 14:09:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA01717 for ; Thu, 3 Dec 1998 14:09:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA06302; Thu, 3 Dec 1998 14:10:00 -0800 (PST) Date: Thu, 3 Dec 1998 14:10:00 -0800 (PST) Message-Id: <199812032210.OAA06302@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Nate Williams Subject: Re: bin/8955: request CVS allow advisory locks on repository directories Reply-To: Nate Williams Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/8955; it has been noted by GNATS. From: Nate Williams To: archie@whistle.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/8955: request CVS allow advisory locks on repository directories Date: Thu, 3 Dec 1998 15:08:39 -0700 > >Number: 8955 > >Category: bin > >Synopsis: request CVS allow advisory locks on repository directories > >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: Thu Dec 3 13:10:00 PST 1998 > >Last-Modified: > >Originator: Archie Cobbs > >Organization: > Whistle Communications, Inc. > >Release: FreeBSD 2.2.6-RELEASE i386 > >Environment: > > 2.2-stable and 3.0-current > > >Description: > > It would be nice if CVS allowed a repository maintainer to > put a file (named perhaps ".cvs-commit-advise") directly > into a repository directory which would cause the contents > of the file to appear in the checkin message whenever anyone > trys to check anything in that directory or a subdirectory. > > This would, for example, allow Satoshi to put an "advisory > lock" on the ports tree. People would still be able to > check things in, but they would get a special warning > message before they did it. > > There could be other uses, such as general information > and reminders for specific parts of a code base, etc. This can be done with some modifications using the existing stuff in the CVSROOT directory (note, check out 'avail', as well as 'commitcheck'), and doesn't require any modifications to CVS. It does require someone taking time to modify the commit checks. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 3 22:09:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA24646 for freebsd-bugs-outgoing; Thu, 3 Dec 1998 22:09:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA24639 for ; Thu, 3 Dec 1998 22:09:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA28546; Thu, 3 Dec 1998 22:10:01 -0800 (PST) Received: from lamb.sas.com (lamb.sas.com [192.35.83.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA24590 for ; Thu, 3 Dec 1998 22:07:42 -0800 (PST) (envelope-from jwd@unx.sas.com) Received: from mozart (mozart.unx.sas.com [192.58.184.8]) by lamb.sas.com (8.9.1/8.9.1) with SMTP id BAA05079 for ; Fri, 4 Dec 1998 01:07:26 -0500 (EST) Received: from magenta.pc.sas.com by mozart (5.65c/SAS/Domains/5-6-90) id AA22446; Fri, 4 Dec 1998 01:07:26 -0500 Received: (from jwd@localhost) by magenta.pc.sas.com (8.9.1/8.9.1) id BAA03786; Fri, 4 Dec 1998 01:09:20 -0500 (EST) (envelope-from jwd) Message-Id: <199812040609.BAA03786@magenta.pc.sas.com> Date: Fri, 4 Dec 1998 01:09:20 -0500 (EST) From: jwd@unx.sas.com Reply-To: jwd@unx.sas.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/8958: bug in /bin/pax -s option processing Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8958 >Category: bin >Synopsis: bug in /bin/pax -s option processing >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 Dec 3 22:10:00 PST 1998 >Last-Modified: >Originator: John W. DeBoskey >Organization: SAS Institute >Release: FreeBSD 3.0-19981124-SNAP i386 >Environment: Typical FreeBSD installation. >Description: /bin/pax -s processing assumes pattern match/replacements will always occur at offset zero. When a pattern match does not occur at offset zero, then the input source string pointer is incremented too far. Thus, output replacement strings are corrupt. User level data is damaged. >How-To-Repeat: Create the following symlink in /tmp: ln -s /usr/src/bin/pax/pax.c pax.c pax.c -> /usr/src/bin/pax/pax.c Copy the symlink to /var/tmp and change src to src2 pax -rw -v -pp -s /src/src2/ pax.c /var/tmp Inspect the copied link: pax.c -> /usr/src2pax/pax.c Note the missing path sep char. >Fix: --- /usr/src/bin/pax/pat_rep.c.old Fri May 15 02:27:44 1998 +++ /usr/src/bin/pax/pat_rep.c Fri Dec 4 00:11:44 1998 @@ -1002,7 +1002,7 @@ # ifdef NET2_REGEX inpt = pt->rcmp->endp[0]; # else - inpt += pm[0].rm_eo; + inpt += pm[0].rm_eo - pm[0].rm_so; # endif if ((outpt == endpt) || (*inpt == '\0')) >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 Dec 3 22:29:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA25971 for freebsd-bugs-outgoing; Thu, 3 Dec 1998 22:29:19 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from metronet.com (feenix.metronet.com [192.245.137.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id WAA25966 for ; Thu, 3 Dec 1998 22:29:16 -0800 (PST) (envelope-from pgilley@metronet.com) Received: from localhost by metronet.com with SMTP id AA04483 (5.67a/IDA1.5hp for ); Fri, 4 Dec 1998 00:00:36 -0600 Date: Fri, 4 Dec 1998 00:00:35 -0600 (CST) From: Phil Gilley To: freebsd-bugs@FreeBSD.ORG Subject: 2.2.8 glitch (sysctl symlink) 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 This is probably already known but I didn't see it ERRATA.TXT. $ uname -r 2.2.8-RELEASE $ ls -l /usr/sbin/sysctl lrwxrwxrwx 1 root bin 30 Dec 3 12:08 /usr/sbin/sysctl -> /R/stage/trees/bin/sbin/sysctl whereis(1) calls /usr/sbin/sysctl and complains a little because of it. The fix is obvious. (Fix the link manually or rebuild and reinstall sysctl.) I don't know if any other symlinks are hosed. Phil Gilley pgilley@metronet.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Dec 3 22:48:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA27966 for freebsd-bugs-outgoing; Thu, 3 Dec 1998 22:48:56 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA27953; Thu, 3 Dec 1998 22:48:49 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA00520; Thu, 3 Dec 1998 22:49:29 -0800 (PST) Date: Thu, 3 Dec 1998 22:49:29 -0800 (PST) Message-Id: <199812040649.WAA00520@freefall.freebsd.org> To: str@giganda.komkon.org, jkh@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/8762 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: syslogd.conf shell accept spaces in addition to TABs State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Thu Dec 3 22:46:24 PST 1998 State-Changed-Why: Thanks for the reminder, committed! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 01:39:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA12923 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 01:39:23 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA12908 for ; Fri, 4 Dec 1998 01:39:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA08061; Fri, 4 Dec 1998 01:40:01 -0800 (PST) Received: from bd.mbn.or.jp (bd.mbn.or.jp [202.217.0.43]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA12466 for ; Fri, 4 Dec 1998 01:32:56 -0800 (PST) (envelope-from chi@bd.mbn.or.jp) Received: from chino.localhost (cse5-34.sapporo.mbn.or.jp [202.217.111.58]) by bd.mbn.or.jp (8.9.1/bd.mbn.or.jp-2.0) with ESMTP id SAA07552 for ; Fri, 4 Dec 1998 18:32:30 +0900 (JST) Message-Id: <199812040932.SAA07552@bd.mbn.or.jp> Date: Fri, 4 Dec 1998 18:32:30 +0900 (JST) From: chi@bd.mbn.or.jp Reply-To: chi@bd.mbn.or.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/8960: lnc driver does not set IFF_MULTICAST Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8960 >Category: kern >Synopsis: lnc driver does not set IFF_MULTICAST >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 Dec 4 01:40:01 PST 1998 >Last-Modified: >Originator: Chiharu Shibata >Organization: Japan FreeBSD Users Group >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: all AMD PCnet based LAN board(lnc driver) >Description: The lnc driver does not set IFF_MULTICAST flag even if "LNC_MULTICAST" is defined in /sys/i386/isa/if_lnc.c. >How-To-Repeat: (1) Uncomment "#define LNC_MULTICAST" in /sys/i386/isa/if_lnc.c or add "options LNC_MULTICAST" in kernel conf file. (2) Re-configure new kernel and boot. (3) Type "ifconfig -a". >lnc0: flags=843 mtu 1500 This should be the following. >lnc0: flags=8843 mtu 1500 >Fix: --- if_lnc.c.orig Thu Dec 3 15:50:12 1998 +++ if_lnc.c Thu Dec 3 15:50:41 1998 @@ -69,6 +69,11 @@ /* Some defines that should really be in generic locations */ #define FCS_LEN 4 #define MULTICAST_FILTER_LEN 8 +#ifdef LNC_MULTICAST +#define LNC_IFF_DEFAULT (IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST) +#else +#define LNC_IFF_DEFAULT (IFF_BROADCAST | IFF_SIMPLEX) +#endif #include #include @@ -1272,7 +1277,7 @@ sc->arpcom.ac_if.if_name = lncdriver.name; sc->arpcom.ac_if.if_unit = unit; sc->arpcom.ac_if.if_mtu = ETHERMTU; - sc->arpcom.ac_if.if_flags = IFF_BROADCAST | IFF_SIMPLEX; + sc->arpcom.ac_if.if_flags = LNC_IFF_DEFAULT; sc->arpcom.ac_if.if_timer = 0; sc->arpcom.ac_if.if_output = ether_output; sc->arpcom.ac_if.if_start = lnc_start; @@ -1383,7 +1388,7 @@ s = splimp(); lnc_stop(sc); - sc->arpcom.ac_if.if_flags |= IFF_BROADCAST | IFF_SIMPLEX; /* XXX??? */ + sc->arpcom.ac_if.if_flags |= LNC_IFF_DEFAULT; /* XXX??? */ /* * This sets up the memory area for the controller. Memory is set up for >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 Dec 4 03:39:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA20390 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 03:39:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA20383 for ; Fri, 4 Dec 1998 03:39:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA12257; Fri, 4 Dec 1998 03:40:01 -0800 (PST) Received: from gjp.erols.com (alex-va-n008c079.moon.jic.com [206.156.18.89]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA20352 for ; Fri, 4 Dec 1998 03:38:21 -0800 (PST) (envelope-from gjp@gjp.erols.com) Received: (from gjp@localhost) by gjp.erols.com (8.9.1/8.8.7) id GAA61194; Fri, 4 Dec 1998 06:38:06 -0500 (EST) (envelope-from gjp) Message-Id: <199812041138.GAA61194@gjp.erols.com> Date: Fri, 4 Dec 1998 06:38:06 -0500 (EST) From: gpalmer@FreeBSD.ORG Reply-To: gpalmer@FreeBSD.ORG To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/8962: natd core dump Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8962 >Category: bin >Synopsis: natd code dump >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 Dec 4 03:40:00 PST 1998 >Last-Modified: >Originator: Gary Palmer >Organization: FreeBSD >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD 3.0, Nov 21 vintage, 2 ethernets (one internal for private LAN, one to cablemodem provider). Running natd on the external interface for NAT functions. >Description: It seems natd coredumps occasionally on my machine. Backtrace: root@gjp:/usr/bin> gdb /usr/sbin/natd /natd.core GDB is free software and you are welcome to 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. GDB 4.16 (i386-unknown-freebsd), Copyright 1996 Free Software Foundation, Inc... Core was generated by `natd'. Program terminated with signal 11, Segmentation fault. Reading symbols from /usr/lib/libalias.so.2...done. Reading symbols from /usr/lib/libc.so.3...done. Reading symbols from /usr/libexec/ld-elf.so.1...done. #0 0x280aca64 in bcmp () (gdb) bt #0 0x280aca64 in bcmp () #1 0x8089000 in ?? () #2 0x280570dd in AliasHandleResource (count=1, q=0x804c58d, nbtarg=0xefbfd680) at alias_nbt.c:487 #3 0x2805721a in AliasHandleUdpNbtNS (pip=0x804c564, link=0x8083e00, alias_address=0xefbfd6c4, alias_port=0xefbfd6c2, original_address=0xefbfd6c8, original_port=0x804c57a) at alias_nbt.c:564 #4 0x2805627e in UdpAliasIn (pip=0x804c564) at alias.c:620 #5 0x280569da in PacketAliasIn (ptr=0x804c564 "E", maxpacketsize=65535) at alias.c:1042 #6 0x804972e in DoAliasing (fd=3) at natd.c:485 #7 0x80492ed in main (argc=4, argv=0xefbfd87c) at natd.c:278 #8 0x8048e72 in _start () (gdb) up #1 0x8089000 in ?? () (gdb) up #2 0x280570dd in AliasHandleResource (count=1, q=0x804c58d, nbtarg=0xefbfd680) at alias_nbt.c:487 487 q = (NBTNsResource *)AliasHandleResourceNB( q, nbtarg ); (gdb) list 482 #endif 483 484 /* Type and Class filed */ 485 switch ( ntohs(q->type) ) { 486 case RR_TYPE_NB: 487 q = (NBTNsResource *)AliasHandleResourceNB( q, nbtarg ); 488 break; 489 case RR_TYPE_A: 490 q = (NBTNsResource *)AliasHandleResourceA( q, nbtarg ); 491 break; (gdb) print q $1 = (NBTNsResource *) 0x8089000 (gdb) print *q Cannot access memory at address 0x8089000. (gdb) up #3 0x2805721a in AliasHandleUdpNbtNS (pip=0x804c564, link=0x8083e00, alias_address=0xefbfd6c4, alias_port=0xefbfd6c2, original_address=0xefbfd6c8, original_port=0x804c57a) at alias_nbt.c:564 564 p = AliasHandleResource(ntohs(nsh->nscount), (NBTNsResource *)p, &nbtarg ); (gdb) list 559 p = AliasHandleResource(ntohs(nsh->ancount), (NBTNsResource *)p, &nbtarg ); 560 } 561 562 /* Authority Resource Recodrs */ 563 if (ntohs(nsh->nscount) !=0 ) { 564 p = AliasHandleResource(ntohs(nsh->nscount), (NBTNsResource *)p, &nbtarg ); 565 } 566 567 /* Additional Resource Recodrs */ 568 if (ntohs(nsh->arcount) !=0 ) { (gdb) print p $2 = (unsigned char *) 0xc07d
(gdb) print nbtarg $3 = {oldaddr = {s_addr = 4279409870}, oldport = 35072, newaddr = { s_addr = 4279409870}, newport = 35072, uh_sum = 0x804c57e} (gdb) print nsh No symbol "nsh" in current context. (gdb) print p $4 = (unsigned char *) 0xc07d
(gdb) up #4 0x2805627e in UdpAliasIn (pip=0x804c564) at alias.c:620 620 AliasHandleUdpNbtNS(pip, link, (gdb) list 615 { 616 AliasHandleUdpNbt(pip, link, &original_address, ud->uh_dport); 617 } else if (ntohs(ud->uh_dport) == NETBIOS_NS_PORT_NUMBER 618 || ntohs(ud->uh_sport) == NETBIOS_NS_PORT_NUMBER ) 619 { 620 AliasHandleUdpNbtNS(pip, link, 621 &alias_address, 622 &alias_port, 623 &original_address, 624 &ud->uh_dport ); (gdb) print pip $5 = (struct ip *) 0x804c564 (gdb) print *pip $6 = {ip_hl = 5, ip_v = 4, ip_tos = 0 '\000', ip_len = 24576, ip_id = 10, ip_off = 0, ip_ttl = 128 '\200', ip_p = 17 '\021', ip_sum = 51053, ip_src = { s_addr = 2383584462}, ip_dst = {s_addr = 4279409870}} (gdb) print link $7 = (struct alias_link *) 0x8083e00 (gdb) print *link $8 = {src_addr = {s_addr = 4279409870}, dst_addr = {s_addr = 2383584462}, alias_addr = {s_addr = 4279409870}, src_port = 35072, dst_port = 35072, alias_port = 35072, link_type = 2, flags = 0, timestamp = 912770349, expire_time = 60, sockfd = -1, start_point_out = 76, start_point_in = 3351, next_out = 0x8084f00, last_out = 0x0, next_in = 0x0, last_in = 0x0, data = { frag_ptr = 0x8085100 "Î\234\022ÿÎ\234\022\013Î\234\022ÿ", frag_addr = { s_addr = 134762752}, tcp = 0x8085100}} (gdb) print alias_address $9 = {s_addr = 4279409870} (gdb) print alias_port $10 = 35072 (gdb) print original_address $11 = {s_addr = 4279409870} (gdb) print ud $12 = (struct udphdr *) 0x804c578 (gdb) print *ud $13 = {uh_sport = 35072, uh_dport = 35072, uh_ulen = 19456, uh_sum = 49277} (gdb) up #5 0x280569da in PacketAliasIn (ptr=0x804c564 "E", maxpacketsize=65535) at alias.c:1042 1042 iresult = UdpAliasIn(pip); (gdb) list 1037 { 1038 case IPPROTO_ICMP: 1039 iresult = IcmpAliasIn(pip); 1040 break; 1041 case IPPROTO_UDP: 1042 iresult = UdpAliasIn(pip); 1043 break; 1044 case IPPROTO_TCP: 1045 iresult = TcpAliasIn(pip); 1046 break; (gdb) list 1037 { 1038 case IPPROTO_ICMP: 1039 iresult = IcmpAliasIn(pip); 1040 break; 1041 case IPPROTO_UDP: 1042 iresult = UdpAliasIn(pip); 1043 break; 1044 case IPPROTO_TCP: 1045 iresult = TcpAliasIn(pip); 1046 break; (gdb) print pip $14 = (struct ip *) 0x804c564 (gdb) print *pip $15 = {ip_hl = 5, ip_v = 4, ip_tos = 0 '\000', ip_len = 24576, ip_id = 10, ip_off = 0, ip_ttl = 128 '\200', ip_p = 17 '\021', ip_sum = 51053, ip_src = { s_addr = 2383584462}, ip_dst = {s_addr = 4279409870}} At a guess, this seems to be a netbios broadcast packet coming in from the cablesystem. (gdb) printf "0x%x", pip->ip_dst->s_addr 0xff129cce (aka 206.156.18.255) (gdb) printf "0x%x", pip->ip_src->s_addr 0x8e129cce (aka 206.156.18.142) >How-To-Repeat: Unknown what specifically triggers the coredump. I can't be the only one running on a cableplant with lots of NetBIOS broadcasts... >Fix: Unknown at this time. Filter NetBIOS in the kernel? >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 Dec 4 04:32:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA26152 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 04:32:38 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from dpi.dgtu.donetsk.ua (dgtu-dipt-38.4K.dgtu.donetsk.ua [194.44.183.253]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA26078 for ; Fri, 4 Dec 1998 04:30:50 -0800 (PST) (envelope-from yk@info.dgtu.donetsk.ua) Received: from info.dgtu.donetsk.ua (root@info.dgtu.donetsk.ua [194.44.183.7]) by dpi.dgtu.donetsk.ua (8.8.8/8.8.7) with ESMTP id OAA07448; Fri, 4 Dec 1998 14:27:08 +0200 (EET) Received: (from yk@localhost) by info.dgtu.donetsk.ua (8.8.7/8.8.5) id OAA26469; Fri, 4 Dec 1998 14:27:08 +0200 (EET) From: Yury Yaroshevsky Message-Id: <199812041227.OAA26469@info.dgtu.donetsk.ua> Subject: [BUG ?] Segment Violation signal! To: hurtta+elm@ozone.FMI.FI Date: Fri, 4 Dec 1998 14:27:08 +0200 (EET) Cc: freebsd-bugs@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] 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 Today, after run elm I'm received error message: [cross@yk] 2:06pm [~] > elm -f yk.err Reading in yk.err, message: 1 Segment Violation signal! Emergency exit taken! All temp files intact! [cross@yk] 2:06pm [~] > elm -v Elm Version and Identification Information: Elm 2.4ME+ PL43 (25), of Jun, 1998 Send bug reports to Kari Hurtta WARNING: Elm is not intended to be distributed in binary form. If that is done, then it is very likely that compile time configuration does not match to your system. This is NOT bug of ELM ME+ and bug reports for that reason will be rejected. Based on Elm 2.4 PL24 - PL25 (C) Copyright 1988-1992 USENET Community Trust Based on Elm 2.0, (C) Copyright 1986,1987 Dave Taylor To print configuration, use option: -vv --------- cut here ---- yk.err - begin ---- >From owner-inet-admins@info.east.ru Thu Dec 3 15:01:34 1998 Received: from dpi.dgtu.donetsk.ua (dpi.dgtu.donetsk.ua [194.44.183.6]) by info.dgtu.donetsk.ua (8.8.7/8.8.5) with ESMTP id OAA10196 for ; Thu, 3 Dec 1998 14:58:14 +0200 (EET) Received: from info.east.ru (info.east.ru [195.170.62.132]) by dpi.dgtu.donetsk.ua (8.8.8/8.8.7) with ESMTP id OAA29662; Thu, 3 Dec 1998 14:56:19 +0200 (EET) Received: (from majordom@localhost) by info.east.ru (8.8.8/8.8.5/BD2) id OAA12059 for inet-admins-outgoing; Thu, 3 Dec 1998 14:58:58 +0300 (MSK) Received: from frog.east.ru (root@frog.east.ru [195.170.62.133]) by info.east.ru (8.8.8/8.8.5/BD2) with ESMTP id OAA12053 for ; Thu, 3 Dec 1998 14:58:44 +0300 (MSK) Received: from sal1.yamalinfo.ru (sal1.yamalinfo.ru [195.133.157.9]) by frog.east.ru (8.8.8/8.8.8) with ESMTP id OAA29882 for ; Thu, 3 Dec 1998 14:58:39 +0300 (MSK) Received: from mail.yamalinfo.ru (vorobyev.yamalinfo.ru [195.133.157.7]) by sal1.yamalinfo.ru (8.8.6/8.8.8) with SMTP id QAA04619 for ; Thu, 3 Dec 1998 16:59:22 +0300 (MSK) (envelope-from yvorob@hempseed.com) Date: Thu, 3 Dec 1998 16:53:57 +0500 From: Yuri Vorobyev X-Mailer: The Bat! (v1.15) S/N 2D60DF40 X-Priority: 3 (Normal) Message-ID: <17704.981203@hempseed.com> To: Igor Vinokurov Subject: [inet-admins] =?koi8-r?B?UmU6IFtpbmV0LWFkbWluc10gUmU6IFtpbmV0LWFkbWluc10g0NLPwszFzcEg0yDbxcrQyc7Hz80gws/M2NvFIDEgzyDEzs/KINDPxNPF1MkgzsEgz8TOz80gyc7UxdLGxcrTxQ==?= References: <19981203114451.B23504@rtsnet.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Sender: inet-admins@info.east.ru Precedence: bulk Reply-To: inet-admins@info.east.ru Status: O X-Status: Hello! ÞÅÔ×ÅÒÇ, 3 ÄÅËÁÂÒÑ 1998 Ç., you wrote: IV> ðÒÉ×ÅÔ. IV> õ ÎÁÓ c3620 Ó 11.2.16P ÒÁÂÏÔÁÅÔ × ÔÁËÏÊ ËÏÎÆÉÇÕÒÁÃÉÉ, IV> ÐÒÉÞÅÍ ÚÁÒÁÂÏÔÁÌÏ ÓÒÁÚÕ. ats-3620-1>>sh in e0/0 IV> ... IV> Queueing strategy: fifo IV> ... ats-3620-1>>sh ip in e0/0 IV> ... IV> IP fast switching is enabled IV> IP fast switching on the same interface is disabled IV> ... ats-3620-1>> áÎÁÌÏÇÉÞÎÏ. koncern#sh int eth 0/1 ... Queueing strategy: fifo ... koncern#sh ip int eth 0/1 ... IP fast switching is enabled IP fast switching on the same interface is disabled ... îÕ É × ÄÏ×ÅÓÏË :) ftp> get superx.exe /dev/null local: /dev/null remote: superx.exe 200 PORT command successful. 150 Opening BINARY mode data connection for superx.exe(14148192 bytes). 226 Transfer complete. 14148192 bytes received in 149.07 seconds (92.69 KB/s) éÇÏÒØ, ÎÅ ÍÏÇ ÂÙ ÔÙ ËÉÎÕÔØ ÐÏÌÎÙÊ ×Ù×ÏÄ ats-3620-1>>sh in e0/0 ats-3620-1>>sh ip in e0/0 ÍÏÖÅÔ ÅÝÅ ÒÁÚÌÉÞÉÅ ÇÄÅ-ÔÏ? ÉÌÉ × IOS ÄÅÌÏ? ÔÕÔ ÔÏÖÅ ÏÔÌÉÞÉÅ ÎÅÂÏÌØÛÏÅ: 11.2.15 É 11.2.16... 2ALL: ËÔÏ ÄÁÓÔ 11.2.16 ÄÌÑ 3640? Best regards, E-mail: yvorob@hempseed.com Yuri Vorobyev ICQ: 4445191 ============================================================================= "inet-admins" Internet access mailing list. Maintained by East Connection ISP. Mail "unsubscribe inet-admins" to Majordomo@info.east.ru if you want to quit. Archive is accessible on http://info.east.ru/rus/inetadm.html --------- cut here ---- yk.err - end ---- IMHO this problem with Subject line. When I'm edit whis Subject, problem was resolved. Any opinion? -- Yury V. Yaroshevsky | Donetsk State Technical University YY18-RIPE | (380 622) 356455 yk@dgtu.donetsk.ua To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 05:24:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA29837 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 05:24:57 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from aaz.links.ru (aaz.links.ru [193.125.152.37]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA29822 for ; Fri, 4 Dec 1998 05:24:53 -0800 (PST) (envelope-from babolo@aaz.links.ru) Received: (from babolo@localhost) by aaz.links.ru (8.9.1a/8.8.8) id QAA19869; Fri, 4 Dec 1998 16:28:21 +0300 (MSK) (envelope-from babolo) Date: Fri, 4 Dec 1998 16:28:21 +0300 (MSK) From: "Aleksandr A. Babaylov" Message-Id: <199812041328.QAA19869@aaz.links.ru> To: hurtta+elm@ozone.FMI.FI, yk@info.dgtu.donetsk.ua Subject: Re: [BUG ?] Segment Violation signal! Cc: freebsd-bugs@FreeBSD.ORG In-Reply-To: <199812041227.OAA26469@info.dgtu.donetsk.ua> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 05:45:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA01451 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 05:45:11 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ozone.fmi.fi (ozone.fmi.fi [193.166.223.16]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA01411 for ; Fri, 4 Dec 1998 05:44:18 -0800 (PST) (envelope-from hurtta@ozone.fmi.fi) Received: (from hurtta@localhost) by ozone.fmi.fi (8.9.2.Alpha2/8.9.2.Alpha2/test/1998-04-28) id PAA07562; Fri, 4 Dec 1998 15:37:47 +0200 (EET) From: "Kari E. Hurtta" Message-Id: <199812041337.PAA07562@ozone.fmi.fi> Subject: Re: [BUG ?] Segment Violation signal! In-Reply-To: <199812041328.QAA19869@aaz.links.ru> from "Aleksandr A. Babaylov" at "Dec 4, 1998 04:28:21 pm" To: babolo@links.ru (Aleksandr A. Babaylov) Date: Fri, 4 Dec 1998 15:37:47 +0200 (EET) Cc: hurtta+elm@ozone.fmi.fi, yk@info.dgtu.donetsk.ua, freebsd-bugs@FreeBSD.ORG Reply-To: hurtta+elm@ozone.fmi.fi X-Mailer: ELM [version 2.4ME+ PL50+ (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 Aleksandr A. Babaylov: > What you are trying to say? / Kari Hurtta To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 05:48:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA01786 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 05:48:33 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from home.dragondata.com (home.dragondata.com [204.137.237.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA01781 for ; Fri, 4 Dec 1998 05:48:32 -0800 (PST) (envelope-from toasty@home.dragondata.com) Received: (from toasty@localhost) by home.dragondata.com (8.8.8/8.8.5) id HAA13491; Fri, 4 Dec 1998 07:36:14 -0600 (CST) From: Kevin Day Message-Id: <199812041336.HAA13491@home.dragondata.com> Subject: Re: [BUG ?] Segment Violation signal! In-Reply-To: <199812041227.OAA26469@info.dgtu.donetsk.ua> from Yury Yaroshevsky at "Dec 4, 1998 2:27: 8 pm" To: yk@info.dgtu.donetsk.ua (Yury Yaroshevsky) Date: Fri, 4 Dec 1998 07:36:13 -0600 (CST) Cc: hurtta+elm@ozone.FMI.FI, freebsd-bugs@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (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 To add to this... Just receiving your message crashed my elm. :) Kevin [Charset KOI8-R unsupported, filtering to ASCII...] > > Today, after run elm I'm received error message: > > [cross@yk] 2:06pm [~] > elm -f yk.err > > Reading in yk.err, message: 1 > > Segment Violation signal! > > > Emergency exit taken! All temp files intact! > > [cross@yk] 2:06pm [~] > elm -v > > Elm Version and Identification Information: > > Elm 2.4ME+ PL43 (25), of Jun, 1998 > Send bug reports to Kari Hurtta > > WARNING: Elm is not intended to be distributed in > binary form. If that is done, then it is very > likely that compile time configuration does not > match to your system. This is NOT bug of ELM ME+ > and bug reports for that reason will be rejected. > > > Based on Elm 2.4 PL24 - PL25 > (C) Copyright 1988-1992 USENET Community Trust > Based on Elm 2.0, (C) Copyright 1986,1987 Dave Taylor > > To print configuration, use option: -vv > > --------- cut here ---- yk.err - begin ---- > --------- cut here ---- yk.err - end ---- > > IMHO this problem with Subject line. When I'm edit whis Subject, problem > was resolved. > > > Any opinion? > > -- > Yury V. Yaroshevsky | Donetsk State Technical University > YY18-RIPE | (380 622) 356455 yk@dgtu.donetsk.ua > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 05:50:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA01974 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 05:50:01 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ozone.fmi.fi (ozone.fmi.fi [193.166.223.16]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA01932 for ; Fri, 4 Dec 1998 05:49:48 -0800 (PST) (envelope-from hurtta@ozone.fmi.fi) Received: (from hurtta@localhost) by ozone.fmi.fi (8.9.2.Alpha2/8.9.2.Alpha2/test/1998-04-28) id PAA07510; Fri, 4 Dec 1998 15:32:31 +0200 (EET) From: "Kari E. Hurtta" Message-Id: <199812041332.PAA07510@ozone.fmi.fi> Subject: Re: [BUG ?] Segment Violation signal! In-Reply-To: <199812041227.OAA26469@info.dgtu.donetsk.ua> from Yury Yaroshevsky at "Dec 4, 1998 02:27:08 pm" To: yk@info.dgtu.donetsk.ua (Yury Yaroshevsky) Date: Fri, 4 Dec 1998 15:32:31 +0200 (EET) Cc: hurtta+elm@ozone.fmi.fi, freebsd-bugs@FreeBSD.ORG Reply-To: hurtta+elm@ozone.fmi.fi X-Mailer: ELM [version 2.4ME+ PL50+ (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 Yury Yaroshevsky: [Charset KOI8-R unsupported, filtering to ASCII...] > > Today, after run elm I'm received error message: > > [cross@yk] 2:06pm [~] > elm -f yk.err > > Reading in yk.err, message: 1 > > Segment Violation signal! Yes. Seems happen: Core from signal SIGBUS: Bus error (dbx) where > 0 state_putc(ch = 82, s = 0x78513d3d) ["/mnt/ozone/data/people/hurtta/elm/WRKcvs/melib/state.c":569, 0x471d3c] 1 base64_decode(s_in = 0x78637254, s_out = 0x78513d3d, length = 136, astext = 1) ["/mnt/ozone/data/people/hurtta/elm/WRKcvs/melib/mime_decode.c":160, 0x478914] 2 rfc1522_decode_word(ptr = 0x10049c6e = "=\?koi8-r\?B\?UmU6IFtpbmV0LWFkbWluc10gUmU6IFtpbmV0LWFkbWluc10g0NLPwszFzcEg0yDbxcrQyc7Hz80gws/M2NvFIDEgzyDEzs/KINDPxNPF1MkgzsEgz8TOz\...", state = 0x7ffedff4) ["/mnt/ozone/data/people/hurtta/elm/WRKcvs/melib/mime_decode.c":1437, 0x47dab8] 3 rfc1522_decode_real(p = 0x10049258 = "[inet-admins] =\?koi8-r\?B\?UmU6IFtpbmV0LWFkbWluc10gUmU6IFtpbmV0LWFkbWluc10g0NLPwszFzcEg0yDbxcrQyc7Hz80gws/M2NvFIDEgzyDEzs/KINDPxNP\...", state = 0x7ffedff4) ["/mnt/ozone/data/people/hurtta/elm/WRKcvs/melib/mime_decode.c":1558, 0x47e0e0] 4 rfc1522_decode(ptr = 0x7fff09b4 = "[inet-admins] [", len = 2560) ["/mnt/ozone/data/people/hurtta/elm/WRKcvs/melib/mime_decode.c":1616, 0x47e364] 5 read_headers(add_new_only = 0) ["/mnt/ozone/data/people/hurtta/elm/WRKcvs/src/newmbox.c":1363, 0x452ed0] 6 newmbox(new_file = 0x100376d0 = "A0", adds_only = 0) ["/mnt/ozone/data/people/hurtta/elm/WRKcvs/src/newmbox.c":154, 0x44e648] 7 initialize(requestedmfile = 0x100376d0 = "A0", size = 256) ["/mnt/ozone/data/people/hurtta/elm/WRKcvs/src/init.c":372, 0x436adc] 8 main(argc = 5, argv = 0x7fff2f24) ["/mnt/ozone/data/people/hurtta/elm/WRKcvs/src/elm.c":54, 0x424a1c] 9 __istart() ["crt1tinit.s":13, 0x40b710] (dbx) / Kari Hurtta To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 05:50:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA02135 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 05:50:24 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from polaris.we.lc.ehu.es (polaris.we.lc.ehu.es [158.227.6.43]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id FAA02106 for ; Fri, 4 Dec 1998 05:50:15 -0800 (PST) (envelope-from jose@we.lc.ehu.es) Received: from we.lc.ehu.es by polaris.we.lc.ehu.es (SMI-8.6/SMI-SVR4) id OAA16991; Fri, 4 Dec 1998 14:49:07 +0100 Message-ID: <3667E852.57B82E1B@we.lc.ehu.es> Date: Fri, 04 Dec 1998 14:49:06 +0100 From: "José Mª Alcaide" Organization: Universidad del País Vasco - Dept. de Electricidad y Electrónica X-Mailer: Mozilla 4.06 [en] (X11; I; FreeBSD 2.2.8-RELEASE i386) MIME-Version: 1.0 To: Phil Gilley CC: freebsd-bugs@FreeBSD.ORG Subject: Re: 2.2.8 glitch (sysctl symlink) References: Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Phil Gilley wrote: > > This is probably already known but I didn't see it ERRATA.TXT. > > $ uname -r > 2.2.8-RELEASE > $ ls -l /usr/sbin/sysctl > lrwxrwxrwx 1 root bin 30 Dec 3 12:08 /usr/sbin/sysctl -> /R/stage/trees/bin/sbin/sysctl > > whereis(1) calls /usr/sbin/sysctl and complains a little because of it. > The fix is obvious. (Fix the link manually or rebuild and reinstall > sysctl.) > I have read several messages about this problem in the last days, so that just after making the world (2.2.8-RELEASE) I checked the sysctl symlink: root@tiburon[~]# uname -r 2.2.8-RELEASE root@tiburon[~]# ls -l /usr/sbin/sysctl lrwxrwxrwx 1 root bin 12 3 dic 02:59 /usr/sbin/sysctl -> /sbin/sysctl It seems that this problem does not affect to all 2.2.8-RELEASE systems... -- JMA ----------------------------------------------------------------------- José Mª Alcaide | mailto:jose@we.lc.ehu.es Universidad del País Vasco | http://www.we.lc.ehu.es/~jose Dpto. de Electricidad y Electrónica | Facultad de Ciencias - Campus de Lejona | Tel.: +34-946012479 48940 Lejona (Vizcaya) - SPAIN | Fax: +34-944858139 ----------------------------------------------------------------------- "Go ahead... make my day." - H. Callahan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 05:57:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA02552 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 05:57:41 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from aaz.links.ru (aaz.links.ru [193.125.152.37]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA02547 for ; Fri, 4 Dec 1998 05:57:38 -0800 (PST) (envelope-from babolo@aaz.links.ru) Received: (from babolo@localhost) by aaz.links.ru (8.9.1a/8.8.8) id QAA20204; Fri, 4 Dec 1998 16:54:44 +0300 (MSK) (envelope-from babolo) Message-Id: <199812041354.QAA20204@aaz.links.ru> Subject: Re: [BUG ?] Segment Violation signal! In-Reply-To: <199812041337.PAA07562@ozone.fmi.fi> from "Kari E. Hurtta" at "Dec 4, 98 03:37:47 pm" To: hurtta+elm@ozone.fmi.fi Date: Fri, 4 Dec 1998 16:54:44 +0300 (MSK) Cc: hurtta+elm@ozone.fmi.fi, freebsd-bugs@FreeBSD.ORG From: "Aleksandr A.Babaylov" 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 Kari E. Hurtta writes: > Aleksandr A. Babaylov: > > > What you are trying to say? Sorry, my error when investigate original letter. pine affected too > / Kari Hurtta -- @BABOLO http://links.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 06:03:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA03023 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 06:03:49 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from home.dragondata.com (home.dragondata.com [204.137.237.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA03018 for ; Fri, 4 Dec 1998 06:03:47 -0800 (PST) (envelope-from toasty@home.dragondata.com) Received: (from toasty@localhost) by home.dragondata.com (8.8.8/8.8.5) id HAA18428; Fri, 4 Dec 1998 07:56:35 -0600 (CST) From: Kevin Day Message-Id: <199812041356.HAA18428@home.dragondata.com> Subject: Re: [BUG ?] Segment Violation signal! In-Reply-To: <199812041354.PAA08013@ozone.fmi.fi> from "Kari E. Hurtta" at "Dec 4, 1998 3:54:40 pm" To: hurtta+elm@ozone.fmi.fi Date: Fri, 4 Dec 1998 07:56:34 -0600 (CST) Cc: yk@info.dgtu.donetsk.ua, hurtta+elm@ozone.fmi.fi, freebsd-bugs@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (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 > Kevin Day: > > > > To add to this... Just receiving your message crashed my elm. :) > > Decoding on encoding someway corrupt memory: > I just received this response from the elm author: Subject: Re: Elm crash bug To: toasty@home.dragondata.com (Kevin Day) Date: Fri, 4 Dec 1998 08:51:18 -0500 (EST) Reply-To: syd@myxa.com well known, elm uses fixed length buffers, that is why we wanted a rewrite of the base elm code, which won't happen, this bug will probably never be fixed. -- Sydney S. Weinstein, CDP, CCP Former Elm Coordinator - Current 2.4PL25 Myxa Corporation Current Elm Coordinator: elm@myxa.com syd@Myxa.COM or dsinc!syd Voice: (215) 947-9900, FAX: (215) 938-0235 Welcome Page: http://www.myxa.com Elm WWW: http://www.myxa.com/elm.html Kevin Day To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 06:04:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA03143 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 06:04:14 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ozone.fmi.fi (ozone.fmi.fi [193.166.223.16]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA03112 for ; Fri, 4 Dec 1998 06:04:03 -0800 (PST) (envelope-from hurtta@ozone.fmi.fi) Received: (from hurtta@localhost) by ozone.fmi.fi (8.9.2.Alpha2/8.9.2.Alpha2/test/1998-04-28) id PAA08013; Fri, 4 Dec 1998 15:54:40 +0200 (EET) From: "Kari E. Hurtta" Message-Id: <199812041354.PAA08013@ozone.fmi.fi> Subject: Re: [BUG ?] Segment Violation signal! In-Reply-To: <199812041336.HAA13491@home.dragondata.com> from Kevin Day at "Dec 4, 1998 07:36:13 am" To: toasty@home.dragondata.com (Kevin Day) Date: Fri, 4 Dec 1998 15:54:40 +0200 (EET) Cc: yk@info.dgtu.donetsk.ua, hurtta+elm@ozone.fmi.fi, freebsd-bugs@FreeBSD.ORG Reply-To: hurtta+elm@ozone.fmi.fi X-Mailer: ELM [version 2.4ME+ PL50+ (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 Kevin Day: > > To add to this... Just receiving your message crashed my elm. :) Decoding on encoding someway corrupt memory: (dbx) up rfc1522_decode_word:1437 base64_decode (&state_in,state, strlen (encoded), TRUE); (dbx) print *state struct out_state { magic = 64258 displaying = 0 prefix = (nil) filter = 0x47adec u = union { file = struct { fpout = 0x7fff09b4 } string = struct { outbuf = 0x7fff09b4 = "[inet-admins] [" outwritep = 0x7fff09c3 = "" outbufsize = 2560 } } } (dbx) down base64_decode: 160 state_putc(ch,s_out); (dbx) print *s_out (dbx) down state_putc: 569 switch(s->magic) { (dbx) print *s (dbx) / Kari Hurtta To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 06:07:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA03543 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 06:07:59 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ozone.fmi.fi (ozone.fmi.fi [193.166.223.16]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA03533 for ; Fri, 4 Dec 1998 06:07:53 -0800 (PST) (envelope-from hurtta@ozone.fmi.fi) Received: (from hurtta@localhost) by ozone.fmi.fi (8.9.2.Alpha2/8.9.2.Alpha2/test/1998-04-28) id QAA08065; Fri, 4 Dec 1998 16:01:06 +0200 (EET) From: "Kari E. Hurtta" Message-Id: <199812041401.QAA08065@ozone.fmi.fi> Subject: Re: [BUG ?] Segment Violation signal! In-Reply-To: <199812041356.HAA18428@home.dragondata.com> from Kevin Day at "Dec 4, 1998 07:56:34 am" To: toasty@home.dragondata.com (Kevin Day) Date: Fri, 4 Dec 1998 16:01:06 +0200 (EET) Cc: hurtta+elm@ozone.fmi.fi, yk@info.dgtu.donetsk.ua, freebsd-bugs@FreeBSD.ORG Reply-To: hurtta+elm@ozone.fmi.fi X-Mailer: ELM [version 2.4ME+ PL50+ (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 Kevin Day: > > Kevin Day: > > > > > > To add to this... Just receiving your message crashed my elm. :) > > > > Decoding on encoding someway corrupt memory: > > > > I just received this response from the elm author: > > > > Subject: Re: Elm crash bug > To: toasty@home.dragondata.com (Kevin Day) > Date: Fri, 4 Dec 1998 08:51:18 -0500 (EST) > Reply-To: syd@myxa.com > > well known, elm uses fixed length buffers, that is why we wanted a > rewrite of the base elm code, which won't happen, this bug will probably > never be fixed. That is readon, why I have on my ME+ code bound checking when writing buffers. But there of course may be some places which I have missed... (just replacing strcpy:s, strcat:s and sprintf:s is not enough.) Note that that crash did not occured on official elm, but on my ME+ version. In officail version do not even have that mime decoding code... / Kari Hurtta To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 06:10:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA04050 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 06:10:29 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ozone.fmi.fi (ozone.fmi.fi [193.166.223.16]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA04042 for ; Fri, 4 Dec 1998 06:10:22 -0800 (PST) (envelope-from hurtta@ozone.fmi.fi) Received: (from hurtta@localhost) by ozone.fmi.fi (8.9.2.Alpha2/8.9.2.Alpha2/test/1998-04-28) id QAA08198; Fri, 4 Dec 1998 16:09:43 +0200 (EET) From: "Kari E. Hurtta" Message-Id: <199812041409.QAA08198@ozone.fmi.fi> Subject: Re: [BUG ?] Segment Violation signal! In-Reply-To: <199812041354.QAA20204@aaz.links.ru> from "Aleksandr A.Babaylov" at "Dec 4, 1998 04:54:44 pm" To: babolo@links.ru (Aleksandr A.Babaylov) Date: Fri, 4 Dec 1998 16:09:43 +0200 (EET) Cc: hurtta+elm@ozone.fmi.fi, freebsd-bugs@FreeBSD.ORG Reply-To: hurtta+elm@ozone.fmi.fi X-Mailer: ELM [version 2.4ME+ PL50+ (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 Aleksandr A.Babaylov: > Kari E. Hurtta writes: > > Aleksandr A. Babaylov: > > > > > What you are trying to say? > Sorry, my error when investigate original letter. > pine affected too Not very odd. On subject there is longer encoding word than is allowed on specification: =?koi8-r?B?UmU6IFtpbmV0LWFkbWluc10gUmU6IFtpbmV0LWFkbWluc10g0NLPwszFzcEg0yDbxcrQyc7Hz80gws/M2NvFIDEgzyDEzs/KINDPxNPF1MkgzsEgz8TOz80gyc7UxdLGxcrTxQ==?= maximun length for excoded word is 75 characters (or something similar.) / Kari Hurtta To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 06:49:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA07862 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 06:49:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from ozone.fmi.fi (ozone.fmi.fi [193.166.223.16]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA07851 for ; Fri, 4 Dec 1998 06:49:14 -0800 (PST) (envelope-from hurtta@ozone.fmi.fi) Received: (from hurtta@localhost) by ozone.fmi.fi (8.9.2.Alpha2/8.9.2.Alpha2/test/1998-04-28) id QAA09132; Fri, 4 Dec 1998 16:46:03 +0200 (EET) From: "Kari E. Hurtta" Message-Id: <199812041446.QAA09132@ozone.fmi.fi> Subject: Re: [BUG ?] Segment Violation signal! In-Reply-To: <199812041227.OAA26469@info.dgtu.donetsk.ua> from Yury Yaroshevsky at "Dec 4, 1998 02:27:08 pm" To: yk@info.dgtu.donetsk.ua (Yury Yaroshevsky) Date: Fri, 4 Dec 1998 16:46:02 +0200 (EET) Cc: hurtta+elm@ozone.fmi.fi, freebsd-bugs@FreeBSD.ORG Reply-To: hurtta+elm@ozone.fmi.fi X-Mailer: ELM [version 2.4ME+ PL50+ (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 Yury Yaroshevsky: [Charset KOI8-R unsupported, filtering to ASCII...] > > Today, after run elm I'm received error message: > > [cross@yk] 2:06pm [~] > elm -f yk.err > > Reading in yk.err, message: 1 > > Segment Violation signal! > > > Emergency exit taken! All temp files intact! Try following fix: Index: README.ME+ =================================================================== RCS file: /data/cvsroot/mail/elmme+/README.ME+,v retrieving revision 1.16 diff -c -r1.16 README.ME+ *** README.ME+ 1998/12/01 15:57:01 1.16 --- README.ME+ 1998/12/04 14:43:20 *************** *** 37,42 **** --- 37,49 ---- by combination of both of these (readdatapercentinc and readmsginc) + - Fix incorrect bound checking on putc_so_string() + (state.c) + + - base64_decode was passing wrong buffer size to + state_getl + Problem noted by: Yury Yaroshevsky + Changes of Elm2.4ME+ PL50 (25) compared to Elm2.4ME+ PL49 (25) -------------------------------------------------------------- Index: melib/mime_decode.c =================================================================== RCS file: /data/cvsroot/mail/elmme+/melib/mime_decode.c,v retrieving revision 1.2 diff -c -r1.2 mime_decode.c *** mime_decode.c 1998/10/20 19:58:08 1.2 --- mime_decode.c 1998/12/04 14:39:17 *************** *** 111,117 **** if (bytes >= length) break; ! if ((len = state_getl (buf, VERY_LONG_STRING, s_in)) <= 0) break; bytes += len; --- 111,117 ---- if (bytes >= length) break; ! if ((len = state_getl (buf, sizeof buf, s_in)) <= 0) break; bytes += len; *************** *** 260,266 **** if (bytes >= length) break; ! if ((len=state_getl (buf, VERY_LONG_STRING, s_in)) <= 0) break; bytes += len; --- 260,266 ---- if (bytes >= length) break; ! if ((len=state_getl (buf, sizeof buf, s_in)) <= 0) break; bytes += len; Index: melib/state.c =================================================================== RCS file: /data/cvsroot/mail/elmme+/melib/state.c,v retrieving revision 1.2 diff -c -r1.2 state.c *** state.c 1998/10/20 19:58:08 1.2 --- state.c 1998/12/04 14:18:30 *************** *** 553,559 **** if (res < 0) /* Destroy char */ return EOF; ! if (s->u.string.outbuf - s->u.string.outbuf < s->u.string.outbufsize-1) { *s->u.string.outwritep++ = res; *s->u.string.outwritep = '\0'; return res; --- 553,559 ---- if (res < 0) /* Destroy char */ return EOF; ! if (s->u.string.outwritep - s->u.string.outbuf < s->u.string.outbufsize-1) { *s->u.string.outwritep++ = res; *s->u.string.outwritep = '\0'; return res; / Kari Hurtta To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 07:29:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA12320 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 07:29:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA12313 for ; Fri, 4 Dec 1998 07:29:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA09383; Fri, 4 Dec 1998 07:30:00 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA12299; Fri, 4 Dec 1998 07:28:57 -0800 (PST) (envelope-from nobody) Message-Id: <199812041528.HAA12299@hub.freebsd.org> Date: Fri, 4 Dec 1998 07:28:57 -0800 (PST) From: jose@we.lc.ehu.es To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: bin/8963: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8963 >Category: bin >Synopsis: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) >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 Dec 4 07:30:00 PST 1998 >Last-Modified: >Originator: José Mª Alcaide >Organization: Universidad del País Vasco - Dept. de Electricidad y Electrónica >Release: 3.0-RELEASE >Environment: FreeBSD marrajo.we.lc.ehu.es 3.0-RELEASE FreeBSD 3.0-RELEASE #0: Mon Nov 9 18:35:05 CET 1998 root@marrajo.we.lc.ehu.es:/usr/src/sys/compile/MARRAJO i386 >Description: $ /sbin/ldconfig -r | fgrep term 7:-ltermcap.2 => /usr/lib/libtermcap.so.2 $ cd /usr/lib $ ls -l libterm* -r--r--r-- 2 root wheel 18522 17 oct 18:59 libtermcap.a lrwxrwxrwx 1 root wheel 15 9 nov 17:01 libtermcap.so -> libtermcap.so.2 -r--r--r-- 1 root wheel 15108 17 oct 18:59 libtermcap.so.2 -r--r--r-- 2 root wheel 19760 16 oct 18:06 libtermcap_p.a -r--r--r-- 2 root wheel 18522 17 oct 18:59 libtermlib.a lrwxrwxrwx 1 root wheel 15 9 nov 17:01 libtermlib.so -> libtermcap.so.2 -r--r--r-- 2 root wheel 19760 16 oct 18:06 libtermlib_p.a It's obvious: there is no libtermlib.so.2, so it's not referenced in the ldconfig's cache. >How-To-Repeat: See above. >Fix: The problem resides in the Makefile for these libraries. The workaround, however, is simple: cd /usr/lib ln libtermcap.so.2 libtermlib.so.2 rm libtermlib.so ln -s libtermlib.so.2 libtermlib.so ldconfig -R >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 Dec 4 08:59:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA23520 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 08:59:28 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA23502 for ; Fri, 4 Dec 1998 08:59:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA14174; Fri, 4 Dec 1998 09:00:01 -0800 (PST) Date: Fri, 4 Dec 1998 09:00:01 -0800 (PST) Message-Id: <199812041700.JAA14174@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Garrett Wollman Subject: bin/8963: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/8963; it has been noted by GNATS. From: Garrett Wollman To: jose@we.lc.ehu.es Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: bin/8963: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) Date: Fri, 4 Dec 1998 11:50:17 -0500 (EST) <> Synopsis: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) There is no need for a libtermlib.so.2: wollman@khavrinen(758)$ objdump --all-headers /usr/lib/libtermlib.so | fgrep SONAME SONAME libtermcap.so.2 -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 09:21:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA26240 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 09:21:19 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from fast.cs.utah.edu (fast.cs.utah.edu [155.99.212.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA26233; Fri, 4 Dec 1998 09:21:16 -0800 (PST) (envelope-from vanmaren@fast.cs.utah.edu) Received: (from vanmaren@localhost) by fast.cs.utah.edu (8.9.1/8.9.1) id KAA14050; Fri, 4 Dec 1998 10:21:00 -0700 (MST) Date: Fri, 4 Dec 1998 10:21:00 -0700 (MST) From: Kevin Van Maren Message-Id: <199812041721.KAA14050@fast.cs.utah.edu> To: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/8928: 450NX-based computers only probe the first PCI bus Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just a couple of things: The 2.2-STABLE patches have been tested (on an IBM 7000 M10), and they do work. The IBM allocates a PCI bus for every expansion slot in the system, in addition to the 3 busses (0-16 are "used"). The Dell PowerEdge 6300 also sets up the MIOC registers "wrong". However, the Dell just programs the "highest used bus number" to 255 on the last PXB. So the PCI code probes all 256 possible busses... So if (subordinatebus == 255), it should probably be set to (NBUS-2) for SMP, and presumably something "reasonable" otherwise. I can't tell how many "primary" PCI busses there are in the computer, but (because of the IBM 7000) that doesn't help much. I can read the lowest PCI bus number per PXB, but there is no easy way to infer the highest buds number. Perhaps we should just read the device id for every device on every PCI bus and program the subordinatebus to the highest bus number on which we found something. Yuck. Why is the BIOS on every 450NX-based Xeon screwed up? The intel bios didn't even bother to config the bus if it thought it was empty. Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 09:29:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA27636 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 09:29:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA27631 for ; Fri, 4 Dec 1998 09:29:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA16056; Fri, 4 Dec 1998 09:30:00 -0800 (PST) Date: Fri, 4 Dec 1998 09:30:00 -0800 (PST) Message-Id: <199812041730.JAA16056@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Kevin Van Maren Subject: Re: kern/8928: 450NX-based computers only probe the first PCI bus Reply-To: Kevin Van Maren Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/8928; it has been noted by GNATS. From: Kevin Van Maren To: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Cc: Subject: Re: kern/8928: 450NX-based computers only probe the first PCI bus Date: Fri, 4 Dec 1998 10:21:00 -0700 (MST) Just a couple of things: The 2.2-STABLE patches have been tested (on an IBM 7000 M10), and they do work. The IBM allocates a PCI bus for every expansion slot in the system, in addition to the 3 busses (0-16 are "used"). The Dell PowerEdge 6300 also sets up the MIOC registers "wrong". However, the Dell just programs the "highest used bus number" to 255 on the last PXB. So the PCI code probes all 256 possible busses... So if (subordinatebus == 255), it should probably be set to (NBUS-2) for SMP, and presumably something "reasonable" otherwise. I can't tell how many "primary" PCI busses there are in the computer, but (because of the IBM 7000) that doesn't help much. I can read the lowest PCI bus number per PXB, but there is no easy way to infer the highest buds number. Perhaps we should just read the device id for every device on every PCI bus and program the subordinatebus to the highest bus number on which we found something. Yuck. Why is the BIOS on every 450NX-based Xeon screwed up? The intel bios didn't even bother to config the bus if it thought it was empty. Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 13:53:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA25121 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 13:53:11 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA24944; Fri, 4 Dec 1998 13:52:26 -0800 (PST) (envelope-from archie@FreeBSD.org) From: Archie Cobbs Received: (from archie@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA27608; Fri, 4 Dec 1998 13:53:06 -0800 (PST) Date: Fri, 4 Dec 1998 13:53:06 -0800 (PST) Message-Id: <199812042153.NAA27608@freefall.freebsd.org> To: sja@tekla.fi, archie@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: kern/8280 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Typos in kernel: APM, matcd, UDMA+PIIX4 State-Changed-From-To: open-closed State-Changed-By: archie State-Changed-When: Fri Dec 4 13:52:36 PST 1998 State-Changed-Why: Patches were applied.. thanks!! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Dec 4 13:59:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA25789 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 13:59:22 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA25782 for ; Fri, 4 Dec 1998 13:59:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27992; Fri, 4 Dec 1998 14:00:01 -0800 (PST) Received: from wrath.cs.utah.edu (wrath.cs.utah.edu [155.99.198.100]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA25277 for ; Fri, 4 Dec 1998 13:54:51 -0800 (PST) (envelope-from sclawson@cs.utah.edu) Received: from moab.cs.utah.edu (moab.cs.utah.edu [155.99.212.88]) by wrath.cs.utah.edu (8.8.8/8.8.8) with ESMTP id OAA18533 for ; Fri, 4 Dec 1998 14:54:27 -0700 (MST) Received: (from sclawson@localhost) by moab.cs.utah.edu (8.9.1/8.9.1) id OAA10654; Fri, 4 Dec 1998 14:54:26 -0700 (MST) (envelope-from sclawson@cs.utah.edu) Message-Id: <199812042154.OAA10654@moab.cs.utah.edu> Date: Fri, 4 Dec 1998 14:54:26 -0700 (MST) From: Stephen Clawson Reply-To: sclawson@cs.utah.edu To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: kern/8965: missing wakeup in vfs_syscalls.c:dounmount Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8965 >Category: kern >Synopsis: missing wakeup in vfs_syscalls.c:dounmount >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 Dec 4 14:00:00 PST 1998 >Last-Modified: >Originator: Stephen Clawson >Organization: University of Utah >Release: FreeBSD 3.0-CURRENT i386 >Environment: I'm running on a dual Pentium II/350 using the SMP kernel. 102 2:37pm ibapah: ~> uname -a FreeBSD ibapah.cs.utah.edu 3.0-CURRENT FreeBSD 3.0-CURRENT #7: Fri Dec 4 14:03:40 MST 1998 sclawson@ibapah.cs.utah.edu:/usr/src/sys/compile/SMP i386 >Description: A process tries to unmount a filesystem (in my case this is amd and it's an nfsv2 filesystem) and manages to get far enough into dounmount that it sets the MNTK_UNMOUNT flag in the mountpoint's mnt_kern_flag field. Another process (in my case netscape) tries to stat a file that's on that filesystem. Netscape blocks in vfs_busy because MNTK_UNMOUNT is set. However when amd runs again it gets an error and exits dounmount prematurely. It clears the MNTK_UNMOUNT flag and generally cleaning up, but dosen't call wakeup on the mountpoint, causing netscape to hang since it's in an un-interruptable sleep. =( Having a hung netscape isn't so bad until other things start hanging because of the locks that it still holds. =) >How-To-Repeat: Leave a netscape running while a hyperactive amd tries to continually unmount and remount the filesystem that your netscape cache is on. At least that's what does it for me. The timing is weird on this one, since it'll only happen if you're trying to stat a file on a filesystem that's being unmounted in which both the VFS_SYNC and VFS_UNMOUNT calls fail in dounmount. >Fix: Add in the missing wakeup. =) diff -c -r1.110 vfs_syscalls.c *** vfs_syscalls.c 1998/11/03 14:29:09 1.110 --- vfs_syscalls.c 1998/12/04 21:03:25 *************** *** 494,499 **** --- 494,501 ---- mp->mnt_flag |= async_flag; lockmgr(&mp->mnt_lock, LK_RELEASE | LK_INTERLOCK | LK_REENABLE, &mountlist_slock, p); + if (mp->mnt_kern_flag & MNTK_MWAIT) + wakeup((caddr_t)mp); return (error); } CIRCLEQ_REMOVE(&mountlist, mp, mnt_list); >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 Dec 4 14:29:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA29710 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 14:29:21 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA29698 for ; Fri, 4 Dec 1998 14:29:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29837; Fri, 4 Dec 1998 14:30:00 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA29548; Fri, 4 Dec 1998 14:27:23 -0800 (PST) (envelope-from nobody) Message-Id: <199812042227.OAA29548@hub.freebsd.org> Date: Fri, 4 Dec 1998 14:27:23 -0800 (PST) From: jason@engr.uky.edu To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: bin/8966: yp_mkdb does not accept standard automountd-formated source file. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8966 >Category: bin >Synopsis: yp_mkdb does not accept standard automountd-formated source file. >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 Dec 4 14:30:00 PST 1998 >Last-Modified: >Originator: Jason Swank >Organization: University of Kentucky >Release: 2.2.7 >Environment: FreeBSD blackbird.ecc.engr.uky.edu 2.2.7-RELEASE FreeBSD 2.2.7-RELEASE #0: Wed Jul 22 08:48:29 GMT 1998 root@builder.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: In addition to an amd-style map, I need to also serve an automountd-style map for some HP-UX and Solaris hosts. However, I could not get yp_mkdb to create the automountd NIS map correctly-- it returned the error: yp_mkdb: bad character at start of line: jason The input file for the map were valid, i.e. there were no odd characters at the beginning of any lines. Specifically, I have two text files as sources for the two maps: "auto.amd" for amd and "auto.home" for automountd. The "auto.home" format is exactly that found with NIS servers under Linux, HP-UX, Solaris, Sun-OS, IRIX as well as page 329 of O'Reilly's "Managing NFS and NIS". # cat auto.amd jason host!=blackbird;rfs:=/users1;rhost:=spitfire;type:=nfs;sublink :=jason;opts:=rw \ host==blackbird;type:=link;fs:=/users1;sublink=jason # cat auto.home jason -rw,rsize=1024,wsize=1024 blackbird:/users1/jason After spending several hours trying (seemingly) everything else, I reversed the options of the data field to read: "rsize=1024,wsize=1024,-rw" and now all is well. Basically, this is more of a very non-standard, non-documented, poorly-errored annoyance than a serious bug. (According to the yp_mkdb manpage,any ASCII data can be used as key or data for db style databases). >How-To-Repeat: Include a "-" as the beginning of the data entry for any NIS database. >Fix: (possible): Add "BUGS subsection to the yp_mkdb man page which reads: BUGS yp_mkdb seems to have a problem coping with some non-alphanumeric characters as the first character of the data element in the inputfile. >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 Dec 4 17:29:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA17752 for freebsd-bugs-outgoing; Fri, 4 Dec 1998 17:29:21 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA17746 for ; Fri, 4 Dec 1998 17:29:20 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA08919; Fri, 4 Dec 1998 17:30:00 -0800 (PST) Date: Fri, 4 Dec 1998 17:30:00 -0800 (PST) Message-Id: <199812050130.RAA08919@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: "Kevin T. Van Maren" Subject: Re: kern/8965: missing wakeup in vfs_syscalls.c:dounmount Reply-To: "Kevin T. Van Maren" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/8965; it has been noted by GNATS. From: "Kevin T. Van Maren" To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/8965: missing wakeup in vfs_syscalls.c:dounmount Date: Fri, 4 Dec 1998 18:20:23 -0700 (MST) Steve told me this was fixed in OpenBSD version 1.40, and is also fixed in NetBSD. Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 5 02:09:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA25758 for freebsd-bugs-outgoing; Sat, 5 Dec 1998 02:09:24 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA25750 for ; Sat, 5 Dec 1998 02:09:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA06206; Sat, 5 Dec 1998 02:10:01 -0800 (PST) Received: from WP16PORT17.highway.telekom.at (WP16PORT17.highway.telekom.at [195.3.66.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA25509 for ; Sat, 5 Dec 1998 02:04:26 -0800 (PST) (envelope-from root@WP16PORT17.highway.telekom.at) Received: (from root@localhost) by golem.bi (8.9.1/8.8.8) id KAA67807; Sat, 5 Dec 1998 10:57:23 +0100 (CET) (envelope-from root) Message-Id: <199812050957.KAA67807@golem.bi> Date: Sat, 5 Dec 1998 10:57:23 +0100 (CET) From: Martin.Birgmeier@aon.at Reply-To: Martin.Birgmeier@aon.at To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: bin/8971: Update to bin/8782: Improved functionality for find(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8971 >Category: bin >Synopsis: bin/8782: Improved functionality for find(1) >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: Sat Dec 5 02:10:01 PST 1998 >Last-Modified: >Originator: Martin.Birgmeier@aon.at >Organization: MBi at home >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD 3.0-CURRENT >Description: See bin/8782 >How-To-Repeat: See bin/8782 >Fix: begin 644 find-patches.FreeBSD-3.gz M'XL(`,,!:38``^P\:W?:2+*?R:]H>\_&8`O,PW;\V&0OXY#$=VSP-60FV9DY MC"P$:",D5A*QF4GN;[_UZ)9:(&0YD\E^V)M#C-1=5=U=755=5=U-SW.7PO%$ M[5341O;<]D9/SOW9S/=$N+@=.8%M17[@V.&IV%^$P7X86/A=NW6\_;'CC?;/ M?^@+TQN)&CX]&3GCL:A:&V"OS`_VV'%M`%:/3W9W=Q^`+@T6MOAOTQ/-NF@T M3@_JIXUGHG%R_#HAO!G9CKX/'-""[[\N1V8P$=Z9#`F6',\RUV,;/&WVW!4 MFP?^I#;[\((&UC`:+0$/U:_?PXD=C<``Y4 MG%]VVMU7%Y>=_M[SF*(EEK7(O*U-$>#59?LU5E8O:K5]^$R\13S#UL=PWW5N M1?7EF_8/G>%Y#TB]'KX!-/C4KMN#-Z%#BW"CV7B7L"/DDG M?C1=]TDOD7;%S1J(]^0!P;7O(SOP:E.0-O68([@*I/0J<%@@#T3CV6GKX+11 MUP4WAM,$MU$_;1W#9[/@'AP9Q['HAE&PL"*:FC-X_>@[HY*8!XX7N;XW$Q@N0CM0$>3`#`IUY?M;FG7&IHSX)\& M@0!:;>3,[,W55BZRE8\\`G&/9#V.=+5V'DTW5=KWP%Y]6,`'&/0Z$%B\-%P: M9.R[KG^7;@74TQF+K1%(DV>/RL-AUXZ^Z[\<#BLZ8A@MYVMC`U0PN,Y8`YP$ M_F*^F0>.MYAMKG4=[T.84QUNXH]GYC'>L^_24K%2[6N=SJ#M)T*U7CLWU:QE MD09;E#-<$O2-A+&ROKEVX6T4I=#Y+8<;61.9U*XJ4+KV?F1_W-0J&%YO;@:V MMPG`3AP^8+U4B,HY"7B1#4*@1-!+BH&P!"P,#XXM21MM7%)9\@,+` M9#'S@!^TGTR'#.@#='1C2EADF(IV%6UK45BRM(6!"T.B'2X,BU:Y,##;Z,+0 MJ#`%@=%&%^T&Z7!1X-"9S=VBTHXVNRAADJ2"L,2(@K!HW1^`A0]R8*R;$\8W MQ*M!O],=*+,LP31+D@=GNG?F,AR"#;0?!M;-2!Z<9A3RP>9!`3#=;.3":9J> M!Z?K=AZS=7+S. MK*-X-ZLBL/^IEU,2(3\NIM1"`T)9?LB)B1G@H8A80J43.:WZ::.1D\@Y;!J- MPV<<$5/B!`N.ZLJ7O#-#=`H#XB=HD3>R1P*BE<@7T=06'@Q?C!>N*\`@+R([ M%""ICD^\Q]Q".Q`>?*`2`E-N"FCY&4V9(,`!`]>8, MB"%!A47..%)'81B`W1;@!6&/D.4V./F6+6[MZ,X&=Q^+B;AKAI$P+'_,S(+E MUYO0*[6)X<$BI-A@[`$\*1YV$@XUP09:R8R=C%.IL@)A2G" MY>S6=QU+X*IB4"7:20JS?0;&&GOT$\\$<+2Z%!U/]S=31QW!"Q MD]F8%9J-]%Q0@/E%0COS`01Z20Q_M.@VCX'?QYJ2-T\:1JL5BZ[JW\J0TGVT M%@'T,.*ZJ8GS-/,#6R"3H7A#-X&CGA1O0A0Z#ZF]=^]5BU#SV`9U92Y+SK^# M[^?RV83OBJ'$>".8Q6`0J*^/(`M^AO`T-A;&35UY7ZPK[Q_9E?=K7?''^)IB M\@5HYFCD(#;8F'$&:B2$`8\P`D_#AD=4"R^,;'.$"ZP=@"*!51,T!;RI(3!? M+<*Y;25=E)J)J@4TT/X%8>3[J$=(_ET@K(^A:'#ONGY$PA&EU&4VX];M?RV< MCZ:+TQSY.0K%KMB*H!(+;FW,=82HU#!)"^^#Y]_!-T"G\``I\QPBL8+*L'?FIG!4M@PJ(6)]AV-#?<9 M2"&=6R="KB.![81WBSDY%UTJ*-$1O+EZYHAN23PFE&U0 M(T;1^1A3EQU,4UVG2-R!56.E,PBLKADIXRQWQT,4W,"H5BZ2^0^=R)I1Q-PEC@J2[LY/33^J?- M(D>^ZY.)B!<19PW#S!4X99ZQ%Q$L268P$NQJUS*5ZN"P91P<::[`8>/0.&P> MZRO1I2.V<2D38E^(G^VRB%4_BL!D56%.1952DG?>/Q&B(N3@MG$+C[+:T`>8 M/-6JQ!X([.R`TI),2BMLF6__KK]"#Q`U( M.EI3?03+N-.03IPP)_Y.TK6]`EV[([5Q/%16?:%P0EKZ@(9<_.*E1\T"@6&[ MH&^>+7M`L]]Q\6]_*OJ=CFA?]GMK`FD@`)6`E:!WW5RK6M?'J$HKN`/FV4Z8 M*D'1P_>50*C6R(JI9,WDMXS"U3!+%F.052"HLE0T9#T45%F%@BIK-:AJG![F M!56-NM%HQMN,);$+4H3>`6B<09X;K,P@!"P:@J;;Y_FTH35&V<8GE6U!>`A$4SX7,$Y8I5(;2R'1<*&8,%&1HG1H:;Z@J(7IB&+=7(I"LD^2ZH',8VX`ZICZR36^_\`-HV'@S)D M?2O>^O^:K-^#1E1B-%IUNE7'MGY(C+PASE42%16+8NUT3Y9V:;( M*FJ*ILJ&Y)UY8(#2%4AB#Y:01DLT6Z?UH],FF:)GNBE:.^\`IBCGO$/KQ%"1 M-ZRGNRSPM`=+4F[CAKA'[V1;NL-V]R6PJF$@WTJ`,%N$$>:Z_9BBMW>@+_>]KFN]SW]O>YTX^'TJ`+/U4A"UYT;ZL;U MS45WP`]ON]1:_^(?]*UZKJB^>]GY02$C4IVY=1[(8< MI^CCQ#B.,R9?>R+E(W&,G[7IE`4)W+D&QR.(7ZYC#M$<)X\XS>HMF6D\792> M=?G"$\\O/%/\3-//CRP!\ED]7"6]O-)ZN28"\KFGTT9!4$\T:_P"XB`?8HF0 M[PIB52ZT64[/N'I!4>%GDA9^U$:LM8YB\Z!\9"G^X3/CF>9G'^,)@6?QB3C> M+BZ]&EYV^OW!FW:WU$P5O[[IM`>=FU(K5=KM=%[VOB\U6*#H5)#_`3NPIP') MV5XA>#7`R5:H\CP/2:X.@SQ806P/+COM_D!A4CBDMRA>#7&BA^U28[WPG(B5 M:)<`G=TSJ0NPKGQ$9Y8]8%[O-0W"/V<2$M>_%5TK+3QD/#MC$V3R#G9#28L@'.>2NX-EJ M*6)RX6<8(J]Y'F9,L2%7-03M8)FP_`7P1W;''X\1R-=[PZE?/-4C@3#80*A( MAZ((!,-(>Y-('K>,D[I:BS[3QN^9-MD2*R*XX)"BF/ MLI)2%NL:[G^P/=8!>HRU&XPN[SF6=Y6366$X?HT/`I^*E[WNS@"/#`]Z:+>V M&%V-L0>K2+=3*M7OZPW"]WQA8;0?8'(SL$>KX/_HW/0(O,F&QPS#4TQQ33&O MM`+;OGG]`\$>:+#H"..Y3.CH#%,"%)5D(%X3YK&&N\A9KV%!!=H_RM_&2HK-=KE`H"W4>KD=Y--['--0NJ*%V.W]F-@(U>9R%8&4C#`"A4<]"B!Z4H=48*W,C7M9D M!F69F_`U_Z$P+3G:7]->\L*U&(AN5\B0K7%T>MB$>"R5/4H@TV';P=%I(^^8 M>LLX.$Z\-WP]B9VW^,!^N`SW<4NV-GVQ5GYG.IGE,USML6)OI0(%Z98Q4DAV M$*S2@2+/Q\(-CN=14TOP'AM'\4:C3F6;IPQSMKCIXV%P`N'^9!CYO):E3IP: M0KHWVA.?0I7.R,2F921U0A??XZ.M-#ZP.?X=XVGKT7GO"AW[LFF(VXKXO<3_ M?D9I#>\S\S]OVY6F,F<681J,)'D$U)[@3'9B.BV8_WLW9-J2%-,3'.6<[,,=D>R-K6B%BN_0, M$1]]F\%/]5\H;1+8T2+P1)DL%&%^5J$$_!&[M!W.;AOHJH?;=Y0-8R<5F1:* MLC13TMA@%HU.0U=XNS[`1+7!U)R:70,JM-D"F+B3(@,6A@IL$GF@>B*F_ M".(##G(_@O898:BA`(9/F5851ALN:-,&=&>[RB>PJXUM<>Y3)K.*Y@AK1/9]'Q(+RF,][!A7M08PG@ZJB_082!U+I4E MQ;T]>E7\X=8_4^0LAU3A$,$%A-(;6;AGCKN8R5'H81@%P*W,;?$F.Y2 MD6$V0.NB8$F:R)Y;G,%6#AP!8`FYG_+TH%PZ8$F0UQ7BE:`,93!AA`5F/PJ' MJ!_SZHLPDI>T]A`<,XUXC@EG=A^>#,'KA,8^J?#<+<#A*V"H!7A`7]<1V3>& ME+EJ+$C.-XJGS\7_PH@@M.@/V@/5:;XZ*`>2PZ]%!,>ZOV?*3V<-I=\*BX_"%U0@+"PL`19?]3D M9)QC9%P^S)AYE/&1ALCZ,D.TE2E16X4ERGJ$(=IBWF[ILF1M,$1;W+>T*&T] M7I3.I2&R'F.(K,*&Z'R#(8J'FLA0EA7:^O9"M&:;M@1'T;$@K=NFK;0D;:U) MTM9&22INFZRO8INL/-M4_1H"I6R3]2C;9!6W3>QGL^ZK#%(P6_B`U59RTV-MY^3./FES5>O('98QO(5&N: MO)4P<&L]#-Q:"P.%'@9Z0(52?BMF``"HBLYG9(6<9X_W8E1P2,GB)%94V5WJ M*\2#'!KYPO)G>%Y)U&HUE0Z&^558:H95$I8&SV:'JY['DD>$8P'90*"]F4"[ MF$738U]#$/?R[5J*'RGK)F?AXZU(O/]:'.E8VVV5QK4(U9B(=,@ MNM'Z$P*%/\=J%5BO_VS;]:@N?+D%*]A,MAVC^?SCA@QS+!L,&5;]OR'[4D/& MR:NO:LCDC][DV3`^`5\3])-&8'.B$(P8'I6:^A'Y._BK28Z'VWM@90)[8@8C M3+FM>SG0HE#QM*!J$SH>DYT1+L,N:CDS[(&[6J+=Z[Y2)_/):`V'I9 M%W21B'D%L6@WG']LI%R)M[<);VL=\?K-^_[%>?M2H%5 M>#<2KS=YH%=+0[C^A"FH_=\D^2Q%YA1O0(&6P80HHA/H,O+)'@'>=D5CUK4? MX25"I"T67FB.;3!1(Y\&B2O?/`*Y<<%D?N1K%"%I;.C;'^U@98*G0>:,[>SO M5,26/$R\H<.<-M>:$7.M7\1PZ-DV'2P#_+56]!$-4!Z0OW3/PIG-%I%YZZI; M2F,1+#P/)\X,1>#[D3:(F^_`1/%U=7;P?M[RX[E8IX M^C01@7P2_9A$?Q.)"3!DX8S*NI#+^PY9[(V7%R&RER'9-ACLC0/0F!?,\'>P MM%__,T`JZ*@53OB23W20=4W8UA]>]%]>W&0/'8^#5=3JC-#40L9(*N)OH)=/ MGPK:H46!Z71[@\[5]>`],Z%T9P9XL%K)#!/Z:UC9-O212W%87;&Q:1[)IK:S M6Y$X>B3I>KBAG6A]:>@SE.#,D MCY>G?LFE4LGP"'ZJTK'53Z+J?_A%+"+'Q67N)]R41*_I%W&6X2R(U8!'LF<4 M$^`.X4;@;W;@R[U$,([VO1/):*8FR?!-$W6++KY->3\/P*G`0`:O`MHNR%ND M+B&&]LRQ?-?W:GCME'V7[=\_;PO?@A4*6O66=!G+`.\%;1\891OF0-YAUR,@ M=8FO)AT@K4K9JV6\_)U_8CVA<$[@S&/QXZ*#9F73(@6K%M[C*Z4'("\5"I[D/;; MA.`?ZDE[;73@OMDR6H?QCZH]2K0W&BL4["^W53FJ\&AU7E<(]0.._^FZ83`1 M/S#4?6PZXX,GV22+C!3>+=32N<4R)B7PB0G@)CY>]G1M1.I)I**,;[M#!-SHC.0>;I-BNV M/!C!PW]`P^6,L%A\%0W/7,Q.CHQ6(SYM#*HU<4(\6H.'TRR/?DRQ-*?S_O"7 M3P%Y2H3C_5;@5AF`Z3Z@S$W80U3CGZ#TES.QMP???&@H2<780Y`<`N":TO^U M]Z3-;1M+?J9_!:"M6*0-RN!-2NN7\LJ*X_=LRVO+B?8YKU04"[IXW(.*'JQ6%TNE@H$?1X))O#N)SH6 M8GU,A&7M(?&.-'/48]3@.>,- M^VA1F,X_%DLB*I9HM%PYO"=!Y2'^]/EH"\[EM(L_20[*UP@]Q(2C(P]K37#H-;1MT(;XH^R,"$I29:R&X%"Y7PQ%>#\PCM);,07Z*T,5P3D9( M=%VGK1!^D@N9QHM]E!<4.!'UN2<1/]Z;CL=XC(.N&QD]%(7"]MGKKT`5H]1T MI7B_W!%%;-`0V,%0]8&P5\!(1)B!RDT!^'N%YB0A`'OLD4`C#+Q+3#2!N55X MZ<=1=\(')3L$BJE09B48Q"4%G"VZ5U(N?V3+KG2$DC1*Z?0^$BW&I-0R,S3\ MV>&05!!A,/U(B(12*W4S2O70"+(/\!,&\&`FT=U2D%TF=!EMS$(`6QO8DBGF M$#=@,[5;+*N+0>DBR%_,%7E5=V9F9/!A9()!"=N8?PB>.4:(\=XY3Q9-X_VE<,,.K2"HN#!Z]!ZC4= M:^;"^\!3*=KQZ_3C7X2P`R&LU^&2U'$'!&$*#"C0@XQ@[#JNPR**Q@MO-5%) M,?SOZ2Q)OY:"7T7@CH/4U-MD$J.N/"'H8&`M+KH>3E<+0(N^MO5O<\W%;S+( M=1$MB910VAEUEZ064$).RKU(>RDLPHDT9I=#S%P4C?J.BS*.,.6S*CM3SI2#2*=2%^NSL^$_.8S\==G*=LJQG4VU6E)M'$#&F+,VU80IG' M-Q=RLCPW.=>'B$Y.ARO?=N.3!HKUE@FW;]]VE@G_ZUDF5I-?5]T1YQ>[/7)X'2DG17W-*;8AX::H^-,FGJ_(X$CZ.[*Z4'S/MS0FW]:8?%MC MBK&DK34FJ0?DU(7$G9-4ASRA#AF/71H1N_GFU8C\5(W(OS6-R)?+V9]B(,EX M^)M47P"IY!E/I[*IVHC+CIBZXB?5%>X^35WQ#77%=Z@KODM=\6UU!1'U>F8I M:N_#?P76,HNN6./X#B.+8N`"0*L?=%O%:`DCQC!+^(;CAW5FQ`R\T'8A15#_ M,5/4DQ9 M&3+6RQ.^)4_X;GE"GKDI4H4@CH0#H] M_T^8-*T\X0+S=+$%#E&)^N"5I:YGZADB$#27^T4G`O`H6O??]Y&1S-Y7^,\O M^RKIG$M"BTWNY9-SS&+TXN253+9F+(ELHX$DC-[B`C-%@5$S,R5A_-7&]!PO M"?F7+RQ_^AN+EWY^\5)JR:1"-]I!P_#HOV&A5KFG^::'*3ND9(5[I(I/(@9> M)5(@/!3*198+BQ1+T(_EU>G3=R]?>W]XIB<+_\DN+OS]]/63_WX'SV53#QUP MWAS_^/RG$X1X:S=6WCG:U)*X81`YG4KR%)^H7+@25`Q79*?EI/`@W40H>]P3 MWCH*5B9*,B\EI+G1`B)W(/L5EKPF6ZNAQF%9'HK;2,6N&H<,;^RV1@(MUF(W ML(?S(_M$BB-`@"NH4>&A0`5L>:?>J-J&_L`8`#"C\K[%[K06+#!!,#O91HC1 M7V1OL<00Q?L*$F0NL0+WY1+0)E=B3G+Q$']A/Z!^]^*.J*KWDK$,!E8^]C0Z MR%\(!\4/0`5Z/WP/ZW.%)#%B-LM!<4_V\EW8_BWP1$O\PROR(_RW],N$7?60 MXJSW!Y[YTB".`D1WJI97JG^L2[.OMT&S[[2D9H_"97G]="_%IT?F@P&ZY-:S0J M0:.A;ZV_6+=`5MH2=9\C\_$=6CP3I/(+FV^*U%SD>AH>61\&*?QSA74S=C;P'AWIG\8JE@":'L#_M%^3U9AAX@*>4CLD%N%"FNBS/]K7 M5_^^\)>GL>UALO/1GKZ13`P-T>[(^$V/[>6K,Z!XHG<2<1/#8M0VS*P\F'GJ M8.9]3/J__6C>/#U]]>)_<@^'CEWKY)3E,SC5/ZPY!]-R^Q2!2)Q`5JJA,E>Z MO2)O*PH'QT&U,9B=[4]JZ%K9NC2![_5R%* M?O5:NI0CO`72-/*"YR5,-9K;H,W4\>2C3+&@ZXD3XGFHU77B-2LU MH-[J=I[@3HT5L^BJL_@J*_$`#;1(`S6.S2M)SK%K5X.2>88/Z'@5F7ROV#-K M/<%B"]A$(*.K.;Q)O)Z]NI"\S-S_N(TT':^[G`Y-4(;EF5+D!OV&-AT0N?;# M?=LRY^WQIK`R,YER:BAZ!!MO=,MA&\9[KV`)YQ=R"9KMRE9>TWFQ(`L)=CX%%-9LC#'0Q=6NI\#702JI'<<1RE:+ MMT>O'&=9-K+ETEZ;#>!`S7;,^\O`$"QE>YNID[@V`9?,-[CG=>NZ8VULIA.E8W'U:U@*%U MZNE8196/;Q.M1*D+46/96(217(2B2.Y>]>S0] M]>/&,/[MJ^!7KJ6-A:_3:+=%LU8()-VN*?')G5>"+(AH]TTZ([BBAN,'JKWQ M:>%WHT6F54\OK],C+&'&>\&XNRB)U%R^Y=,SWCDU5THFD$W3!,93<8UO-!57 M_J1N(N.%E>E"FH'3$EZ(137V<)R6BBN9V\U?EXK+=S&EES(5UWBC5%SC_*FX M7JY-Q86LBI'(D5H+?Z%_;@"'RCF2DY8)?\J$/V5I`B,2=9+Q:R`A+0Z1B34 MDR2D^ELOY+5`Z##N7#99CORKD;$8.XN/QMHEUTW\F"%`;JVH9BUV+GFO7:D' M[5KS!LUES/G_EB=1YP0+:O#&LR MPQJ,#$?2O>H.)PN1ZW_=L*H79Y8SCJ(>64&E:"QUX,F"2J)\2DGZ-M,;K`Y` M66:9M>25*W$3XW$7?)]9:Z$ MV"$G&^DI-K)NGZIRHYS]=.U^T@$UW_JR\6E2;P;MIJJMQU=I;,Y&4^X%!F.A M=;:H/)HD:XS]GF:"#U"7^-X+O4,OS6PPF;(%/I_MP&DJ4%59![(WE[M/NP%" M7*LN^7;^R6XRU\?:N3-]JK6XPS36H0;/\EC"C4PTZE?"V="+6 M8$V=R#)4X<]9.E&:O2I%)](9Y?+J1'Y"$:42LPGOE$[8AF5JW9*N)%?)6"1, MMD#/8X%[0G=*7MO M'/8,=T.GYT.<6G')BOB/B7KP9XK^(VKU/EA$RVTO<[AP^(#>K)QXR&.:MD\[ M2SM\;Y2S-.%C+0PZ#74*_HGV,6L;G;OHVL0-]W!W0X+8]34[#O"\3W?NZ+4I MCCAI'\3$3J-AN0K+OHL87/$80^IQSDP4ZJRS577B-+8_/6VAWD)N=G@PE M@_J']R3")-UJ>JJ<)`DJKO>:BKW@] M'?9+L]5R$;<0Y[O#(P.SF4(SQT4=%ZQ'WC07X6V)K6C!V#OA&N-VSK&GV*UY MY#OE2+Q1X[1S#]OMH!*&-4N:'KAFC-5'508S`ND5]W\)]XWG[MWT$VL2%DM2 M&K*GZ&=L9ZCV,RRYA9WY:N+PQ879A3C%CB5([S[%BC%!%G!H;$D1AYX[9)SD M<%T;5`DK-1A^U73`YP1O>"Y&R^)R'D5"`*,BSQ=O__'\=8D38%CVA"VI#T8I MJ,^]->]>L;B*@"Y*@PE@Y?-:R_"&OOD)Z-UX*'<#EQ?X9^]B@8F#(Z-2IG[6 MFUYCQ+<`IVQ"LVB"=K$)_M$;31>1^FLR71+$7-77,!:*.]R:VF^>LBMAO0'K MWLSP]\$(X+SN/OP[E83=5F!\^_R?A"KX6B$$BTJS^[U]K>E,,R]0L;&\0+W/ M56N54">ZH_X8?_K#:VR@@G&SS^=*V&C!DK4R?(5HR786T;`7MSM:?)FAB02^ M8TEM\\VQ!0\Y[!VV*9<4`ON%#++=WD[M3T]3[]WW0&WXX>59R:F6)7C?P M'Q;%#*K2#[/5,8J@S$=>GHX[T+UCD@_T;B!(P`@#RXZ4)I'DN#+V346^Q30`7C&G(TJZV@J^*Y5S;/+_I)Y,BN'AZ8*GB0#[YN](!F:=:K=V@`]C*C)1;9()@RKA/?9'+K+"B&+C5!E&3,[:BSCYA@)L:A;YDB,>X MK72,FPW-_,`(RH@7Q-)(N'4PH, ML[G13OB6FTNEX5\^)E6MMH!)U MV\9!\Z#JO7]]^O;Y^4&%2CO)3ZG4%_I@C.1!0$ZCT MU=!,#W3SD[@9?X_T:=^8?;.*]LVJ<0?HOL.)Y_(5N&.DN\0EBA3/EVD*F60&Q\2=A&P.[KNCDK%F5152T?>C-$>J=XVLU,SU]960]S: M2GO-A53.R7B/=>6.6YV06KIU>X6&U6JKJLG/HPS3$TR]ZO579*B9?<`D%54N MG3WI7V#%;!PTH"^N$=ZJ[!?W.7WI$).P3T`'6(J,_>C2VJ5$Y:_?,`B:&[K# MB:RH9"2XEL6T]TNZ-Q`R>]UY7V?*MV*)U*U`L23CAQ)4?`JJ#`8UO0HX[6;Q M0:E8*I4K)1&T$S^E].5"QOW*\8O3MR=IO2:QJ!HBEVMK!O&G7V9]8Z/6.'EK M0[_K]4JYUH%_8(!/7CT%;A+-X0"<'WAOAQ@@A\\PJ3\*_+WA$C/,J1'12G>I MAM_#)$N$.=S`G4[,R2Z52MJX?3IKW;?`T?P82_-M%\*EONIU.$&>L0?DTGFA M:V!2>6K^E;SBK=:;>!1TOC'NZ=OL4]PCHWDIAN!;K(L3P6HA')FUZCJ7C:^/ M8/J6F-$K85W->G/E=@YK"[.G\PS$/B7]:3JWT!I[&_9D'YZ4@X`9#4H"BYMX M2+:;WP069^U0Y4[VQTD\T[F3=C(7WTTJ-=B,6EW7`R8E!$>'EY]:+9'^:J%^ MA"/UI&>U4U'F[>Z@_-K13&OG-RA5Z'0R^HPU(@X.%5,XZ!U4:X"9SY^E_(K) MH%-^FD?_=OXR-9^"BHK1,`<]U\,/KH?3>ZB]>.6>]VBUF#]:S'OX>7`YG#Q" MP>31:''0\P[H@_8D':KP$MC?WU8N"F^[2^]I MU/.\AA>V#QNMPUK(,*[];W2"9B,98H#FX]G[2N-?0<(+/T@/VA!N9")G[G?- MT!AH MO\8[6"[O&UXO@Q(0+UUD2<_C!$D/8Z0(SRPB'(,D[NZ2?K%A011?2X-*DD9* MU']DT*,&*OPP'S+%`3$"N=4/*Z%)E0:D39N5#I!G.FU6:B#MZ?Q\N`4J=Z0( MJP=>/^Q'77+&FWH?NM>1][D[^8C"$MXF`O?W,&4*57?J\62;KS@#)F. M1E%OR1?8(%JM1DOL!)C6AVBN,D_"QZ,D0.^BIH%L_P$JY6@%RN,>OOW@PQX^+DL1 MPU8-O8N+UT6C/D>9!7GOU7\=\7!]] M/N!]L]\!FC=`"XO;>RSB0.+H[]Z>OQ<4"JQ@%0KLN%@HG%[\\^3-J?/'GS[">SW:3/S;)[YR0]"$=9?F#(]`A'&^NP)P=R'!M(+WL@ M/?6*8_F*7LHK^!*18,7-8D%>NCJ6CRXI!?#KLQ\9%AXY0*G.)D)2@5#<!T#Q6*T$AJ+[A1T945'"\91:B#RV!=D\GE[*(:.RIE8@5M%"PJ6GD^O M@:5Y7<]*U0LGXV+*146W@=YFAE%IQ-&]!Y.9T["TG/RR(U(FX!?A$ M;8$!*9+8%60ZO(+(0.?H="3@WE*'HX6#BD5&H8+(1V3@[3@;;\<*;U]*O!VG MX"UN%D%2;")Q%+SX<DVD?>Q0+?V+H@\4:*(.F*#"'QB;4!H.\> M659P/+`K'4/`*$:Q[?J%0Q4-_"S42+@?QBKEJJ>#&07TSH=!%C(+]8 MX$DQ8\`?)E1,T'"0E`6=@Y8L^*0X$BOG6X#AK#7KYUN`X:PUZ^=8@V2[?&AQG MK<$XUQHX)C[.-7'';,=K9IM`U7&N:<;FMD;\'NBOUONRA/"!^F8VL25Q+021 M(&T!NL1QYY%C2^0973K$)Y@/YQ8).%<\'\DL"W"FBJP9AO$5" M3-=S%0*["9\JJP_D%Q,Z55X?R"\F=*K,/I!?3.A4N=U]P!L2O-LQHAY4&MK! MF((C\%J0SW>JAG5M9DOPXA[5TIN:&P!&/!`5LP&2:]ERL>(!W4&J^`C61_X0 M*B&7M^:6"&V_8A[]NAK.HX77[?>'^)8NUJZ^6HVCR1*CEQ^4R^J=N$P<6*9> M9U8*9S,6.X:SLZ2ZZ3/JU`I0U(-,4.RQ!T#+J%0LI;3!Z:2UH?D]?)C5]'5: MV_M<%7@FW/IH0X">$WU9KN^J!)TO2N59Y6>/^,K;X6KLQTVN\%`@!#N#RUNH M!]H1G"WPK:!2U]>NMX--IJNKN42SP+NOH7-/=8,Y6@;W]*M?]5O22N^^]A7/ :K3NDV:=^U/M@/<)-8;D?0/\7ORED!57J``!/ ` end >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 Dec 5 07:20:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA16217 for freebsd-bugs-outgoing; Sat, 5 Dec 1998 07:20:03 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA16211 for ; Sat, 5 Dec 1998 07:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA07143; Sat, 5 Dec 1998 07:20:01 -0800 (PST) Date: Sat, 5 Dec 1998 07:20:01 -0800 (PST) Message-Id: <199812051520.HAA07143@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: "José Mª Alcaide" Subject: Re: bin/8963: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) Reply-To: "José Mª Alcaide" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/8963; it has been noted by GNATS. From: "José Mª Alcaide" To: Garrett Wollman Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/8963: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) Date: Sat, 05 Dec 1998 16:18:03 +0100 Garrett Wollman wrote: > > < > >> Synopsis: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) > > There is no need for a libtermlib.so.2: > > wollman@khavrinen(758)$ objdump --all-headers /usr/lib/libtermlib.so | fgrep SONAME > SONAME libtermcap.so.2 > Uh? In FreeBSD 2.2-STABLE, libtermcap.so.2. and libtermlib.so.2 are the same file (they are hard-linked). I supposed that the same library has two names in order to permit linking using both "-ltermcap" and "-ltermlib", giving more compatibility. Is this not need with FreeBSD-3.0? -- JMA ----------------------------------------------------------------------- José Mª Alcaide | mailto:jose@we.lc.ehu.es Universidad del País Vasco | http://www.we.lc.ehu.es/~jose Dpto. de Electricidad y Electrónica | Facultad de Ciencias - Campus de Lejona | Tel.: +34-946012479 48940 Lejona (Vizcaya) - SPAIN | Fax: +34-944858139 ----------------------------------------------------------------------- "Go ahead... make my day." - H. Callahan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 5 10:40:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA00201 for freebsd-bugs-outgoing; Sat, 5 Dec 1998 10:40:07 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA00186 for ; Sat, 5 Dec 1998 10:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA21673; Sat, 5 Dec 1998 10:40:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA29849; Sat, 5 Dec 1998 10:38:03 -0800 (PST) (envelope-from nobody) Message-Id: <199812051838.KAA29849@hub.freebsd.org> Date: Sat, 5 Dec 1998 10:38:03 -0800 (PST) From: oschonef@techfak.uni-bielefeld.de To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: kern/8973: trap 12: page fault while in kernel mode while trying installation w/ boot.flp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8973 >Category: kern >Synopsis: trap 12: page fault while in kernel mode while trying installation w/ boot.flp >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 Dec 5 10:40:01 PST 1998 >Last-Modified: >Originator: Oliver Schonefeld >Organization: n/a >Release: 3.0-RELEASE >Environment: Fatal trap 12: page fault while in kernel mode fault virtual address = 0x58a1094f fault code = supervisor read, page not present instruction pointer = 0x8:0xf017371c stack pointer = 0x10:0xf03f2f98 frame pointer = 0x10:0xf03f2f98 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 = 0 (swapper) interrupt mask = net tty trap number = 12 panic: page fault hardware enviroment: compaq prosignia eisa-mainboard w/486DX-66 64MB RAM adaptec aha-2742 twin scsi host adapter (irq 14) w/ 1x compaq 0662s12 1.05 gb 2x ibm dcas-24330w 4.3gb 1x python 27871 dat 1x teac cd-5126s cdrom ethernet-cards: 2x 3com 3c579 (irq 9, io 0x1000 and irq 10, io 0x2000) >Description: this panic occurs every time i tried to install the os. even if i disable all drivers in the kernel i cannot get the machine to boot. the computer runs fine unter linux 2.0.x. >How-To-Repeat: just boot again >Fix: >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 Dec 5 14:10:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17040 for freebsd-bugs-outgoing; Sat, 5 Dec 1998 14:10:03 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA17017 for ; Sat, 5 Dec 1998 14:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA00820; Sat, 5 Dec 1998 14:10:00 -0800 (PST) Date: Sat, 5 Dec 1998 14:10:00 -0800 (PST) Message-Id: <199812052210.OAA00820@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Garrett Wollman Subject: Re: bin/8963: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/8963; it has been noted by GNATS. From: Garrett Wollman To: "José Mª Alcaide" Cc: Garrett Wollman , freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/8963: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) Date: Sat, 5 Dec 1998 17:09:19 -0500 (EST) < said: > Garrett Wollman wrote: >> >> <> >> >> Synopsis: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) >> >> There is no need for a libtermlib.so.2: >> >> wollman@khavrinen(758)$ objdump --all-headers /usr/lib/libtermlib.so | fgrep SONAME >> SONAME libtermcap.so.2 >> > Uh? In FreeBSD 2.2-STABLE, libtermcap.so.2. and libtermlib.so.2 are > the same file (they are hard-linked). In FreeBSD 2.2-STABLE, there is no such thing as `libtermcap.so.2' nor `libtermlib.so.2'. Those are ELF library names, and thus only present in 3.0. In ELF libraries, only the `.so' versions are used for link-time library searches. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 5 15:50:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA25079 for freebsd-bugs-outgoing; Sat, 5 Dec 1998 15:50:03 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA25050 for ; Sat, 5 Dec 1998 15:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA04265; Sat, 5 Dec 1998 15:50:01 -0800 (PST) Date: Sat, 5 Dec 1998 15:50:01 -0800 (PST) Message-Id: <199812052350.PAA04265@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: "José Mª Alcaide" Subject: Re: bin/8963: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) Reply-To: "José Mª Alcaide" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/8963; it has been noted by GNATS. From: "José Mª Alcaide" To: Garrett Wollman Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/8963: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) Date: Sun, 06 Dec 1998 00:45:32 +0100 Garrett Wollman wrote: > > In FreeBSD 2.2-STABLE, there is no such thing as `libtermcap.so.2' nor > `libtermlib.so.2'. Those are ELF library names, and thus only present > in 3.0. In ELF libraries, only the `.so' versions are used for > link-time library searches. > $ uname -r 2.2.8-RELEASE $ cd /usr/lib; ls -li libterm* 238434 -r--r--r-- 2 bin bin 15634 3 dic 01:33 libtermcap.a 238435 -r--r--r-- 2 bin bin 16826 3 dic 01:33 libtermcap.so.2.1 238434 -r--r--r-- 2 bin bin 15634 3 dic 01:33 libtermlib.a 238435 -r--r--r-- 2 bin bin 16826 3 dic 01:33 libtermlib.so.2.1 $ ldconfig -r | fgrep term 64:-ltermcap.2.1 => /usr/lib/libtermcap.so.2.1 100:-ltermlib.2.1 => /usr/lib/libtermlib.so.2.1 OK, their names end in "so.2.1", but these libraries do exist in 2.2-STABLE. They are two hard links to the same file, but ldconfig registers both names. This does not happens in FreeBSD 3.0. -- JMA ----------------------------------------------------------------------- José Mª Alcaide | mailto:jose@we.lc.ehu.es Universidad del País Vasco | http://www.we.lc.ehu.es/~jose Dpto. de Electricidad y Electrónica | Facultad de Ciencias - Campus de Lejona | Tel.: +34-946012479 48940 Lejona (Vizcaya) - SPAIN | Fax: +34-944858139 ----------------------------------------------------------------------- "Go ahead... make my day." - H. Callahan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 5 17:50:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA06851 for freebsd-bugs-outgoing; Sat, 5 Dec 1998 17:50:04 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA06830 for ; Sat, 5 Dec 1998 17:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from Unknown UID 563@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA08069; Sat, 5 Dec 1998 17:50:01 -0800 (PST) Date: Sat, 5 Dec 1998 17:50:01 -0800 (PST) Message-Id: <199812060150.RAA08069@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.ORG From: Garrett Wollman Subject: Re: bin/8963: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) Reply-To: Garrett Wollman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/8963; it has been noted by GNATS. From: Garrett Wollman To: "José Mª Alcaide" Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: bin/8963: there is no libtermlib.so.2 in /usr/lib (3.0-RELEASE) Date: Sat, 5 Dec 1998 20:40:32 -0500 (EST) < said: [I wrote:] >> in 3.0. In ELF libraries, only the `.so' versions are used for >> link-time library searches. > OK, their names end in "so.2.1", but these libraries do exist in > 2.2-STABLE. They are two hard links to the same file, but ldconfig > registers both names. This does not happens in FreeBSD 3.0. As I said above, in ELF libraries, only the `.so' versions are used for link-time library searches. In my original reply, I quoted the dynamic-linking header from a 3.0 libtermlib.so, which clearly indicates that the name recorded in the executable for use by the ELF run-time linker is `libtermcap.so.2', as would have been clear if you had bothered to actually compile a program yourself and run `ldd' on it. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 5 21:49:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA22358 for freebsd-bugs-outgoing; Sat, 5 Dec 1998 21:49:46 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA22349; Sat, 5 Dec 1998 21:49:37 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA15270; Sat, 5 Dec 1998 21:49:37 -0800 (PST) Date: Sat, 5 Dec 1998 21:49:37 -0800 (PST) Message-Id: <199812060549.VAA15270@freefall.freebsd.org> To: jwd@unx.sas.com, obrien@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/8958 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: bug in /bin/pax -s option processing State-Changed-From-To: open-closed State-Changed-By: obrien State-Changed-When: Sat Dec 5 21:47:30 PST 1998 State-Changed-Why: commiited To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Dec 5 21:54:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA22918 for freebsd-bugs-outgoing; Sat, 5 Dec 1998 21:54:51 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA22910; Sat, 5 Dec 1998 21:54:47 -0800 (PST) (envelope-from obrien@FreeBSD.org) From: "David E. O'Brien" Received: (from obrien@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA15479; Sat, 5 Dec 1998 21:54:47 -0800 (PST) Date: Sat, 5 Dec 1998 21:54:47 -0800 (PST) Message-Id: <199812060554.VAA15479@freefall.freebsd.org> To: ajk@purdue.edu, obrien@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: gnu/8321 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] troff -me \*(td (today's date) string macro broken State-Changed-From-To: open-closed State-Changed-By: obrien State-Changed-When: Sat Dec 5 21:49:51 PST 1998 State-Changed-Why: commited To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message